/*
Theme Name: Hand Made Suds New
Theme URI: https://handmadesuds.in/
Author: The Appinvnetiv team
Author URI: https://appinventiv.com
Description: Hand Made Suds is designed to take advantage of the new design tools introduced in WordPress 6.1. With a clean, blank base as a starting point, this default theme includes ten diverse style variations created by members of the WordPress community. Whether you want to build a complex or incredibly simple website, you can do it quickly and intuitively through the bundled styles or dive into creation and full customization yourself.
Requires at least: 6.1
Tested up to: 6.8
Requires PHP: 5.6
Version: 1.7
License: GNU General Public License v2 or later
License URI: https://www.gnu.org/licenses/old-licenses/gpl-2.0.html
Text Domain: handmadesuds
Tags: one-column, custom-colors, custom-menu, custom-logo, editor-style, featured-images, full-site-editing, block-patterns, rtl-language-support, sticky-post, threaded-comments, translation-ready, wide-blocks, block-styles, style-variations, accessibility-ready, blog, portfolio, news
*/

/* Reset and Base Styles */

:root {
  --font: "Manrope", sans-serif;
  --fontLora: "Lora", serif;

  --primary: #FFBA01;
  --primary20: #FFC300;
  --secondary: #377D5E;
  --secondary20: #2c5f4a;
  --green: #00d084;
  --white: #FFFFFF;
  --text: #2D2D2D;
  --textLight: #C3C3C3;
  --beige: #E8DCCB;
  --gray: #5A6B7A;

  --error: #fd141e;
  --light: #F8F4EF;
  --border: #E6E6E6;

  --bs-font-sans-serif: var(--font) !important;
}

* {
  box-sizing: border-box;
}

*::selection {
  background: var(--secondary);
  color: var(--white);
}

html {
  scroll-behavior: smooth;
  /* scroll-padding-top: 80px; */
}

body {
  line-height: 1.6;
  color: var(--text);
  background-color: var(--white);
  font-family: var(--font);
}

input:-webkit-autofill,
input:-webkit-autofill:hover,
input:-webkit-autofill:focus,
textarea:-webkit-autofill,
select:-webkit-autofill {
  -webkit-box-shadow: 0 0 0px 1000px transparent inset !important;
  box-shadow: 0 0 0px 1000px transparent inset !important;
  -webkit-text-fill-color: var(--text) !important;
  transition: background-color 5000s ease-in-out 0s;
}

body:not(.woocommerce-block-theme-has-button-styles) .wc-block-components-button:not(.is-link):focus {
  box-shadow: inset 0 0 0 1px #fff, 0 0 0 2px var(--secondary) !important;
}

.mark,
mark {
  border-radius: 4px;
  padding: 3px 6px !important;
}

.banner-container {
  margin: 0 50px;
}

.container {
  max-width: 1320px;
  margin: 0 auto;
  padding: 0 30px;
}

/* Header */
.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background-color: #fff;
  transition: all 0.3s ease;
}

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

.logo h1 {
  font-size: 2rem;
  font-weight: 700;
  color: #2c3e50;
  letter-spacing: 2px;
}

.logo p {
  font-size: 0.8rem;
  color: #7f8c8d;
  text-align: center;
  letter-spacing: 1px;
}

.nav {
  display: flex;
  gap: 1rem;
}

.nav-icon {
  font-size: 1.2rem;
  text-decoration: none;
  padding: 0.5rem;
  width: 40px;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  transition: background-color 0.3s;
}

.nav-icon:hover {
  background-color: #f8f9fa;
}

.xoo-wsc-items-count {
  background-color: var(--text) !important;
}

.continueshopping-btn .wp-block-button {
  width: 250px
}

.continueshopping-btn .wp-block-button a {
  max-width: 100%
}

.continueshopping-btn>a {
  max-width: 100%
}

.banner-slider.desktop {
  padding-top: 30px;
}

.banner-slider.mobile {
  padding-top: 10px;
  display: none;
}

.our-collections {
  padding: 60px 0;
}

.our-collections .row {
  row-gap: 30px;
}

.our-collections h2 {
  font-size: 24px;
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
}

.our-collections h2.with-empty-cart-icon {
  text-transform: none;
  font-size: 20px;
}

.our-collections .header {
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.view-all {
  color: var(--text);
  background-color: transparent;
  border: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  white-space: nowrap;
  font-weight: 600;
  transition: all .4s ease-in;
  letter-spacing: .4px;
}

.view-all .txt {
  margin-right: 8px;
}

.view-all svg {
  width: 20px;
  fill: var(--text);
}

.view-all:hover {
  color: var(--secondary20);
}

.view-all:hover svg {
  fill: var(--secondary20);
}

.product-card {
  position: relative;
  display: flex;
  flex-direction: column;
  border: 1px solid var(--border);
  background-color: var(--white);
  border-radius: 16px;
  min-height: 100%;
  transition: all .4s cubic-bezier(0.075, 0.82, 0.165, 1);
}

.product-card .img {
  aspect-ratio: 1/1;
  object-fit: cover;
  border-radius: 16px 16px 0 0;
  z-index: 1;
}

.product-card .content {
  padding: 16px;
  background-color: var(--white);
  z-index: 1;
  border-radius: 0 0 16px 16px;
}

.product-card .title {
  font-size: 16px;
  font-weight: 600;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .subtitle {
  color: var(--gray);
  margin-bottom: 0;
  display: -webkit-box;
  line-clamp: 1;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .blog-content .title {
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .blog-content p {
  color: var(--gray);
  margin-bottom: 0;
  display: -webkit-box;
  line-clamp: 2;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.product-card .blog-content p:hover {
  color: var(--gray);
}

.product-card::before {
  content: '';
  display: block;
  width: 100%;
  height: 100%;
  background-color: #e8dccb82;
  position: absolute;
  right: 10px;
  top: 10px;
  border-radius: 16px;
}

.product-card:hover::before {
  display: block;
}

.product-card:hover .title {
  color: var(--primary);
}

.productlist .product,
.productlist .wc-block-grid__product {
  position: relative;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  border: 1px solid var(--border);
  background-color: var(--white);
  border-radius: 16px;
  min-height: 100%;
  transition: all .4s cubic-bezier(0.075, 0.82, 0.165, 1);
  overflow: hidden;
}

.productlist .wc-block-grid__product .wc-block-grid__product-image {
  width: 100%;
  margin-bottom: 0 !important;
}

.productlist .woocommerce .products .product a img,
.productlist .wc-block-grid__product a img {
  object-fit: cover;
  border-radius: 14px 14px 0 0;
  margin-bottom: 0;
}

.productlist .woocommerce .onsale,
.productlist .wc-block-grid__product .wc-block-grid__product-onsale {
  width: 50%;
  height: 20px;
  border-radius: 15px !important;
  min-height: unset;
  display: flex !important;
  align-items: center;
  justify-content: center;
  font-family: var(--font);
  text-transform: uppercase;
  background: var(--primary) !important;
  font-weight: 500;
  letter-spacing: 1px;
  font-size: 12px;
}

.productlist .woocommerce ul.products li.product .onsale,
.productlist .wc-block-grid__product .wc-block-grid__product-onsale {
  top: 13px;
  margin: -.5em -.5em 0 0;
  right: 0;
}

.productlist .woocommerce ul.products li.product .woocommerce-loop-product__title,
.productlist .wc-block-grid__product .wc-block-grid__product-title {
  margin: 16px 16px 10px 16px;
  padding: 0;
  letter-spacing: .2px;
  line-height: normal;
  color: var(--text) !important;
  font-weight: 600;
  text-transform: capitalize;
  text-align: left;
  font-size: 18px;
  display: -webkit-box;
  line-clamp: 3;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.productlist .woocommerce ul.products li.product .price,
.productlist .wc-block-grid__product .price {
  padding: 0 16px;
  margin-bottom: 0;
  display: flex;
  align-items: center;
  flex-direction: row-reverse;
  justify-content: flex-end;
  width: 100%;
}

.productlist .woocommerce ul.products li.product .price del,
.productlist .wc-block-grid__product .price del {
  opacity: .5;
  font-size: 14px;
}

.productlist .amount {
  color: var(--gray);
}

.productlist .woocommerce ul.products li.product .price ins,
.productlist .wc-block-grid__product .price ins {
  text-decoration: none;
  margin-right: 6px;
}

.productlist .woocommerce ul.products li.product .price ins .amount,
.productlist .wc-block-grid__product .price ins .amount {
  color: var(--text);
  font-size: 18px;
  font-weight: 600;
}

.productlist .woocommerce ul.products li.product .button,
.productlist .wc-block-grid__product .add_to_cart_button {
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 45px;
  background-color: transparent;
  color: var(--white);
  font-weight: 600;
  letter-spacing: .2px;
  border: 1px solid var(--border);
  color: var(--text);
  transition: all .4s ease-in-out;
  margin: 16px 16px 20px 16px;
}

.productlist .woocommerce ul.products li.product .button.add_to_cart_button.loading::after,
.productlist .wc-block-grid__product button.add_to_cart_button.loading::after {
  top: 16px;
}

.productlist .woocommerce ul.products {
  display: flex;
  flex-wrap: nowrap;
  margin: 0;
  clear: unset;
  gap: 24px;
}

.productlist .woocommerce ul.products::before,
.productlist .woocommerce ul.products::after {
  display: none;
}

.productlist .woocommerce ul.products li.product {
  clear: unset;
  float: none;
  width: 25%;
  margin: 0;
  margin-right: 0 !important;
}

.productlist .woocommerce ul.products li.product .button:hover,
.productlist .wc-block-grid__product .add_to_cart_button:hover {
  background-color: var(--secondary);
  border-color: var(--secondary);
  color: var(--white);
}

.productlist .wc-block-grid__product .wc-block-grid__product-add-to-cart {
  margin: 16px 16px 20px 16px;
}

.productlist .wc-block-grid__product-add-to-cart.wp-block-button .wp-block-button__link {
  max-width: unset;
  width: 100%;
  margin: 0;
  font-size: 16px;
}

.productlist .wc-block-grid__products {
  display: flex;
  margin: 0;
  clear: unset;
  gap: 24px;
  width: 100%;
  flex-wrap: wrap;
}

.productlist .wc-block-grid.has-4-columns .wc-block-grid__products .wc-block-grid__product {
  width: calc(100% / 4 - 18px);
  min-height: unset;
  flex: unset;
  max-width: unset;
}

.productlist .wp-block-woocommerce-empty-cart-block {
  margin-bottom: 30px;
}

.productlist .woocommerce #reviews #comments ol.commentlist {
  padding-left: 0;
  margin-top: 20px;
}

.productlist .woocommerce #reviews #comments ol.commentlist li img.avatar {
  border-radius: 50%;
  padding: 0;
}

.productlist .woocommerce #reviews #comments ol.commentlist li .comment-text {
  border-radius: 8px;
}

.productlist .woocommerce #reviews #comments ol.commentlist li .comment-text p.meta {
  color: var(--gray);
  line-height: normal;
}

.productlist .woocommerce #reviews #comments ol.commentlist li .comment-text p {
  color: var(--text);
}

.productlist .cr-voting-downvote {
  margin-top: -1px;
}

.productlist .cr-voting-upvote {
  margin-top: 5px;
}

.productlist .comment-reply-title {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
  font-weight: 500;
}

.productlist .cr-review-form-rating .cr-review-form-rating-cont .cr-review-form-rating-nbr,
.productlist .cr-review-form-rating .cr-review-form-rating-label {
  font-size: 16px !important;
  color: var(--text);
}

.productlist .cr-review-form-rating .cr-review-form-rating-cont .cr-review-form-rating-inner svg {
  width: 33px;
  height: 30px;
}

.productlist .cr-onsite-ratings .cr-review-form-rating .cr-review-form-rating-cont .cr-review-form-rating-inner {
  height: auto;
}

.productlist .cr-onsite-ratings .cr-review-form-rating .cr-review-form-rating-cont {
  align-items: center;
}

.productlist .cr-review-form-rating-inner {
  cursor: pointer;
}

.productlist .comment-form-comment label {
  color: var(--text);
}

.productlist .woocommerce #review_form #respond textarea {
  padding: 10px;
  border-color: var(--border);
  border-radius: 8px;
}

.productlist .woocommerce #review_form #respond textarea:focus-visible {
  outline: 0;
}

.productlist .woocommerce #review_form #respond .form-submit #submit {
  background-color: var(--secondary);
  color: var(--white);
  margin-bottom: 10px;
  height: 48px;
  border-radius: 8px;
  width: 160px;
}

.term-description {
  color: var(--text);
  text-align: left;
  font-size: 18px;
  margin-top: -35px;
  padding: 20px 30px;
  border-radius: 12px;
  background-color: #EEF9F3;
  margin-bottom: 20px;
}

.term-description p {
  line-height: 26px;
}

.term-description p:nth-last-of-type(1) {
  margin-bottom: 0;
}

.sortby-category {
  padding: 20px 30px;
  display: flex;
  align-items: flex-start;
  border-radius: 12px;
  background-color: #EEF9F3;
}

.sortby-category .cat-img {
  display: none;
}

.sortby-category .title {
  white-space: nowrap;
  margin: 0 10px 0 0;
  font-weight: 600;
  color: var(--text);
}

.sortby-category ul {
  flex-wrap: wrap;
  display: flex;
  row-gap: 10px;
  column-gap: 40px;
  list-style: none;
  margin: 0;
  padding: 0;
}

.sortby-category ul a {
  margin: 0;
}

.sortby-category ul a:hover {
  color: var(--secondary);
}

.woocommerce-result-count {
  color: var(--gray);
}

.woocommerce .orderby {
  cursor: pointer;
}

/* Shop Page */
.shop-page .productlist .woocommerce {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.shop-page .woocommerce-notices-wrapper {
  width: 100%;
  margin-bottom: 10px;
}

.shop-page .woocommerce-notices-wrapper:empty {
  display: none;
}

.shop-page .productlist .woocommerce ul.products {
  width: 100%;
  flex-wrap: wrap;
}

.shop-page .productlist .woocommerce ul.products .product {
  width: calc(100%/4 - 18px);
  min-height: unset;
}

.shop-page .woocommerce .woocommerce-ordering select {
  padding: 10px 35px 10px 10px;
  border: 1px solid var(--textLight) !important;
  border-radius: 8px;
  appearance: none;
  -webkit-appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' focusable='false' aria-hidden='true' viewBox='0 0 24 24' aria-label='fontSize small' fill='%23333333' %3E%3Cpath d='M8.12 9.29 12 13.17l3.88-3.88c.39-.39 1.02-.39 1.41 0s.39 1.02 0 1.41l-4.59 4.59c-.39.39-1.02.39-1.41 0L6.7 10.7a.996.996 0 0 1 0-1.41c.39-.38 1.03-.39 1.42 0'%3E%3C/path%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position-x: calc(100% - 10px);
  background-position-y: center;
  background-size: 20px;
}

.shop-page .woocommerce .woocommerce-ordering {
  margin-bottom: 0;
}

.shop-page .woocommerce .woocommerce-result-count {
  margin-bottom: 0;
}

.shop-page .wp-block-woocommerce-empty-cart-block h2.wp-block-heading {
  margin-bottom: 30px;
}

/* Home page banner */
.n2-ss-slider [data-mode=center] .n2-ss-slide-background-image img {
  object-fit: contain !important;
}

div#n2-ss-2 .n2-style-785355f374be86c332d4665aae819858-dot,
div#n2-ss-3 .n2-style-785355f374be86c332d4665aae819858-dot {
  background-color: var(--border) !important;
}

div#n2-ss-2 .n2-style-785355f374be86c332d4665aae819858-dot.n2-active,
div#n2-ss-2 .n2-style-785355f374be86c332d4665aae819858-dot:HOVER,
div#n2-ss-2 .n2-style-785355f374be86c332d4665aae819858-dot:FOCUS,
div#n2-ss-3 .n2-style-785355f374be86c332d4665aae819858-dot.n2-active,
div#n2-ss-3 .n2-style-785355f374be86c332d4665aae819858-dot:HOVER,
div#n2-ss-3 .n2-style-785355f374be86c332d4665aae819858-dot:FOCUS {
  background-color: var(--secondary) !important;
}

.n2-ss-slider {
  height: auto !important;
}

.banner-slider.desktop .n2-ss-slider,
.banner-slider.desktop .n2-ss-slide-backgrounds,
.banner-slider.desktop .n2-ss-slider-4 {
  aspect-ratio: 7 / 2;
}

.banner-slider.mobile .n2-ss-slider,
.banner-slider.mobile .n2-ss-slide-backgrounds,
.banner-slider.mobile .n2-ss-slider-4 {
  aspect-ratio: 4 / 3;
}

.n2-ss-slide-backgrounds {
  overflow: hidden;
}

/* Make image fit properly */
.n2-ss-slide-background img {
  width: 100%;
  height: auto !important;
  object-fit: cover !important;
}

/* Checkout */
.checkout-page .wp-block-woocommerce-checkout {
  padding-top: 20px;
}

.checkout-page .wp-block-buttons.is-content-justification-center .continueshopping-btn {
  display: none;
}

.checkout-page .is-large .wc-block-checkout__sidebar {
  margin-top: 0;
}

.checkout-page .wp-block-woocommerce-checkout-order-summary-block {
  border-radius: 12px;
}

.checkout-page .wc-block-components-sidebar-layout .wc-block-components-main {
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 20px;
}

.checkout-page .wp-block-woocommerce-checkout {
  counter-reset: section;
}

.checkout-page .wc-block-components-title.wc-block-components-checkout-step__title {
  counter-increment: section;
  position: relative;
  padding-left: 45px;
  text-transform: capitalize;
  letter-spacing: normal;
}

.checkout-page .wc-block-components-title.wc-block-components-checkout-step__title::before {
  content: counter(section);
  position: absolute;
  left: 0;
  top: -3px;
  font-weight: 600;
  color: var(--white);
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 30px;
  height: 30px;
  border-radius: 50%;
  font-size: 16px;
}

.checkout-page .wc-block-components-checkout-step__description {
  padding-left: 45px;
  color: var(--gray);
}

.checkout-page .wc-block-components-text-input input,
.checkout-page .wc-blocks-components-select .wc-blocks-components-select__select {
  border-radius: 8px !important;
  border: 1px solid var(--border) !important;
  padding-left: 15px !important;
  height: 52px !important;
}

.checkout-page .wc-blocks-components-select .wc-blocks-components-select__select {
  cursor: pointer;
}

.checkout-page .wc-block-components-text-input input.is-active,
.checkout-page .wc-block-components-text-input input:focus,
.checkout-page .wc-block-components-text-input input:focus-visible,
.checkout-page .wc-blocks-components-select .wc-blocks-components-select__select:focus,
.checkout-page .wc-blocks-components-select .wc-blocks-components-select__select:focus-visible {
  outline: 0;
}

.checkout-page .wc-block-components-form .wc-block-components-text-input label,
.checkout-page .wc-blocks-components-select .wc-blocks-components-select__label,
.checkoutpage .wc-block-components-text-input label {
  left: 16px !important;
}

.checkout-page .wc-block-components-form .wc-block-components-text-input label,
.checkout-page .wc-block-components-text-input label {
  left: 16px !important;
}

.checkout-page .wc-block-components-address-form__address_2-toggle {
  color: var(--secondary);
  font-weight: 500;
  margin-top: 25px;
  margin-bottom: 10px;
}

.checkout-page .wc-block-components-checkout-return-to-cart-button {
  color: var(--secondary);
  font-weight: 500;
}

.checkout-page .wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
  color: var(--gray);
  padding-top: 30px;
}

.checkout-page .wc-block-components-checkout-step__content {
  padding-top: 18px;
}

.checkout-page .wc-block-components-radio-control--highlight-checked:after {
  border-radius: 8px;
}

.checkout-page .wc-block-components-radio-control-accordion-content {
  color: var(--gray);
  margin-top: -5px;
}

.checkout-page .wc-block-components-form .wc-block-checkout__order-notes.wc-block-components-checkout-step {
  margin-bottom: 30px;
  margin-top: -40px;
}

.wc-block-components-radio-control--highlight-checked .wc-block-components-radio-control-accordion-option--checked-option-highlighted,
.wc-block-components-radio-control--highlight-checked label.wc-block-components-radio-control__option--checked-option-highlighted {
  box-shadow: none !important;
  border-radius: 8px !important;
}

.wc-block-components-radio-control--highlight-checked.wc-block-components-radio-control--highlight-checked--last-selected:after,
.wc-block-components-radio-control--highlight-checked div.wc-block-components-radio-control-accordion-option:after,
.wc-block-components-radio-control--highlight-checked.wc-block-components-radio-control--highlight-checked--first-selected:after {
  display: none;
}

.wc-block-components-radio-control-accordion-option {
  border: 1px solid var(--border);
  border-radius: 8px;
}

.wc-block-components-radio-control-accordion-option:not(:nth-last-of-type(1)) {
  margin-bottom: 15px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__image>img {
  border-radius: 4px;
}

.wc-block-components-order-summary .wc-block-components-order-summary-item__quantity {
  box-shadow: none !important;
  border-width: 1px !important;
  font-size: 10px;
}

.checkout-page .wc-block-components-totals-wrapper {
  padding: 0;
}

.checkout-page .wc-block-checkout__sidebar .wc-block-components-product-name {
  font-weight: 600;
}

.checkout-page .wc-block-components-order-summary .wc-block-components-order-summary-item__individual-prices {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.checkout-page .wc-block-components-product-price__value.is-discounted {
  margin: 0 8px 0 0;
}

.checkout-page .wc-block-components-order-summary .wc-block-components-order-summary-item__image {
  margin-top: 0;
}

.checkout-page .wc-block-components-order-summary .wc-block-components-order-summary-item__description .wc-block-components-product-metadata,
.checkout-page .wc-block-components-order-summary .wc-block-components-order-summary-item__description p {
  display: none;
}

.checkout-page .wc-block-components-order-summary__content {
  padding-bottom: 16px;
}

.checkout-page .wp-block-woocommerce-checkout-order-summary-coupon-form-block {
  padding: 16px;
}

.checkout-page .wp-block-woocommerce-checkout-order-summary-totals-block {
  padding-bottom: 0;
}

.checkout-page .wc-block-components-totals-item {
  padding: 16px !important;
}

.checkout-page .wc-block-components-textarea {
  border-radius: 8px;
  border-color: var(--border);
}

.checkout-page .wc-block-components-textarea:focus {
  box-shadow: none !important;
  outline: 0;
}

.checkout-page .wc-block-components-totals-fees__cash-on-delivery-fee {
  padding-top: 0 !important;
}

/* Order Placed */
.order-placed .woocommerce-thankyou-order-received {
  text-align: center;
  color: var(--gray);
  margin-top: -20px;
  margin-bottom: 30px;
}

.order-placed .woocommerce-thankyou-order-details {
  margin: 0 0 20px 0 !important;
  padding: 0;
  display: flex;
  flex-wrap: wrap;
  border: 1px solid var(--border);
  border-radius: 12px;
}

.order-placed .woocommerce ul.order_details::after,
.order-placed .woocommerce ul.order_details::before,
.order-placed .woocommerce ul.order_details::after,
.order-placed .woocommerce ul.order_details::before {
  display: none;
}

.order-placed .woocommerce ul.order_details li {
  padding: 20px 10px;
  margin: 0;
  flex: 1;
  text-align: center;
  color: var(--gray);
  font-size: 12px;
  border-right-style: solid;
  border-color: var(--border);
}

.order-placed .woocommerce ul.order_details li::before {
  content: '';
  display: block;
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  margin: 0 auto 15px;
  background-size: contain;
}

.order-placed .woocommerce ul.order_details li strong {
  margin-top: 4px;
  color: var(--text);
  font-size: 16px;
  font-weight: 600;
}

.order-placed .woocommerce ul.order_details li .amount {
  color: var(--text);
}

.order-placed .woocommerce ul.order_details li.email {
  display: none;
}

.order-placed .woocommerce ul.order_details li.order::before {
  background-size: 47px;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80px' height='80px' viewBox='0 0 24 24' fill='none'%3E%3Crect x='5' y='4' width='14' height='17' rx='2' stroke='%23377D5E'/%3E%3Cpath d='M9 9H15' stroke='%23377D5E' stroke-linecap='round'/%3E%3Cpath d='M9 13H15' stroke='%23377D5E' stroke-linecap='round'/%3E%3Cpath d='M9 17H13' stroke='%23377D5E' stroke-linecap='round'/%3E%3C/svg%3E");
}

.order-placed .woocommerce ul.order_details li.date::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80px' height='80px' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M2 12C2 8.22876 2 6.34315 3.17157 5.17157C4.34315 4 6.22876 4 10 4H14C17.7712 4 19.6569 4 20.8284 5.17157C22 6.34315 22 8.22876 22 12V14C22 17.7712 22 19.6569 20.8284 20.8284C19.6569 22 17.7712 22 14 22H10C6.22876 22 4.34315 22 3.17157 20.8284C2 19.6569 2 17.7712 2 14V12Z' stroke='%23377D5E' stroke-width='1'/%3E%3Cpath d='M7 4V2.5' stroke='%23377D5E' stroke-width='1' stroke-linecap='round'/%3E%3Cpath  d='M17 4V2.5' stroke='%23377D5E' stroke-width='1' stroke-linecap='round'/%3E%3Cpath  d='M2 9H22' stroke='%23377D5E' stroke-width='1' stroke-linecap='round'/%3E%3C/svg%3E");
}

.order-placed .woocommerce ul.order_details li.email::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' height='80px' width='80px' version='1.1' id='_x32_' viewBox='0 0 512 512' xml:space='preserve'%3E%3Cstyle type='text/css'%3E .st0%7Bfill:%23377D5E;%7D%0A%3C/style%3E%3Cg%3E%3Cpath class='st0' d='M510.746,110.361c-2.128-10.754-6.926-20.918-13.926-29.463c-1.422-1.794-2.909-3.39-4.535-5.009 c-12.454-12.52-29.778-19.701-47.531-19.701H67.244c-17.951,0-34.834,7-47.539,19.708c-1.608,1.604-3.099,3.216-4.575,5.067 c-6.97,8.509-11.747,18.659-13.824,29.428C0.438,114.62,0,119.002,0,123.435v265.137c0,9.224,1.874,18.206,5.589,26.745 c3.215,7.583,8.093,14.772,14.112,20.788c1.516,1.509,3.022,2.901,4.63,4.258c12.034,9.966,27.272,15.45,42.913,15.45h377.51 c15.742,0,30.965-5.505,42.967-15.56c1.604-1.298,3.091-2.661,4.578-4.148c5.818-5.812,10.442-12.49,13.766-19.854l0.438-1.05 c3.646-8.377,5.497-17.33,5.497-26.628V123.435C512,119.06,511.578,114.649,510.746,110.361z M34.823,99.104 c0.951-1.392,2.165-2.821,3.714-4.382c7.689-7.685,17.886-11.914,28.706-11.914h377.51c10.915,0,21.115,4.236,28.719,11.929 c1.313,1.327,2.567,2.8,3.661,4.272l2.887,3.88l-201.5,175.616c-6.212,5.446-14.21,8.443-22.523,8.443 c-8.231,0-16.222-2.99-22.508-8.436L32.19,102.939L34.823,99.104z M26.755,390.913c-0.109-0.722-0.134-1.524-0.134-2.341V128.925 l156.37,136.411L28.199,400.297L26.755,390.913z M464.899,423.84c-6.052,3.492-13.022,5.344-20.145,5.344H67.244 c-7.127,0-14.094-1.852-20.142-5.344l-6.328-3.668l159.936-139.379l17.528,15.246c10.514,9.128,23.922,14.16,37.761,14.16 c13.89,0,27.32-5.032,37.827-14.16l17.521-15.253L471.228,420.18L464.899,423.84z M485.372,388.572 c0,0.803-0.015,1.597-0.116,2.304l-1.386,9.472L329.012,265.409l156.36-136.418V388.572z'/%3E%3C/g%3E%3C/svg%3E");
}

.order-placed .woocommerce ul.order_details li.total::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23377D5E' width='80px' height='80px' viewBox='0 0 24 24'%3E%3Cpath d='M12.9494914,6 C13.4853936,6.52514205 13.8531598,7.2212202 13.9645556,8 L17.5,8 C17.7761424,8 18,8.22385763 18,8.5 C18,8.77614237 17.7761424,9 17.5,9 L13.9645556,9 C13.7219407,10.6961471 12.263236,12 10.5,12 L7.70710678,12 L13.8535534,18.1464466 C14.0488155,18.3417088 14.0488155,18.6582912 13.8535534,18.8535534 C13.6582912,19.0488155 13.3417088,19.0488155 13.1464466,18.8535534 L6.14644661,11.8535534 C5.83146418,11.538571 6.05454757,11 6.5,11 L10.5,11 C11.709479,11 12.7183558,10.1411202 12.9499909,9 L6.5,9 C6.22385763,9 6,8.77614237 6,8.5 C6,8.22385763 6.22385763,8 6.5,8 L12.9499909,8 C12.7183558,6.85887984 11.709479,6 10.5,6 L6.5,6 C6.22385763,6 6,5.77614237 6,5.5 C6,5.22385763 6.22385763,5 6.5,5 L10.5,5 L17.5,5 C17.7761424,5 18,5.22385763 18,5.5 C18,5.77614237 17.7761424,6 17.5,6 L12.9494914,6 L12.9494914,6 Z'/%3E%3C/svg%3E");
}

.order-placed .woocommerce ul.order_details li.method::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' fill='%23377d5e' width='80px' height='80px' viewBox='0 0 32 32' version='1.1'%3E%3Ctitle%3Ecredit-card%3C/title%3E%3Cpath d='M28 5.25h-24c-1.518 0.002-2.748 1.232-2.75 2.75v16c0.002 1.518 1.232 2.748 2.75 2.75h24c1.518-0.002 2.748-1.232 2.75-2.75v-16c-0.002-1.518-1.232-2.748-2.75-2.75h-0zM2.75 10.75h26.5v2.5h-26.5zM4 6.75h24c0.69 0.001 1.249 0.56 1.25 1.25v1.25h-26.5v-1.25c0.001-0.69 0.56-1.249 1.25-1.25h0zM28 25.25h-24c-0.69-0.001-1.249-0.56-1.25-1.25v-9.25h26.5v9.25c-0.001 0.69-0.56 1.249-1.25 1.25h-0zM10 21.25h-4c-0.414 0-0.75 0.336-0.75 0.75s0.336 0.75 0.75 0.75v0h4c0.414 0 0.75-0.336 0.75-0.75s-0.336-0.75-0.75-0.75v0zM20 21.25h-6c-0.414 0-0.75 0.336-0.75 0.75s0.336 0.75 0.75 0.75v0h6c0.414 0 0.75-0.336 0.75-0.75s-0.336-0.75-0.75-0.75v0z'/%3E%3C/svg%3E");
}

.order-placed .woocommerce ul.order_details+p,
.order-placed .woocommerce-thankyou-order-details+p {
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 14px 20px;
  text-align: center;
  color: var(--secondary);
  font-weight: 600;
  background-color: #377d5e0f;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
}

.order-placed .woocommerce ul.order_details+p::before,
.order-placed .woocommerce-thankyou-order-details+p::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' xmlns:sketch='http://www.bohemiancoding.com/sketch/ns' width='80px' height='80px' viewBox='-1.5 0 33 33' version='1.1'%3E%3Ctitle%3Ewallet%3C/title%3E%3Cdesc%3ECreated with Sketch Beta.%3C/desc%3E%3Cdefs%3E%3C/defs%3E%3Cg id='Page-1' stroke='none' stroke-width='1' fill='none' fill-rule='evenodd' sketch:type='MSPage'%3E%3Cg id='Icon-Set' sketch:type='MSLayerGroup' transform='translate(-257.000000, -774.000000)' fill='%23377d5e'%3E%3Cpath d='M285,793 L280,793 C279.448,793 279,793.448 279,794 L279,798 C279,798.553 279.448,799 280,799 L285,799 L285,804 C285,804.553 284.552,805 284,805 L260,805 C259.448,805 259,804.553 259,804 L259,785 L284,785 C284.552,785 285,785.447 285,786 L285,793 L285,793 Z M285,796 L285,797 L281,797 L281,796 L281,795 L285,795 L285,796 L285,796 Z M283,777 L283,783 L263.5,783 L283,777 L283,777 Z M285,783 L285,776 C285,775.447 284.764,775.141 284.25,774.938 C283.854,774.781 283.469,774.875 283,775 L257,783 L257,805 C257,806.104 257.896,807 259,807 L285,807 C286.104,807 287,806.104 287,805 L287,785 C287,783.896 286.104,783 285,783 L285,783 Z' id='wallet' sketch:type='MSShapeGroup'%3E%3C/path%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  content: '';
  display: block;
  background-size: 20px;
  width: 20px;
  height: 20px;
  margin-right: 10px;
}

.order-placed .woocommerce-order-details,
.order-placed .woocommerce-customer-details {
  border: 1px solid var(--border);
  border-radius: 12px;
}

.order-placed .woocommerce-order-details__title,
.order-placed .wc-block-order-confirmation-additional-fields-wrapper h2,
.order-placed .woocommerce-column__title {
  font-size: 20px;
  padding: 20px;
  margin-bottom: 0;
  text-transform: capitalize;
  letter-spacing: normal;
}

.order-placed .woocommerce table.shop_table th:nth-of-type(1),
.order-placed .woocommerce table.shop_table td:nth-of-type(1) {
  width: 80%;
}

.order-placed .woocommerce table.shop_table th:nth-of-type(2),
.order-placed .woocommerce table.shop_table td:nth-of-type(2) {
  width: 20%;
}

.order-placed .woocommerce table.shop_table td.product-total {
  font-weight: 500;
}

.order-placed .wc-block-order-confirmation-additional-fields-wrapper h2 {
  padding-bottom: 0;
}

.order-placed .woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list {
  margin: 0;
  border: 0;
}

.order-placed .woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dt {
  padding: 15px 20px;
  color: var(--gray);
  font-weight: 400;
}

.order-placed .woocommerce .wc-block-order-confirmation-additional-fields-wrapper .wc-block-components-additional-fields-list dd {
  padding: 15px 20px;
  color: var(--secondary);
  font-weight: 600;
}

.order-placed .woocommerce-table.woocommerce-table--custom-fields.custom-fields {
  margin: 0;
  border: 0;
  border-collapse: collapse;
}

.order-placed .woocommerce-table.woocommerce-table--custom-fields.custom-fields th {
  border-top: 1px solid var(--border) !important;
}

.order-placed .woocommerce-table.woocommerce-table--custom-fields.custom-fields th,
.order-placed .woocommerce-table.woocommerce-table--custom-fields.custom-fields td {
  padding: 10px 20px;
}

.order-placed .woocommerce .woocommerce-customer-details address {
  border: 0;
  padding: 0 20px;
  color: var(--gray);
  margin-bottom: 20px;
}

.order-placed .woocommerce table.shop_table.order_details {
  border: 0;
  border-collapse: collapse;
  margin-bottom: 0;
}

.order-placed .woocommerce table.shop_table.order_details th {
  border-top: 1px solid var(--border);
  padding: 10px 20px;
}

.order-placed .woocommerce table.shop_table.order_details td {
  padding: 10px 20px;
}

.order-placed .woocommerce table.shop_table.order_details .product-name a {
  font-weight: 600;
}

.order-placed .woocommerce table.shop_table.order_details .product-name a:hover {
  color: var(--secondary);
  text-decoration: underline;
}

.order-placed .woocommerce table.shop_table.order_details .product-total .amount {
  color: var(--gray);
  font-weight: 600;
}

.order-placed .woocommerce table.shop_table.order_details .product-purchase-note p {
  color: var(--gray);
}

.order-placed .woocommerce table.shop_table.order_details tfoot th {
  font-weight: 400;
  color: var(--text);
}

.order-placed .woocommerce table.shop_table.order_details tfoot td {
  font-weight: 400;
}

.order-placed .woocommerce table.shop_table.order_details tfoot td .amount {
  font-weight: 600;
}

.order-placed .woocommerce ul.order_details {
  display: flex;
  padding: 0;
  width: 100%;
  border: 1px solid var(--border);
  border-radius: 12px;
  margin-bottom: 20px;
}

.order-placed .woocommerce-order {
  width: 100%;
}

#msg-razorpay-success {
  width: 100%;
}

#msg-razorpay-success+p {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

button#btn-razorpay,
button#place_order {
  color: var(--white);
  background: var(--secondary);
  border: 1px solid var(--secondary);
  border-radius: 8px;
  width: 160px;
  height: 48px;
  font-weight: 500;
  margin-right: 10px;
}

button#btn-razorpay-cancel {
  color: var(--secondary);
  border: 1px solid var(--secondary);
  background-color: var(--white);
  border-radius: 8px;
  width: 160px;
  height: 48px;
  font-weight: 500;
}

.woocommerce form .form-row .input-checkbox {
  accent-color: var(--secondary);
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.woocommerce .input-radio {
  position: relative;
  top: 2px;
  accent-color: var(--secondary);
  cursor: pointer;
  width: 16px;
  height: 16px;
}

.woocommerce .input-radio+label {
  margin-left: 7px;
}

.order-placed .wc_payment_method .payment_box {
  color: var(--gray);
  padding-left: 26px;
  margin-top: 5px;
}

.order-placed .payment_method_razorpay img {
  display: none;
}

.order-placed .woocommerce table.shop_table {
  border-radius: 8px;
}

.order-placed .payment_methods {
  margin: 0;
  list-style: none;
  border: 1px solid var(--border);
  border-radius: 8px;
  padding: 15px;
}

.order-placed .woocommerce-terms-and-conditions-wrapper {
  margin-top: 15px;
}

.order-placed .woocommerce-privacy-policy-text p {
  color: var(--gray);
}

/* Track Order */
.track-order-page {
  padding: 60px 0;
}

.track-order-page .vi-woo-orders-tracking-form-search .vi-woo-orders-tracking-form-row .vi-woo-orders-tracking-form-search-tracking-number {
  outline: 0;
  border: 1px solid var(--border);
  border-radius: 8px;
  margin-right: 10px;
  padding: 6px 16px;
}

.track-order-page .vi-woo-orders-tracking-form-search .vi-woo-orders-tracking-form-row .vi-woo-orders-tracking-form-search-tracking-number:focus {
  outline: 0;
}

.track-order-page .vi-woo-orders-tracking-form-search .vi-woo-orders-tracking-form-row {
  border: 0;
}

.track-order-page .vi-woo-orders-tracking-form-search .vi-woo-orders-tracking-form-row .vi-woo-orders-tracking-form-search-tracking-number-btnclick {
  background-color: var(--secondary);
  border-radius: 8px;
  font-weight: 500;
  letter-spacing: .5px;
}

.track-order-page .vi-woo-orders-tracking-form-search .vi-woo-orders-tracking-form-row .vi-woo-orders-tracking-form-search-tracking-number-btnclick:before {
  display: none;
}

/* Choose homemade */
.choose-homemade {
  background-color: #F8F4EF;
  padding: 60px 0;
  text-align: center;
}

.choose-homemade .sm_card {
  padding: 30px 20px;
}

.choose-homemade h3 {
  font-size: 18px;
  font-weight: 600;
  color: var(--text);
}

.choose-homemade figure {
  background-repeat: no-repeat;
  background-position: center;
  width: 80px;
  height: 80px;
  margin: 0 auto 20px;
}

.choose-homemade p {
  color: var(--gray);
}

.choose-homemade .box1 figure {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 719.62 719.61'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %233e7e62; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cg id='Generative_Object' data-name='Generative Object'%3E%3Cg%3E%3Cpath class='cls-1' d='M107.36,432.86c0,9.47-7.68,17.15-17.15,17.15s-17.14-7.68-17.14-17.15,7.67-17.15,17.14-17.15,17.15,7.68,17.15,17.15Z'/%3E%3Cpath class='cls-1' d='M132.95,302.34c-5.32,10.09-14.41,16.93-25.48,19.45-23.23,5.3-47.22-8.26-51.37-32.24-2.32-13.35,1.54-27.09,10.23-37.36,3.55-4.2,7.74-7.12,12.48-9.63,1.18-.62,2.19-1.42,3.69-1.6l8.42,19.39c-10.89,4.52-16.82,14.32-13.19,25.78,3.17,7.41,9.92,12.37,17.91,13.34,7.07.87,13.9-1.34,18.79-6.46,6.41-7.89,6.34-19.01-.71-27.19l15.56-12.88c4.28,5.77,7.76,12.04,8.85,19.18,1.58,10.34-.35,21.03-5.18,30.22Z'/%3E%3Cpolygon class='cls-1' points='200.76 182.7 187.49 200.04 173.04 188.98 163.3 181.22 145.06 203.94 169.17 222.6 155.74 239.98 92.8 190.48 106.11 173.21 129.55 191.98 141.95 176.5 147.52 169.21 133.28 157.67 124.34 150.43 137.76 133.14 154.01 146.1 200.76 182.7'/%3E%3Cpolygon class='cls-1' points='192.51 551.14 184.27 561.57 214.37 585.02 203.22 600 185.66 586.42 173.05 576.42 168.67 582.51 155.87 599.32 137.88 585.6 186.61 521.8 207.34 537.77 237.72 560.84 225.89 576.59 192.51 551.14'/%3E%3Cpath class='cls-1' d='M258.83,518.77l-7.81,13.1c-30.44-19.67-56.15-47.23-72.71-79.45-4-7.78-7.43-15.3-10.38-23.53-6.83-19.04-10.86-38.55-11.79-58.81l-.05-20.28c1.18-29.71,10.49-60.88,24.66-87.03l12.66-20.33,12.67,8.99c-7.64,10.53-13.78,21.62-18.85,33.42-15.68,35.38-19.86,74.5-11.91,112.41,8.06,38.45,26.78,71.72,54.86,98.99,8.92,8.37,18.16,15.87,28.65,22.52Z'/%3E%3Cpolygon class='cls-1' points='277.68 135.97 261.37 145.42 234.09 161.07 219.64 168.97 193.85 123.75 180.02 99.23 236.36 66.95 245.92 83.3 209.05 104.53 215.18 115.16 249.27 95.42 257.94 110.51 224.03 130.17 230.47 141.36 244.45 133.41 268.03 119.71 277.68 135.97'/%3E%3Cpath class='cls-1' d='M342.17,624.82c2.01-8.12.48-16.36-4.84-22.88-6.5-7.43-14.03-9.88-23.59-11.78l-36.56-7.28-5.22,26.86-4,20.75-5.92,31.09,22.46,4.54,4.68-24.04,9.21,1.62,11.06,26.87,25.35,4.71-13.48-30.99c10.54-1.71,18.33-9.24,20.85-19.47ZM318.34,625.17c-2.48,2.01-5.57,3.01-8.66,2.38l-16.59-3.41,3.38-18.03,16.82,3.53c2.66.55,4.9,2.02,6.5,4.15,1.95,3.69,1.4,8.13-1.45,11.38Z'/%3E%3Cpath class='cls-1' d='M383.16,121.59l-21.61,1.71-3.93-45.73-18.45,33.24-21.56-27.98c-.37-.38-.58-.81-1.45-.72l3.61,44.82-21.6,1.51-6.06-81.07,23.08-1.63,22.09,29.44,16.75-32.36,22.8-1.52,6.33,80.29Z'/%3E%3Cpath class='cls-1' d='M415.34,302.32l-18.97,2.83-20.86,4.21-14.12,4.53c-8.55-6.14-17.67-10.36-27.91-12.52l-20.37-4.31c-.43-.1-.7.42-.69.63.01.27-.02.95.6,1.24l24.75,11.45c4.82,2.23,9.12,4.7,13.46,8.15l-10.64,4.95c-17.43,9.7-29.93,20.13-41.08,36.85-4.6-.75-8.66-1.95-12.75-3.91-18.59-8.91-33.26-24.25-44.36-41.49-4.75-7.37-8.85-14.89-12.26-23l-2.04-6.03c-3.99-9.89-6.63-19.96-9.1-30.4-2.56-10.78-5.05-21.17-8.2-31.74-.34-1.16.36-2.69,1.01-3.4.63-.69,2.16-1.54,3.39-.88,13.86,7.44,28.52,13.38,44.29,15.5l36.89,3.91c10.41,1.1,20.29,2.65,30.46,4.92,14.41,3.21,27.64,8.48,40.4,15.82,10.99,6.33,21.29,13.22,30.5,21.95,6.7,6.34,12.71,12.92,17.6,20.74Z'/%3E%3Cpolygon class='cls-1' points='447.29 56.2 429.11 134.49 407.22 129.4 425.39 51.12 447.29 56.2'/%3E%3Cpolygon class='cls-1' points='480.32 653.56 417.16 670.8 410.78 647.4 396.29 593.39 441.13 580.96 458.63 575.98 463.62 593.88 422.46 605.31 425.33 617.53 463.15 606.87 464.45 612.44 467.53 623.94 447.32 629.67 429.91 634.54 433.53 646.98 475.05 635.58 480.32 653.56'/%3E%3Cpath class='cls-1' d='M523.43,482.05c-20.31,27.6-47.53,49.68-78.73,64.02-27.62,12.7-57.49,18.9-87.87,18.31-12.88-.25-25.22-1.49-37.74-4.27-13.92-3.1-27.16-7.51-40.37-12.82l1.23-3.64-1.48-2.2c-5.42-13.82-5.84-32.36-5.98-47.53-.36-36.72,7.07-75.81,22.71-109.04,13.39-28.47,32.18-47.79,61.5-59.35l10.09-3.98c9.31-2.57,18.39-4.87,28.05-6.14l56.12-7.37,29.59-4.61c14.71-3.06,28.63-7.8,41.86-14.82l3.22-.14c2.68-.12,5.06,2.94,4.3,5.93l-9.41,36.85-7.37,27.56c-5.59,18.69-13.62,36.29-24.91,52.19-10.15,14.3-23.94,27.95-38.67,37.34-16.67,10.62-32.87,16.48-52.3,19.52l-11.39,1.79-27.85,3.47c-8.98,1.11-17.48,2.74-26.23,4.91l-17.03,5.71c-2.34.79-5.57.37-7.19-1.34-1.85-1.96-2.39-4.83-2.09-7.5.97-8.52,4-16.24,8.23-23.68,9.88-17.38,24.69-32.79,42.28-42.43l29.8-14.63c1.14-.56,1.61-1.19,1.42-2.28-.19-1.12-1.39-1.75-2.69-1.37l-14.47,4.25-19.38,7.22c-15.37,6.46-29.31,15.79-40.47,28.27-9.68,10.81-16.35,23.73-20.6,37.56-6.65,20.64-9.63,42.98-5.25,64.53,10.89,4.89,22.1,8.9,33.94,11.45l23.78,3.59c35.14,3.18,68.93-2.92,100.54-18.52,26.44-13.05,49.21-31.93,67.02-55.35,24.45-32.15,37.97-72.14,37.85-112.59-.05-16.34-1.94-32.31-6.17-48.06-14.69-54.65-52.06-99.37-103.46-123.05-43.21-19.91-93.53-22.23-138.55-6.8-20.34,6.88-39.1,17.3-56.21,30.54l-9.61-11.88c17.05-13.18,35.76-23.46,55.87-30.96,69.78-25.65,147.08-11.59,203.37,36.77,15.46,13.28,28.69,28.8,39.49,46.04,44.2,70.53,40.52,161.51-8.79,228.53Z'/%3E%3Cpath class='cls-1' d='M491.91,141.45c6.6,8,15.44,9.39,25.16,5.95l7.66,18.94c-4.81,1.93-9.42,3.03-14.38,3.42-9,.69-17.33-1.79-24.68-6.9-4.09-3.27-8.16-6.39-11.41-10.63-12.11-15.79-10.45-37.82,3.16-52.63,17.29-18.8,46.39-17.1,63.47,1.64,6.18,6.6,9.62,15.16,10.03,24.29l-20.89,1.29c-.39-8.43-5.62-15.74-13.26-18.92-7.03-2.3-14.52-1.02-19.84,3.97-8.35,7.49-12.4,20.67-5.02,29.58Z'/%3E%3Cpolygon class='cls-1' points='599.96 566.24 589 576.78 576.83 588.56 563.91 601.09 552.79 611.97 548.7 607.93 538.08 596.92 528.94 587.43 517.94 576.02 509.2 566.9 501.61 558.93 497 554.17 504.64 546.79 513.37 538.38 527.05 525.11 537.68 514.84 543.6 509.11 557.24 522.36 540.9 537.79 532.39 546.01 526.24 551.87 534.86 560.92 549.64 546.21 558.18 537.98 562.4 533.98 568.65 540.51 574.34 546.48 557.09 563.47 546.64 573.73 555.78 582.9 560.92 577.93 579.77 559.44 586.55 552.82 599.96 566.24'/%3E%3Cpath class='cls-1' d='M359.81,0C161.09,0,0,161.09,0,359.8s161.09,359.81,359.81,359.81,359.81-161.09,359.81-359.81S558.53,0,359.81,0ZM359.84,704.11c-190.15,0-344.3-154.15-344.3-344.3S169.69,15.51,359.84,15.51s344.3,154.15,344.3,344.3-154.15,344.3-344.3,344.3Z'/%3E%3Cpath class='cls-1' d='M610.61,168.58l-36.45,7.99-48.96,10.83,13.83,19.36,15.08-3.76,18.16,25.6-8.13,13.05,13.44,19.35,22.56-37.14,23.28-38.09-12.81-17.19ZM582.65,212.86l-10.07-14.17,6.54-1.96,17.34-4.24-13.81,20.37Z'/%3E%3Ccircle class='cls-1' cx='629.45' cy='432.88' r='17.11' transform='translate(-117.74 273.83) rotate(-22.5)'/%3E%3Cpolygon class='cls-1' points='632.4 290.3 605.45 296.4 614.46 334.07 595.63 338.62 590.71 317.36 582.11 279.03 589.51 277.4 634.82 266.92 659.52 261.21 664.95 282.86 632.4 290.3'/%3E%3Cpath class='cls-1' d='M107.36,432.86c0,9.47-7.68,17.15-17.15,17.15s-17.14-7.68-17.14-17.15,7.67-17.15,17.14-17.15,17.15,7.68,17.15,17.15Z'/%3E%3Cpath class='cls-1' d='M132.95,302.34c-5.32,10.09-14.41,16.93-25.48,19.45-23.23,5.3-47.22-8.26-51.37-32.24-2.32-13.35,1.54-27.09,10.23-37.36,3.55-4.2,7.74-7.12,12.48-9.63,1.18-.62,2.19-1.42,3.69-1.6l8.42,19.39c-10.89,4.52-16.82,14.32-13.19,25.78,3.17,7.41,9.92,12.37,17.91,13.34,7.07.87,13.9-1.34,18.79-6.46,6.41-7.89,6.34-19.01-.71-27.19l15.56-12.88c4.28,5.77,7.76,12.04,8.85,19.18,1.58,10.34-.35,21.03-5.18,30.22Z'/%3E%3Cpolygon class='cls-1' points='200.76 182.7 187.49 200.04 173.04 188.98 163.3 181.22 145.06 203.94 169.17 222.6 155.74 239.98 92.8 190.48 106.11 173.21 129.55 191.98 141.95 176.5 147.52 169.21 133.28 157.67 124.34 150.43 137.76 133.14 154.01 146.1 200.76 182.7'/%3E%3Cpolygon class='cls-1' points='192.51 551.14 184.27 561.57 214.37 585.02 203.22 600 185.66 586.42 173.05 576.42 168.67 582.51 155.87 599.32 137.88 585.6 186.61 521.8 207.34 537.77 237.72 560.84 225.89 576.59 192.51 551.14'/%3E%3Cpath class='cls-1' d='M258.83,518.77l-7.81,13.1c-30.44-19.67-56.15-47.23-72.71-79.45-4-7.78-7.43-15.3-10.38-23.53-6.83-19.04-10.86-38.55-11.79-58.81l-.05-20.28c1.18-29.71,10.49-60.88,24.66-87.03l12.66-20.33,12.67,8.99c-7.64,10.53-13.78,21.62-18.85,33.42-15.68,35.38-19.86,74.5-11.91,112.41,8.06,38.45,26.78,71.72,54.86,98.99,8.92,8.37,18.16,15.87,28.65,22.52Z'/%3E%3Cpolygon class='cls-1' points='277.68 135.97 261.37 145.42 234.09 161.07 219.64 168.97 193.85 123.75 180.02 99.23 236.36 66.95 245.92 83.3 209.05 104.53 215.18 115.16 249.27 95.42 257.94 110.51 224.03 130.17 230.47 141.36 244.45 133.41 268.03 119.71 277.68 135.97'/%3E%3Cpath class='cls-1' d='M342.17,624.82c2.01-8.12.48-16.36-4.84-22.88-6.5-7.43-14.03-9.88-23.59-11.78l-36.56-7.28-5.22,26.86-4,20.75-5.92,31.09,22.46,4.54,4.68-24.04,9.21,1.62,11.06,26.87,25.35,4.71-13.48-30.99c10.54-1.71,18.33-9.24,20.85-19.47ZM318.34,625.17c-2.48,2.01-5.57,3.01-8.66,2.38l-16.59-3.41,3.38-18.03,16.82,3.53c2.66.55,4.9,2.02,6.5,4.15,1.95,3.69,1.4,8.13-1.45,11.38Z'/%3E%3Cpath class='cls-1' d='M383.16,121.59l-21.61,1.71-3.93-45.73-18.45,33.24-21.56-27.98c-.37-.38-.58-.81-1.45-.72l3.61,44.82-21.6,1.51-6.06-81.07,23.08-1.63,22.09,29.44,16.75-32.36,22.8-1.52,6.33,80.29Z'/%3E%3Cpath class='cls-1' d='M415.34,302.32l-18.97,2.83-20.86,4.21-14.12,4.53c-8.55-6.14-17.67-10.36-27.91-12.52l-20.37-4.31c-.43-.1-.7.42-.69.63.01.27-.02.95.6,1.24l24.75,11.45c4.82,2.23,9.12,4.7,13.46,8.15l-10.64,4.95c-17.43,9.7-29.93,20.13-41.08,36.85-4.6-.75-8.66-1.95-12.75-3.91-18.59-8.91-33.26-24.25-44.36-41.49-4.75-7.37-8.85-14.89-12.26-23l-2.04-6.03c-3.99-9.89-6.63-19.96-9.1-30.4-2.56-10.78-5.05-21.17-8.2-31.74-.34-1.16.36-2.69,1.01-3.4.63-.69,2.16-1.54,3.39-.88,13.86,7.44,28.52,13.38,44.29,15.5l36.89,3.91c10.41,1.1,20.29,2.65,30.46,4.92,14.41,3.21,27.64,8.48,40.4,15.82,10.99,6.33,21.29,13.22,30.5,21.95,6.7,6.34,12.71,12.92,17.6,20.74Z'/%3E%3Cpolygon class='cls-1' points='447.29 56.2 429.11 134.49 407.22 129.4 425.39 51.12 447.29 56.2'/%3E%3Cpolygon class='cls-1' points='480.32 653.56 417.16 670.8 410.78 647.4 396.29 593.39 441.13 580.96 458.63 575.98 463.62 593.88 422.46 605.31 425.33 617.53 463.15 606.87 464.45 612.44 467.53 623.94 447.32 629.67 429.91 634.54 433.53 646.98 475.05 635.58 480.32 653.56'/%3E%3Cpath class='cls-1' d='M523.43,482.05c-20.31,27.6-47.53,49.68-78.73,64.02-27.62,12.7-57.49,18.9-87.87,18.31-12.88-.25-25.22-1.49-37.74-4.27-13.92-3.1-27.16-7.51-40.37-12.82l1.23-3.64-1.48-2.2c-5.42-13.82-5.84-32.36-5.98-47.53-.36-36.72,7.07-75.81,22.71-109.04,13.39-28.47,32.18-47.79,61.5-59.35l10.09-3.98c9.31-2.57,18.39-4.87,28.05-6.14l56.12-7.37,29.59-4.61c14.71-3.06,28.63-7.8,41.86-14.82l3.22-.14c2.68-.12,5.06,2.94,4.3,5.93l-9.41,36.85-7.37,27.56c-5.59,18.69-13.62,36.29-24.91,52.19-10.15,14.3-23.94,27.95-38.67,37.34-16.67,10.62-32.87,16.48-52.3,19.52l-11.39,1.79-27.85,3.47c-8.98,1.11-17.48,2.74-26.23,4.91l-17.03,5.71c-2.34.79-5.57.37-7.19-1.34-1.85-1.96-2.39-4.83-2.09-7.5.97-8.52,4-16.24,8.23-23.68,9.88-17.38,24.69-32.79,42.28-42.43l29.8-14.63c1.14-.56,1.61-1.19,1.42-2.28-.19-1.12-1.39-1.75-2.69-1.37l-14.47,4.25-19.38,7.22c-15.37,6.46-29.31,15.79-40.47,28.27-9.68,10.81-16.35,23.73-20.6,37.56-6.65,20.64-9.63,42.98-5.25,64.53,10.89,4.89,22.1,8.9,33.94,11.45l23.78,3.59c35.14,3.18,68.93-2.92,100.54-18.52,26.44-13.05,49.21-31.93,67.02-55.35,24.45-32.15,37.97-72.14,37.85-112.59-.05-16.34-1.94-32.31-6.17-48.06-14.69-54.65-52.06-99.37-103.46-123.05-43.21-19.91-93.53-22.23-138.55-6.8-20.34,6.88-39.1,17.3-56.21,30.54l-9.61-11.88c17.05-13.18,35.76-23.46,55.87-30.96,69.78-25.65,147.08-11.59,203.37,36.77,15.46,13.28,28.69,28.8,39.49,46.04,44.2,70.53,40.52,161.51-8.79,228.53Z'/%3E%3Cpath class='cls-1' d='M491.91,141.45c6.6,8,15.44,9.39,25.16,5.95l7.66,18.94c-4.81,1.93-9.42,3.03-14.38,3.42-9,.69-17.33-1.79-24.68-6.9-4.09-3.27-8.16-6.39-11.41-10.63-12.11-15.79-10.45-37.82,3.16-52.63,17.29-18.8,46.39-17.1,63.47,1.64,6.18,6.6,9.62,15.16,10.03,24.29l-20.89,1.29c-.39-8.43-5.62-15.74-13.26-18.92-7.03-2.3-14.52-1.02-19.84,3.97-8.35,7.49-12.4,20.67-5.02,29.58Z'/%3E%3Cpolygon class='cls-1' points='599.96 566.24 589 576.78 576.83 588.56 563.91 601.09 552.79 611.97 548.7 607.93 538.08 596.92 528.94 587.43 517.94 576.02 509.2 566.9 501.61 558.93 497 554.17 504.64 546.79 513.37 538.38 527.05 525.11 537.68 514.84 543.6 509.11 557.24 522.36 540.9 537.79 532.39 546.01 526.24 551.87 534.86 560.92 549.64 546.21 558.18 537.98 562.4 533.98 568.65 540.51 574.34 546.48 557.09 563.47 546.64 573.73 555.78 582.9 560.92 577.93 579.77 559.44 586.55 552.82 599.96 566.24'/%3E%3Cpath class='cls-1' d='M610.61,168.58l-36.45,7.99-48.96,10.83,13.83,19.36,15.08-3.76,18.16,25.6-8.13,13.05,13.44,19.35,22.56-37.14,23.28-38.09-12.81-17.19ZM582.65,212.86l-10.07-14.17,6.54-1.96,17.34-4.24-13.81,20.37Z'/%3E%3Ccircle class='cls-1' cx='629.45' cy='432.88' r='17.11' transform='translate(-117.74 273.83) rotate(-22.5)'/%3E%3Cpolygon class='cls-1' points='632.4 290.3 605.45 296.4 614.46 334.07 595.63 338.62 590.71 317.36 582.11 279.03 589.51 277.4 634.82 266.92 659.52 261.21 664.95 282.86 632.4 290.3'/%3E%3Cg%3E%3Cpath class='cls-1' d='M383.16,121.59l-21.61,1.71-3.93-45.73-18.45,33.24-21.56-27.98c-.37-.38-.58-.81-1.45-.72l3.61,44.82-21.6,1.51-6.06-81.07,23.08-1.63,22.09,29.44,16.75-32.36,22.8-1.52,6.33,80.29Z'/%3E%3Cg%3E%3Cpath class='cls-1' d='M523.43,482.05c-20.31,27.6-47.53,49.68-78.73,64.02-27.62,12.7-57.49,18.9-87.87,18.31-12.88-.25-25.22-1.49-37.74-4.27-13.92-3.1-27.16-7.51-40.37-12.82l1.23-3.64-1.48-2.2c-5.42-13.82-5.84-32.36-5.98-47.53-.36-36.72,7.07-75.81,22.71-109.04,13.39-28.47,32.18-47.79,61.5-59.35l10.09-3.98c9.31-2.57,18.39-4.87,28.05-6.14l56.12-7.37,29.59-4.61c14.71-3.06,28.63-7.8,41.86-14.82l3.22-.14c2.68-.12,5.06,2.94,4.3,5.93l-9.41,36.85-7.37,27.56c-5.59,18.69-13.62,36.29-24.91,52.19-10.15,14.3-23.94,27.95-38.67,37.34-16.67,10.62-32.87,16.48-52.3,19.52l-11.39,1.79-27.85,3.47c-8.98,1.11-17.48,2.74-26.23,4.91l-17.03,5.71c-2.34.79-5.57.37-7.19-1.34-1.85-1.96-2.39-4.83-2.09-7.5.97-8.52,4-16.24,8.23-23.68,9.88-17.38,24.69-32.79,42.28-42.43l29.8-14.63c1.14-.56,1.61-1.19,1.42-2.28-.19-1.12-1.39-1.75-2.69-1.37l-14.47,4.25-19.38,7.22c-15.37,6.46-29.31,15.79-40.47,28.27-9.68,10.81-16.35,23.73-20.6,37.56-6.65,20.64-9.63,42.98-5.25,64.53,10.89,4.89,22.1,8.9,33.94,11.45l23.78,3.59c35.14,3.18,68.93-2.92,100.54-18.52,26.44-13.05,49.21-31.93,67.02-55.35,24.45-32.15,37.97-72.14,37.85-112.59-.05-16.34-1.94-32.31-6.17-48.06-14.69-54.65-52.06-99.37-103.46-123.05-43.21-19.91-93.53-22.23-138.55-6.8-20.34,6.88-39.1,17.3-56.21,30.54l-9.61-11.88c17.05-13.18,35.76-23.46,55.87-30.96,69.78-25.65,147.08-11.59,203.37,36.77,15.46,13.28,28.69,28.8,39.49,46.04,44.2,70.53,40.52,161.51-8.79,228.53Z'/%3E%3Cpath class='cls-1' d='M415.34,302.32l-18.97,2.83-20.86,4.21-14.12,4.53c-8.55-6.14-17.67-10.36-27.91-12.52l-20.37-4.31c-.43-.1-.7.42-.69.63.01.27-.02.95.6,1.24l24.75,11.45c4.82,2.23,9.12,4.7,13.46,8.15l-10.64,4.95c-17.43,9.7-29.93,20.13-41.08,36.85-4.6-.75-8.66-1.95-12.75-3.91-18.59-8.91-33.26-24.25-44.36-41.49-4.75-7.37-8.85-14.89-12.26-23l-2.04-6.03c-3.99-9.89-6.63-19.96-9.1-30.4-2.56-10.78-5.05-21.17-8.2-31.74-.34-1.16.36-2.69,1.01-3.4.63-.69,2.16-1.54,3.39-.88,13.86,7.44,28.52,13.38,44.29,15.5l36.89,3.91c10.41,1.1,20.29,2.65,30.46,4.92,14.41,3.21,27.64,8.48,40.4,15.82,10.99,6.33,21.29,13.22,30.5,21.95,6.7,6.34,12.71,12.92,17.6,20.74Z'/%3E%3Cpath class='cls-1' d='M258.83,518.77l-7.81,13.1c-30.44-19.67-56.15-47.23-72.71-79.45-4-7.78-7.43-15.3-10.38-23.53-6.83-19.04-10.86-38.55-11.79-58.81l-.05-20.28c1.18-29.71,10.49-60.88,24.66-87.03l12.66-20.33,12.67,8.99c-7.64,10.53-13.78,21.62-18.85,33.42-15.68,35.38-19.86,74.5-11.91,112.41,8.06,38.45,26.78,71.72,54.86,98.99,8.92,8.37,18.16,15.87,28.65,22.52Z'/%3E%3C/g%3E%3Cg%3E%3Cpolygon class='cls-1' points='277.68 135.97 261.37 145.42 234.09 161.07 219.64 168.97 193.85 123.75 180.02 99.23 236.36 66.95 245.92 83.3 209.05 104.53 215.18 115.16 249.27 95.42 257.94 110.51 224.03 130.17 230.47 141.36 244.45 133.41 268.03 119.71 277.68 135.97'/%3E%3Cpolygon class='cls-1' points='200.76 182.7 187.49 200.04 173.04 188.98 163.3 181.22 145.06 203.94 169.17 222.6 155.74 239.98 92.8 190.48 106.11 173.21 129.55 191.98 141.95 176.5 147.52 169.21 133.28 157.67 124.34 150.43 137.76 133.14 154.01 146.1 200.76 182.7'/%3E%3C/g%3E%3Cg%3E%3Cpolygon class='cls-1' points='599.96 566.24 589 576.78 576.83 588.56 563.91 601.09 552.79 611.97 548.7 607.93 538.08 596.92 528.94 587.43 517.94 576.02 509.2 566.9 501.61 558.93 497 554.17 504.64 546.79 513.37 538.38 527.05 525.11 537.68 514.84 543.6 509.11 557.24 522.36 540.9 537.79 532.39 546.01 526.24 551.87 534.86 560.92 549.64 546.21 558.18 537.98 562.4 533.98 568.65 540.51 574.34 546.48 557.09 563.47 546.64 573.73 555.78 582.9 560.92 577.93 579.77 559.44 586.55 552.82 599.96 566.24'/%3E%3Cpolygon class='cls-1' points='480.32 653.56 417.16 670.8 410.78 647.4 396.29 593.39 441.13 580.96 458.63 575.98 463.62 593.88 422.46 605.31 425.33 617.53 463.15 606.87 464.45 612.44 467.53 623.94 447.32 629.67 429.91 634.54 433.53 646.98 475.05 635.58 480.32 653.56'/%3E%3C/g%3E%3Cpath class='cls-1' d='M132.95,302.34c-5.32,10.09-14.41,16.93-25.48,19.45-23.23,5.3-47.22-8.26-51.37-32.24-2.32-13.35,1.54-27.09,10.23-37.36,3.55-4.2,7.74-7.12,12.48-9.63,1.18-.62,2.19-1.42,3.69-1.6l8.42,19.39c-10.89,4.52-16.82,14.32-13.19,25.78,3.17,7.41,9.92,12.37,17.91,13.34,7.07.87,13.9-1.34,18.79-6.46,6.41-7.89,6.34-19.01-.71-27.19l15.56-12.88c4.28,5.77,7.76,12.04,8.85,19.18,1.58,10.34-.35,21.03-5.18,30.22Z'/%3E%3Cpolygon class='cls-1' points='192.51 551.14 184.27 561.57 214.37 585.02 203.22 600 185.66 586.42 173.05 576.42 168.67 582.51 155.87 599.32 137.88 585.6 186.61 521.8 207.34 537.77 237.72 560.84 225.89 576.59 192.51 551.14'/%3E%3Cpolygon class='cls-1' points='447.29 56.2 429.11 134.49 407.22 129.4 425.39 51.12 447.29 56.2'/%3E%3Cpath class='cls-1' d='M107.36,432.86c0,9.47-7.68,17.15-17.15,17.15s-17.14-7.68-17.14-17.15,7.67-17.15,17.14-17.15,17.15,7.68,17.15,17.15Z'/%3E%3Ccircle class='cls-1' cx='629.45' cy='432.88' r='17.11' transform='translate(-117.74 273.83) rotate(-22.5)'/%3E%3Cg%3E%3Cpath class='cls-1' d='M491.91,141.45c6.6,8,15.44,9.39,25.16,5.95l7.66,18.94c-4.81,1.93-9.42,3.03-14.38,3.42-9,.69-17.33-1.79-24.68-6.9-4.09-3.27-8.16-6.39-11.41-10.63-12.11-15.79-10.45-37.82,3.16-52.63,17.29-18.8,46.39-17.1,63.47,1.64,6.18,6.6,9.62,15.16,10.03,24.29l-20.89,1.29c-.39-8.43-5.62-15.74-13.26-18.92-7.03-2.3-14.52-1.02-19.84,3.97-8.35,7.49-12.4,20.67-5.02,29.58Z'/%3E%3Cg%3E%3Cpolygon class='cls-1' points='632.4 290.3 605.45 296.4 614.46 334.07 595.63 338.62 590.71 317.36 582.11 279.03 589.51 277.4 634.82 266.92 659.52 261.21 664.95 282.86 632.4 290.3'/%3E%3Cpath class='cls-1' d='M610.61,168.58l-36.45,7.99-48.96,10.83,13.83,19.36,15.08-3.76,18.16,25.6-8.13,13.05,13.44,19.35,22.56-37.14,23.28-38.09-12.81-17.19ZM582.65,212.86l-10.07-14.17,6.54-1.96,17.34-4.24-13.81,20.37Z'/%3E%3C/g%3E%3C/g%3E%3Cpath class='cls-1' d='M342.17,624.82c2.01-8.12.48-16.36-4.84-22.88-6.5-7.43-14.03-9.88-23.59-11.78l-36.56-7.28-5.22,26.86-4,20.75-5.92,31.09,22.46,4.54,4.68-24.04,9.21,1.62,11.06,26.87,25.35,4.71-13.48-30.99c10.54-1.71,18.33-9.24,20.85-19.47ZM318.34,625.17c-2.48,2.01-5.57,3.01-8.66,2.38l-16.59-3.41,3.38-18.03,16.82,3.53c2.66.55,4.9,2.02,6.5,4.15,1.95,3.69,1.4,8.13-1.45,11.38Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.choose-homemade .box2 figure {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 660.31 660.31'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %233e7e62; %7D .cls-2 %7B fill: %23fefefe; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cg id='Generative_Object' data-name='Generative Object'%3E%3Cg%3E%3Cpath class='cls-1' d='M214.68,235.75l-23.64-5.56,23.58-5.42,5.35-23.83,5.13,23.08c.12.54,1.02.97,1.52,1.08l22.41,5.04-6.29,1.54-17.58,3.99-5.27,23.49-5.21-23.41Z'/%3E%3Cpolygon class='cls-1' points='250.1 256.9 241.69 254.69 250.07 252.58 252.05 243.51 254.12 252.49 262.45 254.65 254.13 256.81 252.14 265.77 250.1 256.9'/%3E%3Cpath class='cls-1' d='M256.58,210.85l-16.1-3.52,16.09-3.74,3.59-15.65,3.4,14.78c.14.61.6.88,1.19,1.02l14.93,3.54-15.87,3.51-3.53,16.17-3.7-16.11Z'/%3E%3Cpath class='cls-1' d='M276.46,252.46c1.21-5.38,3.49-10.19,5.74-15.22,6-13.44,16.57-30.71,30.63-35.83,2.35-.95,4.89-.43,5.92,1.86l-2.46,15.92c-1.84,11.86-3.2,23.51-2.75,35.52.49,13.35,2.94,26.01,7.08,38.62,6.49,19.71,13.24,29.22,25.62,45.07l17.81,22.81c9.45,12.88,17.15,26.6,22.77,41.56,2.64,7.05,4.09,14.08,4.73,21.56.58,6.77-.09,13.49-1.9,20.07-1.99,7.22-6.02,13.26-10.99,18.75-3.1,3.43-6.63,6.14-10.32,8.91-.81.6-2.12.5-3.02.07.58-6.63-.28-12.71-2.4-18.86-6.82-19.68-21.43-38.39-39.3-49.15-10.83-6.52-23.27-8.59-35.75-7.7-12.1.87-22.8,1.64-33.11-5.69-5.73-4.08-8.69-11.28-6.4-18.14l2.77-8.27c1.95-5.83-4.13-7.35-6.14-10.69-2.21-3.68-1.68-8.4,1.16-11.43l2.91-3.1c-.79-2.64-3.99-3.73-5.03-5.58-1.96-3.47-1.87-8.18.56-11.4l6.22-6.42c1.26-1.3.22-3.29-1.24-4.15-3.32-1.94-6.31-4.01-8.58-7.15-2.02-2.81-3.19-6.17-2.3-9.61.66-2.52,2.46-4.49,4.6-5.85l10.25-6.53,8.02-5.64c8.64-6.07,12.62-14.24,14.9-24.31Z'/%3E%3Cpath class='cls-1' d='M346.03,241.49c-.16-12.97,1.59-25.57,5.96-37.6.69-1.89,2.38-2.86,4.12-2.5,1.73.36,3.04,2.24,2.48,4.12l-2.11,7.05c-6.31,21.07-3.68,48.76,1.68,70.15,2.48,9.91,5.7,19.31,10.65,28.24,3.33,6,6.8,11.59,10.98,17.02l19.93,25.89c8.06,10.46,15.44,21.09,21.88,32.61,4.5,8.05,7.8,16.26,10.25,25.13,3.44,12.47,3.46,28.19-.5,40.61-2.1,6.59-4.4,12.92-9.25,18.97,10.79-21.4,10.57-43.69.73-66.96-4.35-10.27-9.73-19.82-16.22-28.88l-14.89-20.82-11.81-15.11-9.45-13c-8.6-11.83-14.5-24.94-18.19-39.18-3.88-15-6.05-30.19-6.24-45.74Z'/%3E%3Cpath class='cls-1' d='M410.11,222.19c-.12-1.48,1-2.66,2.14-3.1,1.2-.46,2.54-.15,3.7.68,4.99,3.53,9.66,7.41,13.76,12.11,6.75,7.72,11.54,16.75,14.63,26.53,2.78,8.81,3.85,17.59,3.96,26.78l.1,8.07-.77,21.7c.52,21.42,5.47,40.04,13.76,59.52.76,1.8,1.89,3.26,2.4,5.39-1.4-1.4-1.84-3.17-2.73-4.85-4.64-8.7-8.24-17.59-11.38-26.99-2.87-8.56-4.92-17-5.81-26.01l-.8-15.46.09-19.98c.05-11.24-2.44-22.04-6.71-32.42-4.99-12.14-13.46-22.29-24.38-29.46-.96-.63-1.87-1.39-1.96-2.51Z'/%3E%3Cpath class='cls-1' d='M383.63,285.66c-4.45-15.57-5.72-31.69-4.2-47.78.8-8.44,3.09-16.28,6.53-23.88.47-1.03,1.35-1.54,2.3-1.71.92-.17,1.86.23,2.65,1.02,1.17,1.17,1.4,3.07.76,4.68-1.65,4.09-2.92,7.94-3.79,12.41-3.67,18.85-2.88,38.36,3,56.75,3.02,9.47,7.09,18.29,11.89,26.93,4.75,8.53,10.44,16.08,16.62,23.61,9.16,11.16,17.81,22.28,25.97,34.19,7.94,11.59,14.1,21.7,18.8,35.11,4.31,12.31,5.78,25.28,3.56,38.16-1.1,6.37-2.91,12.19-6.01,17.78-1.57,2.98-3.07,5.87-5.67,8.13,2.44-4.22,4.47-8.13,5.62-12.78,1.34-5.41,2.37-10.68,2.65-16.36.66-13.24-2.25-26.05-7.94-37.97-3.86-8.08-8.01-15.61-13.15-22.91l-10.55-15-11.9-15.39-15.27-19.74c-9.86-13.77-17.19-28.89-21.87-45.25Z'/%3E%3Cpath class='cls-1' d='M447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM309.51,48.06l-3.15-1.76c-2.5-1-5.23.09-7.73.48l-4.3.68-4.41.83c-2.08,1.18-.36,6.68.17,10.26l1.06,7.12c.21,1.43,1.22,2.13,2.82,1.96l7.77-.86c3.99-.02,8.47-1.34,10.68-5,.89-1.46,1.43-3.68,1.61-5.39.26-2.54-1.75-6.76-4.52-8.32ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM309.51,48.06l-3.15-1.76c-2.5-1-5.23.09-7.73.48l-4.3.68-4.41.83c-2.08,1.18-.36,6.68.17,10.26l1.06,7.12c.21,1.43,1.22,2.13,2.82,1.96l7.77-.86c3.99-.02,8.47-1.34,10.68-5,.89-1.46,1.43-3.68,1.61-5.39.26-2.54-1.75-6.76-4.52-8.32ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM256.29,82.95c-.18-1.99-.22-3.79-1.36-5.6l-1.04-3.43-2.62-3.39c-1.22-1.58-3.05-2.85-4.76-3.96l-4.65-1.69c-4.29-1.57-7.55.5-10.61,1.16l-3.27,2.16c-2.9,1.92-4.41,4.67-5.91,7.47-2.14,3.99-2.06,8.77-.06,12.9,1.21,2.51,2.51,4.69,4.66,6.61,1.31,1.17,2.37,2.32,4.29,2.75l2.08,1.39c3.67.82,7.61,1.12,11.37-.14l3.73-2.03c1.17-.63,1.91-1.92,2.85-2.69,2.41-1.95,3.47-4.4,4.44-7.22.51-1.5,1.02-2.57.86-4.29ZM309.51,48.06l-3.15-1.76c-2.5-1-5.23.09-7.73.48l-4.3.68-4.41.83c-2.08,1.18-.36,6.68.17,10.26l1.06,7.12c.21,1.43,1.22,2.13,2.82,1.96l7.77-.86c3.99-.02,8.47-1.34,10.68-5,.89-1.46,1.43-3.68,1.61-5.39.26-2.54-1.75-6.76-4.52-8.32ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM256.29,82.95c-.18-1.99-.22-3.79-1.36-5.6l-1.04-3.43-2.62-3.39c-1.22-1.58-3.05-2.85-4.76-3.96l-4.65-1.69c-4.29-1.57-7.55.5-10.61,1.16l-3.27,2.16c-2.9,1.92-4.41,4.67-5.91,7.47-2.14,3.99-2.06,8.77-.06,12.9,1.21,2.51,2.51,4.69,4.66,6.61,1.31,1.17,2.37,2.32,4.29,2.75l2.08,1.39c3.67.82,7.61,1.12,11.37-.14l3.73-2.03c1.17-.63,1.91-1.92,2.85-2.69,2.41-1.95,3.47-4.4,4.44-7.22.51-1.5,1.02-2.57.86-4.29ZM309.51,48.06l-3.15-1.76c-2.5-1-5.23.09-7.73.48l-4.3.68-4.41.83c-2.08,1.18-.36,6.68.17,10.26l1.06,7.12c.21,1.43,1.22,2.13,2.82,1.96l7.77-.86c3.99-.02,8.47-1.34,10.68-5,.89-1.46,1.43-3.68,1.61-5.39.26-2.54-1.75-6.76-4.52-8.32ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM256.29,82.95c-.18-1.99-.22-3.79-1.36-5.6l-1.04-3.43-2.62-3.39c-1.22-1.58-3.05-2.85-4.76-3.96l-4.65-1.69c-4.29-1.57-7.55.5-10.61,1.16l-3.27,2.16c-2.9,1.92-4.41,4.67-5.91,7.47-2.14,3.99-2.06,8.77-.06,12.9,1.21,2.51,2.51,4.69,4.66,6.61,1.31,1.17,2.37,2.32,4.29,2.75l2.08,1.39c3.67.82,7.61,1.12,11.37-.14l3.73-2.03c1.17-.63,1.91-1.92,2.85-2.69,2.41-1.95,3.47-4.4,4.44-7.22.51-1.5,1.02-2.57.86-4.29ZM309.51,48.06l-3.15-1.76c-2.5-1-5.23.09-7.73.48l-4.3.68-4.41.83c-2.08,1.18-.36,6.68.17,10.26l1.06,7.12c.21,1.43,1.22,2.13,2.82,1.96l7.77-.86c3.99-.02,8.47-1.34,10.68-5,.89-1.46,1.43-3.68,1.61-5.39.26-2.54-1.75-6.76-4.52-8.32ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM256.29,82.95c-.18-1.99-.22-3.79-1.36-5.6l-1.04-3.43-2.62-3.39c-1.22-1.58-3.05-2.85-4.76-3.96l-4.65-1.69c-4.29-1.57-7.55.5-10.61,1.16l-3.27,2.16c-2.9,1.92-4.41,4.67-5.91,7.47-2.14,3.99-2.06,8.77-.06,12.9,1.21,2.51,2.51,4.69,4.66,6.61,1.31,1.17,2.37,2.32,4.29,2.75l2.08,1.39c3.67.82,7.61,1.12,11.37-.14l3.73-2.03c1.17-.63,1.91-1.92,2.85-2.69,2.41-1.95,3.47-4.4,4.44-7.22.51-1.5,1.02-2.57.86-4.29ZM309.51,48.06l-3.15-1.76c-2.5-1-5.23.09-7.73.48l-4.3.68-4.41.83c-2.08,1.18-.36,6.68.17,10.26l1.06,7.12c.21,1.43,1.22,2.13,2.82,1.96l7.77-.86c3.99-.02,8.47-1.34,10.68-5,.89-1.46,1.43-3.68,1.61-5.39.26-2.54-1.75-6.76-4.52-8.32ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM330.15,0C147.81,0,0,147.81,0,330.16s147.81,330.15,330.15,330.15,330.16-147.81,330.16-330.15S512.49,0,330.15,0ZM453.41,112.07l3.2-4.77,2.57-4.14,2.24-3.65,2.74-4.27,2.15-3.45,2.84-4.49,2.3-3.69,2.78-4.53,2.82-4.26,3.16-5.21c1.08-.96,2.39.41,3.28,1.01l4.4,2.99c.77.53,1.38,1.07,1.42,1.9.13,2.26-1.9,2.22-3.09,5.73l-1.85,2.59c-.37,1.55-1.26,2.15-2.01,3.33l-2.29,3.62-3.37,5.39-1.89,2.98-3,5.09-1.72,2.79-2.5,3.28c-.61.8.38,3.17,1.23,3.64l3.39,1.86c1.08,1.2,2.21,1.5,3.45,2.29l3.86,2.45,4.89,2.73c.85.48,1.53,1.2,1.65,1.93.21,1.19-.52,1.71-1.26,2.76l-2.4,3.4c-1.07,1.52-3.51.71-4.68-.71l-3.88-2.34c-1.02-1.12-2.17-1.39-3.28-2.09l-4.08-2.58-3.65-2.34-3.85-2.39-5.29-3.07c-.62-.36-1.02-1.13-1.16-1.65-.18-.67.42-1.45.88-2.13ZM415.5,94.9c.75-2.77,1.92-4.98,2.97-7.56l2.4-5.93c.95-2.35,1.78-4.47,2.7-6.79l2.29-5.75,2.7-6.38c.85-2,1.45-3.78,2.31-5.8l2.45-5.71c.2-.46.22-1.32.79-1.51.67-.23,1.55-.32,2.17.18,3.44,2.77,6.22,1.98,6.96,3.46.89,1.8.08,3.41-.85,4.92l-2.25,5.79c-.53,1.37-1.47,2.44-1.65,3.96-.18,1.48-1.2,2.62-1.69,3.89l-3.23,8.3-1.98,4.34-2.22,5.53c-1.07,1.33-1.65,3.71-.1,4.93l3.21,1.69,4.54,1.42,6.23,2.62c1.5.64,2.77,1.71,4.57,1.98.39.06.85.38,1.07.57.34.29.42,1.04.15,1.7l-2.44,5.8c-.51,1.23-2.29,1.45-3.31.68-2.11-1.6-4.64-1.91-6.86-2.98-1.95-.94-3.27-2.01-5.6-2.23l-3.64-1.78c-2.28-.16-3.76-1.55-5.74-2.33-2.49-.98-5.56-1.2-7.43-3.43-.47-1.35,1.19-2.49,1.48-3.58ZM354.47,82.13l3.35-5.43,2.5-4.14,2.27-3.68,2.97-4.7,4.54-7.38,2.88-4.81,5.2-8.45,2.67-4.01c.86-1.29,1.58-2.62,3.59-1.97,6.04,1.94,10.12.02,10.64,5.07.17,1.64.59,3.57,1.03,5.19l2.58,9.46c.6,2.22,1.64,4.36,1.78,6.78.09,1.51.74,2.68,1.24,4.03,1.36,3.66.92,6.69,2.55,9.7l1.64,7.19c.75,3.27,2.42,6.36,2.6,9.91-1.51.69-3.02-.52-4.48-.67-2.34-.23-4.62.17-6.66-1.18-1.47-.97-.63-5.02-1.68-7.47-.48-1.13-1.91-3.4-3.38-3.58l-11.47-1.4-9.12-1.73c-.94-.17-2.76-.26-3.39.59-1.16,1.58-2.34,3.16-3.11,4.96-.78,1.82-1.45,3.91-3.67,4.35-1.48.29-2.98-.52-4.52-.83-1.14-.24-3.01-.09-3.76-1.07-1.29-1.67.39-3.41,1.21-4.73ZM545.83,330.13c0,119.13-96.58,215.71-215.71,215.71s-215.72-96.58-215.72-215.71,96.58-215.72,215.72-215.72,215.71,96.58,215.71,215.72ZM277.77,41.12c1.94-.86,4.31-.97,6.44-1.24l15.9-2.02c4.07-.97,8.12-.37,12.07.79,1.63.48,2.85.66,4.29,1.76,1.75,1.34,4.03,2.77,4.97,5.03l1.65,4c1.65,4,1.64,8.92.19,13.02l-1.99,4.02c-1.15,2.31-4.67,4.54-4.68,6.17,0,.85.66,1.32,1.25,2.01l5.47,6.4,2.63,3.33c.57.72,3.35,2.56,2.6,3.82-.15.25-.62.51-1.04.53l-8.67.34c-.86.03-2.53-.05-3.02-.8l-2.09-3.21-2.61-3.35-3.06-4.25c-.98-1.35-1.97-2.08-3.82-1.92l-9.72.83c-1.19.1-1.76,2.07-1.63,3.15l1.27,11.17c.13,1.07-1,2.2-2.11,2.16-3.69-.12-5.73,1.52-7.69.42-.7-.39-1-1.3-1.11-2.23l-.87-7.66-.68-8.42c-1.18-5.77-2.01-11.27-2.43-17.16l-1.91-12.71c-.16-1.09-1.06-3.32.4-3.98ZM209.93,78.85l.95-3.23c.11-2.23,1.27-3.89,2.22-5.76,2.43-4.77,7.69-9.54,12.52-11.73,1.21-.54,2.3-1.69,3.81-1.69,1.7,0,2.93-1.06,4.5-1.46,4.14-1.04,8.75-1.23,12.75.24l5.9,2.16,3.79,2.5,2.98,2.62c1.44,1.27,2.9,2.84,3.74,4.58l2.06,4.24c1.06,2.19.95,4.69,1.49,6.94.7,2.86.38,5.56-.29,8.36-.37,1.5-.21,3.26-.93,4.73l-1.97,4.01-4.02,5.05-3.19,3.07-4.2,2.61-5.32,2.52c-5.21,1.28-10.7,1.04-15.96.74-3.19-.18-7.23-2.25-9.9-4.18-6.16-4.45-9.9-10.88-10.98-18.44-.37-2.58-.71-5.29.05-7.88ZM160.91,96.3l23.7-16.44c1.02-.71,1.77-1.01,2.65-2.03.72-.84,3.07-1.77,3.84-.71l3.96,5.53c.23.89-1.15,1.89-1.76,2.31l-4.31,3.03c-1.16.81-2.19,1.51-3.34,2.3l-3.52,2.39c-1.53,1.04-2.98,1.75-4.33,3.09-.72.71-2.36,1.05-2.85,1.91-1.4,2.39-.03,4.33,1.58,5.93,1.02,1.01,1.34,2.53,2.52,3.5l1.84,2.71c1.48.9,3.06-.21,4.29-1.09l8.32-6.01,7.15-5.12c1.24-.88,2.59.34,3.23,1.45l2.83,4.86c.57,1-3.94,3.55-6.2,5.13l-5.34,3.73c-2.27,1.59-4.51,3.38-7.16,4.82-.81.44-.52,2.85.16,3.42,2.6,2.17,4.68,6.36,7.33,9.93l2.37,3.2c.69.92.33,2.39-.9,2.79-1.07.35-1.61,1.16-2.44,1.78-1.16.86-2.37,1.46-3.46,2.5-.41.38-1.2.52-1.63.47-.61-.09-.67-.74-1.04-1.26l-13.64-19.61-6.38-9.01-8.74-12.97c-.47-.69.62-2.08,1.27-2.53ZM99.18,438.03l-4.97,3.09c-1.04-.01-1.46-1.55-1.91-2.54l-9.54-21.04-3.59-9.75-5.33-17.06-2.79-10.2-2.64-12.41-2.27-14.15c-2.72-22.25-2.87-45.56.05-67.78.63-4.81,1.18-9.26,2.15-13.99.93-4.51,1.64-8.85,2.8-13.32l2.69-10.27,2.54-8.29c1.98-6.47,3.97-12.73,6.67-18.9l6.62-15.09c3.8-8.68,8.3-16.73,13.46-24.65l6.37-9.8,11.16-15.71c.72-1.01,2.13-1.64,3.3-.93,1.74,1.05,3.29,2.57,4.4,4.34-22.06,27.54-38.28,58.86-47.61,92.69l-3.59,15.04-3.61,21.23-.99,10.65-.71,9.81-.42,5.61c-.19,8.75.26,17.21,1.07,25.9l.95,10.28,1.12,7.72c1.48,10.21,3.67,19.94,6.45,29.97,4.57,16.52,11.01,32.19,18.58,47.49.37.76.26,1.65-.41,2.06ZM139.53,541.68l-3.92,3.08c-.9.71-2.39.45-3.36.81-2.37.88-4.5.88-7.02-.01l-3.04-.58c-3.8-2.14-7.47-4.51-10.3-7.9-2.79-3.35-4.89-7.16-6.61-11.2l-2.46-8.08c-.41-1.34.67-2.48,1.81-2.91l4.88-1.82c.67-.25,1.39-.3,1.97.02.61.32.55,1.19.76,1.94l2,7.49,2.04,4.15c1.64,3.33,2.98,5.07,5.89,7.18,1.87,1.36,4.01,2.72,6.43,1.42,1.5-.79,2.79-2.61,3.37-4.17.87-2.32-.81-4-1.44-5.88-.68-2.03-1.48-3.48-2.46-5.31l-2.57-4.79-1.85-5.14c-1.5-4.14-.35-9.37,2.54-12.35,1.89-1.95,4.06-4.05,6.76-4.73,4.55-1.15,10.44-.01,14.19,2.97l4.09,3.27c2.64,2.1,4.37,4.93,6.33,7.66l3.48,7.08c.72,1.47,1.91,3.82.74,5.3-2.2.78-4.59,1.06-6.52,2.64-.55.45-2.18.13-2.25-.64-.21-2.15-1.4-3.66-2.09-5.57-1.61-4.45-4.47-9.01-8.47-11.57-1-.65-1.85-1.3-3.12-1.22-1.07.07-1.88.8-2.78,1.6-2.5,2.2-2.97,5.5-.7,8.04.56,2.26,1.28,4.45,2.99,6.08.24,2.26,1.65,3.81,2.68,5.66.77,1.37.51,3.15.95,4.69,1.23,4.27.17,10.34-2.94,12.79ZM191.13,550.21c-2.05.12-3.51.86-5.43,1.7-.97.42-3.35.81-3.49,2.41l.51,30.71c.01,1.01.22,1.81.67,2.73.34.71-.24,3.18-1.17,2.57l-6.77-4.46c-1.75-1.15-2.92-2.24-3.01-4.37l-.28-6.51c-.53-2.76-.53-5.31-.65-8.16l-.31-7.64c-.04-.97-.28-1.85-.93-2.31-.74-.51-1.85-.62-2.75-.16-3.96,2.02-6.65-.81-11.47,6.73l-2.5,3.89c-.69,1.08-1.53,2.74-2.8,3.02-1.04.23-1.54-1.13-2.04-1.44l-5.04-3.11c-.96-.59-1.75-1.51-.93-2.72l4.23-6.21,5.33-8.33,3.65-5.78,3.6-5.53,3.67-6.1c1.02-1.69,1.99-3.07,3.09-4.7l3.5-5.16c.43-.64,1.13-1.26,1.71-1.29,1.71-.11,2.82,2.36,6.52,3.76.7.26,1.32,1.01,1.49,1.5.22.62.16,1.67-.41,2.13-1.36,1.12-1.86,2.54-2.76,3.97l-2.29,3.62-2.24,3.42-3.88,5.82c-.34.51-.15,1.34.05,1.67.67,1.11,6.78-.27,9.72-2.04,3.66-.13,6.91-1.35,10.28-2.63l5.31-.97,3.45-1.22c1.52-.54,3.56-1.33,5.14-.27l4.18,2.82c2.28,1.53,4.82,1.99,4.41,3.06-.11.3-.8.7-1.21.72-2.2.12-3.89,1.17-5.93,1.66l-6.01,1.45c-1.97.91-4.02,1.62-6.21,1.75ZM226.52,565.31l-2.79,5.99-2.57,5.8-2.58,5.84-2.44,5.24-2.67,5.75-2.16,4.72c-.59,1.31-.9,2.76-2.24,3.58l-4.37-1.59-5.43-3.01,4.31-8.97c.71-1.48,1.01-2.97,2.01-4.34l1.28-3.26,2.33-5.05,2.62-5.8,2.71-5.72,2.45-5.22,2.83-6.62,1.61-2.91c.87-1.56,2.66.87,5.47,1.54,1.54.37,3.9,1.57,4.17,3.27.36,2.34-1.56,4.12-2.35,5.9l-2.19,4.86ZM288.57,571.77l-1.82,7.62c-.76,3.19-1.29,6.13-2.34,9.21l-1.29,7.15c-.51,2.88-1.7,5.56-1.98,8.5l-1.82,5.8c-1.07,3.41-1.01,12.22-4.44,11.45l-6.4-1.43c-2.83-1.33-3.42-4.76-4.57-7.23l-2.58-5.56-2.55-5.84-2.5-5.5-2.69-6.09c-.76-1.71-2.14-2.86-1.95-5.06.19-2.05-2.99-3.81-4.12-3.49-.45.12-1.14.74-1.25,1.44l-1.36,9.1-1.21,3.68c-.33,3.8-1.24,7.21-2.46,10.75l-1.01,6.08c-.17,1-1.77,1.28-2.7.97l-6.06-2.02c-.79-.27-1.91-1-1.47-1.95.56-1.22,1.03-2.49,1.33-3.9l2.16-10.28,2.31-10,2.85-12.16,2.52-10.19.32-2.82c.14-1.19,1.91-1.41,2.97-.81,1.56.89,3.06,1.53,4.89,1.73,4.57.48,3.52,4.95,5.72,7.58l1.29,3.58,2.34,5.11,2.86,6.21,2.39,5.7,2.1,4.51,2.73,5.53c.33.66,1.23,1.02,1.7.97.47-.06,1.18-.78,1.34-1.42l2.2-8.87,2.58-11.45,1.29-7.42c.29-1.68,1.59-2.91,3.65-2.63l4.84.66c1.6.22,2.55,1.3,2.19,2.79ZM403.43,562.07l-2.61,9.92-2.04,8.12-2.93,10.01-2.05,7.48c-.48,1.76.6,3.54.88,5.07l1.35,7.51,1.47,4.25c.28.83-1.06,1.46-1.86,1.5-5.21.2-8.58,3.34-9,1.2l-1.2-6.19-2.06-8.13c-.51-2.01-2.46-3.45-3.72-4.94l-5.93-7.03-3.84-4.24-6.1-6.82-3.99-4.82c-1.02-1.23-3.85-2.38-4.58-.61l-.26,4.3c-.05.83-.97,1.49-2.01,1.15-1.69-.56-3.25-.16-4.97-.11l-6.19.17c-1.59.04-2.92.95-2.87,2.95l.86,38.41c.02,1.21.04,3.01-1.56,3.05l-6.36.19c-.9.03-2.38-.34-2.88-1.17l-.62-14.82-.66-26.5c-.05-1.95-2.71-1.75-3.95-1.71l-10.39.38c-.81.03-1.66-.34-2.06-.7-.7-.63-.19-1.8-.3-2.54-.43-2.94-.96-6.02,1.05-6.04l39.69-.39c2.23-.03,3.83-.81,5.82-1.53l6.85-1.19c1.48-.26,2.44.34,3.33,1.29l12.03,12.78c1.13,1.2,2.2,2.21,3.01,3.66.51.93,1.46,1.38,2.47,1.23.76-.12,1.68-.82,1.96-1.83l2.58-9.64c.38-1.42,1.06-2.61,1.16-4.13.23-3.58,2.17-5.32,2.3-7.86.21-3.91,4.08-2.09,6.41-3.69,1.33-.92,3.15-1.46,4.57-.95.62,1.23-.59,2.16-.8,2.96ZM458.56,568.35c-.6,2.28-2.2,4.59-3.82,6.17l-2.17,2.1c-1.2,1.17-2.96,2.39-4.48,3.09l-5.78,2.66c-1.88.86-3.89,1.07-5.38,2.8-.66.77-1.57,2.36-.77,3.37,1.58,2.02,2.05,4.23,2.98,6.53.68,1.68,2.26,3.13,1.73,5.21l-3.69,1.6c-1.38.6-3.46,2.49-5.2,1.85-2.22-.96-2.64-3.94-3.44-5.72l-2.31-5.12-2.59-5.46-2.59-6.22-2.29-4.7c-.95-1.96-2.03-3.61-2.49-5.89l-1.87-3.28-2.01-4.65-2.61-6.19c.11-1.27,2.15-2.56,3.4-2.72,1.79-.22,2.73-1.04,4.06-2.03l3.89-1.3,5.78-2.72c5.44-2.56,10.1-4.77,16.3-4.08,1.9.21,3.4.26,5.17,1.22,3.91,2.11,7.21,5.25,8.46,9.68,2.75,2.08,2.64,10.28,1.72,13.8ZM518.56,551.8c-.14.71-1.01.85-1.64,1.34l-17.94,13.88-4.4,3.26-6.2,5.04c-.53.43-.95.92-1.59.84-.56-.06-1.15-.43-1.57-.97l-8.81-11.47-11.21-14.34-3.64-4.74-6.72-8.32c-.52-.65-.95-1.36-.88-2.15.05-.65.56-1.36,1.23-1.86l6.2-4.62,3.15-2.5,18.91-14.59c.66-.51,1.08-.88,1.89-.8.64.07,1.3.51,1.86,1.16l2.76,3.19c.69.8,1.14,2.17.33,2.8l-21.48,16.74c-.82,1.82,1.26,3.44,2.16,4.64l3.7,4.9c2.22.94,3.36-.09,4.84-1.27l8.19-6.48,6.63-5.35c.98-.79,2.61-1.87,3.66-.54l2.93,3.72c.55.7,1.42,2.36.76,3.2l-19.75,15.12c.86,2.31,2.73,3.95,4.11,5.94l2.15,3.1c.58.83,1.52.86,2.35.96,1.09.13,1.28-.76,2.18-1.47l18.27-14.34c.84-.66,1.2-1.6,2.36-1.46.92.11,1.57.68,2.21,1.58l2.74,3.88c.42.59.38,1.38.26,1.98ZM552.68,508.79c-.14,2.86-.67,5.2-2.07,7.72-.76,1.34-1.28,2.68-2.31,3.99l-2.31,2.93-5.17,4.93-4.68,3.26-3.35,1.3c-1.7,1.22-3.34,1.66-5.34,2.12-1.12.26-2.74.89-3.35-.49l-2.32-5.34c-.34-.79-.75-1.47-.39-2.23.25-.51,1.11-1.15,1.85-1.11,2.44.12,4.12-1.1,6.09-1.89,3.76-1.53,6.75-3.62,9.57-6.63,1.55-1.66,3.09-3.75,3.55-6.18.37-1.95-1.37-3.72-2.53-4.88-2.02-2.02-4-1.55-6.12-.37l-4.76,2.64-8.84,5.44-4.78,1.95c-2.2.89-5.24.8-7.29.08-2.64-.91-4.33-2.31-6.14-4.11-1.14-1.13-1.67-2.24-2.34-3.6-1.74-3.55-1.7-7-.41-10.63.84-2.36,1.41-4.49,2.92-6.56l2.94-4.04c1.38-1.9,3.08-3.12,4.95-4.53l3.42-2.58c2.1-1.58,4.59-2.76,7.15-3.59,1.3-.42,1.67.53,2.21,1.34,2.14,3.25,3.48,7.66,1.14,8.27-2.23.58-4.23,1.65-6.14,2.92l-3.79,2.53c-1.64,1.09-2.77,2.56-3.89,4.2-1.13,1.67-1.63,3.39-1.27,5.42.31,1.7,1.36,2.27,2.66,3.08,1.76,1.09,3.55,1.37,5.3-.17l3.29-1.52,4.47-2.91c2.63-1.72,5.24-3.58,8.3-4.58l3.66-1.2c2.42-.8,4.69-.01,6.8.84,6.12,2.44,9.67,7.53,9.32,14.18ZM593.84,338.18c-.41,8.43-1.3,16.54-2.8,24.82l-1.99,11-3.11,12.97-4.99,16.36-3.78,11.01-6.15,14.43-2.84,5.88c-1.11,2.31-1.87,4.6-3.74,6.7l-5.89-3.83c-.66-.97.51-2.3.97-3.3l8.79-18.96,4.56-12.27,5.71-18.06,2.21-8.92,2.32-11.77,2.37-17.19,1.1-15.66.21-16.11-2.04-27.17-1.11-7.73-2.64-14.45-2.6-11.42-2.94-10.28-2.48-7.34-2.64-7.16-2.22-5.8-3.29-7.9-9.67-19.34-4.34-7.25-8.56-13.46-9.76-13.33c-.77-1.06-2.28-1.85-2.17-3.41.09-1.21,1.57-1.78,2.28-2.54,1.12-1.18,2.28-2,4.05-1.72l9.63,12.76,3.63,5.49,8.49,13.56c4.83,7.71,8.58,15.73,12.43,23.96l2.35,5.02,3.32,7.91c4.76,12.93,8.76,26,11.81,39.47l2.57,13.65c1.68,8.96,2.51,17.72,2.91,26.78l.64,14.16-.13,10.85-.47,9.59ZM436.49,553.27l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13-1.87-4.34-6.54-8.01-11.44-6.02ZM380.86,72.01l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06ZM291.15,65.67c.21,1.43,1.22,2.13,2.82,1.96l7.77-.86c3.99-.02,8.47-1.34,10.68-5,.89-1.46,1.43-3.68,1.61-5.39.26-2.54-1.75-6.76-4.52-8.32l-3.15-1.76c-2.5-1-5.23.09-7.73.48l-4.3.68-4.41.83c-2.08,1.18-.36,6.68.17,10.26l1.06,7.12ZM226.67,95.18c1.31,1.17,2.37,2.32,4.29,2.75l2.08,1.39c3.67.82,7.61,1.12,11.37-.14l3.73-2.03c1.17-.63,1.91-1.92,2.85-2.69,2.41-1.95,3.47-4.4,4.44-7.22.51-1.5,1.02-2.57.86-4.29-.18-1.99-.22-3.79-1.36-5.6l-1.04-3.43-2.62-3.39c-1.22-1.58-3.05-2.85-4.76-3.96l-4.65-1.69c-4.29-1.57-7.55.5-10.61,1.16l-3.27,2.16c-2.9,1.92-4.41,4.67-5.91,7.47-2.14,3.99-2.06,8.77-.06,12.9,1.21,2.51,2.51,4.69,4.66,6.61ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM309.51,48.06l-3.15-1.76c-2.5-1-5.23.09-7.73.48l-4.3.68-4.41.83c-2.08,1.18-.36,6.68.17,10.26l1.06,7.12c.21,1.43,1.22,2.13,2.82,1.96l7.77-.86c3.99-.02,8.47-1.34,10.68-5,.89-1.46,1.43-3.68,1.61-5.39.26-2.54-1.75-6.76-4.52-8.32ZM256.29,82.95c-.18-1.99-.22-3.79-1.36-5.6l-1.04-3.43-2.62-3.39c-1.22-1.58-3.05-2.85-4.76-3.96l-4.65-1.69c-4.29-1.57-7.55.5-10.61,1.16l-3.27,2.16c-2.9,1.92-4.41,4.67-5.91,7.47-2.14,3.99-2.06,8.77-.06,12.9,1.21,2.51,2.51,4.69,4.66,6.61,1.31,1.17,2.37,2.32,4.29,2.75l2.08,1.39c3.67.82,7.61,1.12,11.37-.14l3.73-2.03c1.17-.63,1.91-1.92,2.85-2.69,2.41-1.95,3.47-4.4,4.44-7.22.51-1.5,1.02-2.57.86-4.29ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM309.51,48.06l-3.15-1.76c-2.5-1-5.23.09-7.73.48l-4.3.68-4.41.83c-2.08,1.18-.36,6.68.17,10.26l1.06,7.12c.21,1.43,1.22,2.13,2.82,1.96l7.77-.86c3.99-.02,8.47-1.34,10.68-5,.89-1.46,1.43-3.68,1.61-5.39.26-2.54-1.75-6.76-4.52-8.32ZM256.29,82.95c-.18-1.99-.22-3.79-1.36-5.6l-1.04-3.43-2.62-3.39c-1.22-1.58-3.05-2.85-4.76-3.96l-4.65-1.69c-4.29-1.57-7.55.5-10.61,1.16l-3.27,2.16c-2.9,1.92-4.41,4.67-5.91,7.47-2.14,3.99-2.06,8.77-.06,12.9,1.21,2.51,2.51,4.69,4.66,6.61,1.31,1.17,2.37,2.32,4.29,2.75l2.08,1.39c3.67.82,7.61,1.12,11.37-.14l3.73-2.03c1.17-.63,1.91-1.92,2.85-2.69,2.41-1.95,3.47-4.4,4.44-7.22.51-1.5,1.02-2.57.86-4.29ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM309.51,48.06l-3.15-1.76c-2.5-1-5.23.09-7.73.48l-4.3.68-4.41.83c-2.08,1.18-.36,6.68.17,10.26l1.06,7.12c.21,1.43,1.22,2.13,2.82,1.96l7.77-.86c3.99-.02,8.47-1.34,10.68-5,.89-1.46,1.43-3.68,1.61-5.39.26-2.54-1.75-6.76-4.52-8.32ZM256.29,82.95c-.18-1.99-.22-3.79-1.36-5.6l-1.04-3.43-2.62-3.39c-1.22-1.58-3.05-2.85-4.76-3.96l-4.65-1.69c-4.29-1.57-7.55.5-10.61,1.16l-3.27,2.16c-2.9,1.92-4.41,4.67-5.91,7.47-2.14,3.99-2.06,8.77-.06,12.9,1.21,2.51,2.51,4.69,4.66,6.61,1.31,1.17,2.37,2.32,4.29,2.75l2.08,1.39c3.67.82,7.61,1.12,11.37-.14l3.73-2.03c1.17-.63,1.91-1.92,2.85-2.69,2.41-1.95,3.47-4.4,4.44-7.22.51-1.5,1.02-2.57.86-4.29ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM309.51,48.06l-3.15-1.76c-2.5-1-5.23.09-7.73.48l-4.3.68-4.41.83c-2.08,1.18-.36,6.68.17,10.26l1.06,7.12c.21,1.43,1.22,2.13,2.82,1.96l7.77-.86c3.99-.02,8.47-1.34,10.68-5,.89-1.46,1.43-3.68,1.61-5.39.26-2.54-1.75-6.76-4.52-8.32ZM256.29,82.95c-.18-1.99-.22-3.79-1.36-5.6l-1.04-3.43-2.62-3.39c-1.22-1.58-3.05-2.85-4.76-3.96l-4.65-1.69c-4.29-1.57-7.55.5-10.61,1.16l-3.27,2.16c-2.9,1.92-4.41,4.67-5.91,7.47-2.14,3.99-2.06,8.77-.06,12.9,1.21,2.51,2.51,4.69,4.66,6.61,1.31,1.17,2.37,2.32,4.29,2.75l2.08,1.39c3.67.82,7.61,1.12,11.37-.14l3.73-2.03c1.17-.63,1.91-1.92,2.85-2.69,2.41-1.95,3.47-4.4,4.44-7.22.51-1.5,1.02-2.57.86-4.29ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM391.65,70.4l-1.46-6.18c-.81-3.44-1.72-6.7-1.98-10.25-.09-1.22-.58-2.16-1.52-2.53-.91-.35-2.23-.64-2.7.33l-1.82,3.76c-.72,1.48-1.58,2.57-2.4,3.94l-2.87,4.81-1.51,2.15c-.68.98-1.66,3.5-.26,4.52,1.39,1.01,3.97.78,5.73,1.06l8.09,1.29c.91.14,1.85-.15,2.3-.81.3-.45.58-1.32.4-2.09ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13ZM447.93,559.29c-1.87-4.34-6.54-8.01-11.44-6.02l-6.2,2.52c-1.57.64-2.66,1.92-4.57,2.05-.85.06-1.67.87-1.95,1.45-1.07,2.25,1.32,3.35,2.41,7.11l1.56,2.63c.81,2.6,1.67,5.47,3.96,7.42,1.2,1.03,3.22-.05,4.09-.81,1.44-1.28,2.79-1.8,4.64-2.1l2.58-1.57c2.3-.92,3.56-2.7,4.89-4.55,1.91-2.68,1.27-5.24.03-8.13Z'/%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-2' d='M255.43,87.24c-.97,2.82-2.03,5.27-4.44,7.22-.94.77-1.68,2.06-2.85,2.69l-3.73,2.03c-3.76,1.26-7.7.96-11.37.14l-2.08-1.39c-1.92-.43-2.98-1.58-4.29-2.75-2.15-1.92-3.45-4.1-4.66-6.61-2-4.13-2.08-8.91.06-12.9,1.5-2.8,3.01-5.55,5.91-7.47l3.27-2.16c3.06-.66,6.32-2.73,10.61-1.16l4.65,1.69c1.71,1.11,3.54,2.38,4.76,3.96l2.62,3.39,1.04,3.43c1.14,1.81,1.18,3.61,1.36,5.6.16,1.72-.35,2.79-.86,4.29Z'/%3E%3Cpath class='cls-1' d='M255.43,87.24c-.97,2.82-2.03,5.27-4.44,7.22-.94.77-1.68,2.06-2.85,2.69l-3.73,2.03c-3.76,1.26-7.7.96-11.37.14l-2.08-1.39c-1.92-.43-2.98-1.58-4.29-2.75-2.15-1.92-3.45-4.1-4.66-6.61-2-4.13-2.08-8.91.06-12.9,1.5-2.8,3.01-5.55,5.91-7.47l3.27-2.16c3.06-.66,6.32-2.73,10.61-1.16l4.65,1.69c1.71,1.11,3.54,2.38,4.76,3.96l2.62,3.39,1.04,3.43c1.14,1.81,1.18,3.61,1.36,5.6.16,1.72-.35,2.79-.86,4.29Z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-2' d='M314.03,56.38c-.18,1.71-.72,3.93-1.61,5.39-2.21,3.66-6.69,4.98-10.68,5l-7.77.86c-1.6.17-2.61-.53-2.82-1.96l-1.06-7.12c-.53-3.58-2.25-9.08-.17-10.26l4.41-.83,4.3-.68c2.5-.39,5.23-1.48,7.73-.48l3.15,1.76c2.77,1.56,4.78,5.78,4.52,8.32Z'/%3E%3Cpath class='cls-1' d='M314.03,56.38c-.18,1.71-.72,3.93-1.61,5.39-2.21,3.66-6.69,4.98-10.68,5l-7.77.86c-1.6.17-2.61-.53-2.82-1.96l-1.06-7.12c-.53-3.58-2.25-9.08-.17-10.26l4.41-.83,4.3-.68c2.5-.39,5.23-1.48,7.73-.48l3.15,1.76c2.77,1.56,4.78,5.78,4.52,8.32Z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-2' d='M391.25,72.49c-.45.66-1.39.95-2.3.81l-8.09-1.29c-1.76-.28-4.34-.05-5.73-1.06-1.4-1.02-.42-3.54.26-4.52l1.51-2.15,2.87-4.81c.82-1.37,1.68-2.46,2.4-3.94l1.82-3.76c.47-.97,1.79-.68,2.7-.33.94.37,1.43,1.31,1.52,2.53.26,3.55,1.17,6.81,1.98,10.25l1.46,6.18c.18.77-.1,1.64-.4,2.09Z'/%3E%3Cpath class='cls-1' d='M391.25,72.49c-.45.66-1.39.95-2.3.81l-8.09-1.29c-1.76-.28-4.34-.05-5.73-1.06-1.4-1.02-.42-3.54.26-4.52l1.51-2.15,2.87-4.81c.82-1.37,1.68-2.46,2.4-3.94l1.82-3.76c.47-.97,1.79-.68,2.7-.33.94.37,1.43,1.31,1.52,2.53.26,3.55,1.17,6.81,1.98,10.25l1.46,6.18c.18.77-.1,1.64-.4,2.09Z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-1' d='M242.74,231.68l-17.58,3.99-5.27,23.49-5.21-23.41-23.64-5.56,23.58-5.42,5.35-23.83,5.13,23.08c.12.54,1.02.97,1.52,1.08l22.41,5.04-6.29,1.54Z'/%3E%3Cpolygon class='cls-1' points='254.12 252.49 262.45 254.65 254.13 256.81 252.14 265.77 250.1 256.9 241.69 254.69 250.07 252.58 252.05 243.51 254.12 252.49'/%3E%3Cpath class='cls-1' d='M256.58,210.85l-16.1-3.52,16.09-3.74,3.59-15.65,3.4,14.78c.14.61.6.88,1.19,1.02l14.93,3.54-15.87,3.51-3.53,16.17-3.7-16.11Z'/%3E%3Cpath class='cls-1' d='M391.55,424.33c.58,6.77-.09,13.49-1.9,20.07-1.99,7.22-6.02,13.26-10.99,18.75-3.1,3.43-6.63,6.14-10.32,8.91-.81.6-2.12.5-3.02.07.58-6.63-.28-12.71-2.4-18.86-6.82-19.68-21.43-38.39-39.3-49.15-10.83-6.52-23.27-8.59-35.75-7.7-12.1.87-22.8,1.64-33.11-5.69-5.73-4.08-8.69-11.28-6.4-18.14l2.77-8.27c1.95-5.83-4.13-7.35-6.14-10.69-2.21-3.68-1.68-8.4,1.16-11.43l2.91-3.1c-.79-2.64-3.99-3.73-5.03-5.58-1.96-3.47-1.87-8.18.56-11.4l6.22-6.42c1.26-1.3.22-3.29-1.24-4.15-3.32-1.94-6.31-4.01-8.58-7.15-2.02-2.81-3.19-6.17-2.3-9.61.66-2.52,2.46-4.49,4.6-5.85l10.25-6.53,8.02-5.64c8.64-6.07,12.62-14.24,14.9-24.31,1.21-5.38,3.49-10.19,5.74-15.22,6-13.44,16.57-30.71,30.63-35.83,2.35-.95,4.89-.43,5.92,1.86l-2.46,15.92c-1.84,11.86-3.2,23.51-2.75,35.52.49,13.35,2.94,26.01,7.08,38.62,6.49,19.71,13.24,29.22,25.62,45.07l17.81,22.81c9.45,12.88,17.15,26.6,22.77,41.56,2.64,7.05,4.09,14.08,4.73,21.56Z'/%3E%3Cpath class='cls-1' d='M431.85,411.6c3.44,12.47,3.46,28.19-.5,40.61-2.1,6.59-4.4,12.92-9.25,18.97,10.79-21.4,10.57-43.69.73-66.96-4.35-10.27-9.73-19.82-16.22-28.88l-14.89-20.82-11.81-15.11-9.45-13c-8.6-11.83-14.5-24.94-18.19-39.18-3.88-15-6.05-30.19-6.24-45.74-.16-12.97,1.59-25.57,5.96-37.6.69-1.89,2.38-2.86,4.12-2.5,1.73.36,3.04,2.24,2.48,4.12l-2.11,7.05c-6.31,21.07-3.68,48.76,1.68,70.15,2.48,9.91,5.7,19.31,10.65,28.24,3.33,6,6.8,11.59,10.98,17.02l19.93,25.89c8.06,10.46,15.44,21.09,21.88,32.61,4.5,8.05,7.8,16.26,10.25,25.13Z'/%3E%3Cpath class='cls-1' d='M410.11,222.19c-.12-1.48,1-2.66,2.14-3.1,1.2-.46,2.54-.15,3.7.68,4.99,3.53,9.66,7.41,13.76,12.11,6.75,7.72,11.54,16.75,14.63,26.53,2.78,8.81,3.85,17.59,3.96,26.78l.1,8.07-.77,21.7c.52,21.42,5.47,40.04,13.76,59.52.76,1.8,1.89,3.26,2.4,5.39-1.4-1.4-1.84-3.17-2.73-4.85-4.64-8.7-8.24-17.59-11.38-26.99-2.87-8.56-4.92-17-5.81-26.01l-.8-15.46.09-19.98c.05-11.24-2.44-22.04-6.71-32.42-4.99-12.14-13.46-22.29-24.38-29.46-.96-.63-1.87-1.39-1.96-2.51Z'/%3E%3Cpath class='cls-1' d='M467.72,445.15c-1.1,6.37-2.91,12.19-6.01,17.78-1.57,2.98-3.07,5.87-5.67,8.13,2.44-4.22,4.47-8.13,5.62-12.78,1.34-5.41,2.37-10.68,2.65-16.36.66-13.24-2.25-26.05-7.94-37.97-3.86-8.08-8.01-15.61-13.15-22.91l-10.55-15-11.9-15.39-15.27-19.74c-9.86-13.77-17.19-28.89-21.87-45.25-4.45-15.57-5.72-31.69-4.2-47.78.8-8.44,3.09-16.28,6.53-23.88.47-1.03,1.35-1.54,2.3-1.71.92-.17,1.86.23,2.65,1.02,1.17,1.17,1.4,3.07.76,4.68-1.65,4.09-2.92,7.94-3.79,12.41-3.67,18.85-2.88,38.36,3,56.75,3.02,9.47,7.09,18.29,11.89,26.93,4.75,8.53,10.44,16.08,16.62,23.61,9.16,11.16,17.81,22.28,25.97,34.19,7.94,11.59,14.1,21.7,18.8,35.11,4.31,12.31,5.78,25.28,3.56,38.16Z'/%3E%3Cg%3E%3Cpath class='cls-1' d='M389.65,444.4c-1.99,7.22-6.02,13.26-10.99,18.75-3.1,3.43-6.63,6.14-10.32,8.91-.81.6-2.12.5-3.02.07.58-6.63-.28-12.71-2.4-18.86-6.82-19.68-21.43-38.39-39.3-49.15-10.83-6.52-23.27-8.59-35.75-7.7-12.1.87-22.8,1.64-33.11-5.69-5.73-4.08-8.69-11.28-6.4-18.14l2.77-8.27c1.95-5.83-4.13-7.35-6.14-10.69-2.21-3.68-1.68-8.4,1.16-11.43l2.91-3.1c-.79-2.64-3.99-3.73-5.03-5.58-1.96-3.47-1.87-8.18.56-11.4l6.22-6.42c1.26-1.3.22-3.29-1.24-4.15-3.32-1.94-6.31-4.01-8.58-7.15-2.02-2.81-3.19-6.17-2.3-9.61.66-2.52,2.46-4.49,4.6-5.85l10.25-6.53,8.02-5.64c8.64-6.07,12.62-14.24,14.9-24.31,1.21-5.38,3.49-10.19,5.74-15.22,6-13.44,16.57-30.71,30.63-35.83,2.35-.95,4.89-.43,5.92,1.86l-2.46,15.92c-1.84,11.86-3.2,23.51-2.75,35.52.49,13.35,2.94,26.01,7.08,38.62,6.49,19.71,13.24,29.22,25.62,45.07l17.81,22.81c9.45,12.88,17.15,26.6,22.77,41.56,2.64,7.05,4.09,14.08,4.73,21.56.58,6.77-.09,13.49-1.9,20.07Z'/%3E%3Cpath class='cls-1' d='M431.35,452.21c-2.1,6.59-4.4,12.92-9.25,18.97,10.79-21.4,10.57-43.69.73-66.96-4.35-10.27-9.73-19.82-16.22-28.88l-14.89-20.82-11.81-15.11-9.45-13c-8.6-11.83-14.5-24.94-18.19-39.18-3.88-15-6.05-30.19-6.24-45.74-.16-12.97,1.59-25.57,5.96-37.6.69-1.89,2.38-2.86,4.12-2.5,1.73.36,3.04,2.24,2.48,4.12l-2.11,7.05c-6.31,21.07-3.68,48.76,1.68,70.15,2.48,9.91,5.7,19.31,10.65,28.24,3.33,6,6.8,11.59,10.98,17.02l19.93,25.89c8.06,10.46,15.44,21.09,21.88,32.61,4.5,8.05,7.8,16.26,10.25,25.13,3.44,12.47,3.46,28.19-.5,40.61Z'/%3E%3Cpath class='cls-1' d='M467.72,445.15c-1.1,6.37-2.91,12.19-6.01,17.78-1.57,2.98-3.07,5.87-5.67,8.13,2.44-4.22,4.47-8.13,5.62-12.78,1.34-5.41,2.37-10.68,2.65-16.36.66-13.24-2.25-26.05-7.94-37.97-3.86-8.08-8.01-15.61-13.15-22.91l-10.55-15-11.9-15.39-15.27-19.74c-9.86-13.77-17.19-28.89-21.87-45.25-4.45-15.57-5.72-31.69-4.2-47.78.8-8.44,3.09-16.28,6.53-23.88.47-1.03,1.35-1.54,2.3-1.71.92-.17,1.86.23,2.65,1.02,1.17,1.17,1.4,3.07.76,4.68-1.65,4.09-2.92,7.94-3.79,12.41-3.67,18.85-2.88,38.36,3,56.75,3.02,9.47,7.09,18.29,11.89,26.93,4.75,8.53,10.44,16.08,16.62,23.61,9.16,11.16,17.81,22.28,25.97,34.19,7.94,11.59,14.1,21.7,18.8,35.11,4.31,12.31,5.78,25.28,3.56,38.16Z'/%3E%3Cpath class='cls-1' d='M461.06,375.02c-4.64-8.7-8.24-17.59-11.38-26.99-2.87-8.56-4.92-17-5.81-26.01l-.8-15.46.09-19.98c.05-11.24-2.44-22.04-6.71-32.42-4.99-12.14-13.46-22.29-24.38-29.46-.96-.63-1.87-1.39-1.96-2.51-.12-1.48,1-2.66,2.14-3.1,1.2-.46,2.54-.15,3.7.68,4.99,3.53,9.66,7.41,13.76,12.11,6.75,7.72,11.54,16.75,14.63,26.53,2.78,8.81,3.85,17.59,3.96,26.78l.1,8.07-.77,21.7c.52,21.42,5.47,40.04,13.76,59.52.17.6.06.78-.33.54Z'/%3E%3Cpath class='cls-1' d='M249.03,230.14l-6.29,1.54-17.58,3.99-5.27,23.49-5.21-23.41-23.64-5.56,23.58-5.42,5.35-23.83,5.13,23.08c.12.54,1.02.97,1.52,1.08l22.41,5.04Z'/%3E%3Cpath class='cls-1' d='M279.68,207.28l-15.87,3.51-3.53,16.17-3.7-16.11-16.1-3.52,16.09-3.74,3.59-15.65,3.4,14.78c.14.61.6.88,1.19,1.02l14.93,3.54Z'/%3E%3Cpolygon class='cls-1' points='262.45 254.65 254.13 256.81 252.14 265.77 250.1 256.9 241.69 254.69 250.07 252.58 252.05 243.51 254.12 252.49 262.45 254.65'/%3E%3Cpath class='cls-1' d='M463.79,379.87c-1.4-1.4-1.84-3.17-2.73-4.85.2-.11.25-.35.33-.54.76,1.8,1.89,3.26,2.4,5.39Z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-2' d='M447.9,567.42c-1.33,1.85-2.59,3.63-4.89,4.55l-2.58,1.57c-1.85.3-3.2.82-4.64,2.1-.87.76-2.89,1.84-4.09.81-2.29-1.95-3.15-4.82-3.96-7.42l-1.56-2.63c-1.09-3.76-3.48-4.86-2.41-7.11.28-.58,1.1-1.39,1.95-1.45,1.91-.13,3-1.41,4.57-2.05l6.2-2.52c4.9-1.99,9.57,1.68,11.44,6.02,1.24,2.89,1.88,5.45-.03,8.13Z'/%3E%3Cpath class='cls-1' d='M447.9,567.42c-1.33,1.85-2.59,3.63-4.89,4.55l-2.58,1.57c-1.85.3-3.2.82-4.64,2.1-.87.76-2.89,1.84-4.09.81-2.29-1.95-3.15-4.82-3.96-7.42l-1.56-2.63c-1.09-3.76-3.48-4.86-2.41-7.11.28-.58,1.1-1.39,1.95-1.45,1.91-.13,3-1.41,4.57-2.05l6.2-2.52c4.9-1.99,9.57,1.68,11.44,6.02,1.24,2.89,1.88,5.45-.03,8.13Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.choose-homemade .box3 figure {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 674.98 666.12'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %233e7e62; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cg id='Generative_Object' data-name='Generative Object'%3E%3Cpath class='cls-1' d='M674.84,333.09l-.52-.11c-.34-2.73-.9-5.29-1.67-7.69-2.71,1.66-4.09-.42-4.51-3.04-.26-4.21-1.5-8-3.73-11.39-.65-.69-1.28-1.6-1.6-2.52,1.17,1.07,2.04,2.4,3.21,3.69l3.08.27c4.12,6.23,6.27,13.48,5.74,20.78Z'/%3E%3Cpath class='cls-1' d='M609.98,176.7l-1.37-2.02-.72-1.59c-2.26-5.01,1.07-6.29.68-10.94.57,2.45,1.4,5.25.99,7.95-.36,2.38-.67,4.52.42,6.6Z'/%3E%3Cg%3E%3Cpath class='cls-1' d='M139.34,489.76c-5.62-4.96-10.83-13.23-10.43-20.68l7.72-1.8c-.05,8.14,7.98,20.11,12.98,16.87,1.28-.83,1.98-2.51,1.31-4.09l-3.4-8.01c-1.51-3.56-3.08-7.44-2.6-11.45.75-6.29,7.1-10.08,13.16-8.92,9.16,1.77,16.17,12.56,18.09,21.89l-8.24,2.02c-.17-8.25-8.79-18.08-13.05-13.86-1.1,1.09-1.21,2.55-.59,4.01l5.83,13.81c1.56,3.7.61,7.61-1.81,10.6-4.65,5.76-13.47,4.47-18.97-.39Z'/%3E%3Cpolygon class='cls-1' points='217.99 507.7 191.9 539.24 185.01 533.37 199.75 514.92 178.44 522.42 174.88 519.7 176.57 507.48 178.09 497.1 162.81 514.77 156 508.63 166.18 496.3 177.71 482.79 182.29 477.52 188.7 482.83 184.52 511.65 211.34 502.16 217.99 507.7'/%3E%3Cpath class='cls-1' d='M235.33,517.75l-21.87,17.47-12.46,10.34,8.63,4.89,7.18-6.23,15.84,8.39c1.04.55,1.42,1.05,1.33,2.17l-.63,7.94,9.51,4.69,1.38-45.31-8.91-4.35ZM234.35,544.83l-11.17-5.95,12.33-10.52-1.16,16.47Z'/%3E%3Cpolygon class='cls-1' points='263.95 565.43 283.51 571.16 281.27 578.92 263.52 573.63 252.54 570.34 259.13 547.5 264.04 531.18 273.27 533.91 263.95 565.43'/%3E%3Cpolygon class='cls-1' points='302.72 574.28 322.95 577.01 321.93 584.91 291.71 580.93 297.26 540.64 306.61 541.97 302.72 574.28'/%3E%3Cpath class='cls-1' d='M387.93,563.88c-1.47-2.26-3.73-3.4-6.2-4.31,3.24-2.85,4.47-6.54,3.45-10.49-1.79-6.97-9.23-8.32-16.42-7.4l-21.11,2.69,1.72,12.48,3.74,28.23,23.75-3.35c4.11-.58,7.71-2.14,10.9-4.89,2.71-4.04,2.73-9.02.17-12.96ZM358.27,550.44l12.87-1.59c2.57-.32,4.6,1.35,4.94,3.56.35,2.32-.93,4.55-3.67,4.98l-12.95,2.01-1.19-8.96ZM376.09,573.99l-14.2,2.29-1.43-9.58,11.88-1.67c1.35-.19,2.7-.09,3.97.19,2.19.48,3.42,2.18,3.54,4.23.12,2.14-1.34,3.76-3.76,4.54Z'/%3E%3Cpath class='cls-1' d='M434.98,553.24l-22.57-22.96-9.5,3.03-1.64,16.18-2.38,29.18,8.63-3.15c.47-.17,1-.71,1.05-1.21l.81-8.66,18.29-6.28,6.26,6.77,9.97-3.6-8.92-9.3ZM409.83,557.27l.81-16.47,11.23,12.13-12.04,4.34Z'/%3E%3Cpolygon class='cls-1' points='450.15 520.37 466.95 549.47 458.5 554.71 447.48 535.5 441.59 525.5 430.07 531.84 426.17 525.02 430.72 522.35 457.89 506.36 461.82 513.56 450.15 520.37'/%3E%3Cpath class='cls-1' d='M260.91,386.28c-1.19,2.26-4.5,3.69-7.13,2.18-17.64-10.12-32.24-24.82-42.15-42.76-6.21-11.27-9.79-23.71-11.49-36.34-.42-3.05,1.39-5.63,3.95-6.22,2.67-.61,5.66.97,6.28,3.94l3.26,15.76c1.76,5.33,3.65,10.38,6.22,15.41,8.72,17.1,22.37,31.39,39.06,41.19,2.53,1.49,3.12,4.69,2,6.84Z'/%3E%3Cpath class='cls-1' d='M474.15,308.81c-2.95,26.51-16.04,50.12-36.22,67.37l-13.05,9.77c-1.76,1.32-3.66,2.44-5.84,2.86-2.45.48-4.73-.79-5.65-2.85-.9-2.02-.49-4.71,1.73-6.26l13.26-9.21,6.11-5.37c7.74-7.39,14.28-15.86,19.32-25.36l5.93-13.86c4.34-10.16,1.58-23.91,10-22.87,2.66.33,4.74,2.76,4.41,5.78Z'/%3E%3Cpath class='cls-1' d='M418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM501.6,291.98l-.18-49.65c-.01-3.3-3.03-5.22-6.11-5.22l-90.49-.02,9.9-20.04,25.24-50.58c5.41-10.83,4.26-23.42-.94-34.16-6.65-13.73-20.62-22.29-35.9-22.52-11.85-.23-22.92,4.55-30.86,13.26l-85.51,114.09-108.63.02c-3.08,0-4.96,2.39-5.49,5.23l.07,56.82.95,11.24c1.67,19.95,8.77,38.67,19.61,55.52,14.97,23.96,37.8,42.79,64.08,53.22l.04,35.33c0,3.12,2.45,4.77,5.5,5.25h148.68c3.22-.65,5.48-2.44,5.49-5.66l.02-34.94c8.9-3.72,17.28-7.76,25.2-13.18,10.22-7,19.23-14.91,27.39-24.28,12.14-14.28,21.31-30.76,26.67-48.79,3.1-10.42,4.3-20.94,5.28-31.65v-9.29ZM354.96,164.2l21.63-28.87c2.6-3.48,4.97-6.8,8.48-9.44,10.88-8.19,27.4-7.05,37.79,2.5,10.8,9.94,12.75,26.02,5.07,38.57l-11.74,23.15-23.6,47.04-77.86-.05-14.39-.16,54.62-72.74ZM183.27,247.62h307.57v31.84H183.27s0-31.84,0-31.84ZM268.02,449.21l.02-26.44c10.88,3.26,21.21,4.79,32.21,5.17l74.72-.03c10.75-.49,20.81-1.97,31.53-5.16l.06,26.48-138.54-.02ZM443.45,391.97c-20.8,16.24-46.91,25.43-73.38,25.43h-65.48c-19.83-.02-40.78-5.45-57.84-14.98-12.85-7.18-24.07-16.57-33.76-27.73-18.81-21.67-29.34-49.54-29.52-78.31l-.09-6.32h307.37c1.62,40.74-15.76,76.92-47.3,101.91ZM385.04,228.21c2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57Z'/%3E%3Cpath class='cls-1' d='M502.59,506.71l8.39.72c.18,10.37-8.15,19.11-18.1,21.37-6.02,1.37-12.66.23-17.65-3.63-10.13-7.83-11.19-22.54-2.08-32.04,5.4-5.62,12.54-8.85,20.44-7.55l-1.24,8.63c-6.59-1.1-12.7,2.41-15.45,8.29-2.26,6.66.79,13.26,6.94,16.41,3.07,1.57,6.33,1.91,9.59.52,5.32-2.01,9.1-6.62,9.16-12.72Z'/%3E%3Cpath class='cls-1' d='M515.99,447.63l31.77,25.98-6.35,7.67-12.7-10.56-11.66,14.47,12.98,10.59-5.97,7.58-31.7-25.99,6.18-7.66,12.02,10.08,8.87-11.06c.94-1.18,2.08-2.08,2.76-3.55l-12.17-9.82,5.97-7.73Z'/%3E%3Cpath class='cls-1' d='M672.33,330.73c-1.87-2.59-3.27-5.43-4.21-8.52-.23-4.22-1.47-8-3.72-11.35-.38-.85-.91-1.69-1.6-2.51l-.36-.33-1.94-2.35-3.56-3.98c-4.46-4.96-7.81-10.22-10.06-16.53-3.76-10.59-3.64-21.69.33-32.24,1.99-5.31,3.45-10.61,3.79-16.29,1.08-17.92-7.86-33.26-22.24-43.43l-10.67-7.55c-3.41-2.41-5.85-5.6-8.11-8.94l-1.03-2.22-.34.19c-1.77-3.35-3.08-6.98-3.94-10.86.41-1.57,1.31-2.96,2.71-4.15l.12-2.13c-2.3-9.91,1.31-17.38-4.65-29.92-7.93-16.7-20.48-25.33-38.73-28.24-14.13-2.25-28.45-13.03-34.29-26.32l-5.56-12.65c-5.59-12.73-18.66-21.9-32.08-24.88-7.1-1.58-14.04-1.1-21.11.2-7.56,1.38-15.04,1.09-22.25-1.2-7.41-2.36-13.63-5.89-19.19-11.31l-9.23-10.06c-7.72-7.52-17.43-11.88-28.17-12.91-8.39-.81-16.79.33-24.28,4.13l-11.59,5.89c-8.06,4.1-17.52,5.02-26.49,3.69-4.4-.65-8.49-2.26-12.43-4.18l-14.05-6.83c-18.36-6.78-39.77-1.44-52.31,13.68-2.89,3.48-5.91,6.69-9.34,9.63-3.95,3.4-8.31,5.53-13.19,7.39-7.91,3-16.34,3.56-24.75,2.06-12.53-2.25-22.55-1.43-33.85,4.56-11.74,6.22-18.15,15.03-22.7,27.41-2.84,7.73-6.89,14.43-13.11,20-8.16,7.31-18.36,11.46-29.17,12.81-5.15,1.47-9.79,2.85-14.26,5.61-13.24,8.19-21.74,21.85-22.94,37.49,1.42,15.06-3.48,29.76-14.11,40.49-3.14,3.16-6.89,5.29-10.65,7.57-9.39,5.7-17.47,12.88-21.48,23.32l-2.33,6.03c-5.84,20.39,4.37,33.01,4.88,42.95l.3,5.74-.64,7.53c-.37,4.36-2.05,8.24-3.65,12.21-1.75,4.39-4.34,7.73-7.41,11.21-6.92,7.86-11.63,16.55-12.69,27.1l.05,10.57,1.59,7.85c1.85,6.4,5.39,11.9,9.32,17.15l5.87,7.86c5.78,8.99,8.67,20.13,7.24,30.83-.65,4.84-1.87,9.34-3.6,13.89-8.16,21.46.47,45.95,20.75,57.29l8.17,5.5c8.38,6.27,13.74,14.9,16.52,24.94,1.72,6.21,1.68,12.05,1.96,18.58.47,10.98,5.28,21.67,12.64,29.71,7.54,8.23,17.49,12.49,28.27,14.33,18.18,3.11,31.95,14.2,37.86,31.66,6.05,17.88,19.96,29.9,38.66,33.08,5.29.91,10.21.07,15.5-.53l9.8-1.11c3.47-.39,6.91.29,10.34.99,9.49,1.93,18.12,6.43,24.79,13.45l10.21,10.75c7.04,6.03,15.53,9.86,24.84,11.18,11.24,1.59,22.24-1.51,31.96-7.24,15.15-8.94,33.67-9.3,48.85-.2,9.8,5.87,20.99,9.06,32.45,7.41,9.57-1.39,18.62-5.04,25.32-11.82l4.95-4.99c2.3-2.94,4.55-5.68,7.46-8.1,11.53-9.58,26.42-13.33,41.21-10.43,7.19,1.41,13.84,1.52,21.01-.28,15.06-3.78,27.34-14.75,32.85-29.35,2.31-6.13,4.73-11.88,8.77-17.12,6.34-8.21,15.32-14.02,25.43-16.24l10.66-2.34c11.93-3.05,22.31-10.47,28.41-21.25,4.15-7.34,6.79-15.4,6.78-23.89-.02-8.3.99-15.96,4.27-23.63,4.21-9.8,12.88-17.74,22.19-22.94,3.99-2.22,7.51-5.07,10.65-8.29,7.43-7.59,11.61-17.08,12.71-27.57.57-5.47.69-10.46-.88-15.81l-3.73-12.62c-2.21-7.52-2.32-15.05-.66-22.8,1.19-5.52,3.13-10.99,6.55-15.43l7.1-9.24c1.74-2.26,3.33-4.45,4.42-7.05l3.12-7.48c1.33-3.16,1.83-6.48,1.9-9.79.66-2.49.07-5.05-2.2-6.49ZM337.21,617.47c-157.11,0-284.47-127.37-284.47-284.48S180.1,48.52,337.21,48.52s284.48,127.36,284.48,284.47-127.37,284.48-284.48,284.48Z'/%3E%3Cpath class='cls-1' d='M674.84,333.09l.14,3.38c.02.46-.16.7-.44.75.05-2.32.48-3.31-2.11-5.37s-4.09-6.89-4.76-10.54l-.93-5.09c-.51-2.76-2.13-3.79-2.32-5.35,5.55,5.87,2.15,12.8,6.04,14.18.94.33,1.8-.39,2.65-1.02,1.01,1.77,1.15,3.49,1.35,5.37l.4,3.7Z'/%3E%3Cpath class='cls-1' d='M608.57,162.15l.21,3.95c-1.15,2.64-1.11,5.38.11,8.21l-.28.37c-.3-.06-.72-.27-.9-.7-1.31-3.14-2.96-6.16-3.72-9.6-.67-3.04,3.71-4.91,3.51-6.85l1.07,4.61Z'/%3E%3Cpath class='cls-1' d='M662.44,308.02c-.75-.68-1.76-1.28-1.94-2.36.69.76,1.87,1.19,1.94,2.36Z'/%3E%3Cg%3E%3Cpath class='cls-1' d='M139.34,489.76c-5.62-4.96-10.83-13.23-10.43-20.68l7.72-1.8c-.05,8.14,7.98,20.11,12.98,16.87,1.28-.83,1.98-2.51,1.31-4.09l-3.4-8.01c-1.51-3.56-3.08-7.44-2.6-11.45.75-6.29,7.1-10.08,13.16-8.92,9.16,1.77,16.17,12.56,18.09,21.89l-8.24,2.02c-.17-8.25-8.79-18.08-13.05-13.86-1.1,1.09-1.21,2.55-.59,4.01l5.83,13.81c1.56,3.7.61,7.61-1.81,10.6-4.65,5.76-13.47,4.47-18.97-.39Z'/%3E%3Cpolygon class='cls-1' points='217.99 507.7 191.9 539.24 185.01 533.37 199.75 514.92 178.44 522.42 174.88 519.7 176.57 507.48 178.09 497.1 162.81 514.77 156 508.63 166.18 496.3 177.71 482.79 182.29 477.52 188.7 482.83 184.52 511.65 211.34 502.16 217.99 507.7'/%3E%3Cpath class='cls-1' d='M235.33,517.75l-21.87,17.47-12.46,10.34,8.63,4.89,7.18-6.23,15.84,8.39c1.04.55,1.42,1.05,1.33,2.17l-.63,7.94,9.51,4.69,1.38-45.31-8.91-4.35ZM234.35,544.83l-11.17-5.95,12.33-10.52-1.16,16.47Z'/%3E%3Cpolygon class='cls-1' points='263.95 565.43 283.51 571.16 281.27 578.92 263.52 573.63 252.54 570.34 259.13 547.5 264.04 531.18 273.27 533.91 263.95 565.43'/%3E%3Cpolygon class='cls-1' points='302.72 574.28 322.95 577.01 321.93 584.91 291.71 580.93 297.26 540.64 306.61 541.97 302.72 574.28'/%3E%3Cpath class='cls-1' d='M387.93,563.88c-1.47-2.26-3.73-3.4-6.2-4.31,3.24-2.85,4.47-6.54,3.45-10.49-1.79-6.97-9.23-8.32-16.42-7.4l-21.11,2.69,1.72,12.48,3.74,28.23,23.75-3.35c4.11-.58,7.71-2.14,10.9-4.89,2.71-4.04,2.73-9.02.17-12.96ZM358.27,550.44l12.87-1.59c2.57-.32,4.6,1.35,4.94,3.56.35,2.32-.93,4.55-3.67,4.98l-12.95,2.01-1.19-8.96ZM376.09,573.99l-14.2,2.29-1.43-9.58,11.88-1.67c1.35-.19,2.7-.09,3.97.19,2.19.48,3.42,2.18,3.54,4.23.12,2.14-1.34,3.76-3.76,4.54Z'/%3E%3Cpath class='cls-1' d='M434.98,553.24l-22.57-22.96-9.5,3.03-1.64,16.18-2.38,29.18,8.63-3.15c.47-.17,1-.71,1.05-1.21l.81-8.66,18.29-6.28,6.26,6.77,9.97-3.6-8.92-9.3ZM409.83,557.27l.81-16.47,11.23,12.13-12.04,4.34Z'/%3E%3Cpolygon class='cls-1' points='450.15 520.37 466.95 549.47 458.5 554.71 447.48 535.5 441.59 525.5 430.07 531.84 426.17 525.02 430.72 522.35 457.89 506.36 461.82 513.56 450.15 520.37'/%3E%3Cpath class='cls-1' d='M260.91,386.28c-1.19,2.26-4.5,3.69-7.13,2.18-17.64-10.12-32.24-24.82-42.15-42.76-6.21-11.27-9.79-23.71-11.49-36.34-.42-3.05,1.39-5.63,3.95-6.22,2.67-.61,5.66.97,6.28,3.94l3.26,15.76c1.76,5.33,3.65,10.38,6.22,15.41,8.72,17.1,22.37,31.39,39.06,41.19,2.53,1.49,3.12,4.69,2,6.84Z'/%3E%3Cpath class='cls-1' d='M474.15,308.81c-2.95,26.51-16.04,50.12-36.22,67.37l-13.05,9.77c-1.76,1.32-3.66,2.44-5.84,2.86-2.45.48-4.73-.79-5.65-2.85-.9-2.02-.49-4.71,1.73-6.26l13.26-9.21,6.11-5.37c7.74-7.39,14.28-15.86,19.32-25.36l5.93-13.86c4.34-10.16,1.58-23.91,10-22.87,2.66.33,4.74,2.76,4.41,5.78Z'/%3E%3Cpath class='cls-1' d='M418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM501.6,291.98l-.18-49.65c-.01-3.3-3.03-5.22-6.11-5.22l-90.49-.02,9.9-20.04,25.24-50.58c5.41-10.83,4.26-23.42-.94-34.16-6.65-13.73-20.62-22.29-35.9-22.52-11.85-.23-22.92,4.55-30.86,13.26l-85.51,114.09-108.63.02c-3.08,0-4.96,2.39-5.49,5.23l.07,56.82.95,11.24c1.67,19.95,8.77,38.67,19.61,55.52,14.97,23.96,37.8,42.79,64.08,53.22l.04,35.33c0,3.12,2.45,4.77,5.5,5.25h148.68c3.22-.65,5.48-2.44,5.49-5.66l.02-34.94c8.9-3.72,17.28-7.76,25.2-13.18,10.22-7,19.23-14.91,27.39-24.28,12.14-14.28,21.31-30.76,26.67-48.79,3.1-10.42,4.3-20.94,5.28-31.65v-9.29ZM354.96,164.2l21.63-28.87c2.6-3.48,4.97-6.8,8.48-9.44,10.88-8.19,27.4-7.05,37.79,2.5,10.8,9.94,12.75,26.02,5.07,38.57l-11.74,23.15-23.6,47.04-77.86-.05-14.39-.16,54.62-72.74ZM183.27,247.62h307.57v31.84H183.27s0-31.84,0-31.84ZM268.02,449.21l.02-26.44c10.88,3.26,21.21,4.79,32.21,5.17l74.72-.03c10.75-.49,20.81-1.97,31.53-5.16l.06,26.48-138.54-.02ZM443.45,391.97c-20.8,16.24-46.91,25.43-73.38,25.43h-65.48c-19.83-.02-40.78-5.45-57.84-14.98-12.85-7.18-24.07-16.57-33.76-27.73-18.81-21.67-29.34-49.54-29.52-78.31l-.09-6.32h307.37c1.62,40.74-15.76,76.92-47.3,101.91ZM385.04,228.21c2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57Z'/%3E%3Cpath class='cls-1' d='M502.59,506.71l8.39.72c.18,10.37-8.15,19.11-18.1,21.37-6.02,1.37-12.66.23-17.65-3.63-10.13-7.83-11.19-22.54-2.08-32.04,5.4-5.62,12.54-8.85,20.44-7.55l-1.24,8.63c-6.59-1.1-12.7,2.41-15.45,8.29-2.26,6.66.79,13.26,6.94,16.41,3.07,1.57,6.33,1.91,9.59.52,5.32-2.01,9.1-6.62,9.16-12.72Z'/%3E%3Cpath class='cls-1' d='M528.71,470.72l-11.66,14.47,12.98,10.59-5.97,7.58-31.7-25.99,6.18-7.66,12.02,10.08,8.87-11.06c.94-1.18,2.08-2.08,2.76-3.55l-12.17-9.82,5.97-7.73,31.77,25.98-6.35,7.67-12.7-10.56Z'/%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-1' d='M260.91,386.28c-1.19,2.26-4.5,3.69-7.13,2.18-17.64-10.12-32.24-24.82-42.15-42.76-6.21-11.27-9.79-23.71-11.49-36.34-.42-3.05,1.39-5.63,3.95-6.22,2.67-.61,5.66.97,6.28,3.94l3.26,15.76c1.76,5.33,3.65,10.38,6.22,15.41,8.72,17.1,22.37,31.39,39.06,41.19,2.53,1.49,3.12,4.69,2,6.84Z'/%3E%3Cpath class='cls-1' d='M474.15,308.81c-2.95,26.51-16.04,50.12-36.22,67.37l-13.05,9.77c-1.76,1.32-3.66,2.44-5.84,2.86-2.45.48-4.73-.79-5.65-2.85-.9-2.02-.49-4.71,1.73-6.26l13.26-9.21,6.11-5.37c7.74-7.39,14.28-15.86,19.32-25.36l5.93-13.86c4.34-10.16,1.58-23.91,10-22.87,2.66.33,4.74,2.76,4.41,5.78Z'/%3E%3Cpath class='cls-1' d='M418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM501.6,291.98l-.18-49.65c-.01-3.3-3.03-5.22-6.11-5.22l-90.49-.02,9.9-20.04,25.24-50.58c5.41-10.83,4.26-23.42-.94-34.16-6.65-13.73-20.62-22.29-35.9-22.52-11.85-.23-22.92,4.55-30.86,13.26l-85.51,114.09-108.63.02c-3.08,0-4.96,2.39-5.49,5.23l.07,56.82.95,11.24c1.67,19.95,8.77,38.67,19.61,55.52,14.97,23.96,37.8,42.79,64.08,53.22l.04,35.33c0,3.12,2.45,4.77,5.5,5.25h148.68c3.22-.65,5.48-2.44,5.49-5.66l.02-34.94c8.9-3.72,17.28-7.76,25.2-13.18,10.22-7,19.23-14.91,27.39-24.28,12.14-14.28,21.31-30.76,26.67-48.79,3.1-10.42,4.3-20.94,5.28-31.65v-9.29ZM354.96,164.2l21.63-28.87c2.6-3.48,4.97-6.8,8.48-9.44,10.88-8.19,27.4-7.05,37.79,2.5,10.8,9.94,12.75,26.02,5.07,38.57l-11.74,23.15-23.6,47.04-77.86-.05-14.39-.16,54.62-72.74ZM183.27,247.62h307.57v31.84H183.27s0-31.84,0-31.84ZM268.02,449.21l.02-26.44c10.88,3.26,21.21,4.79,32.21,5.17l74.72-.03c10.75-.49,20.81-1.97,31.53-5.16l.06,26.48-138.54-.02ZM443.45,391.97c-20.8,16.24-46.91,25.43-73.38,25.43h-65.48c-19.83-.02-40.78-5.45-57.84-14.98-12.85-7.18-24.07-16.57-33.76-27.73-18.81-21.67-29.34-49.54-29.52-78.31l-.09-6.32h307.37c1.62,40.74-15.76,76.92-47.3,101.91ZM385.04,228.21c2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57ZM418.52,152.08c-2.7-1.07-5.62.46-6.94,3.09l-32.55,65.25c-1.06,2.11-.93,4.21.36,5.92,1.12,1.48,3.37,2.53,5.65,1.87,2.56-.74,3.83-2.9,4.42-5.29l31.54-63.27c1.44-2.9.57-6.36-2.48-7.57Z'/%3E%3Cg%3E%3Cpath class='cls-1' d='M260.91,386.28c-1.19,2.26-4.5,3.69-7.13,2.18-17.64-10.12-32.24-24.82-42.15-42.76-6.21-11.27-9.79-23.71-11.49-36.34-.42-3.05,1.39-5.63,3.95-6.22,2.67-.61,5.66.97,6.28,3.94l3.26,15.76c1.76,5.33,3.65,10.38,6.22,15.41,8.72,17.1,22.37,31.39,39.06,41.19,2.53,1.49,3.12,4.69,2,6.84Z'/%3E%3Cpath class='cls-1' d='M474.15,308.81c-2.95,26.51-16.04,50.12-36.22,67.37l-13.05,9.77c-1.76,1.32-3.66,2.44-5.84,2.86-2.45.48-4.73-.79-5.65-2.85-.9-2.02-.49-4.71,1.73-6.26l13.26-9.21,6.11-5.37c7.74-7.39,14.28-15.86,19.32-25.36l5.93-13.86c4.34-10.16,1.58-23.91,10-22.87,2.66.33,4.74,2.76,4.41,5.78Z'/%3E%3Cpath class='cls-1' d='M260.91,386.28c-1.19,2.26-4.5,3.69-7.13,2.18-17.64-10.12-32.24-24.82-42.15-42.76-6.21-11.27-9.79-23.71-11.49-36.34-.42-3.05,1.39-5.63,3.95-6.22,2.67-.61,5.66.97,6.28,3.94l3.26,15.76c1.76,5.33,3.65,10.38,6.22,15.41,8.72,17.1,22.37,31.39,39.06,41.19,2.53,1.49,3.12,4.69,2,6.84Z'/%3E%3Cpath class='cls-1' d='M474.15,308.81c-2.95,26.51-16.04,50.12-36.22,67.37l-13.05,9.77c-1.76,1.32-3.66,2.44-5.84,2.86-2.45.48-4.73-.79-5.65-2.85-.9-2.02-.49-4.71,1.73-6.26l13.26-9.21,6.11-5.37c7.74-7.39,14.28-15.86,19.32-25.36l5.93-13.86c4.34-10.16,1.58-23.91,10-22.87,2.66.33,4.74,2.76,4.41,5.78Z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-1' d='M421,159.65l-31.54,63.27c-.59,2.39-1.86,4.55-4.42,5.29-2.28.66-4.53-.39-5.65-1.87-1.29-1.71-1.42-3.81-.36-5.92l32.55-65.25c1.32-2.63,4.24-4.16,6.94-3.09,3.05,1.21,3.92,4.67,2.48,7.57Z'/%3E%3Cpath class='cls-1' d='M421,159.65l-31.54,63.27c-.59,2.39-1.86,4.55-4.42,5.29-2.28.66-4.53-.39-5.65-1.87-1.29-1.71-1.42-3.81-.36-5.92l32.55-65.25c1.32-2.63,4.24-4.16,6.94-3.09,3.05,1.21,3.92,4.67,2.48,7.57Z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpolygon class='cls-1' points='217.99 507.7 191.9 539.24 185.01 533.37 199.75 514.92 178.44 522.42 174.88 519.7 176.57 507.48 178.09 497.1 162.81 514.77 156 508.63 166.18 496.3 177.71 482.79 182.29 477.52 188.7 482.83 184.52 511.65 211.34 502.16 217.99 507.7'/%3E%3Cpath class='cls-1' d='M528.71,470.72l-11.66,14.47,12.98,10.59-5.97,7.58-31.7-25.99,6.18-7.66,12.02,10.08,8.87-11.06c.94-1.18,2.08-2.08,2.76-3.55l-12.17-9.82,5.97-7.73,31.77,25.98-6.35,7.67-12.7-10.56Z'/%3E%3Cpath class='cls-1' d='M176.17,473.57l-8.24,2.02c-.17-8.25-8.79-18.08-13.05-13.86-1.1,1.09-1.21,2.55-.59,4.01l5.83,13.81c1.56,3.7.61,7.61-1.81,10.6-4.65,5.76-13.47,4.47-18.97-.39-5.62-4.96-10.83-13.23-10.43-20.68l7.72-1.8c-.05,8.14,7.98,20.11,12.98,16.87,1.28-.83,1.98-2.51,1.31-4.09l-3.4-8.01c-1.51-3.56-3.08-7.44-2.6-11.45.75-6.29,7.1-10.08,13.16-8.92,9.16,1.77,16.17,12.56,18.09,21.89Z'/%3E%3Cpath class='cls-1' d='M510.98,507.43c.18,10.37-8.15,19.11-18.1,21.37-6.02,1.37-12.66.23-17.65-3.63-10.13-7.83-11.19-22.54-2.08-32.04,5.4-5.62,12.54-8.85,20.44-7.55l-1.24,8.63c-6.59-1.1-12.7,2.41-15.45,8.29-2.26,6.66.79,13.26,6.94,16.41,3.07,1.57,6.33,1.91,9.59.52,5.32-2.01,9.1-6.62,9.16-12.72l8.39.72Z'/%3E%3Cpolygon class='cls-1' points='466.95 549.47 458.5 554.71 447.48 535.5 441.59 525.5 430.07 531.84 426.17 525.02 430.72 522.35 457.89 506.36 461.82 513.56 450.15 520.37 466.95 549.47'/%3E%3Cpolygon class='cls-1' points='322.95 577.01 321.93 584.91 291.71 580.93 297.26 540.64 306.61 541.97 302.72 574.28 322.95 577.01'/%3E%3Cpolygon class='cls-1' points='283.51 571.16 281.27 578.92 263.52 573.63 252.54 570.34 259.13 547.5 264.04 531.18 273.27 533.91 263.95 565.43 283.51 571.16'/%3E%3Cpath class='cls-1' d='M235.33,517.75l-21.87,17.47-12.46,10.34,8.63,4.89,7.18-6.23,15.84,8.39c1.04.55,1.42,1.05,1.33,2.17l-.63,7.94,9.51,4.69,1.38-45.31-8.91-4.35ZM234.35,544.83l-11.17-5.95,12.33-10.52-1.16,16.47Z'/%3E%3Cpath class='cls-1' d='M387.93,563.88c-1.47-2.26-3.73-3.4-6.2-4.31,3.24-2.85,4.47-6.54,3.45-10.49-1.79-6.97-9.23-8.32-16.42-7.4l-21.11,2.69,1.72,12.48,3.74,28.23,23.75-3.35c4.11-.58,7.71-2.14,10.9-4.89,2.71-4.04,2.73-9.02.17-12.96ZM358.27,550.44l12.87-1.59c2.57-.32,4.6,1.35,4.94,3.56.35,2.32-.93,4.55-3.67,4.98l-12.95,2.01-1.19-8.96ZM376.09,573.99l-14.2,2.29-1.43-9.58,11.88-1.67c1.35-.19,2.7-.09,3.97.19,2.19.48,3.42,2.18,3.54,4.23.12,2.14-1.34,3.76-3.76,4.54Z'/%3E%3Cpath class='cls-1' d='M434.98,553.24l-22.57-22.96-9.5,3.03-1.64,16.18-2.38,29.18,8.63-3.15c.47-.17,1-.71,1.05-1.21l.81-8.66,18.29-6.28,6.26,6.77,9.97-3.6-8.92-9.3ZM409.83,557.27l.81-16.47,11.23,12.13-12.04,4.34Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.choose-homemade .box4 figure {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 722 650.16'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %233e7e62; %7D %3C/style%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cg id='Generative_Object' data-name='Generative Object'%3E%3Cg%3E%3Cpath class='cls-1' d='M210.89,246.72c2.92-5.04,5.42-9.86,7.52-15.1,2.47-6.16,4.36-12.16,5.24-18.75l3.87-28.98c4.27,20.19,2.17,40.24-4.34,60.34l11.14-5.73,7.93-11.14c8.51-9.42,19.73-15.16,32.36-16.72,12.51-1.54,24.59.14,36.31,4.87,14.82,5.99,28.18,15.12,39.26,27.12l-12.55-4.12c-9.97-3.27-20.24-1.81-29.7,2.93l-20.26,11.91c-11.98,7.04-23.4,7.94-36.61,3.7-6.59-2.12-12.42-4.95-18.42-8.82-7.36,3.78-14.41,8.6-19.37,15.47-3.25,4.5-6.01,9.4-7.75,14.68l-8.69,26.39c9.77-3.11,18.87-5.35,28.66-6.33,3.33-.33,6.51-1.2,9.76-.8-14.52,3.23-27.7,8.99-39.03,18.15-1.45,1.17-2.31,2.13-2.61,4-3.2,20.14-5.51,41.17-3.3,61.52,1.29,11.91,2.87,23.38,5.6,35.09,6.68,28.61,17.16,54.34,31.96,79.74,8.5,14.59,18.49,27.94,29.83,40.48,25.88,28.6,60.19,51.7,96.37,65.13,19.24,7.14,38.82,11.83,59.27,14.2,57.13,6.61,112.57-3.76,162.05-33.47,42.35-25.43,76.37-65.8,95.16-111.46,13.08-31.78,20.14-67.62,19.59-101.92-.31-19.71-2.73-38.93-7.32-58.08-4.38-18.26-10.93-35.74-19.34-52.47-16.94-33.74-40.89-63.14-70.66-86.31-21-16.34-42.97-28.28-68.05-37.24-47.44-16.95-102.86-17.23-150.64-1.48l-22.2,8.6c-24.52,10.92-48.16,27.14-67.79,45.37l-10.29,10.32,3.86-10.69c3.78-13.19,5.62-26.64,5.44-40.47,8.66-6.41,17.02-12.81,26.3-18.15l14.5-8.35c10.85-5.54,21.57-10.61,33.08-14.79,17.99-6.53,36.34-10.91,55.32-13.43l24.58-2.02,22.03.02c10.32.55,20.22,1.33,30.39,3.03l28.45,6.12c26.07,6.95,52.95,19.06,75.34,34.1,12.97,8.71,25.13,18.18,36.66,28.63l10.48,10.1,9.92,10.66c31.36,35.81,52.09,74.94,63.67,121.26,2.56,10.26,4.14,20.19,5.62,30.64,2.27,16.11,2.92,32.08,2.3,48.45-1.18,31.16-7.52,61.69-18.29,90.92-6.86,18.61-15.93,36.11-26.8,52.62-14.85,22.58-33.03,42.68-53.81,59.87-22.82,18.88-46.32,32.75-73.69,44.13-23.04,9.58-47.13,15.85-71.99,18.34-23.29,2.34-46.48,1.67-69.61-1.7-27.24-3.97-53.46-11.28-78.75-21.97l-25.09-12.21c-9.61-5.2-18.4-11.15-27.31-17.55-13.06-9.38-24.98-19.86-36.09-31.55s-21.66-25.48-30.44-39.83c-22.13-36.17-34.13-83.43-37.57-125.5-1.12-13.69-.72-27.05.45-40.65.15-1.69-.21-2.53-1.24-3.79-3.7-4.52-7.96-8.76-13.56-10.86-.45-.17-.86.8-.71,1.06l.61,1.07c2.72,2.67,5.37,5.27,7.33,8.48-.18.24-.36.43-.51.51l-.48.27-.53.23-.57.24c-10.16,4.29-21.2,4.22-31.41.07l-.53-.21-.52-.23-.54-.23-.54-.23-.56-.25c-8.13-3.68-15.14-9.1-22.04-14.74l-.42-.39-9.9-7.56-.52-.3c-7.56-5.02-16.47-7.4-25.61-7.42l-.78.03h-.76s-.76,0-.76,0l-.77.02-.76.03-.71.05-.64.05-.63.06-.68.07-.72.09-1.6.29c-.35.06-.47-.28-.2-.45,4.62-3.17,9.26-5.51,14.4-7.76,11.15-4.88,22.65-8.18,34.83-9.32,16.23-1.52,29.62,1.14,42.42,11.43,7.24,5.82,12.32,13.7,15.63,22.31l.26,3.12c1.48,1.31,3.08,2.25,5.03,3.28,1.68-5.59,1.88-11.27,1.93-17.16.04-4.26-.46-8.02-1.36-12.2-5.33-24.96-14.78-46.66-25.57-69.03.48,0,.67.21.81.37,6.28,6.98,11.36,14.7,16.41,22.62l.33.48.32.49c4.58,7.13,8.18,14.64,11.88,22.26l.26.54,4.31,9.09c.06.34.6.31.64-.21,4.62-16.33,11.81-31.49,20.29-46.11l6.52-11.23Z'/%3E%3Cpath class='cls-1' d='M138.93,232.65c-.85,1.29.11,3.28.87,4.54,2.78,4.6,4.85,9.04,7.07,13.95,6.79,15.01,12.56,30.23,16.75,46.18.72,2.72,1.39,5.07,1.42,7.87-7.1-.55-13.6-1.5-20.12-3.56-20.42-6.46-37.34-23.55-48.52-41.55-10.02-16.14-17.98-33.4-23.57-51.57l-8.15-26.46c-4.18-13.57-9.15-25.85-18.23-36.94-11.86-14.48-28.12-22.84-46.45-28.07,6.11-1.11,12.14-1.36,18.54-1.16,16.81.52,33.01,3.8,49.03,8.9,18.23,5.8,35.25,14.06,51.43,24.13,5.52,3.44,10.4,6.81,15.46,10.85,9.47,7.56,18.35,15.35,26.43,24.48,14.36,16.21,24.46,36.21,27.25,57.85,1.65,10.04,1.41,19.85-.47,29.86l-5.06,19.91-12.42-23.08c-6.38-11.86-17.9-26.94-28.61-35.24-.58-.45-1.81-1.34-2.67-.88Z'/%3E%3Cpath class='cls-1' d='M231.81,204.23c.81-9.77-.46-27.93-3.36-37.37-.17-.55-1.52-1.64-1.62-1l-3.21,20.46c-.86,7.8-2.26,15.09-3.79,22.77-1.77,8.88-4.28,17.3-8.66,25.45-13.51-7.23-23-20.35-27.5-34.74-7.64-23.76-5.55-50.41-.79-74.77l7.09-36.26c7.02-35.94,6.24-61.09-20.41-88.76,8.73,3.88,16.27,8.78,23.69,14.25,9.77,7.2,17.93,14.8,26.27,23.55,3.85,4.04,7.23,8.1,10.77,12.42,5.67,6.93,10.47,14.07,15.25,21.61,4.75,7.49,8.47,14.9,12,23.04,6.11,14.12,10.24,28.53,11.92,43.91.99,9.06,1.05,17.82-.38,26.85-1,6.3-2.1,12.31-4.09,18.41-2.89,8.84-6.91,17.01-12,24.79-6.28,9.58-14.24,17.53-23.6,24.62l2.42-29.21Z'/%3E%3Cpath class='cls-1' d='M403.54,374.05c-6.86,3.82-22.24,4.2-30.83,3.58-7.04-.51-17.83-1.01-19.58-7.1l-.17-57.17c0-3-2.93-3.81-3.13-7.25-6.7-1.6-13.23-1.9-20.07-1.04-10.39,1.31-20.23,4-29.87,8.01l-13.72,5.71c-15.55,6.48-31.75,13.27-49.18,11.24-7.78-.91-15.12-3.03-22.1-6.41l-11.79-7.11c2.81-2.18,5.15-4.19,8.21-5.75,11.64-5.94,23.87-10.29,36.64-12.99.58-.12,1.04-.67,1.08-1,.05-.4-.54-1.26-1.18-1.33-16.79-1.78-29.54-.82-46.04,3.01.44-2.29,1.26-3.77,2.58-5.28,10.01-11.49,22.66-20.57,37.3-25.28,16.96-5.47,37.95-5.87,55-.57l15.04,5.54c14.16,6.69,27.07,15.37,38.97,25.48.97.82,1.5,1.8,2.86.73,1.8-1.42,4.02-2.26,6.41-2.65,7.16-1.16,14.18-1.95,21.47-1.99l18.94-.1c2.68-.01,5.08,1.93,6.14,3.65,1.55,2.5,1.66,5.27.28,7.69-1.69,2.97-4.89,4.14-8.32,4.22l-29.68.72v18.77s12.6-.35,12.6-.35l11.77-.91c4.92-.38,8.97,2.56,9.23,7.63.17,3.27-1.65,6.1-4.84,7.05s-6.61,1.52-10.1,1.57l-18.63.24-.04,17.14,11.77.42c12.24.44,20.52-6.12,25.45,1.45,2.32,3.57,1.57,8.18-2.49,10.44Z'/%3E%3Cg%3E%3Cpath class='cls-1' d='M443.69,364.03c7.23,2.59,14.36-.16,17.99-6.59.9-1.6,1.79-3.2,3-4.53,2.71-3,6.43-3.73,10.15-2.23,3.41,1.37,5.58,5.07,3.97,8.83-2.35,5.5-6.1,10.35-10.7,14.2-14.66,12.27-36.7,7.97-47.16-8.72-7.1-11.33-8.41-24.9-4.61-37.66,3.43-11.51,10.68-20.85,21.25-26.7,6.07-3.36,12.59-5.8,19.46-6.96,7.22-1.22,13.85,2.03,18.01,7.7,2.15,2.94,4.56,5.67,4.98,9.49s-2.9,7.6-6.67,8.01-6.7-1.66-8.62-4.49l-3.08-4.55c-2.31-3.41-20.59,3.9-27.16,15.14-5.19,8.89-5.62,19.9-1.21,29.12,2.19,4.58,5.61,8.22,10.4,9.94Z'/%3E%3Cpath class='cls-1' d='M563.59,318.88c-3.78-15.4-14.48-24.4-30.15-26.45-13.16-1.72-25.67,3.22-34.11,13.41-4.6,5.55-7.65,11.75-9.8,18.72-3.06,9.91-3.66,20.29-.66,30.3,2.21,7.38,6.16,14.1,12.43,18.74,12.14,8.97,29.1,9.86,41.92,1.38,8.51-5.63,14.22-13.76,17.92-22.96,4.27-10.59,5.17-22.05,2.45-33.14ZM546.66,345.09c-1.87,5.28-4.54,9.67-8.42,13.87-8.48,9.19-22.74,8.64-30.18-1.32-8.87-11.85-5.3-30.31,3.22-42.1,4.5-6.23,11.64-9.21,19.18-8.09,10.88,1.61,16.71,7.88,18.35,18.68.99,6.5.03,12.82-2.15,18.96Z'/%3E%3Cg%3E%3Cpath class='cls-1' d='M454.55,472.84c-3.17-.23-5.52-2.81-5.52-6.03l.08-38.7.17-19.67c.02-2.67,2.58-4.97,5.08-5.41,3.29-.58,5.97.98,8.15,3.3l13.67,17.82,15.65,21.39.81-38.53c.08-3.64,4.05-5.63,7.11-5.22,3.58.48,5.37,3.74,5.34,7.28l-.2,20.16-.76,36.45c-.04,1.98-1.14,4.16-2.56,5.35-3.13,2.62-7.47,1.48-9.89-1.64l-11.43-17.41c-5.6-8.53-11.39-16.66-18.32-24.66l-.16,39.52c-.58,3.84-3.14,6.29-7.23,5.99Z'/%3E%3Cpath class='cls-1' d='M431.69,456.87c2.88-.68,5.6-.46,7.7,1.42,1.48,1.33,2.15,3.25,1.92,5.12-.6,4.85-5.3,6.03-10.15,6.78-4.46.69-8.72.9-13.25.86-6.6-.06-16.72-.15-19.94-5.13-.79-1.23-.43-2.61-.43-4.06v-44.8c-2.42-1.99-3.34-5.01-1.69-7.66,2.4-3.87,10.32-4.8,15.62-4.97l21.27-.66c2.5-.08,4.53-.53,6.5,1.29,1.53,1.42,2.89,3.56,2.38,6.09-.58,2.89-3.19,5.07-6.24,5.09l-17.08.11-8.35.73.12,14.61c6.78.55,13.26-.02,19.96-.56,2.8-.22,5.23.76,6.51,2.92s1.25,5.22-.51,7.18c-1.23,1.37-2.94,1.88-4.74,2.15-6.98,1.12-13.82,1.15-21.08.99l.02,13.49c7.15,1.24,14.25.69,21.47-1Z'/%3E%3Cpath class='cls-1' d='M253.36,442.75l-.04,23.33c0,3.06-1.91,5.92-4.84,6.52-2.25.46-4.44.05-5.93-1.23-1.78-1.52-2.11-3.69-2.1-6.07l.1-24.54c-1.59-1.33-2.13-2.93-2.39-4.52-.31-1.91,1.25-3.33,2.2-4.84.2-5,.51-10.07-.04-15.07-.62-1.66-2.55-3.23-2.06-5.46.93-4.23,5.16-5.65,9.87-5.82l25.35-.91c2.51-.09,4.59-.43,6.62,1.24,1.69,1.39,3.01,3.78,2.44,6.3-.74,3.3-3.82,5.1-7.18,5.12l-21.99.15v13.4s11-.1,11-.1c3.32-.11,6.46-.36,9.63-1.31,3.28-.65,6.42,1.4,7.27,4.44s-.94,6.35-4.16,7.46c-3.99,1.37-8.11,1.89-12.37,1.9h-11.39Z'/%3E%3Cpath class='cls-1' d='M671.87,417.56c-4.66,6.96-9.8,13.31-15.27,19.64l-2.88,3.66-.1,24.06c0,2.34-1.1,4.15-2.57,5.41-1.69,1.45-3.84,1.83-6.05,1.2-2.73-1.16-4.32-3.92-4.33-6.98l-.1-23.43c-8.43-8.33-15.12-17.93-19.54-28.77-1.06-2.61-1-4.76.63-7.06,1.77-2.49,5.01-3.87,7.91-2.22,2.23,1.27,3.6,3.63,4.05,6.15,1.37,3.68,2.92,7.18,5.36,10.22l7.84,9.77,11.41-14.28c4.2-5.25,4.98-10.74,10.05-12.36,2.4-.77,4.7.32,6.1,1.89,1.72,1.93,2.43,4.58,1.12,6.86l-3.62,6.25Z'/%3E%3Cpath class='cls-1' d='M379.99,470.83l-20.95.07c-3.64.01-6.5-2.07-6.95-5.44s1.54-6.72,5.06-7.23l5.66-.14v-42.07s-5.68-.08-5.68-.08c-3.21-.5-5.24-3.17-5.16-6.24.08-2.81,2.32-6.16,5.61-6.16l23.35.02c3.34,0,5.4,3.68,5.32,6.41-.1,3.3-2.56,5.91-5.96,5.96l-4.56.07v42.06s4.93.07,4.93.07c3.59.05,5.85,3.33,5.71,6.64s-2.86,6.04-6.38,6.06Z'/%3E%3Cpath class='cls-1' d='M617.98,471.36l-32.12.3c-3.59.03-7.79-1.89-7.78-6.07l.04-55.99c0-3.16,3.39-5.34,6.08-5.5s6.4,1.84,6.41,5.11l.25,49.9,26.45-.03c3.37,0,5.63,2.76,5.9,5.74.24,2.65-1.81,6.52-5.23,6.55Z'/%3E%3Cpath class='cls-1' d='M342.94,463.85l-16.27-18.65c3.13-1.54,5.53-3.77,7.8-6.34,8.53-9.65,8.76-24.09-1.26-32.13-12.05-9.66-28.12-8.09-41.23-.86-2.1,1.16-3.64,3.2-3.98,5.46-.44,2.89.71,5.32,3.49,6.61l-.12,47.72c0,2.62.54,4.37,2.49,5.85,1.79,1.35,4.12,1.31,6.5.41,2.31-.87,3.92-3.55,3.96-6.23l.24-15.84,9.07-.63,13.33,15.83,6.34,6.54c2.5,1.88,5.79,1.81,8.07-.14,1.92-1.63,3.65-5.21,1.57-7.6ZM315.39,435.96l-10.92,1.5.03-23.6c8.24-2.33,16.94-1.94,22.42,4.89,1.59,3.78.8,7.76-1.6,11.03-2.41,3.18-5.84,5.16-9.93,6.18Z'/%3E%3Cpath class='cls-1' d='M565.71,420.51c-9.25-17.28-33.77-19.65-50.87-11.92-3.63,1.64-5.45,5.28-3.8,8.84,1.15,2.5,3.69,3.46,6.41,3.01v44.08c-.02,5.02,2.84,8.96,7.44,8.44l10.81-1.22c6.28-.7,11.95-2.43,17.54-5.18,4.53-2.22,8.07-5.13,10.82-9.46,6.99-10.95,7.85-25,1.65-36.59ZM556.86,441.7c-2.06,8.97-9.04,15.6-18.24,16.95l-8.38,1.23-.03-42.79c7.03-.96,14.34.07,20.14,4.35,3.23,2.38,4.92,6.06,6.3,9.73.45,3.55,1.03,6.98.21,10.53Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

/* Blogs */
.blogpage-wrapper .row {
  --bs-gutter-x: 40px;
  --bs-gutter-y: 40px;
}

/* Product Detail Page */
.detail-page .woocommerce .onsale {
  background-color: var(--primary);
  font-weight: 500;
  min-width: auto;
  min-height: unset;
  width: 80px;
  left: 10px;
  top: 10px;
  border-radius: 30px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 24px;
}

.single-product {
  margin-top: 30px;
}

.productlist .single-product>.product {
  border: 0;
  display: block;
}

.detail-page .woocommerce div.product div.images img {
  border-radius: 16px;
  aspect-ratio: 1 / 1;
  object-fit: cover;
}

.detail-page .woocommerce div.product div.summary {
  display: flex;
  flex-direction: column;
}

.detail-page .woocommerce div.product div.summary .woocommerce-product-details__short-description {
  order: 0;
}

.detail-page .woocommerce div.product div.summary .woocommerce-product-details__short-description h3 {
  font-size: 18px;
  color: var(--gray);
  text-align: left;
}

.detail-page .woocommerce div.product div.summary .woocommerce-product-details__short-description ul {
  padding-left: 20px;
}

.detail-page .woocommerce div.product div.summary .woocommerce-product-details__short-description ul li {
  color: var(--gray);
}

.detail-page .woocommerce div.product div.summary .woocommerce-product-details__short-description ul li p {
  margin-bottom: 5px;
}

.detail-page .woocommerce div.product div.summary .woocommerce-product-details__short-description strong {
  font-weight: 600;
  font-family: var(--fontLora);
}

.detail-page .woocommerce div.product div.summary .woocommerce-product-details__short-description h4,
.detail-page .woocommerce div.product div.summary .woocommerce-product-details__short-description h5,
.detail-page .woocommerce div.product div.summary .woocommerce-product-details__short-description h6 {
  font-size: 16px;
  line-height: 26px;
  color: var(--gray);
  font-weight: 400;
  text-align: justify;
}

.detail-page .woocommerce div.product div.summary .price {
  order: 1;
  display: flex;
  flex-direction: row-reverse;
  text-align: left;
  justify-content: flex-end;
  align-items: center;
}

.detail-page .woocommerce div.product div.summary .price ins {
  text-decoration: none;
  margin-right: 6px;
}

.detail-page .woocommerce div.product div.summary .price ins .amount {
  color: var(--text);
  font-size: 18px;
}

.detail-page .woocommerce div.product div.summary .stock {
  order: 2;
}

.detail-page .woocommerce div.product div.summary .woobt-wrap {
  order: 3;
}

.detail-page .woocommerce div.product div.summary form.cart {
  order: 4;
}

.detail-page .woocommerce div.product div.summary .product_meta {
  order: 5;
  color: var(--gray);
}

.detail-page .woocommerce div.product div.summary .psfw-social-wrap {
  order: 6;
}

.detail-page .woocommerce .quantity .qty {
  padding-left: 10px;
  width: 70px;
  border-radius: 6px;
  border: 1px solid var(--border);
  height: 40px;
}

.detail-page ul.psfw-social-icons li a {
  margin: 0;
  border: 0;
  width: auto;
  margin-right: 10px;
}

.detail-page ul.psfw-social-icons li a .fa-facebook {
  color: #1877F2;
}

.detail-page ul.psfw-social-icons li a .fa-x-twitter {
  color: #333333;
}

input[type="number"]::-webkit-inner-spin-button,
input[type="number"]::-webkit-outer-spin-button {
  cursor: pointer;
}

.detail-page .woocommerce div.product form.cart .button {
  margin-left: 10px;
  background-color: var(--secondary);
  color: var(--white);
  border-radius: 6px;
  border: 1px solid var(--secondary);
  height: 40px;
  font-weight: 600;
  font-family: var(--font);
}

.upsells,
.related {
  margin-bottom: 50px;
}

.upsells h2,
.related h2 {
  font-size: 20px;
  color: var(--text);
  font-weight: 500;
  text-transform: uppercase;
  letter-spacing: .5px;
  margin-bottom: 30px;
}

.detail-page .woocommerce div.product .woocommerce-tabs ul.tabs {
  display: flex;
  padding: 0;
  border: 0;
  margin-bottom: 16px;
}

.detail-page .woocommerce div.product .woocommerce-tabs ul.tabs li {
  margin: 0 20px 0 0;
  padding: 0;
  border: 0;
  overflow: hidden;
  background-color: transparent;
}

.detail-page .woocommerce div.product .woocommerce-tabs ul.tabs li.active::before {
  display: none;
}

.detail-page .woocommerce div.product .woocommerce-tabs ul.tabs li.active {
  border-color: var(--secondary);
}

.detail-page .woocommerce div.product .woocommerce-tabs ul.tabs::before,
.detail-page .woocommerce div.product .woocommerce-tabs ul.tabs::after,
.detail-page .woocommerce div.product .woocommerce-tabs ul.tabs li::after,
.detail-page .woocommerce div.product .woocommerce-tabs ul.tabs li::before {
  display: none;
}

.detail-page .woocommerce div.product .woocommerce-tabs ul.tabs li a {
  height: 100%;
  min-height: 40px;
  padding: 0 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 6px;
  font-weight: 500;
  border: 1px solid var(--border);
  text-transform: capitalize;
}

.detail-page .woocommerce div.product .woocommerce-tabs ul.tabs li.active a {
  background-color: var(--secondary);
  color: var(--white);
}

.detail-page .woocommerce div.product .woocommerce-tabs .panel {
  border: 1px solid var(--border);
  border-radius: 10px;
  padding: 20px 20px 5px 20px;
  margin: 0 0 80px;
}

.detail-page .woocommerce div.product .woocommerce-tabs .panel h2 {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 12px;
}

.detail-page .woocommerce div.product .woocommerce-tabs .panel h3 {
  text-align: left;
  font-size: 18px;
  color: var(--text);
}

.detail-page .woocommerce div.product .woocommerce-tabs .panel ul {
  padding-left: 20px;
}

.detail-page .woocommerce div.product .woocommerce-tabs .panel ul li {
  color: var(--gray);
  width: 100% !important;
}

.detail-page .woocommerce div.product .woocommerce-tabs .panel ul li p {
  margin-bottom: 5px;
}

.detail-page .woocommerce div.product .woocommerce-tabs .panel p {
  line-height: 32px;
}

.detail-page .woocommerce div.product .woocommerce-tabs .panel strong {
  font-family: var(--fontLora);
  font-weight: 600;
  color: var(--gray);
}

.detail-page .woocommerce table.shop_attributes {
  margin-bottom: 10px;
  border: 0;
}

.detail-page .woocommerce table.shop_attributes th {
  border: 0;
  padding: 5px 5px 5px 0;
  color: var(--gray);
  text-transform: capitalize;
  font-family: var(--fontLora);
  font-weight: 600;
}

.detail-page .woocommerce table.shop_attributes td {
  border: 0;
}

.detail-page .woocommerce table.shop_attributes tr:nth-child(even) td,
.detail-page .woocommerce table.shop_attributes tr:nth-child(even) th {
  background-color: transparent;
}

.detail-page .woocommerce div.product div.images .flex-control-thumbs {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.woocommerce #review_form input {
  border-radius: 8px;
  border: 1px solid var(--border);
  margin-left: 10px;
}

.woocommerce #review_form label{
  min-width: 60px;
  font-size: 14px;
}

.woocommerce #review_form input[type="checkbox"] {
  margin-left: 0;
  margin-right: 5px;
}

/* Feature Section */
.feature-section {
  padding: 60px 0;
}

.feature-section .inner-content {
  background-color: var(--white);
  border-radius: 10px;
  box-shadow: 0 8px 24px rgba(0, 0, 0, 0.1);
  padding: 20px;
}

.feature-section .box {
  display: flex;
  align-items: center;
}

.feature-section .col-md-3:not(:nth-last-of-type(1)) {
  border-right: 1px solid #c0eed5;
}

.feature-section .box figure {
  width: 50px;
  height: 50px;
  flex-shrink: 0;
  border-radius: 50%;
  background-color: #EAFCF2;
  margin: 0 10px 0 0;
  background-repeat: no-repeat;
  background-size: 24px;
  background-position: center;
}

.feature-section .box1 figure {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='currentColor' width='256' height='256'%3E%3Cpath d='M223.45,40.07a8,8,0,0,0-7.52-7.52C139.8,28.08,78.82,51,52.82,94a87.09,87.09,0,0,0-12.76,49c.57,15.92,5.21,32,13.79,47.85l-19.51,19.5a8,8,0,0,0,11.32,11.32l19.5-19.51C81,210.73,97.09,215.37,113,215.94q1.67.06,3.33.06A86.93,86.93,0,0,0,162,203.18C205,177.18,227.93,116.21,223.45,40.07ZM153.75,189.5c-22.75,13.78-49.68,14-76.71.77l88.63-88.62a8,8,0,0,0-11.32-11.32L65.73,179c-13.19-27-13-54,.77-76.71,22.09-36.47,74.6-56.44,141.31-54.06C210.2,114.89,190.22,167.41,153.75,189.5Z' fill='%2300D084'/%3E%3C/svg%3E");
}

.feature-section .box2 figure {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='currentColor' width='256' height='256'%3E%3Cpath d='M230.33,141.06a24.34,24.34,0,0,0-18.61-4.77C230.5,117.33,240,98.48,240,80c0-26.47-21.29-48-47.46-48A47.58,47.58,0,0,0,156,48.75,47.58,47.58,0,0,0,119.46,32C93.29,32,72,53.53,72,80c0,11,3.24,21.69,10.06,33a31.87,31.87,0,0,0-14.75,8.4L44.69,144H16A16,16,0,0,0,0,160v40a16,16,0,0,0,16,16H120a7.93,7.93,0,0,0,1.94-.24l64-16a6.94,6.94,0,0,0,1.19-.4L226,182.82l.44-.2a24.6,24.6,0,0,0,3.93-41.56ZM119.46,48A31.15,31.15,0,0,1,148.6,67a8,8,0,0,0,14.8,0,31.15,31.15,0,0,1,29.14-19C209.59,48,224,62.65,224,80c0,19.51-15.79,41.58-45.66,63.9l-11.09,2.55A28,28,0,0,0,140,112H100.68C92.05,100.36,88,90.12,88,80,88,62.65,102.41,48,119.46,48ZM16,160H40v40H16Zm203.43,8.21-38,16.18L119,200H56V155.31l22.63-22.62A15.86,15.86,0,0,1,89.94,128H140a12,12,0,0,1,0,24H112a8,8,0,0,0,0,16h32a8.32,8.32,0,0,0,1.79-.2l67-15.41.31-.08a8.6,8.6,0,0,1,6.3,15.9Z' fill='%2300d084' /%3E%3C/svg%3E");
}

.feature-section .box3 figure {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='currentColor' width='256' height='256'%3E%3Cpath d='M92,140a12,12,0,1,1,12-12A12,12,0,0,1,92,140Zm72-24a12,12,0,1,0,12,12A12,12,0,0,0,164,116Zm-12.27,45.23a45,45,0,0,1-47.46,0,8,8,0,0,0-8.54,13.54,61,61,0,0,0,64.54,0,8,8,0,0,0-8.54-13.54ZM232,128A104,104,0,1,1,128,24,104.11,104.11,0,0,1,232,128Zm-16,0a88.11,88.11,0,0,0-84.09-87.91C120.32,56.38,120,71.88,120,72a8,8,0,0,0,16,0,8,8,0,0,1,16,0,24,24,0,0,1-48,0c0-.73.13-14.3,8.46-30.63A88,88,0,1,0,216,128Z' fill='%2300d084' /%3E%3C/svg%3E");
}

.feature-section .box4 figure {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='currentColor' width='256' height='256'%3E%3Cpath d='M223.68,66.15,135.68,18a15.88,15.88,0,0,0-15.36,0l-88,48.17a16,16,0,0,0-8.32,14v95.64a16,16,0,0,0,8.32,14l88,48.17a15.88,15.88,0,0,0,15.36,0l88-48.17a16,16,0,0,0,8.32-14V80.18A16,16,0,0,0,223.68,66.15ZM128,32l80.34,44-29.77,16.3-80.35-44ZM128,120,47.66,76l33.9-18.56,80.34,44ZM40,90l80,43.78v85.79L40,175.82Zm176,85.78h0l-80,43.79V133.82l32-17.51V152a8,8,0,0,0,16,0V107.55L216,90v85.77Z' fill='%2300d084' /%3E%3C/svg%3E");
}

.feature-section p {
  margin-bottom: 0;
  color: var(--gray);
}

.feature-section h3 {
  font-size: 18px;
  font-weight: 700;
}

/* Cart sidebar */
.xoo-wsch-new .xoo-wsch-text,
.xoo-wsc-footer {
  color: var(--text);
}

.xoo-wsc-footer-txt {
  color: var(--gray);
}

.xoo-wsc-ft-btn {
  border-radius: 12px;
}

.xoo-wsc-container .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-cart,
.xoo-wsc-container .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-continue,
.xoo-wsc-container .xoo-wsc-empty-cart .xoo-wsc-btn {
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 500;
  transition: .2s all ease-in-out;
  font-size: 16px;
  border-radius: 8px;
}

.xoo-wsc-container .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-cart:hover,
.xoo-wsc-container .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-continue:hover,
.xoo-wsc-container .xoo-wsc-empty-cart .xoo-wsc-btn:hover {
  background-color: var(--secondary20);
  border-color: var(--secondary20);
  color: var(--white);
}

.xoo-wsc-container .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-checkout {
  border-color: var(--secondary);
  color: var(--secondary);
  background-color: var(--white);
  font-weight: 500;
  font-size: 16px;
}

.xoo-wsc-container .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-checkout:hover {
  border-color: var(--secondary20);
  color: var(--secondary20);
  background-color: var(--light);
}

.xoo-wsc-container .xoo-wsc-ft-buttons-cont .xoo-wsc-btn .amount {
  color: var(--secondary);
  font-weight: 500;
}

.xoo-wsc-container .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-checkout:hover .amount {
  color: var(--secondary20);
}


.xoo-wsc-container .xoo-wsc-img-col {
  align-self: flex-start;
}

.xoo-wsc-container span.xoo-wsc-smr-del {
  color: var(--error);
}

.xoo-wsc-sml-qty,
.xoo-wsc-priceBox {
  font-size: 14px;
}

.xoo-wsc-priceBox ins {
  text-decoration: none;
  font-weight: 600;
}

.xoo-wsc-container .xoo-wsc-psavings {
  border-radius: 6px;
  font-weight: 600;
  color: var(--primary);
  border-color: var(--primary);
  display: none;
}

.xoo-wsc-container .xoo-wsc-psavings * {
  color: var(--primary);
}

.xoo-wsc-container .xoo-wsc-img-col img {
  border-radius: 6px;
}

.xoo-wsc-sm-info {
  flex-direction: column;
}

.xoo-wsc-sm-info .xoo-wsc-sm-right {
  flex-direction: row-reverse;
  justify-content: space-between;
  gap: 10px;
}


.shop-page .is-large.wc-block-cart .wc-block-cart-items th {
  color: var(--gray);
}

.shop-page .is-large.wc-block-cart .wc-block-cart__totals-title {
  color: var(--gray);
}

.shop-page .is-large.wc-block-cart .wc-block-cart-items .wc-block-cart-item__image {
  padding: 24px 0;
}

.shop-page .is-large.wc-block-cart .wc-block-cart-items .wc-block-components-product-name {
  font-weight: 500;
}

.shop-page .is-large.wc-block-cart .wc-block-cart-items .wc-block-components-product-name:hover {
  color: var(--secondary);
}

.shop-page .is-large.wc-block-cart .wc-block-cart-items .wc-block-components-product-price {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

.shop-page .is-large.wc-block-cart .wc-block-cart-items .wc-block-components-product-name {
  font-weight: 500;
}

.is-large.wc-block-cart .wc-block-cart-items .wc-block-cart-item__image img {
  border-radius: 6px;
}

.is-large.wc-block-cart .wc-block-cart-items td:last-child {
  padding-right: 0;
}

.wc-block-cart-item__prices .wc-block-components-product-price__value.is-discounted {
  margin-right: 10px;
  margin-left: 0;
  color: var(--text);
  font-weight: 500;
}

.shop-page .is-large.wc-block-cart .wc-block-cart-items td {
  border-color: var(--border);
}

.wc-block-cart-item__prices .wc-block-components-product-price__regular {
  color: var(--gray);
}

.wc-block-cart-item__total .wc-block-components-formatted-money-amount {
  font-weight: 500;
}

.shop-page .wc-block-components-sale-badge {
  border-color: var(--primary);
  color: var(--primary);
}

.wc-block-cart-item__product .wc-block-components-product-metadata__description {
  color: var(--gray);
  display: none;
}

.shop-page .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link {
  color: var(--error);
  text-decoration: none;
}

.shop-page .wc-block-cart-items .wc-block-cart-items__row .wc-block-cart-item__quantity .wc-block-cart-item__remove-link:hover {
  color: var(--error);
  text-decoration: underline;
}

.shop-page .wc-block-components-quantity-selector .wc-block-components-quantity-selector__button:focus {
  box-shadow: none;
}

.shop-page .is-large .wc-block-components-sidebar .wc-block-components-panel,
.shop-page .is-large .wc-block-components-sidebar .wc-block-components-totals-item {
  padding: 0;
}

.shop-page .wc-block-components-panel__content .wc-block-components-text-input input {
  border-color: var(--border);
  text-transform: uppercase;
  border-radius: 8px;
}

.shop-page .wc-block-components-panel__content .wc-block-components-text-input input:focus {
  border-color: var(--border);
  border-width: 1px;
  outline: 0;
}

.shop-page .wc-block-components-button:not(.is-link) {
  background-color: var(--secondary);
  border-radius: 8px;
  font-weight: 600;
  color: var(--white);
  border: 0;
  min-height: unset;
  padding: 15px 20px;
}

.shop-page .shop-page .wc-block-components-button:not(.is-link):disabled {
  opacity: 0.5;
}

.shop-page .wc-block-components-text-input label {
  color: var(--gray);
}

.shop-page .continueshopping-btn .wp-block-button .wp-block-button__link {
  background-color: var(--white) !important;
  border: 1px solid var(--secondary);
  color: var(--secondary) !important;
  height: 50px;
  border-radius: 8px !important;
  font-size: 16px !important;
  font-weight: 600;
}

.shop-page .continueshopping-btn .wp-block-button {
  width: 300px;
}

.shop-page .wp-block-buttons.is-content-justification-center {
  justify-content: flex-start;
}

.shop-page .productlist .wp-block-buttons.is-content-justification-center {
  justify-content: center;
}

.shop-page .wc-block-cart-item__quantity {
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
}

.shop-page .wc-block-cart-items .wc-block-cart-items__row .wc-block-components-quantity-selector {
  margin: 0;
}

.shop-page .wc-block-cart-item__total .wc-block-cart-item__total-price-and-sale-badge-wrapper .wc-block-components-sale-badge {
  border-color: var(--secondary);
  color: var(--secondary);
}

.shop-page .wc-block-cart-item__prices .wc-block-components-product-price {
  display: flex;
  flex-direction: row-reverse;
  justify-content: flex-end;
}

/* Account */

.account-page .woocommerce-MyAccount-content a {
  color: var(--secondary);
  font-weight: 600;
}

.account-page .woocommerce-MyAccount-content a:hover {
  text-decoration: underline;
}

.account-page .woocommerce .lost_reset_password {
  border: 1px solid var(--border);
  border-radius: 20px 20px 12px 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(44, 95, 74, 0.07);
  min-height: 100%;
  margin: 0 auto;
  width: 100%;
  max-width: 600px;
  border-top: 4px solid var(--secondary);
}

.account-page .woocommerce .lost_reset_password>p:nth-child(1) {
  position: relative;
  color: var(--gray);
}

.account-page .woocommerce .lost_reset_password>p:nth-child(1)::before {
  content: 'Password Recovery';
  display: block;
  font-size: 24px;
  color: var(--text);
  font-weight: 500;
  letter-spacing: .1px;
  margin-bottom: 15px;
}

.account-page .lost_reset_password .form-row:nth-last-of-type(1) {
  margin-bottom: 0;
}

.account-page .lost_reset_password .form-row .button {
  height: 55px;
  width: 100%;
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 500;
  border-radius: 8px;
  margin-top: 20px;
}

.account-page .lost_reset_password .form-row .button:hover {
  background-color: var(--secondary20);
  color: var(--white);
}

.account-page .lost_reset_password .form-row .button:disabled {
  background-color: var(--secondary) !important;
  color: var(--white) !important;
}

.account-page .productlist.content-page .woocommerce p {
  color: var(--gray);
}

.account-page .lost_reset_password .form-row-first {
  margin-top: 20px;
}

.account-page .woocommerce .u-column1,
.account-page .woocommerce .u-column2 {
  border: 1px solid var(--border);
  border-radius: 20px 20px 12px 12px;
  padding: 30px;
  box-shadow: 0 2px 8px rgba(44, 95, 74, 0.07);
  min-height: 100%;
}

input.woocommerce-Input:-webkit-autofill,
input.woocommerce-Input:-webkit-autofill:hover,
input.woocommerce-Input:-webkit-autofill:focus,
input.woocommerce-Input:-webkit-autofill:active {
  -webkit-box-shadow: 0 0 0 1000px #fff inset !important;
  box-shadow: 0 0 0 1000px #fff inset !important;
  -webkit-text-fill-color: #000 !important;
  caret-color: #000 !important;
  border-radius: inherit;
  transition: background-color 9999s ease-in-out 0s;
}

.account-page .woocommerce .u-column1 {
  border-top: 4px solid var(--primary);
}

.account-page .woocommerce .u-column1 h2::before {
  position: absolute;
  content: '';
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' fill='%23000000' width='80px' height='80px' viewBox='0 0 512 512' id='_x30_1' version='1.1' xml:space='preserve'%3E%3Cg%3E%3Cpath d='M256,126.562c-20.193,0-36.562,16.37-36.562,36.562v31.688h73.125v-31.688C292.562,142.932,276.193,126.562,256,126.562z' style='&%2310; fill: %23FFBA01;&%2310;'/%3E%3Cpath d='M255.461,243.566c-19.543,0.281-35.588,16.2-36.015,35.741c-0.303,13.872,7.127,26.027,18.272,32.477v23.185 c0,10.096,8.185,18.281,18.281,18.281s18.281-8.185,18.281-18.281v-23.185c10.925-6.322,18.281-18.128,18.281-31.659 C292.562,259.753,275.901,243.272,255.461,243.566z' style='&%2310; fill: %23FFBA01;&%2310;'/%3E%3Cpath d='M256,0C114.615,0,0,114.615,0,256s114.615,256,256,256s256-114.615,256-256S397.385,0,256,0z M390.062,365.438 c0,20.193-16.37,36.562-36.562,36.562h-195c-20.193,0-36.562-16.37-36.562-36.562V231.375c0-20.193,16.37-36.562,36.562-36.562 h24.375v-31.688C182.875,122.739,215.614,90,256,90l0,0c40.386,0,73.125,32.739,73.125,73.125v31.688H353.5 c20.193,0,36.562,16.37,36.562,36.562V365.438z' style='&%2310; fill: %23FFBA01;&%2310;'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  background-size: 40px;
  left: 0;
}

.account-page .woocommerce .u-column2 h2::before {
  position: absolute;
  content: '';
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='80px' height='80px' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M22 12C22 17.5228 17.5228 22 12 22C6.47715 22 2 17.5228 2 12C2 6.47715 6.47715 2 12 2C17.5228 2 22 6.47715 22 12Z' fill='%23377D5E'/%3E%3Cpath d='M16.807 19.0112C15.4398 19.9504 13.7841 20.5 12 20.5C10.2159 20.5 8.56023 19.9503 7.193 19.0111C6.58915 18.5963 6.33109 17.8062 6.68219 17.1632C7.41001 15.8302 8.90973 15 12 15C15.0903 15 16.59 15.8303 17.3178 17.1632C17.6689 17.8062 17.4108 18.5964 16.807 19.0112Z' fill='%23FFFFFF'/%3E%3Cpath d='M12 12C13.6569 12 15 10.6569 15 9C15 7.34315 13.6569 6 12 6C10.3432 6 9.00004 7.34315 9.00004 9C9.00004 10.6569 10.3432 12 12 12Z' fill='%23FFFFFF'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  width: 40px;
  height: 40px;
  background-size: 40px;
  left: 0;
}

.account-page .woocommerce .u-column2 {
  border-top: 4px solid var(--secondary);
}

.account-page #customer_login h2 {
  position: relative;
  color: var(--text);
  font-weight: 500;
  font-size: 24px;
  color: var(--text);
  padding-left: 50px;
  display: flex;
  align-items: center;
  text-transform: capitalize;
  letter-spacing: .1px;
}

.account-page .woocommerce-form {
  box-shadow: none;
}

.account-subtitle {
  position: relative;
  color: var(--gray);
  font-size: 18px;
}

.account-page .woocommerce form.checkout_coupon,
.account-page .woocommerce form.login,
.account-page .woocommerce form.register {
  padding: 0;
  margin-bottom: 0;
}

.account-page .woocommerce form.login {
  display: flex;
  flex-direction: column;
}

.account-page .woocommerce form.login .form-row:nth-of-type(3) {
  order: 3;
}

.account-page .woocommerce form.login .form-row:nth-of-type(4) {
  order: 2;
}

.account-page .woocommerce form .form-row label {
  color: var(--gray);
  margin-bottom: 5px;
  line-height: 24px;
}

.account-page .woocommerce form .form-row {
  width: 100%;
  padding: 0;
  margin-bottom: 16px;
}

.account-page .woocommerce form .form-row .woocommerce-form-login__rememberme {
  margin-bottom: 16px;
  cursor: pointer;
  display: flex;
  align-items: center;
}

.account-page .woocommerce form .form-row .woocommerce-form__input-checkbox {
  margin-right: 10px;
  width: 16px;
  height: 16px;
  accent-color: var(--secondary);
  cursor: pointer;
}

.account-page .woocommerce form .form-row .input-text,
.account-page .woocommerce form .form-row select {
  border-radius: 8px;
  border-color: var(--border) !important;
  height: 55px !important;
  padding: 10px 15px;
}

.account-page .woocommerce form .form-row .input-text:hover,
.account-page .woocommerce form .form-row .input-text:focus,
.account-page .woocommerce form .form-row select:hover,
.account-page .woocommerce form .form-row select:focus {
  outline: none !important;
  border: 1px solid var(--border) !important;
}

.account-page .woocommerce-privacy-policy-text {
  color: var(--gray);
}

.account-page .woocommerce-privacy-policy-link {
  color: var(--secondary);
  font-weight: 600;
}

.account-page .woocommerce-privacy-policy-link:hover {
  text-decoration: underline;
}

.account-page .woocommerce-form-row button.woocommerce-form-register__submit {
  height: 55px;
  width: 100%;
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 500;
  border-radius: 8px;
}

.account-page .woocommerce .woocommerce-form-login .woocommerce-form-login__submit {
  float: none;
  width: 100%;
  margin: 0;
  height: 55px;
  background-color: var(--primary);
  border-radius: 8px;
  color: var(--white);
}

.account-page .woocommerce .woocommerce-form-login .woocommerce-form-login__submit:disabled {
  color: var(--white) !important;
  background-color: var(--primary) !important;
}

.account-page .woocommerce-form-row button.woocommerce-form-register__submit:disabled {
  color: var(--white) !important;
  background-color: var(--secondary) !important;
}

.account-page .woocommerce .woocommerce-form-login .woocommerce-form-login__submit:hover {
  background-color: var(--primary20);
  color: var(--white);
}

.account-page .woocommerce-form-row button.woocommerce-form-register__submit:hover {
  background-color: var(--secondary20);
  color: var(--white);
}

.account-page .lost_password {
  text-align: right;
}

.account-page .lost_password a {
  color: var(--primary);
  font-weight: 500;
}

.account-page .lost_password a:hover {
  text-decoration: underline;
  color: var(--primary);
}

.account-page .woocommerce form .show-password-input::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40px' height='40px' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21.0006 12.0007C19.2536 15.5766 15.8779 18 12 18M12 18C8.12204 18 4.7463 15.5766 2.99977 12.0002M12 18L12 21M19.4218 14.4218L21.4999 16.5M16.2304 16.9687L17.5 19.5M4.57812 14.4218L2.5 16.5M7.76953 16.9687L6.5 19.5' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.account-page .woocommerce form .show-password-input.display-password::before {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='40px' height='40px' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M21.2572 10.9622C21.7314 11.5813 21.7314 12.4187 21.2572 13.0378C19.764 14.9868 16.1818 19 12 19C7.81823 19 4.23598 14.9868 2.74284 13.0378C2.26857 12.4187 2.26856 11.5813 2.74283 10.9622C4.23598 9.01321 7.81823 5 12 5C16.1818 5 19.764 9.01321 21.2572 10.9622Z' stroke='%23000000' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3Ccircle cx='12' cy='12' r='3' stroke='%23333333' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}

.account-page .woocommerce form .form-row .required {
  color: var(--error);
}

.account-page .woocommerce-password-strength {
  margin-top: 10px;
  border-radius: 8px;
  font-weight: 500;
  font-size: 14px;
  padding: 8px;
}

.account-page .woocommerce-password-hint {
  color: var(--secondary);
  font-weight: 500;
}

.reset-link-page .productlist>.woocommerce {
  max-width: 600px;
  margin: 0 auto;
  border: 1px solid var(--border);
  border-radius: 20px 20px 12px 12px;
  box-shadow: 0 2px 8px rgba(44, 95, 74, 0.07);
  min-height: 100%;
  padding: 30px;
  margin: 0 auto;
  max-width: 600px;
  border-top: 4px solid var(--secondary);
  overflow: hidden;
}

.reset-link-page .productlist>.woocommerce .woocommerce-message {
  border: 0;
  outline: 0;
  margin: 0;
  padding: 0;
  width: 100%;
  background: var(--white);
  border-bottom: 1px solid var(--border) !important;
  font-weight: 500;
  margin-bottom: 0;
  font-size: 20px;
  color: var(--text);
  padding-bottom: 20px;
  border-radius: 0;

}

.reset-link-page .productlist>.woocommerce .woocommerce-message::before,
.reset-link-page .productlist>.woocommerce .woocommerce-message::after {
  display: none;
}

.reset-link-page .productlist>.woocommerce p {
  margin: 0;
  color: var(--gray);
  line-height: 28px;
}

.account-page .woocommerce-error {
  max-width: 600px;
  margin: 0 auto 30px;
}

.woocommerce-Addresses .title h2 {
  text-transform: capitalize;
  margin-bottom: 15px;
}

.woocommerce-Addresses .title h2::before {
  display: none !important;
}

.woocommerce-Addresses .title .edit {
  margin-bottom: 10px;
  display: inline-block;
}

.account-page .woocommerce-EditAccountForm.edit-account,
.account-page .woocommerce-address-fields .woocommerce-address-fields__field-wrapper {
  display: flex;
  flex-wrap: wrap;
  margin: 0 -15px;
}

.account-page .woocommerce-EditAccountForm.edit-account .form-row,
.account-page .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row {
  width: 50%;
  padding: 0 15px;
}

.account-page .woocommerce-EditAccountForm.edit-account fieldset {
  display: flex;
  flex-wrap: wrap;
  width: 100%;
  margin-top: 15px;
}

.account-page .woocommerce-EditAccountForm.edit-account fieldset legend {
  width: calc(100% - 30px);
  margin: 0 15px 30px;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 10px;
}

.account-page .woocommerce-EditAccountForm.edit-account .form-row em {
  color: var(--error);
  font-size: 14px;
  display: block;
  margin-top: 6px;
}

.account-page .woocommerce-EditAccountForm.edit-account .button {
  margin-left: 15px;
  margin-top: 20px;
  height: 55px;
  width: 100%;
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 500;
  border-radius: 8px;
  margin-top: 20px;
  width: 200px;
}

.account-page .woocommerce-MyAccount-content .button {
  height: 55px;
  width: 100%;
  background-color: var(--secondary);
  color: var(--white);
  font-weight: 500;
  border-radius: 8px;
  margin-top: 20px;
  width: 200px;
}

.account-page .woocommerce-EditAccountForm.edit-account .button:hover,
.account-page .woocommerce-MyAccount-content .button:hover {
  background-color: var(--secondary20);
  color: var(--white);
}

.account-page .woocommerce-EditAccountForm.edit-account .button:disabled,
.account-page .woocommerce-MyAccount-content .button:disabled {
  background-color: var(--secondary) !important;
  color: var(--white) !important;
}

.account-page .woocommerce-MyAccount-content .button.wc-forward {
  margin-top: 0;
  width: auto;
}

.account-page .woocommerce-MyAccount-content form h2 {
  letter-spacing: normal;
  font-size: 20px;
  font-weight: 500;
  border-bottom: 1px solid var(--border);
  padding-bottom: 15px;
  text-transform: capitalize;
  margin-bottom: 20px;
}

.account-page .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.thwcfd-field-state {
  order: 1;
}

.account-page .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.thwcfd-field-country {
  order: 2;
}

.account-page .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.thwcfd-field-tel {
  order: 3;
}

.account-page .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row.thwcfd-field-email {
  order: 4;
}

.account-page .woocommerce-address-fields .woocommerce-address-fields__field-wrapper label.screen-reader-text {
  position: static !important;
  width: auto !important;
  height: auto !important;
  clip: auto !important;
  clip-path: none !important;
  overflow: visible !important;
  margin: 0 !important;
  padding: 0 !important;
  white-space: normal !important;
  margin-bottom: 5px !important;
}

.account-page .woocommerce table.my_account_orders td,
.account-page .woocommerce table.my_account_orders th {
  padding: 8px;
}

.account-page .woocommerce table td .button {
  height: auto;
  width: auto;
  background-color: transparent;
  color: var(--secondary);
  margin: 0;
  font-weight: 500;
  padding: 0;
  margin-right: 15px;
}

.account-page .woocommerce table td .button:hover,
.account-page .woocommerce table td .button:focus {
  background-color: transparent;
  color: var(--secondary);
  text-decoration: underline;
}


/* Errors */
.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-message .button,
.woocommerce .woocommerce-info .button,
.woocommerce-page .woocommerce-info .button {
  float: none;
  border-radius: 8px;
  text-transform: capitalize;
  background: var(--white);
  line-height: normal;
  height: 40px;
  display: flex;
  align-items: center;
}

.woocommerce .woocommerce-error .button:hover,
.woocommerce .woocommerce-message .button:hover,
.woocommerce-page .woocommerce-error .button:hover,
.woocommerce-page .woocommerce-message .button:hover,
.woocommerce .woocommerce-info .button:hover,
.woocommerce-page .woocommerce-info .button:hover {
  background-color: transparent !important;
  color: var(--secondary);
}

.woocommerce .woocommerce-error .button,
.woocommerce .woocommerce-message .button,
.woocommerce-page .woocommerce-error .button,
.woocommerce-page .woocommerce-message .button {
  border: 1px solid var(--secondary);
  color: var(--secondary);
}

.woocommerce .woocommerce-info .button,
.woocommerce-page .woocommerce-info .button {
  background-color: #1e85be;
  color: var(--white);
}

.woocommerce-error,
.woocommerce-info,
.woocommerce-message {
  width: 100% !important;
  outline: 0;
  border-radius: 12px;
  padding: 10px 10px 10px 20px !important;
  border-top-width: 2px !important;
  border: 2px solid transparent;
  background-color: var(--white) !important;
  display: flex;
  flex-wrap: wrap;
  gap: 15px;
  align-items: center;
  color: var(--gray);
  justify-content: space-between;
  font-weight: 400;
}

.woocommerce-error::after,
.woocommerce-info::after,
.woocommerce-message::after {
  display: none !important;
}

.woocommerce-error:focus,
.woocommerce-info:focus,
.woocommerce-message:focus {
  outline: 0;
}

.woocommerce-error::before,
.woocommerce-info::before,
.woocommerce-message::before {
  display: none !important;
}

.woocommerce-error::before {
  color: var(--error) !important;
}

.woocommerce-error li,
.woocommerce-info li,
.woocommerce-message li {
  margin-bottom: 5px;
  color: var(--gray);
}

.woocommerce-error li:last-of-type,
.woocommerce-info li:last-of-type,
.woocommerce-message li:last-of-type {
  margin-bottom: 0;
}

.woocommerce-error {
  border-color: var(--error) !important;
}

.woocommerce-message {
  border-color: var(--secondary) !important;
}

.woocommerce-message::before {
  color: var(--secondary) !important;
}

.woocommerce-info {
  border-color: #1e85be;
}

/* Hero Section */
.hero {
  padding: 60px 0;
  text-align: center;
}

.hero-title {
  font-family: var(--fontLora);
  font-size: 40px;
  font-weight: 600;
  color: var(--secondary20);
  margin-bottom: 1rem;
  letter-spacing: 1px;
}

.hero-subtitle {
  font-size: 1.1rem;
  color: var(--gray);
  margin-bottom: 2rem;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
  line-height: 1.6;
}

.hero-buttons {
  display: flex;
  gap: 1rem;
  justify-content: center;
  flex-wrap: wrap;
}

.hero-buttons .btn-primary {
  background-color: var(--secondary) !important;
  border-color: var(--secondary) !important;
}

.btn {
  padding: 12px 30px;
  border: none;
  border-radius: 5px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  transition: all 0.3s ease;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  font-family: var(--font);
}

.btn-primary {
  background-color: #34495e;
  color: white;
}

.btn-primary:hover {
  background-color: #2c3e50;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.btn-secondary {
  background-color: transparent;
  color: #34495e;
  border: 2px solid #34495e;
}

.btn-secondary:hover {
  background-color: #34495e;
  color: white;
  transform: translateY(-2px);
  transition: all 0.3s ease;
}

.btn.btn-secondary-outline {
  background-color: transparent;
  border: 1px solid var(--secondary);
  color: var(--secondary);
  font-weight: 600;
}

.btn.btn-secondary-outline:hover {
  border: 1px solid var(--secondary);
  transform: translateY(-2px);
  transition: all 0.3s ease;
  color: var(--secondary);
}


/* Shop page */
.woocommerce-result-count {
  color: var(--gray);
}

/* Product Showcase */
.product-showcase {
  padding: 2rem 0;
  background: white;
}

.products-image {
  width: 100%;
  height: auto;
  border-radius: 10px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

/* Common page Section */
.common-page-section {
  background-color: #fff;
  color: black;
  padding: 0 0 60px;
}

/* Common page Section */
.leaf-wrap {
  position: relative;
  display: inline-block;
}

.leaf-separator {
  width: 100%;
  height: 1px;
  background-color: var(--secondary);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-top: 20px;
  margin-bottom: 30px;
}

.leaf {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' xmlns:xlink='http://www.w3.org/1999/xlink' id='Layer_2' data-name='Layer 2' viewBox='0 0 200.42 541.9'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: url(%23linear-gradient); %7D %3C/style%3E%3ClinearGradient id='linear-gradient' x1='123.71' y1='435.71' x2='110.75' y2='235.71' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%23377d5e'/%3E%3Cstop offset='1' stop-color='%23377d5e'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cg id='Layer_1-2' data-name='Layer 1'%3E%3Cpath class='cls-1' d='M196.48,317.16c-8.43-3.19-22.38,21.13-25.75,26.23-15.89,23.99-28.17,50.08-41.08,75.72.37-25.98,12.76-46.43,24.61-68.7,11.81-22.2,24.6-44.34,34.82-67.33,2.5-5.61,4.62-11.39,6.74-17.16,1.51-4.1,5.86-12.07.12-12.98-8.13-1.29-17.6,16.41-21.44,21.83-12.48,17.65-20.76,37.01-31.81,55.34.48-8.21.88-16.43,1.41-24.64.58-9.18,4.09-15.3,8.46-23.22,9.08-16.47,17.16-33.46,23.4-51.22,6.32-17.99,11.12-36.47,15.98-54.9,2.44-9.27,4.83-18.54,7.02-27.87.66-2.79,1.4-5.39,1.45-7.82l-1.17-4.46-2.28-.33-3.62,2.23.07.58c-21.63,41.29-42.76,84.32-48.07,131.15-1.88-18.63-4.41-37.33-5.39-56.03-.97-18.68,3.93-37.86,7.01-56.21,3.29-19.62,7.18-39.23,8.57-59.11.68-9.76.86-19.57.6-29.35l-.09-6.2c-.42-2.62-1.06-7.79-4.52-7.79-2.82,0-3.89,4.69-4.03,5.72l.06.06c-4.09,15.58-6.09,31.57-8.77,47.51-2.98,17.68-6.62,35.22-10.09,52.81-6.03-14.03-6.43-25.17-4.38-39.99,1.83-13.15,1.91-26.86-.16-39.99-2.09-13.34-6.74-26.15-12.77-38.18-1.63-3.27-3.83-8.99-6.79-13.75-2-3.8-3.95-7.11-7.59-7.11l-3.13.69-.73,3.39.26,1.09v.21c4.24,27.65,13.22,54.52,17.65,82.22-4.83-3.19-6.14-8.55-8.87-13.56-2.65-4.84-5.53-9.58-8.33-14.34-6.17-10.45-12.55-20.81-19.7-30.62C60.89,32.88,45.26,17.5,25.06,7.28,19.99,4.71,5.95-4.27,1.03,2.44c-5.27,7.17,11.18,17.8,15.72,21.74,16.22,14.07,33.86,26.4,52.29,37.37,5.87,4.59,14.4,8.21,17.37,15.6l-.25.58h-.24c-3.22.01-6.63-6.2-9.64-6.2l-2.11,2.89c0,7.5,14.96,19.39,27.6,36.03,4.62,6.07,7.72,12.46,10.27,21.18-17.47-10.38-33.71-23.68-50.68-34.96-4.71-3.13-15.37-13.3-21.86-10.94-7.62,2.76,2.48,9.87,5.41,12.33,13.96,11.71,27.94,23.6,44.55,31.43,7.25,3.42,17.55,4.35,23.96,9.03,6.15,4.48,8.61,15.66,8.51,22.83-7.44-4.86-13.78-9.76-21.52-12.15l-3.18-.47c-2.27,0-4.42.78-4.42,3.01l.37,1.78.16.02,3.25,4.22c3.1,2.88,6.53,5.54,9.89,8.1,5.01,3.8,13.58,6.39,17.53,11.13,3.5,4.2.81,11.78.33,16.67-.96,9.66-1.14,19.41-.46,29.1,1.45,20.69,8.71,38.16,14.49,57.7,5.4,18.3.98,39.05-.52,57.71-8.21-5.66-11.44-21.56-15.75-30.49-5.29-10.95-11.28-21.55-17.69-31.89-6.42-10.33-13.29-20.38-20.37-30.26-3.44-4.81-13.6-23.86-21.88-21.31-11.21,3.46,15.09,51.66,18.94,58.84,5.54,10.33,11.79,20.29,18.95,29.59,3.25,4.23,7.06,8.01,10.32,12.19,2.78,3.56,8.25,7.16,9.79,11.26-2.43-.74-4.51-2.19-6.78-3.3-15.17-4.61-30.16-12.48-44.89-18.3-6.22-2.45-16.11-7.35-22.98-4.21-6.44,2.95-3,8.79.91,12.45,24.7,23.13,57.47,26.89,89.32,29.92-2.93,16.14-5.86,32.27-8.79,48.4-.72,3.96-.13,8.04-1.13,11.96-1.56-4.98-1.81-10.29-3.99-15.1-3.65-6.59-5.85-14.98-8.69-21.16-1.29-2.8-2.72-8.33-6.68-8.2-3.71.12-4,4.03-4.13,6.93-.47,10.25,4.23,21.62,6.77,31.43,2.72,10.49,6.36,21.11,7.39,31.91-6.45-4.83-10.03-14.34-15.16-20.54-5.46-6.6-11.77-12.46-18.83-17.33-4.83-3.33-16.53-12.33-22.36-8.46-8,5.31,4.04,16.09,7.78,20.41,12.71,14.66,26.44,22.72,44.1,30.12,6.44,2.69,5.66,3.25,4.6,10.3-.67,4.4-1.35,8.8-1.89,13.22-.81,6.69-1.26,13.42-1.7,20.16,1.75,36.3,2.51,30.18,7.52,50.64l.96,3.85,2.71.72,1.1-1.02.42-1.58c-2.39-5.78-4.9-11.66-6.01-17.86-.88-4.86-.14-9.12.52-13.65,2.37-4.27,5.92-8.15,9.35-11.16,8.38-7.36,14.26-16.24,16.05-27.44,1.16-7.3-.19-32.82-11.66-19.02-7.71,9.28-12.44,23.38-17.99,34.07,2.2-10.97,1.24-22.97,5.95-33.34,2.6-5.74,6.89-9.2,11.11-13.7,4.38-4.69,7.85-10.03,11.41-15.36,15.68-23.46,32.87-44.39,44.97-70.15,2.48-5.23,17.14-30.71,7.01-34.54ZM191.81,153.38c-1.98,25.23-24.03,91.09-41.31,122.2-2.29-27.12,23.91-94.01,41.31-122.2ZM73.08,58.46l-1.45.42c-1.09,0,.57.15-9.77-6.06-11.18-9.44-23.36-17.88-34.9-26.72C23.77,23.65,3.37,10.99,3.9,6.2c.63-5.61,18.74,3.89,22.07,5.67,15.16,8.14,28.15,19.66,38.94,32.99l.04.19h.08c3.65,3.67,7.13,7.79,8.27,12.92l-.26.38.03.11ZM73.2,114.24c-8.36-6.63-16.2-15.29-25.34-20.76,2.14.07,9.39,6.14,11.56,7.47,4.49,2.77,8.98,5.53,13.46,8.33,9.72,6.06,18.39,12.33,27.05,19.78-9.88-4.42-18.14-8.01-26.73-14.83ZM118.44,126.36c-2.78-16.98-6.34-33.72-9.97-50.54-1.83-8.49-3.68-16.98-5.5-25.47-.74-3.41-4.23-17.47-3.32-17.99l.21,1.91c17.94,28.23,24.08,58.88,18.59,92.09ZM100.64,153.07c8.06,5.21,16.11,10.42,24.17,15.64-11.36.04-18.56-6.55-24.17-15.64ZM133.44,217.86c-.16,7.22.07,14.45.49,21.65.24,4.16.26,8.51.92,12.63l.39,1.44-.08.5h-.01v-.32c-11.4-27.2-7.02-57.67-1.94-85.91,5.52-30.68,10.83-61.39,16.63-92.01,4.62,30.4-4.88,63.7-10.17,93.54-2.84,16.06-5.87,32.13-6.24,48.48ZM139.52,362.36l.27-.41c.84-3.46,1.78-7.26,1.96-8.16,1.1-5.55,2.57-10.89,4.47-16.22,3.6-10.08,7.94-19.9,12.9-29.4,9.06-17.31,19.95-35.61,34.27-49.06-6.26,18.52-14.86,36.1-23.68,53.54-4.79,9.47-9.76,18.86-14.9,28.15-3.87,7.01-7.51,15.5-12.81,21.77l-1.4,1.24h-.28s-.57-.05-.57-.05l-.52-1.3.3-.11ZM47.6,316.63c16.2-2.82,64.52,16.34,78.32,29.97-31.37,1.7-55.51-12.26-78.32-29.97ZM65.31,230.72c27.79,31.34,49.21,66.5,63.49,105.96-31.76-28.96-52.04-64.81-63.49-105.96ZM62,396.8c16.79,3.16,37.61,21.77,43.77,39.47-19.78-9.15-33.12-21.75-43.77-39.47ZM119.94,490.73c0-8,17.37-39.05,20.16-39.05l.41.04,1.02,4.92-.18,3.17c1.09,9.39-3,19.38-11.77,28.53-2.44,2.54-4.85,6.84-8.62,6.84l-1.09-.11.1-1.9-.03-2.42ZM121.22,426.41c-5.49-8.83-10.85-28.69-12.52-46.38,9.79,16.63,15.07,36.17,12.52,46.38ZM191.48,337.8c-1.8,5.12-3.97,10.14-6.32,15.03-4.45,9.29-9.74,18.17-15.54,26.67-6.22,9.13-12.93,17.91-19.68,26.65-5.66,7.34-12,19.51-20.16,23.87l-.07.22-.19-.12c1.39-3.53,5-9.93,5.59-11.26,2.17-4.88,4.33-9.76,6.71-14.55,5.38-10.78,11.57-21.21,17.59-31.64,5.75-9.98,11.61-19.9,17.53-29.79,1.79-2.99,14.83-23.84,18.11-19.47l-3.59,14.38Z'/%3E%3C/g%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: center;
  width: 50px;
  height: 50px;
  display: block;
  background-color: #efeae4;
}

.sm_card {
  background: white;
  border-radius: 10px;
  padding: 16px;
  min-height: 100%;
}

.sm_card p {
  margin-bottom: 0;
}

/* About Section */
.about-section-2 {
  background: linear-gradient(135deg, #f7f5f2 0%, #efeae4 40%, #e6dfd7 100%);
  color: var(--text);
  padding: 80px 0;
}

.about-section-2 h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--secondary20);
}

.about-section-2 .about {
  letter-spacing: 1px;
  font-weight: 600;
  margin-bottom: 5px;
  display: block;
  text-transform: uppercase;
}

.about-section-2 p {
  color: var(--text);
  line-height: 28px;
}

.about-section-2 .about-row h3 {
  text-align: left;
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
}

.about-section-2 .subtitle {
  max-width: 80%;
  margin: 0 auto 30px;
}

.about-section-2 .about-content {
  margin-top: 40px;
}

.about-section-2 .about-image {
  max-width: 300px;
}

.about-section {
  background: var(--secondary);
  color: var(--white);
  padding: 40px 0;
}

.about-section .about-text .about-story p {
  color: var(--white);
}

.about-content {
  display: grid;
  grid-template-columns: auto auto;
  gap: 3rem;
  align-items: flex-start;
}

.about-section h3 {
  font-size: 1.5rem;
  margin-bottom: 2rem;
  letter-spacing: 1px;
  color: #ecf0f1;
}

.about-story .wp-block-image {
  border-radius: 16px;
}

.about-story h4 {
  font-size: 1.2rem;
  margin-bottom: 1rem;
  color: #4f5a5d;
}

.about-story p {
  margin-bottom: 15px;
  line-height: 1.7;
  color: var(--gray);
}

.product-categories p {
  margin-bottom: 0.5rem;
  font-weight: 500;
}

.about-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Contact Section */
.contact-section {
  background: white;
  padding: 80px 0;
}

.contact-info {
  max-width: 540px;
}

.contact-info p,
.contact-info address {
  color: var(--gray);
  letter-spacing: .2px;
  line-height: 28px;
}

.contact-info address {
  margin-bottom: 5px;
}

.contact-info a {
  color: var(--gray);
}

.contact-info a:hover {
  color: var(--primary);
}

.contact-image {
  position: relative;
}

.contact-image::before {
  display: block;
  content: '';
  width: 100%;
  height: 100%;
  position: absolute;
  right: 20px;
  top: 20px;
  background: #F8F4EF;
  border-radius: 10px;
  z-index: 0;
}

.contact-image img {
  position: relative;
  z-index: 1;
}

.contact-content {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3rem;
  align-items: center;
}

.contact-info h4 {
  font-size: 18px;
  margin-bottom: 10px;
  color: var(--text);
}

.btn-whatsapp {
  position: relative;
  background-color: var(--white);
  border: 1px solid #25d366;
  color: #25d366;
  padding: 12px 20px 12px 50px;
  border-radius: 5px;
  font-size: 1rem;
  cursor: pointer;
  margin-bottom: 2rem;
  transition: background-color 0.3s;
  border-radius: 30px;
  font-weight: 600;
}

.btn-whatsapp::before {
  content: '';
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 175.216 175.552'%3E%3Cdefs%3E%3ClinearGradient id='b' x1='85.915' x2='86.535' y1='32.567' y2='137.092' gradientUnits='userSpaceOnUse'%3E%3Cstop offset='0' stop-color='%2357d163'/%3E%3Cstop offset='1' stop-color='%2323b33a'/%3E%3C/linearGradient%3E%3Cfilter id='a' width='1.115' height='1.114' x='-.057' y='-.057' color-interpolation-filters='sRGB'%3E%3CfeGaussianBlur stdDeviation='3.531'/%3E%3C/filter%3E%3C/defs%3E%3Cpath fill='%23b3b3b3' d='m54.532 138.45 2.235 1.324c9.387 5.571 20.15 8.518 31.126 8.523h.023c33.707 0 61.139-27.426 61.153-61.135.006-16.335-6.349-31.696-17.895-43.251A60.75 60.75 0 0 0 87.94 25.983c-33.733 0-61.166 27.423-61.178 61.13a60.98 60.98 0 0 0 9.349 32.535l1.455 2.312-6.179 22.558zm-40.811 23.544L24.16 123.88c-6.438-11.154-9.825-23.808-9.821-36.772.017-40.556 33.021-73.55 73.578-73.55 19.681.01 38.154 7.669 52.047 21.572s21.537 32.383 21.53 52.037c-.018 40.553-33.027 73.553-73.578 73.553h-.032c-12.313-.005-24.412-3.094-35.159-8.954zm0 0' filter='url(%23a)'/%3E%3Cpath fill='%23fff' d='m12.966 161.238 10.439-38.114a73.42 73.42 0 0 1-9.821-36.772c.017-40.556 33.021-73.55 73.578-73.55 19.681.01 38.154 7.669 52.047 21.572s21.537 32.383 21.53 52.037c-.018 40.553-33.027 73.553-73.578 73.553h-.032c-12.313-.005-24.412-3.094-35.159-8.954z'/%3E%3Cpath fill='url(%23linearGradient1780)' d='M87.184 25.227c-33.733 0-61.166 27.423-61.178 61.13a60.98 60.98 0 0 0 9.349 32.535l1.455 2.312-6.179 22.559 23.146-6.069 2.235 1.324c9.387 5.571 20.15 8.518 31.126 8.524h.023c33.707 0 61.14-27.426 61.153-61.135a60.75 60.75 0 0 0-17.895-43.251 60.75 60.75 0 0 0-43.235-17.929z'/%3E%3Cpath fill='url(%23b)' d='M87.184 25.227c-33.733 0-61.166 27.423-61.178 61.13a60.98 60.98 0 0 0 9.349 32.535l1.455 2.313-6.179 22.558 23.146-6.069 2.235 1.324c9.387 5.571 20.15 8.517 31.126 8.523h.023c33.707 0 61.14-27.426 61.153-61.135a60.75 60.75 0 0 0-17.895-43.251 60.75 60.75 0 0 0-43.235-17.928z'/%3E%3Cpath fill='%23fff' fill-rule='evenodd' d='M68.772 55.603c-1.378-3.061-2.828-3.123-4.137-3.176l-3.524-.043c-1.226 0-3.218.46-4.902 2.3s-6.435 6.287-6.435 15.332 6.588 17.785 7.506 19.013 12.718 20.381 31.405 27.75c15.529 6.124 18.689 4.906 22.061 4.6s10.877-4.447 12.408-8.74 1.532-7.971 1.073-8.74-1.685-1.226-3.525-2.146-10.877-5.367-12.562-5.981-2.91-.919-4.137.921-4.746 5.979-5.819 7.206-2.144 1.381-3.984.462-7.76-2.861-14.784-9.124c-5.465-4.873-9.154-10.891-10.228-12.73s-.114-2.835.808-3.751c.825-.824 1.838-2.147 2.759-3.22s1.224-1.84 1.836-3.065.307-2.301-.153-3.22-4.032-10.011-5.666-13.647'/%3E%3C/svg%3E");
  background-position: center;
  position: absolute;
  top: 50%;
  left: 20px;
  transform: translateY(-50%);
  background-size: 20px;
  width: 20px;
  height: 20px;
  display: inline-block;
}

.btn-whatsapp:hover {
  background-color: #20ba5a;
  color: var(--white);
}

.business-info h5 {
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: #2c3e50;
}

.business-info p {
  margin-bottom: 0.3rem;
  color: #7f8c8d;
}

.contact-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

/* Video Section */
.video-section {
  padding: 80px 0;
  background-color: var(--secondary20);
  color: var(--white);
}

.video-section .text {
  position: relative;
  background-color: #EFECDF;
  border-radius: 20px 0 0 20px;
  padding: 20px 40px;
  min-height: 100%;
  z-index: 1;
}

.video-section .text h2 {
  font-size: 36px;
  letter-spacing: -.2px;
  color: var(--secondary20);
  font-weight: 500;
}

.video-section .text p {
  color: var(--text);
  line-height: 26px;
  text-align: justify;
}

.video-section .bold {
  font-weight: 600;
  color: var(--secondary20);
}

.video-section .videoContent {
  display: flex;
}


.video-section .videoContent .colLeft,
.video-section .videoContent .colRight {
  width: 50%;
}

.video-section .videoContent .colLeft {
  position: relative;
}

.video-section .videoContent .colLeft::before {
  content: '';
  display: block;
  background-color: #bce7d447;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  bottom: 20px;
  left: -20px;
}

.video-section .videoWrapper {
  position: relative;
  width: 100%;
  height: 100%;
}

.video-section .videoWrapper::before {
  content: '';
  display: block;
  background-color: #bce7d447;
  border-radius: 20px;
  width: 100%;
  height: 100%;
  position: absolute;
  top: 20px;
  left: 20px;
}

.video-section video {
  position: relative;
  border-radius: 0 20px 20px 0;
  height: 100%;
  width: 100%;
  object-fit: cover;
  z-index: 1;
}

.primaryBadge {
  color: var(--primary);
  letter-spacing: .6px;
  font-weight: 600;
  font-size: 12px;
  background: #ffba0110;
  padding: 0 10px;
  height: 24px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  line-height: normal;
  border-radius: 20px;
  width: auto;
  background-repeat: no-repeat;
}

.primaryBadge.leaf {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='20px' height='20px' viewBox='0 0 24 24' fill='none'%3E%3Cpath d='M2.00244 4.70455V9C2.00244 12.3137 4.68873 15 8.00244 15C8.10042 15 8.19784 14.9977 8.29467 14.993C8.55723 15.8766 8.98958 16.6872 9.5539 17.3868L7.22374 19.7156C6.93075 20.0084 6.93061 20.4833 7.22342 20.7763C7.51622 21.0692 7.99109 21.0694 8.28408 20.7766L10.6146 18.4474C11.8152 19.4154 13.3421 19.9949 15.0044 19.9949C18.8696 19.9949 22.0031 16.8615 22.0031 12.9962V7.74756C22.0031 6.78106 21.2196 5.99756 20.2531 5.99756L15.0044 5.99756C14.4209 5.99756 13.8541 6.06896 13.3123 6.2035C12.3069 4.29847 10.3063 3 8.00244 3H3.70699C2.76559 3 2.00244 3.76315 2.00244 4.70455ZM11.6835 17.3792L15.7801 13.2851C16.0731 12.9923 16.0732 12.5174 15.7804 12.2244C15.4876 11.9314 15.0128 11.9313 14.7198 12.2241L10.6226 16.3188C9.92169 15.3958 9.50569 14.2446 9.50569 12.9962C9.50569 9.9594 11.9675 7.49756 15.0044 7.49756H20.2531C20.3911 7.49756 20.5031 7.60949 20.5031 7.74756V12.9962C20.5031 16.0331 18.0412 18.4949 15.0044 18.4949C13.7567 18.4949 12.6062 18.0794 11.6835 17.3792ZM8.00244 4.5C9.65903 4.5 11.1065 5.39514 11.8877 6.72812C10.7891 7.27543 9.85464 8.10307 9.17802 9.11737L7.28032 7.21967C6.98743 6.92678 6.51255 6.92678 6.21966 7.21967C5.92677 7.51256 5.92677 7.98744 6.21966 8.28033L8.45718 10.5179C8.1654 11.2883 8.00569 12.1236 8.00569 12.9962C8.00569 13.1656 8.01171 13.3336 8.02354 13.5L8.00244 13.5C5.51716 13.5 3.50244 11.4853 3.50244 9L3.50244 4.70455C3.50244 4.59158 3.59402 4.5 3.70699 4.5L8.00244 4.5Z' fill='%23FFBA01'/%3E%3C/svg%3E");
  background-size: 20px;
  background-position-y: center;
  background-position-x: 10px;
  padding-left: 36px;
}

/* Testimonials Section */
.testimonials-section {
  display: none;
}

/* Follow Section */
.follow-section {
  background-color: #f8f9fa;
  padding: 20px 0;
}

.follow-section h3 {
  font-size: 1.8rem;
  text-align: center;
  margin-bottom: 0rem;
  color: #2c3e50;
}

.follow-content {
  display: grid;
  grid-template-columns: 2fr 1fr;
  gap: 3rem;
  align-items: start;
  margin-bottom: 2rem;
}

.follow-info h4 {
  font-size: 1.3rem;
  margin-bottom: 1rem;
  color: #2c3e50;
}

.follow-info p {
  margin-bottom: 1.5rem;
  line-height: 1.6;
  color: #5d6d7e;
}

.follow-image img {
  width: 100%;
  height: auto;
  border-radius: 10px;
}

.social-media {
  display: flex;
  gap: 16px;
  margin-top: 20px;
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  text-decoration: none;
  transition: all 0.3s ease;
}

.social-icon svg {
  width: 32px;
  height: 32px;
}

.social-icon:hover {
  transform: translateY(-3px);
}

/* Contact Us */
.contact-us-page {
  padding: 60px 0;
}

.card.send-message-card {
  padding: 24px 24px 0 24px;
  border-radius: 16px;
  border: 1px solid var(--border);
}

.send-message-card h2 {
  font-weight: 300;
  color: var(--text);
  font-size: 20px;
  margin-bottom: 12px;
}

.send-message-card .subtitle {
  color: var(--gray);
  display: block;
  margin-bottom: 24px;
}

.send-message-card .wpcf7-form {
  padding: 0;
  margin: 0;
  box-shadow: none;
  max-width: 100%;
  display: flex;
  flex-wrap: wrap;
  column-gap: 20px;
}

.send-message-card .wpcf7-form .wpcf7-response-output {
  display: flex;
  width: 100%;
  margin: 0 0 30px;
  border: 0;
  padding: 0;
}

.send-message-card .wpcf7-form.submitting .wpcf7-spinner {
  margin: 10px 0 30px;
}

.send-message-card .wpcf7-form label {
  color: var(--text);
}

.send-message-card .wpcf7-form input,
.send-message-card .wpcf7-form textarea {
  margin-top: 5px;
  padding: 10px 20px;
  border-radius: 10px;
  border-color: var(--border) !important;
}

.send-message-card .wpcf7-form input[type="submit"] {
  margin: 0;
  background-color: var(--secondary);
  border-color: var(--secondary) !important;
  border-radius: 12px;
  font-weight: 500;
}

.send-message-card .wp-block-separator {
  display: none;
}

.send-message-card .wpcf7-not-valid-tip {
  font-size: 12px;
  margin-top: 4px;
}

.send-message-card .wp-block-heading,
.send-message-card .wp-block-heading+p {
  display: none;
}

.send-message-card p {
  display: none;
}

.send-message-card .wp-block-contact-form-7-contact-form-selector p {
  display: block;
  width: 100%;
  margin-bottom: 30px;
}


.send-message-card .wp-block-contact-form-7-contact-form-selector p:last-of-type {
  margin-bottom: 0;
  max-width: 200px;
}

.send-message-card .wpcf7-form .wpcf7-form-control:hover {
  outline-color: var(--secondary) !important;
}

.send-message-card .wp-block-contact-form-7-contact-form-selector p:first-of-type,
.send-message-card .wp-block-contact-form-7-contact-form-selector p:nth-of-type(2) {
  width: calc(50% - 16px);
}

.card.common-question-card {
  background-color: var(--white);
  padding: 24px 24px 5px 24px;
  border-radius: 16px;
}

.card.common-question-card .wp-block-heading {
  font-size: 18px;
  color: var(--text);
  margin-bottom: 5px;
  border-top: 1px solid var(--border);
  padding-top: 20px;
}

.card.common-question-card .wp-block-heading:nth-of-type(1) {
  border-top: 0;
  padding-top: 0;
}

.card.common-question-card p {
  color: var(--gray);
  margin-bottom: 20px;
  line-height: 26px;
}

.card.common-question-card p:empty {
  display: none;
}

.card.common-question-card strong {
  color: var(--secondary20);
}

.card.common-question-card a {
  color: var(--secondary20);
}

.card.common-question-card a:hover {
  text-decoration: underline;
}

.common-question-card .wp-block-contact-form-7-contact-form-selector {
  display: none;
}

.common-question-card .wp-block-separator {
  display: none;
}

.common-question-card .wp-block-separator+p,
.common-question-card .wp-block-separator+p+p {
  display: none;
}

.card.contact-info-card {
  background: #F8F4EF;
  border: 0;
  padding: 24px;
  border-radius: 16px;
  margin-bottom: 20px;
}

.card.contact-info-card h2 {
  font-weight: 300;
  color: var(--text);
  font-size: 20px;
  margin-bottom: 20px;
}

.contact-info-row {
  display: flex;
  align-items: center;
}

.contact-info-row:not(:nth-last-of-type(1)) {
  margin-bottom: 20px;
}

.contact-info-row .icon {
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  background-color: var(--white);
  margin: 0 16px 0 0;
  flex-shrink: 0;
  background-repeat: no-repeat;
  background-position: center;
  background-size: 24px;
}

.contact-info-row .email {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%23377D5E' width='256' height='256'%3E%3Cpath d='M224,48H32a8,8,0,0,0-8,8V192a16,16,0,0,0,16,16H216a16,16,0,0,0,16-16V56A8,8,0,0,0,224,48Zm-96,85.15L52.57,64H203.43ZM98.71,128,40,181.81V74.19Zm11.84,10.85,12,11.05a8,8,0,0,0,10.82,0l12-11.05,58,53.15H52.57ZM157.29,128,216,74.18V181.82Z'/%3E%3C/svg%3E");
}

.contact-info-row .phone {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%23377d5e' width='256' height='256'%3E%3Cpath d='M222.37,158.46l-47.11-21.11-.13-.06a16,16,0,0,0-15.17,1.4,8.12,8.12,0,0,0-.75.56L134.87,160c-15.42-7.49-31.34-23.29-38.83-38.51l20.78-24.71c.2-.25.39-.5.57-.77a16,16,0,0,0,1.32-15.06l0-.12L97.54,33.64a16,16,0,0,0-16.62-9.52A56.26,56.26,0,0,0,32,80c0,79.4,64.6,144,144,144a56.26,56.26,0,0,0,55.88-48.92A16,16,0,0,0,222.37,158.46ZM176,208A128.14,128.14,0,0,1,48,80,40.2,40.2,0,0,1,82.87,40a.61.61,0,0,0,0,.12l21,47L83.2,111.86a6.13,6.13,0,0,0-.57.77,16,16,0,0,0-1,15.7c9.06,18.53,27.73,37.06,46.46,46.11a16,16,0,0,0,15.75-1.14,8.44,8.44,0,0,0,.74-.56L168.89,152l47,21.05h0s.08,0,.11,0A40.21,40.21,0,0,1,176,208Z'/%3E%3C/svg%3E");
}

.contact-info-row .loc {
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 256 256' fill='%23377D5e' width='256' height='256'%3E%3Cpath d='M128,64a40,40,0,1,0,40,40A40,40,0,0,0,128,64Zm0,64a24,24,0,1,1,24-24A24,24,0,0,1,128,128Zm0-112a88.1,88.1,0,0,0-88,88c0,31.4,14.51,64.68,42,96.25a254.19,254.19,0,0,0,41.45,38.3,8,8,0,0,0,9.18,0A254.19,254.19,0,0,0,174,200.25c27.45-31.57,42-64.85,42-96.25A88.1,88.1,0,0,0,128,16Zm0,206c-16.53-13-72-60.75-72-118a72,72,0,0,1,144,0C200,161.23,144.53,209,128,222Z'/%3E%3C/svg%3E");
}

.contact-info-row .title {
  font-size: 16px;
  margin-bottom: 3px;
}

.contact-info-row p,
.contact-info-row a {
  font-size: 16px;
  margin-bottom: 0;
  color: #5A6B7A;
}

.contact-info-row a:hover {
  color: var(--secondary20);
  text-decoration: underline;
}

.card.follow-us-card {
  background-color: var(--white);
  color: var(--text);
  border-radius: 16px;
  border: 1px solid var(--border);
  padding: 24px;
}

.card.follow-us-card h3 {
  font-weight: 300;
  color: var(--text);
  font-size: 20px;
  margin-bottom: 5px;
}

.card.follow-us-card p {
  color: var(--gray);
}

.card.follow-us-card .social-media {
  margin-top: 0;
}

/* Footer */
.footer {
  background-color: var(--text);
  color: var(--white);
  text-align: center;
  padding: 4rem 20px;
  font-size: 14px;
}

.footer-row {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 30px;
}

.footer-row .column h3 {
  text-transform: uppercase;
  font-size: 14px;
  text-align: left;
  color: var(--white);
  font-weight: 600;
  letter-spacing: .5px;
  margin-bottom: 20px;
}

.footer-row .column .text {
  text-align: left;
  margin-bottom: 12px;
}

.footer-row .column .text a {
  transition: .2s all cubic-bezier(0.075, 0.82, 0.165, 1);
}

.footer-row .column .text a:hover {
  color: var(--primary);
}

.footer-row .copyright {
  text-align: left;
  max-width: 175px;
  line-height: 24px;
}

footer ul {
  display: flex;
  flex-direction: column;
  padding: 0;
  margin: 0;
}

footer ul li {
  list-style: none;
  text-align: left;
  margin-bottom: 1rem;
  font-size: 14px;
}

footer a {
  color: var(--white);
}

footer ul li a:active,
footer ul li a:focus,
footer ul li a:hover,
.copyright-box a:hover {
  color: var(--primary20);
  text-decoration: underline;
}

.copyright a:hover {
  color: var(--primary20);
}

/* --- Mobile Hamburger & Side Nav --- */
.mobile-hamburger {
  display: none;
  width: 24px;
  height: 24px;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  z-index: 1101;
  position: absolute;
  top: 18px;
  right: 18px;
  background: transparent;
  border-radius: 8px;
  transition: background 0.2s;
  cursor: pointer;
}

.mobile-hamburger:hover {
  background: #f2f2f2;
}

.hamburger-icon svg {
  width: 100%;
  height: 100%;
  fill: var(--text);
}

.hamburger-icon,
.close-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  transition: opacity 0.2s;
}

.close-icon svg {
  display: block;
  width: 18px;
  height: 18px;
  stroke: var(--text);
}

.mobile-side-nav {
  position: fixed;
  top: 0;
  left: -260px;
  width: 250px;
  height: 100%;
  background: #fff;
  box-shadow: 2px 0 8px rgba(0, 0, 0, 0.15);
  z-index: 1100;
  transition: left 0.3s;
  overflow-y: auto;
  display: block;
}

.mobile-side-nav.open {
  left: 0;
}

.side-nav-content {
  padding: 0.5rem;
}

.side-nav-overlay {
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1099;
}

.side-nav-overlay.active {
  display: block;
}

p:empty {
  margin: 0;
}

.mobile-menu {
  list-style: none;
  padding: 0;
  margin: 0;
}

.mobile-menu li {
  margin: 0 0 10px 0;
}

.mobile-menu li:nth-child(3) {
  margin: 0;
}

.mobile-menu li .sub-menu {
  padding-left: 1.5rem;
}

.mobile-menu li .sub-menu li {
  list-style: none;
}

.mobile-menu a {
  display: block;
  color: #333;
  text-decoration: none;
  font-size: 14px;
  padding: 0.5rem 0.675rem;
  border-radius: 4px;
  font-family: var(--font);
}

.mobile-menu a:hover {
  background: #f8f9fa;
}

.offerspopupwrapper.ays_lil_window {
  width: 900px !important;
  height: 600px !important;
  border: 0 !important;
  max-width: 90% !important;
}

.offerspopupwrapper.ays_lil_window .ays_lil_main {
  height: 100%;
}

.offerspopupwrapper.ays_lil_window .ays_lil_main .ays_lil_content {
  height: 100%;
}

.offerspopupwrapper.ays_lil_window .ays_lil_main::before {
  content: '';
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='881' height='608'%3E%3Cpath d='M0 0 C0.83289551 0.24717773 1.66579102 0.49435547 2.52392578 0.74902344 C22.18281595 6.82909256 40.50085582 16.64328928 58.78125 25.95703125 C96.82330177 45.31300224 131.14890155 56.89358449 173.46459961 43.82568359 C189.26065697 38.68150776 204.49443901 31.88848976 219.77294922 25.39746094 C276.92497113 1.13271001 332.88625408 -7.92898866 392.28857422 14.90332031 C402.87702143 19.18598778 413.36856249 23.99647723 423.46875 29.33203125 C424.12963623 29.67105469 424.79052246 30.01007812 425.47143555 30.359375 C427.15671499 31.2318496 428.82360464 32.1396114 430.48828125 33.05078125 C435.67716536 34.45333836 439.83749561 33.16890735 445 32 C447.28064825 31.57176473 449.56332586 31.15423169 451.84765625 30.74609375 C453.03037109 30.53146484 454.21308594 30.31683594 455.43164062 30.09570312 C456.62982422 29.87849609 457.82800781 29.66128906 459.0625 29.4375 C460.26455078 29.21642578 461.46660156 28.99535156 462.70507812 28.76757812 C499.42689663 22.13641505 534.42905589 28.31419237 569.87890625 38.52734375 C571.38299432 38.95281951 572.88722567 39.3777891 574.39160156 39.80224609 C577.25322473 40.60976942 580.09838047 41.4569864 582.94042969 42.33056641 C593.18705249 45.32851977 601.55066531 44.7994159 612 43 C628.47273743 40.76964579 645.01600296 41.52355737 661.37109375 44.24609375 C662.52955811 44.43449829 662.52955811 44.43449829 663.71142578 44.62670898 C665.2326046 44.87482957 666.75191448 45.13470385 668.26904297 45.40649414 C674.15726814 46.30525014 678.63502819 45.42149561 684.25 43.5625 C685.11496094 43.28736572 685.97992187 43.01223145 686.87109375 42.72875977 C689.59112902 41.84734863 692.29674121 40.9315151 695 40 C695.83080078 39.71479492 696.66160156 39.42958984 697.51757812 39.13574219 C712.27839412 33.9758845 726.36488745 27.36250369 740.47558594 20.66748047 C746.63801919 17.75189311 752.81990182 14.87790772 759 12 C759.11645445 19.51973593 759.20499676 27.03937698 759.25906086 34.55981255 C759.28502497 38.05289708 759.32017526 41.5453594 759.37719727 45.03808594 C759.44251215 49.06450976 759.46628893 53.09029216 759.48828125 57.1171875 C759.51408768 58.35612762 759.5398941 59.59506775 759.56648254 60.87155151 C759.56923085 69.46218148 758.11187495 76.16844724 752.44233704 82.83029175 C744.34743497 90.518 734.3925564 90.43584719 723.8119421 90.37752342 C722.3730162 90.38065623 720.93409266 90.38510251 719.49517438 90.39073652 C715.54178181 90.40240845 711.58860931 90.39543433 707.63522037 90.38540266 C703.33397991 90.37779025 699.03277309 90.38757322 694.7315374 90.39513266 C687.19328647 90.40596996 679.65509999 90.40563766 672.11684608 90.39799118 C660.90732574 90.38665158 649.69785984 90.39244085 638.48833987 90.4016161 C618.46935585 90.41742187 598.45040054 90.41604078 578.43141378 90.40737936 C560.91324253 90.39983702 543.3950818 90.39786058 525.87690926 90.4014473 C524.71554396 90.40167645 523.55417867 90.40190561 522.35762049 90.40214171 C517.64344345 90.4030757 512.92926642 90.4040309 508.21508939 90.405021 C463.98051458 90.41420078 419.74595807 90.40587308 375.51138609 90.38973031 C336.19711543 90.37549224 296.88287392 90.37676784 257.56860352 90.39111328 C213.41417257 90.40717094 169.25975779 90.41355073 125.10532433 90.40427649 C120.39997455 90.40331431 115.69462476 90.4023758 110.98927498 90.4014473 C109.83066961 90.40121006 108.67206425 90.40097283 107.47834963 90.40072841 C89.96893944 90.39731351 72.45954094 90.40131142 54.95013237 90.40888596 C35.04538826 90.41745369 15.14067737 90.41534065 -4.76406259 90.39904372 C-15.90914629 90.39022018 -27.05415807 90.38968098 -38.19923994 90.40098225 C-45.63813736 90.40769465 -53.07697695 90.40354949 -60.51586578 90.39046794 C-64.75794153 90.38331261 -68.99987407 90.38093079 -73.24194545 90.39168589 C-77.10042564 90.40136895 -80.95863544 90.39727126 -84.81709588 90.38214391 C-86.20482518 90.37912037 -87.59257682 90.38112624 -88.9802884 90.38876172 C-100.02858219 90.44524202 -108.85402616 89.05566371 -117 81 C-120.99933312 75.12201761 -122.12913868 69.24154258 -122.11352539 62.19995117 C-122.11344986 61.05914597 -122.11337433 59.91834076 -122.11329651 58.7429657 C-122.10813522 57.52196671 -122.10297394 56.30096771 -122.09765625 55.04296875 C-122.0962413 53.78486893 -122.09482635 52.5267691 -122.09336853 51.23054504 C-122.08872573 47.89821471 -122.07975228 44.56595368 -122.06866455 41.23364258 C-122.05840503 37.82829383 -122.05386121 34.4229379 -122.04882812 31.01757812 C-122.0378083 24.34503302 -122.021077 17.67252051 -122 11 C-118.39054012 9.88663906 -114.77940183 8.77881704 -111.16796875 7.671875 C-110.16052612 7.3610498 -109.1530835 7.05022461 -108.1151123 6.72998047 C-98.17131076 3.68754852 -88.17495219 1.13776368 -78 -1 C-77.25411621 -1.16516113 -76.50823242 -1.33032227 -75.73974609 -1.50048828 C-52.13857905 -6.57324412 -23.19678759 -6.92143016 0 0 Z ' fill='%23FBB217' transform='translate(122,518)'/%3E%3Cpath d='M0 0 C0.83289551 0.24717773 1.66579102 0.49435547 2.52392578 0.74902344 C22.18281595 6.82909256 40.50085582 16.64328928 58.78125 25.95703125 C96.82330177 45.31300224 131.14890155 56.89358449 173.46459961 43.82568359 C189.26065697 38.68150776 204.49443901 31.88848976 219.77294922 25.39746094 C277.79131352 0.76489131 335.00075321 -8.20965279 395 16 C408.58177185 21.78840046 421.86774266 28.26006204 435 35 C431.52843427 36.92960477 428.00479666 37.93068518 424.1875 39 C415.9692259 41.36096554 407.82394351 43.93482452 399.6875 46.5625 C399.03381439 46.77333221 398.38012878 46.98416443 397.70663452 47.2013855 C389.81444788 49.75009733 381.9394479 52.34600481 374.08203125 55 C349.68497618 63.23483935 325.14492678 71.32777233 300 77 C298.91203125 77.25007812 297.8240625 77.50015625 296.703125 77.7578125 C292.81578756 78.5933262 288.91555009 79.31315958 285 80 C284.06269043 80.17063965 283.12538086 80.3412793 282.15966797 80.51708984 C217.3930164 92.03677019 151.68238786 74.26006502 89.54109192 56.81584167 C81.70567501 54.62251522 73.83096421 52.59801098 65.9375 50.625 C64.79569778 50.33902451 64.79569778 50.33902451 63.63082886 50.04727173 C47.17251486 45.93881303 30.62326609 42.3701138 14 39 C12.16793203 38.61866598 10.3358964 38.23717647 8.50390625 37.85546875 C-34.34193382 29.10934627 -78.4307296 25.8204262 -122 23 C-122 19.04 -122 15.08 -122 11 C-107.45500872 6.40754142 -92.93327956 2.13749117 -78 -1 C-77.25411621 -1.16516113 -76.50823242 -1.33032227 -75.73974609 -1.50048828 C-52.13857905 -6.57324412 -23.19678759 -6.92143016 0 0 Z ' fill='%23FEC442' transform='translate(122,518)'/%3E%3Cpath d='M0 0 C-17.51601612 11.67734408 -50.82524343 4.81898726 -69.68359375 1.09375 C-71.45632076 0.73205415 -73.22870647 0.36865181 -75 0 C-62.0707072 -12.9292928 -15.65749212 -5.82722199 0 0 Z ' fill='%23FEC441' transform='translate(794,565)'/%3E%3C/svg%3E");
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100px;
  background-position: bottom;
  background-repeat: no-repeat;
  background-size: cover;
  z-index: 1;
}

.offerspopupwrapper.ays-pb-modal_2 {
  border-radius: 30px !important;
}

.offerspopupwrapper .ays_lil_head {
  position: absolute !important;
}

.offerspopupwrapper .ays_content_box {
  height: 100%;
  padding: 0 !important;
}

.offerspopupwrapper .close {
  display: none;
}

.offerspopupwrapper .popup-content {
  padding: 60px 10px 0;
}

.offerspopupwrapper .popup-content::-webkit-scrollbar {
  width: 5px;
}

.offerspopupwrapper .popup-content::-webkit-scrollbar-track {
  background: transparent;
}

.offerspopupwrapper .popup-content::-webkit-scrollbar-thumb {
  background: transparent;
}

.offerspopupwrapper .popup-content h1 {
  font-family: var(--fontLora);
  font-weight: 600;
  color: var(--secondary20);
  font-size: 32px;
}

.offerspopupwrapper.ays-pb-modal_2 .ays_content_box p {
  font-family: var(--font);
  color: var(--text);
}

.offerspopupwrapper .tnp-subscription div.tnp-field label {
  display: none;
}

.offerspopupwrapper .tnp-subscription form {
  display: flex;
  max-width: 320px;
  margin: 0 auto;
}

.offerspopupwrapper .tnp-subscription input[type=email] {
  background-color: #FFF8EC;
  border-radius: 5px 0 0 5px;
  font-family: var(--font);
  color: var(--text);
  font-size: 14px;
  height: 42px;
}

.offerspopupwrapper .tnp-subscription input[type=email]:focus,
.offerspopupwrapper .tnp-subscription input[type=email]:focus-visible {
  outline: 0;
}

.offerspopupwrapper .close_btn_img {
  max-width: 20px;
}

.tnp-subscription div.tnp-field-email {
  flex: 1;
}

.offerspopupwrapper .tnp-subscription input.tnp-submit {
  font-size: 0;
  background-color: var(--primary);
  width: 70px;
  height: 42px;
  border-radius: 0 5px 5px 0;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' aria-hidden='true' viewBox='0 0 24 24' aria-label='fontSize medium'%3E%3Cpath d='M14.29 5.71c-.39.39-.39 1.02 0 1.41L18.17 11H3c-.55 0-1 .45-1 1s.45 1 1 1h15.18l-3.88 3.88c-.39.39-.39 1.02 0 1.41s1.02.39 1.41 0l5.59-5.59c.39-.39.39-1.02 0-1.41l-5.6-5.58c-.38-.39-1.02-.39-1.41 0' fill='%23FFFFFF'%3E%3C/path%3E%3C/svg%3E");
  background-position: center;
  background-repeat: no-repeat;
  background-size: 24px;
}

.subscribe-popup,
.subscribe-popup .container,
.subscribe-popup .row,
.subscribe-popup .col-md-6 {
  position: relative;
  height: 100%;
}

.subscribe-popup .signup-text {
  font-weight: 600;
  letter-spacing: .1px;
  max-width: 370px;
  margin: 0 auto;
  line-height: normal;
}

.subscribe-popup .signup-text2 {
  font-weight: 500;
  letter-spacing: .1px;
  font-size: 14px;
  line-height: 16px;
  max-width: 370px;
  margin: 0 auto;
}

.subscribe-popup .left-col {
  height: 100%;
  position: relative;
  background-color: #FFF8EC;
  overflow: hidden;
  display: flex;
  align-items: center;
  justify-content: center;
}


.subscribe-popup .left-col::before {
  position: absolute;
  top: 0;
  left: -20px;
  content: '';
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='298' height='240'%3E%3Cpath d='M0 0 C0.33 0 0.66 0 1 0 C1.20462296 7.03865079 0.64144884 13.68375705 -0.5 20.625 C-0.64308594 21.53378906 -0.78617187 22.44257813 -0.93359375 23.37890625 C-1.28225889 25.58711883 -1.63778827 27.79397643 -2 30 C-0.40285156 30.03867187 -0.40285156 30.03867187 1.2265625 30.078125 C11.08719231 30.42617408 19.60459454 31.79871288 29 35 C28.875 36.8125 28.875 36.8125 28 39 C23.45255922 42.07559735 19.27828872 42.43716827 13.9375 42.3125 C13.24333984 42.31572266 12.54917969 42.31894531 11.83398438 42.32226562 C4.78071242 42.24858472 2.00643168 41.00643168 -3 36 C-5.64 45.57 -8.28 55.14 -11 65 C-6.05 65.33 -1.1 65.66 4 66 C10.72830513 69.03247555 15.74228664 73.95314114 20 80 C20 80.99 20 81.98 20 83 C15.1421167 85.42894165 7.97292192 83.52846123 2.9375 82.1796875 C-4.05163567 79.76767601 -8.59937472 77.00085265 -13 71 C-13.21092285 71.57854736 -13.4218457 72.15709473 -13.63916016 72.75317383 C-14.62559019 75.44297531 -15.62339362 78.12831223 -16.625 80.8125 C-16.98456787 81.77994141 -17.34413574 82.74738281 -17.71459961 83.74414062 C-19.6370082 88.80467997 -21.64849209 93.41300872 -24.5625 98 C-28.02075173 103.95272838 -27.57536056 109.44152525 -26 116 C-23.75441315 122.07369358 -20.88835695 126.05582152 -15 129 C-12.2452981 130.05481958 -9.48441103 131.04699607 -6.68359375 131.97265625 C-3.84790981 133.05822376 -1.46047843 134.21581944 1 136 C1 136.99 1 137.98 1 139 C-15.67307692 144.77564103 -15.67307692 144.77564103 -24.1875 141.9375 C-29.85026078 138.03648702 -32.49143016 133.19298541 -33.73046875 126.48828125 C-34.21738817 121.99309761 -34.15185366 117.51342826 -34 113 C-34.63164062 113.83660156 -35.26328125 114.67320313 -35.9140625 115.53515625 C-41.18050879 122.42058784 -46.66491258 129.01850703 -52.5625 135.375 C-53.16980957 136.03508057 -53.77711914 136.69516113 -54.40283203 137.37524414 C-54.97243652 137.98102295 -55.54204102 138.58680176 -56.12890625 139.2109375 C-56.63494385 139.75024902 -57.14098145 140.28956055 -57.66235352 140.84521484 C-59 142 -59 142 -61 142 C-61.26683594 142.59167969 -61.53367188 143.18335938 -61.80859375 143.79296875 C-65.15883154 149.99914695 -71.47637458 154.28158511 -77.08203125 158.32421875 C-79.7546115 160.65932451 -80.75568322 162.6826056 -81.3984375 166.1484375 C-81.37039918 168.81207784 -81.05679205 170.53889391 -80 173 C-72.62568266 178.25664487 -63.68434704 180.44752368 -55 182.5 C-32.51337591 187.81453467 -32.51337591 187.81453467 -27 195 C-26.44781598 199.81188935 -26.47685457 202.00976043 -28.75 206.3125 C-32.49466192 210.78529063 -32.49466192 210.78529063 -35 212 C-38.00867789 211.18075809 -39.60788769 210.51307241 -41.51953125 208.01171875 C-42.37634634 206.47152243 -43.23054769 204.92986895 -44.08203125 203.38671875 C-47.27770931 199.41001957 -51.1641076 196.44640998 -56.30004883 195.63793945 C-58.71907652 195.5805405 -61.08535509 195.65940454 -63.5 195.8125 C-72.44155844 196.25024885 -79.66914099 195.83136512 -87 190 C-90.34607394 186.74436049 -91.72770606 183.95490467 -92.1015625 179.24609375 C-91.78247176 172.1892794 -88.98767534 166.69667906 -85 161 C-86.26263672 161.67482422 -86.26263672 161.67482422 -87.55078125 162.36328125 C-95.23738583 166.37340645 -102.99413191 169.84176687 -111.07617188 172.98999023 C-132.23183773 181.1880324 -132.23183773 181.1880324 -148 197 C-148.8344592 200.6288837 -148.8344592 200.6288837 -148 204 C-144.03849571 209.38499748 -136.9804113 211.41628076 -131.06054688 214.02539062 C-121.91967756 218.19341765 -112.6857387 223.84533075 -107.9375 233.0625 C-108 235 -108 235 -109.4375 237.75 C-112.28248922 240.24803932 -114.18505109 240.91227558 -117.9921875 240.6875 C-121.26984877 239.56518797 -122.51736758 237.15551914 -124.1875 234.23828125 C-127.34535228 230.33860591 -131.30147693 227.49852808 -136.30078125 226.57495117 C-138.71082593 226.43031852 -141.08603015 226.40068987 -143.5 226.4375 C-150.23228235 226.50774051 -155.30779622 225.84045217 -161 222 C-165.18190447 217.49641057 -166.43814821 214.46870743 -166.33203125 208.4296875 C-164.98148778 198.54688705 -154.33369101 190.73267396 -147 185 C-148.24007812 185.24234375 -149.48015625 185.4846875 -150.7578125 185.734375 C-163.25250583 188.11568831 -175.7534258 189.99011511 -188.39111328 191.42871094 C-198.9881078 192.72514421 -208.65639868 195.20461617 -217.875 200.6875 C-218.44742432 201.02418701 -219.01984863 201.36087402 -219.60961914 201.70776367 C-225.09870916 204.97071858 -230.43480958 208.4765849 -235.74609375 212.01953125 C-242.45240005 216.10128071 -248.10980043 218.05424607 -256 217 C-260.08981115 215.88459696 -264.04497568 214.52220867 -268 213 C-268.33 211.35 -268.66 209.7 -269 208 C-268.46632813 207.85304687 -267.93265625 207.70609375 -267.3828125 207.5546875 C-261.82757577 205.8823498 -257.23678753 203.53440768 -252.359375 200.40234375 C-247.79591463 197.68995588 -244.42749508 196.84321872 -239.07421875 196.82446289 C-227.73359812 196.76609205 -217.66124223 193.98991659 -206.875 190.69140625 C-201.31304279 189.00891419 -195.73583557 187.9025755 -190 187 C-191.05316406 186.82984375 -192.10632813 186.6596875 -193.19140625 186.484375 C-203.86337902 184.71007081 -214.74347321 182.84900573 -224.85546875 178.87890625 C-229.01863792 177.71528754 -232.83169826 177.8599249 -237.125 178 C-246.66392346 178.30820431 -246.66392346 178.30820431 -250 176 C-249.67 174.35 -249.34 172.7 -249 171 C-242.00005643 169.43602128 -235.16034472 168.39870101 -228 168 C-227.29488281 167.93409668 -226.58976562 167.86819336 -225.86328125 167.80029297 C-213.20114841 166.67273527 -202.67335019 168.63635049 -190.75 172.8125 C-167.1426743 180.99884444 -148.69898621 183.02710571 -125 174 C-123.53826637 173.46865812 -122.07607652 172.93856838 -120.61328125 172.41015625 C-117.7137847 171.3287224 -114.84874631 170.20737881 -112 169 C-113.19625 169.061875 -114.3925 169.12375 -115.625 169.1875 C-124.22178956 169.1738543 -133.61332541 168.12010035 -140 162 C-141.51171875 159.89453125 -141.51171875 159.89453125 -142.6875 157.8125 C-144.28177756 154.82956113 -144.28177756 154.82956113 -147 153 C-148.6674606 152.91573906 -150.33825187 152.89274857 -152.0078125 152.90234375 C-152.99394531 152.90556641 -153.98007813 152.90878906 -154.99609375 152.91210938 C-156.54490234 152.92467773 -156.54490234 152.92467773 -158.125 152.9375 C-159.16527344 152.94201172 -160.20554687 152.94652344 -161.27734375 152.95117188 C-163.85161962 152.96298048 -166.42578146 152.97944925 -169 153 C-168.21337891 149.15380859 -168.21337891 149.15380859 -166.29296875 147.76953125 C-165.25076172 147.29580078 -165.25076172 147.29580078 -164.1875 146.8125 C-163.50042969 146.48894531 -162.81335938 146.16539062 -162.10546875 145.83203125 C-154.86513428 142.97082301 -144.58398406 142.10746944 -137.265625 145.12890625 C-135.04463442 146.63713212 -133.025335 148.23883913 -131 150 C-121.47190057 157.6827363 -110.21007065 160.478383 -98.125 160.0625 C-91.4452925 159.33659657 -86.59051415 157.67328168 -81 154 C-79.93394531 153.30777344 -78.86789063 152.61554688 -77.76953125 151.90234375 C-71.13749932 147.44126893 -65.06479374 142.47555732 -59.1875 137.0625 C-58.58260742 136.50691406 -57.97771484 135.95132813 -57.35449219 135.37890625 C-54.7999969 132.96493039 -53.12799707 131.38399122 -52 128 C-52.59425781 128.32613281 -53.18851563 128.65226563 -53.80078125 128.98828125 C-63.79796778 134.25895968 -74.14823475 137.15167507 -85.4921875 137.09765625 C-86.69101563 137.09443359 -87.88984375 137.09121094 -89.125 137.08789062 C-90.3625 137.07951172 -91.6 137.07113281 -92.875 137.0625 C-94.13570312 137.05798828 -95.39640625 137.05347656 -96.6953125 137.04882812 C-99.79692386 137.0370796 -102.89843725 137.02065167 -106 137 C-106 136.01 -106 135.02 -106 134 C-105.23816406 133.68546875 -104.47632813 133.3709375 -103.69140625 133.046875 C-102.65886719 132.61890625 -101.62632812 132.1909375 -100.5625 131.75 C-99.04849609 131.12351563 -99.04849609 131.12351563 -97.50390625 130.484375 C-95.70559108 129.72254695 -93.90753426 128.95364433 -92.16162109 128.07836914 C-84.65119352 124.41121732 -76.59606064 122.79162096 -68.5 120.9375 C-52.88206789 118.17786689 -52.88206789 118.17786689 -39.0625 111.3125 C-36 109 -36 109 -34 109 C-33.59007812 107.90171875 -33.59007812 107.90171875 -33.171875 106.78125 C-32.05957468 104.14139057 -30.78597663 101.91131814 -29.25 99.5 C-23.40412417 89.88995047 -19.28774975 79.73353594 -16 69 C-16.45375 69.680625 -16.9075 70.36125 -17.375 71.0625 C-23.3644316 77.76495917 -30.6557572 82.54709807 -39.6875 83.3125 C-44.90572488 83.1613931 -50.21014135 82.07379987 -55 80 C-56.82421875 77.890625 -56.82421875 77.890625 -58 76 C-57.67 75.34 -57.34 74.68 -57 74 C-54.92991285 73.64171569 -52.84074885 73.39340708 -50.75 73.1875 C-44.03342642 72.42105665 -37.51478552 71.11594947 -30.9375 69.5625 C-30.04579102 69.35713623 -29.15408203 69.15177246 -28.23535156 68.94018555 C-21.25353226 67.32335548 -21.25353226 67.32335548 -15 64 C-13.66879988 61.22184323 -12.7957615 58.92750917 -12 56 C-11.65702881 54.79730469 -11.65702881 54.79730469 -11.30712891 53.5703125 C-10.61092847 51.05399623 -9.95577073 48.53032775 -9.3125 46 C-9.08755859 45.12988281 -8.86261719 44.25976562 -8.63085938 43.36328125 C-8.08336201 41.24318507 -7.54112698 39.12173108 -7 37 C-7.556875 37.54269531 -8.11375 38.08539063 -8.6875 38.64453125 C-16.86612404 46.31199129 -23.7402992 48.93267742 -35 49 C-36.67534553 48.71345814 -38.34645152 48.39327639 -40 48 C-39.71386719 46.12939453 -39.71386719 46.12939453 -39 44 C-36.41805645 42.4378652 -33.97231155 41.13550693 -31.25 39.875 C-30.53328125 39.52824219 -29.8165625 39.18148437 -29.078125 38.82421875 C-23.37189665 36.08648787 -17.85835947 33.86685613 -11.6875 32.375 C-10.61886719 32.11460938 -9.55023438 31.85421875 -8.44921875 31.5859375 C-7.23685547 31.29589844 -7.23685547 31.29589844 -6 31 C-3.44467589 20.74245782 -1.65124024 10.43443301 0 0 Z M2 36 C5.63776751 39.63776751 9.72576147 39.18292409 14.5625 39.1875 C15.24763672 39.19974609 15.93277344 39.21199219 16.63867188 39.22460938 C18.42734112 39.22987533 20.21548848 39.12200021 22 39 C22.66 38.34 23.32 37.68 24 37 C16.9782617 33.59552082 9.49274484 35.15574706 2 36 Z M-27.1875 41.5 C-27.84169922 41.83386719 -28.49589844 42.16773438 -29.16992188 42.51171875 C-30.7827064 43.33576924 -32.39172559 44.16718155 -34 45 C-34 45.33 -34 45.66 -34 46 C-26.87391001 45.70245971 -21.3327492 44.28874656 -15 41 C-16.32 40.67 -17.64 40.34 -19 40 C-18.34 39.34 -17.68 38.68 -17 38 C-20.97301335 38 -23.74642751 39.71216093 -27.1875 41.5 Z M-7 68 C-5.515 68.99 -5.515 68.99 -4 70 C-2.76779826 70.87072072 -1.53869541 71.74584102 -0.3125 72.625 C0.31011719 73.07101563 0.93273437 73.51703125 1.57421875 73.9765625 C2.04472656 74.31429687 2.51523437 74.65203125 3 75 C0.0280615 73.87548273 -2.33440687 72.77706209 -5 71 C-5.99 71.33 -6.98 71.66 -8 72 C-2.33182707 77.51901048 4.14213917 80.15511517 12.125 80.1875 C13.548125 80.0946875 13.548125 80.0946875 15 80 C10.74575685 74.62939517 6.69399835 70.23133278 0 68 C-2.33299825 67.96045766 -4.66708189 67.95598268 -7 68 Z M-43.3125 75 C-44.14845703 75.19078125 -44.98441406 75.3815625 -45.84570312 75.578125 C-47.89824009 76.04727631 -49.94927555 76.52298829 -52 77 C-46.33573231 79.92733162 -41.30886755 80.31027217 -35 80 C-34.34 79.34 -33.68 78.68 -33 78 C-34.98 78 -36.96 78 -39 78 C-35.7 76.68 -32.4 75.36 -29 74 C-29 73.67 -29 73.34 -29 73 C-33.96613399 72.67634157 -38.5151387 73.87922735 -43.3125 75 Z M-30 108 C-29 110 -29 110 -29 110 Z M-31 110 C-30 113 -30 113 -30 113 Z M-32 114 C-31 116 -31 116 -31 116 Z M-30 116 C-32.14818059 122.80257187 -28.93582279 128.15610816 -25.91015625 134.1640625 C-24.09232776 137.69330684 -24.09232776 137.69330684 -21 140 C-15.00168999 140.53511894 -9.74748025 139.67199426 -4 138 C-6.60922454 134.78935846 -9.51637845 133.97223555 -13.375 132.6875 C-22.43078929 129.3104243 -25.02323679 124.54267652 -29 116 C-29.33 116 -29.66 116 -30 116 Z M-66.96484375 123.00390625 C-68.40428345 123.36911377 -68.40428345 123.36911377 -69.87280273 123.74169922 C-70.88415283 124.01256348 -71.89550293 124.28342773 -72.9375 124.5625 C-73.96625244 124.83336426 -74.99500488 125.10422852 -76.05493164 125.38330078 C-83.81671169 127.50353827 -90.90576509 130.16012621 -98 134 C-98 134.33 -98 134.66 -98 135 C-81.97950205 135.95486412 -65.83418005 133.43547564 -52 125 C-56.03811494 123.65396169 -58.67386443 125.0418715 -62.5 126.4375 C-69.63693634 129 -69.63693634 129 -73 129 C-68.05 127.02 -63.1 125.04 -58 123 C-61.97678375 122.00580406 -63.17648334 122.04164212 -66.96484375 123.00390625 Z M-160 149 C-159.04738281 149.01417969 -158.09476562 149.02835938 -157.11328125 149.04296875 C-146.80474152 149.43496872 -146.80474152 149.43496872 -143.0625 152.0625 C-142.0415625 153.5165625 -142.0415625 153.5165625 -141 155 C-137.37296802 159.98239657 -134.81170579 163.2731079 -128.5625 164.5 C-127.0455514 164.69894408 -125.52500735 164.87726299 -124 165 C-126.21016098 162.78983902 -128.60343586 161.52452308 -131.3203125 160.01953125 C-133.16569004 158.89943 -134.51881203 157.55914523 -136 156 C-136.66 156 -137.32 156 -138 156 C-138 155.34 -138 154.68 -138 154 C-136.90945312 154.70576172 -136.90945312 154.70576172 -135.796875 155.42578125 C-126.73888774 161.03476567 -117.80156159 164.73647011 -107 164 C-107 163.67 -107 163.34 -107 163 C-108.05058594 162.78085938 -109.10117188 162.56171875 -110.18359375 162.3359375 C-119.64046181 160.24643287 -126.54675358 157.65908432 -134.01171875 151.28125 C-140.93625195 145.8542591 -152.16053535 144.10280294 -160 149 Z M-85 169 C-86.19754817 172.59264452 -86.33094958 175.22717474 -86 179 C-83.1588217 182.5952351 -80.38535001 183.85194104 -76.0625 185.1875 C-75.04285156 185.51105469 -74.02320313 185.83460938 -72.97265625 186.16796875 C-70.32403088 186.90930542 -67.70443852 187.50692557 -65 188 C-73.93997139 187.61013659 -80.46959548 187.02026968 -88 182 C-87.04996458 185.42012751 -86.13625109 186.88645743 -83.375 189.1875 C-76.39638316 192.93527571 -70.25897731 193.15055225 -62.5625 192.8125 C-51.0286042 192.61073443 -51.0286042 192.61073443 -45.79296875 196.2265625 C-42.8548025 199.13272258 -40.59705486 202.39572319 -38.41015625 205.890625 C-37.17112005 208.12070095 -37.17112005 208.12070095 -35 209 C-31.60582235 205.87378374 -29.3937282 203.43458973 -28 199 C-35.56391065 188.55124901 -49.66413447 186.5108183 -61.53369141 183.62353516 C-78.71916756 179.32652247 -78.71916756 179.32652247 -82.27856445 174.13525391 C-83.125 172.1875 -83.125 172.1875 -84 169 C-84.33 169 -84.66 169 -85 169 Z M-232.63916016 171.23583984 C-237.44833327 171.69398697 -242.22300415 172.2818476 -247 173 C-243.25351739 175.49765507 -240.60500434 175.02562 -236.3125 174.8125 C-229.24905407 174.62112771 -223.60909954 175.70920364 -216.98754883 178.0703125 C-209.80373865 180.57556452 -202.54556825 181.32772198 -195 182 C-197.69330122 180.20446585 -199.1460601 179.57303539 -202.1875 178.875 C-203.445625 178.58625 -204.70375 178.2975 -206 178 C-192.48412797 179.8072432 -192.48412797 179.8072432 -187.0625 181.125 C-183.27611791 182.03259721 -179.88582587 182.16535429 -176 182 C-194.22775539 172.48729784 -212.42261545 169.429255 -232.63916016 171.23583984 Z M-89 173 C-89.67673447 176.40320934 -89.67673447 176.40320934 -90 180 C-89.34 180.66 -88.68 181.32 -88 182 C-88 179.03 -88 176.06 -88 173 C-88.33 173 -88.66 173 -89 173 Z M-147 188 C-147.67095703 188.68835938 -147.67095703 188.68835938 -148.35546875 189.390625 C-153.56867779 194.68164313 -153.56867779 194.68164313 -156.625 196.9375 C-159.95617033 199.83035844 -162.25217258 202.93954502 -164 207 C-164.29047277 212.51898258 -162.28868265 215.48475925 -158.86328125 219.51953125 C-154.40304341 223.06340995 -149.57217225 223.17555406 -144.12182617 223.22509766 C-130.62717341 223.35968792 -130.62717341 223.35968792 -125.4921875 228.234375 C-123.42441043 230.6810641 -121.39122692 233.15357329 -119.38671875 235.65234375 C-117.97103097 237.28930732 -117.97103097 237.28930732 -115.125 237.4375 C-114.42375 237.293125 -113.7225 237.14875 -113 237 C-112.34 235.68 -111.68 234.36 -111 233 C-118.72182588 223.01882507 -130.05286799 217.64431867 -141.40136719 212.65087891 C-147.66177531 209.86765848 -147.66177531 209.86765848 -150 207 C-150.6875 203.3125 -150.6875 203.3125 -151 200 C-152.92554739 201.60971687 -153.90391154 202.51390545 -154.3984375 205.015625 C-154.34168533 210.42599835 -153.46493554 214.17283457 -151 219 C-151.66 219 -152.32 219 -153 219 C-154.95613053 213.37612473 -156.05778234 207.93985467 -155 202 C-152.73709029 197.36710284 -149.71121221 193.55518527 -146 190 C-146.33 189.34 -146.66 188.68 -147 188 Z M-253 204 C-253.91136719 204.52722656 -254.82273438 205.05445313 -255.76171875 205.59765625 C-258.19580811 207.03366713 -260.60498899 208.4999931 -263 210 C-259.70899608 213.29100392 -255.96200192 213.238687 -251.4375 213.4375 C-240.65466637 213.33268509 -232.37606455 206.14123604 -224 200 C-232.96368915 196.98137975 -245.08207453 199.28450079 -253 204 Z ' fill='%23FFC442' transform='translate(269,0)'/%3E%3C/svg%3E");
  height: 100px;
  background-repeat: no-repeat;
  width: auto;
  background-size: contain;
  width: 120px;
  opacity: .4;
}

.subscribe-popup .left-col::after {
  position: absolute;
  bottom: 80px;
  right: -25px;
  content: '';
  display: block;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='256' height='358'%3E%3Cpath d='M0 0 C2.28125 -0.2890625 2.28125 -0.2890625 5 0 C14.73948753 10.11090867 18.40348227 26.32599616 18.203125 39.93359375 C17.29668733 53.61731632 8.6103854 66.40799749 0.46875 77.0234375 C-1.0994068 78.72335546 -1.0994068 78.72335546 -1 80 C-0.47664062 79.84144531 0.04671875 79.68289062 0.5859375 79.51953125 C9.80809073 77.53482837 18.75490738 78.52170097 27 83 C27.79277344 83.42410156 28.58554688 83.84820312 29.40234375 84.28515625 C35.68911189 88.04048031 40.42005974 93.13996637 42.71875 100.2109375 C42.8115625 100.80132812 42.904375 101.39171875 43 102 C39.96431523 105.03568477 30.49631594 104.1088671 26.29589844 104.11962891 C20.65513195 103.82571402 15.96147687 101.51295582 11 99 C9.59541211 98.30526122 8.1904425 97.61129384 6.78515625 96.91796875 C4.6405044 95.85474048 2.5024779 94.78376786 0.37841797 93.67993164 C-2.73075705 92.0683595 -5.58413161 90.75669449 -9 90 C-9.73863281 90.88300781 -10.47726563 91.76601562 -11.23828125 92.67578125 C-17.83078726 100.49535954 -24.63689583 107.89779322 -32 115 C-30.8553125 114.84144531 -29.710625 114.68289062 -28.53125 114.51953125 C-8.80276771 112.07947511 10.28788596 115.14317599 26.6953125 126.9375 C28.98837592 128.98959743 30.53630086 130.91474451 32.1875 133.5 C32.92033203 134.62921875 32.92033203 134.62921875 33.66796875 135.78125 C35.96760442 139.61172818 37 141.3931419 37 146 C33.08120232 146.16675735 29.71001214 146.02150521 25.8984375 145.078125 C19.96080267 143.70355433 13.95398239 143.01373714 7.90429688 142.3203125 C1.42789303 141.48033676 -4.05911697 139.680678 -10 137 C-10.8242749 136.63068359 -11.6485498 136.26136719 -12.49780273 135.88085938 C-15.84185542 134.36430587 -19.17428243 132.82391002 -22.5 131.26757812 C-32.91685574 125.92912202 -32.91685574 125.92912202 -44 126 C-46.52749529 127.54066848 -46.52749529 127.54066848 -49.125 129.5 C-49.99382812 130.1290625 -50.86265625 130.758125 -51.7578125 131.40625 C-60.48824603 138.18707225 -68.27699587 146.11902972 -76.0625 153.9375 C-77.02001621 154.89144278 -77.97769785 155.84521953 -78.93554688 156.79882812 C-79.83466797 157.69923828 -80.73378906 158.59964844 -81.66015625 159.52734375 C-82.87650757 160.74538696 -82.87650757 160.74538696 -84.11743164 161.98803711 C-86.04925409 163.86138229 -86.04925409 163.86138229 -87 166 C-85.10416667 165.70833333 -83.20833333 165.41666667 -81.3125 165.125 C-80.10722656 164.94453125 -78.90195313 164.7640625 -77.66015625 164.578125 C-75.47376155 164.23278197 -73.29126895 163.8576768 -71.12109375 163.421875 C-63.56216201 161.98207848 -56.11959983 161.75639269 -48.4375 161.6875 C-47.3969043 161.66993652 -46.35630859 161.65237305 -45.28417969 161.63427734 C-33.92064492 161.64322501 -23.9176956 164.62423482 -13.5625 169.125 C-12.65653076 169.51824463 -11.75056152 169.91148926 -10.81713867 170.31665039 C1.10811688 175.65585697 11.55647714 182.91732823 20 193 C20 193.66 20 194.32 20 195 C-1.6115054 198.59713414 -22.47043261 199.57753679 -44 195 C-45.02843018 194.7831958 -45.02843018 194.7831958 -46.07763672 194.56201172 C-58.93881846 191.74384935 -69.31695109 187.3808123 -78.6484375 177.953125 C-82.67222251 174.61111087 -86.40267918 173.76905975 -91.546875 173.953125 C-94.96537435 174.45374206 -96.66071286 175.15257653 -98.828125 177.859375 C-99.66594758 179.13673867 -100.47165453 180.43554843 -101.25 181.75 C-101.69545166 182.44794678 -102.14090332 183.14589355 -102.59985352 183.86499023 C-104.09600011 186.22614885 -105.54663791 188.61230063 -107 191 C-108.14728969 192.83096448 -109.29710986 194.66034535 -110.44921875 196.48828125 C-115.10671666 203.91286565 -119.69923592 211.36225752 -124 219 C-123.13761719 218.96519531 -122.27523437 218.93039063 -121.38671875 218.89453125 C-93.5659651 218.27759796 -73.24041745 225.67386932 -53 245 C-51.32569403 246.65899219 -49.6586732 248.32537802 -48 250 C-47.29617187 250.69480469 -46.59234375 251.38960937 -45.8671875 252.10546875 C-38.18811717 260.1308501 -36.66858901 268.16424711 -36 279 C-62.2781776 275.81205782 -62.2781776 275.81205782 -72 271 C-72.25144775 271.61786377 -72.50289551 272.23572754 -72.76196289 272.87231445 C-75.38911774 277.3873321 -81.24467565 278.47890144 -86.00830078 279.89306641 C-106.32050441 285.23416081 -123.10297046 286.95881182 -143 279 C-142.505 293.355 -142.505 293.355 -142 308 C-134.54858238 305.13701766 -134.54858238 305.13701766 -127.10400391 302.25634766 C-106.60777511 294.47591938 -86.24459053 295.87889414 -66 304 C-66 304.66 -66 305.32 -66 306 C-66.92039063 306.24234375 -67.84078125 306.4846875 -68.7890625 306.734375 C-70.05492187 307.06953125 -71.32078125 307.4046875 -72.625 307.75 C-73.30651123 307.92901855 -73.98802246 308.10803711 -74.69018555 308.29248047 C-77.97792787 309.1633804 -81.23270484 310.072606 -84.48046875 311.0859375 C-93.92245914 314.0303331 -103.17532189 315.28306403 -113 316 C-114.48113281 316.11021484 -114.48113281 316.11021484 -115.9921875 316.22265625 C-124.45221054 316.51837134 -132.73876419 314.62706637 -141 313 C-140.9278125 314.1653125 -140.855625 315.330625 -140.78125 316.53125 C-139.99929372 330.02940445 -139.88624003 343.48181571 -140 357 C-140.66 357 -141.32 357 -142 357 C-143.93506162 343.35568276 -145.6538112 329.7152883 -147 316 C-147.7748877 315.68361572 -148.54977539 315.36723145 -149.34814453 315.04125977 C-173.31890188 305.19033681 -197.41659744 293.81676358 -213 272 C-213 271.34 -213 270.68 -213 270 C-200.23659652 267.25153848 -186.57046822 274.53350213 -176.08642578 281.29516602 C-175.29478027 281.81651123 -174.50313477 282.33785645 -173.6875 282.875 C-172.93452637 283.36863037 -172.18155273 283.86226074 -171.40576172 284.37084961 C-163.83117383 289.50745607 -158.00952185 295.62724417 -152.5625 302.9375 C-152.11712891 303.52595703 -151.67175781 304.11441406 -151.21289062 304.72070312 C-150.13711181 306.14350737 -149.06782662 307.5712179 -148 309 C-147.85022395 304.8926799 -147.74212817 300.78644433 -147.67041016 296.67700195 C-147.6404767 295.28316518 -147.59971229 293.88951287 -147.54736328 292.49633789 C-147.25733711 284.5717992 -147.28874456 278.24629929 -152.31616211 271.73291016 C-154.75442914 269.22358445 -157.43101282 267.18295431 -160.25 265.12109375 C-174.09619831 254.44142659 -192.29166171 237.80002378 -196 220 C-196.28698757 216.6396365 -196.55790613 213.33543881 -196 210 C-194.515 209.01 -194.515 209.01 -193 208 C-180.57366215 212.17191199 -170.41639388 221.4663569 -163 232 C-162.02933594 233.36318359 -162.02933594 233.36318359 -161.0390625 234.75390625 C-156.90534987 240.88470789 -154.19027864 246.95914719 -152 254 C-151.62746094 255.18207031 -151.25492188 256.36414063 -150.87109375 257.58203125 C-149.89648834 260.71638941 -148.93996713 263.85510998 -148 267 C-147.67 267 -147.34 267 -147 267 C-146.84144531 266.09121094 -146.68289062 265.18242187 -146.51953125 264.24609375 C-144.37466646 252.69226408 -141.42039106 241.64566224 -136.09790039 231.12036133 C-132.71151102 224.39262113 -130.83387801 219.46897801 -133 212 C-133.26683594 211.01128906 -133.53367187 210.02257812 -133.80859375 209.00390625 C-135.97632836 201.79911196 -138.97865952 196.00466389 -143.48828125 190.02734375 C-147.84465732 184.1322 -151.33442377 177.90772527 -154.75 171.4375 C-155.22195801 170.55102783 -155.69391602 169.66455566 -156.18017578 168.7512207 C-159.76918297 161.84440139 -162.57838415 154.91553043 -164.0625 147.25 C-164.58701697 144.71556928 -165.15710314 142.60724214 -166.125 140.1875 C-167 138 -167 138 -167 134 C-159.65837889 134.34960101 -155.06962372 135.91300409 -149 140 C-148.38608398 140.41217773 -147.77216797 140.82435547 -147.13964844 141.24902344 C-138.52634349 147.11819414 -131.38387774 152.27922762 -127 162 C-125.89660156 164.14622846 -124.79241789 166.29205338 -123.6875 168.4375 C-117.12586427 181.64688217 -120.56424818 194.33368359 -124 208 C-123.71914551 207.52804199 -123.43829102 207.05608398 -123.14892578 206.56982422 C-115.78323241 194.23789053 -108.21839172 182.23433305 -99 171.1875 C-93.51265575 164.13419195 -93.66565319 157.1679646 -94.52734375 148.53125 C-95.54768682 140.90819106 -97.12831801 133.38143805 -98.62841797 125.84130859 C-101.21936921 112.68195467 -103.68464028 99.98933246 -103.078125 86.5390625 C-103.00432556 83.19594792 -103.33232134 80.26757892 -104 77 C-100.18183475 76.92045489 -98.03604001 77.18249968 -95 79.578125 C-81.61205815 93.69821992 -77.40996483 112.30533881 -77.51611328 131.17724609 C-77.7196774 138.09720735 -78.99124881 143.74083087 -82 150 C-82.35046598 151.32893284 -82.68631388 152.66190811 -83 154 C-82.47269287 153.45174561 -81.94538574 152.90349121 -81.40209961 152.33862305 C-63.63212693 133.95928397 -63.63212693 133.95928397 -54.9375 127.875 C-54.3405835 127.45581299 -53.74366699 127.03662598 -53.12866211 126.60473633 C-51.97799686 125.79963828 -50.82689048 124.99517025 -49.67529297 124.19140625 C-46.85900101 122.18856382 -44.1517409 120.09044377 -41.5 117.875 C-40.15421875 116.78832031 -40.15421875 116.78832031 -38.78125 115.6796875 C-36.50404544 112.25389291 -36.70173074 110.50375355 -37.37353516 106.54248047 C-38.54775413 101.77696355 -40.21719125 97.21654974 -41.9375 92.625 C-45.84817293 82.15922772 -48.37388936 72.28481077 -48.25 61.0625 C-48.25773438 60.33482422 -48.26546875 59.60714844 -48.2734375 58.85742188 C-48.25964096 55.08751717 -48.10333438 52.19673439 -46 49 C-44.35 49 -42.7 49 -41 49 C-40.72027344 49.52207031 -40.44054687 50.04414062 -40.15234375 50.58203125 C-37.20775236 55.98833891 -34.00295078 61.12868022 -30.55078125 66.2265625 C-27.31656642 72.01067466 -26.66639394 77.66100167 -26.75 84.1875 C-26.75386719 84.92347412 -26.75773438 85.65944824 -26.76171875 86.41772461 C-26.86056146 92.73336179 -27.66697725 98.82286779 -29 105 C-23.10966417 99.45058393 -17.90394441 93.43470837 -13 87 C-12.44441406 86.28070313 -11.88882813 85.56140625 -11.31640625 84.8203125 C-5.44016108 75.99762145 -7.76065779 64.77771382 -8.74462891 54.75927734 C-8.82890137 53.84871582 -8.91317383 52.9381543 -9 52 C-9.11118164 50.82050781 -9.11118164 50.82050781 -9.22460938 49.6171875 C-9.63681003 40.99476076 -6.91113327 33.70188753 -4 25.75 C-3.2787914 23.7586898 -2.56305262 21.76596194 -1.86010742 19.76812744 C-1.22497724 17.96572942 -0.57201881 16.16964241 0.08203125 14.37402344 C1.40996477 9.49316139 1.55041441 4.84504502 0 0 Z M6 11 C5.59265625 12.09828125 5.1853125 13.1965625 4.765625 14.328125 C3.87404233 16.72176223 2.95987788 19.097329 1.98632812 21.45898438 C-4.9695361 38.37003042 -5.80982301 52.88561077 -4 71 C1.23482596 64.49662311 2.40964685 56.70950913 3.5 48.625 C4.52311889 41.58304835 5.84568328 34.79908468 8 28 C7.1491255 40.03896901 7.1491255 40.03896901 6.4375 44.625 C5.81612571 49.4184588 5.92145091 54.17359494 6 59 C12.51821286 51.80748926 14.19166016 43.4815411 14 34 C12.91816133 25.83703545 10.80812243 18.30695573 7 11 C6.67 11 6.34 11 6 11 Z M-44 54 C-45.23649903 61.4189942 -44.50382815 67.65485589 -43 75 C-42.67 75 -42.34 75 -42 75 C-42 72.69 -42 70.38 -42 68 C-41.34 68 -40.68 68 -40 68 C-39.896875 69.11375 -39.79375 70.2275 -39.6875 71.375 C-39.29638378 74.58215301 -38.58935234 77.44018748 -37.5625 80.5 C-35.86525824 85.78122314 -35.26159222 91.05539683 -34.73461914 96.5546875 C-34.36686463 100.11008089 -34.02548857 101.96176714 -32 105 C-29.45777138 84.97994963 -31.32376542 70.80629646 -43 54 C-43.33 54 -43.66 54 -44 54 Z M-42 78 C-41 80 -41 80 -41 80 Z M-3 84 C1.48418393 86.98945595 5.65341189 86.62259378 11 87 C5.06 87.495 5.06 87.495 -1 88 C2.72477869 91.20274531 6.59905632 93.49975797 11 95.625 C11.60328125 95.9240625 12.2065625 96.223125 12.828125 96.53125 C14.54266612 97.37361151 16.27107679 98.18756618 18 99 C18.83917969 99.39703125 19.67835938 99.7940625 20.54296875 100.203125 C23.57055679 101.18504545 26.1372147 101.19478649 29.3125 101.125 C30.38113281 101.10695313 31.44976562 101.08890625 32.55078125 101.0703125 C33.76314453 101.03550781 33.76314453 101.03550781 35 101 C34.27941406 100.42507812 33.55882812 99.85015625 32.81640625 99.2578125 C31.02635902 97.82279544 29.24182968 96.38084704 27.46484375 94.9296875 C26.63082031 94.25164062 25.79679687 93.57359375 24.9375 92.875 C24.10089844 92.19179687 23.26429688 91.50859375 22.40234375 90.8046875 C20.31344114 89.2354631 18.375001 88.06408821 16 87 C21.65284365 87.14494471 24.63048025 89.77512843 28.80859375 93.2109375 C31.43027598 95.351277 34.15344358 97.17528435 37 99 C34.7699934 92.28662936 29.6360904 88.02648351 23.546875 84.6328125 C14.07567559 80.33627502 6.59238317 79.88897864 -3 84 Z M-98 83 C-99.68559358 95.62363021 -97.9828183 106.72441077 -95.54199219 119.13574219 C-94.56398516 124.30420094 -93.80692017 129.50692796 -93.04003906 134.71020508 C-92.30059768 139.56539473 -91.25304106 144.2502247 -90 149 C-89.67 149 -89.34 149 -89 149 C-89 140.75 -89 132.5 -89 124 C-87.68 130.6 -86.36 137.2 -85 144 C-79.22184423 135.33276634 -81.81009912 122.45773604 -83.24609375 112.70703125 C-85.38149015 102.20707695 -89.9870181 90.44401278 -98 83 Z M-35 120 C-35 120.33 -35 120.66 -35 121 C-33.03933594 120.89558594 -33.03933594 120.89558594 -31.0390625 120.7890625 C-18.10496361 120.31913007 -7.94899183 122.11407749 4 127 C4.969375 127.35320312 5.93875 127.70640625 6.9375 128.0703125 C9 129 9 129 10 131 C8.97261719 130.60167969 7.94523437 130.20335937 6.88671875 129.79296875 C-6.73986851 124.55869694 -18.31031671 120.49962838 -33 123 C-30.78551033 125.21448967 -29.5630194 125.6032413 -26.625 126.5625 C-22.76654318 127.89753617 -19.06960832 129.40299342 -15.38671875 131.15625 C-0.91115933 138.04607313 11.89832302 141.11562759 28 142 C25.20375042 139.81302498 22.36692128 138.00847187 19.25 136.3125 C18.45078125 135.87550781 17.6515625 135.43851563 16.828125 134.98828125 C16.22484375 134.66214844 15.6215625 134.33601563 15 134 C18.42441485 134.56774766 21.13636196 135.41594775 24.1875 137.0625 C26.94290161 138.61312033 26.94290161 138.61312033 30 139 C27.48940514 131.46821541 21.09316956 126.87285447 14.25 123.25 C-2.32760551 115.57085879 -17.72977955 113.66852802 -35 120 Z M-162 138 C-159.05156195 150.24735805 -155.10391035 160.986915 -149 172 C-148.66033203 172.62422852 -148.32066406 173.24845703 -147.97070312 173.89160156 C-144.19142215 180.82270132 -140.10789857 187.40361613 -135.4765625 193.80078125 C-133.49807867 196.74757065 -132.22765901 199.67809914 -131 203 C-127.49386774 192.48160321 -137.78224691 175.51041899 -142 166 C-141.34 166 -140.68 166 -140 166 C-139.75121094 166.66773438 -139.50242187 167.33546875 -139.24609375 168.0234375 C-138.0131974 170.96847518 -136.60739425 173.7452757 -135.13085938 176.57226562 C-131.49538918 183.5574195 -128.58098309 190.22683312 -127 198 C-123.33180495 191.75048251 -123.12309765 183.11280527 -124.875 176.1875 C-128.70801386 165.51106871 -134.47842278 154.45401965 -144 148 C-144.58185059 147.58991699 -145.16370117 147.17983398 -145.76318359 146.75732422 C-153.3060753 140.71135875 -153.3060753 140.71135875 -162 138 Z M-71 166 C-70.67 166.66 -70.34 167.32 -70 168 C-67.21776881 168.64455515 -64.5013442 169.17182542 -61.6875 169.625 C-60.91470703 169.7590625 -60.14191406 169.893125 -59.34570312 170.03125 C-55.79642762 170.62940821 -52.6249484 171 -49 171 C-49 171.66 -49 172.32 -49 173 C-49.63164062 172.87882813 -50.26328125 172.75765625 -50.9140625 172.6328125 C-53.93903127 172.0661757 -56.9685328 171.53077393 -60 171 C-61.10730469 170.79761719 -62.21460938 170.59523437 -63.35546875 170.38671875 C-71.87136615 168.97221376 -79.43463489 169.03672186 -88 170 C-88 170.33 -88 170.66 -88 171 C-87.09121094 171.16822266 -87.09121094 171.16822266 -86.1640625 171.33984375 C-80.61142403 172.64684942 -77.14799124 174.41794804 -73 178.375 C-57.69961208 192.96703662 -30.51291548 196.67629022 -9.9921875 196.3046875 C-3.22639338 195.90908634 3.40006136 194.47445438 10 193 C6.92138376 190.94758917 5.01423322 190.41705867 1.44140625 189.66796875 C0.33216797 189.42626953 -0.77707031 189.18457031 -1.91992188 188.93554688 C-4.22895812 188.44450807 -6.53883419 187.95739869 -8.84960938 187.47460938 C-28.68325381 183.12922782 -28.68325381 183.12922782 -34 177 C-32.79988281 177.44730469 -31.59976563 177.89460937 -30.36328125 178.35546875 C-18.74655169 182.59877576 -7.14549784 185.90150036 4.93554688 188.53857422 C6.96638004 188.99248561 8.98342724 189.48676291 11 190 C9.37497512 188.27013481 7.72593243 186.62707234 6 185 C5.44957031 184.48050781 4.89914063 183.96101563 4.33203125 183.42578125 C-16.63251945 165.47410011 -44.69336512 161.3963389 -71 166 Z M-191 213 C-192.3834576 223.14535573 -185.18268816 232.42555177 -179.3671875 240.17578125 C-174.93390251 245.46499751 -169.9867767 250.23762825 -165 255 C-165 250.96618977 -166.59573562 249.50566363 -169 246.3125 C-169.7425 245.31863281 -170.485 244.32476562 -171.25 243.30078125 C-171.8275 242.54152344 -172.405 241.78226563 -173 241 C-167.09563077 245.8836671 -161.96906227 251.1719243 -157 257 C-155.72051053 254.99905745 -155.72051053 254.99905745 -156.64453125 252.671875 C-160.21422052 243.74168245 -165.19025179 236.56970451 -171 229 C-171.75410156 227.948125 -171.75410156 227.948125 -172.5234375 226.875 C-177.06745627 220.92646633 -183.73806113 216.95066529 -190 213 C-190.33 213 -190.66 213 -191 213 Z M-121 221 C-118.27049099 223.16131441 -115.60606883 224.79176521 -112.453125 226.26171875 C-111.60878906 226.65810547 -110.76445313 227.05449219 -109.89453125 227.46289062 C-109.02183594 227.86701172 -108.14914063 228.27113281 -107.25 228.6875 C-106.36183594 229.10322266 -105.47367188 229.51894531 -104.55859375 229.94726562 C-102.37427709 230.96896213 -100.18807292 231.98637935 -98 233 C-98 233.66 -98 234.32 -98 235 C-98.72703125 234.62488281 -99.4540625 234.24976563 -100.203125 233.86328125 C-110.85818733 228.36900809 -110.85818733 228.36900809 -122 224 C-122.99 224.495 -122.99 224.495 -124 225 C-116.51243479 238.15596845 -107.30923053 248.70304789 -93.88232422 255.97265625 C-91.76801081 257.12661615 -89.68355639 258.32672245 -87.59765625 259.53125 C-72.95183524 267.92765192 -58.34984888 275.41780371 -41 275 C-48.21459182 267.063949 -57.72614724 261.85616792 -66.9375 256.5625 C-74.62627094 252.08953782 -82.01571343 247.53061927 -89 242 C-79.96098599 246.23305938 -71.27102538 251.01810419 -62.625 256 C-61.60341797 256.58088379 -60.58183594 257.16176758 -59.52929688 257.76025391 C-53.43259232 261.30737316 -48.09678393 265.11658708 -43 270 C-41.92509319 266.68812497 -41.9946555 266.01496459 -43.25 262.5 C-51.6902837 246.9974381 -70.44835872 231.34369308 -87.0625 225.8125 C-98.14327346 222.68211601 -109.45722851 220.45034421 -121 221 Z M-129 226 C-132.56443862 232.706452 -135.40924265 239.38194042 -137.6875 246.625 C-137.98857666 247.57197754 -138.28965332 248.51895508 -138.59985352 249.49462891 C-141.08132206 257.61916103 -142.40540945 265.53011829 -143 274 C-137.06804731 273.44204405 -132.22151543 271.00091879 -126.875 268.5625 C-114.6325588 263.17014639 -104.37842422 261.61159414 -91 262 C-93.65229526 258.98348109 -96.80971673 257.215667 -100.25 255.1875 C-112.47625032 247.78076085 -120.61477936 238.23177169 -128 226 C-128.33 226 -128.66 226 -129 226 Z M-127 272 C-123.37 272 -119.74 272 -116 272 C-122.6 273.32 -129.2 274.64 -136 276 C-136 276.66 -136 277.32 -136 278 C-133.69099865 278.6814444 -131.37903988 279.34508519 -129.0625 280 C-128.1024707 280.28617187 -128.1024707 280.28617187 -127.12304688 280.578125 C-116.86923856 283.43490742 -107.63783895 281.40623283 -97.375 279.25 C-95.44914062 278.87101562 -95.44914062 278.87101562 -93.484375 278.484375 C-86.9531763 277.13215995 -81.51640061 275.81012655 -76 272 C-81.33749355 266.06390904 -88.04310688 264.44145481 -95.81640625 263.57421875 C-107.05128616 263.18983869 -117.8142011 265.11065083 -127 272 Z M-206 272 C-196.54427193 288.82649746 -175.24951249 301.87732983 -157 307 C-160.66909488 303.27644731 -164.44674879 299.7056624 -168.3125 296.1875 C-168.86228516 295.68541016 -169.41207031 295.18332031 -169.97851562 294.66601562 C-171.31805239 293.44296032 -172.65888992 292.22132992 -174 291 C-172.68 290.67 -171.36 290.34 -170 290 C-180.60606518 281.84148832 -192.88145394 275.02735678 -206 272 Z M-170 291 C-169.01 292.485 -169.01 292.485 -168 294 C-167.34 293.67 -166.68 293.34 -166 293 C-167.32 292.34 -168.64 291.68 -170 291 Z M-130 306 C-130 306.33 -130 306.66 -130 307 C-118.35848674 306.462059 -118.35848674 306.462059 -107 304 C-110.80297674 307.80297674 -118.77336465 307.8720478 -123.875 308.625 C-124.75414063 308.7590625 -125.63328125 308.893125 -126.5390625 309.03125 C-128.69199778 309.35887059 -130.84590622 309.68008508 -133 310 C-132.21971419 312.12485848 -132.21971419 312.12485848 -130.38671875 312.61328125 C-111.64144157 315.65056839 -92.63704783 310.79998057 -75 305 C-92.98436863 295.81235917 -111.89548993 299.58997325 -130 306 Z ' fill='%23F8B217' transform='translate(213,1)'/%3E%3Cpath d='M0 0 C0.7892688 0.27880005 0.7892688 0.27880005 1.59448242 0.56323242 C12.57875003 4.41205527 23.48824698 7.84852267 34.89331055 10.2253418 C40.4648031 11.43524287 44.99046824 13.26176342 50 16 C50 16.33 50 16.66 50 17 C42.95425595 16.27824085 36.15067867 14.82411794 29.25 13.25 C28.1465625 13.01023438 27.043125 12.77046875 25.90625 12.5234375 C16.11104003 10.29307279 6.74918077 7.61258748 -1 1 C-0.67 0.67 -0.34 0.34 0 0 Z ' fill='%23F6C56E' transform='translate(178,177)'/%3E%3Cpath d='M0 0 C1.98 0.495 1.98 0.495 4 1 C4 1.66 4 2.32 4 3 C4.58007812 3.19335938 5.16015625 3.38671875 5.7578125 3.5859375 C10.171875 5.05729167 14.5859375 6.52864583 19 8 C19 8.33 19 8.66 19 9 C11.0351832 8.73885847 5.74953884 6.12541907 -1 2 C-0.67 1.34 -0.34 0.68 0 0 Z ' fill='%23F7BC45' transform='translate(178,177)'/%3E%3Cpath d='M0 0 C8.03571429 0.80357143 8.03571429 0.80357143 12 3 C10.56344146 3.08131463 9.1255517 3.13933559 7.6875 3.1875 C6.48673828 3.23970703 6.48673828 3.23970703 5.26171875 3.29296875 C2.52148416 2.93801608 1.70828921 2.10633718 0 0 Z ' fill='%23F7BD48' transform='translate(198,186)'/%3E%3C/svg%3E");
  height: 100px;
  background-repeat: no-repeat;
  width: auto;
  background-size: contain;
  width: 120px;
  opacity: .4;
}

.subscribe-popup .left-col img {
  max-width: 200px;
}

.subscribe-popup .separator {
  position: relative;
  margin-bottom: 15px;
}

.subscribe-popup .separator::before {
  position: absolute;
  height: 2px;
  width: 100%;
  background-color: var(--primary);
  content: '';
  display: block;
  top: 50%;
  transform: translateY(-50%);
}

.subscribe-popup .separator>img {
  position: relative;
  text-align: center;
  max-width: 70px;
  padding: 0 20px;
  background-color: var(--white);
}

.subscribe-popup .values {
  margin-bottom: 20px;
}

.subscribe-popup .values .col-6:not(:nth-last-of-type(1)) .box {
  border-right: 1px solid var(--border);
}

.subscribe-popup .values .box {
  text-align: center;
}

.subscribe-popup .values .box h2 {
  font-size: 13px;
  text-transform: uppercase;
  font-family: var(--font);
  font-weight: 500;
  letter-spacing: .1px;
  color: var(--text);
}

.subscribe-popup .values .box h2 strong {
  font-weight: 700;
}

.subscribe-popup .values .box>img {
  width: 40px;
  aspect-ratio: 1/1;
  margin-bottom: 10px;
}

.subscribe-popup .container,
.subscribe-popup .container .row,
.subscribe-popup .container .row>div {
  padding: 0;
}

.subscribe-popup .container .row {
  margin: 0;
}

.newsletterpage-wrapper {
  padding: 60px 0;
}

.newsletter-desc {
  color: var(--gray);
  max-width: 500px;
  margin: 0 auto;
  line-height: 26px;
}

.defaultpage-wrapper {
  padding-top: 20px;
}

.page-heading {
  font-size: 30px;
  color: var(--text);
}

.blank-template-wrapper {
  padding-top: 60px;
}

.blank-template-wrapper .page-heading {
  margin-bottom: 30px;
}

.blank-template-wrapper .ewd-ufaq-post-margin-symbol {
  display: none;
}

.blank-template-wrapper .ewd-ufaq-post-margin:hover .ewd-ufaq-faq-title-text h4 {
  color: var(--secondary);
}

.blank-template-wrapper .ewd-ufaq-faq-div {
  padding: 15px 0;
}

.blank-template-wrapper .ewd-ufaq-faq-div .ewd-ufaq-faq-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
  display: block !important;
  padding: 0;
}

.blank-template-wrapper .ewd-ufaq-faq-div:not(:nth-last-of-type(1)) {
  border-bottom: 1px solid var(--border);
}

.blank-template-wrapper .ewd-ufaq-faq-title-text h4 {
  font-family: var(--fontLora);
  font-size: 18px;
  color: #000000;
  line-height: 26px;
}

.blank-template-wrapper .ewd-ufaq-post-active .ewd-ufaq-faq-title-text h4 {
  color: var(--secondary);
}

.blank-template-wrapper .ewd-ufaq-faq-post {
  padding: 10px 5px 5px;
}

.blank-template-wrapper .ewd-ufaq-faq-body p {
  margin-bottom: 0;
  color: var(--gray);
  letter-spacing: .2px;
}

.productlist .woocommerce ul.products.cuFlex {
  margin-bottom: 20px;
}

/* Responsive Design */

@media screen and (max-width: 1600px) {

  .productlist .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .productlist .wc-block-grid__product .wc-block-grid__product-title {
    font-size: 16px;
  }

  .productlist .woocommerce ul.products li.product .price ins .amount,
  .productlist .wc-block-grid__product .price ins .amount {
    font-size: 16px;
  }
}

@media screen and (max-width: 1440px) {
  .video-section {
    padding-left: 20px;
  }

  .small,
  small {
    font-size: 13px !important;
  }
}

@media screen and (max-width: 1200px) {
  .page-heading {
    font-size: 24px;
  }

  .offerspopupwrapper .popup-content h1 {
    font-size: 30px;
  }

  .hero-title {
    font-size: 36px;
  }

  .choose-homemade .row {
    row-gap: 20px;
  }

  .feature-section .row {
    row-gap: 30px;
  }

  .our-collections h2 {
    font-size: 22px;
  }

  .productlist .woocommerce ul.products,
  .productlist .wc-block-grid.has-4-columns .wc-block-grid__products {
    flex-wrap: wrap;
    gap: 16px;
  }

  .productlist .woocommerce ul.products li.product,
  .productlist .wc-block-grid.has-4-columns .wc-block-grid__products .wc-block-grid__product {
    width: calc(100%/3 - 12px)
  }

  .shop-page .productlist .woocommerce ul.products .product {
    width: calc(100%/3 - 12px);
  }

  #home-product-list.productlist .woocommerce ul.products li.product.last {
    display: none;
  }

  .term-description {
    font-size: 16px;
  }

  .shop-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
  .shop-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 18px;
  }

  .checkout-page .wc-block-components-title.wc-block-components-checkout-step__title::before {
    width: 25px;
    height: 25px;
    font-size: 14px;
    top: -1px;
  }

  .checkout-page .wc-block-components-title.wc-block-components-checkout-step__title,
  .checkout-page .wc-block-components-checkout-step__description {
    padding-left: 40px;
  }

  .account-page #customer_login h2,
  .account-page .woocommerce .lost_reset_password>p:nth-child(1)::before {
    font-size: 20px;
  }

  .account-subtitle {
    font-size: 16px;
  }

  .sortby-category {
    background-color: transparent;
    padding: 0;
  }

  .sortby-category .title {
    display: none;
  }

  .sortby-category ul {
    width: 100%;
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    align-content: center;
    justify-content: center;
  }

  .sortby-category ul>li {
    width: auto;
  }

  .sortby-category ul>li>a {
    position: relative;
    width: 100%;
    display: flex;
    flex-direction: column;
    text-align: center;
    padding: 12px;
    background-color: #EEF9F3;
    border-radius: 8px;
    min-height: 100%;
    font-weight: 500;
  }

  .sortby-category ul>li>a::before {
    content: '';
    display: block;
    margin: 0 auto 15px;
    width: 80px;
    height: 80px;
    background-size: contain;
    background-repeat: no-repeat;
    background-position: center;
  }

  .sortby-category ul>li:nth-of-type(1)>a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 1040.77 986.34'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23337e5c; %7D .cls-2 %7B fill: %232f7f5a; %7D .cls-3 %7B fill: %23337e5d; %7D .cls-4 %7B fill: %23307e5a; %7D .cls-5 %7B fill: %23317f5d; %7D .cls-6 %7B fill: %23307e5d; %7D .cls-7 %7B fill: %232d7e5a; %7D .cls-8 %7B fill: %23327e5a; %7D .cls-9 %7B fill: %2332815d; %7D .cls-10 %7B fill: %232d7d58; %7D .cls-11 %7B fill: %23327f5c; %7D .cls-12 %7B fill: %23317f5b; %7D .cls-13 %7B fill: %23327c5b; %7D .cls-14 %7B fill: %23317e5e; %7D .cls-15 %7B fill: %23367e5d; %7D .cls-16 %7B fill: %23347e5a; %7D .cls-17 %7B fill: %23347e5c; %7D .cls-18 %7B fill: %23377f5e; %7D .cls-19 %7B fill: %232d7f5a; %7D .cls-20 %7B fill: %23388160; %7D .cls-21 %7B fill: %23367f5e; %7D .cls-22 %7B fill: %232f7f59; %7D .cls-23 %7B fill: %2335805f; %7D .cls-24 %7B fill: %232d7c58; %7D .cls-25 %7B fill: %23388060; %7D .cls-26 %7B fill: %23327e5c; %7D .cls-27 %7B fill: %23307e5b; %7D .cls-28 %7B fill: %23347d5b; %7D .cls-29 %7B fill: %233d8464; %7D .cls-30 %7B fill: %23347d5c; %7D .cls-31 %7B fill: %232c7d57; %7D .cls-32 %7B fill: %23317d59; %7D .cls-33 %7B fill: %2334805e; %7D .cls-34 %7B fill: %23327d5a; %7D .cls-35 %7B fill: %232e7f5b; %7D .cls-36 %7B fill: %23317c5b; %7D .cls-37 %7B fill: %23fefefe; %7D .cls-38 %7B fill: %23317c59; %7D .cls-39 %7B fill: %2336805f; %7D .cls-40 %7B fill: %23317d5c; %7D .cls-41 %7B fill: %233a7e5f; %7D .cls-42 %7B fill: %23367c5c; %7D .cls-43 %7B fill: %23317d5a; %7D .cls-44 %7B fill: %23357d5b; %7D .cls-45 %7B fill: %23327f5d; %7D .cls-46 %7B fill: %232f7e59; %7D .cls-47 %7B fill: %2333815f; %7D .cls-48 %7B fill: %23347c5b; %7D .cls-49 %7B fill: %232f7e5a; %7D .cls-50 %7B fill: %23377e60; %7D .cls-51 %7B fill: %2334815e; %7D .cls-52 %7B fill: %23397e5e; %7D .cls-53 %7B fill: %2333815e; %7D .cls-54 %7B fill: %23367d5c; %7D .cls-55 %7B fill: %23307c5a; %7D .cls-56 %7B fill: %23307d5b; %7D .cls-57 %7B fill: %23337f5c; %7D %3C/style%3E%3C/defs%3E%3Cg id='OBJECTS'%3E%3Cg id='Generative_Object' data-name='Generative Object'%3E%3Cg%3E%3Cpath class='cls-7' d='M59.16,456.01c-14.26-2.8-23.06-15.53-23.7-29.64-.11-2.42-1.7-4.17-3.95-4.2-1.71-.02-4.04,1.82-4.14,3.99-.74,14.6-10.39,28.06-24.9,30.24-1.85.28-2.68,2.92-2.42,4.4.95,5.4,11.48,3.18,18.9,11.5,5.02,5.62,7.42,12.96,8.39,20.31.33,2.45,2.1,3.75,4.19,3.75,6.33-.02,2.14-9.64,10.49-21.88,3.88-5.69,9.83-9.06,16.55-10.35,2.21-.42,3.67-1.84,3.82-3.87.15-1.85-1.06-3.83-3.23-4.25ZM31.97,477.01c-4.03-7.7-8.96-13.5-17.1-17.26,7.76-3.8,13.39-9.37,16.48-17.77,3.11,7.98,8.56,14,16.75,17.67-7.47,3.47-12.82,8.95-16.13,17.36Z'/%3E%3Cpath class='cls-4' d='M88.29,543.24c-5.88,0-10.65,4.77-10.65,10.65s4.77,10.65,10.65,10.65,10.65-4.76,10.65-10.65-4.77-10.65-10.65-10.65ZM88.24,557.07c-1.82,0-3.3-1.47-3.3-3.29s1.48-3.3,3.3-3.3,3.29,1.48,3.29,3.3-1.47,3.29-3.29,3.29Z'/%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-49' d='M295.21,973.55c-1.9,2.43-4.72,2.54-6.51.9-1.97-1.8-1.58-4.14.15-6.32l70.62-88.5c9.78-12.26,20.05-23.48,31.36-34.21l2.99-2.54c1.82-1.55,3.67-1.79,5.25-.83,1.93,1.17,2.88,4.12,1.02,5.85-11.25,10.47-21.34,21.34-31.07,33.26l-33.35,40.8-40.45,51.59Z'/%3E%3Ccircle class='cls-12' cx='356.52' cy='786.8' r='5.39'/%3E%3Ccircle class='cls-43' cx='318.77' cy='818.92' r='5.43'/%3E%3Ccircle class='cls-8' cx='279.01' cy='837.69' r='5.1'/%3E%3Ccircle class='cls-27' cx='366.55' cy='723.71' r='4.55'/%3E%3Ccircle class='cls-34' cx='332.51' cy='749.4' r='4.42'/%3E%3Ccircle class='cls-36' cx='353.88' cy='833.58' r='4.21'/%3E%3Ccircle class='cls-26' cx='388.95' cy='759.08' r='4.08'/%3E%3Ccircle class='cls-13' cx='297.04' cy='782.93' r='3.96'/%3E%3Ccircle class='cls-17' cx='392.13' cy='807.16' r='3.81'/%3E%3Ccircle class='cls-28' cx='272.85' cy='882.89' r='3.88'/%3E%3Ccircle class='cls-44' cx='313.72' cy='861.43' r='3.84'/%3E%3Ccircle class='cls-15' cx='245.46' cy='862.43' r='3.73'/%3E%3Ccircle class='cls-55' cx='409.59' cy='722.72' r='3.61'/%3E%3Cg%3E%3Cpath class='cls-24' d='M207.52,431.01c1.89.98,2.68,2.62,2.44,4.12-1.13,7.11-16.34-.68-21.35-8.71-4.54-7.29-2.23-16.82,3.8-22.8,8.45-8.38,14.58-17.53,19.33-28.5,5.21-12.03,7.42-24.53,5.01-37.66-.44-2.42.69-4.51,2.95-5.08,1.68-.42,4.47.6,4.78,3.06,1.05,8.28,1.81,16.77.12,25.15-1.94,9.64-5.6,18.56-10.05,27.2s-10.07,14.93-16.61,21.33c-2.71,2.66-3.73,6.28-3.43,9.78s2.31,6.59,5.61,8.3l7.39,3.83Z'/%3E%3Cpath class='cls-24' d='M334.25,326.38c-16.65-8.45-36.13-9.47-53.12-2.69-2.6,1.04-4.71,2.04-6.63-.71-1.05-1.51-.71-4.66,1.8-5.88,9.72-4.74,20.25-6.63,31.34-6.2,20.37.79,39.1,10.3,52.05,25.84,1.37,1.64.64,4.17-.6,5.22-1.56,1.32-3.77,1.28-5.41-.36-5.82-5.86-11.63-11.25-19.43-15.21Z'/%3E%3Cpath class='cls-31' d='M340.49,382.67c2.24.36,2.38,2.81,1.8,4.43-1.46,4.07-6.33,2.05-8.6,3.39-10.32,6.1-22.17,8.35-33.93,5.73s-21.71-9.14-27.89-19.34c-.96-1.59.57-3.52,1.47-4.34,1.19-1.09,3.93-1.5,5.22.12,13.6,17.14,35.49,19.86,53.68,8.48.88-.55,1.66-.83,2.51-.65.59.12,1.05,1.43,1.96,1.57l3.79.61Z'/%3E%3Cpath class='cls-46' d='M249.9,471.19c2.93-.98,5.13-1.04,6.4,1.87,1.06,2.45-.38,4.55-3.06,5.52-10.22,3.69-20.57,3.95-31.45,3.4-15.76-.79-30.72-5.63-42.79-15.93-1.39-1.18-.85-3.27-.29-4.58.5-1.15,2.8-3.1,4.29-1.98,10.78,8.07,22.83,12.9,36.36,14,10.3.84,20.45,1.04,30.55-2.32Z'/%3E%3Cpath class='cls-10' d='M167.52,369.4l-5.9-3.51c-1.13-.67-2.66-.19-3.62-1.1-.87-.83-1.19-2.31-1.19-3.95l-5.09-1.67c-1.45-.48-2.11-1.79-1.84-3.03.53-2.5,4.4-1.09,5.47-2.7.77-1.17-2.41-4.07-.39-7.05.63-.93,2.13-1.75,3.9-1.53,1.42.17,2.59,1.56,3.19,3.37,3.02,8.99,10.97,14.72,20.55,15.13,13.69.59,18.5-8.19,22.45-3.26,1.45,1.82.88,4.55-1.55,5.67l-8.77,4.04c-8.58,3.95-18.38,3.64-27.22-.4Z'/%3E%3Cpath class='cls-2' d='M223.39,494.91c2.18-.61,4.01.76,4.54,2.29s-.27,3.92-2.39,4.71c-18.22,6.72-38.37-4.8-36.17-10.66.54-1.43,3.09-3.88,4.83-2.46,8.18,6.68,18.57,9.09,29.2,6.11Z'/%3E%3Ccircle class='cls-12' cx='349.51' cy='449' r='4.24'/%3E%3Ccircle class='cls-22' cx='366.3' cy='416.77' r='4.19'/%3E%3Ccircle class='cls-32' cx='312.31' cy='436.38' r='3.88'/%3E%3Ccircle class='cls-55' cx='375.14' cy='448.4' r='3.74'/%3E%3Ccircle class='cls-48' cx='291.71' cy='460.92' r='3.54'/%3E%3Ccircle class='cls-54' cx='312.07' cy='469.51' r='3.35'/%3E%3Ccircle class='cls-16' cx='335.79' cy='424.66' r='3.38'/%3E%3Ccircle class='cls-38' cx='329.46' cy='455.23' r='3.15'/%3E%3C/g%3E%3C/g%3E%3Cpath class='cls-35' d='M502.73,567.59c-6.78-1.27-12.12-5.31-14.51-11.81l-2.09-8.29c-.56-2.22-2.1-3.73-4.12-3.52-1.88.19-3.29,1.45-3.58,3.61-1.43,10.48-6.82,18.58-17.23,20.67-2.1.42-3.01,1.8-3.05,3.61-.03,1.83,1.13,3.1,3.15,3.51,9.71,2.01,16.34,10.03,16.86,19.93.14,2.67,1.92,4.66,4.36,4.48,2.17-.15,3.81-1.89,4-4.7.67-9.91,6.99-17.11,16.23-19.59,2.13-.58,3.81-2.11,3.62-4.25-.14-1.63-1.68-3.28-3.64-3.65ZM482.29,583.73c-2.53-5.51-5.65-9.33-10.85-12.14,5.04-2.72,8.3-6.48,10.65-11.34,2.62,5.09,5.68,8.78,10.91,11.57-4.98,2.72-8.67,6.13-10.71,11.91Z'/%3E%3Cpath class='cls-2' d='M510.14,494.91c-5.77,0-10.45,4.68-10.45,10.45s4.68,10.45,10.45,10.45,10.46-4.68,10.46-10.45-4.68-10.45-10.46-10.45ZM510.32,508.59c-1.78,0-3.23-1.44-3.23-3.23s1.45-3.23,3.23-3.23,3.24,1.44,3.24,3.23-1.45,3.23-3.24,3.23Z'/%3E%3Cg%3E%3Cpath class='cls-19' d='M594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,567.1c2.29,0,4.14-1.86,4.14-4.14s-1.85-4.14-4.14-4.14-4.13,1.85-4.13,4.14,1.85,4.14,4.13,4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM748.68,523.88c0-2.39-1.94-4.33-4.33-4.33s-4.33,1.94-4.33,4.33,1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM719.35,497.07c-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84-1.81-1.7-4.72-1.14-5.88.57ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM691.53,519.71c0-2.3-1.87-4.17-4.17-4.17s-4.18,1.87-4.18,4.17,1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.3,566.63c2-1.45,1.43-4.19.57-5.45-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM1036.83,504.11l-27.58,1.31c-16.32,1.87-31.71,6.78-45.45,15.77-21.72,14.21-33.84,35.39-39.43,60.49l-4.55,27.23c-.58,3.51-1.7,6.34-3.98,8.97l-12.28,14.12-.91,1.16c-.26.33-.97.03-.4-.71,8.89-25.61,12.87-52.78,12.64-79.9l-3.19-44.04,1.23-6.21.29-1.07,4.73-19.7c.48-2.04,1.17-3.41,3.04-4.4,4.46-2.34,8.83-4.47,13.72-5.91,9.16-2.69,17.41-6.59,25.28-12.08,23.7-16.53,36.16-40.58,43.27-68.26,3.72-14.45,6.14-28.74,7.8-43.56.21-1.93-.24-3.75-1.49-4.89-1.13-1.05-2.84-1.17-4.7-.81-27.77,5.4-54.63,15.01-73.46,36.87-13.5,15.68-21.28,34.93-22.96,55.51-1.09,13.27.28,25.78,1.89,38.89l-2.07,12.94c.13,1.05-.63,1.38-1.09.54l-.16-1.27-.17-1.11-.19-1.04-.55-2.59-9.14-47.15c-2.89-14.91-5.38-29.74-5.08-44.36l8.72-14.22c15.33-25.03,19.5-55.2,11.68-83.58-2.91-10.55-6.58-20.26-12.23-29.46l-11.9-19.35-2.11-3.41c-.99-1.59-2.26-2.5-3.94-2.48-1.62.03-2.73,1.18-3.77,2.72-21.23,31.56-33.06,68.03-22.1,105.59,3.23,11.08,8.13,21.18,15.02,30.27l10.02,13.22c1.79,2.35,1.85,4,2.27,6.96l7.62,54.29c.25,1.77,1.21,2.98-.12,2.41-.19-.08-.32-1.07-.46-1.19l-.73-.63-9.03-14.55-4.87-19.21c-8.83-34.79-30.2-61.74-63.63-75.51-13.52-5.57-27.49-8.84-42.03-10.28-1.82-.18-3.11,1.58-3.77,2.5-.69.97-.51,2.83-.22,4.18,4.4,20.63,11.59,42.09,22.81,59.94,13.86,22.06,36.41,36.84,62.24,40.66l15.95,3.05c3.24.62,6.18,2.06,8.6,4.3l20.79,30.08,8.59,50.42c.3.88-.57,1.31-.79.97l-2.23-7.35-.34-.89-.35-.87-.36-.86-.35-.88-.34-.89-.37-.85-.39-.83-.4-.82-.4-.83-.41-.81-.41-.84c-4.07-8.38-9.85-15.57-16.93-21.62l-.75-.52-.66-.56-.66-.56-.69-.53-.73-.5-.72-.51-.73-.5-.73-.5-.74-.49-.73-.49-.75-.47-.76-.46-.78-.45-.77-.46-.76-.47-.8-.47c-13.22-6.99-27.75-10.61-42.76-10.97l-1.09.16-.86.31-.73.5-.62.62-.51.74-.36.9c-.09.23-.3.7-.24,1.05,1.95,10.3,5.21,20.06,9.59,29.55,8.49,18.38,21.14,32.58,40.55,39.12l.88.37,15.83,5.11c11.22,5.32,12.84,6.4,16.99,19.93-.75,27.39-7.44,54.33-18.4,79.49-.28.64-.7,1.01-.99,1.35-.3.36-.68.04-1.14-.44l-2.14-2.21-6.24-5.35c-1.5-2.4-1.15-6.24-.74-8.69l.17-1.03c6.56-8,6.26-19.34-1.29-26.42-1.55-1.46-1.77-3.11-1.79-5.23l-.08-11.43c-1.38-13.03-12.4-17.21-16.68-22.45-9.51-11.65-25.85-12.05-26.61-13.86-2.81-6.7-6.57-12.45-12.03-17.39-9.83-8.9-22.3-14.21-35.64-14.98-1.7-.1-1.8-.78-2.31-2.19-4.41-12.12-12.6-19.99-23.21-27.01-10.56-6.98-17.95-14.73-18.76-27.84-.17-2.74-3.13-4.32-5.65-3.39-12.33,4.55-21.85,13.45-28.49,24.68-4.47,7.56-11.15,11.78-19.8,12.82-23.52,2.83-42.52,14.51-51.2,36.87-2.92,1.8-5.97,2.38-9.2,3.15-8.33,1.98-16.24,4.84-22.88,10.19-5.09,3.81-8.79,8.51-11.54,14.1-6.57,2.75-12.61,5.41-18.21,9.47-5.94,4.47-11.07,10.64-11.2,18.18l-.27,15.71c-4.59,3.51-7.79,8.54-8.28,14.32-.44,5.23,1.97,9.03,4.55,13.4,1.1,1.86,1.15,6.68.24,8.64-1.91,3.35-5.82,4.75-8.33,7.65-4.31,4.99-7.63,11.15-7.63,18.26l-.08,203.81c0,11.14,5.63,14.63,2.79,16.84-6.59,5.12-12.33,11.21-15.25,19.06-.3.82-.92.84-1.68.73-6.75-1.03-11.76.76-11.46-1.27l.28-1.86,3.55-22.28c3.36-21.08,5.18-41.71,5.54-63.18.47-26.96-2.14-53.22-8.37-79.38-9.44-39.64-27.48-68.49-53.67-98.92-9.51-11.06-18.42-21.91-26.67-34-24.45-35.78-31.63-82.94-21.33-124.9l12.01-6.44c19.42-10.4,41.54-30.94,52.6-50.32,4.81-3.33,8.71-6.95,12.45-11.51,30.05-33.54,44.62-79.72,43.91-124.53-.69-43.86-18.07-84.33-51.65-112.8l-2.2-14.78c-.15-.97,5.85-2.78,11.11-6.53,39.73-28.28,42.34-88.03,9.88-124.86C485.26,9.76,460.61-.34,435.08,0c-36.42.5-71.88,18.92-85.24,53.73-33.82-5.41-68.95,0-93.06,25.11-7.96,8.28-13.78,17.69-17.48,28.67-16.34,6.12-31.56,14.2-45.44,24.84-25.88,19.84-43.45,48.59-51.84,79.77-22.45,27.82-23.9,63.66-10.18,95.8,3.28,7.69,7.21,14.42,11.44,21.52l-8.21,43.81c-4.79,25.62-5.59,50.9-.45,76.54,5.32,26.51,14.49,51.72,27.44,75.37,3.67,6.71,7.64,12.5,12.68,18.06,14.29,15.76,31.01,19.21,52.03,18.65.62-.54,1.4.06.88.59l-27.73,19.05-22.37,16.85c-13.64,11.74-23.72,26.08-29.92,43.02-3.15,8.63-4.99,17.11-6.98,26.12l-8.45,38.21-35.24,123.34-40.09,140.04c-.74,2.56.74,4.16,2.43,4.98,1.28.62,4.61.49,5.27-1.83l36.51-127.4,37.61-131.41,8.92-38.98,6.88-27.47c5.76-17.86,16.17-32.81,30.74-44.65l31.46-22.48c19.96-13.37,38.68-27.76,55.72-44.65l10.36-11.17,15.89-15.93c4.38-4.39,12.77-7.78,14.94-5.09,1.88,2.31,1.13,5.6-.44,7.91l-17.39,25.55c-11.92,17.52-25.45,33.34-40.76,47.97-1.77,1.69-3.77,2.81-4.74,5.14-.86,2.07.55,4.41,2,5.09,2.49,1.18,3.55-.07,5.21-1.63,17.56-16.55,32.54-34.78,46.59-54.44l26.57-40.2,12.1-17.39c2.22-3.18,7.27-6.27,11.08-4.77,2.61,1.3,2.08,6.18,1.08,8.34l-10.08,21.87c-8.99,17.43-18.37,34.13-28.87,50.76-9.76,15.44-21.13,29.14-33.43,42.45-1.4,1.51-.71,4.02.59,5.13,1.26,1.07,3.18,1.06,4.84-.23,12.26-9.47,36.06-43.79,44.42-59.12l25.04-45.93c1.11-2.04,3.69-3.45,5.68-2.52,2.48,1.16,2.84,4.09,2.27,6.64-2.59,11.55-7.12,22-11.95,32.82-11.8,26.42-25.2,49.72-44.26,71.51-1.36,1.56-1.3,3.56-.35,4.99.7,1.06,3.32,2.82,4.76,1.27,15.36-16.69,27.79-35.43,37.98-55.67l6.13-10.97c.82-1.48,3.44-1.63,4.49-.94,4.22,2.77-4.94,20.66-8.59,28.59-5.93,12.91-13.23,24.39-22.16,35.42-8.26,10.19-16.8,19.26-27.08,27.51l-40.1,28.46-25.41,17.5c-11.99,9.05-20.96,20.53-25.97,34.72l-8.89,29.75-12.01,58.42-8.78,55.53-2.77,23.62-30.76,49.43c-1.43,2.29-.81,4.79,1.44,6.04,1.62.9,4.31.63,5.6-1.46l33.56-54.56,29.71-51.79,20.18-38.67,28.76-57.64c7.28-14.58,15.58-27.9,25.05-41.15,10.96-15.34,24.57-28.11,41-37.38,27.48-15.49,57.55-16.32,86.34-3.85,2.23.96,4.32.55,5.43-1.56.77-1.47.55-4.38-1.62-5.37-37.16-16.86-76.21-11.57-108.61,13.14-12.6,9.61-22.91,21.12-32.01,34.15-9.08,13.01-16.84,26.19-23.96,40.39l-22.1,44.09c-14.74,29.38-29.73,58.16-46.33,86.48-.37.63-.84.44-.94-.05l.34-1.59,3.45-23,9.96-59.22c4.14-20.68,8.53-40.66,15.41-60.5,4.2-12.08,11.42-21.78,21.27-29.7l24.76-17.52,36.18-25.1c29.01-21.65,51.11-50.89,64.19-84.68,2.21-5.72,4.57-11.1,4.35-17.25-.19-5.38-3.96-9.75-9.64-9.47l9.9-25.69c1.75-4.53,2.36-9.15,1.75-13.92-.78-6.13-5.21-9.91-11.68-9.7,1.17-4.24,1.95-7.89,1.51-11.9-.58-5.33-5.03-9.39-10.4-8.91-4.81.44-8.98,2.54-12.89,5.19-2.13-4.02-5.96-6.4-10.5-5.93-6.34.66-11.57,3.94-15.88,8.58-4.94,5.32-8.93,11.27-12.13,17.85l-1.18,4.3-8.61,6.17-17.59,17.93c-9.22,9.4-18.23,18.4-28.39,26.7-2.44,1.99-4.86,2.76-7.93,3.21-22.05,3.2-44.28,1.41-58.62-16.73-4.5-5.69-8.04-11.48-11.47-18.02-17.12-32.58-28.82-72.48-28.14-109.57.29-15.49,3.39-30.02,6.24-45.11l5.85-30.92,3.34-32.01c1.44,2.3,3.88,3.16,6.21,1.69,6.4-4.03,13.86-4.87,21.4-3.56,10.55,1.83,19.54,7.63,26.94,15.3,1.68,1.74,3.82,2.33,5.73.9,1.13-.86,2.34-3.54.99-5.29-10.69-14-29.27-22.51-46.97-18.9-5.37,1.09-9.88,3.28-13.88,7.01,4.36-26.33,16.62-45.81,38.18-61.15,13.13-9.33,27.43-15.38,42.78-20.4,18.25-5.96,36.41-10.54,54.95-15.16,6.66,18.22,22.76,35.97,37.97,47.82l30.31,23.59c8.84,6.89,17,13.74,24.7,21.89,11.94,12.64,21.11,27.03,27.04,43.39,5.91,16.29,8.58,37.87,4.7,54.54-.28,1.22-1.86,2.16-1.8,3.56.11,2.43,3.88,4.52,5.87,3.03,3.03-2.28,5.74-4.35,9.46-5.29,7.47-1.88,14.57,2.22,16.94,9.63,4.14,12.95-1.05,27.78-7.09,40.01-4.76,9.64-10.65,18.29-18.91,25.2-7.06,5.91-18.33,8.63-24.1,1.28-1.25-1.6-4.71-1.92-5.68.22-2.61,5.71-5.27,11.07-8.8,16.31-.98,1.47-.66,3.9.32,5.04.78.93,2.64,2.55,4.18,1.3,3.43-2.8,5.62-6.98,7.45-10.96l.85-1.85c.62-1.34,3.31,1.68,7.87,2.18l1.12.12c.55.06,1.57.11,1.74.48.2.4.03,1.35-.11,1.97-9.17,40.47-1.82,85.78,20.11,121.03,15.74,25.3,35.38,43.04,51.96,66.97,13.63,19.68,23.46,40.96,29.46,64.26,6.96,27.04,9.8,54.42,9.24,82.44-.4,20.04-2.1,39.2-5.14,58.89l-4.75,30.81c-15.21,4.65-31.57,15.72-34.81,31.38-2.65,12.77,4.92,25.01,17.58,28.93,17.89,5.54,37.91-.15,50.87-13.63,1.25-1.3,1.89-2.85,3.88-2.63l19.18,2.12c.67.08.66.79.51,1.28-3.52,11.65,2.15,23.27,13.46,27.92,21.31,8.76,48.83-4.25,59.42-24.75,4.45-8.62,4.79-18.54-.05-26.83-.72-.44.12-1.21.61-.54l4.8.82c21.4,3.64,42.8,4.92,64.57,4.98l1.35-.06c.38-.02.82-.02,1.02.28.21.32.06.65-.1.93l-.43.77-.39.83-.35.87c-.13.29-.29.59-.31,1.16-3.75,1.15-7.56,2.46-9.94,5.61-4.36,5.77-2.51,12.67,3.48,16.38,3.26,2.03,6.56,3.78,10.42,4.96,15.93,4.89,31.87,7.76,48.65,9.57,47.4,5.11,105,4.06,150.94-8.39,8.99-2.44,21.66-7.98,22.57-16.83.47-4.54-1.38-8.51-3.98-12.16-.47-.26-.27-.68-.05-.64l1.17.21c7.83,1.42,15.59,1.17,23.44.13l1.01-.13,1.1-.11c11.86-1.15,23.28-4.25,34.43-8.52,2.84-1.09,2.19-4.85.97-6.94-3.22-5.49-6.09-10.8-10.62-15.16l-.63-.61c-8.4-9.76-19.33-16.25-31.74-19.74-6.45-1.81-12.56-1.19-19.21-1.45,14.32-10.15,23.23-23.81,28.48-39.74,2.21-6.7,4.41-13.14,4.87-20.2l1.6-24.52c.15-2.29-1.2-5.1-4.1-4.87-24.22,1.88-50.16,12.05-65.09,31.59-.37.8-.88.89-1.06.57-.27-.45-.14-1.05-.14-1.55l.02-61.18v-20.37c0-.95-.21-2.57.54-2.96,1.76-.92,30.27,3.32,55.14-20.5,7.97-7.63,14.17-16.12,19.72-25.68l11.2-23.12c1.45-3.01-1.18-5.28-3.91-5.94-28.32-6.78-58.64-6.29-81.8,12.92-.33.92-1.49,0-.73-.65-.23-.66-.17-.97-.17-1.37l-.02-8v-2.44s.01-1.24.01-1.24v-1.2s-.04-1.09-.04-1.09l-.06-1.01-.12-1.05-.17-1.12-.18-1.09-.19-1.02-.22-1.04-.2-1.16-.08-1.27c-.02-.35-.03-.88.18-1.12l6.98-7.88.6-.66,26.1-29.5c5.18-1.15,9.8-1.71,14.82-1.85,13.62-.36,26.39-3.37,38.69-9.09,20.17-9.39,36.05-28.93,45.43-48.98,7.52-16.09,12.54-32.88,15.97-50.3.45-2.29-2-4.51-3.89-4.42ZM931.58,390.96c8.27-11.73,18.82-20.78,31.59-27.27,12.53-6.36,25.4-10.77,39.47-13.59-4.69,32.97-10.88,65.89-33.51,90.68-8.26,9.06-18.48,15.61-29.71,20.46l-16.1,5.78c3.01-10.63,7.21-19.77,12.45-29.29l13.7-21.44c1.16-1.81.05-4.67-1.64-5.36-1.71-.7-3.63-.17-5.07,1.72-10.87,14.23-18.86,29.85-25.67,46.98-3.17-24.72.46-47.79,14.49-68.67ZM856.94,410.67c-1.16-1.16-3.45.6-4.16,1.63-.74,1.08-1.34,3.22,0,4.72l13.91,15.66-21.2-4.46c-19.49-4.11-36.06-15.89-47.21-32.33-11.45-16.74-18.3-36.74-23.36-56.77,50.69,7.7,82.2,33.26,94.16,83.83l-12.14-12.28ZM890.35,376.37l-1.5-33.51c-.14-2.92-2.03-4.57-4.33-4.38-2.64.21-3.7,2.43-3.6,5.1l1.2,32.89c-5.07-6.78-9.79-13.34-13.33-21.13-16.26-35.77-7.9-75.39,13.57-107.94l16.66,30.5c10.29,23.07,11.87,48.23,4.04,72.22-3.28,9.35-7.3,17.85-12.71,26.25ZM880.46,536.69c-15.22-4.33-28.27-13.83-36.03-27.62-5.88-9.94-10.45-19.82-12.9-31.55,11.3.88,22,3.53,32.1,8.64,15.94,8.32,27.11,22.67,32.52,39.78l4.47,19.21c-6.49-3.68-12.9-6.33-20.16-8.46ZM332.44,476.67c.45.93.86,2.91.13,4.03l-12.19,18.61c-2.55-3.8-6.11-4.73-10.74-4.37,3.36-10.57,19.83-24.33,22.8-18.27ZM445.54,8.87c19.43,2.03,37.19,10.78,50.2,25.22,24.94,27.69,27.92,71.71,4.45,101.28-5.64,6.92-12.24,12.59-20.9,16.61-10.72-36.9-36.9-66.76-71.84-81.6-7.2-3.06-14.15-5.34-21.87-6.38-8.72-4.27-17.56-6.96-27.5-8.91,14.22-34.01,52.54-49.86,87.46-46.22ZM412.13,81.65c9.87,4.69,17.81,10.77,25.61,17.87,19.13,17.92,32.45,41.17,36.49,68.3-16.19-12.09-33.14-21.95-52.39-29.71,10.65-20.65,5.34-39.14-9.71-56.46ZM267.56,197.59c-17.43,4.26-34.04,9.35-50.6,16.15-13.8,5.67-26.28,12.84-37.56,22.44-14.15,12.03-23.79,27.25-29.29,44.96-3.45,11.12-4.52,21.85-5.46,34.19-11.49-20.94-16.75-46.58-10.71-69.43,4.72-17.85,15.57-32.87,30.11-44.01,25.97-19.87,51.86-27.19,82.47-35.84l36.32-10.27c11.44-3.23,22.08-7.82,32.54-13.27,1.62-.84,2.45-2.14,2.66-3.38.33-1.95-.65-3.46-1.89-4.18-1.95-1.13-3.31,0-5.02.86-12.84,6.46-26.12,11.15-40.06,14.99l-38.92,10.71c-28.25,8.23-53.21,17.46-76.8,36.55,7.41-19.25,18.33-36.04,32.74-49.89,23.13-22.24,54.95-35.28,86.05-42.18,28.64-6.35,57.69-6.05,86.12.9,2.29.56,3.92-2.28,3.89-3.81-.04-1.81-1.2-3.91-3.56-4.48-36.76-8.89-75.09-6.75-111.32,5.62,13.63-28.77,40.85-42.42,71.61-44.09,26.91-.77,58.04,5.39,79.38,22.25,17.5,13.82,25.62,35.8,12.27,54.88-5.24,7.48-11.75,13.43-19.44,18.54-20.49,13.63-49.14,23.11-73.32,29.02l-52.21,12.77ZM454.72,421.5c1.34-6.99,1.46-13.82-.31-20.61-3.7-12.67-16.61-19.73-29.26-14.93,3.42-35.43-9.31-69.15-32.69-95.37-8.36-9.29-17.36-17.2-27.27-24.82l-28.05-21.58c-15.33-12.6-31.02-27.04-38.44-45.76,17.87-4.13,34.61-8.2,51.53-13.82,24.4-8.47,50.56-19.31,67.04-39.68,24.04,10.29,46.26,23.01,65.44,40.73,30,27.59,44.93,67.66,44.04,108.35-.9,40.53-14.44,84.07-42.7,114.12,3.61-12.68,5.29-24.6,4.91-37.66-.94-32.6-11.66-63.72-29.95-90.65-11.13-16.37-24.87-30.27-40.9-41.78-5.64-4.05-11.11-7.49-17.49-10.18-1.85-.78-4.08.31-4.85,1.92-.68,1.43-.52,4.18,1.48,5.24,31.97,17.04,56.72,45.12,70.91,78.56,14.1,33.2,19.13,78.68.64,110.33-6.62,11.34-15.96,20.35-25.91,29.13,5.31-10.55,10.1-20.23,11.83-31.54ZM590.26,568.72c3.33-1.25,4.71-3.73,6.47-6.54,6.47-10.33,19.55-17.11,31.49-18.58-.68,2.41-1.23,4.34-.57,6.31.55,1.61,2.26,2.19,3.72,1.98,1.3-.18,2.43-1.3,3.15-2.81.57-3.94,2.4-7.22,5.47-9.86.88-5.15,2.72-9.53,5.89-13.68,8.25-11.48,20.83-18.69,34.9-20.77l12.17-2.51c8.08-2.58,13.94-7.89,18.06-15.11,4.65-8.16,11.29-15,19.94-18.85,2.83,14.98,12.76,22.57,24.47,30.45,8.53,5.87,16.94,14.56,17.43,24.86.11,2.45,1.09,3.65,2.26,4.72,2.48,2.28,4.3-1.15,6-1.17,11.65-.16,23.01,5.16,31.52,12.9,13.82,12.57,9.6,24.25,14.16,26.15,1.48.62,3.14.2,4.21-1.03,1.01-1.17,1.17-2.81.67-4.75,8.09,1.2,17.96,5.89,21.01,13.19.9,2.16,2.16,3.35,4.4,4.39,5.02,2.33,9.54,7.93,8.2,13.82-1.03,4.58-4.85,8.27-8.55,11.08-13.9,10.57-39.42,17.13-57.83,20.31-45.7,7.89-91.26,8.98-137.05,4.12-18.96-2.01-36.98-5.26-55.11-10.55-10.57-3.09-20.31-7.37-29.32-13.54-4.46-3.06-8.33-7.54-9.04-12.94-1.22-9.22,12.49-18.06,21.88-21.59ZM559.96,615.64c.99,2.31,1.83,3.51,3.57,3.7,1.53.17,4.02-.92,4.05-2.93l.18-10.92c10.77,10.78,27.79,17,42.8,21.04,53.05,14.28,118.76,14.8,173.19,7.63,22.26-2.94,46.69-8.47,66.73-17.94,6.15-2.91,11.28-6.71,15.82-11.68.23,1.27-.04,2.87,1,3.59,3.86,2.68,6.98,7.38,5.75,12.31-.96,3.83-3.94,6.8-7.05,8.83l-8.49,5.57c-1.53.99-1.73,3.03-1.2,4.71.37,1.17,1.95,2.57,3.71,2.1,3.17-.85,5.12-3.22,8.39-4.9.2,11.2,1.64,15.86-6.41,22.28-15.91,12.71-48.31,20.69-69.31,23.87-47.71,7.22-95.9,7.7-143.77,1.48-23.74-3.08-55.4-10.27-74.83-23.24-4.24-2.84-7.75-6.58-8.68-11.59l-.44-10.05c-.47-.66.26-1.24.64-.77,13.29,9.47,32.25,15.67,48.16,19.52,49.98,12.08,102.87,13.45,153.91,8.09l29.12-4.44c2.53-.38,3.54-3.4,2.95-5.36-.7-2.31-2.7-3.02-5.45-2.53-42.89,7.62-86.34,8.68-129.77,4.27-22.22-2.25-43.65-6.16-64.83-12.91-12.96-4.12-29.52-10.89-38.11-20.77-2.27-2.61-3.09-5.93-1.63-8.96ZM552.37,655.13l4.98-4.86c.76,6.33,4.24,11,8.92,14.96,20.26,17.15,63.63,25.76,90.77,28.75,42.72,4.69,85.53,4.4,128.12-1.45,20.09-2.77,39.26-7.35,58.15-14.14,9.76-3.86,18.65-8.43,26.34-15.35,3.86-3.48,6.56-7.49,7.06-12.79,8.91,8,11.04,17.83,3.19,26.69-17.03,19.23-60.96,28.49-87.13,32.42-47.6,7.15-95.68,7.78-143.42,1.53-18.77-2.45-36.77-5.94-54.71-11.48-11.05-3.4-21.23-7.73-30.87-13.86-11.47-7.31-20.01-19.89-11.4-30.42ZM481.85,933.85c8.88-13.24,28.81-22.04,44.52-19.23,4.47.79,8.44,2.51,11.43,6.47-5.88,2.33-11.24,4.75-16.55,8.41-5.39,3.71-10.98,5.63-17.07,7.19-9.24,2.36-17.57,6.33-24.92,12.76-1.97-5.67-.51-11,2.59-15.6ZM532.65,950.49c-12.43,11.44-35.8,17.09-49.24,5.18,8.03-6.04,16.78-10.01,26.28-12.26,5.03-1.19,9.34-3.29,13.81-5.86l15.96-9.16c5.53-3.18,3.59,13.16-6.81,22.1ZM534.85,908.85c3.47-7.57,8.74-13,15.28-17.58,14.67-11.4,41.97-20.41,55.29-6.1l-5.53,2.59c-10.38,4.86-19.97,18-33.98,21.74-6.87,2.41-13.13,5.51-19.18,9.64-2.99-4.83-6.91-8.23-11.88-10.29ZM567.95,945.08c-6.87,1.59-13.38.94-20.16-.7,1.96-5.5,3.07-11.07,2.57-17.44,5.23-3.98,10.7-7.78,17.15-9.65,9.28-2.7,17.15-7.27,24.15-13.89,5.34-5.04,11.2-9.04,18.05-12.2,3.95,11.07.44,21.2-5.76,30.66-14.36,4.03-26.89,10.69-36,23.22ZM572.19,968.8c-1.31-1.04-1.69-2.71-1.83-4.44-1.65-20.59,30.12-39.06,49.11-35.61,2.47.45,4.81,1.34,5.97,3.89l-15.73,11.46c-5.25,3.82-10.27,7.04-16.54,9.57-8.38,3.38-15.42,8-20.98,15.13ZM627.42,957.67c-7.92,12.69-22.23,20.31-37.23,20.41-4.87-.63-9.22-.9-13.75-4.05,6.04-5.01,12.04-9.53,18.97-12.94,8.79-3.22,16.54-7.7,23.48-13.88l11.4-8.6c1.97,6.49.88,13.05-2.87,19.06ZM615.07,918.76c6.25-14.17,6.35-28.72-4.15-39.69-14.77-15.42-41.73-9.42-59.26,1.27-1.79-3.06-3.22-6.02-3.22-9.88l.02-187.59c7.35,8.02,15.76,13.37,25.51,17.64,14.2,6.23,28.72,10.19,44.03,13.57,60.45,12.05,122.31,12.58,183.1,2.31,19.46-3.28,38.22-7.86,56.33-15.31,10.07-4.14,19.12-9.22,26.6-17,.05-.79,1.22-.67.86.31l-.12,163.97-2.45,9.4c-1.33,9.02-1.34,17.86,0,26.93.24,1.61,0,3.06-1.04,4.06-.85.8-2.66,2.17-4.11,1.33-5.21-3.04-10.49-5-16.26-5.79-4.93-11.96-15.07-21.17-27.96-23.85-11.72-2.44-22.6,1.03-30.75,8.98-15.89-1.28-30.39,8.25-34.63,23.65-12.85.96-23.33,9.17-27.89,20.97l-6.87,1.81c-6.63,2.05-11.78,6.4-15.01,12.62-34.76,1.39-69-1.93-102.72-9.71ZM922.25,955.82c-4.2,2.71-8.67,4.64-13.59,6.04-45.63,12.93-106.84,13.23-154.02,7.75-13.25-1.54-25.71-4.03-38.36-7.62-8.3-2.35-17.31-7.44-11.91-10.25l7.68-4c1.46-3.17,3.05-6.73,6.35-8.2,2.5-1.12,3.82-2.56,4.9-5,3.35-7.59,10.44-12.28,18.64-12.57,3.14-.11,4.63-1.73,5.45-4.46,2.93-9.87,12.36-16.2,22.43-16.61,3.03-.12,4.27-1.87,4.92-4.38,3.26-12.67,15.12-20.71,27.96-18.67,1.6.25,2.95-.53,3.89-1.55,6.49-7.02,15.76-9.82,25.1-7.7,11.23,2.55,19.83,10.95,22.53,22.16,1.25,5.22,6.67.65,12.32,3.06,6.78,2.9,13.19,7.26,16.88,13.63,2.4,4.15,3.9,8.56,2.33,13.27-1.76-.4-4.24-.99-5.38.46-1.49,1.88-.21,3.99,1.37,4.78,2.24,1.11,3.89-.2,5.51-1.75,1.93.14,4.95-.34,7.08-1.3,8.48,1.31,16.89,7.4,19.88,15.57,1.04,2.84.66,5.03,4.22,5.99,2.5.68,4.93,3.07,5.79,5.59.84,2.43.08,4.44-1.97,5.76ZM982.09,926.29c-19.52,5.97-44.32,10.56-62.53,3.38-2.04-1.01-3.05-3.13-4.78-4.78-6.23-5.92-13.48-8.96-21.34-13.53,14.68-1.06,28.75.56,42.72,3.13,2.18.4,3.93-2.33,3.94-3.82,0-1.88-1.53-3.64-3.8-4.01l-10.96-1.82-22.96-1.93c30.47-15.01,62.18-6.19,79.71,23.38ZM893.51,729.14c1.44-2.93,4.32-5.21,7.01-7.42l15.64-12.81c1.63-1.33,1.72-3.56.53-5.19-1.08-1.47-3.25-1.99-5.26-.81-6.53,4.48-12.28,9.44-18.11,15.31l-.1-23.45c4.32-5.4,9.49-9.14,15.43-12.45,18.9-10.16,41.02-9.66,62.26-5.47-9.69,21.73-22.43,42.02-43.54,53.09-10.71,5.34-22.36,7.38-34.16,6.82.21-2.71-.73-5.49.3-7.62ZM894.61,844.82c12.23-23.16,35.38-33.61,60.67-37.41.06,15.08-2.21,29.44-7.46,43.38-8.96,23.78-27.5,36.93-51.45,44.5,6.5-15.75,14.69-29.74,24.77-43.2,1.33-1.77.09-3.87-1.16-4.65-1.21-.76-3.71-.86-4.98.69-9.94,12.11-17.84,25.39-23.9,39.97-2.82-14.73-2.18-30.1,3.51-43.28ZM1025.28,535.48c-2.24,8.13-5.52,15.55-9.44,23.03-17.8,35.08-43.09,50.05-82.64,50.9l20-24.96,19.59-19.89c1.33-1.35,1.34-3.23.71-4.67-.52-1.21-3.07-3.12-4.64-1.82-11.81,9.78-21.8,21.05-31.47,32.86l-8.28,10.11c2.29-19.22,7.42-39.5,19.6-55.18,20.24-26.04,50.86-33.98,82.95-33.62l-6.38,23.24ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM838.64,591.9c2.32,0,4.2-1.89,4.2-4.21s-1.88-4.2-4.2-4.2-4.2,1.88-4.2,4.2,1.88,4.21,4.2,4.21ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM802.18,567.1c2.29,0,4.14-1.86,4.14-4.14s-1.85-4.14-4.14-4.14-4.13,1.85-4.13,4.14,1.85,4.14,4.13,4.14ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM723.26,865.77c5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17ZM726.79,805.62c7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM768.74,555.13c2.44,0,4.42-1.98,4.42-4.42s-1.98-4.43-4.42-4.43-4.43,1.98-4.43,4.43,1.98,4.42,4.43,4.42ZM767.66,593.74c2.3,0,4.17-1.86,4.17-4.16s-1.87-4.17-4.17-4.17-4.17,1.86-4.17,4.17,1.87,4.16,4.17,4.16ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM742.45,610.87c0,2.07,1.68,3.75,3.76,3.75s3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76-3.76,1.68-3.76,3.76ZM744.35,528.21c2.39,0,4.33-1.94,4.33-4.33s-1.94-4.33-4.33-4.33-4.33,1.94-4.33,4.33,1.94,4.33,4.33,4.33ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM732.47,576.71c2.36,0,4.28-1.92,4.28-4.28s-1.92-4.27-4.28-4.27-4.27,1.91-4.27,4.27,1.91,4.28,4.27,4.28ZM720.11,502.58c2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51ZM715,539.84c1.92,0,3.47-1.55,3.47-3.46s-1.55-3.46-3.47-3.46-3.46,1.55-3.46,3.46,1.55,3.46,3.46,3.46ZM705.71,608.38c2.58,0,4.67-2.09,4.67-4.67s-2.09-4.68-4.67-4.68-4.68,2.09-4.68,4.68,2.1,4.67,4.68,4.67ZM687.86,561.78c0,2.59,2.1,4.68,4.69,4.68s4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69-4.69,2.1-4.69,4.69ZM687.36,523.88c2.3,0,4.17-1.86,4.17-4.17s-1.87-4.17-4.17-4.17-4.18,1.87-4.18,4.17,1.87,4.17,4.18,4.17ZM666.91,614.33c1.93,0,3.5-1.57,3.5-3.5s-1.57-3.51-3.5-3.51-3.5,1.57-3.5,3.51,1.57,3.5,3.5,3.5ZM659.39,546.45c1.96,0,3.55-1.59,3.55-3.55s-1.59-3.55-3.55-3.55-3.55,1.59-3.55,3.55,1.59,3.55,3.55,3.55ZM655.55,585.83c2.22,0,4.03-1.8,4.03-4.02s-1.81-4.02-4.03-4.02-4.02,1.8-4.02,4.02,1.8,4.02,4.02,4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.3,566.63c2-1.45,1.43-4.19.57-5.45-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94ZM594.44,588.19c2.19,0,3.97-1.77,3.97-3.96s-1.78-3.97-3.97-3.97-3.96,1.78-3.96,3.97,1.77,3.96,3.96,3.96ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM898.86,941.09c-1.87,0-3.38,1.52-3.38,3.39s1.51,3.38,3.38,3.38,3.39-1.51,3.39-3.38-1.52-3.39-3.39-3.39ZM871.37,945.23c-2.2,0-3.98,1.78-3.98,3.98s1.78,3.99,3.98,3.99,3.99-1.78,3.99-3.99-1.79-3.98-3.99-3.98ZM855.61,914.73c-2.43,0-4.39,1.97-4.39,4.39s1.96,4.4,4.39,4.4,4.4-1.97,4.4-4.4-1.97-4.39-4.4-4.39ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM840.04,892.96c-1.59-1.05-3.25-.52-4.46.67-1.17,1.16-2.11,2.35-1.51,4.06.38,1.05,1.63,2.31,3.12,2.15,1.14-.12,2.3-.95,3.29-2.28,1.28-1.71.73-3.84-.44-4.6ZM832.52,943.17c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.68-2.09,4.68-4.68-2.09-4.69-4.68-4.69ZM822.85,882.2c-1.96,0-3.55,1.58-3.55,3.54s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.54-3.55-3.54ZM814.73,916.15c-2.18,0-3.95,1.77-3.95,3.95s1.77,3.95,3.95,3.95,3.95-1.77,3.95-3.95-1.77-3.95-3.95-3.95ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM804.8,954.74c-2.02-1.16-3.74.14-4.19,1.59-.4,1.3-.15,2.56.83,3.52.96.94,2.62,1.44,3.87.23,1.26-1.23,1.2-4.35-.51-5.34ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM793.57,895.58c-1.91,0-3.46,1.55-3.46,3.47s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.56-3.47-3.47-3.47ZM790.22,929.57c-1.98,0-3.58,1.6-3.58,3.58s1.6,3.57,3.58,3.57,3.57-1.6,3.57-3.57-1.6-3.58-3.57-3.58ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM776.3,951.63c-1.77,0-3.21,1.43-3.21,3.21s1.44,3.21,3.21,3.21,3.21-1.44,3.21-3.21-1.44-3.21-3.21-3.21ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM763.56,922.5c-2.34,0-4.23,1.9-4.23,4.23s1.89,4.22,4.23,4.22,4.22-1.89,4.22-4.22-1.89-4.23-4.22-4.23ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM738.52,944.05c-2.2,0-3.98,1.79-3.98,3.98s1.78,3.98,3.98,3.98,3.98-1.78,3.98-3.98-1.78-3.98-3.98-3.98ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM838.64,583.49c-2.32,0-4.2,1.88-4.2,4.2s1.88,4.21,4.2,4.21,4.2-1.89,4.2-4.21-1.88-4.2-4.2-4.2ZM803.32,597.35c-2.31,0-4.18,1.87-4.18,4.18s1.87,4.17,4.18,4.17,4.17-1.87,4.17-4.17-1.87-4.18-4.17-4.18ZM802.18,558.82c-2.28,0-4.13,1.85-4.13,4.14s1.85,4.14,4.13,4.14,4.14-1.86,4.14-4.14-1.85-4.14-4.14-4.14ZM768.74,546.28c-2.45,0-4.43,1.98-4.43,4.43s1.98,4.42,4.43,4.42,4.42-1.98,4.42-4.42-1.98-4.43-4.42-4.43ZM767.66,585.41c-2.3,0-4.17,1.86-4.17,4.17s1.87,4.16,4.17,4.16,4.17-1.86,4.17-4.16-1.87-4.17-4.17-4.17ZM746.21,607.11c-2.08,0-3.76,1.68-3.76,3.76s1.68,3.75,3.76,3.75,3.76-1.68,3.76-3.75-1.69-3.76-3.76-3.76ZM744.35,519.55c-2.39,0-4.33,1.94-4.33,4.33s1.94,4.33,4.33,4.33,4.33-1.94,4.33-4.33-1.94-4.33-4.33-4.33ZM732.47,568.16c-2.36,0-4.27,1.91-4.27,4.27s1.91,4.28,4.27,4.28,4.28-1.92,4.28-4.28-1.92-4.27-4.28-4.27ZM725.23,496.5c-1.81-1.7-4.72-1.14-5.88.57-1.09,1.62-1.13,4.68.76,5.51,2,.89,4.4.23,5.36-1.24.84-1.26,1.07-3.61-.24-4.84ZM715,532.92c-1.91,0-3.46,1.55-3.46,3.46s1.55,3.46,3.46,3.46,3.47-1.55,3.47-3.46-1.55-3.46-3.47-3.46ZM705.71,599.03c-2.58,0-4.68,2.09-4.68,4.68s2.1,4.67,4.68,4.67,4.67-2.09,4.67-4.67-2.09-4.68-4.67-4.68ZM692.55,557.09c-2.59,0-4.69,2.1-4.69,4.69s2.1,4.68,4.69,4.68,4.69-2.09,4.69-4.68-2.1-4.69-4.69-4.69ZM687.36,515.54c-2.31,0-4.18,1.87-4.18,4.17s1.87,4.17,4.18,4.17,4.17-1.86,4.17-4.17-1.87-4.17-4.17-4.17ZM666.91,607.32c-1.93,0-3.5,1.57-3.5,3.51s1.57,3.5,3.5,3.5,3.5-1.57,3.5-3.5-1.57-3.51-3.5-3.51ZM659.39,539.35c-1.96,0-3.55,1.59-3.55,3.55s1.59,3.55,3.55,3.55,3.55-1.59,3.55-3.55-1.59-3.55-3.55-3.55ZM655.55,577.79c-2.22,0-4.02,1.8-4.02,4.02s1.8,4.02,4.02,4.02,4.03-1.8,4.03-4.02-1.81-4.02-4.03-4.02ZM623.52,597.05c-2.43,0-4.41,1.97-4.41,4.41s1.98,4.4,4.41,4.4,4.41-1.97,4.41-4.4-1.97-4.41-4.41-4.41ZM625.87,561.18c-1.14-1.68-3.04-2.18-4.71-1.77-1.84.45-3.25,1.94-3.05,4.28.26,3.09,4.52,4.87,7.19,2.94,2-1.45,1.43-4.19.57-5.45ZM594.44,580.26c-2.19,0-3.96,1.78-3.96,3.97s1.77,3.96,3.96,3.96,3.97-1.77,3.97-3.96-1.78-3.97-3.97-3.97Z'/%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-37' d='M742.5,948.03c0,2.2-1.78,3.98-3.98,3.98s-3.98-1.78-3.98-3.98,1.78-3.98,3.98-3.98,3.98,1.79,3.98,3.98Z'/%3E%3Cpath class='cls-37' d='M767.78,926.73c0,2.33-1.89,4.22-4.22,4.22s-4.23-1.89-4.23-4.22,1.89-4.23,4.23-4.23,4.22,1.9,4.22,4.23Z'/%3E%3Ccircle class='cls-37' cx='776.3' cy='954.84' r='3.21'/%3E%3Cpath class='cls-37' d='M793.79,933.15c0,1.97-1.6,3.57-3.57,3.57s-3.58-1.6-3.58-3.57,1.6-3.58,3.58-3.58,3.57,1.6,3.57,3.58Z'/%3E%3Cpath class='cls-37' d='M797.04,899.05c0,1.91-1.56,3.46-3.47,3.46s-3.46-1.55-3.46-3.46,1.55-3.47,3.46-3.47,3.47,1.55,3.47,3.47Z'/%3E%3Cpath class='cls-37' d='M805.31,960.08c-1.25,1.21-2.91.71-3.87-.23-.98-.96-1.23-2.22-.83-3.52.45-1.45,2.17-2.75,4.19-1.59,1.71.99,1.77,4.11.51,5.34Z'/%3E%3Cpath class='cls-37' d='M818.68,920.1c0,2.18-1.77,3.95-3.95,3.95s-3.95-1.77-3.95-3.95,1.77-3.95,3.95-3.95,3.95,1.77,3.95,3.95Z'/%3E%3Cpath class='cls-37' d='M826.4,885.74c0,1.96-1.59,3.55-3.55,3.55s-3.55-1.59-3.55-3.55,1.59-3.54,3.55-3.54,3.55,1.58,3.55,3.54Z'/%3E%3Cpath class='cls-37' d='M837.2,947.86c0,2.59-2.09,4.68-4.68,4.68s-4.69-2.09-4.69-4.68,2.1-4.69,4.69-4.69,4.68,2.1,4.68,4.69Z'/%3E%3Cpath class='cls-37' d='M840.48,897.56c-.99,1.33-2.15,2.16-3.29,2.28-1.49.16-2.74-1.1-3.12-2.15-.6-1.71.34-2.9,1.51-4.06,1.21-1.19,2.87-1.72,4.46-.67,1.17.76,1.72,2.89.44,4.6Z'/%3E%3Cpath class='cls-37' d='M860.01,919.12c0,2.43-1.97,4.4-4.4,4.4s-4.39-1.97-4.39-4.4,1.96-4.39,4.39-4.39,4.4,1.97,4.4,4.39Z'/%3E%3Cpath class='cls-37' d='M875.36,949.21c0,2.21-1.79,3.99-3.99,3.99s-3.98-1.78-3.98-3.99,1.78-3.98,3.98-3.98,3.99,1.78,3.99,3.98Z'/%3E%3Cpath class='cls-37' d='M902.25,944.48c0,1.87-1.52,3.38-3.39,3.38s-3.38-1.51-3.38-3.38,1.51-3.39,3.38-3.39,3.39,1.52,3.39,3.39Z'/%3E%3Cg%3E%3Cpath class='cls-1' d='M837.2,947.86c0,2.59-2.09,4.68-4.68,4.68s-4.69-2.09-4.69-4.68,2.1-4.69,4.69-4.69,4.68,2.1,4.68,4.69Z'/%3E%3Cpath class='cls-3' d='M860.01,919.12c0,2.43-1.97,4.4-4.4,4.4s-4.39-1.97-4.39-4.4,1.96-4.39,4.39-4.39,4.4,1.97,4.4,4.39Z'/%3E%3Cpath class='cls-1' d='M767.78,926.73c0,2.33-1.89,4.22-4.22,4.22s-4.23-1.89-4.23-4.22,1.89-4.23,4.23-4.23,4.22,1.9,4.22,4.23Z'/%3E%3Cpath class='cls-15' d='M742.5,948.03c0,2.2-1.78,3.98-3.98,3.98s-3.98-1.78-3.98-3.98,1.78-3.98,3.98-3.98,3.98,1.79,3.98,3.98Z'/%3E%3Cpath class='cls-18' d='M818.68,920.1c0,2.18-1.77,3.95-3.95,3.95s-3.95-1.77-3.95-3.95,1.77-3.95,3.95-3.95,3.95,1.77,3.95,3.95Z'/%3E%3Cpath class='cls-30' d='M875.36,949.21c0,2.21-1.79,3.99-3.99,3.99s-3.98-1.78-3.98-3.99,1.78-3.98,3.98-3.98,3.99,1.78,3.99,3.98Z'/%3E%3Cpath class='cls-29' d='M840.48,897.56c-.99,1.33-2.15,2.16-3.29,2.28-1.49.16-2.74-1.1-3.12-2.15-.6-1.71.34-2.9,1.51-4.06,1.21-1.19,2.87-1.72,4.46-.67,1.17.76,1.72,2.89.44,4.6Z'/%3E%3Cpath class='cls-50' d='M793.79,933.15c0,1.97-1.6,3.57-3.57,3.57s-3.58-1.6-3.58-3.57,1.6-3.58,3.58-3.58,3.57,1.6,3.57,3.58Z'/%3E%3Cpath class='cls-42' d='M826.4,885.74c0,1.96-1.59,3.55-3.55,3.55s-3.55-1.59-3.55-3.55,1.59-3.54,3.55-3.54,3.55,1.58,3.55,3.54Z'/%3E%3Cpath class='cls-54' d='M797.04,899.05c0,1.91-1.56,3.46-3.47,3.46s-3.46-1.55-3.46-3.46,1.55-3.47,3.46-3.47,3.47,1.55,3.47,3.47Z'/%3E%3Cpath class='cls-25' d='M902.25,944.48c0,1.87-1.52,3.38-3.39,3.38s-3.38-1.51-3.38-3.38,1.51-3.39,3.38-3.39,3.39,1.52,3.39,3.39Z'/%3E%3Ccircle class='cls-41' cx='776.3' cy='954.84' r='3.21'/%3E%3Cpath class='cls-52' d='M805.31,960.08c-1.25,1.21-2.91.71-3.87-.23-.98-.96-1.23-2.22-.83-3.52.45-1.45,2.17-2.75,4.19-1.59,1.71.99,1.77,4.11.51,5.34Z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-37' d='M598.41,584.23c0,2.19-1.78,3.96-3.97,3.96s-3.96-1.77-3.96-3.96,1.77-3.97,3.96-3.97,3.97,1.78,3.97,3.97Z'/%3E%3Cpath class='cls-37' d='M618.11,563.69c-.2-2.34,1.21-3.83,3.05-4.28,1.67-.41,3.57.09,4.71,1.77.86,1.26,1.43,4-.57,5.45-2.67,1.93-6.93.15-7.19-2.94Z'/%3E%3Cpath class='cls-37' d='M627.93,601.46c0,2.43-1.97,4.4-4.41,4.4s-4.41-1.97-4.41-4.4,1.98-4.41,4.41-4.41,4.41,1.97,4.41,4.41Z'/%3E%3Cpath class='cls-37' d='M659.58,581.81c0,2.22-1.81,4.02-4.03,4.02s-4.02-1.8-4.02-4.02,1.8-4.02,4.02-4.02,4.03,1.8,4.03,4.02Z'/%3E%3Cpath class='cls-37' d='M662.94,542.9c0,1.96-1.59,3.55-3.55,3.55s-3.55-1.59-3.55-3.55,1.59-3.55,3.55-3.55,3.55,1.59,3.55,3.55Z'/%3E%3Cpath class='cls-37' d='M670.41,610.83c0,1.93-1.57,3.5-3.5,3.5s-3.5-1.57-3.5-3.5,1.57-3.51,3.5-3.51,3.5,1.57,3.5,3.51Z'/%3E%3Cpath class='cls-37' d='M687.36,523.88c-2.31,0-4.18-1.86-4.18-4.17s1.87-4.17,4.18-4.17,4.17,1.87,4.17,4.17-1.87,4.17-4.17,4.17Z'/%3E%3Cpath class='cls-37' d='M697.24,561.78c0,2.59-2.1,4.68-4.69,4.68s-4.69-2.09-4.69-4.68,2.1-4.69,4.69-4.69,4.69,2.1,4.69,4.69Z'/%3E%3Cpath class='cls-37' d='M710.38,603.71c0,2.58-2.09,4.67-4.67,4.67s-4.68-2.09-4.68-4.67,2.1-4.68,4.68-4.68,4.67,2.09,4.67,4.68Z'/%3E%3Cpath class='cls-37' d='M718.47,536.38c0,1.91-1.55,3.46-3.47,3.46s-3.46-1.55-3.46-3.46,1.55-3.46,3.46-3.46,3.47,1.55,3.47,3.46Z'/%3E%3Cpath class='cls-37' d='M725.23,496.5c1.31,1.23,1.08,3.58.24,4.84-.96,1.47-3.36,2.13-5.36,1.24-1.89-.83-1.85-3.89-.76-5.51,1.16-1.71,4.07-2.27,5.88-.57Z'/%3E%3Cpath class='cls-37' d='M736.75,572.43c0,2.36-1.92,4.28-4.28,4.28s-4.27-1.92-4.27-4.28,1.91-4.27,4.27-4.27,4.28,1.91,4.28,4.27Z'/%3E%3Cpath class='cls-37' d='M744.35,528.21c-2.39,0-4.33-1.94-4.33-4.33s1.94-4.33,4.33-4.33,4.33,1.94,4.33,4.33-1.94,4.33-4.33,4.33Z'/%3E%3Cpath class='cls-37' d='M749.97,610.87c0,2.07-1.69,3.75-3.76,3.75s-3.76-1.68-3.76-3.75,1.68-3.76,3.76-3.76,3.76,1.68,3.76,3.76Z'/%3E%3Cpath class='cls-37' d='M771.83,589.58c0,2.3-1.87,4.16-4.17,4.16s-4.17-1.86-4.17-4.16,1.87-4.17,4.17-4.17,4.17,1.86,4.17,4.17Z'/%3E%3Cpath class='cls-37' d='M773.16,550.71c0,2.44-1.98,4.42-4.42,4.42s-4.43-1.98-4.43-4.42,1.98-4.43,4.43-4.43,4.42,1.98,4.42,4.43Z'/%3E%3Cpath class='cls-37' d='M798.05,562.96c0-2.29,1.85-4.14,4.13-4.14s4.14,1.85,4.14,4.14-1.85,4.14-4.14,4.14-4.13-1.86-4.13-4.14Z'/%3E%3Cpath class='cls-37' d='M807.49,601.53c0,2.3-1.87,4.17-4.17,4.17s-4.18-1.87-4.18-4.17,1.87-4.18,4.18-4.18,4.17,1.87,4.17,4.18Z'/%3E%3Cpath class='cls-37' d='M842.84,587.69c0,2.32-1.88,4.21-4.2,4.21s-4.2-1.89-4.2-4.21,1.88-4.2,4.2-4.2,4.2,1.88,4.2,4.2Z'/%3E%3Cg%3E%3Cpath class='cls-9' d='M697.24,561.78c0,2.59-2.1,4.68-4.69,4.68s-4.69-2.09-4.69-4.68,2.1-4.69,4.69-4.69,4.69,2.1,4.69,4.69Z'/%3E%3Cpath class='cls-27' d='M710.38,603.71c0,2.58-2.09,4.67-4.67,4.67s-4.68-2.09-4.68-4.67,2.1-4.68,4.68-4.68,4.67,2.09,4.67,4.68Z'/%3E%3Cpath class='cls-53' d='M773.16,550.71c0,2.44-1.98,4.42-4.42,4.42s-4.43-1.98-4.43-4.42,1.98-4.43,4.43-4.43,4.42,1.98,4.42,4.43Z'/%3E%3Cpath class='cls-47' d='M627.93,601.46c0,2.43-1.97,4.4-4.41,4.4s-4.41-1.97-4.41-4.4,1.98-4.41,4.41-4.41,4.41,1.97,4.41,4.41Z'/%3E%3Cpath class='cls-11' d='M748.68,523.88c0,2.39-1.94,4.33-4.33,4.33s-4.33-1.94-4.33-4.33,1.94-4.33,4.33-4.33,4.33,1.94,4.33,4.33Z'/%3E%3Cpath class='cls-45' d='M736.75,572.43c0,2.36-1.92,4.28-4.28,4.28s-4.27-1.92-4.27-4.28,1.91-4.27,4.27-4.27,4.28,1.91,4.28,4.27Z'/%3E%3Cpath class='cls-5' d='M625.3,566.63c-2.67,1.93-6.93.15-7.19-2.94-.2-2.34,1.21-3.83,3.05-4.28,1.67-.41,3.57.09,4.71,1.77.86,1.26,1.43,4-.57,5.45Z'/%3E%3Cpath class='cls-33' d='M807.49,601.53c0,2.3-1.87,4.17-4.17,4.17s-4.18-1.87-4.18-4.17,1.87-4.18,4.18-4.18,4.17,1.87,4.17,4.18Z'/%3E%3Cpath class='cls-6' d='M842.84,587.69c0,2.32-1.88,4.21-4.2,4.21s-4.2-1.89-4.2-4.21,1.88-4.2,4.2-4.2,4.2,1.88,4.2,4.2Z'/%3E%3Cpath class='cls-51' d='M806.32,562.96c0,2.28-1.85,4.14-4.14,4.14s-4.13-1.86-4.13-4.14,1.85-4.14,4.13-4.14,4.14,1.85,4.14,4.14Z'/%3E%3Cpath class='cls-57' d='M771.83,589.58c0,2.3-1.87,4.16-4.17,4.16s-4.17-1.86-4.17-4.16,1.87-4.17,4.17-4.17,4.17,1.86,4.17,4.17Z'/%3E%3Cpath class='cls-56' d='M691.53,519.71c0,2.31-1.87,4.17-4.17,4.17s-4.18-1.86-4.18-4.17,1.87-4.17,4.18-4.17,4.17,1.87,4.17,4.17Z'/%3E%3Cpath class='cls-23' d='M659.58,581.81c0,2.22-1.81,4.02-4.03,4.02s-4.02-1.8-4.02-4.02,1.8-4.02,4.02-4.02,4.03,1.8,4.03,4.02Z'/%3E%3Cpath class='cls-14' d='M598.41,584.23c0,2.19-1.78,3.96-3.97,3.96s-3.96-1.77-3.96-3.96,1.77-3.97,3.96-3.97,3.97,1.78,3.97,3.97Z'/%3E%3Cpath class='cls-40' d='M725.47,501.34c-.96,1.47-3.36,2.13-5.36,1.24-1.89-.83-1.85-3.89-.76-5.51,1.16-1.71,4.07-2.27,5.88-.57,1.31,1.23,1.08,3.58.24,4.84Z'/%3E%3Cpath class='cls-39' d='M749.97,610.87c0,2.07-1.69,3.75-3.76,3.75s-3.76-1.68-3.76-3.75,1.68-3.76,3.76-3.76,3.76,1.68,3.76,3.76Z'/%3E%3Cpath class='cls-21' d='M662.94,542.9c0,1.96-1.59,3.55-3.55,3.55s-3.55-1.59-3.55-3.55,1.59-3.55,3.55-3.55,3.55,1.59,3.55,3.55Z'/%3E%3Cpath class='cls-20' d='M670.41,610.83c0,1.93-1.57,3.5-3.5,3.5s-3.5-1.57-3.5-3.5,1.57-3.51,3.5-3.51,3.5,1.57,3.5,3.51Z'/%3E%3Cpath class='cls-34' d='M718.47,536.38c0,1.91-1.55,3.46-3.47,3.46s-3.46-1.55-3.46-3.46,1.55-3.46,3.46-3.46,3.47,1.55,3.47,3.46Z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-37' d='M788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6Z'/%3E%3Cpath class='cls-19' d='M788.46,757.38c-.27-3.12-3.08-4.21-5.72-3.66-11.79,2.48-22.84,6.05-33.16,12.22-17,10.17-28.74,26.19-32.89,46.08-9.45-28.26-35.64-43.13-64.04-48.69-1.82-.7-3.51-.37-4.66.62-1.28,1.11-1.43,2.52-1.51,4.28-.68,14.57.88,28.65,6.28,42.09,10.35,25.77,31.94,37.87,58.83,41.75l7.11,12.53c.83,1.45,3,1.5,4.56,1.17,5.73-1.19,1.15-8.88.82-11.25-.37-2.67,1.48-5.52,2.73-7.81,22.01-2.27,40.83-14.36,51.69-33.49,9.74-17.15,11.65-36.33,9.96-55.84ZM711.77,838.29l-25.7-34.41c-1.6-2.14-4.15-2.16-5.59-1.24-1.84,1.19-2.46,3.75-1.06,5.64l25.54,34.34c-11.2-2.32-21.03-6.83-29.51-13.88-16.77-15.85-20.92-34.05-21.14-56.87,24.38,5.6,46.41,18.39,54.64,42.34,2.73,7.94,4.31,15.83,2.82,24.08ZM780.73,771.94c-.21,32.86-16.98,58.88-49.76,66.41,6.8-12.55,14.38-23.55,22.68-34.83,1.48-2.01,1.16-3.82,0-5.05-1.34-1.42-3.89-1.48-5.28.1-9.68,11.01-17.26,23.12-24.85,36.38-1.24-10.08.19-19.8,3.26-29.33,7.65-23.73,30.52-38.23,54.01-43.28l-.07,9.6Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .sortby-category ul>li:nth-of-type(2)>a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 1056.69 844.99'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %23c2ecda; %7D .cls-2 %7B fill: %23307555; %7D .cls-3 %7B fill: %23fdfefd; %7D .cls-4 %7B fill: %23377b5a; %7D %3C/style%3E%3C/defs%3E%3Cg id='OBJECTS'%3E%3Cg id='Generative_Object' data-name='Generative Object'%3E%3Cpath class='cls-2' d='M311.39,245.89c-2.71.75-4.6.28-5.5-1.52-.71-1.44-.58-4.86,1.79-5.52l101.88-28.25c2.43-.67,4.33.1,5.06,2.2.62,1.8.02,4.39-2.57,5.11l-100.67,27.98Z'/%3E%3Cpath class='cls-2' d='M319.18,275.8c-2.64.74-4.81-.31-5.47-2.33-.56-1.7.26-4.3,2.73-4.98l49.7-13.85,51.7-14.42c2.36-.66,4.36.15,5.19,2.27.7,1.79-.1,4.42-2.62,5.12l-57.88,16.09-43.34,12.11Z'/%3E%3Cpath class='cls-2' d='M383.24,102.51c-4.82-8.44-12.88-13.98-21.63-15.01-15.03-1.75-27.7,7.33-32.68,21.9-10.06-8.44-23.49-10.56-34.95-4.72-10.33,5.27-15.94,16.23-15.43,27.87.48,11.04,4.91,21.08,12.1,29.37,14.91,17.24,35.57,23.16,57.86,27.46,2.91.56,4.37-1.43,5.8-3.02,14.57-16.18,30.08-33.84,33.44-55.84,1.49-9.79.32-19.56-4.51-28.01ZM371.94,151.31c-6.66,11.03-14.57,20.54-23.76,29.95-21.85-3.89-44.55-11.38-56.21-31.32-3.92-6.71-6.11-13.64-5.54-21.02.92-11.94,10.69-20.42,22.66-19.71,7.34.44,13.64,4.25,18.42,9.68,1.13,1.29,2.21,2.1,3.81,1.87,1.26-.18,2.91-.81,3.23-2.49,2.65-13.75,11.47-24.03,24.88-23.08,6.2.44,12.14,4.01,15.94,9.61,9.35,13.76,5.07,32.43-3.43,46.51Z'/%3E%3Cg%3E%3Cpath class='cls-2' d='M767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM359.55,472.94c-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94-.32-2.55-3.84-3.52-6.21-2.81ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM789.89,424.83c.06-1.73-.63-3.23-1.58-4.13-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM720.4,503.04c5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26-9.93,18.96-29.13,30.64-50.5,31.22ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM1052.66,341.27l-23.64-3.19c-20.41-1.28-40.35,3.79-57.19,15.45-19.85,13.73-33.23,34.44-43.88,55.98.29,1.02-1.11.95-.85.02,2.12-12.82,3.42-25.3,4.06-38.09.28-5.61,1.7-9.81,5.49-14,6.83-7.57,13.71-14.78,19.27-23.58,24.81-39.24,24.74-83.88,12.27-127.63-.43-1.5-1.19-2.69-2.09-3.21-1.19-.69-3.35-1.07-4.62-.11-19.04,14.28-35.63,33.09-45.16,55.12-5.03,11.6-7.66,23.62-8.96,36.21-2.36,22.82,4.23,43.58,14.78,63.48,1.15,2.17,2.11,4.44,1.88,7.06l-3.28,37.35-4.4,22.73c-4.68,17.64-10.92,34.41-17.92,51.2l-5.17,12.38c-1.54-1.43-3.46-3.57-3.21-5.29l6.51-24.81,16.28-65c3.05-12.2-.4-24.69-11.42-30.85-5.01-2.8-10.08-4.29-15.89-5.69l-184.81-44.67c-6.19-1.5-11.74-1.64-17.81-.51-7.79,1.46-15.28,3.35-22.69,6-9.49,3.4-12.59,11.52-14.96,21.3l-43.64,179.81c.4,1.58-1.11,2.02-.92.53l-.02-189.92c0-16.09-10.38-28.29-24.24-34.68l-13.63-6.28-.08-43.12c0-6.58-5.04-11.56-11.58-11.56l-.11-11.18c-.06-5.65-5.37-9.76-10.96-9.48-.66.04-1.22-.04-1.53-.23-.51-.32-.62-.98-.62-1.88l-.03-32.5c0-1.41.91-1.8,2.16-1.8l25.74-.11c9.73-.04,14.58-5.5,16.09-14.97.68-4.28-1.63-7.52-5.69-8.86-33.41-10.99-70.86-14.88-104.43-3.28-6.11,2.12-11.75,4.97-16.24,9.38-8.41,8.24-10.08,21.38-4.28,25.48,2.1,1.49,4.73,1.71,7.26.78l11.12-4.13c8.48-3.14,17.14-4.97,26.27-3.83l-.05,35.94c-6.73-.93-12.82,3.36-12.83,10.15v9.23c0,.58-.14,1.04-.38,1.19-.34.22-.72.19-1.42.27-5.37.65-9.92,5.35-9.94,11.07l-.14,43.43c-8.56,3.99-16.7,7.47-24.16,13.42-7.14,5.69-13.67,13.67-13.7,23.67l-.44,169.03c0,.69.12,1.1-.08,1.68-.4,1.17-.36-.39-.63-2.11l-15.11-95.06c-1-6.33-3.33-11.33-7.49-15.95,2.54-3.79,4.06-8.42,3.27-13.17l-5.88-35.66c-.95-5.78-2.94-10.75-7.94-14.14-12.04-8.19-31.79-10.29-47.03-10.63-38.43-.85-76.39,4.55-113.42,14.81-1.59.45-2.23-.1-2.7-1.81l-62.72-229.28c-.73-2.69-.6-4.94.64-7.2.91-1.65,2.74-2.68,5.37-3.43l146.96-41.49,117.64-33.04c3.88-1.1,7.11,2.21,7.87,5.23l4.96,19.77,26.43,97c.64,2.35,2.8,3.08,4.39,2.63,1.98-.56,3.77-2.64,3.08-5.19l-22.48-82.85-9.01-33.81c-2.4-9-10.52-12.44-19-10.05l-107.51,30.24-157.38,44.59c-8.32,2.36-11.83,10.93-9.29,20.23l23.49,86.08,39.47,144.16c.15.56-.36,1.15-.77,1.27-17.05,4.86-46.97,15.89-57.06,29.2-2.71,3.58-4.86,8.24-4.21,12.85l5.63,39.5c.76,5.36,3.59,9.48,7.31,12.78-1.59,3.88-3.41,8.32-2.61,12.91l17.39,99.7-23.45-4,10.04-11.71c1.53-1.79,1.11-4.51.42-6.61-1.08-3.31-4.4-1.43-5.14-2.51-.49-.71-.34-1.41-.58-2.3-6.14-22.25-14.78-43.23-24.8-64.04-1.58-13.06-5.04-25.02-11.3-36.37-14.14-24.59-40.6-38.23-69.04-36.32-16.24,1.09-31.74,5.82-45.78,14.04-2.48,1.45-1.15,5.68.28,7.53,13.51,17.49,31.45,35.25,51.55,44.64,15.85,7.41,32.85,9.92,50.25,9.25,7.46-.29,17.49,1.81,20.22,7.93l8.28,18.57-30.86,45.43c-1.75,2.57-2.75,4.96-2.26,8.31l31.27,214.82,12.54,85.61c.62.93.94,1.92.83,3.04,3.73,9.49,13.01,15.43,23.39,15.43l661.63-.18c13.08-.01,20.9-11.78,22.56-23.09l21.3-144.65,21.79-148.44c.51-3.47-1.72-3.5-1.33-4.25.2-.39.6-.58,1.34-.45,17.06,3.15,34.51.54,49.14-8.95,12.21-7.91,22.31-18.05,30.71-29.77,1.78-2.46.5-5.94-1.97-7.18-25.47-12.72-51.39-16.53-76.81-1.87l-16.31,11.6,8.6-22.34,11.41-33.26c5.15-8.25,14.24-12.38,24.02-11.94,9.36.74,18.17,1.1,27.59.29,24.41-2.1,46.35-13.61,61.66-32.72,9.46-11.82,16.16-25.26,20.81-39.67.98-3.02-.73-6.45-3.75-6.85ZM103.99,413.96c12.88,6.6,23.99,15.02,33.34,25.01l-18.95-.82c-36.89-.27-63.49-21.27-85.49-49.37,19.71-9.88,41.26-13.81,62.03-7.88,24.48,7,39.92,26.16,46.32,50.9-10.33-10.25-21.48-18.59-34.22-24.89-2.07-1.02-4.09-.06-5.02,1.72-.87,1.66-.42,4.1,1.99,5.33ZM906.36,523.54c.87,1.32,1.78,2.56,1.46,4.55-10.29,3.42-20.21,5.46-31.05,7.14l10.24-41.27,19.35,29.58ZM904.5,378.17c1.97,3.63,2.05,7.37,1.04,11.39l-24.94,98.7-12.24,48.27-23.8,3.83,14.9-59.08,21.71-86.05c.96-3.81.66-7.11-.47-10.88l23.8-6.18ZM691.38,318.87l12.08,2.02,182.77,44.33c5.39,1.31,9.89,3.03,14.38,6.21l-14.4,3.68c-2.86.73-5.43,1.49-8.31,3.63-3.27-3.11-6.26-4.78-10.34-5.77l-77.28-18.8-87.23-21.21-35.84-8.88,24.17-5.21ZM616.17,492.34l38.94-159.32c.31-1.25.96-1.95,1.46-2.42.63-.59,1.89-.48,3-.21l75.24,18.46,75.86,18.47,54.76,13.26c6,1.1,9.5,6.33,8.01,12.48l-37.3,148.46c-39.56,5.16-79.05,8.82-118.9,11.05l-43.87,1.45c-7.62-15.37-22.65-24.26-39.6-23.91-9.83.17-18.99,2.5-28.33,6.19l10.73-43.96ZM631.27,538.02c14.57-.95,27.39,5.92,34.58,18.39,11,19.08,13.09,48.41,11.74,70.59-.6,9.69-1.49,18.86-5.04,28.01-5.72-14.14-18.48-19.96-32.49-22.61-10.93-1.77-21.48-1.55-32.65-.3-22.73,2.7-44.32,8.05-66.96,15.88l.25-13.62c.03-1.62,1.24-3.2,2.55-4.23,10.98-8.57,23.25-15.26,36.5-19.76,2.43-.83,3.53-2.74,2.87-4.98-.7-2.34-3.21-2.83-5.67-2.04-13.23,4.09-25.3,10.75-36.76,19.31-.56-4.4-1.24-8.92-3.24-13.63,8.9-14.73,19.61-27.99,32.43-39.65,17.74-16.12,37.39-29.76,61.89-31.36ZM471.93,590.92c4.6,5.81,8.88,11.24,12.58,17.84-1.67,4.59-2.53,9.06-3.24,14.14-11.24-8.74-23.36-15.56-36.78-19.72-2.34-.73-4.52.24-5.24,2.33-.55,1.57.25,3.88,2.45,4.72,12.79,4.86,25.05,10.65,35.93,19.09,1.15.89,3.1,2.29,3.14,4.06l.39,14.67c-27.93-9.35-60.04-18.08-89.37-16.78-17.4.78-37.02,7.34-42.64,24.12-1.93-4.65-2.98-8.72-3.71-13.45-4.23-27.55-2.96-62.95,11.41-87.12,3.37-5.66,7.66-10.06,13.64-12.82,35.22-16.25,80.06,21.1,101.44,48.92ZM454.73,561.02l112.18.07c-13.77,12.23-25.2,25.74-35,41.56-3.63-1.96-7.31-3.25-11.48-3.35l-18.98-.05c-4.16-.01-7.89.99-11.53,2.96l-13.74-18.58c-6.18-8.36-13.26-15.41-21.45-22.61ZM356.37,658.44c2.23-7.02,7.72-12.13,14.53-14.95,17.53-7.26,40.01-4.7,58.96-1.28,17.62,3.19,34.19,8.21,51.45,13.98-13.83,6.54-27.96,12.56-42.85,17.54l-24,6.37c-19.29,3.53-38.62,3.81-53.82-8.46-4-3.23-5.87-8.13-4.27-13.2ZM436.04,686.05l4.9-5.23c13.74-3.86,26.39-9.52,39.99-15.54-10.04,12.64-19.45,24.54-26.37,38.54-1,2.01-.79,3.7.47,5,1.25,1.29,4.36,1.71,5.41-.26,7.8-14.61,17.14-28.06,28.51-40.08,2.75,2.06,5.36,2.96,8.88,3.62l-14.31,43.63-38.56,100.37c-.24.63-.81,1.02-1.09,1.21-.4.25-1.22.08-1.71-.45l-9.84-10.44-17.45-22.94c-1.34-1.75-3.04-2.47-5.35-1.96l-39.09,8.68c-3.64.81-7.28,1.63-11.09.57,15.95-27.72,32.98-53.52,52.38-78.1,7.63-9.67,15.28-18.44,24.32-26.62ZM488.5,636.82c0-7.8.13-15.36,2.37-22.73,1.32-4.3,4.11-7.22,8.84-7.22h21.24c4.66-.01,8.16,2.76,9.54,7.09,2.29,7.23,2.42,14.63,2.36,22.24-.09,10.35.1,28.08-10.38,28.21l-22.96.28c-10.79.13-11.02-17.02-11.01-27.87ZM532.63,668.31c9.74,12.5,17.92,25.31,23.84,39.64.81,1.97,3.32,2.57,4.79,1.91,1.81-.81,2.94-2.95,2.07-5.12-5.64-14.16-13.68-26.82-22.79-39.01,0-.32-.15-.46-.33-.5-.69-.19-.41-1.04.27-.8.28.31.54.44.58.42l33.21,14.1c11.34,12.47,20.82,25.29,29.23,39.73,14.15,24.29,26.17,49.41,35.56,75.86.34.95.33,1.8,0,2.27-.35.5-1.37.92-2.21.73l-19.62-4.41-24.7-8.27c-2.83-.95-5.08.29-6.96,2.34-9.8,10.74-19.98,20.83-31.5,29.66-.62.48-1.58.78-2.04.68-.67-.15-1.27-1.19-1.4-2.13l-6.3-45.73c-4.58-33.15-11.22-65.37-19.82-97.84,3.18-.86,5.67-1.72,8.12-3.53ZM571.7,669.55l-30.82-13.44c14.46-5.26,28.84-9.37,43.92-12.54l36.7-4.76c14.01-.48,33.09,2.67,41.37,13.57,4.64,6.12,4.3,13.79-1.34,18.96-21.26,19.49-64.18,8.44-89.83-1.79ZM494.78,168.97c-9.58.02-18.25,1.1-27.38,4.57l-11.05,4.21c-2.69-8.83,6.29-16.66,15.11-20.1,31.15-12.15,69.73-8.24,101.42,2.07,1.59,2.64-.35,9.05-3.9,9.06l-74.2.19ZM530.37,212.8l-26.88.02-.03-36.35,26.88-.02.03,36.35ZM494.71,220.52l44.93-.11c1.82.42,3.31,1.25,3.86,2.97v10.21s-52.92.02-52.92.02l-.03-9.17c0-2.38,1.71-3.97,4.16-3.92ZM478.8,245.92c0-2.83,2.06-4.7,4.93-4.69l66.32-.04c2.98.02,5.12,1.85,5.1,4.81l-.09,40.9h-76.3s.04-40.98.04-40.98ZM175.19,365.1c3.05-9.15,19.22-17.22,29.09-21.22,24.69-10.01,50.02-16.81,76.43-21.01,29.44-4.68,65.93-8.35,94.75-3.19,9.13,1.63,24.14,5.7,22.65,14.08-1.3,7.35-16.05,15.61-24.16,19.36-13.67,6.32-27.47,11.07-42.2,14.85-39.88,10.22-88.47,17.2-129.29,12.7-10.69-1.18-30.58-5.66-27.27-15.57ZM180.58,410.56l-4.33-29.54c5.71,2.71,10.69,4.71,16.4,5.69,7.12,1.67,14.04,2.28,21.41,2.77,16.24.44,31.93.5,48.14-1.22,22.18-2.35,43.7-5.89,65.34-11.15l33.38-10.07c14.03-5.58,28.94-11.32,39.5-22.84l4.92,28.52c.94,5.45-9.76,13.06-16.16,16.48-11.18,5.97-22.39,11.09-34.62,15.01-43.34,13.91-94.45,22.03-139.83,18.03-9.8-.86-19.01-2.73-28.07-6.13-2.57-1.21-4.66-2.72-6.08-5.55ZM186.38,437.95c-2.96-3.33-2.14-9.59.47-12.58,1.05-1.2,3.37-.31,4.43.04,7.34,2.42,14.3,3.82,22.06,4.48,22.41,1.88,44.42,1.42,66.88-1.49,36.06-4.67,72.85-12.6,105.38-28.7l18.5-11.3c2.65,3.79,6.13,8.81,4.49,13.65-1.16,3.43-5.81,6.02-8.89,7.98-10.02,6.39-20.31,11.07-31.55,15.11-28.89,10.41-58.5,16.72-89.14,19.85-20.64,2.1-40.65,2.84-61.2,1.11-8.99-.75-26.66-2.78-31.43-8.15ZM186.98,447.21c9.5,3.74,18.81,5.51,28.88,6.46,20.58,1.95,40.65,1.32,61.33-.63,40.25-4.07,87.22-14,122.35-33.89,4.06-2.3,7.72-4.74,11.27-7.99l18.31,114.21c.53,3.36,6.36,4.5,8.79,3.9,2.06-.51,2.81-2,2.81-4.12l.1-197.04c.01-8.76,4.64-15.76,11.37-20.58,7.71-5.52,15.76-9.5,24.79-12.93l79.6-.04c8.16,3.1,15.51,6.82,22.8,11.15,9.05,5.39,13.54,14.25,13.53,24.84l-.04,192.72c0,1.93,1.09,3.2,2.04,3.88,1.38.99,2.85.49,4.72-.13l-3.08,13.17c-7.22,3.68-13.67,7.92-20.53,13.06l-130.48.02c-13.96-10.51-28.08-18.97-45.38-22.17-20.72-3.73-40.27,2.33-50.95,20.99l-27.09-2.14c-32.42-2.56-63.58-6.43-95.31-10.85l-24.18-3.36-15.65-88.53ZM141.17,506.95l17.8-26.15c4.7,12.61,8.76,24.7,11.5,37.61l-7.97,10.46-19.42-3.65c-4.04-.76-7.83-1.52-11.66-3.46l9.75-14.81ZM141.84,607.3l-10.86-76.75,40.83,8.2c57.52,9.68,114.96,16.49,173.43,20.93-3.72,9.39-6.5,18.69-7.86,28.79-2.04,13.91-2.35,27.47-1.1,42.18-49.32-2.55-97.29-6.74-145.62-13.16l-42.09-7.03c-2.31-.39-5.37-1.33-6.73-3.16ZM143.26,617.23c19.73,4.52,39.34,7.39,59.73,9.88,44.7,5.44,89.08,9.1,134.11,11.42,2.37,20.41,10.65,37.67,29.56,46.01,6.22,2.55,12.52,4.29,19.06,4.76l-.45,1.59-59.35,4.56-89.75,1.22-60.67-3.46c-7.49-.43-14.39-1.57-21.63-3.62l-10.61-72.36ZM870.43,792.37l-4.05,29.11c-1.02,7.37-6.12,15.37-14.49,15.4l-80.82.3-3.69-.02-10.99-.03-1.27.03c-.89-.06-2.16-.23-3.04.07l-2.46-.13h-473.69l-1.27.02h-23.18s-1.91.09-1.91.09c-.67-.2-1.76-.19-2.44-.01l-1.86-.04-56.39-.14c-7.03-.02-13.83-5.5-14.83-12.25l-7.51-50.53-11.36-76.27c15.43,2.88,30.34,4.8,45.97,5.13l76.06,1.61c46.7-.38,92.6-3.47,139.24-9.86-10.48,11.87-20.14,23.24-28.48,36.26l-34.63,54.13c-1.7,3.58-1.97,7.74.48,10.85,2.13,2.69,5.73,3.23,9.17,2.89,15.86-1.58,30.96-5.36,46.51-9.42l15.21,20.17,11.5,12.38c2.53,2.04,5.14,3.34,8.53,2.86,2.26-.33,5.74-1.43,6.96-4.59l40.63-106.09,13.37-41.41c3.81-.32,7.26-.44,10.94.04,9.49,35.01,15.89,69.84,20.97,105.45l5.65,39.66c.42,2.98,2.42,5.33,4.41,6.44,2.77,1.53,5.56,1.01,8.44-.06,4.91-2.68,9.3-5.95,13.34-9.95l21.96-21.72,32.34,10.27c4.76,1.51,9.65,2.16,14.51,1.98,5.53-.2,10.06-4.65,8.66-9.92l-2.17-8.22c-8.92-23.48-19.44-45.93-31.87-67.79-7.08-12.44-14.67-23.6-23.8-35.15l20.54,4.47c-.61,2.14-.5,3.72.53,4.79.6.63,1.75,1.44,3.28,1.62,35.89,4.23,71.65,7.31,107.99,8.69,38.24,1.4,75.84,1.8,113.93-.4,16.72-.96,32.65-2.25,49.23-5.23l-14.15,94.52ZM885.94,689.05c-1.26,1.17-3.57,1.6-5.22,1.77l-38.67,4.08-84.87,1.78c-39.94-.65-79.19-2.51-119.42-7.18,11.32-1.97,21.65-5.34,30.03-13.19,10.74-9.51,14.74-23.39,16.85-37.73l66.07-3.31,93.39-9.33,52.34-8.8-10.5,71.91ZM898.35,604.67c-.34,2.29-.73,3.9-3.13,4.46l-12.97,3.05c-40.78,6.7-81.44,11.28-122.78,14.45l-74.05,4.55c1.42-23.85.35-47.36-8.17-69.6,44.56-.82,88.25-3.99,132.36-8.88l77.25-11.47,21.42-4.48-9.93,67.92ZM965.25,475.68c8.18,1.66,15.61,4.11,23.47,7.53l-5.78,7.06c-15.73,19.21-39.25,31.61-64.34,26.1l-8.58-1.88-8.59-14.37c16.38-18.39,39.25-29.42,63.82-24.44ZM925.27,347.28c-7.03-15.87-12.14-34.11-10.3-51.83,3.64-34.92,19.55-60.69,46.93-83.03,8.37,31.55,10.12,64.5-1.51,95.24-4.52,11.93-10.59,22.48-18.76,32.15l-8.75,10.34c1.71-16.25,4.77-31.59,8.48-47.57.58-2.48-1.3-4-2.94-4.33-1.77-.35-3.63.77-4.2,3.02-3.85,15.11-6.9,29.96-8.95,46.01ZM982.23,411.39c-10.42,2.23-20.16,2.02-30.39,1.49-6.1-.31-11.85-.1-17.76,1.53l8.42-15.53c6.92-12.76,15.45-24.03,26.46-33.53,17.51-15.1,39.93-22.59,62.8-19.35l16.31,2.31c-9.92,30.83-32.74,57.12-65.84,63.08ZM785.61,512.95c0,2.42,1.96,4.38,4.39,4.38s4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39-4.39,1.96-4.39,4.39ZM706.08,510.46l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31ZM734.1,450.97c8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73ZM684.57,454.01c13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17c-20.29-8.48-25.22-26.86-22.1-48.2ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM499.41,451.37c1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57ZM526.42,382.41c5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35ZM473.54,408.94c8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52-2.44-5.62-3.8-11.42-3.93-17.72ZM267.74,513.95c2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04ZM358.56,481.07l-.22,8.36c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21ZM298.85,509.1c4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53,12.54,2.84,22.55,10.27,29.41,20.34ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51ZM365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM790,508.56c-2.43,0-4.39,1.96-4.39,4.39s1.96,4.38,4.39,4.38,4.38-1.96,4.38-4.38-1.96-4.39-4.38-4.39ZM788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26ZM767.06,524.04c-2.12-.15-4.14,1.24-4.41,3.79-.22,2.12.81,4.71,3.31,5.22,2.84.57,4.76-1.75,4.98-4.09.26-2.82-1.33-4.74-3.88-4.92Z'/%3E%3Cg%3E%3Cpath class='cls-4' d='M750.17,843.42c.17.71-2.32,1.09-2.42-.14-.05-.68,2.09-1.23,2.42.14Z'/%3E%3Cpath class='cls-4' d='M166.88,829.56c-.41-1.05-.64-1.7-.84-3.04,1.24.76,1.51,2.03.84,3.04Z'/%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-3' d='M245.27,837.16l1.86.04s-.06.03-.08.05c-.59.34-1.19.27-1.78-.09Z'/%3E%3Cpath class='cls-3' d='M249.57,837.21l1.91-.08c-.6.35-1.21.45-1.82.13-.03-.02-.06-.04-.09-.05Z'/%3E%3Cpath class='cls-3' d='M274.66,837.12l1.27-.02c-.4.35-.84.33-1.27.02Z'/%3E%3Cpath class='cls-3' d='M749.62,837.1l2.46.13c-.81.29-1.82.57-2.46-.13Z'/%3E%3Cpath class='cls-3' d='M755.12,837.16l1.27-.03c-.41.31-.83.33-1.27.03Z'/%3E%3Cpath class='cls-3' d='M771.07,837.18c-1.16.52-2.54.51-3.69-.02l3.69.02Z'/%3E%3Cpath class='cls-3' d='M385.27,690.89l.45-1.59c1.83.48,1.01,1.05-.45,1.59Z'/%3E%3Cpath class='cls-4' d='M771.07,837.18c-.77,1.02-2.92,1.02-3.69-.02l3.69.02Z'/%3E%3Cpath class='cls-4' d='M752.08,837.23c-.41.15-.78.76-1.53.66-.42-.06-.93-.09-.93-.79l2.46.13Z'/%3E%3Cpath class='cls-4' d='M247.13,837.2s-.06.03-.08.05c-.21.18-.4.59-.85.53-.36-.04-.71-.34-.93-.62l1.86.04Z'/%3E%3Cpath class='cls-4' d='M251.48,837.13c-.25.28-.62.61-.97.65-.47.07-.63-.36-.85-.52-.03-.02-.06-.04-.09-.05l1.91-.08Z'/%3E%3Cpath class='cls-4' d='M275.93,837.1c-.08.34-.49.61-.73.52-.23-.08-.43-.33-.54-.5l1.27-.02Z'/%3E%3Cpath class='cls-4' d='M756.39,837.13c-.14.26-.5.58-.77.49-.24-.07-.41-.37-.5-.46l1.27-.03Z'/%3E%3C/g%3E%3Cg%3E%3Cpolygon class='cls-1' points='393.03 689.83 385.27 690.89 385.72 689.3 393.03 689.83'/%3E%3Cg%3E%3Cpath class='cls-3' d='M365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36Z'/%3E%3Cpath class='cls-3' d='M553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51Z'/%3E%3Cpath class='cls-2' d='M553.89,363.82c-.46-2.75-3.37-4.4-5.9-3.37-8.71,3.54-16.86,7.84-23.97,13.96-13.77,11.85-22.03,27.87-23.63,46.42l-5.08-6.52c-6.69-6.85-15.14-11.74-24.51-13.91-1.53-.35-3.11.33-3.96,1.1-.8.74-1.17,2-1.21,3.3-.77,22.29,10.72,43.71,33.78,46.57,1.38.17,4.02.57,4.65,2,3.77,8.49,12.73,28.26,18.77,23.08,4.41-3.78-2.66-7.43-4.56-11.52l-5.87-12.64c-.65-1.4.13-2.91,1.43-3.49l11.04-4.94c9.61-4.92,17.75-11.98,23.14-21.49,10.53-18.58,9.3-37.82,5.88-58.55ZM477.47,426.66c-2.44-5.62-3.8-11.42-3.93-17.72,8.41,3.26,14.99,8.37,19.82,15.35,3.8,6.11,6.26,12.69,7.28,19.89-10.78-1.62-18.98-8.13-23.17-17.52ZM525.48,434.74l-16.06,8.02c-5.26-22.04.95-44.84,17-60.35,5.94-5.74,12.84-9.42,20.44-13.14l1.38,11.96c2.45,21.2-4.22,42.03-22.76,53.51Z'/%3E%3Cpath class='cls-2' d='M365.76,475.75c-.32-2.55-3.84-3.52-6.21-2.81-23.78,7.08-40.75,23.47-47.78,47.13-6.69-23.2-22.88-35.29-45.58-39.75-2.74-.17-5.19,1.66-4.96,4.59.78,9.94,2.26,19.94,6.51,29.04,2.55,5.45,6.43,10.14,10.85,14.49,7.9,7.79,18.07,11.31,28.56,12.56.71,2.59,2.43,3.94,4.59,3.94s3.22-1.79,4.04-3.92c6.54-1.19,13.21-2.57,19.38-5.48,15.15-7.15,25.91-20.4,29.32-36.85,1.58-7.64,2.25-15.17,1.28-22.94ZM269.44,488.76c12.54,2.84,22.55,10.27,29.41,20.34,4.27,7.37,6.99,14.86,7.8,24.19-24.1-3.32-35.57-21.29-37.21-44.53ZM358.34,489.43c-.57,21.68-18.61,40.76-41.58,43.85,3.61-24.58,18.25-44.11,41.8-52.21l-.22,8.36Z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-3' d='M770.94,528.96c-.22,2.34-2.14,4.66-4.98,4.09-2.5-.51-3.53-3.1-3.31-5.22.27-2.55,2.29-3.94,4.41-3.79,2.55.18,4.14,2.1,3.88,4.92Z'/%3E%3Cpath class='cls-3' d='M788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26Z'/%3E%3Cpath class='cls-3' d='M794.38,512.95c0,2.42-1.96,4.38-4.38,4.38s-4.39-1.96-4.39-4.38,1.96-4.39,4.39-4.39,4.38,1.96,4.38,4.39Z'/%3E%3Cpath class='cls-4' d='M770.94,528.96c-.22,2.34-2.14,4.66-4.98,4.09-2.5-.51-3.53-3.1-3.31-5.22.27-2.55,2.29-3.94,4.41-3.79,2.55.18,4.14,2.1,3.88,4.92Z'/%3E%3Cpath class='cls-4' d='M794.38,512.95c0,2.42-1.96,4.38-4.38,4.38s-4.39-1.96-4.39-4.38,1.96-4.39,4.39-4.39,4.38,1.96,4.38,4.39Z'/%3E%3Cpath class='cls-2' d='M788.31,420.7c-1.05-.99-2.7-1.63-4.3-1.22l-26.22,6.77c-22.16,8.33-38.91,25.75-45.99,48.66-5.94-15.04-14.32-22.74-27.86-29.78-2.11-.98-5.32-.14-5.91,2.47-2.28,10.05-3.01,20.43-.7,30.55,3.48,15.26,14.12,27.32,28.75,32.31l1.7,12.22c.41,2.94,1.73,4.24,4.16,3.98,2.15-.23,3.67-1.82,3.46-4.44l-.62-7.89c-.18-2.26,1.34-3.72,3.67-3.76,15.01-.29,29.69-4.78,41.66-13.99,21.44-16.49,28.87-45.43,29.78-71.75.06-1.73-.63-3.23-1.58-4.13ZM706.67,502.21c-20.29-8.48-25.22-26.86-22.1-48.2,13.01,7.47,21.14,20.48,23.11,35.03l-1.01,13.17ZM770.9,471.82c-9.93,18.96-29.13,30.64-50.5,31.22,5.95-9.32,12.17-16.94,19.3-24.68,1.38-1.89,1.16-4.05-.47-5.4-1.34-1.1-3.61-1.06-5.26.61-6.92,6.98-12.44,14.62-18.48,23.13.76-16.79,6.94-33.18,18.61-45.73,8.76-9.42,20-15.46,32.07-19.42l15.74-3.99c-.85,15.76-3.61,30.12-11.01,44.26Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath class='cls-2' d='M832.59,266.98c-3.29-6.67-10.29-10.73-18.19-10.92-5.99-25.17-17.91-47.47-36.58-65.56,10.56-1.2,19.05-6.37,23.1-14.71,4.44-9.15,3.94-19.56-2.01-27.62-9.63-13.04-27.29-13.5-42.69-10.18-12.17,2.62-23.18,7.5-33.68,13.98-.61.38-2.51-1.75-1.91-2.23l35.51-28.45c7.02-5.63,13.34-11.43,19.2-18.17,4.1-4.72,4.79-10.92,2.42-16.67-6.3-15.24-22.95-20.09-39.36-19.88-2.38-6.78-4.49-13.16-8.9-18.8-7.32-9.36-17.71-15.21-29.56-17.52-15.29-2.97-30.77,2.88-41.29,14.21-14.37-9.22-31.62-11.19-46.76-4.41-8.44,3.78-11.75,11.87-9.8,20.73,2.29,10.38,5.21,20.28,9.87,29.93l19.39,40.14c-4.71,1.38-7.68,4.59-9.08,8.32-1.68,4.51-1.37,8.89,1.37,13.14-17.25,8.47-32.69,19.32-46.66,32.39-6.06,5.66-11.78,11.09-16.63,17.66-1.25,1.7-1.29,3.7-.29,4.98.88,1.12,4.05,2.05,5.32.57,18.31-21.38,40.3-38.87,66.11-50.76l18.96,4.4c-14.87,17.05-26.56,35.67-34.94,56.09-.96,2.35-.6,4.66,1.37,5.62,1.27.62,4.35.47,5.19-1.54,8.91-21.27,21.08-40.87,36.94-58.22l22.08,4.34c6.4,17.25,11.14,34.31,14.01,52.32l2.65,29.98c.21,2.41,1.05,4.11,3.23,4.4,1.77.23,4.47-.79,4.45-3.2-.3-29.2-5.95-54.55-15.24-81.81l18.47,3.17c24.1,23.39,41.67,53.94,51.77,85.67l5.78,21.43c-7.49,3.6-11.2,10.47-10.95,18.42.32,9.88,8.64,18.31,19.51,18.08l1.1,5.08c.44,2.04,1.8,3.24,3.59,3.35,1.42.09,3.68-.16,4.11-2.12,1-4.49-2.5-7.04,1.41-10.18,6.14-4.93,8.61-12.7,6.48-20.43-1.86-6.8-8.01-12.38-15.68-13.33-1.32-.16-2.4-1.06-2.72-2.6-8.06-38.59-26.43-74.34-53.16-103.32-.63-.68-1.67-1.1-1.3-1.67.22-.36,1.04-1.36,1.67-1.2,11.08,2.96,21.79,6.55,32.03,12.02,21.79,11.63,38.67,32.84,48.12,55.47l6.94,20.82c-5.52,3.39-9.07,8.55-9.78,14.02-.87,6.69.85,12.5,5.38,17.22,7.28,7.59,19.95,7.35,26.91-.64,5.35-6.13,6.28-14.58,2.72-21.81ZM780.47,288.71c3.5,2.83,5.02,7.66,3.44,12.56-1.33,4.16-4.46,6.74-8.07,7.37-3.96.69-7.57-.81-10.27-4.11-4.12-5.04-3.31-13.25,2.37-17.02,3.91-2.6,9.13-1.56,12.53,1.2ZM716.04,160.42c-.53,3.12-3.27,5.52-7.01,4.77l-74.87-15.09c-3.21-.65-4.95-3.25-5.15-5.82-.2-2.57,2.13-6.48,5.41-5.82l40.9,8.26,35.9,7.26c3.6.73,5.31,3.55,4.82,6.44ZM712.19,146.13l-17.46-3.42c12.16-16.17,23.09-32.63,33.62-49.74.7-2.02.35-4.01-1.22-5.05-1.53-1.02-3.93-.94-5.33,1.26-10.99,17.96-22.62,34.76-35.31,51.63l-19.19-3.91c-3.71-21.64-5.46-43.08-6.1-64.89-.06-1.99-2.58-2.84-3.77-2.72-1.9.19-3.38,1.55-3.63,3.81.26,20.8,1.85,41.07,5.35,62.26l-18.46-4.17c-10.05-17.91-18.7-35.96-25.91-55.04l-5.14-17.69c-1.44-4.96,1.29-9.45,6.22-11.49,12.52-5.16,26.65-3.37,38.13,4.12,3.26,2.13,7.13,2.63,9.96-.64,10.38-11.99,26.54-16.05,41.51-10.52,12.9,4.76,22.1,15.07,24.89,28.52.88,4.27,4.55,6.63,8.85,6.34,7.31-.5,14.43.31,20.82,3.76,8.56,4.61,14.55,14.31,9.16,19.63l-12.03,11.88-44.96,36.07ZM768.61,182.49c-13.94-9.19-28.66-15.38-44.64-19.73-1.46-.4.66-4.19,2.21-4.01,11.63-7.18,23.92-12.27,37.45-14.17,6.67-.93,12.89-.88,19.19,1.24,8.25,2.77,13.99,10.21,13.28,19.18-.57,7.15-5.35,13.51-11.93,16.07-5.01,1.94-9.95,2.08-15.56,1.42ZM826.69,278.47c-.94,4.46-3.98,7.53-7.6,8.51-4.12,1.11-8.16-.16-10.95-3.47-2.49-2.95-3.61-6.58-2.74-10.78.61-2.98,2.81-6.68,6.48-8.09,4.05-1.55,8.19-.44,11.24,2.34,2.91,2.66,4.52,6.97,3.57,11.49Z'/%3E%3Cpath class='cls-2' d='M163.92,426.4l-13.16-32.76-18.17-47.27-6.03-31.05c-.52-2.68.41-5.31,1.73-7.51l11.21-18.79c8.36-16.9,12.1-35.18,10.45-54.14-1.79-20.71-8.75-40.17-19.89-57.57l-8.91-13.93c-1.39-2.18-5.65-3.13-7.36-.6-8.65,12.8-15.24,26.54-19.86,41.26-10.49,33.42-4.54,68.81,15.88,97.08,2.72,3.76,6.79,7.18,7.76,11.68l4.27,19.63c-2.54-1.45-4.6-2.99-5.68-5.26l-9.33-19.52c-3.86-8.09-8.33-15.26-13.54-22.6-13.33-18.84-32.99-31.96-55.68-36.66-11.25-2.32-22.13-3.14-33.51-2.74-2.88.1-4.72,2.89-3.91,5.77,11.9,42.22,39.18,81.39,87.21,80.04l13.79.15c7.43.71,13.05,4.8,17.06,10.69,3.13,4.6,6.83,8.42,9.03,13.78l29.69,72.45c1.03,2.52,2.32,3.87,5.14,2.85,1.84-.67,2.7-2.77,1.81-4.98ZM87.78,323.79c-19.43.59-37.65-6.75-51.02-20.75-13.65-13.93-21.98-31.2-27.95-49.88,31.74.01,59.75,10.53,78.31,36.89,7.55,10.55,13.4,21.46,18.84,34.17l-18.18-.43ZM122.43,273.43l.55-26.95c.05-2.27-.99-3.93-3.08-4.24-1.47-.21-4.11,1.04-4.23,3.48-.76,16.71-.62,33.39.5,50.21.15.36.18.59.18.7.39.26.26.76-.13.86-.43-.43-.44-.77-.39-.75-27.45-39.68-23.89-84.22,1.25-124.67,13.63,19.06,22.47,38.36,24.91,61.47,1.73,16.54-.94,32.64-7.67,47.77l-9.78,18.26c-1.79-9.02-2.29-17.33-2.11-26.14Z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .sortby-category ul>li:nth-of-type(3)>a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 960.02 900'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: none; %7D .cls-2 %7B fill: %232e7a58; %7D .cls-3 %7B fill: %23347d5c; %7D .cls-4 %7B fill: %23fdfdfd; %7D %3C/style%3E%3C/defs%3E%3Cg id='OBJECTS'%3E%3Cg id='Generative_Object' data-name='Generative Object'%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-3' d='M624.84,315.85c-2.09,1.73-4.95-.16-7.07-.13l-20.34.3c-2.1.03-4.43,1.28-6.12-.46,10.93-1.56,22.46-1.22,33.53.29Z'/%3E%3Cpath class='cls-3' d='M474.8,333.05c.09.28.04.67-.12.83-.22.22-.66.27-1.16.34l-20.2,2.97-8.02,1.36c-.99.17-1.95-.02-2.39-.76l23.68-3.63,8.21-1.12Z'/%3E%3Cpath class='cls-3' d='M581.78,317.86l-29.3,4.56c-1.25.19-2.29.47-2.95-.62l24.39-3.59,7.86-.36Z'/%3E%3Cpath class='cls-3' d='M417.14,341.46c.14.43.08.83-.08.99-.2.19-.63.34-1.13.41l-27.12,4.08c-1.17.18-2.24.5-2.9-.71l31.22-4.77Z'/%3E%3Cpath class='cls-3' d='M531.8,324.48c.08.29,0,.66-.15.82-.18.18-.65.29-1.11.36l-17.03,2.47c-1.79.26-3.49,1.12-4.95-.04l14.02-2.2c3.22-.5,6.24-1.38,9.23-1.42Z'/%3E%3Cpath class='cls-3' d='M433.71,339.06c.12.4.07.79-.08.95-.2.22-.68.26-1.14.33l-11.21,1.74c-1.15.18-2.29.35-2.89-.68l15.32-2.35Z'/%3E%3Cpath class='cls-3' d='M490.75,330.57c.09.36,0,.7-.16.85-.19.18-.66.34-1.1.41l-11.09,1.85c-.96.16-2.03-.07-2.41-.83l14.76-2.28Z'/%3E%3Cpath class='cls-3' d='M540.26,323.15c-.14,2.14-3.89,2.28-7.29,1.31l7.29-1.31Z'/%3E%3Cpath class='cls-3' d='M589.91,316.32c-1.61,1.19-4.54,1.48-6.52.76l6.52-.76Z'/%3E%3Cpath class='cls-3' d='M369.39,348.96c.16.59-.17,1.04-.52,1.09l-1.82.26c-1.65.23-3.34.95-4.46-.22,2.1-.8,4.54-1.14,6.8-1.13Z'/%3E%3Cpath class='cls-3' d='M499.32,329.36c.23,1.38-4.94,2.39-6.8,1.15,2.06-.88,4.56-1.15,6.8-1.15Z'/%3E%3Cpath class='cls-3' d='M441.73,337.99c.21,1.28-4.56,2.27-6.78,1.3-.02-.69.56-.71,1.15-.76l5.63-.54Z'/%3E%3Cpath class='cls-3' d='M507.29,328.14c.15.61-.18,1.07-.53,1.1l-1.95.14c-1.59.11-3.25,1.1-4.34-.11,2.1-.82,4.56-1.03,6.82-1.12Z'/%3E%3Cpath class='cls-3' d='M384.76,346.55c-1.22,1.75-4.43,2.24-6.24,1.1,1.91-.79,4.15-1.05,6.24-1.1Z'/%3E%3Cpath class='cls-3' d='M547.76,322.09c-1.22,1.65-4.28,2.23-6.06,1.23,1.9-.85,4.08-.92,6.06-1.23Z'/%3E%3Cpath class='cls-3' d='M631.6,317.12c-.97.92-2.31.22-3.73.01l-1.33-.19c-.33-.05-.65-.49-.52-1.02,1.87.11,3.94.32,5.58,1.2Z'/%3E%3Cg%3E%3Cpath class='cls-3' d='M212.41,279.6c-.27-.14-.38.1-.37.22-.5.44-.54.57-.24,1.18l-4.79,10.21c-.37.79-1.95,1.7-2.68,1.44-.89-.32-1.81-1.12-2.14-2.05l-1.51-3.52,5.24-11.73c1.8-.45,3.36-1.04,4.9.07,1.35.97,1.57,2.21,1.58,4.2Z'/%3E%3Cpath class='cls-2' d='M211.79,280.99c-.92-.25-.73-1.34.24-1.18-.07.32-.09.84-.24,1.18Z'/%3E%3Cg%3E%3Cpath class='cls-2' d='M860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM952.91,433.24c-13.07-13.71-35.44-19.92-54.54-24.15,5.21-9.62,9.52-18.92,11.58-29.28l5.16-26c.68-6.36,1.98-15.49-.8-17.67-1.21-.95-2.67-1.32-4.57-1.12-28.73,3.01-53.94,18.34-71.22,42.06,1.23-22.47-2.55-43.18-11.63-62.96-7.88-18.31-18.72-34.65-31.49-49.8-1.48-1.02-2.87-1.71-4.33-1.29-1.29.36-2.82,1.26-3.83,2.69-20.1,28.63-34.3,65.61-32.56,101.03.77,11.86,3.29,22.91,7.02,34.3l-15.6.6c-.72-20.49-10.89-38.74-28.32-49.38-6.44-3.93-13.23-6.74-19.94-9.45l-2.05-1.11-1.49-.22-18-7.42c-.65.16-1.29.76-1.81,1.57-.72,1.11-1.22,2.61-1.21,3.85.01.98.33,1.81,1.11,2.18l34.18,14.72c1.37.2,2.7.96,3.98,2.29l.55.07c1.92,1.29,3.84,2.57,5.76,3.84.91.57,1.82,1.13,2.74,1.67.43.02.8.29,1.11.84.15.1.29.19.44.29l.24,1.93c.74.73,1,1.21,2.07,1.55l3.59,4.59.08.37,2.34,3.66.56,1.51,1.85,3.16c.01.13.1.34-.03.51,1.26,2.39,2.49,5.78,2.6,8.48l.05,1.13c.68.83.98,2.16,1.09,3.55.01.03.01.05.01.08.17,1.22.15,2.51-.04,3.87l.09,6.11.47.19v.72c.07.16.11.32.14.49v84.25c.03,30.52.03,61.01,0,91.47.12.51.23,1.13.32,1.81,0,.1.03.2.04.3.02.1.03.21.04.32.02.11.03.22.04.34.2,1.95.19,4.22-.37,5.96,0,.01,0,.02-.01.04-.23.92-.54,1.62-.95,1.93-.23.17-.47.31-.72.44-.02.02-.05.04-.08.04-.29.13-.58.24-.88.34-.16-.03-.39.03-.56.09l-2.62,1.78c-.23-.03-.7.07-.9.17-.37.71-.94,1.29-1.65,1.64-.1.06-.21.11-.32.15-.16-.02-.36-.03-.52.01l-1.35,1.17c-.06.14-.03.31-.04.44l-1.69,1.55c-1.7.64-2.69,2.48-3.91,3.66-.34,1.13-1.08,2.06-1.85,2.93-.11.12-.22.25-.33.37-.4.1-.5.6-.62.84.05.51-.04,1.11-.25,1.68,0,.38.05.77.13,1.19-.33.08-.65.15-.96.23-.66.73-1.56,1.11-2.58.63-13.75-24.03-43.37-34.42-69.31-23.7-3.69,1.52-5.74,5.96-7.99,8.93-11.01,20.63-10.77,43.08,4.28,62.03-18.06,3.04-32.27,13.52-39.78,29.37-.2.44-.65,1.07-.96,1.14-.19.04-.68-.39-.7-.98-7.44-8.23-19.01-12.2-30.3-9.88-15.3,3.14-25.44,16.78-25.66,32.61-13.57-2.87-27.83,1.82-35.18,13.54-1.69,2.68-2.99,4.82-6.67,4.58l-63.93,13.85-91.17,19.72c-17.31,3.74-35.62,3.19-51.72-4.31l-76.82-35.74c-4.33-2.01-8.17-4.4-11.53-7.78-7.85-7.92-13.1-18.85-13.11-30.58l-.08-252.83c-.01-8.86,2.35-16.9,5.7-24.69,4.92-11.49,13.59-20.47,24.65-25.59,2.99-2.3,7.82-3.93,11.56-4.44l1.14-.06c1.38-1.11,3.26-1.52,5-1.19l1.18.02c.73-.72,1.76-.91,3.08-.58.32-.11.91.02,1.23.08-.02-.33.13-.54.46-.61,3.08-.59,6.38-1.19,9.66-1.63.47-.06.94-.12,1.41-.18.75-.09,1.51-.17,2.27-.24.06-.01.13-.02.2-.02,1.5-.14,2.97-.22,4.4-.25.3-.05.78-.35,1.19-.27.25-.09.51-.17.77-.25.64-.2,1.3-.37,1.99-.5.7-.13,1.42-.24,2.17-.32.61-.06,1.24-.1,1.88-.13h1.14c2.13-.92,4.41-1.32,6.83-1.23l1.18.06c-.1-.34-.05-.71.09-.89.22-.27.71-.22,1.15-.29l17.52-2.75c1.48-.23,2.86-.86,3.95.21h1.15c1.73-1.1,4.16-1.24,6.22-1.13.35-.15.77-.08,1.15-.09,1.14-.49,2.32-.83,3.54-1.01.02-.01.05-.01.07-.01,1.03-.16,2.1-.2,3.19-.13.57-.23,1.17-.05,1.74-.13,5.14-1.38,10.45-2.38,15.93-3.01,4.49-.95-.71-5.75-2.67-7.34-3.87.48-7.62.97-11.27,1.48-.65-.02-1.82-.1-2.41.08-3.48.75-.63-2.56.59-3.95.04-.13.06-.31.04-.44.3-.56.7-1.02,1.19-1.4l-.05-.66h0s.04-.1.04-.1c2.49-4.74,5.69-9.34,9.19-13.36l.02-1.12,3.01-4.98.79-.98c1.89-3.37,2.3-7.39-1.66-9.32l-1.14-.13c-2.54-.09-5.08-.31-7.63-.67.4-.42.14-.59-.78-.51h-.09c-.46.09-1.37.12-1.78-.09-12.87-.59-25.89-.8-38.6.03h-1.2s-.03.02-.04.02h0c-2.9.99-6.16,1.37-9.77,1.16-.36.04-.81.28-1.25-.13-1.23.37-1.42.6-.57.69-15.84,2.51-31.36,6.7-45.62,15.26l-.92.16h0c-.6.69-1.3,1.26-2.1,1.71l-.45.04c-.35.52-.82.91-1.4,1.17l-.44.04c-.64.88-1.48,1.4-2.42,1.93h-.53s-.85,1.14-.85,1.14c-.42.1-.79.38-1.1.64h0s-.03.04-.03.04c-1.02,1.65-2.67,2.72-4.32,3.66l-4.2,4.3c-.73,1.48-1.89,2.64-3.21,3.6-1.19,1.33-1.89,2.38-2.88,3.78-2.27,2.9-4.57,5.73-6.89,8.48.05.15,0,.35-.01.46-.26.59-.65,1.07-1.16,1.43l-.04.46c-.49.96-1.09,1.83-1.79,2.61l-.05.44c-5.18,9.7-9.56,19.7-13.18,30.03l-.11.32-.02,1.15c-.17,1.14-.56,2.18-1.19,3.13l-.07,1.15c-.2,1.13-.43,2.21-1.16,3.14l-.08,1.13c0,1.89-1.05,3.69-2.46,4.92v.02h-.02v.56c-.43.98-1.05,1.8-1.87,2.46-.15.27-.65.63-.67,1.02l-1.75,2.06h0s-1.79,1.81-1.79,1.81v.02c-.25,1.23-.95,2.25-1.91,3.03l-.57.64-.02.03h0s-1.96,3-1.96,3c-.11.04-.29.02-.45,0-.98,2.07-1.7,2.28-2.05,1.63-.49-.87-.32-3.29.76-4.75l.06-1.15c.55-4.16,1.37-8.23,2.44-12.21.05-.17.09-.33.13-.47,5.33-21,11.06-41.93,18.64-62.77l8.33-22.92c1.55-4.26,3.41-7.58,6.09-11.32,13.31-18.56,29.1-34.95,47.84-48.19,6.14-4.34,15.81-2.81,23.42-.49,14.41,4.39,28.8,7,43.95,6.52,22.15-.7,42.59-8.11,60.4-21.13,20-14.61,38.4-37.63,52.94-57.79,1.02-1.41.86-3.53.48-4.78-.39-1.26-1.59-2.82-3.34-3.08l-37.66-5.62c-28.79-2.69-59.58-3.08-85.49,10.58-19.33,10.18-34.25,26.19-44.67,45.24l-8.75,17.06c-1.06,2.05-2.4,4.07-4.39,5.5-13.22,9.47-24.98,20.26-36.07,31.86-.47-.72-.13-1.19-.14-1.54h0s-1.29-.31-1.29-.31c-1.45,1.07-2.69-.21-3.71-3.86l-1.32.02h0s-6.45,13.2-6.45,13.2c.16-11.4.48-22.83-.44-34.63-.47-6.09.89-11.56,3.61-16.87l9.56-18.68c9.71-18.99,13.46-39.98,10.92-61.29-1.52-12.71-5.84-24.15-11.8-35.31l-13.28-21.7c-8.52-13.92-17.41-27.15-25.2-41.48-.93-1.71-2.79-2.45-4.4-2.34-1.4.09-3.39.95-4.25,2.7-14.11,28.63-23.87,62.2-23.16,94.45.57,26.42,10.29,51.24,28.14,70.55l14.45,14.47c3.21,3.22,6.54,7.68,7.08,12.56,2.3,20.54,1.1,40.93-1.94,61.22-.48,3.15-.54,5.47-1.64,8.54-8.68,24.22-16.22,48.46-22.55,73.52-7.48,29.6-11.87,58.79-14.36,89.86l-12.02-45.41c-1.6-6.05-1.72-11.59-.32-17.59l5.33-22.79c2.51-10.74,2.79-21.34,2.31-32.33-1.23-28.14-12.18-53.72-31.17-74.4-13.22-14.4-27.84-26.89-43.97-37.98-5.66-3.89-10.81-7.66-16.92-10.68-1.46-.71-3.6-.72-4.96.09-1.01.61-2.33,2.21-2.56,3.94-3.65,26.77-1.6,65.35,4.03,92.04,4.12,19.55,12.81,36.9,25.69,52.07,9.56,11.27,21.08,19.7,33.38,27.83l12.91,8.53c4.13,2.73,6.7,6.9,8.02,11.73l10.9,39.94,9.05,35.75,2.46,30.71c1.94,16.88,5.08,32.83,8.52,50.09l-14.88-21.28c-1.68-2.39-1.96-5.76-2.51-8.6-2.2-11.39-4.71-22.12-8.62-33.02-9.33-25.94-28.1-46.67-53.07-58.39-12.9-6.05-25.97-10.13-39.89-13.3-10.34-2.36-20.28-4.65-30.8-5.17-1.94-.09-3.76.67-4.74,1.88-1.16,1.44-1.47,3.41-.77,5.32,5.13,14.04,11.36,27.18,18.08,40.57,15.98,31.82,34.39,55.42,69.4,66.6,9.44,3.02,18.46,4.37,28.4,5.3,7.09.67,14.32,2.65,19.66,7.3,3.79,3.3,6.92,7.11,9.55,11.36l18.72,30.27,5.42,13.06c4.79,11.54,10.06,22.41,16.44,33.21l1.28,11.55c2.81,14.69,10.77,27.96,24.06,35.25l40.56,19.48,25.01,11.75c7.6,3.57,14.66,7.2,22.75,9.75,16.48,5.19,33.78,5.76,50.75,2.11l51.02-10.97,103.46-22.48c-.64,7.61,0,14.39,3.48,20.7,9.84,17.87,33.6,22.37,49.36,9.32,7.77-6.44,11.55-15.83,11.66-26.33l8.51.35c-3.03,11.75.24,23.79,8.68,31.89,8.42,8.08,20.76,10.82,32.27,7.36,15.25-4.59,24.58-19.75,22.11-35.53-.1-.68.33-1.33.66-1.24l1.11.29,1.12.03c7.36,1.07,14.56.99,21.48-1.6l.87-.32,4.36-1.8c.42-.18.9-.47,1.16-.37,1,.4-1.36,10.23,5.28,22.13,7.22,12.91,19.34,21.97,33.77,25.44,3.43.82,6.76.91,10.22.08,21.33-5.12,39.15-23.56,38.45-46.71,24.12,12.64,51.16,4.07,67.7-16.08,10.28-12.53,6.58-25.32-.86-38.44l-2.39-3.29v-.58c-1.56-1.12-2.39-3.02-3.69-4.38l-.46-.48-5.67-5.71c-.6.01-.88-.73-1.22-.97l-6.02-4.4c-.12.02-.4-.07-.56.1-5.29-3.11-10.87-5.02-17.55-6.14l5.56-7.04,2.61-5.44c.63-.24,1.01-.76,1.13-1.58.02-.11.03-.22.04-.33.02-.23.03-.47,0-.73,1.61-.31,1.91-1.25.54-2.27,1.98-6.35,2.85-12.98,2.04-19.56l-.89-7.25-.37-1.31-.67-3.63c1.18-1.14.27-3.07-1.19-3.71,1.17-1.1.96-2.21-.67-2.24v-.13c.04-1.36-.36-2.19-1.2-2.47,1.43-.99.25-3.81-1.32-2.85v-.02c.03-.16.05-.31.06-.47,0-.01,0-.02,0-.02.06-.61,0-1.22-.16-1.77,0-.04,0-.08,0-.12-.5-1.88-1.92-3.45-3.35-4.95-2.81-2.95-5.65-4.83-9.3-5.37t-.02,0s-.01,0-.02,0t-.02,0s0,0-.02,0t-.02,0s0,0-.02,0c-.65-.1-1.31-.16-2.01-.16h-.02c-.53-.02-1.09,0-1.65.04-.21-1.79-5.26-2.5-6.98-2.51-.29,0-.51.46-.66.87-.02.08-.04.16-.08.24-.9-1.11-4.47-1.11-5.55-.24-.32-1.71-3.21-1.84-2.99.01-.7-.29-1.48-.39-2.21-.2-.25.07-.49.16-.73.29-.51-1.51-1.05-1.58-1.34-.08,0,.04,0,.08-.02.12-.7-1.46-2.79-.46-3.7.59-.53-1.71-2.05-1.71-1.86.15-1.01-.26-2.05-.35-3.12-.27-.34.03-.68.07-1.02.13-.03-.21-.05-.42-.08-.63-.14-1.09-.27-2.18-.38-3.26,0-.03,0-.05-.01-.08-.26-2.17-.48-4.35-.69-6.51,1.68-.31,2.02-4,.55-4.77-.1-.06-.22-.1-.35-.12.39-.12.69-.26.7-.4,0-.1,0-.21,0-.34h0c0-.05,0-.09,0-.13,0-.26.01-.53.01-.79.21-5.15.59-20.95.13-25.94v-.24c-.02-.09-.03-.15-.05-.26-.07-.54-.14-.89-.24-1-.13-.16-.37-.23-.64-.28,1.75-.58,1.65-6.28,1.35-8.02-.04-.25-.39-.39-.75-.47-.17,0-.33-.03-.47-.09,1.06-.97,1.12-3.42-.05-4.32,1.19-.5,1.6-1.68,1.22-3.56.35-4.13.27-11.33-.07-15.52-.02-.33-.75-.49-1.22-.54.52-.33.88-.72,1.08-1.2.17-.42.22-.9.13-1.44-.08-.57-.31-1.21-.67-1.91-.01-.01-.02-.01-.01-.02-.17-.33-.38-.68-.61-1.04,1.69-.51,1.61-2.77-.18-2.89l1.15-.8c.35,1.67,1.74,1.82,1.84.06l2.53.54c.72,1.44,2.54,1.84,3,.12.1.08.21.16.31.23,2.96,2.07,8.63,1.94,11.9.69.48,1.22,1.71,1.66,3.68,1.31,2.53.3,7.98.47,10.46.25.28-.02.43-.5.52-.93t.01-.02s0-.08,0-.12c0-.05.02-.09.03-.14.1.23.21.44.39.56.64.44,9.71.52,16.66.38h.13c1.55-.03,3-.07,4.21-.13t.02,0s.03.01.04,0c1.95-.08,3.29-.2,3.54-.33.12-.06.16-.25.18-.48.33,1.65,2.92,1.79,3.03.07,0-.03,0-.06.01-.1.33.48.98.49,1.24-.02.14.52.45.89.89,1.19.32.22,6.89-.12,7.76-.3.31-.06.42-.65.47-1.11,0-.05,0-.09.01-.13.19.12.66.22,1.29.3.03.01.06.01.1.01,1.17.13,2.84.19,4.32.19h0c1.75,0,3.25-.09,3.37-.25.12-.16.16-.39.16-.63,0,.02.02.05.03.09.45,1.22.91,1.4,1.09.46v-.02c.04-.17.07-.37.08-.6.29.21.62.38.98.51.54.19,1.15.3,1.77.3.01-.01.02-.01.03,0,1.29,0,2.6-.43,3.36-1.31.68,1.49,1.23,1.46,1.33-.19.96.2,2.74.45,4.55.58,0-.01.02-.01.03,0,1.43.09,2.89.1,3.94-.08.51-.08.93-.21,1.22-.39.36-.24.48-.72.58-1.13.48,1.69,2.52,1.68,2.44-.11.41.09.8.18,1.16.26,1.76.35,3.51.39,5.26.14.24-.04.49-.08.73-.13l.84-1.35c.66,1.57,2.13,1.47,1.76-.27,1.17.62,3.84.79,4.26-.51.58,1.68,3.95,1.24,3.68-.58l4.54.43h.36s.01-.01.02,0c1.61-.02,2.91-.3,3.93-.85h0c.66-.35,1.2-.82,1.62-1.39.64,1.67,3.82.96,4.1-.67h.2c.13.01.25,0,.36-.02.06-.01.12-.02.18-.04.06-.01.12-.02.17-.05.11-.04.21-.09.3-.15.09-.06.17-.13.24-.21.68,1.69,4.39,1.15,4.31-.72,1.74.34,3.84.34,4.94-1.07.75,1.25,1.28,1.33,1.14.16h0c-.02-.13-.04-.27-.07-.43.58.76,1.82.52,1.94-.45.36,1.15.84,1.1.97-.1h.22c.29,0,.54-.03.74-.11.21-.09.38-.21.52-.37.66,1.28,1.19,1.41,1.16.26t0,0h0c0-.14-.02-.28-.04-.45.48.73,1.2.44,1.33-.41l1.12.98c1.66-.15,6.76-1.17,6.76-2.93v-.07c.58.75,1.88.44,1.84-.5.82,1.56,2.76,1.23,2.47-.57,2.53.19,4.19-.39,4.99-1.77.97,1.32,2.4,1.03,2.36-.44,0-.12-.02-.26-.05-.41.76.76,1.54.24,2.14-.48.13-.15.26-.32.39-.51.39.35.84.76,1.34.72.86-.07,13.96-6.44,15.63-7.4.3-.17.13-.89-.02-1.35l1.44-1.17c1.21,1.3,2.92.43,2.29-1.27,1.07-.21,1.67.14,1.81,1.07h0s0,.02,0,.03c0,.02,0,.04,0,.06.05.34.04.75-.05,1.23,0,.02,0,.04-.01.05,0,.09-.03.18-.04.27-1.9.33-2.68,5.98-.81,6.6l-.54,2.01c-1.85.18-2.52,4.84-.67,5.33-.09.09-.16.18-.22.28-.05.07-.09.14-.12.22-.06.13-.11.27-.13.41-.02.11-.03.23-.04.34-.02.13-.02.26-.01.4,0,.03,0,.07.01.1.01.1.01.2.03.3-1.72.02-2.32,2.54-.55,2.92-2.37,3.59-4.49,10.38-5.29,15.17-.07.39-.12.76-.17,1.12-.05.35.59.67,1.04.84-1.61.2-1.76.74-.19,1.18-1.2,1.31-1.78,3.01-1.72,5.12-.4.2-.52.34-.3.4.03,0,.07,0,.12.01.02.01.04.01.07.02.02,0,.05.01.08.02-.06.04-.12.09-.16.15,0-.01,0,0-.02.02-.05.06-.1.12-.14.19-.04.06-.07.13-.1.2-.03.07-.05.14-.06.22-.01.04-.02.08-.02.12-.02.11-.03.23-.03.36v.1c-.55-.06-1.01.1-1.45.4-.37.24-3.4,7.71-1.65,8.07-.98.76-2.63,3.04-1.6,3.79l-1.49.26c-1.88,2.75-6.54,12.45-7.69,15.69-.11.33.46.77.87,1.03-2.86,2.5-5.23,5.59-7.1,9.29-1.33,2.13-2.72,4.21-4.18,6.24-.01.01-.01.03-.03.04-.53.75-1.08,1.51-1.64,2.25,0,.02-.02.03-.03.04-.63.84-1.27,1.68-1.93,2.5-2,2.54-4.1,4.99-6.3,7.36l-.16.27-.44.72s0,.01,0,.02l-1.17,1.96h0s-.83,1.4-.83,1.4c-2.91,1.23-5.51,3.28-7.82,6.13-2.97,2.05-5.25,4.44-6.83,7.18l-1.33,1.26c-.22-.49-.42-.48-.61.02-6.76,5.62-14.55,10.11-22.73,13.43-1.43-.79-1.9-.57-.91.76l.86,1.23c1.28-.19,2.41,0,3.38.57.55,2.28,1.28,3.03,2.19,2.25l1.18-.06h.4c5.98-2.85,11.96-5.37,17.69-10.11.62,4.55.32,8.73-.12,13.23-.13,1.34-.95,2.23-1.24,3.15l-.58,1.82-.61,1.28c-3.22,6.71-10.15,11.32-16.69,14.86-8.36,4.52-17.59,7.39-26.94,9.22-.15-.14-.34-.15-.48-.14-.41.32-.89.54-1.41.58l-1.62.13-1.44.47-5.44.88-3.75.45-7.32.72c-3.44.99-7.27-.54-9.85.96l-1.78,1.78c-.05.47-.18.9-.44,1.28.08.26-.01.98-.22,1.17.78,2.06,2.56,3.53,4.97,3.36l14.09-.99,5.89-.68c.44-.28.93-.33,1.42-.43l21.76-4.63c17.24-5.22,37.12-16.06,39.74-34.74l.19-14.48c.04-3.46,1.27-5.38,3.69-7.68,13.47-12.79,25.21-27.02,34.31-43.38,12.24-22.01,19.39-45.94,22.84-70.82l2.23-19.13c6.2-9.88,4.75-21.9-3.26-30.3ZM296.82,205.38c34.72-22.84,80.56-16.35,120.08-9.99l-18.88,24.13c-8.75,10.08-17.82,19.25-28.58,27.17-24.28,18.02-54.93,23.68-84.39,16.85l-23.52-5.45,36.18-17.53,39.75-14.57,18.94-6.41c1.09-.37,1.26-1.92,1.04-2.6-.29-.89-1.66-1.44-2.81-1.1l-16.47,4.98c-13.57,4.09-26.65,8.26-39.89,13.52-13.68,5.27-26.21,11.43-39.62,18.75,7.96-19.84,21.3-35.97,38.17-47.75ZM183.3,203.37l-5.58-32.08-2.79-17.09c-.22-1.36-.95-2.05-2.01-2.1-1.4-.08-2.44.96-2.24,2.57l2.49,20.71,6.56,42.74,4.72,25.38c-26.38-22.54-41.03-48.99-40.13-83.97.7-27.52,7.81-53.81,19.32-79.14,10.48,19.83,23.99,37.4,34.77,57.1,9.72,17.31,13.45,36.51,10.79,56.19-1.6,11.79-4.81,22.75-10.26,33.3l-8.37,16.2-7.27-39.81ZM125.1,428.24c-3.63-11.8-7.41-22.27-12.03-33.27-7.83-18.55-16.03-36.46-25.14-54.54-.72-1.43-2.35-1.91-3.14-1.74-.97.2-1.98,1.53-1.5,2.79l2.03,5.35,12.86,27.63c8.37,17.98,15.5,35.99,20.91,55.71l-14.1-9.29-15.47-10.93c-20.35-17.4-33.38-41.21-37.72-67.76-4.23-25.83-5.43-51.57-3.55-78.03,21.71,14.12,41.8,29.82,58.53,49.53,14.18,16.97,22.56,37.22,24.65,59.27,1.08,11.42.97,22.5-1.52,33.67l-4.81,21.61ZM67.42,528.39l43.36,39.21,12.6,12.41c-11.69-1.15-22.06-3.02-32.93-6.05-15.87-5.14-29.84-14.06-41.05-26.38-9.67-11.01-17.18-22.94-23.34-36.18l-16.43-35.28c23.34,3.93,49.8,9.87,70.29,21.37,17.73,9.94,31.1,25.32,39.4,43.86,4.81,11.31,8.2,22.63,9.94,35.29l-38.59-34.77-19.71-16.74c-1.19-1-2.72-1-3.46-.36-.92.8-1.26,2.55-.08,3.62ZM186.72,435.49l-.09,205.01-.27,26.23c-11.99-23.5-20-47.2-24.93-72.81-10.06-46.17-11.37-89.57-4.18-135.69,5.12-10.78,10.62-20.85,18.27-29.72,3.59-4.17,7.24-7.86,12.7-9.93l-1.5,16.91ZM187.17,408.57c10.18-38.69,32.29-67.05,71.6-77.15,14.48-3.54,28.82-5.35,43.75-5.46l27.27,1.02-19.97,31.24-49.24,7.34,22.08-12.6c1.12-.47,1.62-1.56,1.4-2.39-1-3.97-8.22.42-14,3.61l-25.88,14.33c-23.45,3.27-41.05,14.96-51.16,36.31-1.11,1.88-3.77,2.9-5.85,3.75ZM715.7,672.16c6.94,0,12.56,5.62,12.56,12.55s-5.62,12.55-12.56,12.55-12.55-5.62-12.55-12.55,5.62-12.55,12.55-12.55ZM638.49,624.33c.64-9.98,3.53-19.29,9.67-27.23,6.8-3.78,14.14-4.91,21.99-4.07,19.71.99,37.42,14.07,42.36,33.5,1.56,6.15.4,12.7.43,18.97l.1,20.58c-4.35.49-6.43,3.28-7.31,1.48l-16.6-23.72c-.78-1.11-2-1.38-3.09-1.17-.89.18-2.11,2.12-1.33,3.23l11.06,15.76,6.3,9.63-4.14,5.86c-13.55-8.42-28.04-13.39-43.49-16.37-11.26-8.67-16.85-22.36-15.95-36.45ZM537.01,768.62c-13.57,0-24.58-11-24.58-24.57s11.01-24.57,24.58-24.57,24.57,11,24.57,24.57-11,24.57-24.57,24.57ZM567.71,733.38c-2.25-6.74-6.67-11.88-12.25-15.94-1.61-1.17-2.2-2.5-2.21-4.55-.08-9.12,3.89-18.21,12.04-22.76,11.59-6.45,26.22-2.3,33.29,8.71.37,1.56.27,2.85-.02,4.3-1.21,5.84.06,11.38,3.28,16.64-8.68,2.4-15.85,7.13-20.36,15.13-4.94.76-9.44.23-13.77-1.53ZM609.14,775.91c-13.57,0-24.57-11-24.57-24.57s11-24.56,24.57-24.56,24.56,11,24.56,24.56-11,24.57-24.56,24.57ZM673.32,732.02c-10.54,7.15-23.56,8.33-35.42,4.33-5.36-10.54-15.18-15.87-26.45-17.59-9.07-5.04-5.82-18.27-.59-27.74,6.36-11.51,16.65-19.55,29.42-22.74,5.32-1.33,10.29-1.78,15.86-.63,14.2,2.93,27.64,8.22,40.13,15.48.72,1.8.9,3.46.26,5.35-10.33,1.31-20.3,3.01-29.9,6.72-1.22.47-1.8,1.84-1.63,2.63.32,1.52,1.74,1.77,3.25,1.45l30.2-6.32,3.68,5.1c-9.81,8.14-17.99,17.93-24.24,29.21-1.14,2.06-2.66,3.46-4.57,4.75ZM747.25,761.2c-6.78,11.34-18,18.9-30.98,21.36-13.49-1.86-26.47-11.37-32.64-23.03-4.61-8.72-5.48-19.09-1.03-28.04,3.07-6.18,7.11-11.49,11.49-16.73l11.79-14.05c2.18,1.76,4.48,2.41,7.47,2.99-.44,8.87-.69,17.25.24,25.88.14,1.36,1.26,2.39,2.27,2.31,1.47-.1,2.3-1.41,2.29-3l-.2-25.17c2.73-.63,5.07-1.19,7.62-2.57l19.59,24.19c7.8,10.81,8.89,24.48,2.09,35.86ZM826.02,709.2c1.52,8.57-9.46,18.49-17.12,23.56-16.16,10.71-36.98,10.75-52.9-1.24-6.96-12.85-15.49-23.76-26.3-33.45l3.24-4.68c10.54,1.8,20.83,3.89,31.05,7.24,1.26.41,2.65-.14,3.04-.95.49-1.05.15-2.78-1.22-3.35-9.76-4.1-19.86-6.51-30.63-7.48-.53-1.73-.28-3.36.08-5.38,12.26-6.68,25.21-11.59,39.06-14.2l10.52-.05c20.19,1.69,37.62,19.85,41.18,39.98ZM782.14,598.77c7.23,5.84,9.87,16.81,10.85,25.73,1.52,13.78-3.26,26.48-12.97,35.83-1.56,1.5-3.36,2.19-5.51,2.55-14.56,2.47-28.16,7.5-40.8,14.81-1-2.58-2.1-4.03-3.53-5.8l17.55-25.93c.74-1.09-.23-2.84-.98-3.18-.74-.34-2.06-.44-2.85.48-6.95,8.05-12.79,16.47-18.63,25.84-1.98-1.68-3.46-2.73-6.3-2.93l.26-33.51-.03-2.36c-.02-2.49.56-4.83.73-7.14,1.1-1.13,1.47-2.56,1.81-4.04.94-.87,1.81-3.05,2.36-4.16.64-.25,1.1-.72,1.27-1.33.04-.16,0-.37,0-.53.42-.27.71-.67.82-1.18.96-.59,1.62-1.63,2.25-2.51,1.21-1.69,2.67-3.06,4.24-4.44l4.39-2.86c3.25-2.12,6.87-2.81,9.26-4.55,11.09-3.09,24.79-4.79,35.81,1.21ZM853.06,372.42c8.99-9.45,19.45-17.23,31.5-22.35l23.06-6.65c-.82,15.24-3.98,29.77-8.7,44.14-4.1,11.37-9.54,21.38-17.41,30.56-18.22,19.81-43.04,32.09-70.95,33.74l14.94-29.06,8.29-21.14c4.92-10.87,11.33-20.3,19.27-29.24ZM791.93,273.64c13.2,16.15,23.59,33.73,30.94,53.13,11.83,31.24,9,61.62-4.62,91.66-3.88,8.57-7.34,16.87-12.76,24.88l-3.96-59.86c-.39-2.16-2.11-3.08-3.47-2.93-2.03.22-3.13,1.8-3.01,4l3.24,60.28-15.19-20.04c-10.51-16.11-17.08-34.13-19.61-53.24-3.22-35.59,9.53-68.66,28.44-97.88ZM765.6,409.72c2.91,6.91,6.2,13.11,10.27,19.26,4.73,7.37,9.59,14.31,15.15,20.73l.64.57c-.82-.68-.47.65-.64.17-.27-.11-.44-.07-.59.05-14.23-3-28.86-3.14-43.95-.52l-.16-39.73,19.28-.53ZM947.59,460.99c-5.58,6.32-12.82,10.73-20.82,14.04-39.51,16.33-93.45,20.57-136.39,20.58-14.96-.09-29.12-.65-43.97-2.34l-.03-34.98c10.23-1.85,20.15-2.17,30.42-1.4l35.79,5.17c32.98,4.9,86,6.87,112.98-12.7,1.3-.94,1.7-2.63,1.46-3.84-.31-1.57-1.72-2.57-3.67-2.22-9.22,5.29-18.91,8.7-29.49,10.53-20.13,3.63-40.08,4.67-61.09,2.27,24.14-5.79,45.27-18.96,60.02-39.41,15.55,2.19,30.4,6.72,44.05,14.23,4.92,2.71,8.88,6.22,12.13,10.57,4.33,6.25,3.69,13.74-1.39,19.5ZM849.07,419.25c4.44-5.01,14.28-16.48,11.51-19.01-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM799.59,643.57l-.94,1.28c.45-.38.85-.84,1.2-1.35-.08.03-.17.05-.26.07ZM880.88,597.73c.1.06.21.13.31.2l1.72-.7-2.03.5ZM862.15,608.55l-1.97,2.11c.8-.68,1.54-1.42,2.2-2.22-.08.04-.15.07-.23.11ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01ZM860.58,400.24c-.76-.7-2.65-.64-3.38.34l-11.69,15.77c-.7.93-.11,2.84.54,3.34.61.47,2.22.46,3.02-.44,4.44-5.01,14.28-16.48,11.51-19.01Z'/%3E%3Cg%3E%3Cpath class='cls-3' d='M335.5,319.56c-.33.61-1.33.75-2.28.63l-5.55-.7c-.63-.08-.83-.78-.67-1.1,2.02-.36,6.48.25,8.5,1.17Z'/%3E%3Cpath class='cls-3' d='M338.3,329.01c.96-4.28,2.26-6.05-1.67-9.32,1.97.23,3.22,2.21,3.49,4.2.25,1.85-.67,3.71-1.82,5.12Z'/%3E%3Cpath class='cls-3' d='M334.5,334.96c.03-1.93,1.83-3.53,3.01-4.98-.44,1.9-1.57,3.67-3.01,4.98Z'/%3E%3Cpath class='cls-3' d='M697.84,342.81c-.35-.01-.98.11-1.45-.12-.3-.15-.59-.5-.6-.98.82.12,1.61.4,2.05,1.1Z'/%3E%3Cg%3E%3Cpath class='cls-3' d='M325.22,318.29c-3.39,1.23-9.33.63-14.05-.21l-10.48.24-13.42.53c-.44.02-.63-.32-.65-.53.2-.12.66-.73,1.23-.75l18.37-.43,17.23.41c.83.02,1.4.55,1.77.74Z'/%3E%3Cpath class='cls-3' d='M274.35,319.37c.14.55.07.84-.05,1.03-.33.51-1.31.21-1.73.3l-21.06,4.62c-7.84,2.58-15.01,5.82-22.04,9.86-.44.25-1.06.09-1.3.13.25-.98,1.25-1.13,2.19-1.6l11.48-5.74c10.46-4.4,21.61-6.87,32.52-8.61Z'/%3E%3Cpath class='cls-3' d='M193.36,371.41c-.08.69-.14,1.26-.55,2.03-4.79,9.05-8.76,18.2-11.76,27.94-.1.33-.95.43-.98.37l3.53-10.53c2.07-6.18,4.82-11.57,7.97-17.27.53-.96.43-2.44,1.79-2.55Z'/%3E%3Cpath class='cls-3' d='M162.85,426.76c-1.45-2.82,1.86-9.87,2.57-12.68.13.03.5.06.53.35l-3.1,12.33Z'/%3E%3Cpath class='cls-3' d='M334.48,336.08l-9.23,13.46,1.18-3.26c-.7-.78-1.01-1.29-.89-1.82.17-.74,1.52-.48,2.19-.39,3.32-2.92,4.48-7.91,6.75-7.99Z'/%3E%3Cpath class='cls-3' d='M285.42,318.33c.21.56-.11,1.15-.46,1.14l-2-.04c-2.66-.06-5.12,1.23-7.36.07l9.83-1.16Z'/%3E%3Cpath class='cls-3' d='M162.79,427.9l-.76,4.75c1.27-.1,1.63-.99,2.04-1.63-.1,2.09-1.03,4.3-3.96,4.39,2.24-2.91.27-6.73,2.67-7.51Z'/%3E%3Cpath class='cls-3' d='M175.08,416.4l2.48-4.95c1.24.81-.7,4.91-2.48,4.95Z'/%3E%3Cpath class='cls-3' d='M324.08,352.05c-.37,1.23-1.01,2.33-1.91,3.45.6.37.96.34,1.32.5-.3.35-.58.62-1.05.63-1.17.03-1.01-.27-1.2-.63-.37-.7,1.6-3.98,2.85-3.95Z'/%3E%3Cpath class='cls-3' d='M178.86,406.04c.07-1.11.2-2.44,1.19-3.13.8,1.02.09,2.9-1.19,3.13Z'/%3E%3Cpath class='cls-3' d='M177.63,410.32c.08-1.12.21-2.43,1.16-3.14.63.53.35,1.21.22,1.69-.24.87-.61,1.39-1.38,1.45Z'/%3E%3Cpath class='cls-3' d='M195.2,368.36c-.05.61-.04,1.22-.32,1.89-.21.52-.81.87-1.47.72.13-1.14.63-2.29,1.79-2.61Z'/%3E%3Cpath class='cls-3' d='M203.31,357.52l-4.55,6.47c-.71,1.01-1.2,2.11-2.34,2.02l4.86-6.84c.63-.88,1.33-1.47,2.03-1.65Z'/%3E%3Cpath class='cls-3' d='M217.94,342.15c-.38,1.92-2.6,3.15-4.35,3.7l4.35-3.7Z'/%3E%3Cpath class='cls-3' d='M225.13,337.18c.28-.96,1.14-1.54,2.1-1.71,0,.41-.11.96-.34,1.25-.46.55-1.19.41-1.76.46Z'/%3E%3Cpath class='cls-3' d='M164.53,431.03c-.02-1.34,1.17-2.12,1.98-3.04-.1,1.29-.67,2.65-1.98,3.04Z'/%3E%3Cpath class='cls-3' d='M222.84,338.44c.14.64-.14,1.23-.71,1.48s-1.13.44-1.71.45c.64-.83,1.36-1.83,2.42-1.93Z'/%3E%3Cpath class='cls-3' d='M325.3,350.21c.05.73-.46,1.32-1.19,1.4-.05-.27-.13-.67-.03-1.07s.78-.57,1.22-.33Z'/%3E%3Cpath class='cls-3' d='M196.4,366.47c.05.28.14.67.05,1.09s-.76.59-1.21.34c.06-.72.44-1.31,1.16-1.43Z'/%3E%3Cpath class='cls-3' d='M170.78,422.5c.06-1.02.87-1.66,1.75-2.07-.05,1.07-.61,2.02-1.75,2.07Z'/%3E%3Cpath class='cls-3' d='M173.2,419.41c.39-.94.93-1.9,1.87-2.46,0,1.19-.54,2.46-1.87,2.46Z'/%3E%3Cpath class='cls-3' d='M224.69,337.22c.07.15.16.8,0,.98-.29.35-1.04.36-1.41.19.09-.72.69-1.11,1.4-1.17Z'/%3E%3Cpath class='cls-3' d='M167.08,427.36l1.91-3.04c.28,1.36-.71,2.65-1.91,3.04Z'/%3E%3Cpath class='cls-3' d='M206.18,353.75l3.21-3.6c-.3,1.69-1.7,2.94-3.21,3.6Z'/%3E%3Cpath class='cls-3' d='M219.04,341.51c0-.53.33-1.12.84-1.13.06.57-.29,1-.84,1.13Z'/%3E%3Cpath class='cls-4' d='M356.4,219.58l-18.94,6.41,1.09-1.66,17.49-5.9c.61-.94.24-1.51-.89-1.42l-15.78,4.76-1.21-.91,16.47-4.98c1.15-.34,2.52.21,2.81,1.1.22.68.05,2.23-1.04,2.6Z'/%3E%3Cpath class='cls-4' d='M173.19,153.37l-1.02.13c.26,6.12.87,12.28,1.83,18.49.02,1.42-.26,2.54-.83,3.39l-2.49-20.71c-.2-1.61.84-2.65,2.24-2.57,1.06.05,1.79.74,2.01,2.1l2.79,17.09-1.3-.34c-.79-5.99-1.87-11.85-3.23-17.58Z'/%3E%3Cpath class='cls-3' d='M177.72,171.29c-.95-.2-1.82-.01-2.37.51-1.27,1.2-.29,3.79-2.18,3.58l-2.49-20.71c-.2-1.61.84-2.65,2.24-2.57,1.06.05,1.79.74,2.01,2.1l2.79,17.09Z'/%3E%3Cpath class='cls-3' d='M356.4,219.58l-18.94,6.41c.83-1.73.69-3.42.7-5.13l16.47-4.98c1.15-.34,2.52.21,2.81,1.1.22.68.05,2.23-1.04,2.6Z'/%3E%3Cpath class='cls-3' d='M155.45,571.29c2.33,2.55.2,7.93-4.56,9.35.62-2.89.25-5.35-1.06-8.13.97-1.45,4.41-2.54,5.62-1.22Z'/%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-4' d='M685.8,645.36c5.82,8.04,11.43,16.22,16.83,24.55l-.56,1.38-6.3-9.63-11.06-15.76c-.78-1.11.44-3.05,1.33-3.23,1.09-.21,2.31.06,3.09,1.17l16.6,23.72-1.24.37-16.32-23.32c-1.17-1.31-2.64-1-2.37.75Z'/%3E%3Cpath class='cls-4' d='M719.23,632.66c-.21,0-.4-.02-.56-.07-1.19-.36-.98-1.94.53-2.29l.03,2.36Z'/%3E%3Cpath class='cls-4' d='M721.74,619.12c-.34,1.48-.71,2.91-1.81,4.04l1.81-4.04Z'/%3E%3Cpath class='cls-4' d='M725.37,613.63c-.17.61-.63,1.08-1.27,1.33l1.27-1.33Z'/%3E%3Cpath class='cls-4' d='M726.19,611.92c-.11.51-.4.91-.82,1.18l.82-1.18Z'/%3E%3Cpath class='cls-4' d='M732.68,604.97c-1.57,1.38-3.03,2.75-4.24,4.44.92-1.9,2.59-3.21,4.24-4.44Z'/%3E%3Cpath class='cls-4' d='M746.33,597.56c-2.39,1.74-6.01,2.43-9.26,4.55,2.5-2.04,6.1-3.67,9.26-4.55Z'/%3E%3Cpath class='cls-3' d='M705.73,667.56c-1.5.98-1.02,3.44-2.23,3.58l-1.43.15-6.3-9.63-11.06-15.76c-.78-1.11.44-3.05,1.33-3.23,1.09-.21,2.31.06,3.09,1.17l16.6,23.72Z'/%3E%3Cpath class='cls-3' d='M789.31,668.21l-17.35.1c-1.04-.44-1.73-2.49-1.79-3.77l9.15-2.34c1.83-.47,3.77,1.28,5.25,1.85,2.11.81,4.22.95,4.75,4.16Z'/%3E%3Cpath class='cls-3' d='M719.23,632.66c-.13-.08-.35-.11-.56-.07-.32.05-.63.27-.64.69l-.3,12.18c-.03,1.26-3.83.9-3.82-.54l.17-15.96,5.12,1.34.03,2.36Z'/%3E%3Cpath class='cls-3' d='M720.25,612.87c-.99,1.23-3.91,1.36-4.58.19,1.02.48,1.92.1,2.58-.63.36-.4.64-.9.83-1.42.21-.57.3-1.17.25-1.68.72.62,1.79,2.46.92,3.54Z'/%3E%3Cpath class='cls-3' d='M746.33,597.56c-2.39,1.74-6.01,2.43-9.26,4.55-.2-1.21,1.18-1.77,2.46-1.77,2.3-1.44,4.14-3.38,6.8-2.78Z'/%3E%3Cpath class='cls-3' d='M719.95,608.49c.11-.12.22-.25.33-.37.77-.87,1.51-1.8,1.85-2.93.24,1.63-.75,2.81-2.18,3.3Z'/%3E%3Cpath class='cls-3' d='M721.74,619.12c-.34,1.48-.71,2.91-1.81,4.04.13-1.81.35-2.69,1.81-4.04Z'/%3E%3Cpath class='cls-3' d='M735.13,594.62c-.28,1.22-1.36,1.95-2.62,1.78l2.62-1.78Z'/%3E%3Cg%3E%3Cpath class='cls-3' d='M712.55,358.68l-7.62-3.46-36.88-15.73c-1.6-.68-3.28-.68-4.12-2.11,4.11.24,7.15,3.38,8.22,1.8.68-1.01,1.53-3.64,1.51-4.85-.31-2.08-3.72-2.05-5.11-2.68l-12.68-5.72-10.03-4.15-6.64-2.08c-.69-.22-1.36-.57-2.07-.84-.38-.16-.77-.28-1.18-.36-.49-.09-1.02-.1-1.59,0-.87.17-1.72-.68-1.53-1.51l13.37,3.93,4.05,1.5,41.3,17.38c1.2.51,2.15.77,2.75,1.68-1.11-.16-2.2-.43-3.44-.92l-14.37-5.74c-1.75,1.32-2.78,4.64-1.75,6.46l33.56,14.5c.47-.85,1.13-1.34,1.49-1.36.79-.04.49,1.2.97,1.83l1.79,2.42Z'/%3E%3Cpath class='cls-3' d='M738.53,593.5c-.82.5-1.65,1.21-2.84,1.03.3-.1.59-.21.88-.34.03,0,.06-.02.08-.04.8-.48,1.33-1.33,1.67-2.37.01-.02.01-.03.01-.04.56-1.74.57-4.01.37-5.96-.01-.12-.02-.23-.04-.34-.01-.11-.02-.22-.04-.32-.01-.1-.03-.2-.04-.3-.09-.68-.2-1.3-.32-1.81.03-30.46.03-60.95,0-91.47-.02-28.22-.07-56.47-.14-84.74v-.72l-.47-.19c.3-.08.72-.06.87.1.18.2.34.51.34,1.28v176.06c2.22,2.36,1.04,3.98.12,6.56-.32.88.95,2.76-.45,3.61Z'/%3E%3Cpath class='cls-3' d='M266.98,373.65c-1.43.03-2.9.11-4.4.25-.07,0-.14.01-.2.02-.76.07-1.52.15-2.27.24-.47.06-.94.12-1.41.18-3.28.44-6.58,1.04-9.66,1.63-.33.07-.48.28-.46.61-.1-.45-.02-.74.1-.94.21-.35.85-.19,1.13-.24l13.76-2.32c1.29-.22,2.64-.62,3.41.57Z'/%3E%3Cpath class='cls-3' d='M236.95,378.31c-3.75.59-8.59,2.21-11.56,4.44-.12-.91.37-1.46,1.31-1.81l7.18-2.63c1.22-.44,2.22-.88,3.07,0Z'/%3E%3Cpath class='cls-3' d='M723.39,367.32l-.24-1.93c-.15-.1-.29-.19-.44-.29-1.28-.83-2.56-1.67-3.85-2.51-1.92-1.27-3.84-2.55-5.76-3.84,2.39.31,4.18,2.63,6.46,3.94l4.28.69c.44,1.49-.15,2.69-.45,3.94Z'/%3E%3Cpath class='cls-3' d='M736.45,391.15c-.11-2.7-1.34-6.09-2.6-8.48.82.27,1.35,1.03,1.41,2.07.17,3.37,2.86,4.89,1.19,6.41Z'/%3E%3Cpath class='cls-3' d='M737.56,399.78c.06-1.09.14-2.51.04-3.87,0-.03,0-.05-.01-.08-.11-1.39-.41-2.72-1.09-3.55.64.02,1.34.4,1.35.85l.04,2.39c.03,1.56.7,3.25-.33,4.26Z'/%3E%3Cpath class='cls-3' d='M322.16,364.92c-1.02,0-2.11.02-3.19.13-.02,0-.05,0-.07.01-1.22.18-2.4.52-3.54,1.01-.27-1.38,4.89-2.39,6.8-1.15Z'/%3E%3Cpath class='cls-3' d='M282.95,370.95c-2.42-.09-4.7.31-6.83,1.22-.22-1.34,4.87-2.4,6.83-1.22Z'/%3E%3Cpath class='cls-3' d='M274.98,372.18c-.64.03-1.27.07-1.88.13-.75.08-1.47.19-2.17.32-.68.14-1.35.31-1.99.5-.26.08-.52.16-.77.25-.16-.56.17-1.04.51-1.06l1.93-.14c1.66-.11,3.19-1.05,4.37,0Z'/%3E%3Cpath class='cls-3' d='M314.21,366.16c-2.06-.11-4.49.03-6.22,1.12.04-1.49,4.54-2.44,6.22-1.12Z'/%3E%3Cpath class='cls-3' d='M243.09,377.06c-1.74-.33-3.62.08-5,1.19.78-1.7,3.51-2.29,5-1.19Z'/%3E%3Cpath class='cls-3' d='M731.47,377.49l-2.34-3.66c1.45.57,1.84,2.29,2.34,3.66Z'/%3E%3Cpath class='cls-3' d='M247.35,376.5c-1.32-.33-2.35-.14-3.08.58-.12-.98.58-1.44,1.59-1.24.46.08,1.05.15,1.49.66Z'/%3E%3Cpath class='cls-3' d='M729.05,373.46l-3.59-4.59c1.76.56,3.26,2.93,3.59,4.59Z'/%3E%3Cpath class='cls-3' d='M733.88,382.16l-1.85-3.16c1.62-.05,1.79,1.86,1.85,3.16Z'/%3E%3C/g%3E%3Cpath class='cls-3' d='M725.37,613.63c-.17.61-.63,1.08-1.27,1.33.15-.28-.04-.97.45-1.19.26-.13.54-.17.82-.14Z'/%3E%3Cpath class='cls-3' d='M728.68,599.47c-.31.14-.68.12-.91.07l1.35-1.17c.1.41-.09.95-.44,1.1Z'/%3E%3Cpath class='cls-3' d='M731.61,596.57c0,1.1-.86,1.89-1.97,1.79.11-.04.22-.09.32-.15.71-.35,1.28-.93,1.65-1.64Z'/%3E%3Cpath class='cls-3' d='M727.73,599.98c-.04,1.14-.88,1.25-1.69,1.55l1.69-1.55Z'/%3E%3Cpath class='cls-3' d='M732.68,604.97c-1.57,1.38-3.03,2.75-4.24,4.44.52-2.1,2.55-3.34,4.24-4.44Z'/%3E%3Cpath class='cls-3' d='M726.19,611.92c-.11.51-.4.91-.82,1.18-.07-.72.35-.89.82-1.18Z'/%3E%3Cg%3E%3Cpath class='cls-4' d='M849.07,419.25c-.8.9-2.41.91-3.02.44-.65-.5-1.24-2.41-.54-3.34l11.69-15.77c.73-.98,2.62-1.04,3.38-.34,2.77,2.53-7.07,14-11.51,19.01Z'/%3E%3Cpath class='cls-2' d='M849.07,419.25c-.8.9-2.41.91-3.02.44-.65-.5-1.24-2.41-.54-3.34l11.69-15.77c.73-.98,2.62-1.04,3.38-.34,2.77,2.53-7.07,14-11.51,19.01Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-2' d='M372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM418.95,1.82c-.82-1.04-2.38-1.9-4.39-1.81-33.94,1.44-67.11,12.65-94.14,33.44-36.3,27.92-52.09,70.55-57.17,115.08-.83,7.24-.72,14.88-3.4,21.75-15.14,26.24-29.7,52.25-42.68,79.66l-11.25,25.39h0s.01.01.01.01c.66.86,1.63,1.08,2.88.65,1.51.19,2.44,1.3,2.78,3.34l.67.23h.04s0,.01,0,.01l.1.03c8.05-18.62,16.97-36.63,26.45-54.93,8.24-15.92,16.56-31.19,25.85-46.41,3.12-5.12,6.66-8.32,12.25-10.73,8.92-3.86,18.08-6.48,27.62-9.09,26.71-7.31,51.93-18.18,71.41-38.11,16.02-16.4,26.45-35.88,31.97-58.17l12.21-55.68c.39-1.77-.36-3.58-1.22-4.66ZM403.36,45.24l-6.54,24.83c-8.81,27.18-27.26,49.66-52.21,63.54-11.43,6.35-23.06,10.85-35.58,14.69l-27.84,8.55,6.3-7.58c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18-6.38,6.39c-1.3,1.31-2.5,2.79-4.52,4.07,1.27-18.52,4.72-35.87,10.43-53.15,6.34-19.19,16.19-36.21,29.97-50.99,24.66-26.46,63.39-42.27,99.89-44.7l-7.93,36.73ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2ZM372.8,49.85c-.91-.48-1.94-.38-2.9.75-26.79,31.35-54.31,61.69-83.25,91.11l-4.75,5.18c.73-.53,1.3-.47,1.74-.08,29.56-30.01,59.41-63.61,87.84-95.96.36-.41,1.83.64,1.19,1.4-26.47,31.55-53.2,63.03-82,92.62l-3.18,4.4c30.21-30.54,58.98-62.59,86.1-96.22,1.01-1.26.13-2.71-.79-3.2Z'/%3E%3Cpath class='cls-4' d='M275.52,153.28l6.38-6.39c.66,1.14-.05,2.43-2.12,3.86-1.13,1.65-2.31,2.52-3.53,2.58-.24.01-.49,0-.73-.05Z'/%3E%3Cpath class='cls-4' d='M287.49,149.27l-6.3,7.58-.61-1.19c2.01-2.45,4.31-4.58,6.91-6.39Z'/%3E%3Cpath class='cls-4' d='M373.59,53.05c-27.12,33.63-55.89,65.68-86.1,96.22l3.18-4.4c28.8-29.59,55.53-61.07,82-92.62.64-.76-.83-1.81-1.19-1.4-28.43,32.35-58.28,65.95-87.84,95.96-.09.1-.19.19-.28.29l-1.46-.21,4.75-5.18c28.94-29.42,56.46-59.76,83.25-91.11.96-1.13,1.99-1.23,2.9-.75.92.49,1.8,1.94.79,3.2Z'/%3E%3Cpath class='cls-3' d='M287.49,149.27l-6.3,7.58c0,.22-.27.75-.58.73-2.83-1.73-3.23-3.84-4.36-4.25-.21-.09-.45-.11-.73-.05l6.38-6.39c.73-.53,1.3-.47,1.74-.08.6.52.96,1.63,1.19,2.62,1.01-.98,1.71-1.63,2.66-.16Z'/%3E%3Cpath class='cls-2' d='M373.59,53.05c-27.12,33.63-55.89,65.68-86.1,96.22-1.57.12-1.79,1.75-3.63,2.6-.1-1.96-.27-3.91-1.96-4.98l4.75-5.18c28.94-29.42,56.46-59.76,83.25-91.11.96-1.13,1.99-1.23,2.9-.75.92.49,1.8,1.94.79,3.2Z'/%3E%3C/g%3E%3C/g%3E%3Cg%3E%3Cpath class='cls-3' d='M376.79,347.78c.08,1.34-4.75,2.3-6.24,1.1,1.9-.8,4.16-1.06,6.24-1.1Z'/%3E%3Cg%3E%3Cpath class='cls-2' d='M674.49,335.64c-.17,1.41-.72,2.93-1.21,3.85-.25.5-.49.82-.65.87-3.01-.63-5.91-1.62-8.7-2.98-.1.54-.25.51-.47-.03l-8.15-3.62c-.05.54-.22.52-.47,0-.4-.22-.81-.43-1.22-.64-.81-.42-1.63-.82-2.46-1.2t-.01,0c-.42-.19-.84-.38-1.26-.56-1.26-.55-2.54-1.05-3.84-1.51-.44-.15-.87-.3-1.31-.45-1.17-.38-2.35-.74-3.55-1.06-14.63-4.78-29.92-6.81-45.8-4.48l-80.79,11.81c-.64-.16-1.39-.2-2.16-.14-.3.02-.61.06-.91.1-.32.06-.65.12-.96.2-.44.11-.87.25-1.26.41-.34.13-.65.28-.92.44h-1.17c-.56-.02-1.19-.03-1.85-.01-.14,0-.28.01-.43.02-.25.02-.49.04-.73.06-.25.03-.5.06-.75.1-.17.02-.34.05-.51.09-.11.02-.22.04-.34.07-.47.11-.92.25-1.32.42-.08.03-.15.06-.21.09-.24.12-.46.25-.65.39l-1.18-.02c-.77-.04-1.69-.03-2.63.05-.18.01-.36.03-.54.06-.58.06-1.16.16-1.7.3-.12.04-.25.07-.36.11-.6.18-1.13.42-1.56.73h-1.17c-.2-.01-.41-.01-.62-.01s-.42,0-.64.01c-.21,0-.42.01-.63.02-.22.02-.43.03-.64.05s-.42.05-.63.08c-.21.03-.42.06-.63.11-.21.04-.42.09-.62.14-.11.03-.23.06-.34.1-.11.03-.21.06-.31.1-.19.06-.37.13-.55.21-.22.1-.44.2-.65.32l-1.72.16c-.35-.04-.7-.07-1.05-.09-1.45-.1-2.96-.02-4.34.37-.71.2-1.39.49-2.01.88l-1.18.19c-2.91-.13-6.38.21-9.59.9-.46.09-.91.19-1.35.3-.48.12-.96.24-1.42.37-.03,0-.05.01-.08.02-.52.15-1.03.31-1.52.48-.26.09-.51.18-.76.27l-1.34-.03c-1.13-.21-2.56-.18-3.92.04-.13.02-.26.05-.39.07-.96.17-1.87.44-2.6.79-.1.04-.18.08-.27.12-.37.05-1.01.25-1.4.14-.84.04-1.68.09-2.51.16-.15.02-.3.03-.46.05-1.3.12-2.58.28-3.85.5-1.28.2-2.54.46-3.79.76-1.15.28-2.3.59-3.43.94l-2.35.08c-.56-.05-1.2-.07-1.88-.04-.56.02-1.14.09-1.7.19-.08.02-.16.03-.24.05-.38.08-.74.18-1.08.31-.26.1-.51.21-.74.34-.2.11-.38.24-.54.38l-1.2-.04c-4.9.56-9.8,1.19-14.69,1.88-1.39.2-2.78.39-4.16.59-.29.04-.58.08-.87.13-3.48.51-6.95,1.06-10.42,1.63l-1.14.72-1.18-.05c-.53-.05-1.08-.08-1.64-.07-.39,0-.78.02-1.17.05-.28.02-.56.05-.84.1-.17.02-.35.06-.52.09-.06.01-.13.02-.2.04-.43.1-.85.22-1.25.39-.42.16-.82.37-1.19.63-.41.06-.79-.04-1.18.12-2.3-.03-4.72-.02-6.79,1.1l-1.16-.02c-.62,0-1.24.03-1.88.06-4.25.24-8.81,1.11-12.66,2.14l-1.63.41c-3.61.02-7.2.44-10.77,1.28-1.87.67-7.78-.27-9.15-1.3-.91-.68-1.66-4.46-.44-5.04,6.2-1.17,12.43-2.12,18.69-2.85l1.33-.77c.39-.06.81.08,1.18-.06,2.2.04,5.05-.12,6.78-1.13,0,0,0,0,.02,0,.39,0,.8.07,1.16-.08,2.1.01,4.35-.08,6.24-1.09.57-.01,1.18.09,1.73-.14,2.14.11,4.29-.16,6.24-1.1.33.04.94.15,1.16-.32.62.24,1.16.31,1.83.29,3.52-.12,27.62-3.7,28.67-4.73.17-.17.43-.26.72-.33.38.38,1,.17,1.25-.05,2.61.22,13.41-.89,14.6-2.04.16-.16.38-.24.62-.29t.02-.01s.03-.01.05-.01h.03l1.24.23c2.42-.02,4.68-.45,6.78-1.3.41-.04.85-.13,1.18-.18l2.32.2,28.65-4.33.92-.62,1.19-.21h.06c4.59.31,10.45-.78,14.7-2.28.53-.08,1.17.2,1.76-.06h.03c2.41.15,4.67-.24,6.77-1.15h0c.4,0,.78.05,1.15-.09,2.14-.04,5.03-.11,6.82-1.12l1.26-.06c7.72-.51,15.82-1.76,23.25-3.61l1.17-.02c2.79.4,5.22-.04,7.29-1.31.36-.09,1.12,0,1.43.18,2.08.02,4.21-.22,6.07-1.24l1.76-.28,1.8.26c10.11-1.68,20.26-3.09,30.46-4.2.26-.75,1.15-.73,1.61-.79,2.17.21,4.38,0,6.47-.74h.01s.02-.01.04-.02c.29-.21,1.11-.18,1.4-.76l2.06.31c10.5-.88,20.99-.89,31.47-.02l1.18.07c1.66.82,3.52,1.22,5.58,1.21.32.04.88-.02,1.23-.13l.99.88c.71.2,1.42.41,2.13.62.4.12.79.24,1.18.36,12.03,3.64,23.79,8.11,35.27,13.41,1.92-.06,2.31,1.56,2.09,3.37Z'/%3E%3Cpath class='cls-3' d='M361.75,358.84l-10.76,1.78-27.09,4.17c-.11-.35.12-.99.76-1.1l10.99-1.8c1.91-.31,4.05.17,5.31-1.91-1.91-1.26-3.07-3.53-4.15-4.83l-6.5.65c-1.67.16-3.14.85-4.42.12.06-1.39,1.57-.66,2.36-.78l25.5-3.88,7.66-1.1c.1.27.05.7-.1.87-.17.18-.65.41-1.12.46l-12.91,1.59-5.49,1.28.72,3.97c2.02-1.11,3.54,1.12,4.87,1.29,5.98.73,11.84-2.72,14.37-.78Z'/%3E%3Cg%3E%3Cpath class='cls-4' d='M241.07,681.06c0,3.25-2.64,5.88-5.88,5.88s-5.88-2.63-5.88-5.88,2.63-5.88,5.88-5.88,5.88,2.63,5.88,5.88Z'/%3E%3Cpath class='cls-4' d='M256.88,637.8c0,2.73-2.22,4.95-4.95,4.95s-4.94-2.22-4.94-4.95,2.21-4.94,4.94-4.94,4.95,2.21,4.95,4.94Z'/%3E%3Cpath class='cls-4' d='M271.81,711.04c0,2.97-2.4,5.37-5.37,5.37s-5.36-2.4-5.36-5.37,2.4-5.36,5.36-5.36,5.37,2.4,5.37,5.36Z'/%3E%3Cpath class='cls-4' d='M281.89,611.4c0,2.55-2.07,4.61-4.62,4.61s-4.61-2.06-4.61-4.61,2.07-4.62,4.61-4.62,4.62,2.07,4.62,4.62Z'/%3E%3Ccircle class='cls-4' cx='277.48' cy='667.55' r='5.19'/%3E%3Cpath class='cls-4' d='M295.8,453.92c-1.25.58-2.37.08-3.2-1.7-3.53-7.53-9.63-13.11-16.64-17.26l-18.53-8.49-34.09-15.4c-1.12-.51-1.76-1.68-1.94-2.5-.2-.83.91-3.01,2.08-2.54l13.55,5.45,36.64,16.57c15.04,6.8,27.05,23.55,22.13,25.87Z'/%3E%3Cpath class='cls-4' d='M377.92,356.23l-14.54,2.2c3.84-1.01,8.39-1.88,12.66-2.14.64-.03,1.26-.05,1.88-.06Z'/%3E%3Cpath class='cls-4' d='M385.87,355.15c-2.11.81-4.55,1.14-6.79,1.1,1.94-1.13,4.53-1.19,6.79-1.1Z'/%3E%3Cpath class='cls-4' d='M393.86,353.8l-6.81,1.23c.37-.26.77-.47,1.19-.63.4-.17.82-.29,1.25-.39.07-.02.14-.03.2-.04.17-.03.35-.07.52-.09.28-.05.56-.08.84-.1.39-.03.78-.05,1.17-.05.56-.01,1.11.02,1.64.07Z'/%3E%3Cpath class='cls-4' d='M426.32,348.9c.08.38-.24.59-.67.5l-15.61,2.16-15,2.29c.44-.56,1.08-.86,1.91-.91,3.21-.5,6.43-.99,9.65-1.44.29-.05.58-.09.87-.13,1.38-.2,2.77-.39,4.16-.59,4.89-.67,9.79-1.3,14.69-1.88Z'/%3E%3Cpath class='cls-4' d='M433.7,347.71l-6.18,1.23c.16-.14.34-.27.54-.38.23-.13.48-.24.74-.34.34-.13.7-.23,1.08-.31.08-.02.16-.03.24-.05.56-.1,1.14-.17,1.7-.19.68-.03,1.32-.01,1.88.04Z'/%3E%3Cpath class='cls-4' d='M450.09,345.22l-14.04,2.41c1.13-.35,2.28-.66,3.43-.94,1.25-.3,2.51-.55,3.79-.76,1.27-.21,2.55-.38,3.85-.5.16-.02.31-.03.46-.05.83-.07,1.67-.12,2.51-.16Z'/%3E%3Cpath class='cls-4' d='M458.67,344.06l-7.18,1.02c.09-.04.17-.08.27-.12.72-.31,1.64-.59,2.6-.79.13-.02.26-.05.39-.07,1.42-.26,2.89-.32,3.92-.04Z'/%3E%3Cpath class='cls-4' d='M474.73,341.75l-14.72,2.34c.25-.09.5-.18.76-.27.49-.17,1-.33,1.52-.48.03-.01.05-.02.08-.02.46-.13.94-.25,1.42-.37.44-.11.89-.21,1.35-.3,3.2-.66,6.64-.99,9.59-.9Z'/%3E%3Cline class='cls-1' x1='475.91' y1='341.56' x2='474.73' y2='341.75'/%3E%3Cpath class='cls-4' d='M483.31,340.4c-2.39.23-5,.78-7.4,1.16.62-.39,1.3-.68,2.01-.88,1.38-.39,2.89-.47,4.34-.37.35.02.7.05,1.05.09Z'/%3E%3Cpath class='cls-4' d='M491.29,339.11c-1.98.73-4.18.94-6.26,1.13.21-.12.43-.22.65-.32.18-.08.36-.15.55-.21.1-.04.2-.07.31-.1.11-.04.23-.07.34-.1.2-.05.41-.1.62-.14.21-.05.42-.08.63-.11.21-.03.42-.06.63-.08s.42-.03.64-.05c.21-.01.42-.02.63-.02.22-.01.43-.01.64-.01s.42,0,.62.01Z'/%3E%3Cpath class='cls-4' d='M499.25,337.86l-6.79,1.25c.43-.31.96-.55,1.56-.73.11-.04.24-.07.36-.11.54-.14,1.12-.24,1.7-.3.18-.03.36-.05.54-.06.94-.08,1.86-.09,2.63-.05Z'/%3E%3Cpath class='cls-4' d='M507.22,336.66l-6.79,1.22c.19-.14.41-.27.65-.39.06-.03.13-.06.21-.09.4-.17.85-.31,1.32-.42.12-.03.23-.05.34-.07.17-.04.34-.07.51-.09.25-.04.5-.07.75-.1.24-.02.48-.04.73-.06.15-.01.29-.02.43-.02.66-.03,1.3-.02,1.85.02Z'/%3E%3Cpath class='cls-4' d='M514.6,335.64c-2.01.29-4.05.99-6.21,1.01.27-.16.58-.31.92-.44.39-.16.82-.3,1.26-.41.31-.08.64-.14.96-.2.3-.04.61-.08.91-.1.77-.06,1.52-.02,2.16.14Z'/%3E%3Cpath class='cls-4' d='M516.74,381.22c-27.71,12.82-62.92,1.39-91.66,3.89-11.99,1.04-23.91,3.88-33.66,11.03-6.96,5.1-13.6,9.36-22.05,11.69-21.28,5.86-43,2.43-64.22-3.39-14-3.84-28.35-5.86-42.44-2.25-1.59.41-2.9-.87-3.02-2.1-.15-1.4.76-2.37,2.39-2.81,11-2.98,22.35-2.76,33.55-.29l25.63,5.65c9.87,2.18,19.58,3.26,29.68,2.8,14.47-.67,27.1-5.78,38.54-14.26,18.99-14.05,47.38-12.26,70.56-10.12,19.35,1.78,36.8,2.68,55.19-4.48,1.5-.58,2.85.29,3.22,1.73.24.92-.27,2.24-1.71,2.91Z'/%3E%3Cpath class='cls-4' d='M612.46,469.23c-.19-1.72-1.42-3.37-2.46-4.01-1.3-.8-3.27-1.22-4.88-.56l-22.27,9.08c-40.23,18.76-72.68,48.52-76.29,95.52-11.75-21.18-26.73-34.12-50.05-41.54-13.02-3.81-26.28-5.44-39.91-5.14-3.34.07-6.2,3.12-5.58,6.57,2.65,14.7,5.98,28.76,10.21,43.04,9.02,30.38,29.95,51.91,60.6,60.07l15.74,4.2c5.72,1.99,10.09,6.35,11.27,12.04l-5.11,15.59c-.12,2.32,1.96,3.99,3.82,4.2,2.13.24,4.03-.86,4.76-2.98l7.01-20.45c1.72-5.01,4.4-8.64,9.19-11.22l21.86-11.77c26.59-15.96,47.93-38.29,57.26-68.35,8.54-27.54,7.92-55.79,4.83-84.29ZM477.5,584.02c-4.78-5.17-11.37-12.79-14.44-9.23-.78.91-1.26,3.51.05,4.76,14.86,14.26,27.76,30.42,37.71,48.32-.2.12-.05.3.12.24.78.45-.02,1.28-.55.65l-.28-.29-14.19-3.93c-21.42-5.06-39.79-18.68-49.81-38.41-5.19-10.21-8.74-20.61-11.21-31.74l-5.27-23.75c32.93.98,62.48,11.01,78.56,41.24,6.46,12.15,10.15,25.06,10.7,38.85l.66,16.59c-8.93-15.79-19.74-30-32.05-43.3ZM602.12,541.88c-7.69,33.91-30.13,58.79-60.22,75.18l-16.05,8.74c7.22-20.39,16.16-38.43,26.46-56.72l12.58-20.29c1.06-1.72,1.09-3.53-.18-4.66-1.27-1.14-3.81-1.42-4.9.23l-13.62,20.7c-10.8,18.21-19.34,36.95-27.35,57.1-1.56-11.63-2.16-22.16-4.97-33.01-.99-32.8,8.45-60.93,33.15-82.72l13.49-10.52c13.8-9.2,28.29-16.5,44.22-22.25,2.02,23.14,2.53,46.05-2.61,68.22Z'/%3E%3Cpath class='cls-4' d='M620.56,361.57l-17.08-1.95c-14.59-1.68-28.94-1.02-43.27,3.31-1.67.51-2.84-.63-3.03-1.58-.2-1,.14-2.18,1.38-2.68,17.27-6.95,38.56-5.28,57.1-2.8,10.92,1.47,21.7.74,31.79-3.24,1.55-.61,2.78-.58,3.49.65,3.25,5.58-18.9,9.61-30.38,8.29Z'/%3E%3Cpath class='cls-4' d='M654.84,333.73l-9.74-3.78c-1.4-.54-3.09-.42-3.91-1.64,1.2.32,2.38.68,3.55,1.06.44.15.87.3,1.31.45,1.3.47,2.58.97,3.84,1.51.42.18.84.37,1.26.56t.01,0c.83.39,1.65.79,2.46,1.2.41.21.82.42,1.22.64Z'/%3E%3Cpath class='cls-4' d='M655.31,333.73c-.05.54-.22.52-.47,0h.47Z'/%3E%3Cpath class='cls-4' d='M663.46,337.35c-1.65-.09-6.31-2.09-8.15-3.62l8.15,3.62Z'/%3E%3Cpath class='cls-4' d='M663.93,337.38c-.1.54-.25.51-.47-.03l.47.03Z'/%3E%3Cpath class='cls-4' d='M718.64,379.27c.07.86-1.08,2.67-2.38,2.05-6.16-2.96-12.61-4.37-19.85-3.13l-95.72,16.33-95.16,16.38-93.82,16.38-56.62,9.59c-10.54,1.79-19.92,5.47-27.86,12.85-9.49,8.8-15.56,21.21-15.58,34.76l-.17,224.36c0,9.89,2.89,18.57,7.16,26.5,5,9.29,13.09,9.43,12.08,13.4-1.15,4.52-11.98-1.54-17.31-11.18-4.84-8.74-7.59-18.62-7.59-29.02l.03-221.63c0-14.08,5.17-27.37,14.18-37.7,8.59-9.86,20.12-15.09,32.93-17.31l104.99-18.18,81.33-14.22,85.62-14.79,71.57-12.14c7.51-1.27,21.76,1.47,22.17,6.7Z'/%3E%3Cline class='cls-1' x1='733.88' y1='382.16' x2='732.03' y2='379'/%3E%3Cline class='cls-1' x1='737.65' y1='405.89' x2='737.56' y2='399.78'/%3E%3Cpath class='cls-1' d='M736.57,594.19c-.29.13-.58.24-.88.34'/%3E%3Cg%3E%3Cpath class='cls-3' d='M426.32,348.9c.08.38-.24.59-.67.5l-15.61,2.16-15,2.29c-.07-.97,1.13-1.45,2.2-1.59l10.7-1.4,14.97-2.34c1.33-.21,2.52-.47,3.41.38Z'/%3E%3Cpath class='cls-3' d='M474.73,341.75l-14.72,2.34c-.16-.51,0-1.11.68-1.21l11.14-1.8c1.15-.18,2.32-.34,2.9.67Z'/%3E%3Cpath class='cls-3' d='M377.92,356.23l-14.54,2.2c-.46-.48-.04-.85.4-.75,1.63-.96,3.35-.25,4.88-.57l5.34-1.13c1.44-.31,2.84-.72,3.92.25Z'/%3E%3Cpath class='cls-3' d='M450.09,345.22l-14.04,2.41c.36-1.98,3.99-1.43,7.21-1.88,2.44-.34,4.61-1.2,6.83-.53Z'/%3E%3Cpath class='cls-3' d='M458.67,344.06l-7.18,1.02c-.15-.14-.15-.7.15-.75l6.99-1.22c.04-.17.1.64.04.95Z'/%3E%3Cpath class='cls-3' d='M654.84,333.73l-9.74-3.78c-1.4-.54-3.09-.42-3.91-1.64,1.39-.38,2.69.29,4.09.83l8.45,3.24c.69.26,1.02.81,1.11,1.35Z'/%3E%3Cpath class='cls-3' d='M483.31,340.4c-2.39.23-5,.78-7.4,1.16-.23-1.43,5.21-2.42,7.4-1.16Z'/%3E%3Cpath class='cls-3' d='M663.46,337.35c-1.65-.09-6.31-2.09-8.15-3.62,2.32-.03,7.1,1.84,8.15,3.62Z'/%3E%3Cpath class='cls-3' d='M385.87,355.15c-2.11.81-4.55,1.14-6.79,1.1.08-1.54,4.72-2.44,6.79-1.1Z'/%3E%3Cpath class='cls-3' d='M393.86,353.8l-6.81,1.23c-.18-1.37,4.88-2.41,6.81-1.23Z'/%3E%3Cpath class='cls-3' d='M507.22,336.66l-6.79,1.22c-.17-.61.15-1.08.5-1.1l1.94-.14c1.64-.12,3.2-1.07,4.35.02Z'/%3E%3Cpath class='cls-3' d='M499.25,337.86l-6.79,1.25c-.17-.62.16-1.08.52-1.11l1.92-.14c1.65-.12,3.18-1.05,4.35,0Z'/%3E%3Cpath class='cls-3' d='M514.6,335.64c-2.01.29-4.05.99-6.21,1.01-.17-.54.16-1.03.5-1.08l1.88-.26c1.42-.21,3.09-1,3.83.33Z'/%3E%3Cpath class='cls-3' d='M433.7,347.71l-6.18,1.23c-.19-.58.14-1.06.48-1.11l1.83-.27c1.53-.22,2.86-.81,3.87.15Z'/%3E%3Cpath class='cls-3' d='M491.29,339.11c-1.98.73-4.18.94-6.26,1.13.12-1.3,4.75-2.26,6.26-1.13Z'/%3E%3Cpath class='cls-3' d='M718.64,379.27c.07.86-1.08,2.67-2.38,2.05-6.16-2.96-12.61-4.37-19.85-3.13l-95.72,16.33-95.16,16.38-93.82,16.38-56.62,9.59c-10.54,1.79-19.92,5.47-27.86,12.85-9.49,8.8-15.56,21.21-15.58,34.76l-.17,224.36c0,9.89,2.89,18.57,7.16,26.5,5,9.29,13.09,9.43,12.08,13.4-1.15,4.52-11.98-1.54-17.31-11.18-4.84-8.74-7.59-18.62-7.59-29.02l.03-221.63c0-14.08,5.17-27.37,14.18-37.7,8.59-9.86,20.12-15.09,32.93-17.31l104.99-18.18,81.33-14.22,85.62-14.79,71.57-12.14c7.51-1.27,21.76,1.47,22.17,6.7Z'/%3E%3Cpath class='cls-3' d='M516.74,381.22c-27.71,12.82-62.92,1.39-91.66,3.89-11.99,1.04-23.91,3.88-33.66,11.03-6.96,5.1-13.6,9.36-22.05,11.69-21.28,5.86-43,2.43-64.22-3.39-14-3.84-28.35-5.86-42.44-2.25-1.59.41-2.9-.87-3.02-2.1-.15-1.4.76-2.37,2.39-2.81,11-2.98,22.35-2.76,33.55-.29l25.63,5.65c9.87,2.18,19.58,3.26,29.68,2.8,14.47-.67,27.1-5.78,38.54-14.26,18.99-14.05,47.38-12.26,70.56-10.12,19.35,1.78,36.8,2.68,55.19-4.48,1.5-.58,2.85.29,3.22,1.73.24.92-.27,2.24-1.71,2.91Z'/%3E%3Cpath class='cls-3' d='M620.56,361.57l-17.08-1.95c-14.59-1.68-28.94-1.02-43.27,3.31-1.67.51-2.84-.63-3.03-1.58-.2-1,.14-2.18,1.38-2.68,17.27-6.95,38.56-5.28,57.1-2.8,10.92,1.47,21.7.74,31.79-3.24,1.55-.61,2.78-.58,3.49.65,3.25,5.58-18.9,9.61-30.38,8.29Z'/%3E%3Cpath class='cls-3' d='M295.8,453.92c-1.25.58-2.37.08-3.2-1.7-3.53-7.53-9.63-13.11-16.64-17.26l-18.53-8.49-34.09-15.4c-1.12-.51-1.76-1.68-1.94-2.5-.2-.83.91-3.01,2.08-2.54l13.55,5.45,36.64,16.57c15.04,6.8,27.05,23.55,22.13,25.87Z'/%3E%3Cpath class='cls-3' d='M241.07,681.06c0,3.25-2.64,5.88-5.88,5.88s-5.88-2.63-5.88-5.88,2.63-5.88,5.88-5.88,5.88,2.63,5.88,5.88Z'/%3E%3Cpath class='cls-3' d='M271.81,711.04c0,2.97-2.4,5.37-5.37,5.37s-5.36-2.4-5.36-5.37,2.4-5.36,5.36-5.36,5.37,2.4,5.37,5.36Z'/%3E%3Ccircle class='cls-3' cx='277.48' cy='667.55' r='5.19'/%3E%3Cpath class='cls-2' d='M256.88,637.8c0,2.73-2.22,4.95-4.95,4.95s-4.94-2.22-4.94-4.95,2.21-4.94,4.94-4.94,4.95,2.21,4.95,4.94Z'/%3E%3Cpath class='cls-2' d='M281.89,611.4c0,2.55-2.07,4.61-4.62,4.61s-4.61-2.06-4.61-4.61,2.07-4.62,4.61-4.62,4.62,2.07,4.62,4.62Z'/%3E%3Cpath class='cls-2' d='M612.46,469.23c-.19-1.72-1.42-3.37-2.46-4.01-1.3-.8-3.27-1.22-4.88-.56l-22.27,9.08c-40.23,18.76-72.68,48.52-76.29,95.52-11.75-21.18-26.73-34.12-50.05-41.54-13.02-3.81-26.28-5.44-39.91-5.14-3.34.07-6.2,3.12-5.58,6.57,2.65,14.7,5.98,28.76,10.21,43.04,9.02,30.38,29.95,51.91,60.6,60.07l15.74,4.2c5.72,1.99,10.09,6.35,11.27,12.04l-5.11,15.59c-.12,2.32,1.96,3.99,3.82,4.2,2.13.24,4.03-.86,4.76-2.98l7.01-20.45c1.72-5.01,4.4-8.64,9.19-11.22l21.86-11.77c26.59-15.96,47.93-38.29,57.26-68.35,8.54-27.54,7.92-55.79,4.83-84.29ZM477.5,584.02c-4.78-5.17-11.37-12.79-14.44-9.23-.78.91-1.26,3.51.05,4.76,14.86,14.26,27.76,30.42,37.71,48.32-.2.12-.05.3.12.24.78.45-.02,1.28-.55.65l-.28-.29-14.19-3.93c-21.42-5.06-39.79-18.68-49.81-38.41-5.19-10.21-8.74-20.61-11.21-31.74l-5.27-23.75c32.93.98,62.48,11.01,78.56,41.24,6.46,12.15,10.15,25.06,10.7,38.85l.66,16.59c-8.93-15.79-19.74-30-32.05-43.3ZM602.12,541.88c-7.69,33.91-30.13,58.79-60.22,75.18l-16.05,8.74c7.22-20.39,16.16-38.43,26.46-56.72l12.58-20.29c1.06-1.72,1.09-3.53-.18-4.66-1.27-1.14-3.81-1.42-4.9.23l-13.62,20.7c-10.8,18.21-19.34,36.95-27.35,57.1-1.56-11.63-2.16-22.16-4.97-33.01-.99-32.8,8.45-60.93,33.15-82.72l13.49-10.52c13.8-9.2,28.29-16.5,44.22-22.25,2.02,23.14,2.53,46.05-2.61,68.22Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .sortby-category ul>li:nth-of-type(4)>a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 1361.88 1100'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %234d8a71; %7D .cls-2 %7B fill: %23fefefe; %7D .cls-3 %7B fill: %233c7e63; %7D .cls-4 %7B fill: %23fcfdfd; %7D %3C/style%3E%3C/defs%3E%3Cg id='OBJECTS'%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-3' d='M451.05,231.69l-65.32-18.09c-4.63-1.28-5.13-4.85-5.88-6.81-1.18-3.08,1.58-11.11,6.83-9.57l64.03,18.81c5.03,1.48,8,3.73,8.37,7.93.22,2.54.1,9.98-8.03,7.73Z'/%3E%3Cpath class='cls-3' d='M983.92,186.99c-4.17,1.2-5.76-5.08-5.18-7.68.81-3.62,2.55-6.88,7.95-8.53l62.49-19.11c5.18-1.58,8.82,4.34,8.54,7.87-.43,5.36-3.12,7.18-8.94,8.85l-64.86,18.61Z'/%3E%3Cpath class='cls-3' d='M481.92,138.99c3.3,3.38,2.24,8.4,1.29,10.47-1.11,2.42-7.25,4.22-10.61.95l-45.78-44.57c-3.01-2.93-3.03-8.26-1.69-10.43,2.32-3.75,9.37-4.96,13.12-1.12l43.67,44.7Z'/%3E%3Cpath class='cls-3' d='M968.83,105.19c-2.95,3.06-7.64-.08-8.87-2.09-1.34-2.19-2.76-7.64.2-10.82l41.47-44.58c3.36-3.61,7.93-2.88,10.24-.92,3.61,3.07,5.54,7.96,1.23,12.43l-44.27,45.96Z'/%3E%3Cpath class='cls-1' d='M1204.19,755.22c-3.88,6.97-9.11,13.43-12.85,17.9-3.29-2.94-4.26-5.75-5.37-9.79,2.1-1.73,4.01-9.69,4.69-12.15l13.53,4.04Z'/%3E%3Cpath class='cls-3' d='M901.53,132.32l-120.25-13.07-42.7-108.65c-2.89-7.36-7.86-11.18-14.61-10.53-5.04.49-9.32,3.57-11.75,9.74l-42.79,108.96-116.28,12.16c-6.02.63-10.39,5.13-10.78,9.53-.26,3.03,1.09,7.69,4.51,10.75l86.75,77.69-27.71,118.6c-1.33,5.69,1.52,10.8,5.67,12.56,2.92,1.24,7.56.68,11.57-1.7l102.09-60.51,103.01,61.75c5.64,3.39,11.51.38,13.18-1.98,1.35-1.91,2.94-7.09,2.11-10.77l-26.84-118.36,86.72-78.41c4.92-4.45,5.37-16.97-1.9-17.76ZM799.05,223.66l25.42,113.69-98.61-58.28-100.18,57.9,25.69-113.44-84.24-76.91,114.24-12.63,43.42-108.92,44.71,109.32,111.24,12.8-81.69,76.47Z'/%3E%3Cg%3E%3Cpath class='cls-3' d='M1324.68,739.2c-59.05-6.86-109.59,19.46-141.38,74.22-9.5-15.73,3.95-26.57,8.04-40.29,4.25-7.26,3.53-10.38-5.37-9.8-9.29,7.65-12.21,25.6-25.52,34.94,16.5-58.48,7.54-113.38-38.22-154.21-18.99,29.89-32.08,62.99-20.23,99.64,8.3-23.78,10.05-46.33,23.25-72.04,30.18,32.23,33.16,75.93,20.88,117.53-4.97,16.82.22,36.44-6.98,52.9-17.76,40.56-53.81,61.16-48.56,72.27,1.32,2.79,8.62,4.38,11.45,1.14l48.96-56.16c16.56-18.99,35.06-25.83,59.76-20.72,61.61,12.74,121.89-31.04,151.12-89.58-11.16-10.26-24.37-8.35-37.2-9.84ZM1199.04,822.49c23.96-50.48,76.26-80.43,138.26-65.12-26.11,50.26-81.8,78.21-138.26,65.12Z'/%3E%3Crect class='cls-2' x='1171.63' y='816.35' width='2.79' height='2.79' transform='translate(-234.6601 1068.9669) rotate(-45)'/%3E%3C/g%3E%3Cpath class='cls-3' d='M1285.53,511.37c-43.8,24.53-74.45,63.28-87.84,109.04-9.57,32.72-1.16,63.84,3.63,96.98,1.58,10.97-7.99,24.11-10.66,33.79-.09,11.82,6.43,12.59,13.53,4.04,4.56-8.19,10.74-19.81,14.12-29.96,77.66-43.79,93.92-129.3,67.22-213.89ZM1230.03,698.42l15.76-65.82c-21.47,10.38-19.83,36.72-32.55,60.95-16.43-60.66,9.25-118.13,63.38-157.7,13.2,62.37,3.82,122.08-46.59,162.57Z'/%3E%3Cpath class='cls-3' d='M1203.31,432.82l-98.66-103.19-213.76-60.99c-6.51-1.86-12.74-.11-13.08,6.06-.16,2.97-.56,7.33,5.7,8.4l180.22,53.17-369.02,122.93-331.74-107.46,203.09-62.7c5.71-.51,8.8-5.75,6.11-10.9-1.55-2.97-4.7-5.55-10.89-3.73l-239.63,70.54c-38.07,37.9-72.15,76.71-106.96,117.05-5.72,6.63,4.34,14.25,9.01,15.93l117.68,42.35.53,321.9c-.12,12.06,6.09,17.56,16.64,21.42l335.6,122.96,377.58-135.92c10.58-3.81,16.14-11.91,15.42-23.25l.36-333.33,112.11-40.09c5.2-1.86,8.51-6.81,8.74-11.1.17-3.15-1.84-6.7-5.05-10.05ZM235.47,464.22c29.23-36.43,59.78-68.48,93.55-104.66l350.08,112.37-94.42,114.13-349.21-121.84ZM357.78,845.48l-.06-318.97,219.05,74.84c8.97,2.79,16.9.08,21.86-7.3l87.72-103.24.68,474.37-329.25-119.7ZM703.17,965.56l-.71-472.55,95.11,106.82,273.68-98.92.2,332.13-368.28,132.52ZM802.84,580.49l-93.47-108.1,386.28-128.92,90.35,97.22-383.16,139.8Z'/%3E%3Cg%3E%3Cpath class='cls-3' d='M271.54,827.54c-7.48-11.12-12.44-40.69-4.17-51.75,19.18-25.66,39.4-46.31,42.06-79.55,2.69-33.5-2.31-68.93-20.61-100.07-59.37,40.39-75.2,115.6-43.7,176.36,4.46,8.61,6.33,18.18,2.23,24.27-29.26-40.04-51.06-78.67-68.54-123,27.15-91.27-15.57-175.37-99.34-221.36-18.31,50.73-14.92,105.34,5.38,152.5,15.74,36.55,48.15,53.73,76.03,78.74,18.05,19.18,27.94,49.66,42.7,76.35-27.79-20.05-44.19-44.71-76.16-55.35-41.01-13.65-86.13-14.01-127.42,5.61,45.52,69.91,107.31,98.91,187.18,74.9,25.83-7.77,55.74,30.9,74.92,57.91l2.37,6.17c.25.65,2.07,3.04,6.63,2.15,2.15,4.85-4.96,6.25-6.32,1.86l-2.88-2.56-3.48-2.01c-52.37-30.19-106.99-17.45-151.21,26.23,45.15,35.68,103.64,37.7,148.81,6.84,12.56-8.58,29.2-9.57,40.76.33l40.09,34.33c3.44,2.95,10.56,1.08,11.96-1.66,5.45-10.64-47.34-42.69-77.29-87.24ZM168.56,650.87c-16.7-25.49-29.35-71.55-36.16-72.7-2.54-.43-7.09,4.6-5.57,9.01l20.27,59.01c.56,1.61.99,2.38,1.89,2.87,3.07,1.66,2.08,5.57-1.41,5.63l-3.51-4.25c-54.44-40.2-70.05-104.1-55.95-174.23,58.09,39.41,95.59,103,80.44,174.66ZM24.72,718.36c57.18-20.41,121.63-3.45,158.79,51.18-59.64,22.15-120,1.16-158.79-51.18ZM213.04,770.59c-.7,1.88-3.82,2.97-5.6,1.88-1.39-.86-2.42-1.93-1.97-4,.17-.76.23-1.52-.04-1.93l-2.61-2.53c1.52.86,2.95-.51,2.17-2.04l2.42,2.62c.27.29.6,1.09,1.05,1.82h.01c.36.58.8,1.13,1.34,1.32,1.28.44,3.69,1.61,3.23,2.86ZM256.83,762.14c-24.13-49.18-12.66-105.59,26.17-140.43,22.79,56.57,16.38,98.69-26.17,140.43ZM133.02,873.33c31.06-24.65,75.97-37.35,104.88-16.11l-16.46,4.58-6.31,1.43c-1.95.45-3.01,4.27-1.8,5.79,1.7,2.13,3.79,2.64,7.21,1.72,6.5-1.75,13.28-3.5,21.95,1.44-33.18,20.83-72.36,22.42-109.47,1.15Z'/%3E%3Cg%3E%3Cpath class='cls-4' d='M220.54,870.74c-3.42.92-5.51.41-7.21-1.72-1.21-1.52-.15-5.34,1.8-5.79l6.31-1.43c-2.34,3.25-2.64,6.23-.9,8.94Z'/%3E%3Cpath class='cls-1' d='M221.44,861.8l-.9,8.94c-3.42.92-5.51.41-7.21-1.72-1.21-1.52-.15-5.34,1.8-5.79l6.31-1.43Z'/%3E%3Cpath class='cls-1' d='M209.81,767.73c-.54-.19-.98-.74-1.34-1.32.41.29.86.73,1.34,1.32Z'/%3E%3Cpath class='cls-2' d='M201.72,762.94l1.1,1.07c-.37-.21-.75-.56-1.1-1.07Z'/%3E%3Cpath class='cls-2' d='M204.99,761.97l-1.1-1.19c.55.38.9.79,1.1,1.19Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .sortby-category ul>li:nth-of-type(5)>a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 1013.06 1200'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %234d8a71; %7D .cls-2 %7B fill: %233c7e63; %7D .cls-3 %7B fill: %23fcfdfd; %7D %3C/style%3E%3C/defs%3E%3Cg id='OBJECTS'%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-2' d='M147.31,796.47l-52.41-97c-2.47-4.58-11.28,2.53-13.02,5.75l-47.96,89c-13.98,25.94-2.8,57.83,16.79,73.98,22.65,18.68,55.16,18.69,76.75,2.37,20.71-15.65,34.03-47.85,19.85-74.1ZM120.5,856.43c-16.44,13.58-40.13,13.54-56.67,1.52-16.4-11.92-26.1-36.68-15.33-56.09l41.57-74.91,42.53,74.11c10.89,18.96,1.96,43.74-12.1,55.37Z'/%3E%3Cg%3E%3Cpath class='cls-2' d='M595.69,887.7c-59.52,5.49-98.61,29.63-118.98,83.15-2.99-20.44-2.03-37.15.1-55.18,66.28-67.26,51.83-146.49-9.37-217.76-60.05,75.35-74.08,145.76-10.24,218.55,8.27,11.9,3.73,33.77.75,50.38-18.16-48.41-63.75-78.5-118.44-78.6-3.06,62.46,33.47,117.45,96.4,123.68,8.86.88,17.03,5.31,20.37,10.11,8.99,12.91.44,34.5,7.22,39.26,18.11,12.72,8.28-32.58,17.26-41.54,12.76-12.73,81.28-3.8,107.06-76.19,6.46-18.14,12.03-36.06,7.87-55.86ZM441.16,981.73l-3.3-5.13c-15.37-10.61-26.38-31.02-47.58-34.65,9.07,24.92,31.02,32.31,47.13,53.75-46.63-1.6-81.32-41.99-81.1-89.9,40.27,4.65,74.48,28.11,85.11,66.14-.61,2.08.1,3.22,1,3.85,2.53,1.8,1.84,5.26-1.26,5.94ZM472.88,823.06c-2.86-3.34-10.62-2.23-10.83,3.93l-2.33,67.97c-11.5-9.4-16.08-20.12-24.41-31.55-13.59-53.34.5-94.24,32.05-141.28,41.01,57.09,56.9,120.38,8.73,169.77l-1.88-60.96c-.11-3.69-.18-6.55-1.33-7.88ZM501.71,995.73l33.24-36.54c3.11-3.42,3.61-5.67,3.4-8-.18-1.96-5.23-4.95-8.04-2.37l-39.95,36.69c7.73-45.67,42.26-74.63,90.09-79.77-.33,44.21-30.18,84.04-78.74,89.99Z'/%3E%3Cpath class='cls-2' d='M385.25,378.64c.46.15,1.06.27,1.78.36l-1.78-.36ZM622.46,11.82c-28.82-19.67-70.2-14.49-93.51,13.32l-81.26,96.95c-11.04-14.29-34.51-29.02-45.96-15.85l-60.72,69.89c-16.77,19.3,18.85,30.65,38.46,54.72L116.61,530.69c-16.75,19.1-24.14,33.37-16.85,61.2-10.12,20.12-42.96,26.74-31.27,57,3.86,9.97,16.1,19.44,29.25,18.12,32.06-3.22,25.76-44.04,39.94-48.14,10.43-3.02,28.17-.04,37.24-10.23l205.59-230.97c6.94-7.79,11.5-19.2,22.86-23.78t0,0l52.53-61.7,60.03,47.67,67.51-78.64c16.84-19.62-8.01-32.36-24.89-52.62l81.73-103.34c23.3-29.46,10.69-73.98-17.83-93.43ZM109.5,640.34c-2.87,8.05-8.1,10.61-14.32,10.49-4.16-.09-10.34-2.59-12.21-8.45-1.44-4.49-.41-12.29,5.44-17.34l23.79-20.56c2.44.22,7.8,4.93,7.76,6.48l-10.46,29.38ZM166.16,593.99c-11.2,12.68-34.19,7.73-42.8-.18-8.74-8.02-15.01-29.93-4.96-41.18,26.25-29.4,53.88-55.52,78.18-87.96l83.37.52-113.79,128.8ZM296.88,446.74l-84.43.65,180.14-207.08,51.22,40.56-146.93,165.87ZM353.73,186.55l60.36-73.78,122.41,100.15-60.37,73.78-122.4-100.15ZM571.85,248.07l-55.67,68.72c-13.34-4.76-19.44-14.33-30.28-22.15l60.12-72.23,25.83,25.66ZM618.67,107.03l-74.38,91.35-81.32-66.26,75.92-92.81c20.3-24.82,54.24-30.03,78.03-10.3,24.07,19.96,21.69,53.53,1.75,78.02ZM864.35,924.72c-40.68,9.22-63.61,38.07-98.39,63.5,11.93-31.51,27.5-59.51,41.76-85.22,36.15-21.49,71.65-42.49,91.97-81.5,27.35-52.47,33.86-113.81,17.07-172.52-57.08,23.2-97.54,66.44-121.01,119.15-18.67,41.92-7.22,82.68-9.08,126.77-1.71,40.35-38.88,77.5-55.19,111.01-8.65-6.93-4.08-13.87-1.72-18.47,25.69-50.23,19.91-107.84-14.91-151.9-10.92-13.82-21.04-28.44-37.77-35.71l-17.08,26.12-1.29-207.87c-.31-49.13-37.81-83.28-82.99-96.26-21.92-6.29-24.81-36.94-14.77-53.75,3.75-6.27,3.52-10.83,2.49-14.76-.7-2.64-9.3-7.01-9.2-9.87.5-14.04-5.61-31.17-6.04-44.39-.31-9.29,7.77-19.27,2.61-28.71-4.47-8.16-11.97-13.65-24.13-13.78l-121.86-1.33c-5.53,11.71-19.46,12.17-17.79,23.77l3.57,24.72c-15.85,22.7,1.48,40.86-20,55.07,6.7,15.48,14.99,33.91,5.09,51.36-4.46,7.87-12.6,12.03-21.95,14.81-43.12,12.81-77.72,49.58-77.72,97.16l.03,468.52c0,26.75,21.5,57.33,48.18,59.63,94.02,8.09,186.05,5.58,279.92,1.39,27.09-1.21,44.35-20.8,53-45.15,4.17-11.73,32.18-26.04,43.18-16.86,48.68,47.46,118.23,57.62,177.95,22.27-47.67-57.09-103.32-72.86-171.03-46.74,13.38-26.43,40.99-56.41,71.33-54.03,49.08,17.11,97.79,28.29,147.72,5.67,33.78-15.29,65.88-37.69,86.76-71.48-47.05-25.67-98.91-31.9-148.71-20.62ZM905.92,671.96c14.75,84.07-12.05,165.74-88.09,206.54l17.38-46.81c3.6-9.7,15.12-18.54,10.44-34.98-14.73,6.95-15.23,22.78-20.91,33.75l-21.66,41.81c-17.39-85.44,27.89-159.86,102.84-200.31ZM403.33,416.5c27.64-9,69.73,5.37,58.25-15.43-1.25-2.27-5.76-2.6-9.77-2.72l-35.15-1.02c-8.1-.23-11.27-4.99-12.72-10.1-1.34-4.68,1.07-14.65,8.26-14.57l121.42,1.44c4.05.05,3,14.07-1.08,15.24l-14.46,4.14c-9.97,2.85-23.93-.49-28.91,13.7l39.99,3.07c9.59,5.64,10.16,23.7,5.15,37.23-45.77,2.44-88.66,4.45-133.49-1.11-8.18-1.02-6.24-27.01,2.51-29.87ZM361.36,539.21c19.17-5.39,33.88-19.18,33.87-39.67l-.02-33.89,145.8-.2c-1.18,22.41-1.02,39.49,5.28,58.02l-122.06,1.06c-4.44.04-7.46,2.24-9.35,3.43-2.38,1.49-2.34,12.08.9,12.05l122.47-1.31c14.73-.16,28.15-7.05,41.51,2.4,35.83,10.88,62.5,42.15,62.82,84.53-97.14,11.65-190.22,8.88-285.55,6.05,2.66-31.55,33.43-41.1,25.72-53.46-9-14.41-43.15,11.45-46.03,51.44-14.67,1.01-27.76-.64-43.75-4.52-.2-41.35,28.69-74.76,68.39-85.93ZM642.4,1090.62c-.02,26.02-20.56,44.02-44.95,45.24-86.25,4.35-169.94,4.35-255.89.29-25.85-1.22-43.02-15.29-49.69-43.87l-.11-447.93c16.63-1.22,29.87,1.14,43.19,3.59l.66,67.02c.06,6.18,7.75,9.53,11.51,9.18,5.79-.54,9.5-4.27,9.56-11.58l.55-64.17,231.23-1.04,54.37-5.35-.43,448.62ZM850.82,1106.43c-45.62,21.21-97.54,13.94-132.77-24.84,41.99-26.16,94.32-13.98,132.77,24.84ZM705.93,1034.18c-7.36,19.69-28.23,33.63-46.43,47.65l.94-191.8,20.74-67.65c38.05,35.18,60.25,85.84,43.1,137.94l-20.58-52.52c-16.37,15.11,23.22,70.22,2.23,126.38ZM759.17,996.49c.95,1.84-1.04,4.15-2.25,3.58-1.63-.76-2.82-3.88-1.77-5.62.85-1.43,1.91-2.36,4.05-2.16,4.39-.63,4.61,4.81-.03,4.2ZM789.26,995.14c36.31-48.32,98.05-70.12,157.46-56.49l43.33,13.24c-57.27,59.83-126.77,81.2-200.79,43.25Z'/%3E%3Cg%3E%3Cpath class='cls-3' d='M385.23,378.63l-4.72-.96c1.34.15,2.55.17,3.43-.15.08.5.5.85,1.29,1.11Z'/%3E%3Cpath class='cls-3' d='M405.69,353.08c-.26.76-.55,1.47-.87,2.15l-2.57-.03,1.12-1.31s0,0,0,0c.74-.29,1.51-.56,2.31-.8Z'/%3E%3Cg%3E%3Cpath class='cls-1' d='M835.21,831.69l-10.47-1.23c5.68-10.97,6.18-26.8,20.91-33.75,4.68,16.44-6.84,25.28-10.44,34.98Z'/%3E%3Cg%3E%3Cpath class='cls-3' d='M595.69,887.7c-59.52,5.49-98.61,29.63-118.98,83.15-2.99-20.44-2.03-37.15.1-55.18,66.28-67.26,51.83-146.49-9.37-217.76-60.05,75.35-74.08,145.76-10.24,218.55,8.27,11.9,3.73,33.77.75,50.38-18.16-48.41-63.75-78.5-118.44-78.6-3.06,62.46,33.47,117.45,96.4,123.68,8.86.88,17.03,5.31,20.37,10.11,8.99,12.91.44,34.5,7.22,39.26,18.11,12.72,8.28-32.58,17.26-41.54,12.76-12.73,81.28-3.8,107.06-76.19,6.46-18.14,12.03-36.06,7.87-55.86ZM441.16,981.73l-3.3-5.13c-15.37-10.61-26.38-31.02-47.58-34.65,9.07,24.92,31.02,32.31,47.13,53.75-46.63-1.6-81.32-41.99-81.1-89.9,40.27,4.65,74.48,28.11,85.11,66.14-.61,2.08.1,3.22,1,3.85,2.53,1.8,1.84,5.26-1.26,5.94ZM472.88,823.06c-2.86-3.34-10.62-2.23-10.83,3.93l-2.33,67.97c-11.5-9.4-16.08-20.12-24.41-31.55-13.59-53.34.5-94.24,32.05-141.28,41.01,57.09,56.9,120.38,8.73,169.77l-1.88-60.96c-.11-3.69-.18-6.55-1.33-7.88ZM501.71,995.73l33.24-36.54c3.11-3.42,3.61-5.67,3.4-8-.18-1.96-5.23-4.95-8.04-2.37l-39.95,36.69c7.73-45.67,42.26-74.63,90.09-79.77-.33,44.21-30.18,84.04-78.74,89.99Z'/%3E%3Cpath class='cls-2' d='M595.69,887.7c-59.52,5.49-98.61,29.63-118.98,83.15-2.99-20.44-2.03-37.15.1-55.18,66.28-67.26,51.83-146.49-9.37-217.76-60.05,75.35-74.08,145.76-10.24,218.55,8.27,11.9,3.73,33.77.75,50.38-18.16-48.41-63.75-78.5-118.44-78.6-3.06,62.46,33.47,117.45,96.4,123.68,8.86.88,17.03,5.31,20.37,10.11,8.99,12.91.44,34.5,7.22,39.26,18.11,12.72,8.28-32.58,17.26-41.54,12.76-12.73,81.28-3.8,107.06-76.19,6.46-18.14,12.03-36.06,7.87-55.86ZM441.16,981.73l-3.3-5.13c-15.37-10.61-26.38-31.02-47.58-34.65,9.07,24.92,31.02,32.31,47.13,53.75-46.63-1.6-81.32-41.99-81.1-89.9,40.27,4.65,74.48,28.11,85.11,66.14-.61,2.08.1,3.22,1,3.85,2.53,1.8,1.84,5.26-1.26,5.94ZM472.88,823.06c-2.86-3.34-10.62-2.23-10.83,3.93l-2.33,67.97c-11.5-9.4-16.08-20.12-24.41-31.55-13.59-53.34.5-94.24,32.05-141.28,41.01,57.09,56.9,120.38,8.73,169.77l-1.88-60.96c-.11-3.69-.18-6.55-1.33-7.88ZM501.71,995.73l33.24-36.54c3.11-3.42,3.61-5.67,3.4-8-.18-1.96-5.23-4.95-8.04-2.37l-39.95,36.69c7.73-45.67,42.26-74.63,90.09-79.77-.33,44.21-30.18,84.04-78.74,89.99Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .sortby-category ul>li:nth-of-type(6)>a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 885.02 1083.3'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %234d8a71; %7D .cls-2 %7B fill: %233c7e63; %7D .cls-3 %7B fill: %23fcfdfd; %7D %3C/style%3E%3C/defs%3E%3Cg id='OBJECTS'%3E%3Cg%3E%3Cg%3E%3Cg%3E%3Cpath class='cls-2' d='M412.02,415.47l-43.32-.02c-5.85,0-9.72-2.19-10.31-6.5-.78-5.75,2.62-9.51,10.21-9.51h43.61c5.96.01,9.68,2.23,9.97,7.11.33,5.33-2.38,8.93-10.16,8.92Z'/%3E%3Cpath class='cls-2' d='M452.66,499.44l-33.64,33.61c-2.92,2.93-8.4,3.39-10.81,2.36-2.6-1.12-4.27-8.73-1.59-11.5l34.49-35.76c2.92-3.03,8.97-3.6,11.88-1.38,2.83,2.16,3.86,8.48-.33,12.67Z'/%3E%3Cpath class='cls-2' d='M407.25,294.43c-2.9-2.86-2.13-7.94-1.05-10.01,1.67-3.19,8.32-5.69,12.36-1.71l32.85,32.42c4.57,4.51,4.28,9.72,2.2,13.55-1.35,2.48-7.3,4.36-10.88.83l-35.48-35.08Z'/%3E%3Cpath class='cls-2' d='M537.36,521.85l1,57.61c.12,6.72-6.33,8.04-9.95,6.63-2.86-1.12-5.64-3.14-5.66-8.95l-.15-47.3c-.01-4.38,1.63-7.78,3.55-9.78,1.97-2.06,11.14-1.66,11.21,1.79Z'/%3E%3Cpath class='cls-2' d='M522.48,289.53l.17-50.95c.02-4.78,3.77-6.73,6.18-7.42,3.98-1.15,9.22,1.32,9.3,7.31l.65,49.28c.1,7.41-3.1,9.87-6.49,10.61-4.95,1.09-9.83-1.91-9.81-8.83Z'/%3E%3Cpath class='cls-2' d='M530.62,320.5c-48.08,0-87.06,38.97-87.06,87.05s38.98,87.06,87.06,87.06,87.05-38.98,87.05-87.06-38.97-87.05-87.05-87.05ZM530.54,477.71c-38.82,0-70.28-31.47-70.28-70.29s31.46-70.28,70.28-70.28,70.29,31.47,70.29,70.28-31.47,70.29-70.29,70.29Z'/%3E%3Cpath class='cls-2' d='M608.87,316.64l33.65-33.14c3.24-3.19,8.17-3.65,11.35-1.15,2.68,2.11,4.33,8.52.09,12.77l-32.38,32.44c-3.94,3.94-9.73,4.06-11.97,2.65-3.52-2.23-4.59-9.77-.74-13.57Z'/%3E%3Cpath class='cls-2' d='M653.99,522.32c3.52,3.58,1.53,9.01.5,11.13-1.18,2.43-7.28,4.14-10.62.8l-35.26-35.25c-2.67-2.67-2.4-7.23-1.31-9.17,2.13-3.75,8.52-6.21,12.39-2.29l34.3,34.78Z'/%3E%3Crect class='cls-2' x='639.54' y='399.07' width='64.46' height='16.42'/%3E%3Cpath class='cls-2' d='M802.63,7.41C796.03,2.6,790.14-.02,778,0l-505.53.81c-40.98.07-10.37,95.95-9.83,100.5l80.68,685.83c2.05,17.45,7.04,30.12,18.78,42.74l1.28,166.57c.2,25.23,21.49,45.51,46.39,47.56,81.96,6.74,161.94,7,246.05-.7,25.4-2.33,42.29-25.93,42.5-48.56l1.55-164.59c7.64-11.46,16.29-22.08,18.13-37.73l80.87-690.34c.24-2,26.2-78.34,3.76-94.68ZM658.08,1025.91c-83.03,11.24-164.88,6.96-246.64,2.08-14.29-.86-24.58-11.08-28.18-19.47-4.85-11.32-8.05-29.3-.46-38.07,102.85,12.14,201.07,11.56,298.83-.16,4.92,19.89.66,52.34-23.55,55.62ZM582.29,917.06c-20.13-20.4-82.21-20.23-101.53-1.82-10.77,10.27-18.84,24.77-17.42,46.56l-83.72-7.98-.28-114.24c103.16,9.12,202.16,9.58,303.42-.28l.13,114.56-84.31,8.19c1.51-18.68-5.28-33.83-16.29-44.99ZM582.13,962.78l-102.91-.23c-1.62-15.49,4.26-35.66,20.91-41.08,19.34-6.3,40.79-3.25,60.53-1.07,14.86,8.37,22.72,21.32,21.47,42.38ZM781.28,103.25l-79.54,688.59c-1.5,12.99-11.08,29.51-25.74,31.04-98.21,10.22-192.85,9.24-289.3.28-13.71-1.28-24.04-15.89-25.71-30.26L282.98,123.03l-6.91-40.54,509.9.09c1.67,9.36-3.88,13.63-4.69,20.67ZM268.7,66.26V16.56s524.49-.1,524.49-.1v49.7s-524.49.1-524.49.1Z'/%3E%3Cg%3E%3Cpath class='cls-3' d='M412.02,415.47l-43.32-.02c-5.85,0-9.72-2.19-10.31-6.5-.78-5.75,2.62-9.51,10.21-9.51h43.61c5.96.01,9.68,2.23,9.97,7.11.33,5.33-2.38,8.93-10.16,8.92Z'/%3E%3Cpath class='cls-3' d='M452.66,499.44l-33.64,33.61c-2.92,2.93-8.4,3.39-10.81,2.36-2.6-1.12-4.27-8.73-1.59-11.5l34.49-35.76c2.92-3.03,8.97-3.6,11.88-1.38,2.83,2.16,3.86,8.48-.33,12.67Z'/%3E%3Cpath class='cls-3' d='M407.25,294.43c-2.9-2.86-2.13-7.94-1.05-10.01,1.67-3.19,8.32-5.69,12.36-1.71l32.85,32.42c4.57,4.51,4.28,9.72,2.2,13.55-1.35,2.48-7.3,4.36-10.88.83l-35.48-35.08Z'/%3E%3Cpath class='cls-3' d='M537.36,521.85l1,57.61c.12,6.72-6.33,8.04-9.95,6.63-2.86-1.12-5.64-3.14-5.66-8.95l-.15-47.3c-.01-4.38,1.63-7.78,3.55-9.78,1.97-2.06,11.14-1.66,11.21,1.79Z'/%3E%3Cpath class='cls-3' d='M522.48,289.53l.17-50.95c.02-4.78,3.77-6.73,6.18-7.42,3.98-1.15,9.22,1.32,9.3,7.31l.65,49.28c.1,7.41-3.1,9.87-6.49,10.61-4.95,1.09-9.83-1.91-9.81-8.83Z'/%3E%3Cpath class='cls-3' d='M530.62,320.5c-48.08,0-87.06,38.97-87.06,87.05s38.98,87.06,87.06,87.06,87.05-38.98,87.05-87.06-38.97-87.05-87.05-87.05ZM530.54,477.71c-38.82,0-70.28-31.47-70.28-70.29s31.46-70.28,70.28-70.28,70.29,31.47,70.29,70.28-31.47,70.29-70.29,70.29Z'/%3E%3Cpath class='cls-3' d='M608.87,316.64l33.65-33.14c3.24-3.19,8.17-3.65,11.35-1.15,2.68,2.11,4.33,8.52.09,12.77l-32.38,32.44c-3.94,3.94-9.73,4.06-11.97,2.65-3.52-2.23-4.59-9.77-.74-13.57Z'/%3E%3Cpath class='cls-3' d='M653.99,522.32c3.52,3.58,1.53,9.01.5,11.13-1.18,2.43-7.28,4.14-10.62.8l-35.26-35.25c-2.67-2.67-2.4-7.23-1.31-9.17,2.13-3.75,8.52-6.21,12.39-2.29l34.3,34.78Z'/%3E%3Crect class='cls-3' x='639.54' y='399.07' width='64.46' height='16.42'/%3E%3Cg%3E%3Cpath class='cls-1' d='M653.96,295.12l-32.38,32.44c-3.94,3.94-9.73,4.06-11.97,2.65-3.52-2.23-4.59-9.77-.74-13.57l33.65-33.14c3.24-3.19,8.17-3.65,11.35-1.15,2.68,2.11,4.33,8.52.09,12.77Z'/%3E%3Cpath class='cls-1' d='M453.61,328.68c-1.35,2.48-7.3,4.36-10.88.83l-35.48-35.08c-2.9-2.86-2.13-7.94-1.05-10.01,1.67-3.19,8.32-5.69,12.36-1.71l32.85,32.42c4.57,4.51,4.28,9.72,2.2,13.55Z'/%3E%3Cpath class='cls-1' d='M452.66,499.44l-33.64,33.61c-2.92,2.93-8.4,3.39-10.81,2.36-2.6-1.12-4.27-8.73-1.59-11.5l34.49-35.76c2.92-3.03,8.97-3.6,11.88-1.38,2.83,2.16,3.86,8.48-.33,12.67Z'/%3E%3Cpath class='cls-1' d='M654.49,533.45c-1.18,2.43-7.28,4.14-10.62.8l-35.26-35.25c-2.67-2.67-2.4-7.23-1.31-9.17,2.13-3.75,8.52-6.21,12.39-2.29l34.3,34.78c3.52,3.58,1.53,9.01.5,11.13Z'/%3E%3Cpath class='cls-2' d='M538.36,579.46c.12,6.72-6.33,8.04-9.95,6.63-2.86-1.12-5.64-3.14-5.66-8.95l-.15-47.3c-.01-4.38,1.63-7.78,3.55-9.78,1.97-2.06,11.14-1.66,11.21,1.79l1,57.61Z'/%3E%3Cpath class='cls-2' d='M538.78,287.75c.1,7.41-3.1,9.87-6.49,10.61-4.95,1.09-9.83-1.91-9.81-8.83l.17-50.95c.02-4.78,3.77-6.73,6.18-7.42,3.98-1.15,9.22,1.32,9.3,7.31l.65,49.28Z'/%3E%3Cpath class='cls-2' d='M412.02,415.47l-43.32-.02c-5.85,0-9.72-2.19-10.31-6.5-.78-5.75,2.62-9.51,10.21-9.51h43.61c5.96.01,9.68,2.23,9.97,7.11.33,5.33-2.38,8.93-10.16,8.92Z'/%3E%3Crect class='cls-2' x='639.54' y='399.07' width='64.46' height='16.42'/%3E%3Cpath class='cls-2' d='M530.62,320.5c-48.08,0-87.06,38.97-87.06,87.05s38.98,87.06,87.06,87.06,87.05-38.98,87.05-87.06-38.97-87.05-87.05-87.05ZM530.54,477.71c-38.82,0-70.28-31.47-70.28-70.29s31.46-70.28,70.28-70.28,70.29,31.47,70.29,70.28-31.47,70.29-70.29,70.29Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3Cpath class='cls-2' d='M336.12,952.39l-51.87-46.75c-12.95-11.67-13.15-34.26-15-52.19,48.42-53.8,55.49-132.97,15.21-194.98-56.65,40.9-71.64,117.41-41.99,179.03,5.71,11.87,15.71,19.98,11.24,36.41l-13.31-19.67c-19.3-28.51-46.07-58.48-55.99-92.33.96-42.69,6.81-85.38-13.92-125.3-22.75-43.79-58.37-80.06-107.55-102.46-26.29,100.42,6.74,196.86,104.12,236.24l41,66.83,6.94,9.41,4.51,4.16c4,5.7-5.34,9.26-6.45,1.6.01-.61-.26-1.89-1.37-2.41-5.51-2.55-7.13-6.42-10.37-9.3-21.39-18.93-44.81-35.35-74.13-40.48-43.92-7.69-88.67,3.12-127.19,29.42,18.48,26.46,45.52,42.56,73.64,53.79,42.3,16.88,85.58,5.98,126.69-11.1,14.95-6.21,37.28,9.3,46.61,18.71l28.43,28.68c1.83,1.85,3.21,4.09,2.86,6.04-.27,1.49-3.98,3.49-5.51,2.35l-4.31-3.22c-46.53-18.46-95.44-5.95-129.66,29.55-6.15,6.39-14.53,9.94-15.97,22.92,62.15,23.4,105.37,19.71,154.94-22.5,26.49-22.56,54.29,23.29,61.2,9.6,1.55-3.07.89-8.73-2.8-12.05ZM170.25,736.1l-30.2-54.33c-2.89-5.2-7.66-6.87-9.99-5.81-3.57,1.62-4.63,6.99-2.57,11.38l28.63,61c-71.83-38.61-94.91-111.37-83.55-191.3,67.56,39.49,106.89,103.87,97.68,179.06ZM24.61,834.03c61.26-33.48,121.48-27.41,167.84,22.22-62.03,35.13-116.45,23.6-167.84-22.22ZM256.48,825.81c-23.86-46.31-15.67-103.37,23.45-143,23.43,46.89,11.03,100.75-12.02,147.26l2.11-25.63-13.54,21.37ZM146.04,968.65c31.95-33.03,75.53-48.65,119.2-25.63-30.14,34.31-76.97,40.1-119.2,25.63ZM283.98,931.89l-1.97-1.97,1.97-1.97,1.97,1.97-1.97,1.97Z'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }

  .sortby-category ul>li:nth-of-type(7)>a::before {
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' id='Layer_2' data-name='Layer 2' viewBox='0 0 1202.01 1080'%3E%3Cdefs%3E%3Cstyle%3E .cls-1 %7B fill: %234d8a71; %7D .cls-2 %7B fill: %233c7e63; %7D .cls-3 %7B fill: %23fcfdfd; %7D %3C/style%3E%3C/defs%3E%3Cg id='OBJECTS'%3E%3Cg%3E%3Ccircle class='cls-1' cx='38.67' cy='925.82' r='11.84'/%3E%3Ccircle class='cls-1' cx='122.15' cy='925.33' r='11.75'/%3E%3Ccircle class='cls-1' cx='93.25' cy='874.54' r='12.02'/%3E%3Ccircle class='cls-2' cx='201.56' cy='940.02' r='11.36'/%3E%3Crect class='cls-1' x='144.33' y='888.47' width='16.3' height='14.29' transform='translate(-752.26 978.29) rotate(-85.56)'/%3E%3Cg%3E%3Cpath class='cls-2' d='M216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.73,272.66c6.02-4.54,3.26-13.12-.27-15.11-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM521.64,223.12c0-4.48-3.63-8.11-8.11-8.11s-8.11,3.63-8.11,8.11,3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM376.73,309.14l5.96,12.84,15.68-7.29-5.97-12.83-15.67,7.28ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM910.84,379.94c-11.07,10.8-22.18,19.49-38.59,22.04l40.67-82.77c3.76-7.65,12.28-13.43,21.13-15.39,73.81-16.39,132.53-64.79,164.78-133.37,22.98-48.88,30.18-100.13,30.84-154.16.06-4.65,1.95-8.45-.73-11.44-2.26-2.53-6.78-5.87-11.71-4.56-52.47,13.96-99.31,39.54-138.7,76.95-98.51,93.57-67.56,207.47-75.68,224.04l-24.8,50.58c-4.58-14.83-12.17-28.4-11.18-41.16,12.33-59.02,9.34-118.04-21.33-170.33-47.57-81.08-141.2-126.67-143.09-110.58-13.62,115.35,16.71,232.34,129.72,277.45,30.4,12.14,31.49,67.66,26.27,78.86l-19.11,41.05-49.02-14.56c-9.86-57.07-62.87-46.21-64.2-73.71-1.39-28.93-33.17-32.47-46.53-47.3-19.02-25.64-30.31-54.78-68.98-58.01-17.1-1.42-34.16-40.51-75.78-69.17-28.29-19.49-64-10.44-80.21,19.25-11.64,21.3-29.23,31.62-52.65,35.45-27.55,4.51-50.79,22.24-60.7,47.66-6.48,16.63-19.82,25.34-37.23,27.52-37.78,4.72-66.7,28.11-75.21,65.54-2.08,9.14-14.2,21.06-23.21,20.71-26.7-1.04-37.48,21-56.05,29.59-36.29,16.8-75.96,18.78-110.73,40.82C23.72,460.51.12,475.4,0,496.74c-.82,161.47,93.03,316.49,246.43,372.29,2.33,23.31,14.12,39.8,34.33,45.16l65.46,17.39c96.45,15.75,194.37,15.08,289.49-6.73,19.98-4.59,37.69-11.33,50.97-23.39,3.98-3.62,5.65-8.84,12.57-11.44l-6.31,13.78c-7.32,16-2.58,33.52,4.8,48.69,7.07,14.54,23.79,18.28,39.87,24.92,19.86,8.22,37.96,15.36,60.43,5.8,14.56-6.2,28.75-20.79,36.56-43.87,11.45,22.8,32.64,32.5,55.59,33.93,24.45,1.52,38.75-13.26,55.43-30.55,12.86-13.34,27.77-20.48,26.48-39.54-1.22-18.02-6.26-33.05-26.32-45.69,30.75-13.5,45.29-39.04,40.38-69.52-3.67-22.71-15.97-42.03-33.77-50.81-20.92-10.32-42.22-7.36-64.49,4.21l-4.79-40.24c-.49-4.13,51.75-81.22,55.59-201.39.96-30-43.75-53.38-80.05-67.94,8.83-10.77,28.56-26.48,44.2-22.05,45.16,27.65,91.6,49.12,145.78,43.64,55.1-5.58,108.87-26.62,153.37-63.05-88.94-74.58-209.22-90.33-291.17-10.4ZM974.63,104.94c36.45-40.15,81.16-69.36,137.12-85.57,3.09,47.5-6.04,92.4-23.85,135.44-27.82,65.99-81.37,114.56-154.23,132.62,17.42-45.69,73.51-104.7,73.78-120.3.04-2.41-4.18-7.31-7.97-5.79-30,34.05-53.36,69.63-78.35,110.69-6.38-59.7,12.7-119.46,53.5-167.09ZM853.94,282.65l-45.39-85.24c-1.72-4.56-5.95-4.97-8.26-4.01-3.7,1.53-4.8,6.15-2.78,10.54l40.54,88.29c-102.03-41.01-129.66-144.63-121.21-247.43,37.7,18.61,66.08,41.56,91.5,70.21,39.14,46.67,57.59,105.77,45.6,167.64ZM151.14,452.61c10.87-16.16,4.62-48,70.43-58.45.9,4.6,1.76,8.94,3.31,10.9,2.47,3.14,7.12,1.33,9.82-1.37-.52,0,.82-27.49,23.65-65.78,11.62-19.5,44.37-30.11,64.09-26.97,4.29.68,15.3,11.96,15.8,7.25,1.77-16.49,7.51-22.92,13.52-35.58,11.2-23.61,28.14-44.22,56.36-47.2,53.84-5.68,57.69-53.15,82.1-62.35,30.2-11.38,65.43,31.87,92.56,65.15,12.2,14.96,59.93,7.77,74.94,55.23,3.38,10.71,11.95,17.31,22.63,20.32,39.51,11.14,24.12,52.7,50.78,58.71,32.28,7.28,41.86,31.64,47.95,61.47,10.39,12.04,35.28,23.65,33.2,46.64,10.02,5.2,15.84,6.26,24.85,17.78-31.1,17.2-63.8,25.4-100.45,31.92-176.99,31.49-356.88,30.85-536.07-1.55-34.53-6.25-64.27-14.41-92.56-29.17-3.43-10.47,13.85-13.19,18.47-17.14,8.67-7.41,18.29-20.4,24.62-29.81ZM851.29,506.55c16.06-3.05,37.02,6.39,55.29,14.98-16.99,18.33-37.19,25.54-58.02,32.97-201.25,71.68-580.46,71.36-778.32-8.64-14.76-5.97-28.44-13.37-38.16-25.75l55.85-18.93c8.74,9.72,20.08,21.01,34.26,24.33l112.09,26.27c148.45,22.39,297.17,23.87,446.04,4.38l131.05-26.75c15.83-3.23,27.22-15.33,39.92-22.86ZM137.66,435.04c-6.55,43.56-37.81,31.6-47.56,58.66l-69.74,2.02c15.23-35.35,73.1-51.72,117.3-60.68ZM641.81,905.48c-106.29,30.36-256.18,27.47-358.64-9-8.49-3.02-15.91-8.92-16.6-20.03,137.38,35.8,278.34,35.65,417.69,1.05-8.51,15.22-24.35,22.81-42.45,27.98ZM675.11,844.27c-19.27-15.8-16.72-35.8-5.27-54.74,7.52-12.43,8.54-27.37,21.78-32.56,41.39-16.2,75.73,22.09,100.44,67.05l-49.76-13.3c-3.95-1.06-6.09,8.32-.34,10.87l45.33,20.1c-41.04,18.55-80.59,28.48-112.18,2.58ZM823.65,764.04c-.66-4-10.18-3.09-10.39-.9-1.68,17.53,2.41,31.59-4.67,50.91-15.5-15.68-24.86-31.17-35.94-48.88-14.47-23.14-10.74-61.27,18.64-70.84,14.75-4.81,39.17-6.12,54.26-1.49,28.44,8.73,32.74,47.88,18.13,69.54l-34.19,50.68c-10.64-17.38-3.05-32.28-5.84-49.02ZM819.21,929.15c-3.08,25.16-26.07,48.44-51.26,41.2-15.71-4.53-36.54-10.93-49.1-20.8-23.39-18.38-11.36-53.95,11.12-68.59,19.68-12.82,40.85-16.77,64.28-22.44l-21.62,36.89c-2.02,3.46-.53,7.54,1.39,8.7,12.36,7.46,17.42-22.32,37.4-36.85,6.95,19.91,10.57,39.2,7.79,61.89ZM817.81,857.67c-10.11,0-18.3-8.19-18.3-18.29s8.19-18.3,18.3-18.3,18.3,8.19,18.3,18.3-8.19,18.29-18.3,18.29ZM950.59,916.23l-35.32,32.23c-20.05,18.29-52.66,6.77-67.43-15.47-13.63-20.55-16.17-42.56-16.92-65.56,25.28,7.96,39.8,36.76,47.96,23.17,6.62-11.01-20.42-17.2-31.98-35.07,29.24-1.45,56.83,1.6,84.23,11.47,18.43,6.64,35.18,34.88,19.46,49.23ZM883.38,766.38c18.62-20.74,51.56-28.37,72.59-6.42,8.17,8.53,14.54,26.93,15.02,39.06,1.11,28.16-23.83,43.63-49.25,46.16l-68.41-7.44,26.95-15.42c3.55-2.04,4.86-11.2.21-11.95-11.59-1.88-19.39,8.74-33.91,10.13,11.25-21.35,22.09-37.72,36.8-54.12ZM870.18,687.19c-16.97-13.49-33.94-11.97-52.42-12.15-20.45-.2-37.48,1.17-51.47,15.69-12.12,12.58-19.39,31.72-16.92,50.06-.11.74-.46,2.49-.3,3.09,4.12,3.15-1.19,7.54-3.55,3.05-.32-.34-.98-.72-1.75-.85-16.29-9.36-36.13-11.86-55.97-5-16.95,5.85-24.06,23.49-33.47,41.03-15.22,28.38-12.71,58.82,16.57,80.4-117.41,31.89-259.32,31.54-373.03,4.24-160.32-38.48-254.77-162.84-278.74-320.48.37-.99.22-2.15,0-2.65-4.62-3.51,1.29-9.08,4.19-3.57.18.46.7,1.05,1.17,1.33,45.31,26.7,94.79,43.55,149.91,54.24,190.33,36.92,385.65,37.54,576.47,3.23,59.74-10.75,112.62-27.69,166.69-57.88-6.65,53.88-21.21,101.26-47.38,146.22ZM917.57,497.44l-64.03-5.3c-6.35-7.93-16.68-16.49-24.91-23.17l-14.87-26.09-4.12-3.34,4.54-1.72c.51,1.2,1.39,1.79,1.99,1.9,32.62,6.17,92.51,26.26,101.4,57.72ZM926.23,402.73c41.68-14.47,103.36-6.04,107.2-15.81,1.61-4.1-1.39-8.82-7.34-8.72-32.29-2.53-61.72,2.7-94.94,6.43,74.94-64.02,162.06-50.01,244.43,4.4-27.76,19.81-55,31.36-84.95,41.21-55.79,16.82-114.61,8.95-164.4-27.51ZM726.94,484.14c4.97,0,9.01-4.03,9.01-9s-4.04-9.01-9.01-9.01-9.01,4.03-9.01,9.01,4.03,9,9.01,9ZM715.49,437.66c.84-8.68-9.15-10.84-13.4-10.83-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61ZM675.32,415.77c4.55,0,8.23-3.68,8.23-8.22s-3.68-8.23-8.23-8.23-8.22,3.68-8.22,8.23,3.68,8.22,8.22,8.22ZM637.45,489.87c4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92ZM632.93,367.11c4.75-3.14,5.58-11.27,3.39-14.85-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14ZM613.4,469.37c5.94,0,10.76-4.82,10.76-10.76s-4.82-10.76-10.76-10.76-10.76,4.82-10.76,10.76,4.82,10.76,10.76,10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.73,272.66c6.02-4.54,3.26-13.12-.27-15.11-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98ZM516.15,408.54c0,5.37,4.35,9.72,9.72,9.72s9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73-9.72,4.36-9.72,9.73ZM513.53,231.23c4.48,0,8.11-3.63,8.11-8.11s-3.63-8.11-8.11-8.11-8.11,3.63-8.11,8.11,3.63,8.11,8.11,8.11ZM500.66,503.41c5.22,0,9.45-4.23,9.45-9.44s-4.23-9.44-9.45-9.44-9.44,4.22-9.44,9.44,4.23,9.44,9.44,9.44ZM456.02,274.79c5.16,0,9.35-4.19,9.35-9.35s-4.19-9.36-9.35-9.36-9.36,4.19-9.36,9.36,4.19,9.35,9.36,9.35ZM436.4,366.78c5.11,0,9.26-4.14,9.26-9.25s-4.15-9.26-9.26-9.26-9.26,4.14-9.26,9.26,4.15,9.25,9.26,9.25ZM410.78,457.67c5.04,0,9.13-4.09,9.13-9.13s-4.09-9.13-9.13-9.13-9.13,4.09-9.13,9.13,4.09,9.13,9.13,9.13ZM398.37,314.69l-5.97-12.83-15.67,7.28,5.96,12.84,15.68-7.29ZM339.82,398.16c2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22ZM332.72,495.44c6.17,0,11.17-5,11.17-11.17s-5-11.16-11.17-11.16-11.16,5-11.16,11.16,5,11.17,11.16,11.17ZM286.31,407.56c5.16,0,9.34-4.19,9.34-9.34s-4.18-9.35-9.34-9.35-9.34,4.19-9.34,9.35,4.18,9.34,9.34,9.34ZM216.71,484.48c5.35,0,9.69-4.33,9.69-9.68s-4.34-9.69-9.69-9.69-9.68,4.34-9.68,9.69,4.33,9.68,9.68,9.68ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM726.94,466.13c-4.98,0-9.01,4.03-9.01,9.01s4.03,9,9.01,9,9.01-4.03,9.01-9-4.04-9.01-9.01-9.01ZM702.09,426.83c-5.94.03-13.08,6.65-8.92,12.44,3.34,4.63,21.3,3.83,22.32-1.61.84-8.68-9.15-10.84-13.4-10.83ZM675.32,399.32c-4.54,0-8.22,3.68-8.22,8.23s3.68,8.22,8.22,8.22,8.23-3.68,8.23-8.22-3.68-8.23-8.23-8.23ZM650.66,478.08c-2.94-1.48-8.85-2.98-12.99-.13-5.01,3.45-3.18,10.23-.22,11.92,4.95,2.83,10.56,2.66,14-.44,3.77-3.39,2.51-9.69-.79-11.35ZM636.32,352.26c-4.61-7.52-18.62-5.77-25.85,1.71-4,4.13,17.08,16.7,22.46,13.14,4.75-3.14,5.58-11.27,3.39-14.85ZM613.4,447.85c-5.94,0-10.76,4.82-10.76,10.76s4.82,10.76,10.76,10.76,10.76-4.82,10.76-10.76-4.82-10.76-10.76-10.76ZM545.59,303.51c-5.16.16-5.85,12.26-.03,15.34,11,5.82,26.57,8.63,34.74-5.07-13.81-7.21-23.23-10.63-34.71-10.27ZM549.46,257.55c-4.01-2.27-10.09-3.47-14.27.01-3.55,2.95-.83,9.1,2.1,12.12,2.15,2.21,5.44,8.26,12.44,2.98,6.02-4.54,3.26-13.12-.27-15.11ZM525.87,398.81c-5.37,0-9.72,4.36-9.72,9.73s4.35,9.72,9.72,9.72,9.72-4.35,9.72-9.72-4.35-9.73-9.72-9.73ZM513.53,215.01c-4.48,0-8.11,3.63-8.11,8.11s3.63,8.11,8.11,8.11,8.11-3.63,8.11-8.11-3.63-8.11-8.11-8.11ZM500.66,484.53c-5.21,0-9.44,4.22-9.44,9.44s4.23,9.44,9.44,9.44,9.45-4.23,9.45-9.44-4.23-9.44-9.45-9.44ZM456.02,256.08c-5.17,0-9.36,4.19-9.36,9.36s4.19,9.35,9.36,9.35,9.35-4.19,9.35-9.35-4.19-9.36-9.35-9.36ZM436.4,348.27c-5.11,0-9.26,4.14-9.26,9.26s4.15,9.25,9.26,9.25,9.26-4.14,9.26-9.25-4.15-9.26-9.26-9.26ZM410.78,439.41c-5.04,0-9.13,4.09-9.13,9.13s4.09,9.13,9.13,9.13,9.13-4.09,9.13-9.13-4.09-9.13-9.13-9.13ZM392.4,301.86l-15.67,7.28,5.96,12.84,15.68-7.29-5.97-12.83ZM342.42,377.89c-3.18-.9-7.04.66-9.97,3.13-4.46,3.77-5.82,11.06-2.31,15.92,1.75,2.41,4.65,3.44,9.68,1.22,2.89-1.27,5.65-4.23,6.86-9.43,1.25-5.39-.59-9.81-4.26-10.84ZM332.72,473.11c-6.16,0-11.16,5-11.16,11.16s5,11.17,11.16,11.17,11.17-5,11.17-11.17-5-11.16-11.17-11.16ZM286.31,388.87c-5.16,0-9.34,4.19-9.34,9.35s4.18,9.34,9.34,9.34,9.34-4.19,9.34-9.34-4.18-9.35-9.34-9.35ZM216.71,465.11c-5.35,0-9.68,4.34-9.68,9.69s4.33,9.68,9.68,9.68,9.69-4.33,9.69-9.68-4.34-9.69-9.69-9.69Z'/%3E%3Cg%3E%3Cpath class='cls-3' d='M226.4,474.8c0,5.35-4.34,9.68-9.69,9.68s-9.68-4.33-9.68-9.68,4.33-9.69,9.68-9.69,9.69,4.34,9.69,9.69Z'/%3E%3Cpath class='cls-3' d='M295.65,398.22c0,5.15-4.18,9.34-9.34,9.34s-9.34-4.19-9.34-9.34,4.18-9.35,9.34-9.35,9.34,4.19,9.34,9.35Z'/%3E%3Cpath class='cls-3' d='M343.89,484.27c0,6.17-5,11.17-11.17,11.17s-11.16-5-11.16-11.17,5-11.16,11.16-11.16,11.17,5,11.17,11.16Z'/%3E%3Cpath class='cls-3' d='M346.68,388.73c-1.21,5.2-3.97,8.16-6.86,9.43-5.03,2.22-7.93,1.19-9.68-1.22-3.51-4.86-2.15-12.15,2.31-15.92,2.93-2.47,6.79-4.03,9.97-3.13,3.67,1.03,5.51,5.45,4.26,10.84Z'/%3E%3Cpolygon class='cls-3' points='392.4 301.86 398.37 314.69 382.69 321.98 376.73 309.14 392.4 301.86'/%3E%3Ccircle class='cls-3' cx='410.78' cy='448.54' r='9.13'/%3E%3Cpath class='cls-3' d='M445.66,357.53c0,5.11-4.15,9.25-9.26,9.25s-9.26-4.14-9.26-9.25,4.15-9.26,9.26-9.26,9.26,4.14,9.26,9.26Z'/%3E%3Cpath class='cls-3' d='M465.37,265.44c0,5.16-4.19,9.35-9.35,9.35s-9.36-4.19-9.36-9.35,4.19-9.36,9.36-9.36,9.35,4.19,9.35,9.36Z'/%3E%3Cpath class='cls-3' d='M510.11,493.97c0,5.21-4.23,9.44-9.45,9.44s-9.44-4.23-9.44-9.44,4.23-9.44,9.44-9.44,9.45,4.22,9.45,9.44Z'/%3E%3Ccircle class='cls-3' cx='513.53' cy='223.12' r='8.11'/%3E%3Cpath class='cls-3' d='M535.59,408.54c0,5.37-4.35,9.72-9.72,9.72s-9.72-4.35-9.72-9.72,4.35-9.73,9.72-9.73,9.72,4.36,9.72,9.73Z'/%3E%3Cpath class='cls-3' d='M537.29,269.68c-2.93-3.02-5.65-9.17-2.1-12.12,4.18-3.48,10.26-2.28,14.27-.01,3.53,1.99,6.29,10.57.27,15.11-7,5.28-10.29-.77-12.44-2.98Z'/%3E%3Cpath class='cls-3' d='M580.3,313.78c-8.17,13.7-23.74,10.89-34.74,5.07-5.82-3.08-5.13-15.18.03-15.34,11.48-.36,20.9,3.06,34.71,10.27Z'/%3E%3Cpath class='cls-3' d='M624.16,458.61c0,5.94-4.82,10.76-10.76,10.76s-10.76-4.82-10.76-10.76,4.82-10.76,10.76-10.76,10.76,4.82,10.76,10.76Z'/%3E%3Cpath class='cls-3' d='M632.93,367.11c-5.38,3.56-26.46-9.01-22.46-13.14,7.23-7.48,21.24-9.23,25.85-1.71,2.19,3.58,1.36,11.71-3.39,14.85Z'/%3E%3Cpath class='cls-3' d='M651.45,489.43c-3.44,3.1-9.05,3.27-14,.44-2.96-1.69-4.79-8.47.22-11.92,4.14-2.85,10.05-1.35,12.99.13,3.3,1.66,4.56,7.96.79,11.35Z'/%3E%3Cpath class='cls-3' d='M683.55,407.55c0,4.54-3.68,8.22-8.23,8.22s-8.22-3.68-8.22-8.22,3.68-8.23,8.22-8.23,8.23,3.68,8.23,8.23Z'/%3E%3Cpath class='cls-3' d='M715.49,437.66c-1.02,5.44-18.98,6.24-22.32,1.61-4.16-5.79,2.98-12.41,8.92-12.44,4.25,0,14.24,2.15,13.4,10.83Z'/%3E%3Cpath class='cls-3' d='M735.95,475.14c0,4.97-4.04,9-9.01,9s-9.01-4.03-9.01-9,4.03-9.01,9.01-9.01,9.01,4.03,9.01,9.01Z'/%3E%3Cg%3E%3Cpath class='cls-2' d='M580.3,313.78c-8.17,13.7-23.74,10.89-34.74,5.07-5.82-3.08-5.13-15.18.03-15.34,11.48-.36,20.9,3.06,34.71,10.27Z'/%3E%3Cpath class='cls-1' d='M632.93,367.11c-5.38,3.56-26.46-9.01-22.46-13.14,7.23-7.48,21.24-9.23,25.85-1.71,2.19,3.58,1.36,11.71-3.39,14.85Z'/%3E%3Cpath class='cls-1' d='M343.89,484.27c0,6.17-5,11.17-11.17,11.17s-11.16-5-11.16-11.17,5-11.16,11.16-11.16,11.17,5,11.17,11.16Z'/%3E%3Cpath class='cls-2' d='M624.16,458.61c0,5.94-4.82,10.76-10.76,10.76s-10.76-4.82-10.76-10.76,4.82-10.76,10.76-10.76,10.76,4.82,10.76,10.76Z'/%3E%3Cpath class='cls-1' d='M346.68,388.73c-1.21,5.2-3.97,8.16-6.86,9.43-5.03,2.22-7.93,1.19-9.68-1.22-3.51-4.86-2.15-12.15,2.31-15.92,2.93-2.47,6.79-4.03,9.97-3.13,3.67,1.03,5.51,5.45,4.26,10.84Z'/%3E%3Cpath class='cls-1' d='M465.37,265.44c0,5.16-4.19,9.35-9.35,9.35s-9.36-4.19-9.36-9.35,4.19-9.36,9.36-9.36,9.35,4.19,9.35,9.36Z'/%3E%3Cpath class='cls-2' d='M535.59,408.54c0,5.37-4.35,9.72-9.72,9.72s-9.72-4.35-9.72-9.72,4.35-9.73,9.72-9.73,9.72,4.36,9.72,9.73Z'/%3E%3Cpath class='cls-1' d='M226.4,474.8c0,5.35-4.34,9.68-9.69,9.68s-9.68-4.33-9.68-9.68,4.33-9.69,9.68-9.69,9.69,4.34,9.69,9.69Z'/%3E%3Cpath class='cls-1' d='M549.73,272.66c-7,5.28-10.29-.77-12.44-2.98-2.93-3.02-5.65-9.17-2.1-12.12,4.18-3.48,10.26-2.28,14.27-.01,3.53,1.99,6.29,10.57.27,15.11Z'/%3E%3Cpath class='cls-1' d='M510.11,493.97c0,5.21-4.23,9.44-9.45,9.44s-9.44-4.23-9.44-9.44,4.23-9.44,9.44-9.44,9.45,4.22,9.45,9.44Z'/%3E%3Cpath class='cls-2' d='M715.49,437.66c-1.02,5.44-18.98,6.24-22.32,1.61-4.16-5.79,2.98-12.41,8.92-12.44,4.25,0,14.24,2.15,13.4,10.83Z'/%3E%3Cpath class='cls-1' d='M651.45,489.43c-3.44,3.1-9.05,3.27-14,.44-2.96-1.69-4.79-8.47.22-11.92,4.14-2.85,10.05-1.35,12.99.13,3.3,1.66,4.56,7.96.79,11.35Z'/%3E%3Cpath class='cls-1' d='M445.66,357.53c0,5.11-4.15,9.25-9.26,9.25s-9.26-4.14-9.26-9.25,4.15-9.26,9.26-9.26,9.26,4.14,9.26,9.26Z'/%3E%3Cpath class='cls-2' d='M295.65,398.22c0,5.15-4.18,9.34-9.34,9.34s-9.34-4.19-9.34-9.34,4.18-9.35,9.34-9.35,9.34,4.19,9.34,9.35Z'/%3E%3Cpath class='cls-2' d='M735.95,475.14c0,4.97-4.04,9-9.01,9s-9.01-4.03-9.01-9,4.03-9.01,9.01-9.01,9.01,4.03,9.01,9.01Z'/%3E%3Ccircle class='cls-2' cx='410.78' cy='448.54' r='9.13'/%3E%3Cpath class='cls-1' d='M683.55,407.55c0,4.54-3.68,8.22-8.23,8.22s-8.22-3.68-8.22-8.22,3.68-8.23,8.22-8.23,8.23,3.68,8.23,8.23Z'/%3E%3Cpolygon class='cls-2' points='398.37 314.69 382.69 321.98 376.73 309.14 392.4 301.86 398.37 314.69'/%3E%3Ccircle class='cls-2' cx='513.53' cy='223.12' r='8.11'/%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
  }
}

@media screen and (max-width: 1080px) {

  .hero-title {
    font-size: 32px;
  }

  .about-section-2 h2 {
    font-size: 30px;
    margin-bottom: 25px;
  }

  .video-section {
    padding: 70px 20px;
  }

  .video-section .videoContent {
    flex-wrap: wrap;
  }

  .video-section .videoContent .colLeft,
  .video-section .videoContent .colRight {
    width: 100%;
  }

  .video-section .text {
    border-radius: 20px 20px 0 0;
  }

  .video-section video {
    border-radius: 0 0 20px 20px;
  }

  .account-page .woocommerce .col2-set .col-1,
  .account-page .woocommerce .col2-set .col-2 {
    width: 100%;
  }

  .account-page .woocommerce .col2-set .col-1 {
    margin-bottom: 25px;
  }

  .account-page .woocommerce-form {
    min-height: unset;
  }

  .reset-link-page .productlist>.woocommerce .woocommerce-message {
    font-size: 18px;
  }

  .checkout-page .wc-block-components-title.wc-block-components-checkout-step__title {
    font-size: 18px;
  }

  .checkout-page .wc-block-components-sidebar-layout .wc-block-components-main {
    width: 60%;
  }

  .checkout-page .wc-block-components-sidebar {
    width: 40%;
  }
}

@media screen and (max-width: 1023px) {
  .page-heading {
    font-size: 22px;
  }

  .offerspopupwrapper.ays-pb-modal_2 .ays_content_box p {
    font-size: 14px;
    max-width: 350px;
  }

  .subscribe-popup .values .box h2 {
    font-size: 12px;
  }

  .offerspopupwrapper .popup-content h1 {
    font-size: 28px;
  }

  .subscribe-popup .values .box>img {
    width: 30px;
  }

  .offerspopupwrapper.ays_lil_window {
    height: 560px !important;
  }

  .footer-row {
    flex-wrap: wrap;
  }

  .footer-row .copyright {
    max-width: 100%;
    width: 100%;
    text-align: center;
    border-top: 1px solid #666;
    padding-top: 35px;
  }

  .shop-page .wc-block-components-button:not(.is-link) {
    padding: 12px 20px !important;
    min-height: unset;
  }

  .shop-page .wc-block-components-sidebar-layout .wc-block-components-main {
    padding-right: 20px;
  }

  .banner-slider.desktop {
    display: none;
  }

  .banner-slider.mobile {
    display: block;
  }
}

@media screen and (max-width: 991px) {
  .our-collections h2 {
    font-size: 20px;
  }

  .subscribe-popup .values .box h2 {
    font-size: 11px;
  }

  .subscribe-popup .left-col img {
    max-width: 160px;
  }

  .contact-content {
    grid-template-columns: 1fr;
  }

  .contact-info {
    max-width: 100%;
  }

  .contact-image {
    margin-left: 20px;
  }

  .about-section-2 .subtitle {
    max-width: 100%;
  }

  .video-section .text h2 {
    font-size: 32px;
  }

  .video-section .text {
    padding: 20px 30px;
  }

  .account-page .woocommerce-EditAccountForm.edit-account,
  .account-page .woocommerce-address-fields .woocommerce-address-fields__field-wrapper {
    margin: 0 -10px;
  }

  .account-page .woocommerce-EditAccountForm.edit-account .form-row,
  .account-page .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row {
    padding: 0 10px;
  }

  .account-page .woocommerce-EditAccountForm.edit-account .button {
    margin-left: 10px;
  }
}

@media screen and (max-width: 900px) {

  .account-page .woocommerce-EditAccountForm.edit-account .form-row,
  .account-page .woocommerce-address-fields .woocommerce-address-fields__field-wrapper .form-row {
    width: 100%;
  }

  .account-page .productlist.content-page .woocommerce .clear+p {
    width: calc(100% - 20px);
  }

  .account-page .woocommerce-EditAccountForm.edit-account .button {
    margin-right: 10px;
    width: 100%;
  }

  .account-page .woocommerce-MyAccount-content .button {
    width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .hero-title {
    font-size: 24px;
  }

  .hero-subtitle {
    font-size: 16px;
  }

  .about-content,
  .contact-content,
  .follow-content {
    grid-template-columns: 1fr;
    gap: 2rem;
  }

  .btn {
    width: 200px;
  }

  .banner-container {
    padding: 0 15px;
  }

  .about-section,
  .contact-section,
  .follow-section {
    padding: 60px 0;
  }

  .category-list {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
  }

  .banner-container {
    margin: 0;
  }

  .product-showcase {
    padding: 1rem 0 2rem;
  }

  .mobile-hamburger {
    display: flex !important;
    position: fixed;
    top: 64px;
    right: 18px;
    z-index: 1200;
  }

  .header .nav.menu-nav {
    display: none !important;
  }

  .mobile-side-nav {
    display: block;
  }

  .hero-subtitle {
    margin-bottom: 1rem;
  }

  .header.scrolled .mobile-hamburger {
    top: 19px;
  }

  .about-section-2 h2 {
    font-size: 24px;
  }

  .woocommerce ul.products[class*=columns-] li.product,
  .woocommerce-page ul.products[class*=columns-] li.product {
    margin-bottom: 0 !important;
  }

  #home-product-list.productlist .woocommerce ul.products li.product.last {
    display: flex;
  }

  [data-ux="hidden-nav-Block"] ul[data-ux="Dropdown"] {
    right: -30px !important;
  }
}

@media screen and (max-width: 767px) {
  .blank-template-wrapper .small {
    font-size: 12px;
  }

  .offerspopupwrapper.ays_lil_window .ays_lil_main .ays_lil_content {
    height: auto;
  }

  .subscribe-popup .left-col {
    height: 200px;
  }

  .footer-row .connect {
    width: 100%;
    margin-bottom: 20px;
  }

  .footer-row .links {
    width: calc(50% - 20px);
  }

  .blank-template-wrapper .ewd-ufaq-faq-title-text h4 {
    font-size: 16px;
    line-height: 24px;
  }

  .blank-template-wrapper .ewd-ufaq-faq-body p {
    font-size: 14px;
  }

  .offerspopupwrapper.ays_lil_window .ays_lil_main::before {
    display: none;
  }

  .offerspopupwrapper .popup-content::before {
    content: '';
    display: block;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' version='1.1' width='881' height='608'%3E%3Cpath d='M0 0 C0.83289551 0.24717773 1.66579102 0.49435547 2.52392578 0.74902344 C22.18281595 6.82909256 40.50085582 16.64328928 58.78125 25.95703125 C96.82330177 45.31300224 131.14890155 56.89358449 173.46459961 43.82568359 C189.26065697 38.68150776 204.49443901 31.88848976 219.77294922 25.39746094 C276.92497113 1.13271001 332.88625408 -7.92898866 392.28857422 14.90332031 C402.87702143 19.18598778 413.36856249 23.99647723 423.46875 29.33203125 C424.12963623 29.67105469 424.79052246 30.01007812 425.47143555 30.359375 C427.15671499 31.2318496 428.82360464 32.1396114 430.48828125 33.05078125 C435.67716536 34.45333836 439.83749561 33.16890735 445 32 C447.28064825 31.57176473 449.56332586 31.15423169 451.84765625 30.74609375 C453.03037109 30.53146484 454.21308594 30.31683594 455.43164062 30.09570312 C456.62982422 29.87849609 457.82800781 29.66128906 459.0625 29.4375 C460.26455078 29.21642578 461.46660156 28.99535156 462.70507812 28.76757812 C499.42689663 22.13641505 534.42905589 28.31419237 569.87890625 38.52734375 C571.38299432 38.95281951 572.88722567 39.3777891 574.39160156 39.80224609 C577.25322473 40.60976942 580.09838047 41.4569864 582.94042969 42.33056641 C593.18705249 45.32851977 601.55066531 44.7994159 612 43 C628.47273743 40.76964579 645.01600296 41.52355737 661.37109375 44.24609375 C662.52955811 44.43449829 662.52955811 44.43449829 663.71142578 44.62670898 C665.2326046 44.87482957 666.75191448 45.13470385 668.26904297 45.40649414 C674.15726814 46.30525014 678.63502819 45.42149561 684.25 43.5625 C685.11496094 43.28736572 685.97992187 43.01223145 686.87109375 42.72875977 C689.59112902 41.84734863 692.29674121 40.9315151 695 40 C695.83080078 39.71479492 696.66160156 39.42958984 697.51757812 39.13574219 C712.27839412 33.9758845 726.36488745 27.36250369 740.47558594 20.66748047 C746.63801919 17.75189311 752.81990182 14.87790772 759 12 C759.11645445 19.51973593 759.20499676 27.03937698 759.25906086 34.55981255 C759.28502497 38.05289708 759.32017526 41.5453594 759.37719727 45.03808594 C759.44251215 49.06450976 759.46628893 53.09029216 759.48828125 57.1171875 C759.51408768 58.35612762 759.5398941 59.59506775 759.56648254 60.87155151 C759.56923085 69.46218148 758.11187495 76.16844724 752.44233704 82.83029175 C744.34743497 90.518 734.3925564 90.43584719 723.8119421 90.37752342 C722.3730162 90.38065623 720.93409266 90.38510251 719.49517438 90.39073652 C715.54178181 90.40240845 711.58860931 90.39543433 707.63522037 90.38540266 C703.33397991 90.37779025 699.03277309 90.38757322 694.7315374 90.39513266 C687.19328647 90.40596996 679.65509999 90.40563766 672.11684608 90.39799118 C660.90732574 90.38665158 649.69785984 90.39244085 638.48833987 90.4016161 C618.46935585 90.41742187 598.45040054 90.41604078 578.43141378 90.40737936 C560.91324253 90.39983702 543.3950818 90.39786058 525.87690926 90.4014473 C524.71554396 90.40167645 523.55417867 90.40190561 522.35762049 90.40214171 C517.64344345 90.4030757 512.92926642 90.4040309 508.21508939 90.405021 C463.98051458 90.41420078 419.74595807 90.40587308 375.51138609 90.38973031 C336.19711543 90.37549224 296.88287392 90.37676784 257.56860352 90.39111328 C213.41417257 90.40717094 169.25975779 90.41355073 125.10532433 90.40427649 C120.39997455 90.40331431 115.69462476 90.4023758 110.98927498 90.4014473 C109.83066961 90.40121006 108.67206425 90.40097283 107.47834963 90.40072841 C89.96893944 90.39731351 72.45954094 90.40131142 54.95013237 90.40888596 C35.04538826 90.41745369 15.14067737 90.41534065 -4.76406259 90.39904372 C-15.90914629 90.39022018 -27.05415807 90.38968098 -38.19923994 90.40098225 C-45.63813736 90.40769465 -53.07697695 90.40354949 -60.51586578 90.39046794 C-64.75794153 90.38331261 -68.99987407 90.38093079 -73.24194545 90.39168589 C-77.10042564 90.40136895 -80.95863544 90.39727126 -84.81709588 90.38214391 C-86.20482518 90.37912037 -87.59257682 90.38112624 -88.9802884 90.38876172 C-100.02858219 90.44524202 -108.85402616 89.05566371 -117 81 C-120.99933312 75.12201761 -122.12913868 69.24154258 -122.11352539 62.19995117 C-122.11344986 61.05914597 -122.11337433 59.91834076 -122.11329651 58.7429657 C-122.10813522 57.52196671 -122.10297394 56.30096771 -122.09765625 55.04296875 C-122.0962413 53.78486893 -122.09482635 52.5267691 -122.09336853 51.23054504 C-122.08872573 47.89821471 -122.07975228 44.56595368 -122.06866455 41.23364258 C-122.05840503 37.82829383 -122.05386121 34.4229379 -122.04882812 31.01757812 C-122.0378083 24.34503302 -122.021077 17.67252051 -122 11 C-118.39054012 9.88663906 -114.77940183 8.77881704 -111.16796875 7.671875 C-110.16052612 7.3610498 -109.1530835 7.05022461 -108.1151123 6.72998047 C-98.17131076 3.68754852 -88.17495219 1.13776368 -78 -1 C-77.25411621 -1.16516113 -76.50823242 -1.33032227 -75.73974609 -1.50048828 C-52.13857905 -6.57324412 -23.19678759 -6.92143016 0 0 Z ' fill='%23FBB217' transform='translate(122,518)'/%3E%3Cpath d='M0 0 C0.83289551 0.24717773 1.66579102 0.49435547 2.52392578 0.74902344 C22.18281595 6.82909256 40.50085582 16.64328928 58.78125 25.95703125 C96.82330177 45.31300224 131.14890155 56.89358449 173.46459961 43.82568359 C189.26065697 38.68150776 204.49443901 31.88848976 219.77294922 25.39746094 C277.79131352 0.76489131 335.00075321 -8.20965279 395 16 C408.58177185 21.78840046 421.86774266 28.26006204 435 35 C431.52843427 36.92960477 428.00479666 37.93068518 424.1875 39 C415.9692259 41.36096554 407.82394351 43.93482452 399.6875 46.5625 C399.03381439 46.77333221 398.38012878 46.98416443 397.70663452 47.2013855 C389.81444788 49.75009733 381.9394479 52.34600481 374.08203125 55 C349.68497618 63.23483935 325.14492678 71.32777233 300 77 C298.91203125 77.25007812 297.8240625 77.50015625 296.703125 77.7578125 C292.81578756 78.5933262 288.91555009 79.31315958 285 80 C284.06269043 80.17063965 283.12538086 80.3412793 282.15966797 80.51708984 C217.3930164 92.03677019 151.68238786 74.26006502 89.54109192 56.81584167 C81.70567501 54.62251522 73.83096421 52.59801098 65.9375 50.625 C64.79569778 50.33902451 64.79569778 50.33902451 63.63082886 50.04727173 C47.17251486 45.93881303 30.62326609 42.3701138 14 39 C12.16793203 38.61866598 10.3358964 38.23717647 8.50390625 37.85546875 C-34.34193382 29.10934627 -78.4307296 25.8204262 -122 23 C-122 19.04 -122 15.08 -122 11 C-107.45500872 6.40754142 -92.93327956 2.13749117 -78 -1 C-77.25411621 -1.16516113 -76.50823242 -1.33032227 -75.73974609 -1.50048828 C-52.13857905 -6.57324412 -23.19678759 -6.92143016 0 0 Z ' fill='%23FEC442' transform='translate(122,518)'/%3E%3Cpath d='M0 0 C-17.51601612 11.67734408 -50.82524343 4.81898726 -69.68359375 1.09375 C-71.45632076 0.73205415 -73.22870647 0.36865181 -75 0 C-62.0707072 -12.9292928 -15.65749212 -5.82722199 0 0 Z ' fill='%23FEC441' transform='translate(794,565)'/%3E%3C/svg%3E");
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: 100px;
    background-position: bottom;
    background-repeat: no-repeat;
    background-size: cover;
    z-index: 1;
  }

  .offerspopupwrapper .popup-content {
    padding: 40px 20px 60px;
  }

  .offerspopupwrapper .popup-content h1 {
    font-size: 24px;
  }

  .offerspopupwrapper.ays_lil_window {
    width: 400px !important;
  }

  .subscribe-popup .values .col-6:not(:nth-last-of-type(1)) .box {
    border-right: 0;
  }

  .subscribe-popup .values .col-6:not(:nth-of-type(2n)) .box {
    border-right: 1px solid var(--border);
  }

  .offerspopupwrapper.ays-pb-modal_2 .ays_content_box .signup-text {
    font-size: 13px;
  }

  .offerspopupwrapper.ays-pb-modal_2 .ays_content_box .signup-text2 {
    font-size: 12px;
  }

  .subscribe-popup .left-col img {
    max-width: 120px;
  }

  .subscribe-popup .left-col::after {
    bottom: 0;
  }

  .subscribe-popup .values {
    margin-bottom: 0;
  }

  .subscribe-popup .values .box {
    margin-bottom: 20px;
  }

  .send-message-card .wp-block-contact-form-7-contact-form-selector p:first-of-type,
  .send-message-card .wp-block-contact-form-7-contact-form-selector p:nth-of-type(2) {
    width: 100%;
  }

  .send-message-card .wp-block-contact-form-7-contact-form-selector p:last-of-type {
    max-width: 100%;
  }

  .page-heading {
    font-size: 20px;
  }

  .contact-info h4 {
    font-size: 16px;
  }

  .contact-info p,
  .contact-info address,
  .contact-info a {
    font-size: 13px;
    line-height: 22px;
  }

  .btn-whatsapp {
    font-size: 13px;
  }

  .choose-homemade h3 {
    font-size: 16px;
    margin-bottom: 3px;
  }

  .choose-homemade h2 {
    font-size: 18px;
  }

  .choose-homemade .sm_card p {
    font-size: 13px;
  }

  .about-section-2 {
    padding: 50px 0 30px;
  }

  .about-section-2 .leaf-separator {
    display: none;
  }

  .about-row {
    gap: 10px;
  }

  .about-section-2 .subtitle {
    margin-bottom: 20px;
  }

  .about-section-2 .subtitle,
  .about-section-2 p {
    font-size: 14px;
  }

  .about-section-2 .about-content {
    margin-top: 20px;
  }

  .about-section-2 .about-text .about {
    margin-top: 20px;
    font-size: 14px;
  }

  .about-section-2 .about-image {
    display: none;
  }

  .feature-section .inner-content {
    padding: 30px 20px;
  }

  .video-section .text h2 {
    font-size: 24px;
  }

  .video-section .text {
    padding: 20px;
  }

  .video-section .videoContent .colLeft::before {
    bottom: 10px;
    left: -10px;
  }

  .video-section .videoWrapper::before {
    top: 10px;
    left: 10px;
  }

  .video-section {
    padding: 60px 0;
  }

  .our-collections {
    padding: 30px 0;
  }

  .video-section .text p {
    text-align: left;
  }

  .our-collections h2 {
    font-size: 18px;
    margin-bottom: 0;
    letter-spacing: normal;
  }

  .view-all .txt {
    display: none;
  }

  .productlist .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .productlist .wc-block-grid__product .wc-block-grid__product-title,
  .productlist .woocommerce ul.products li.product .button {
    font-size: 13px;
  }

  .woocommerce ul.products li.product .price {
    font-size: 12px;
  }

  .productlist .woocommerce ul.products li.product .price ins .amount,
  .productlist .wc-block-grid__product .price ins .amount {
    font-size: 13px;
  }

  .product-card .title {
    font-size: 13px;
    margin-bottom: 0;
  }

  .product-card .subtitle {
    display: none;
  }

  .shop-page .productlist .woocommerce ul.products .product,
  .productlist .wc-block-grid.has-4-columns .wc-block-grid__products .wc-block-grid__product {
    width: calc(100%/2 - 8px);
  }

  .term-description {
    display: none;
  }

  .xoo-wsc-ft-amt-savings .xoo-wsc-ft-amt-label {
    font-size: 14px;
  }

  .xoo-wsc-ft-amt-value,
  .xoo-wsc-modal .xoo-wsc-footer-txt {
    font-size: 14px;
  }

  .xoo-wsc-ft-amt-label,
  .xoo-wsc-ft-amt-value {
    font-size: 14px;
  }

  .xoo-wsc-products:not(.xoo-wsc-pattern-card),
  .xoo-wsc-products:not(.xoo-wsc-pattern-card) span.amount,
  .xoo-wsc-products:not(.xoo-wsc-pattern-card) a {
    font-size: 14px;
  }

  .xoo-wsc-sm-right .xoo-wsc-smr-ptotal {
    display: none;
  }

  .xoo-wsc-container .xoo-wsc-footer,
  .xoo-wsc-container .xoo-wsc-footer a,
  .xoo-wsc-container .xoo-wsc-footer .amount {
    font-size: 14px;
  }

  .xoo-wsc-container .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-cart,
  .xoo-wsc-container .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-continue,
  .xoo-wsc-container .xoo-wsc-empty-cart .xoo-wsc-btn,
  .xoo-wsc-container .xoo-wsc-ft-buttons-cont .xoo-wsc-ft-btn-checkout {
    font-size: 14px;
  }

  .xoo-wsc-container .xoo-wsch-text {
    font-size: 18px;
  }

  .shop-page .continueshopping-btn .wp-block-button {
    width: 100%;
  }

  .shop-page .wc-block-cart__submit {
    margin-bottom: 0;
  }

  .shop-page .wc-block-cart-item__product {
    padding-right: 10px;
  }

  .shop-page .wc-block-components-product-name,
  .shop-page .wc-block-cart-item__prices,
  .shop-page .wc-block-components-panel__button,
  .shop-page .wc-block-components-totals-item__label,
  .shop-page .wc-block-components-quantity-selector input.wc-block-components-quantity-selector__input,
  .shop-page .wc-block-components-formatted-money-amount {
    font-size: 14px;
  }

  .shop-page .wc-block-components-totals-item__value .wc-block-components-formatted-money-amount,
  .shop-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__label,
  .shop-page .wc-block-components-totals-footer-item .wc-block-components-totals-item__value {
    font-size: 16px;
  }

  .shop-page .wc-block-components-product-name {
    margin-top: 3px;
  }

  .shop-page .wc-block-components-product-price {
    line-height: normal;
  }

  .account-page #customer_login h2,
  .account-page .woocommerce .lost_reset_password>p:nth-child(1)::before {
    font-size: 18px;
  }

  .account-page .productlist.content-page .woocommerce p {
    font-size: 14px;
  }

  .account-page .woocommerce .lost_reset_password>p:nth-child(1)::before {
    margin-bottom: 8px;
  }

  .checkout-page .wc-block-components-form .wc-block-components-checkout-step {
    padding: 16px;
    margin-bottom: 20px;
  }

  .checkout-page .wc-block-components-form .wc-block-checkout__order-notes.wc-block-components-checkout-step {
    padding: 16px;
    margin-bottom: 20px;
  }

  .is-medium .wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper,
  .is-mobile .wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper,
  .is-small .wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper {
    padding: 16px;
  }

  .checkout-page .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill {
    margin-top: 20px;
  }

  .checkout-page .wc-block-components-order-summary__content {
    padding-top: 16px;
  }

  .checkout-page .wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
    padding: 16px;
    margin-bottom: 0;
  }

  .checkout-page .wc-block-components-radio-control-accordion-content {
    font-size: 14px;
  }

  .checkout-page .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row {
    padding: 16px;
  }

  .checkout-page .wc-block-components-checkbox__label {
    font-size: 14px;
  }

  .checkout-page .wc-block-checkout__actions .wc-block-components-checkout-place-order-button,
  .checkout-page .wc-block-components-checkout-return-to-cart-button {
    font-size: 14px;
  }

  .order-placed .woocommerce ul.order_details li {
    flex: 0 0 50%;
  }

  .order-placed .woocommerce-order-details__title,
  .order-placed .wc-block-order-confirmation-additional-fields-wrapper h2,
  .order-placed .woocommerce-column__title {
    font-size: 18px;
    padding: 16px;
  }

  .order-placed .woocommerce .woocommerce-customer-details address {
    padding: 0 16px;
  }

  .order-placed .woocommerce table.shop_table.order_details th,
  .order-placed .woocommerce table.shop_table.order_details td,
  .order-placed .woocommerce-table.woocommerce-table--custom-fields.custom-fields th,
  .order-placed .woocommerce-table.woocommerce-table--custom-fields.custom-fields td,
  .order-placed .woocommerce table.shop_table.order_details th,
  .order-placed .woocommerce table.shop_table.order_details td,
  .woocommerce table.shop_table th,
  .woocommerce table.shop_table td {
    padding: 10px 16px;
  }

  .order-placed .woocommerce table.shop_table.order_details .product-purchase-note p {
    font-size: 14px;
  }

  .sortby-category ul {
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
  }

  .sortby-category ul>li>a::before {
    width: 60px;
    height: 60px;
  }

  .sortby-category ul>li>a .cat-title {
    font-size: 14px;
  }

  .order-placed .woocommerce-privacy-policy-text p {
    font-size: 14px;
  }

  .detail-page .woocommerce div.product .woocommerce-tabs .panel h2 {
    font-size: 16px;
    line-height: normal;
  }

  .productlist .cr-review-form-rating .cr-review-form-rating-cont .cr-review-form-rating-nbr,
  .productlist .cr-review-form-rating .cr-review-form-rating-label,
  .productlist .comment-form-comment label {
    font-size: 14px !important;
  }

  .about-section-2 {
    text-align: center;
  }

  .about-section-2 .about-row {
    display: none;
  }

  .feature-section {
    display: none;
  }

  .product-card .content {
    padding: 12px;
  }

  .choose-homemade .sm_card {
    display: flex;
    align-items: center;
  }

  .choose-homemade figure {
    width: 60px;
    height: 60px;
    margin: 0;
    flex-shrink: 0;
  }

  .choose-homemade .boxwrap {
    text-align: left;
    margin-left: 12px;
    flex: 1;
  }

  .choose-homemade .sm_card p {
    font-size: 13px;
  }

  .choose-homemade .sm_card {
    padding: 20px;
  }

  .choose-homemade .row {
    row-gap: 15px;
  }

  .choose-homemade .row .col-xs-12 {
    padding: 0 8px;
  }

  .choose-homemade .boxwrap {
    margin-left: 10px;
  }
}

@media screen and (max-width: 600px) {
  .checkout-page .wc-block-components-sidebar-layout .wc-block-components-main {
    border: 0;
  }

  .checkout-page .wc-block-components-form .wc-block-checkout__order-notes.wc-block-components-checkout-step {
    margin-top: 0;
  }

  .is-medium .wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper,
  .is-mobile .wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper,
  .is-small .wp-block-woocommerce-checkout-order-summary-block.checkout-order-summary-block-fill-wrapper {
    padding: 0;
  }

  .checkout-page .wc-block-checkout__terms.wc-block-checkout__terms--with-separator {
    padding: 0;
  }

  .checkout-page .wp-block-woocommerce-checkout-actions-block .wc-block-checkout__actions_row {
    padding: 0;
    margin-top: 20px;
  }

  .checkout-page .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill .wc-block-components-totals-coupon,
  .checkout-page .wp-block-woocommerce-checkout-order-summary-block .checkout-order-summary-block-fill .wc-block-components-totals-item {
    padding: 0;
  }

  .checkout-page .wc-block-components-checkout-step__content {
    padding-top: 0;
  }

  .checkout-page .wc-block-components-title.wc-block-components-checkout-step__title {
    font-size: 16px;
  }

  .checkout-page .wc-block-components-address-card address .wc-block-components-address-card__address-section {
    font-size: 14px;
  }

  .checkout-page .wc-block-components-address-card__edit {
    font-size: 13px;
  }

  .checkout-page .wc-block-components-radio-control__label {
    font-size: 14px;
  }

  .checkout-page .wc-block-components-address-address-wrapper:not(.is-editing) .wc-block-components-address-form-wrapper {
    display: none;
  }

  .order-placed .woocommerce ul.order_details li::before {
    width: 30px;
    height: 30px;
  }

  .order-placed .woocommerce ul.order_details li.order::before {
    background-size: 36px;
  }

  .order-placed .woocommerce ul.order_details li strong,
  .order-placed .woocommerce ul.order_details+p,
  .order-placed .woocommerce-thankyou-order-details+p {
    font-size: 14px;
  }

  .order-placed .woocommerce-order-details__title,
  .order-placed .wc-block-order-confirmation-additional-fields-wrapper h2,
  .order-placed .woocommerce-column__title {
    font-size: 16px;
  }

  .order-placed .woocommerce table.shop_table.order_details th,
  .order-placed .woocommerce table.shop_table.order_details td,
  .order-placed .woocommerce-table.woocommerce-table--custom-fields.custom-fields th,
  .order-placed .woocommerce-table.woocommerce-table--custom-fields.custom-fields td,
  .order-placed .woocommerce .woocommerce-customer-details address,
  .woocommerce table.shop_table th,
  .woocommerce table.shop_table td {
    font-size: 14px;
  }

  .order-placed .woocommerce ul.order_details li {
    flex: 0 0 100%;
    border-right: 0;
  }

  .order-placed .woocommerce ul.order_details li:not(:nth-last-of-type(1)) {
    border-bottom: 1px solid var(--border);
  }

  .order-placed .woocommerce table.shop_table.order_details .product-purchase-note p {
    font-size: 12px;
  }

  .woocommerce .input-radio+label {
    font-size: 14px;
  }

  .order-placed .wc_payment_method .payment_box {
    font-size: 13px;
  }

  .account-page .woocommerce-MyAccount-content address {
    font-size: 14px;
  }

  .small {
    font-size: 12px !important;
  }
}

@media screen and (max-width: 576px) {
  .container {
    padding: 0 20px;
  }

  .feature-section h3 {
    font-size: 16px;
  }

  .hero-title {
    font-size: 18px;
    line-height: 24px;
    letter-spacing: .1px;
  }

  .hero-subtitle {
    font-size: 14px;
  }


  .about-section-2 h2 {
    font-size: 18px;
    margin-bottom: 15px;
  }

  .logo h1 {
    font-size: 1.5rem;
  }

  .nav {
    gap: 0.5rem;
  }

  .category-list {
    gap: 0;
  }

  .subscribe-popup .left-col {
    height: 150px;
  }

  .hero-subtitle {
    font-size: 14px;
  }

  .video-section .text h2 {
    font-size: 20px;
  }

  .small {
    font-size: 11px !important;
  }

  .our-collections h2 {
    font-size: 16px;
  }

  .feature-section .box .small {
    font-size: 13px !important;
  }

  .video-section .text p {
    font-size: 13px;
    line-height: 24px;
  }

  .shop-page .productlist .woocommerce ul.products .product {
    width: 100%;
  }

  .shop-page .woocommerce .woocommerce-ordering {
    width: 100%;
  }

  .shop-page .woocommerce .woocommerce-result-count {
    font-size: 13px;
  }

  .shop-page .woocommerce .woocommerce-ordering select {
    width: 100%;
    font-size: 13px;
  }

  .reset-link-page .productlist>.woocommerce .woocommerce-message {
    font-size: 16px;
  }

  .hero-buttons .btn {
    font-size: 13px !important;
    min-height: 40px !important;
  }

  .about-section-2 .subtitle,
  .about-section-2 p {
    font-size: 13px;
    line-height: 24px;
  }

  .categories_box .row {
    row-gap: 20px;
  }

  .categories_box .row .col-6 {
    padding: 0 8px;
  }

  .product-card::before {
    top: 5px;
    right: 5px;
  }

  .product-card .title {
    font-size: 12px;
  }

  .product-card .content {
    padding: 12px 8px;
  }

  .product-card {
    border-radius: 8px;
  }

  .product-card .img {
    border-radius: 8px 8px 0 0;
  }

  .choose-homemade h2 {
    font-size: 16px;
  }

  .choose-homemade h3 {
    font-size: 14px;
  }

  .choose-homemade .sm_card p {
    font-size: 12px;
  }

  .choose-homemade .sm_card {
    padding: 16px;
  }

  .choose-homemade .row {
    row-gap: 10px;
  }

  .page-heading {
    font-size: 18px;
  }

  .footer-row .column h3,
  footer ul li,
  .footer-row .column .text a {
    font-size: 13px;
  }


  .footer-row .copyright {
    font-size: 12px;
  }

  .productlist .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .productlist .wc-block-grid__product .wc-block-grid__product-title {
    margin: 10px;
  }

  .productlist .woocommerce ul.products li.product .price,
  .productlist .wc-block-grid__product .price {
    padding: 0 10px;
  }

  .productlist .woocommerce ul.products li.product .button,
  .productlist .wc-block-grid__product .add_to_cart_button {
    margin: 10px 10px 12px 10px;
  }

  .productlist .product,
  .productlist .wc-block-grid__product {
    border-radius: 8px;
  }

  .productlist .woocommerce .products .product a img,
  .productlist .wc-block-grid__product a img {
    border-radius: 7px 7px 0 0;
  }

  .productlist .woocommerce .onsale,
  .productlist .wc-block-grid__product .wc-block-grid__product-onsale {
    width: 40%;
    height: 15px;
    font-size: 9px;
    right: -3px;
  }

  .productlist .woocommerce ul.products li.product .price ins .amount,
  .productlist .wc-block-grid__product .price ins .amount,
  .productlist .woocommerce ul.products li.product .price del,
  .productlist .wc-block-grid__product .price del {
    font-size: 12px;
  }

  .productlist .woocommerce ul.products,
  .productlist .wc-block-grid.has-4-columns .wc-block-grid__products {
    gap: 12px;
  }

  .view-all svg {
    font-size: 15px;
  }

  .sortby-category ul {
    gap: 10px;
  }

  .sortby-category ul>li>a::before {
    width: 50px;
    height: 50px;
  }

  .sortby-category ul>li>a::before {
    margin-bottom: 10px;
  }

  .sortby-category ul>li>a .cat-title {
    font-size: 12px;
  }

  .defaultpage-wrapper .about-story p {
    font-size: 14px;
  }

  .contact-info-row p,
  .contact-info-row a,
  .card.follow-us-card p,
  .card.common-question-card p {
    font-size: 14px;
  }

  .card.common-question-card .wp-block-heading {
    font-size: 16px;
  }
}


@media screen and (max-width: 480px) {

  .header.scrolled .mobile-hamburger {
    top: 16px;
  }

  .footer-row .links {
    width: 100%;
  }

  .subscribe-popup .left-col img {
    max-width: 100px;
  }

  .productlist .woocommerce ul.products li.product .woocommerce-loop-product__title,
  .productlist .wc-block-grid__product .wc-block-grid__product-title,
  .productlist .woocommerce ul.products li.product .button {
    font-size: 12px;
  }

  .page-heading {
    font-size: 16px;
  }
}

@media screen and (max-width: 400px) {

  .header.scrolled .mobile-hamburger {
    top: 14px;
  }

  .sortby-category ul {
    grid-template-columns: repeat(auto-fit, minmax(130px, 1fr));
  }

  .categories_box .row .col-6 {
    padding: 0 5px;
  }
}

@media (min-width: 481px) and (max-width: 600px) {
  .productlist .wc-block-grid.has-4-columns .wc-block-grid__product:nth-child(2n) {
    padding-left: 0;
  }
}