/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
@keyframes transform-0-1 {
  0% {
    transform: scaleX(0);
  }
  100% {
    transform: scaleX(1);
  }
}
@keyframes checkboxleft {
  0% {
    transform: rotate(45deg) scaleX(0);
  }
  100% {
    transform: rotate(45deg) scaleX(1);
  }
}
@keyframes checkboxright {
  0% {
    transform: rotate(-45deg) scaleX(0);
  }
  100% {
    transform: rotate(-45deg) scaleX(1);
  }
}
@keyframes show {
  0% {
    opacity: 0;
  }
  100% {
    opacity: 1;
  }
}
/*
& when (@media-common = true) {
    .lib-font-face(
        @family-name: @icons__font-name,
        @font-path: @icons__font-path,
        @font-weight: normal,
        @font-style: normal
    );
}*/
.fast-anim {
  transition: all 600ms ease-in-out;
}
.fast-anim:hover {
  transition: all 10ms ease-in-out;
}
@keyframes ox-modal-close-slideout-left {
  from {
    transform: none;
  }
  to {
    transform: translateX(calc(-1 * 570px));
  }
}
@keyframes ox-modal-close-slideout-right {
  from {
    transform: none;
  }
  to {
    transform: translateX(570px);
  }
}
@keyframes ox-modal-close-slideout-top {
  from {
    transform: none;
  }
  to {
    transform: translateY(calc(-1 * var(--a2-slideout-height)));
  }
}
@keyframes ox-modal-active-slideout {
  to {
    transform: none;
  }
}
@keyframes ox-modal-close-dd {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
@keyframes ox-modal-active-dd {
  to {
    opacity: 1;
  }
}
@keyframes ox-modal-active-overlay {
  0% {
    opacity: 0;
  }
  20% {
    opacity: 1;
    transform: scale(0.95);
  }
  100% {
    opacity: 1;
    transform: scale(1);
  }
}
@keyframes ox-modal-close-overlay {
  0% {
    opacity: 1;
    visibility: visible;
    transform: scale(1);
  }
  100% {
    opacity: 0;
    visibility: hidden;
    transform: scale(0.95);
  }
}
@keyframes ox-modal-active-modal {
  to {
    opacity: 1;
  }
}
@keyframes ox-modal-close-modal {
  from {
    opacity: 1;
  }
  to {
    opacity: 0;
  }
}
.ox-modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 890;
  overflow: hidden;
  opacity: 0;
  display: flex;
  background: none;
  align-items: center;
  justify-content: center;
}
.ox-modal > div,
.ox-modal .ox-modal-content {
  background-color: var(--a2-modal-bg);
  width: 960px;
  height: 550px;
  overflow: hidden;
  max-height: 100vh;
  box-shadow: var(--a2-modal-shadow, var(--a2-dd-shadow));
  transition: transform 0.3s;
  transform: scale(0.95);
}
.ox-modal.ox-modal-active {
  opacity: 1;
  transition: opacity 0.5s;
  animation: ox-modal-active-modal 0.5s;
  animation-fill-mode: forwards;
}
.ox-modal.ox-modal-active > div,
.ox-modal.ox-modal-active .ox-modal-content {
  transform: scale(1);
  transition: transform 0.5s;
}
.ox-modal.ox-modal-close {
  animation: ox-modal-close-modal 0.3s;
  animation-fill-mode: forwards;
}
/* fix quickview scroll focus ios */
.touch .ox-modal #ox_quickview_wrapper {
  -webkit-overflow-scrolling: touch;
  overflow-y: auto;
}
/* Slideouts */
.ox-slideout {
  position: fixed;
  top: 0;
  bottom: 0;
  width: 100%;
  max-width: var(--a2-slideout-width);
  height: 100%;
  z-index: 890;
  background-color: var(--a2-slideout-bg, var(--a2-modal-bg));
  overflow: hidden;
  box-shadow: none;
  touch-action: manipulation;
}
.ox-slideout > div,
.ox-slideout .ox-modal-content {
  height: 100%;
  margin: 0;
  overflow-y: auto;
}
.ox-slideout .minicart-items-wrapper {
  height: auto !important;
  overflow-x: unset;
}
.ox-slideout .header__item-dropdown-content .block-compare,
.ox-slideout .header__item-dropdown-content .block-wishlist,
.ox-slideout .block-quotecart #quotecart-content-wrapper,
.ox-slideout .block-minicart #minicart-content-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
}
.ox-slideout .block-account > .block-content {
  flex: 1;
  display: flex;
  justify-content: start;
  flex-direction: column;
  transform: translateZ(0);
}
.ox-slideout .block-compare .block-content,
.ox-slideout .block-wishlist .block-content,
.ox-slideout .block-minicart .block-content {
  flex: 1;
  display: flex;
  justify-content: start;
  flex-direction: column;
  transform: translateZ(0);
}
.ox-slideout .block-compare .dropdown-bottom-wrapper,
.ox-slideout .block-wishlist .dropdown-bottom-wrapper,
.ox-slideout .block-minicart .dropdown-bottom-wrapper {
  display: block;
  flex: 1 1 auto;
}
.minicart--style-modern .ox-slideout-left,
.minicart--style-modern .ox-slideout-right {
  max-width: 570px;
  width: 100%;
  padding: 0;
}
.minicart--style-modern.ox-slideout-right {
  padding-right: 0;
  transform: translateX(570px);
}
.minicart--style-modern .ox-slideout-left {
  left: 0;
  transform: translateX(calc(-1 * 570px));
}
.ox-slideout-right {
  right: 0;
  transform: translateX(var(--a2-slideout-width));
}
.ox-slideout-right.ox-slideout-close {
  animation: ox-modal-close-slideout-right 0.3s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.76, 0.51, 0.12, 1);
}
.ox-slideout-left {
  left: 0;
  transform: translateX(calc(-1 * var(--a2-slideout-width)));
}
.ox-slideout-top {
  width: 100%;
  max-width: 100%;
  height: var(--a2-slideout-height);
  top: 0;
  left: 0;
  transform: translateY(calc(-1 * var(--a2-slideout-height)));
}
.ox-slideout-top.ox-slideout-close {
  animation: ox-modal-close-slideout-top 0.35s;
  animation-fill-mode: forwards;
  animation-timing-function: cubic-bezier(0.76, 0.51, 0.12, 1);
}
.ox-slideout-active {
  animation: ox-modal-active-slideout 0.35s;
  animation-fill-mode: forwards;
}
.ox-slideout-close {
  animation: ox-modal-close-slideout-left 0.3s;
  animation-fill-mode: forwards;
}
.ox-modal-overlay,
.ox-slideout-shadow {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background: var(--a2-modal-overlay);
  visibility: hidden;
  opacity: 0;
  z-index: 879;
  transition: 0.3s opacity, 0.4s visibility;
  will-change: opacity, visibility;
}
.ox-fixed-slideout .ox-modal-overlay,
.ox-fixed-modal .ox-modal-overlay,
.ox-fixed-slideout .ox-slideout-shadow,
.ox-fixed-modal .ox-slideout-shadow {
  opacity: 0.8;
  visibility: visible;
}
.ox-fixed-overlay .ox-modal-overlay,
.ox-fixed-overlay .ox-slideout-shadow {
  display: none!important;
}
.ox-fixed {
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.ox-fixed-slideout-right {
  overflow-y: hidden;
}
.ox-overlay {
  background: var(--a2-overlay-bg);
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 880;
  opacity: 0;
  visibility: hidden;
  overflow: auto;
  overflow-y: hidden;
  transform: scale(0.95);
}
.ox-overlay > div,
.ox-overlay .ox-modal-content {
  height: 100%;
  margin: 0;
  overflow-y: auto;
}
.ox-overlay.ox-overlay-active {
  visibility: visible;
  animation: ox-modal-active-overlay 0.5s;
  animation-fill-mode: forwards;
}
.ox-overlay.ox-overlay-close {
  animation: ox-modal-close-overlay 0.5s;
  animation-fill-mode: forwards;
}
/* close button */
.ox-overlay-close-btn {
  cursor: pointer;
  position: absolute;
  top: 0px;
  right: 0px;
  padding: 10px;
  z-index: 90;
  transition: transform 0.3s ease 0.3s;
  transition-property: transform, opacity;
  color: #000000;
}
.ox-overlay-close-btn span {
  display: inline-block;
  width: 20px;
  height: 20px;
  vertical-align: middle;
  position: relative;
  overflow: hidden;
}
.ox-overlay-close-btn span:before,
.ox-overlay-close-btn span:after {
  content: '';
  position: absolute;
  height: 2px;
  width: 100%;
  top: 50%;
  left: 0;
  margin-top: -1px;
  background-color: currentColor;
  transform-origin: 50% 50%;
  opacity: 1;
  transition: transform ease 0.3s;
}
.ox-overlay-close-btn span:before {
  transform: rotate(45deg);
}
.ox-overlay-close-btn span:after {
  transform: rotate(-45deg);
}
.ox-dialog .ox-overlay-close-btn {
  background: none;
}
.ox-dialog .ox-overlay-close-btn:after {
  content: none;
}
.ox-dialog .ox-overlay-close-btn:focus,
.ox-dialog .ox-overlay-close-btn:hover {
  color: #000000;
}
#ox_quickview_wrapper .ox-overlay-close-btn {
  width: 40px;
  height: 40px;
  background: #000000;
  color: #ffffff;
  transition: background-color 0.3s ease;
}
#ox_quickview_wrapper .ox-overlay-close-btn span {
  vertical-align: unset;
}
#ox_quickview_wrapper .ox-overlay-close-btn span:before,
#ox_quickview_wrapper .ox-overlay-close-btn span:after {
  background-color: currentColor;
}
#ox_quickview_wrapper .ox-overlay-close-btn:hover {
  color: #000000;
  background: var(--a2-main-color);
}
.no-touch .ox-overlay-close-btn:hover span:before,
.no-touch .ox-overlay-close-btn:hover span:after {
  transform: rotate(0);
}
@media (max-width: 959px) {
  .quickview-mobile--hide .product-item .ox-quickview-button,
  .quickview-mobile--hide .product-item .button.ox-quickview-button,
  .quickview-mobile--hide .product-item .button.quick-view {
    display: none!important;
  }
  .ox-modal > div,
  .ox-modal .ox-modal-content {
    width: 90%;
    height: 90%;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view,
  body.ox_quickview-catalog_product-view.catalog-product-view {
    overflow: auto!important;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view .athlete2_product_info__wrapper,
  body.ox_quickview-catalog_product-view.catalog-product-view .athlete2_product_info__wrapper,
  body.ox-quickview-catalog-product-view.catalog-product-view .column.main,
  body.ox_quickview-catalog_product-view.catalog-product-view .column.main {
    flex-direction: column;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view .product-info-main,
  body.ox_quickview-catalog_product-view.catalog-product-view .product-info-main,
  body.ox-quickview-catalog-product-view.catalog-product-view .product.media,
  body.ox_quickview-catalog_product-view.catalog-product-view .product.media {
    width: 100%;
    overflow: hidden;
    height: auto;
    margin-bottom: 0;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view .product-info-main #ox-zoom-cursor,
  body.ox_quickview-catalog_product-view.catalog-product-view .product-info-main #ox-zoom-cursor,
  body.ox-quickview-catalog-product-view.catalog-product-view .product.media #ox-zoom-cursor,
  body.ox_quickview-catalog_product-view.catalog-product-view .product.media #ox-zoom-cursor {
    display: none!important;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view .product.media,
  body.ox_quickview-catalog_product-view.catalog-product-view .product.media {
    padding: 30px 30px 0;
  }
  body.ox-quickview-catalog-product-view.catalog-product-view .product-info-main,
  body.ox_quickview-catalog_product-view.catalog-product-view .product-info-main {
    padding: 50px 40px 0;
  }
}
/*-------------------------------------------------------------------------------*/
/**
 * Copyright 2014 Adobe
 * All Rights Reserved.
 */
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.form-discount .g-recaptcha {
  margin-top: 50px !important;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.login-container .g-recaptcha,
.form-login .g-recaptcha,
.form-edit-account .g-recaptcha {
  margin-bottom: 10px !important;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.required-captcha.checkbox {
  position: absolute;
  display: block;
  visibility: visible;
  overflow: hidden;
  opacity: 0;
  width: 1px;
  height: 1px;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.block.newsletter .field-recaptcha .field .control:before {
  content: none;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.review-form .field-recaptcha {
  margin-bottom: 10px;
}
/**
 * Copyright © Magento, Inc. All rights reserved.
 * See COPYING.txt for license details.
 */
.form.send.friend .g-recaptcha {
  margin-top: 40px;
}
/**
 * Copyright 2024 Adobe
 * All rights reserved.
 */
.form.wishlist.share .g-recaptcha {
  margin-bottom: 40px;
}
/**
 * ADOBE CONFIDENTIAL
 *
 * Copyright 2020 Adobe
 * All Rights Reserved.
 *
 * NOTICE: All information contained herein is, and remains
 * the property of Adobe and its suppliers, if any. The intellectual
 * and technical concepts contained herein are proprietary to Adobe
 * and its suppliers and are protected by all applicable intellectual
 * property laws, including trade secret and copyright laws.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe.
 */
/**
 * ADOBE CONFIDENTIAL
 *
 * Copyright 2026 Adobe
 * All Rights Reserved.
 *
 * NOTICE: All information contained herein is, and remains
 * the property of Adobe and its suppliers, if any. The intellectual
 * and technical concepts contained herein are proprietary to Adobe
 * and its suppliers and are protected by all applicable intellectual
 * property laws, including trade secret and copyright laws.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe.
 */
.block-minicart .block-content > .actions .smart-buttons {
  margin-top: 15px;
}
.pay-later-message {
  margin-top: 10px;
}
.smart-buttons > div > div {
  vertical-align: bottom;
}
.apple-pay {
  margin-top: 14px;
}
.cart-summary .apple-pay {
  margin-top: 11px;
}
.google-pay {
  margin-top: 14px;
}
.google-pay button {
  background-origin: content-box;
  background-position: center center;
  background-repeat: no-repeat;
  background-size: contain;
  border: 0;
}
.cart-summary .google-pay {
  margin-bottom: 14px;
}
/**
 * ADOBE CONFIDENTIAL
 *
 * Copyright 2026 Adobe
 * All Rights Reserved.
 *
 * NOTICE: All information contained herein is, and remains
 * the property of Adobe and its suppliers, if any. The intellectual
 * and technical concepts contained herein are proprietary to Adobe
 * and its suppliers and are protected by all applicable intellectual
 * property laws, including trade secret and copyright laws.
 * Dissemination of this information or reproduction of this material
 * is strictly forbidden unless prior written permission is obtained
 * from Adobe.
 */
@keyframes loading {
  0% {
    transform: translate(-50%, -50%) rotate(0);
  }
  100% {
    transform: translate(-50%, -50%) rotate(359.9deg);
  }
}
.ambase-word-break {
  word-wrap: break-word;
  word-break: break-word;
}
.ie11 .ambase-word-break {
  word-break: break-all;
}
.am-visually-hidden {
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  position: absolute;
  width: 0;
}
.am-word-break {
  word-break: break-word;
  word-wrap: break-word;
}
.ie11 .am-word-break {
  word-break: break-all;
}
.ambrands-word-break {
  word-wrap: break-word;
  word-break: break-word;
}
.ie11 .ambrands-word-break {
  word-break: break-all;
}
.gw-euvat-field .message-success {
  margin-top: 0;
}
.gw-euvat-field .vatid-retry {
  cursor: pointer;
}
@media only screen and (min-width: 1025px) {
  .ox-banners-slider__container .ox-banner__banners .ox-banner__slide .ox-banner__link-wrapper:hover {
    background: transparent;
  }
  .ox-banners-slider__container.ox-banner__hover-zoom .ox-banner__banners .ox-banner__slide:hover .ox-banner-slider__image {
    transform: scale(1.1) !important;
  }
  .ox-banners-slider__container.ox-banner-medium.ox-banner__hover-zoom .ox-banner__banners .ox-banner__slide:hover .ox-banner-slider__image {
    transform: scale(1.05) !important;
  }
}
@keyframes arrow-over {
  from {
    transform: scaleY(0);
  }
  to {
    transform: scaleY(1);
  }
}
@keyframes arrow-out {
  from {
    transform: scaleY(1);
  }
  to {
    transform: scaleY(0);
  }
}
/**
 * Olegnax
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Olegnax.com license that is
 * available through the world-wide-web at this URL:
 * https://www.olegnax.com/license
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade this extension to newer
 * version in the future.
 *
 * @category    Olegnax
 * @package     Olegnax_MegaMenu
 * @copyright   Copyright (c) 2010-2021 Olegnax (http://www.olegnax.com/)
 * @license     https://www.olegnax.com/license
 */
/* Toggle Plus Icon */
/**
 * Olegnax
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Olegnax.com license that is
 * available through the world-wide-web at this URL:
 * https://www.olegnax.com/license
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade this extension to newer
 * version in the future.
 *
 * @category    Olegnax
 * @package     Olegnax_MegaMenu
 * @copyright   Copyright (c) 2010-2024 Olegnax (http://www.olegnax.com/)
 * @license     https://www.olegnax.com/license
 */
/**
 * Olegnax
 *
 * NOTICE OF LICENSE
 *
 * This source file is subject to the Olegnax.com license that is
 * available through the world-wide-web at this URL:
 * https://www.olegnax.com/license
 *
 * DISCLAIMER
 *
 * Do not edit or add to this file if you wish to upgrade this extension to newer
 * version in the future.
 *
 * @category    Olegnax
 * @package     Olegnax_MegaMenu
 * @copyright   Copyright (c) 2010-2024 Olegnax (http://www.olegnax.com/)
 * @license     https://www.olegnax.com/license
 */
@media (max-width: 959px) {
  .quickview-mobile--hide .product-item :is(.ox-quickview-button,
            .button.ox-quickview-button,
            .button.quick-view) {
    display: none!important;
  }
}
@media screen and (min-width: 1025px) {
  .ox-megamenu-navigation {
    display: none !important;
  }
  div.slideout-menu-button {
    display: block;
    color: #ffffff;
    font-size: 16px;
    cursor: pointer;
    float: left;
    font-weight: 700;
    padding-right: 30px;
    text-transform: uppercase;
    margin-top: 0;
  }
  div.slideout-menu-button span:before {
    content: '';
    display: inline-block;
    background-image: url(/media/wysiwyg/icon-menubar.png);
    background-repeat: no-repeat;
    width: 23px;
    height: 20px;
    margin-right: 10px;
    vertical-align: middle;
  }
  div.slideout-menu-button span:hover:before {
    background-image: url(/media/wysiwyg/icon-menubar-black.png);
  }
  div.slideout-menu-button:hover {
    color: #000000;
  }
}
.slideout-menu-button {
  display: none;
}
.slideout-menu-wrapper {
  width: 0;
  height: 0;
}
.slideout-menu-wrapper.visible .overlay {
  display: block;
}
.slideout-menu-wrapper.visible .slideout-menu {
  transform: translate(0, 0);
  padding: 25px 10px 25px 15px;
  overflow-y: scroll;
}
.slideout-menu-wrapper.visible .slideout-menu::-webkit-scrollbar {
  width: 10px;
}
.slideout-menu-wrapper.visible .slideout-menu::-webkit-scrollbar-track {
  background: #f1f1f1;
}
.slideout-menu-wrapper.visible .slideout-menu::-webkit-scrollbar-thumb {
  background: #70a604;
}
.slideout-menu-wrapper .overlay {
  display: none;
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  opacity: 0.3;
  background-color: #000;
  z-index: 10000;
}
.slideout-menu-wrapper .slideout-menu {
  position: fixed;
  left: 0;
  top: 0;
  height: 100%;
  min-width: 400px;
  transform: translate(-100%, 0);
  transition: transform 0.2s ease;
  background: #fff;
  z-index: 10001;
  background-color: #fff;
}
.slideout-menu-wrapper .slideout-menu .close {
  position: absolute;
  width: 20px;
  height: 20px;
  z-index: 200000;
  left: auto;
  top: 36px;
  cursor: pointer;
  right: 10px;
}
.nav-slideout-menu ul {
  padding-left: 0;
}
.nav-slideout-menu li {
  position: relative;
}
.nav-slideout-menu li a {
  font-size: 16px;
}
.nav-slideout-menu li a:hover {
  color: #00a500;
}
.nav-slideout-menu li.c {
  /* met submenu items */
  display: block;
  line-height: 3.5rem;
  margin-bottom: 9px;
}
.nav-slideout-menu li.c > .pl:before {
  content: '';
  display: inline-block;
  background-image: url(/media/wysiwyg/plus.png);
  background-repeat: no-repeat;
  width: 10px;
  height: 10px;
  vertical-align: middle;
}
.nav-slideout-menu li.c.expanded > ul {
  display: block;
  padding-left: 15px;
}
.nav-slideout-menu li.c.expanded > ul li a {
  font-size: 14px;
}
.nav-slideout-menu li.c.expanded > .pl {
  /* min hier */
  background-color: transparent;
}
.nav-slideout-menu li.c.expanded > .pl:before {
  content: '';
  display: inline-block;
  background-image: url(/media/wysiwyg/min.png);
  background-repeat: no-repeat;
  width: 10px;
  height: 2px;
  vertical-align: middle;
}
.nav-slideout-menu li.c a {
  display: block;
  font-weight: 600;
  padding-left: 10px;
}
.nav-slideout-menu li.c a:hover {
  background-color: #f0f0f0;
  padding-left: 10px;
  transition: none;
}
.nav-slideout-menu li:not(.c) {
  /* geen submenu items */
  line-height: 3rem;
  margin-bottom: 9px;
  padding-left: 0px;
}
.nav-slideout-menu li:not(.c) a {
  font-size: 16px;
  font-weight: 600;
}
.nav-slideout-menu li .pl {
  cursor: pointer;
  position: absolute;
  top: 0;
  right: 7px;
  display: block;
  width: 22%;
  height: 22px;
  text-align: right;
  padding: 0 20px 20px 20px;
}
.nav-slideout-menu li ul {
  display: none;
}
.nav-slideout-menu li ul.l0 {
  display: block;
}
@media (max-width: 767px) {
  .cart.page-title-wrapper {
    padding-top: 0;
  }
  .cart.page-title-wrapper .page-title {
    float: none;
    text-align: center;
  }
  .cart.page-title-wrapper .action.checkout {
    float: none;
    width: 100%;
  }
}
@media (min-width: 1025px) and (max-width: 1160px) {
  .cart-container .form-cart {
    padding-right: 30px;
    width: 67%;
  }
  .cart-container .checkout-methods-items {
    margin: 10px -25px -25px;
    padding: 25px;
  }
  .multicheckout.address.form .table-wrapper .table .product-item-photo,
  .cart.table-wrapper .product-item-photo {
    padding-right: 20px;
  }
  .multicheckout.address.form .table-wrapper .table .cart.table-wrapper .col,
  .cart.table-wrapper .cart.table-wrapper .col {
    padding: 22px 10px;
  }
  .cart-summary {
    padding: 25px;
    width: 33%;
  }
}
.m-w-reset {
  padding: 0;
  margin: 0;
  top: auto;
  left: auto;
  box-shadow: none;
}
.ox-v-scroll {
  height: 100%;
  overflow: auto;
  overflow-x: hidden;
}
.ox-plus,
.ox-minus {
  width: 10px;
  height: 22px;
  cursor: pointer;
  position: relative;
  display: inline-block;
}
.ox-plus:after,
.ox-minus:after {
  content: '';
  width: 10px;
  height: 2px;
  background: #000;
  position: absolute;
  top: 50%;
}
.ox-plus:before {
  content: '';
  width: 2px;
  height: 10px;
  background: #000;
  position: absolute;
  left: 4;
  top: 7px;
}
/*
@checkout-progress-bar-item-element__height: @checkout-progress-bar-item-element__width;
@checkout-progress-bar-item-element__width: 38px;*/
/*@checkout-progress-bar-item-element-inner__height: @checkout-progress-bar-item-element-inner__width;
@checkout-progress-bar-item-element-inner__width: @checkout-progress-bar-item-element__width - (@checkout-progress-bar-item-element-outer-radius__width * 2);*/
@media only screen and (max-width: 1025px) {
  .field-tooltip .field-tooltip-content {
    left: auto;
    right: -10px;
    top: 40px;
  }
  .field-tooltip .field-tooltip-content::before,
  .field-tooltip .field-tooltip-content::after {
    border: 10px solid transparent;
    height: 0;
    left: auto;
    margin-top: -21px;
    right: 10px;
    top: 0;
    width: 0;
  }
  .field-tooltip .field-tooltip-content::before {
    border-bottom-color: #999;
  }
  .field-tooltip .field-tooltip-content::after {
    border-bottom-color: #202020;
    top: 1px;
  }
}
@media only screen and (min-device-width: 320px) and (max-device-width: 780px) and (orientation: landscape) {
  .product-video {
    height: 100%;
    width: 81%;
  }
}
@keyframes move-action-top {
  0% {
    transform: translateY(10px) perspective(1px);
    opacity: 0;
  }
  100% {
    transform: translateY(0px) perspective(1px);
    opacity: 1;
  }
}
@keyframes move-action-bottom {
  0% {
    transform: translateY(0px) perspective(1px);
    opacity: 1;
  }
  100% {
    transform: translateY(10px) perspective(1px);
    opacity: 0;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1200px) {
  .product-info-main,
  .product-options-bottom,
  .block-bundle-summary {
    --a2-cart-btn-width: 44px;
  }
  .product-info-main .action.towishlist,
  .product-options-bottom .action.towishlist,
  .block-bundle-summary .action.towishlist,
  .product-info-main .action.tocompare,
  .product-options-bottom .action.tocompare,
  .block-bundle-summary .action.tocompare {
    width: var(--a2-cart-btn-width);
  }
  :where(.product-info-main,
    .product-options-bottom) .box-tocart.actions--right-to-cart {
    --a2-qty-width: 110px;
    --a2-ipm-width: 28px;
  }
}
@media only screen and (min-width: 769px) and (max-width: 990px) {
  .product-item .product-list-view__right-wrapper .actions-secondary .action {
    display: inline-flex;
  }
  .product-item .product-list-view__right-wrapper .actions-secondary .action span {
    display: none;
  }
}
@media only screen and (min-width: 1025px) and (max-width: 1160px) {
  .products-list .product-item-info {
    display: block;
  }
  .products-list .product-item-info:after {
    content: '';
    display: table;
    clear: both;
  }
  .products-list .product-grid__image-wrapper {
    display: inline-block;
    max-width: 100%;
    margin-right: 0;
    margin-bottom: 20px;
  }
  .products-list .product-item .product-list-view__right-wrapper {
    width: 100%;
    display: inline-block;
    padding-left: 6px;
    padding-top: 15px;
  }
  .products-list .product-item .product-list-view__right-wrapper .actions-secondary {
    margin-left: -5px;
  }
  .products-list .product-item .product-list-view__right-wrapper .actions-secondary .action {
    display: inline-block;
  }
  .products-list .product-item-details {
    display: inline-block;
    width: 100%;
  }
}
.block-search--type-panel .block-content {
  display: none;
}
/*
@media (min-width:991px) and (max-width:1024px){
    .extended-review-summary-wrapper.columns-4{
        .extended-review-button{
            display: none;
        }
    }
}*/
@media (min-width: 1025px) and (max-width: 1160px) {
  .extended-review-summary-wrapper.columns-3 .extended-review-summary,
  .extended-review-summary-wrapper.columns-4 .extended-review-summary {
    max-width: 260px;
    margin-right: 30px;
    padding: 25px;
  }
  .extended-review-summary-wrapper.columns-3 .number-of-ratings,
  .extended-review-summary-wrapper.columns-4 .number-of-ratings {
    margin-right: 30px;
  }
  .extended-review-summary-wrapper.columns-3 .number-of-ratings .rating-result,
  .extended-review-summary-wrapper.columns-4 .number-of-ratings .rating-result {
    margin-right: 5px;
    width: 110px;
  }
  .extended-review-summary-wrapper.columns-3 > .review-ratings,
  .extended-review-summary-wrapper.columns-4 > .review-ratings {
    margin-right: 30px;
  }
  .extended-review-summary-wrapper.columns-3 .rating-summary .rating-label,
  .extended-review-summary-wrapper.columns-4 .rating-summary .rating-label {
    padding-right: 12px;
  }
  .extended-review-summary-wrapper.columns-3 > div:last-child,
  .extended-review-summary-wrapper.columns-4 > div:last-child {
    margin-right: 0;
  }
  .extended-review-summary-wrapper.columns-3 .extended-review-button .action.primary,
  .extended-review-summary-wrapper.columns-4 .extended-review-button .action.primary {
    padding: 18px 20px;
  }
  .review-content-left {
    max-width: 260px;
    margin-right: 30px;
  }
}
/*
.media-width(@extremum, @break) when (@extremum = 'min') and (@break = @screen__l) { 
    .order-links {
        .item {
            margin: 0 @tab-control__margin-right 0 0;

            a {
                padding: @tab-control__padding-top @tab-control__padding-right;
            }

            strong {
                padding: @tab-control__padding-top @tab-control__padding-right @tab-control__padding-bottom + 1 @tab-control__padding-left;
            }
        }
    }
}
*/
@media all and (min-width: 1025px), print {
  .abs-product-options-list-desktop dt,
  .block-giftregistry-shared .item-options dt {
    clear: left;
    float: left;
    margin: 0 0 5px 0;
  }
  .abs-product-options-list-desktop dt:after,
  .block-giftregistry-shared .item-options dt:after {
    content: ': ';
  }
  .abs-product-options-list-desktop dd,
  .block-giftregistry-shared .item-options dd {
    display: inline-block;
    float: left;
    margin: 0 0 5px;
  }
  .abs-button-desktop {
    width: auto;
  }
  .abs-blocks-2columns,
  .column .block-addbysku .block-content .box,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box,
  .account .column.main .block:not(.widget) .block-content .box {
    width: 48.8%;
  }
  .abs-blocks-2columns:nth-child(odd),
  .column .block-addbysku .block-content .box:nth-child(odd),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(odd),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(odd) {
    clear: left;
    float: left;
  }
  .abs-blocks-2columns:nth-child(even),
  .column .block-addbysku .block-content .box:nth-child(even),
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box:nth-child(even),
  .account .column.main .block:not(.widget) .block-content .box:nth-child(even) {
    float: right;
  }
  .abs-reset-left-margin-desktop,
  .column.main .magento-payments-review .actions-toolbar,
  .column.main .cart-summary .actions-toolbar,
  .gift-summary .actions-toolbar,
  .cart.table-wrapper .gift-summary .actions-toolbar,
  .column.main .block-giftregistry-shared-items .actions-toolbar,
  .form-new-agreement .fieldset .legend,
  .form-new-agreement .actions-toolbar,
  .column.main .paypal-review .actions-toolbar,
  .bundle-options-container .legend.title,
  .wishlist-index-index .main .form-wishlist-items .actions-toolbar {
    margin-left: 0;
  }
  .abs-action-remove-desktop {
    margin-left: 75.8%;
    top: 6px;
  }
  .abs-margin-for-forms-desktop {
    margin-left: 25.8%;
  }
  .abs-visually-hidden-desktop,
  .modes-label,
  .dashboard-welcome-toggler {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .abs-add-clearfix-desktop:before,
  .abs-add-clearfix-desktop:after,
  .magento-payments-review .block-content:before,
  .magento-payments-review .block-content:after,
  .magento-payments-review-discount:before,
  .magento-payments-review-discount:after,
  .order-review-form:before,
  .order-review-form:after,
  .block-cart-failed .block-content:before,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:before,
  .column .block-addbysku .block-content:after,
  .cart-container:before,
  .cart-container:after,
  .block-giftregistry-shared .item-options:before,
  .block-giftregistry-shared .item-options:after,
  .gift-wrapping .nested:before,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:before,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:before,
  .block-wishlist-management:after,
  .paypal-review .block-content:before,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:before,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  .login-container:before,
  .login-container:after,
  .account .column.main .block:not(.widget) .block-content:before,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:before,
  .block-addresses-list .items.addresses:after,
  .order-links:before,
  .order-links:after,
  .account .column.main .block.block-order-details-view:before,
  .account .column.main .block.block-order-details-view:after,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:before,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:after,
  .sales-guest-view .column.main .block.block-order-details-view:before,
  .sales-guest-view .column.main .block.block-order-details-view:after {
    content: '';
    display: table;
  }
  .abs-add-clearfix-desktop:after,
  .magento-payments-review .block-content:after,
  .magento-payments-review-discount:after,
  .order-review-form:after,
  .block-cart-failed .block-content:after,
  .column .block-addbysku .block-content:after,
  .cart-container:after,
  .block-giftregistry-shared .item-options:after,
  .gift-wrapping .nested:after,
  .table .gift-wrapping .content:after,
  .block-wishlist-management:after,
  .paypal-review .block-content:after,
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content:after,
  .login-container:after,
  .account .column.main .block:not(.widget) .block-content:after,
  .block-addresses-list .items.addresses:after,
  .order-links:after,
  .account .column.main .block.block-order-details-view:after,
  [class^='sales-guest-'] .column.main .block.block-order-details-view:after,
  .sales-guest-view .column.main .block.block-order-details-view:after {
    clear: both;
  }
  .abs-add-box-sizing-desktop,
  .account .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  [class^='sales-guest-'] .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .sales-guest-view .column.main .block.block-order-details-view .block-content:not(.widget) .box {
    box-sizing: border-box;
  }
  .abs-add-box-sizing-desktop-m,
  .opc-wrapper {
    box-sizing: border-box;
  }
  .abs-revert-field-type-desktop .fieldset > .field,
  .abs-revert-field-type-desktop .fieldset .fields > .field {
    margin: 0 0 20px;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(.choice) > .control,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .abs-revert-field-type-desktop .fieldset > .field > .label,
  .abs-revert-field-type-desktop .fieldset .fields > .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .abs-revert-field-type-desktop .fieldset > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.choice:before,
  .abs-revert-field-type-desktop .fieldset > .field.no-label:before,
  .abs-revert-field-type-desktop .fieldset .fields > .field.no-label:before {
    display: none;
  }
  .abs-revert-field-type-desktop .fieldset > .field:not(:first-child):last-of-type,
  .abs-revert-field-type-desktop .fieldset .fields > .field:not(:first-child):last-of-type {
    margin-bottom: 0;
  }
  .abs-no-display-desktop,
  .sidebar .block.widget .pager .item:not(.pages-item-next):not(.pages-item-previous) {
    display: none;
  }
  .abs-shopping-cart-items-desktop,
  .block-cart-failed,
  .cart-container .cart-gift-item {
    float: left;
    position: relative;
    width: 73%;
  }
  .abs-shopping-cart-items-desktop .actions,
  .block-cart-failed .actions,
  .cart-container .cart-gift-item .actions {
    text-align: right;
  }
  .abs-shopping-cart-items-desktop .action.clear,
  .abs-shopping-cart-items-desktop .action.update,
  .block-cart-failed .action.clear,
  .block-cart-failed .action.update,
  .cart-container .cart-gift-item .action.clear,
  .cart-container .cart-gift-item .action.update {
    margin-left: 0;
  }
  .abs-shopping-cart-items-desktop .action.continue,
  .block-cart-failed .action.continue,
  .cart-container .cart-gift-item .action.continue {
    float: left;
  }
  a.ox-grey-underline:hover {
    opacity: 1;
  }
  .huge-line {
    height: 6px;
  }
  .centered-iblocks .iblock,
  .centered-iblocks > div {
    padding: 25px 50px;
  }
  .page-bottom-padding {
    margin-bottom: -80px;
  }
  h1 {
    margin-bottom: 40px;
  }
  h1.huge-10,
  .h1.huge-10,
  h2.huge-10,
  .h2.huge-10 {
    font-size: 96px;
  }
  h2.big,
  .h2.big {
    font-size: 72px;
  }
  h2.huge,
  .h2.huge {
    font-size: 90px;
  }
  .pr-lg-0 {
    padding-right: 0;
  }
  .pl-lg-0 {
    padding-left: 0;
  }
  .pr-lg-15 {
    padding-right: 15px;
  }
  .pl-lg-15 {
    padding-left: 15px;
  }
  .pr-lg-30 {
    padding-right: 30px;
  }
  .pl-lg-30 {
    padding-left: 30px;
  }
  .responsive-padding-1 {
    padding: 35px;
  }
  .hide-on-desktop {
    display: none!important;
  }
  .container {
    max-width: 1400px;
  }
  .navigation,
  .ox-megamenu,
  .breadcrumbs,
  .page-header .header.panel,
  .header.content,
  .footer.content,
  .page-wrapper > .page-bottom,
  .block.category.event,
  .top-container,
  .page-main {
    box-sizing: border-box;
    margin-left: auto;
    margin-right: auto;
    max-width: 1400px;
    padding-left: 20px;
    padding-right: 20px;
    width: 100%;
  }
  .header__content .ox-megamenu {
    padding: 0;
  }
  .page-main {
    width: 100%;
    flex-grow: 1;
    flex-shrink: 0;
    flex-basis: auto;
  }
  .ie9 .page-main {
    width: auto;
  }
  .product-page--fullwidth.catalog-product-view .page-main,
  .page-layout-1column-fullwidth.catalog-product-view .page-main {
    padding-left: 60px;
    padding-right: 60px;
  }
  .columns {
    display: block;
  }
  .page-layout-1column .column.main {
    width: 100%;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-3columns .column.main {
    width: 66.66666667%;
    display: inline-block;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .column.main {
    width: 83.33333333%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .column.main {
    width: 83.33333333%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sidebar-main {
    padding-right: 50px;
  }
  .page-layout-3columns .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-left .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .page-layout-2columns-right .sidebar-main {
    width: 16.66666667%;
    float: left;
    -ms-flex-order: 1;
    -webkit-order: 1;
    order: 1;
  }
  .sidebar-additional {
    clear: right;
    padding-left: 50px;
  }
  .page-layout-3columns .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 3;
    -webkit-order: 3;
    order: 3;
  }
  .page-layout-2columns-left .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-right .sidebar-additional {
    width: 16.66666667%;
    float: right;
    -ms-flex-order: 2;
    -webkit-order: 2;
    order: 2;
  }
  .page-layout-2columns-left .sidebar-additional {
    clear: left;
    float: left;
    padding-left: 0;
    padding-right: 50px;
  }
  .page-layout-2columns-left .sidebar-main {
    padding-right: 50px;
  }
  .page-layout-2columns-right .sidebar-additional {
    padding-right: 0;
    padding-left: 50px;
  }
  .page-layout-2columns-right .sidebar-main {
    padding-left: 50px;
    padding-right: 0;
  }
  .page-layout-3columns .column.main {
    width: calc(100% - 540px);
  }
  .page-layout-3columns .sidebar-additional,
  .page-layout-3columns .sidebar-main {
    width: 270px;
  }
  .page-layout-3columns .sidebar-additional {
    padding-left: 25px;
  }
  .page-layout-3columns .sidebar-main {
    padding-right: 25px;
  }
  .page-layout-2columns-right .column.main,
  .page-layout-2columns-left .column.main {
    width: calc(100% - 320px);
  }
  .page-layout-2columns-right .sidebar-additional,
  .page-layout-2columns-left .sidebar-additional,
  .page-layout-2columns-right .sidebar-main,
  .page-layout-2columns-left .sidebar-main {
    width: 320px;
  }
  .panel.header {
    padding: 10px 20px;
  }
  .page-layout-1column-fullwidth .page-main,
  .page-layout-1column-fullwidth.catalog-category-view .page-main {
    padding: 0;
    max-width: 100%;
  }
  .promo-block-categories-grid .promo-block-categories__text {
    display: flex !important;
    align-content: center !important;
    align-items: center !important;
  }
  .promo-block-categories-grid .promo-block-categories__text .title {
    font-size: 36px;
    margin-bottom: 40px;
  }
  .ox-margin-lg {
    margin-bottom: 30px;
  }
  .ox-margin-lg-no {
    margin-bottom: 0;
  }
  .sidebar-nobg.categories--fullwidth.page-layout-2columns-left .sidebar-main,
  .sidebar-nobg.categories--fullwidth.page-layout-2columns-left .sidebar-additional {
    padding-left: 10px;
    padding-right: 60px;
  }
  .sidebar-nobg.categories--fullwidth.page-layout-2columns-right .sidebar-main,
  .sidebar-nobg.categories--fullwidth.page-layout-2columns-right .sidebar-additional {
    padding-right: 10px;
    padding-left: 60px;
  }
  .sidebar-nobg.categories--fullwidth.page-layout-3columns .sidebar-additional {
    padding-left: 30px;
  }
  .sidebar-nobg.categories--fullwidth.page-layout-3columns .sidebar-main {
    padding-right: 30px;
  }
  .cols-vertical-stretch-lg {
    height: 100%;
  }
  .cols-vertical-stretch-lg > div {
    flex: 1;
  }
  .ox-messages-fixed .page.messages {
    position: fixed;
    left: 10px;
    top: 120px;
    z-index: 800;
    max-width: 600px;
    width: 100%;
  }
  .ox-messages-fixed .page.messages .message {
    margin-bottom: 10px;
    padding-right: 40px;
    box-shadow: 10px 24px 33px 0px rgba(0, 0, 0, 0.12);
    background: #ffffff;
    /* animation:messages 10s forwards; */
  }
  .ox-messages-fixed .page.messages .message .ox-overlay-close-btn {
    display: block;
    animation: show 0.15s;
    animation-fill-mode: forwards;
  }
  .ox-messages-fixed .page.messages .ox-overlay-close-btn {
    display: none;
    opacity: 0;
    padding: 5px;
    position: absolute;
    right: 12px;
    top: 12px;
    border: none;
  }
  .ox-messages-fixed .page.messages .ox-overlay-close-btn span {
    width: 15px;
    height: 15px;
  }
  .ox-megamenu,
  .navigation {
    width: 100%;
    display: flex;
  }
  .slide-out-menu--mobile,
  .nav-toggle {
    display: none!important;
  }
  .nav-sections {
    flex-shrink: 0;
    flex-basis: auto;
    margin-bottom: 25px;
  }
  .nav-sections-item-title {
    display: none;
  }
  .nav-sections-item-content {
    display: block !important;
  }
  .nav-sections-item-content > * {
    display: none;
  }
  .nav-sections-item-content > .navigation {
    display: block;
  }
  .navigation {
    background: transparent;
    font-size: 16px;
    font-weight: 700;
    height: inherit;
    left: auto;
    overflow: inherit;
    padding: 0;
    position: relative;
    top: 0;
    width: 100%;
    z-index: 3;
  }
  .navigation:empty {
    display: none;
  }
  .navigation ul {
    margin-top: 0;
    margin-bottom: 0;
    padding: 0;
    position: relative;
  }
  .navigation li.level0 {
    border-top: none;
  }
  .navigation li.level1 {
    position: relative;
  }
  .navigation .level0 {
    margin: 0 5px 0 0;
    display: inline-block;
    position: relative;
  }
  .navigation .level0:last-child {
    margin-right: 0;
    padding-right: 0;
  }
  .navigation .level0:hover:after {
    content: '';
    display: block;
    position: absolute;
    top: 0;
    left: 100%;
    width: 10px;
    height: calc(100% + 3px);
    z-index: 1;
  }
  .navigation .level0 > .level-top {
    color: #ffffff;
    line-height: 27px;
    padding: 0 9px;
    text-decoration: none;
    box-sizing: border-box;
    position: relative;
    display: inline-block;
  }
  .navigation .level0 > .level-top:hover,
  .navigation .level0 > .level-top.ui-state-focus {
    color: #000000;
    text-decoration: none;
  }
  .navigation .level0.active > .level-top,
  .navigation .level0.has-active > .level-top {
    border-width: 0;
    color: #000000;
    text-decoration: none;
    display: inline-block;
  }
  .navigation .level0.parent:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.parent > .level-top {
    padding-right: 20px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon {
    position: absolute;
    right: 0;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e622';
    font-family: "athlete2";
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0 .submenu {
    background: #fff;
    box-shadow: 0px 4px 22px 0px rgba(0, 0, 0, 0.08);
    font-size: 14px;
    font-weight: 700;
    min-width: 230px;
    padding: 15px 0;
    display: none;
    left: 0;
    margin: 0 !important;
    position: absolute;
    z-index: 1;
    margin-top: -10px;
  }
  .navigation .level0 .submenu > ul {
    margin-top: 10px;
  }
  .navigation .level0 .submenu > ul:before {
    border: 10px solid transparent;
    height: 0;
    width: 0;
    border-bottom-color: #fff;
    color: #fff;
    left: 20px;
    top: -20px;
    content: '';
    display: block;
    overflow: hidden;
    position: absolute;
    z-index: 4;
  }
  .navigation .level0 .submenu:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 4px;
    left: 0;
    top: -4px;
    z-index: 1;
  }
  .navigation .level0 .submenu a {
    display: block;
    line-height: inherit;
    background: transparent;
    color: #000000;
    padding: 7px;
  }
  .navigation .level0 .submenu a:hover,
  .navigation .level0 .submenu a.ui-state-focus {
    background: #000000;
    color: #ffffff;
    text-decoration: none;
  }
  .navigation .level0 .submenu .submenu {
    top: -1px !important;
    left: 100% !important;
  }
  .navigation .level0 .submenu .submenu-reverse {
    left: auto !important;
    right: 100%;
  }
  .navigation .level0 .submenu li {
    margin: 0;
    position: relative;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon {
    position: absolute;
    right: 3px;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon > span {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 1px;
    margin: -1px;
    overflow: hidden;
    padding: 0;
    position: absolute;
    width: 1px;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 12px;
    line-height: 20px;
    color: inherit;
    content: '\e608';
    font-family: "athlete2";
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more {
    position: relative;
    display: inline-block;
    text-decoration: none;
  }
  .navigation .level0.more:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 26px;
    line-height: inherit;
    color: inherit;
    content: '\e607';
    font-family: "athlete2";
    vertical-align: middle;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .navigation .level0.more:before {
    display: none;
  }
  .navigation .level0.more:after {
    cursor: pointer;
    padding: 8px 12px;
    position: relative;
    z-index: 1;
  }
  .navigation .level0.more:hover > .submenu {
    overflow: visible !important;
  }
  .navigation .level0.more li {
    display: block;
  }
  .navigation .level0.parent > .level-top {
    padding-right: 9px;
  }
  .navigation .level0.parent > .level-top > .ui-menu-icon {
    display: none!important;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon {
    width: 8px;
    height: 8px;
    top: 50%;
    transform: translateY(-4px);
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:before {
    content: '';
    position: absolute;
    right: 0;
    top: 3px;
    background: #000000;
    width: 8px;
    height: 2px;
    transition: background 0.1s ease 0.4s;
  }
  .navigation .level0 .submenu li.parent > a > .ui-menu-icon:after {
    content: '';
    position: absolute;
    right: 3px;
    top: 0;
    background: #000000;
    width: 2px;
    height: 8px;
    transition: background 0.1s ease 0.4s;
  }
  .panel.header .links,
  .panel.header .switcher {
    display: inline-block;
  }
  .fieldset {
    /*.legend {
            &:extend(.abs-margin-for-forms-desktop all);
        }*/
  }
  .fieldset > .field {
    /*.lib-form-field-type-revert();*/
    margin: 0 0 29px;
  }
  .product.data.items {
    position: relative;
    z-index: 1;
  }
  .product.data.items:before,
  .product.data.items:after {
    content: '';
    display: table;
  }
  .product.data.items:after {
    clear: both;
  }
  .product.data.items > .item.title {
    float: left;
    width: auto;
  }
  .product.data.items > .item.title > .switch {
    height: 20px;
    display: block;
    position: relative;
    z-index: 2;
  }
  .product.data.items > .item.content {
    margin-top: 20px;
    box-sizing: border-box;
    float: right;
    margin-left: -100%;
    width: 100%;
  }
  .product.data.items > .item.content:before,
  .product.data.items > .item.content:after {
    content: '';
    display: table;
  }
  .product.data.items > .item.content:after {
    clear: both;
  }
  .product.data.items > .item.content.active {
    display: block;
  }
  .product.data.items > .item.title {
    margin: 0 0 0 0;
  }
  .product.data.items > .item.title > .switch {
    font-weight: 800;
    line-height: 30px;
    font-size: 1.5rem;
    color: #000;
    text-decoration: none;
    background: transparent;
    border: none;
    border-bottom: none;
    height: 30px;
    padding: 6px 30px 6px 30px;
  }
  .product.data.items > .item.title > .switch:visited {
    color: #000;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:hover {
    color: #fff;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:active {
    color: #000;
    text-decoration: none;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:focus,
  .product.data.items > .item.title:not(.disabled) > .switch:hover {
    background: transparent;
  }
  .product.data.items > .item.title:not(.disabled) > .switch:active,
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    background: transparent;
    color: #000;
    text-decoration: none;
  }
  .product.data.items > .item.title.active > .switch,
  .product.data.items > .item.title.active > .switch:focus,
  .product.data.items > .item.title.active > .switch:hover {
    padding-bottom: 6px;
  }
  .product.data.items > .item.content {
    background: #f8f8f8;
    margin-top: 42px;
    padding: 40px 40px 40px 40px;
    border: none;
  }
  .product.data.items.accordion {
    --a2-tab-t-padding: 12px;
  }
  .tabs-style--minimal .product.data.items.accordion .additional-attributes th {
    padding-left: 0;
  }
  .tabs-style--minimal .product.data.items.accordion > .item.content {
    padding: 6px 2px 30px 2px;
    background: none;
    margin: 0;
  }
  .tabs-style--minimal .product.data.items.accordion > .item.content:before {
    content: none;
  }
  .tabs-style--minimal .product.data.items.accordion > .item.title {
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    margin: 0;
  }
  .tabs-style--minimal .product.data.items.accordion > .item.title > .switch {
    color: #000;
    height: auto;
    background: none!important;
    padding-top: var(--a2-tab-t-padding);
    padding-bottom: var(--a2-tab-t-padding);
    padding-left: 30px;
  }
  .tabs-style--minimal .product.data.items.accordion > .item.title > .switch:focus,
  .tabs-style--minimal .product.data.items.accordion > .item.title > .switch:hover {
    background: none;
  }
  .tabs-style--minimal .product.data.items.accordion > .item.title > .switch:focus:after,
  .tabs-style--minimal .product.data.items.accordion > .item.title > .switch:hover:after,
  .tabs-style--minimal .product.data.items.accordion > .item.title > .switch:focus:before,
  .tabs-style--minimal .product.data.items.accordion > .item.title > .switch:hover:before {
    background: #000;
  }
  .tabs-style--minimal .product.data.items.accordion > .item.title > .switch:after,
  .tabs-style--minimal .product.data.items.accordion > .item.title > .switch:before {
    background: #000;
  }
  .tabs-style--minimal .product.data.items.accordion > .item.title > .switch:before {
    left: 2px;
    top: 50%;
    width: 12px;
    height: 2px;
    margin-top: -1px;
  }
  .tabs-style--minimal .product.data.items.accordion > .item.title > .switch:after {
    left: 7px;
    top: 50%;
    width: 2px;
    height: 12px;
    margin-top: -6px;
  }
  .tabs-style--minimal .product.data.items.accordion > .item.title:not(.disabled) > .switch:active,
  .tabs-style--minimal .product.data.items.accordion > .item.title.active > .switch,
  .tabs-style--minimal .product.data.items.accordion > .item.title.active > .switch:focus,
  .tabs-style--minimal .product.data.items.accordion > .item.title.active > .switch:hover {
    color: #000;
    padding-bottom: var(--a2-tab-t-padding);
  }
  .product.data.items > .item.title {
    box-sizing: initial;
  }
  .product.data.items > .item.title > .switch {
    letter-spacing: -0.03em;
    overflow: hidden;
    text-transform: uppercase;
    box-sizing: content-box;
  }
  .product.data.items > .item.title > .switch:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: translateY(39px);
    transition: all 0.25s ease;
    background: #000000;
    will-change: transform;
  }
  .product.data.items > .item.title > .switch:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: translateY(100%);
    transition: all 0.4s ease;
    background: var(--a2-main-color);
    will-change: transform;
  }
  .product.data.items > .item.title > .switch:visited {
    color: #000;
    text-decoration: none;
  }
  .product.data.items > .item.title > .switch:focus,
  .product.data.items > .item.title > .switch:hover {
    color: #fff;
    text-decoration: none;
    background: none;
  }
  .product.data.items > .item.title.active > .switch {
    transition: all 0.25s ease;
  }
  .product.data.items > .item.title.active > .switch:after {
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  .tabs-style--minimal .product.data.items > .item.title > .switch:visited,
  .tabs-style--minimal .product.data.items > .item.title > .switch:focus,
  .tabs-style--minimal .product.data.items > .item.title > .switch:hover {
    color: #000;
  }
  .tabs-style--minimal .product.data.items > .item.title > .switch:before {
    height: 3px;
    transform: translateY(3px);
    transition: all 0.25s ease;
    background: #000;
    will-change: transform;
  }
  .tabs-style--minimal .product.data.items > .item.title > .switch:after {
    content: none;
  }
  .tabs-style--minimal .product.data.items > .item.title.active > .switch:before {
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  .tabs-style--minimal .product.data.items > .item.title:not(.disabled) > .switch:active,
  .tabs-style--minimal .product.data.items > .item.title.active > .switch,
  .tabs-style--minimal .product.data.items > .item.title.active > .switch:focus,
  .tabs-style--minimal .product.data.items > .item.title.active > .switch:hover {
    color: #000;
  }
  .tabs-style--minimal .product.data.items > .item.content {
    padding: 40px 0;
    background: none;
    position: relative;
  }
  .tabs-style--minimal .product.data.items > .item.content:before {
    height: 1px;
    width: 100%;
    background: rgba(0, 0, 0, 0.08);
    position: absolute;
    top: -1px;
  }
  .tabs-style--minimal.-minimal2 .product.data.items > .item.title > .switch {
    font-size: 16px;
    min-width: 80px;
    text-align: center;
  }
  .tabs-style--minimal.-minimal2 .product.data.items > .item.title > .switch:before {
    transform: translateY(1px);
    will-change: background-color;
    background: var(--a2-tab-bg, #dbdbdb);
  }
  .tabs-style--minimal.-minimal2 .product.data.items > .item.title.active > .switch:before {
    transform: translateY(0);
    background: var(--a2-tab-bg-active, var(--a2-main-color));
  }
  .tabs-style--minimal.-minimal2 .product.data.items > .item.content:before {
    content: none;
  }
  .tab-align-center .product.data.items {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
  }
  .tab-align-center .product.data.items > .item.content {
    order: 2;
    margin: 0;
    flex: 0 0 100%;
  }
  .tab-title-tt-i .product.data.items > .item.title > .switch {
    text-transform: initial;
  }
  .product.data.items.accordion {
    margin: 0;
    padding: 0;
  }
  .product.data.items.accordion > .item.title {
    box-sizing: border-box;
    float: none;
    width: 100%;
  }
  .product.data.items.accordion > .item.title > .switch {
    display: block;
  }
  .product.data.items.accordion > .item.content {
    box-sizing: border-box;
    display: block;
    float: none;
    margin: 0;
  }
  .product.data.items.accordion > .item.content:before,
  .product.data.items.accordion > .item.content:after {
    content: '';
    display: table;
  }
  .product.data.items.accordion > .item.content:after {
    clear: both;
  }
  .product.data.items.accordion > .item.content.active {
    display: block;
  }
  .product.data.items.accordion > .item.title {
    margin: 0 0 15px;
  }
  .product.data.items.accordion > .item.title > .switch {
    background: #000000;
    border-bottom: 0 solid #d1d1d1;
    border-left: 0 solid #d1d1d1;
    border-right: 0 solid #d1d1d1;
    border-top: 0 solid #d1d1d1;
    height: 50px;
    padding: 6px 20px 6px 50px;
    font-weight: 800;
    line-height: 38px;
    font-size: 1.6rem;
    color: #ffffff;
    text-decoration: none;
  }
  .product.data.items.accordion > .item.title > .switch:visited {
    color: #000000;
    text-decoration: none;
  }
  .product.data.items.accordion > .item.title > .switch:hover {
    color: #000000;
    text-decoration: none;
  }
  .product.data.items.accordion > .item.title > .switch:active {
    color: #000000;
    text-decoration: none;
  }
  .product.data.items.accordion > .item.title:not(.disabled) > .switch:focus,
  .product.data.items.accordion > .item.title:not(.disabled) > .switch:hover {
    background: var(--a2-main-color);
  }
  .product.data.items.accordion > .item.title:not(.disabled) > .switch:active,
  .product.data.items.accordion > .item.title.active > .switch,
  .product.data.items.accordion > .item.title.active > .switch:focus,
  .product.data.items.accordion > .item.title.active > .switch:hover {
    background: var(--a2-main-color);
    color: #000000;
    text-decoration: none;
    padding-bottom: 6px;
  }
  .product.data.items.accordion > .item.content {
    background: #f8f8f8;
    border: none;
    margin: 0 0 15px;
    padding: 40px 40px 40px 40px;
  }
  .product.data.items.accordion .data.item {
    display: block;
  }
  .product.data.items.accordion .data.item.content {
    display: none;
  }
  .product.data.items.accordion .item.title.active {
    margin-bottom: 0;
  }
  .product.data.items.accordion .item.title.active > .switch {
    color: #000000;
  }
  .product.data.items.accordion .item.title.active > .switch:visited {
    color: #000000;
  }
  .product.data.items.accordion .item.title.active > .switch:after,
  .product.data.items.accordion .item.title.active > .switch:before {
    background: #000000;
  }
  .product.data.items.accordion .item.title.active > .switch:after {
    content: none;
  }
  .product.data.items.accordion .item.title > .switch {
    position: relative;
    box-sizing: border-box;
  }
  .product.data.items.accordion .item.title > .switch:after,
  .product.data.items.accordion .item.title > .switch:before {
    content: '';
    display: block;
    position: absolute;
    background: #ffffff;
    transition: all 0.6s ease;
    transform: none;
    z-index: unset;
  }
  .product.data.items.accordion .item.title > .switch:before {
    left: 17px;
    top: 23px;
    width: 15px;
    height: 3px;
  }
  .product.data.items.accordion .item.title > .switch:after {
    left: 23px;
    top: 17px;
    width: 3px;
    height: 15px;
  }
  .product.data.items.accordion .item.title > .switch:focus:after,
  .product.data.items.accordion .item.title > .switch:hover:after,
  .product.data.items.accordion .item.title > .switch:focus:before,
  .product.data.items.accordion .item.title > .switch:hover:before {
    transition: all 10ms ease;
    background: #000000;
  }
  .menu-style-5 .page-header .navigation {
    height: 100%;
  }
  .menu-style-5 .page-header .navigation > ul > .level0 {
    height: 100%;
  }
  .menu-style-5 .page-header .navigation > ul > .level0 > .level-top {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .menu-style-2 .page-header .navigation {
    height: 100%;
  }
  .menu-style-2 .page-header .navigation > ul {
    padding: 0;
  }
  .menu-style-2 .page-header .navigation > ul > .level0 > .level-top:before {
    height: calc(100% - 15px);
    top: 0;
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.85, 0, 0.12, 1);
  }
  .menu-style-2 .page-header .navigation > ul > .level0.active > .level-top:before,
  .menu-style-2 .page-header .navigation > ul > .level0:hover > .level-top:before {
    transition: transform 0.2s cubic-bezier(0.85, 0, 0.12, 1);
  }
  .menu-style-3 .page-header .navigation > ul > .level0 > .level-top,
  .menu-style-3 .page-header .navigation > ul > .level0 > a {
    margin: 0 9px;
    padding: 0;
    background: none!important;
  }
  .menu-style-3 .page-header .navigation > ul > .level0 > .level-top:before,
  .menu-style-3 .page-header .navigation > ul > .level0 > a:before {
    transform: scaleY(1);
    opacity: 0;
    transition: opacity 0.2s ease;
    height: 2px;
    top: auto;
    bottom: 0;
  }
  .menu-style-3 .page-header .navigation > ul > .level0.has-active > a:before,
  .menu-style-3 .page-header .navigation > ul > .level0.active > a:before,
  .menu-style-3 .page-header .navigation > ul > .level0:hover > a:before {
    opacity: 1;
  }
  .menu-style-4 .page-header.ox-sticky.sticky.resize .navigation {
    min-height: var(--ox-sticky-height);
  }
  .menu-style-4 .page-header .navigation {
    height: 100%;
  }
  .menu-style-4 .page-header .navigation > ul {
    padding: 0;
  }
  .menu-style-4 .page-header .navigation > ul > .level0 {
    margin: 0;
    height: 100%;
  }
  .menu-style-4 .page-header .navigation > ul > .level0 > .level-top,
  .menu-style-4 .page-header .navigation > ul > .level0 > a {
    background: none!important;
    padding: 6px 20px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .menu-style-4 .page-header .navigation > ul > .level0 > .level-top:before,
  .menu-style-4 .page-header .navigation > ul > .level0 > a:before {
    transform: scaleY(1);
    opacity: 0;
    transition: opacity 0.2s ease;
    height: 2px;
    top: auto;
    bottom: 0;
  }
  .menu-style-4 .page-header .navigation > ul > .level0.has-active > a:before,
  .menu-style-4 .page-header .navigation > ul > .level0.active > a:before,
  .menu-style-4 .page-header .navigation > ul > .level0:hover > a:before {
    opacity: 1;
  }
  .menu-style-5 .page-header .ox-megamenu {
    height: 100%;
  }
  .menu-style-5 .page-header .ox-megamenu > ul > .level0 {
    height: 100%;
  }
  .menu-style-5 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap {
    height: 100%;
  }
  .menu-style-5 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap .level-top {
    height: 100%;
    display: flex;
    align-items: center;
  }
  .menu-style-2 .page-header .ox-megamenu {
    height: 100%;
  }
  .menu-style-2 .page-header .ox-megamenu > ul {
    padding: 0;
  }
  .menu-style-2 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap .level-top:before {
    height: calc(100% - 15px);
    top: 0;
    transform-origin: top;
    transition: transform 0.5s cubic-bezier(0.85, 0, 0.12, 1);
  }
  .menu-style-2 .page-header .ox-megamenu > ul > .level0.active > .ox-mm-a-wrap .level-top:before,
  .menu-style-2 .page-header .ox-megamenu > ul > .level0:hover > .ox-mm-a-wrap .level-top:before {
    transition: transform 0.2s cubic-bezier(0.85, 0, 0.12, 1);
  }
  .menu-style-3 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap .level-top,
  .menu-style-3 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap a {
    margin: 0 9px;
    padding: 0;
    background: none!important;
  }
  .menu-style-3 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap .level-top:before,
  .menu-style-3 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap a:before {
    transform: scaleY(1);
    opacity: 0;
    transition: opacity 0.2s ease;
    height: 2px;
    top: auto;
    bottom: 0;
  }
  .menu-style-3 .page-header .ox-megamenu > ul > .level0.has-active > .ox-mm-a-wrap a:before,
  .menu-style-3 .page-header .ox-megamenu > ul > .level0.active > .ox-mm-a-wrap a:before,
  .menu-style-3 .page-header .ox-megamenu > ul > .level0:hover > .ox-mm-a-wrap a:before {
    opacity: 1;
  }
  .menu-style-4 .page-header.ox-sticky.sticky.resize .ox-megamenu {
    min-height: var(--ox-sticky-height);
  }
  .menu-style-4 .page-header .ox-megamenu {
    height: 100%;
  }
  .menu-style-4 .page-header .ox-megamenu > ul {
    padding: 0;
  }
  .menu-style-4 .page-header .ox-megamenu > ul > .level0 {
    margin: 0;
    height: 100%;
  }
  .menu-style-4 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap {
    height: 100%;
  }
  .menu-style-4 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap .level-top,
  .menu-style-4 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap a {
    background: none!important;
    padding: 6px 20px;
    height: 100%;
    display: flex;
    align-items: center;
  }
  .menu-style-4 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap .level-top:before,
  .menu-style-4 .page-header .ox-megamenu > ul > .level0 > .ox-mm-a-wrap a:before {
    transform: scaleY(1);
    opacity: 0;
    transition: opacity 0.2s ease;
    height: 2px;
    top: auto;
    bottom: 0;
  }
  .menu-style-4 .page-header .ox-megamenu > ul > .level0.has-active > .ox-mm-a-wrap a:before,
  .menu-style-4 .page-header .ox-megamenu > ul > .level0.active > .ox-mm-a-wrap a:before,
  .menu-style-4 .page-header .ox-megamenu > ul > .level0:hover > .ox-mm-a-wrap a:before {
    opacity: 1;
  }
  .header--layout-4 .header__content .flex-right {
    height: var(--a2-header4-items-height, auto);
    min-height: var(--a2-header4-items-minheight, 74px);
  }
  .header--layout-4 .minicart-wrapper .action.showcart {
    position: relative;
  }
  .header--layout-4 .minicart-wrapper .action.showcart:after {
    content: '';
    position: absolute;
    z-index: -1;
    width: 100%;
    transform: scaleX(0);
    transform-origin: left;
    height: 100%;
    top: 0;
    left: 0;
    background-color: var(--a2-main-color);
    animation: scaleout 0.35s forwards cubic-bezier(0.85, 0, 0.12, 1);
  }
  .header--layout-4 .minicart-wrapper .action.showcart:hover:after {
    animation: scalein 0.35s forwards cubic-bezier(0.85, 0, 0.12, 1);
    transform-origin: right;
  }
  .header--layout-5 .page-header.header--full-width .header__left {
    padding-left: 20px;
  }
  .header--layout-5 .page-header.header--full-width .header__left .ox-megamenu .ox-megamenu-navigation {
    margin-left: -8px;
  }
  .header--layout-5 .header__content .header__left,
  .header--layout-5 .header__content .header__right {
    flex-basis: calc(50% - 105px);
    max-width: calc(50% - 105px);
  }
  .header--layout-5 .header__content .header__left .ox-megamenu .ox-megamenu-navigation {
    padding: 0 24px 0 0;
  }
  .header--layout-5 .header__content .header__right {
    justify-content: flex-end;
    padding-right: 0;
  }
  .header--layout-6 .ox-sticky.sticky.resize .header__content .header__item-search {
    display: block;
  }
  .header--layout-6 .ox-sticky.sticky.resize .header__content > .header__center.block-search {
    display: none;
  }
  .header--layout-6 .ox-sticky.sticky.resize .header__left {
    flex: 1 1 auto;
  }
  .header--layout-6 .ox-sticky.sticky.resize .block-search--type-panel .action-search-slideout {
    display: flex !important;
  }
  .header--layout-6 .header__content .header__right .header__item-search {
    display: none;
  }
  .header--layout-6 .header__content .header__center.block-search {
    order: unset;
    z-index: 101;
    align-items: center;
    display: flex;
    float: none;
    width: auto;
    padding-left: 30px;
    padding-right: 30px;
  }
  .header--layout-6 .header__content .header__center.block-search.header__item-search .header__search-wrapper > form {
    float: none;
    width: auto;
  }
  .header--layout-6 .header__content .header__center.block-search.header__item-search .header__search-wrapper > form input {
    width: 100%!important;
  }
  .header--layout-6 .header__content .header__center.block-search .header__search-wrapper {
    flex: 1 1 auto;
  }
  .header--layout-6 .header__content .header__center.block-search .header__search-wrapper .ox-overlay-close-btn,
  .header--layout-6 .header__content .header__center.block-search .header__search-wrapper .logo__container,
  .header--layout-6 .header__content .header__center.block-search .header__search-wrapper .animated-text--masked,
  .header--layout-6 .header__content .header__center.block-search .header__search-wrapper .flashing-cursor {
    display: none;
  }
  .header--layout-6 .header__content .header__center.block-search .header__search-wrapper .minisearch {
    position: relative;
  }
  .header--layout-6 .header__content .header__center.block-search .header__search-wrapper .control {
    padding: 0;
  }
  .page-header.header--full-width .top-bar,
  .page-header.header--full-width .header__right,
  .page-header.header--full-width .header__content > .flex-right {
    padding-right: 20px;
  }
  .page-header.header--full-width.sticky.resize.header--layout-4 .header__content > .flex-right {
    padding-right: 0;
  }
  .page-header.header--full-width.header--layout-4 .header__content > .flex-right {
    padding-right: 0;
  }
  .header--full-width.header--layout-1 .top-bar .minicart-wrapper {
    margin-right: -20px;
  }
  .header__content .flex-left {
    flex: 1 1 auto;
  }
  .menu--align-center .page-header .ox-megamenu > ul,
  .menu--align-center .page-header .navigation > ul {
    justify-content: center;
  }
  .menu--align-right .page-header .ox-megamenu > ul,
  .menu--align-right .page-header .navigation > ul {
    justify-content: flex-end;
  }
  .menu--align-left .page-header .ox-megamenu > ul,
  .menu--align-left .page-header .navigation > ul {
    justify-content: flex-start;
  }
  .page-header .ox-megamenu > ul,
  .page-header .navigation > ul {
    flex: 1 1 auto;
  }
  .menu--align-sticky-center .page-header.ox-sticky.sticky .ox-megamenu > ul,
  .menu--align-sticky-center .page-header.ox-sticky.sticky .navigation > ul {
    justify-content: center;
  }
  .menu--align-sticky-right .page-header.ox-sticky.sticky .ox-megamenu > ul,
  .menu--align-sticky-right .page-header.ox-sticky.sticky .navigation > ul {
    justify-content: flex-end;
  }
  .menu--align-sticky-left .page-header.ox-sticky.sticky .ox-megamenu > ul,
  .menu--align-sticky-left .page-header.ox-sticky.sticky .navigation > ul {
    flex: 1 1 auto;
    justify-content: flex-start;
  }
  .header--layout-1 .authentication-wrapper {
    top: 12px;
    right: 30px;
  }
  .header--layout-2 .header__content {
    height: auto;
    min-height: 60px;
  }
  .logo__container {
    width: 210px;
  }
  .header__item {
    margin: 2px 0 2px 8px;
  }
  /* Minimize sticky header */
  .header__content {
    height: auto;
    min-height: 74px;
    transition: 0.2s ease;
    transition-property: height, min-height, max-height;
  }
  .header__content .minicart-wrapper {
    margin: 2px 0 2px 8px;
  }
  .sticky-minimized .top-bar {
    -webkit-transition: 0.2s ease;
    -moz-transition: 0.2s ease;
    -ms-transition: 0.2s ease;
    transition: 0.2s ease;
    -webkit-transition-property: height, min-height, max-height;
    -moz-transition-property: height, min-height, max-height;
    -ms-transition-property: height, min-height, max-height;
    transition-property: height, min-height, max-height;
  }
  .sticky-minimized .ox-sticky.sticky.resize .header__right {
    flex-wrap: nowrap;
  }
  .sticky-minimized .ox-sticky.sticky.resize .logo__container {
    padding-top: 10px;
    padding-bottom: 10px;
    overflow: hidden;
  }
  .sticky-minimized .ox-sticky.sticky.resize .logo__container,
  .sticky-minimized .ox-sticky.sticky.resize .header__content {
    min-height: var(--ox-sticky-height);
    max-height: var(--ox-sticky-height);
  }
  .sticky-minimized .ox-sticky.sticky.resize .logo__container img.logo,
  .sticky-minimized .ox-sticky.sticky.resize .header__content img.logo {
    max-height: var(--ox-sticky-height);
    width: auto;
  }
  .sticky-minimized .ox-sticky.sticky.resize .logo__container .flex-right,
  .sticky-minimized .ox-sticky.sticky.resize .header__content .flex-right {
    min-height: var(--ox-sticky-height);
    max-height: var(--ox-sticky-height);
  }
  .sticky-minimized .ox-sticky.sticky.resize .top-bar {
    height: 0!important;
    contain: paint;
    min-height: 0;
    border: none;
  }
  .sticky-minimized .ox-sticky.sticky.resize .header__additional-content,
  .sticky-minimized .ox-sticky.sticky.resize .header-nav-wide {
    display: none;
  }
  .sticky-minimized.minicart-btn__icon--hide .ox-sticky.sticky.resize .action.showcart {
    height: 38px;
    line-height: 38px;
    padding: 0;
  }
  .sticky-minimized.minicart-btn__icon--hide .ox-sticky.sticky.resize .action.showcart svg {
    display: block;
    margin-right: 0;
  }
  .sticky-minimized.minicart-btn__icon--hide .ox-sticky.sticky.resize .action.showcart .text {
    display: none;
  }
  .sticky-minimized.minicart-btn__icon--hide .ox-sticky.sticky.resize .action.showcart span {
    min-width: 7px;
    display: inline;
  }
  .sticky-minimized.minicart-btn__icon--hide .ox-sticky.sticky.resize .action.showcart span.qty {
    display: inline-block;
    border: none;
    padding: 2px;
    margin: 0;
    position: absolute;
    top: 0;
    height: 14px;
    min-width: 14px;
    text-align: center;
    vertical-align: middle;
    right: 0;
    background: #202020;
    color: #fff;
    font-size: 10px;
    font-weight: normal;
    font-family: Arial, sans-serif;
    letter-spacing: 0;
    line-height: 1;
  }
  .sticky-minimized.minicart-btn__icon--hide .ox-sticky.sticky.resize .action.showcart span.qty .counter-number {
    color: #eaeaea;
  }
  .ox-dropdown.ox-dropdown-active {
    animation: ox-modal-active-dd 0.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
  }
  .ox-dropdown.ox-dropdown-close {
    animation: ox-modal-close-dd 0.2s;
    animation-fill-mode: forwards;
    animation-timing-function: ease;
  }
  .minicart--style-modern .ox-dropdown {
    width: 570px;
    padding: 0;
    box-shadow: var(--a2-dd-modern-shadow);
  }
  .ox-dropdown.ox-dialog-auto {
    width: auto!important;
  }
  /* My Account */
  .ox-slideout.ox-links-drop .header.links,
  .ox-dropdown.ox-links-drop .header.links {
    width: 100%;
  }
  .ox-slideout.ox-links-drop .header.links li,
  .ox-dropdown.ox-links-drop .header.links li {
    margin: 0 0 2px 0;
  }
  .ox-slideout.ox-links-drop .header.links li .logged-in,
  .ox-dropdown.ox-links-drop .header.links li .logged-in,
  .ox-slideout.ox-links-drop .header.links li a:not(.button),
  .ox-dropdown.ox-links-drop .header.links li a:not(.button) {
    padding: 7px;
    color: #000;
  }
  .ox-slideout.ox-links-drop .header.links a:not(.button):hover,
  .ox-dropdown.ox-links-drop .header.links a:not(.button):hover,
  .ox-slideout.ox-links-drop .header.links a:not(.button):focus,
  .ox-dropdown.ox-links-drop .header.links a:not(.button):focus {
    background: #000;
    color: #fff;
  }
  .ox-slideout .header.links {
    padding: 30px;
  }
  .minicart--style-modern .ox-slideout .header.links {
    padding: 60px 70px;
  }
  .ox-dropdown.ox-links-drop {
    width: 280px;
  }
  .ox-dropdown.ox-login-drop {
    padding: 0;
    width: 750px;
  }
  .ox-dropdown .block-account > .block-content {
    display: flex;
    flex-direction: row;
  }
  .ox-dropdown .block-account .block {
    padding: 30px;
    width: 50%;
    margin: 0;
    display: flex;
    flex-flow: wrap;
    align-self: stretch;
    align-content: center;
  }
  .minicart--style-modern .ox-dropdown.ox-links-drop {
    width: 310px;
  }
  .minicart--style-modern .ox-dropdown.ox-links-drop .block-content {
    padding: 40px;
  }
  .minicart--style-modern .ox-dropdown .block-account .block {
    padding: 50px;
  }
  .ox-prev-next__link {
    display: block;
  }
  .crosssell .owl-carousel:not(.ox-nav__always):hover .owl-nav,
  .related .owl-carousel:not(.ox-nav__always):hover .owl-nav,
  .upsell .owl-carousel:not(.ox-nav__always):hover .owl-nav {
    visibility: visible;
    opacity: 1;
  }
  .crosssell .owl-carousel:not(.ox-nav__always):hover .owl-nav button.owl-prev,
  .related .owl-carousel:not(.ox-nav__always):hover .owl-nav button.owl-prev,
  .upsell .owl-carousel:not(.ox-nav__always):hover .owl-nav button.owl-prev,
  .crosssell .owl-carousel:not(.ox-nav__always):hover .owl-nav button.owl-next,
  .related .owl-carousel:not(.ox-nav__always):hover .owl-nav button.owl-next,
  .upsell .owl-carousel:not(.ox-nav__always):hover .owl-nav button.owl-next {
    transform: translateX(0px) translateY(-50%);
  }
  .crosssell.additional-products,
  .related.additional-products,
  .upsell.additional-products {
    margin-bottom: 80px;
  }
  .owl-carousel.widget-product-grid:not(.ox-nav__always):hover .owl-nav {
    visibility: visible;
    opacity: 1;
  }
  .owl-carousel.widget-product-grid:not(.ox-nav__always):hover .owl-nav button.owl-prev,
  .owl-carousel.widget-product-grid:not(.ox-nav__always):hover .owl-nav button.owl-next {
    transform: translateX(0px) translateY(-50%);
  }
  .ox-banner.ox-banner-content-overlay .ox-banner-container.medium-padding {
    padding: 60px;
  }
  .ox-banner.ox-banner-content-overlay .ox-banner-container.big-padding {
    padding: 80px;
  }
  .header-banner.banner-columns-2 .banner-wrap.first-banner:before,
  .above-footer-banner.banner-columns-2 .banner-wrap.first-banner:before {
    left: -100%;
  }
  .header-banner.banner-columns-2 .banner-wrap.second-banner:before,
  .above-footer-banner.banner-columns-2 .banner-wrap.second-banner:before {
    right: -100%;
  }
  .ox-categories-grid-with-banner .ox-banner.ox-banner-content-overlay .ox-banner-container {
    padding: 60px;
  }
  .ox-categories-grid-with-banner .col.right {
    flex: 0 0 70%;
    max-width: 70%;
    padding: 50px 3%;
  }
  .ox-categories-grid-with-banner .col.left {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .ox-banner.ox-banner-content-overlay .ox-banner-container.medium-padding {
    padding: 60px;
  }
  .ox-banner.ox-banner-content-overlay .ox-banner-container.big-padding {
    padding: 80px;
  }
  .ox-categories-grid-with-banner .ox-banner.ox-banner-content-overlay .ox-banner-container {
    padding: 60px;
  }
  .ox-categories-grid-with-banner .col.right {
    flex: 0 0 70%;
    max-width: 70%;
    padding: 50px 3%;
  }
  .ox-categories-grid-with-banner .col.left {
    flex: 0 0 30%;
    max-width: 30%;
  }
  .ox-banner-animated-text.ox-banner-huge .ox-banner-animated-container {
    padding: 50px;
  }
  .ox-banner-animated-text.ox-banner-huge .text {
    padding: 10px 12px;
  }
  .ox-banner-animated-text.ox-banner-huge span.text {
    font-size: 60px;
    line-height: 56px;
  }
  .ox-banner-animated-text.ox-banner-xxl .ox-banner-animated-container {
    padding: 50px;
  }
  .ox-banner-animated-text.ox-banner-xxl .text {
    padding: 1.4vw;
  }
  .ox-banner-animated-text.ox-banner-xxl span.text {
    font-size: 5vw;
    line-height: 0.8;
  }
  .ox-banner-animated-text.ox-banner-medium .ox-banner-animated-container {
    padding: 50px;
  }
  .ox-banner-animated-text.ox-banner-medium .ox-banner-animated-container .link {
    padding: 8px 10px;
    font-weight: 800;
    font-size: 14px;
  }
  .ox-banner-animated-text.ox-banner-medium .ox-banner-animated-container .text {
    padding: 10px 12px;
  }
  .ox-banner-animated-text.ox-banner-medium .ox-banner-animated-container span.text {
    font-size: 36px;
    line-height: 34px;
  }
  .ox-banner-animated-text .ox-banner-animated-container .link {
    letter-spacing: -0.03em;
  }
  .header-banner.banner-columns-2 .banner-wrap.first-banner:before,
  .above-footer-banner.banner-columns-2 .banner-wrap.first-banner:before {
    left: -100%;
  }
  .header-banner.banner-columns-2 .banner-wrap.second-banner:before,
  .above-footer-banner.banner-columns-2 .banner-wrap.second-banner:before {
    right: -100%;
  }
  .ox-instagram-feed.columns-1 .ox-instagram-item {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ox-instagram-feed.columns-2 .ox-instagram-item {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ox-instagram-feed.columns-3 .ox-instagram-item {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ox-instagram-feed.columns-4 .ox-instagram-item {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ox-instagram-feed.columns-5 .ox-instagram-item {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .ox-instagram-feed.columns-6 .ox-instagram-item {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .ox-instagram-feed.columns-7 .ox-instagram-item {
    flex: 0 0 14.28571429%;
    max-width: 14.28571429%;
  }
  .ox-instagram-feed.columns-8 .ox-instagram-item {
    flex: 0 0 12.5%;
    max-width: 12.5%;
  }
  .ox-instagram-feed.columns-9 .ox-instagram-item {
    flex: 0 0 11.11111111%;
    max-width: 11.11111111%;
  }
  .ox-instagram-feed.columns-10 .ox-instagram-item {
    flex: 0 0 10%;
    max-width: 10%;
  }
  .ox-instagram-feed.columns-11 .ox-instagram-item {
    flex: 0 0 9.09090909%;
    max-width: 9.09090909%;
  }
  .ox-instagram-feed.columns-12 .ox-instagram-item {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .post-list.blog-style-modern.blog-list--overlay.columns-3 article {
    flex: 0 0 calc(33.333333% - 30px);
    max-width: calc(33.333333% - 30px);
  }
  .post-list {
    margin-top: 40px;
  }
  .post-list.columns-3 article.post-style--overlay {
    flex: 0 0 calc(33.333333% - 30px);
    max-width: calc(33.333333% - 30px);
  }
  .post-list.columns-3 article.post-style--image-top {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .post-list.blog-list--overlay.columns-3 article,
  .post-list.blog-list--overlay.columns-3 article.post-style--overlay {
    flex: 0 0 calc(33.333333% - 30px);
    max-width: calc(33.333333% - 30px);
  }
  .post-list.blog-list--image-top.columns-3 article.post-style--image-top,
  .post-list.blog-list--image-top.columns-3 article {
    flex: 0 0 33.333333%;
    max-width: 33.333333%;
  }
  .post-list article {
    margin-bottom: 60px;
  }
  .post-list.blog-style-modern article .post-image-wrapper .post-posed-date {
    opacity: 0;
    transform: translateY(10px);
    transition: all 0.3s ease;
    font-size: 16px;
    height: 52px;
    padding: 0 19px;
    line-height: 52px;
    will-change: transform;
  }
  .post-list.blog-style-modern article:hover .post-image-wrapper .post-posed-date {
    opacity: 1;
    transform: translateY(0);
  }
  .post-list.blog-style-modern article.post-style--above-image .post-content,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image .post-content,
  .post-list.blog-style-modern.blog-list--first-above-image article:first-child .post-content,
  .post-list.blog-style-modern.blog-list--above-image article .post-content {
    padding: 70px;
  }
  .post-list.blog-style-modern article.post-style--above-image .post-title,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image .post-title,
  .post-list.blog-style-modern.blog-list--first-above-image article:first-child .post-title,
  .post-list.blog-style-modern.blog-list--above-image article .post-title {
    font-size: 48px;
  }
  .post-list.blog-style-modern article.post-style--overlay .post-content,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--overlay .post-content,
  .post-list.blog-style-modern.blog-list--overlay article .post-content {
    padding: 60px;
  }
  .post-list.blog-style-modern.columns-3 article.post-style--overlay .post-content,
  .post-list.blog-style-modern.columns-3.blog-list--image-top article.post-style--overlay .post-content,
  .post-list.blog-style-modern.columns-3.blog-list--overlay article .post-content {
    padding: 35px;
  }
  .post-list.columns-4 article.post-style--image-top {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .post-list.blog-list--image-top.columns-4 article {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .post-list article {
    margin-bottom: 80px;
  }
  .post-list.blog-style-modern article.post-style--overlay .post-content,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--overlay .post-content,
  .post-list.blog-style-modern.blog-list--overlay article .post-content,
  .post-list.blog-style-modern article.post-style--above-image .post-content,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image .post-content,
  .post-list.blog-style-modern.blog-list--first-above-image article:first-child .post-content,
  .post-list.blog-style-modern.blog-list--above-image article .post-content {
    transform: translateY(52px);
    transition: transform 0.3s;
    will-change: transform;
  }
  .post-list.blog-style-modern article.post-style--overlay .social-share__content a,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--overlay .social-share__content a,
  .post-list.blog-style-modern.blog-list--overlay article .social-share__content a,
  .post-list.blog-style-modern article.post-style--above-image .social-share__content a,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image .social-share__content a,
  .post-list.blog-style-modern.blog-list--first-above-image article:first-child .social-share__content a,
  .post-list.blog-style-modern.blog-list--above-image article .social-share__content a {
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.3s;
    will-change: transform;
  }
  .post-list.blog-style-modern article.post-style--overlay .post-links,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--overlay .post-links,
  .post-list.blog-style-modern.blog-list--overlay article .post-links,
  .post-list.blog-style-modern article.post-style--above-image .post-links,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image .post-links,
  .post-list.blog-style-modern.blog-list--first-above-image article:first-child .post-links,
  .post-list.blog-style-modern.blog-list--above-image article .post-links {
    height: 30px;
    opacity: 0;
    transition: opacity 0.3s;
  }
  .post-list.blog-style-modern article.post-style--overlay:hover .social-share__content a,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--overlay:hover .social-share__content a,
  .post-list.blog-style-modern.blog-list--overlay article:hover .social-share__content a,
  .post-list.blog-style-modern article.post-style--above-image:hover .social-share__content a,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image:hover .social-share__content a,
  .post-list.blog-style-modern.blog-list--first-above-image article:first-child:hover .social-share__content a,
  .post-list.blog-style-modern.blog-list--above-image article:hover .social-share__content a {
    opacity: 1;
    transform: translateY(0);
  }
  .post-list.blog-style-modern article.post-style--overlay:hover .social-share__content a:nth-child(1),
  .post-list.blog-style-modern.blog-list--image-top article.post-style--overlay:hover .social-share__content a:nth-child(1),
  .post-list.blog-style-modern.blog-list--overlay article:hover .social-share__content a:nth-child(1),
  .post-list.blog-style-modern article.post-style--above-image:hover .social-share__content a:nth-child(1),
  .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image:hover .social-share__content a:nth-child(1),
  .post-list.blog-style-modern.blog-list--first-above-image article:first-child:hover .social-share__content a:nth-child(1),
  .post-list.blog-style-modern.blog-list--above-image article:hover .social-share__content a:nth-child(1) {
    transition-delay: 50ms;
  }
  .post-list.blog-style-modern article.post-style--overlay:hover .social-share__content a:nth-child(2),
  .post-list.blog-style-modern.blog-list--image-top article.post-style--overlay:hover .social-share__content a:nth-child(2),
  .post-list.blog-style-modern.blog-list--overlay article:hover .social-share__content a:nth-child(2),
  .post-list.blog-style-modern article.post-style--above-image:hover .social-share__content a:nth-child(2),
  .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image:hover .social-share__content a:nth-child(2),
  .post-list.blog-style-modern.blog-list--first-above-image article:first-child:hover .social-share__content a:nth-child(2),
  .post-list.blog-style-modern.blog-list--above-image article:hover .social-share__content a:nth-child(2) {
    transition-delay: 100ms;
  }
  .post-list.blog-style-modern article.post-style--overlay:hover .post-content,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--overlay:hover .post-content,
  .post-list.blog-style-modern.blog-list--overlay article:hover .post-content,
  .post-list.blog-style-modern article.post-style--above-image:hover .post-content,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image:hover .post-content,
  .post-list.blog-style-modern.blog-list--first-above-image article:first-child:hover .post-content,
  .post-list.blog-style-modern.blog-list--above-image article:hover .post-content {
    transform: translateY(0);
  }
  .post-list.blog-style-modern article.post-style--overlay:hover .post-links,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--overlay:hover .post-links,
  .post-list.blog-style-modern.blog-list--overlay article:hover .post-links,
  .post-list.blog-style-modern article.post-style--above-image:hover .post-links,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image:hover .post-links,
  .post-list.blog-style-modern.blog-list--first-above-image article:first-child:hover .post-links,
  .post-list.blog-style-modern.blog-list--above-image article:hover .post-links {
    opacity: 1;
  }
  .post-list.blog-style-modern article.post-style--overlay .post-content,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--overlay .post-content,
  .post-list.blog-style-modern.blog-list--overlay article .post-content {
    max-width: 100%;
  }
  .post-list.blog-style-modern article.post-style--above-image .post-content,
  .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image .post-content,
  .post-list.blog-style-modern.blog-list--first-above-image article:first-child .post-content,
  .post-list.blog-style-modern.blog-list--above-image article .post-content {
    max-width: 60%;
  }
  .blog-widget-recent .post-list.blog-style-modern.blog-list--above-image article .post-content {
    max-width: 80%;
  }
  .blog-widget-recent .post-list.blog-style-modern.blog-list--overlay article .post-content {
    max-width: 100%;
  }
  .page-layout-2columns-left .post-list.blog-style-modern article.post-style--above-image .post-content,
  .page-layout-2columns-right .post-list.blog-style-modern article.post-style--above-image .post-content,
  .page-layout-2columns-left .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image .post-content,
  .page-layout-2columns-right .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image .post-content,
  .page-layout-2columns-left .post-list.blog-style-modern.blog-list--first-above-image article:first-child .post-content,
  .page-layout-2columns-right .post-list.blog-style-modern.blog-list--first-above-image article:first-child .post-content,
  .page-layout-2columns-left .post-list.blog-style-modern.blog-list--above-image article .post-content,
  .page-layout-2columns-right .post-list.blog-style-modern.blog-list--above-image article .post-content {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .page-layout-1column-fullwidth.blog-page .page-main {
    padding-bottom: 80px;
    padding-top: 40px;
  }
  .post-view.narrow-post :is(.wide-content,
            .wide) {
    margin-left: -80px;
    margin-right: -80px;
  }
  .ox-sticky-static {
    position: absolute!important;
    bottom: 0px;
    top: auto;
  }
  .ox-sticky-fixed {
    position: fixed!important;
    z-index: 1;
  }
  .ox-sticky-sidebar {
    display: flex;
    flex-direction: column;
  }
  .page-layout-3columns .ox-3col-sticky-wrapper {
    float: left;
    display: block;
    min-height: 1px;
  }
  .page-layout-2columns-right .ox-sticky-sidebar .sidebar {
    margin-left: auto;
  }
  .ox_bnav {
    display: none!important;
    height: 0!important;
    border: 0!important;
  }
  .ox-nav.onhover button.next {
    opacity: 0;
    transform: translateX(-20px) translateY(-50%);
  }
  .ox-nav.onhover button.prev {
    opacity: 0;
    transform: translateX(20px) translateY(-50%);
  }
  :where(.show-nav,.product-item):hover .ox-nav.onhover button:is(.next,.prev) {
    opacity: 1;
    transform: translateX(0px) translateY(-50%);
  }
  .ox-cats {
    --cols-m: calc(100% / 4);
  }
  .ox-cat {
    --cols: var(--cols-m);
  }
  .modal-popup .modal-content,
  .modal-popup .modal-footer {
    padding: 50px;
  }
  .modal-popup .modal-footer {
    padding-top: 0;
  }
  .modal-popup.confirm .modal-content {
    padding-top: 50px;
  }
  .modal-popup.confirm .modal-inner-wrap .modal-content {
    padding-right: 50px;
  }
  .modal-popup.confirm .modal-footer {
    padding-bottom: 50px;
  }
  .modal-popup.modal-slide .modal-footer {
    border-top: none;
    text-align: center;
  }
  .pagebuilder-mobile-only {
    display: none !important;
  }
  .magento-payments-review .magento-payments-review-title {
    border-bottom: 1px solid #d1d1d1;
  }
  .magento-payments-review .block-content .box-order-shipping-address,
  .magento-payments-review .block-content .box-order-shipping-method,
  .magento-payments-review .block-content .box-order-shipping-method + .box-order-billing-address {
    box-sizing: border-box;
    float: left;
    width: 33%;
  }
  .magento-payments-review .block-content .box-order-shipping-address {
    padding: 0 5%;
    width: 34%;
  }
  .magento-payments-review .table-magento-payments-review-items .col.price,
  .magento-payments-review .table-magento-payments-review-items .col.qty {
    text-align: center;
  }
  .magento-payments-review .table-magento-payments-review-items .col.item {
    width: 60%;
  }
  .magento-payments-review .col.subtotal,
  .magento-payments-review .mark,
  .magento-payments-review .amount {
    text-align: right;
  }
  .magento-payments-review-discount {
    border-top: 1px solid #d1d1d1;
  }
  .magento-payments-review-discount .block {
    margin-bottom: 15px;
  }
  .magento-payments-review-discount .block .title:after {
    display: inline;
    margin-left: 0;
    position: static;
  }
  .magento-payments-review-discount .block .content {
    padding-bottom: 0;
  }
  .order-review-form .actions-toolbar > .primary {
    float: right;
  }
  .order-review-form .action.primary {
    margin-right: 0;
  }
  .am-brands-fullwidth {
    width: 100% !important;
  }
  .ui-tooltip.ui-widget {
    max-width: 450px;
  }
  .filter-options-content a:hover {
    text-decoration: none;
  }
  .catalog-topnav {
    display: block;
  }
  .page-layout-1column .toolbar-products {
    position: inherit !important;
  }
  .filter-options-content .am-filter-price {
    width: 40%;
  }
  .sidebar > .block-category-list {
    margin-bottom: 14px;
  }
  .amasty-catalog-topnav {
    margin-top: 3px;
  }
  .amasty-catalog-topnav.catalog-topnav .filter-options .filter-options-content {
    min-width: 200px;
    z-index: 1001;
  }
  .amasty-catalog-topnav .filter-options {
    margin-bottom: 20px;
    padding: 3px 0;
  }
  .amasty-catalog-topnav .filter-subtitle {
    display: none;
  }
  .amasty-catalog-topnav .amshopby-category-dropdown {
    min-width: 200px;
  }
  .amasty-catalog-topnav .filter-options-item {
    margin-bottom: 0;
  }
  .amasty-catalog-topnav .filter-options-item:first-child .filter-options-title {
    padding-left: 0;
  }
  .amasty-catalog-topnav .filter-options-title {
    padding-right: 5px;
  }
  .amasty-catalog-topnav .filter-options-title:after {
    display: inline-block;
    margin: 0 0 0 15px;
    position: static;
    transform: translateY(-2px);
  }
  .sidebar.sidebar-main.-amshopby-sticky {
    background: #fff;
    position: sticky;
    top: 0;
    z-index: 10;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options {
    overflow-y: auto;
    scrollbar-width: thin;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover {
    scrollbar-color: #adadad rgba(173, 173, 173, 0.2);
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar {
    background: #f0f0f0;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar-thumb {
    background: #adadad;
    border-radius: 6px;
    cursor: pointer;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options:hover::-webkit-scrollbar-track {
    box-shadow: inset 0 0 5px #fff;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options::-webkit-scrollbar {
    height: 12px;
    width: 6px;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options::-webkit-scrollbar-thumb {
    height: 6px;
    width: 6px;
  }
  .sidebar.sidebar-main.-amshopby-sticky .filter-options ::-webkit-scrollbar-track {
    height: 6px;
    width: 6px;
  }
  .amasty-catalog-topnav .filter-options-item .filter-options-content .amshopby-flyout-block .items.amshopby-fly-out-view {
    margin: -11px;
    box-shadow: none;
  }
  .filter-options input[type='checkbox'] {
    border: 0;
    clip: rect(0, 0, 0, 0);
    height: 0;
    margin: 0;
    opacity: 0;
    overflow: hidden;
    padding: 0;
    width: 0;
    position: absolute;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice {
    word-break: break-word;
    word-wrap: break-word;
    position: absolute;
    top: 5px;
    left: 0;
    display: block;
    margin: 0;
    padding: 0 0 0 12px;
    min-height: 12px;
    line-height: 1.2;
    cursor: pointer;
  }
  .ie11 .filter-options input[type='checkbox'] + .amshopby-choice {
    word-break: break-all;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:before,
  .filter-options input[type='checkbox'] + .amshopby-choice:after {
    position: absolute;
    top: 0;
    left: 0;
    display: inline-block;
    box-sizing: border-box;
    width: 12px;
    height: 12px;
    border-radius: 2px;
    content: '';
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:before {
    border: 1px solid #e3e3e3;
    background: #fff;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:after {
    background: #1979c3 url(data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIGZpbGw9Im5vbmUiIHZpZXdCb3g9IjAgMCAxNSAxNSI+CiAgPGRlZnMvPgogIDxwYXRoIGZpbGw9IiNmZmYiIGQ9Ik0xMS42NjkzIDMuNTAwNjFjLS4yMDc4LjAwNjk1LS40MDQ4LjA5ODg1LS41NDkzLjI1NjItMS45NTcwMyAyLjA2NDE1LTMuNDM4ODMgMy43NzY1NS01LjI4MDQxIDUuNzQ3ODNMMy44MTczIDcuNzA0NzRjLS4wNzk5Mi0uMDcxNi0uMTcyNDUtLjEyNTk1LS4yNzIzMy0uMTU5OTItLjA5OTg3LS4wMzM5Ny0uMjA1MTItLjA0NjktLjMwOTc0LS4wMzgwNi0uMTA0NjIuMDA4ODUtLjIwNjU2LjAzOTI5LS4zLjA4OTYtLjA5MzQ1LjA1MDMtLjE3NjU2LjExOTQ4LS4yNDQ1OS4yMDM2LS4wNjgwNC4wODQxMS0uMTE5NjYuMTgxNTEtLjE1MTkzLjI4NjYyLS4wMzIyNy4xMDUxMS0uMDQ0NTUuMjE1ODgtLjAzNjE1LjMyNTk4LjAwODQxLjExMDExLjAzNzM0LjIxNzQuMDg1MTUuMzE1NzQuMDQ3ODEuMDk4MzMuMTEzNTUuMTg1NzkuMTkzNDguMjU3MzlMNS4zNzc3MSAxMS4yOThjLjE1MzE1LjEzNzkuMzUwMTkuMjA5OC41NTE2LjIwMTMuMjAxNDEtLjAwODYuMzkyMzEtLjA5NjkuNTM0NDQtLjI0NzNDOC42MTA3NCA4Ljk4NzU3IDEwLjE0MiA3LjE3NTQ0IDEyLjI1NiA0Ljk0NTc4Yy4xMTY1LS4xMTgzNy4xOTYtLjI3MTIuMjI4MS0uNDM4MjMuMDMyMS0uMTY3MDMuMDE1My0uMzQwMzgtLjA0ODQtLjQ5NzA5LS4wNjM2LS4xNTY3MS0uMTcwOS0uMjg5MzctLjMwNzgtLjM4MDQyLS4xMzY5LS4wOTEwNS0uMjk2OC0uMTM2MTktLjQ1ODYtLjEyOTQzeiIvPgo8L3N2Zz4K) center / 12px;
    content: none;
  }
  .filter-options input[type='checkbox'] + .amshopby-choice:hover:before,
  .filter-options input[type='checkbox']:checked + .amshopby-choice:before {
    border-color: #1979c3;
  }
  .filter-options input[type='checkbox']:checked + .amshopby-choice:after {
    content: '';
  }
  ._keyfocus .filter-options input[type='checkbox']:active + .amshopby-choice:before,
  ._keyfocus .filter-options input[type='checkbox']:focus + .amshopby-choice:before,
  .filter-options input[type='checkbox']:active + .amshopby-choice:before,
  .filter-options input[type='checkbox']:focus + .amshopby-choice:before {
    border-color: #1979c3;
  }
  .filter-options input[type='checkbox']:not(:checked).mage-error + .amshopby-choice:before {
    border-color: #f23b3b;
  }
  .am_shopby_apply_filters {
    position: absolute;
    bottom: inherit;
    z-index: 212;
    display: none;
    visibility: hidden;
    padding: 0;
    width: inherit;
  }
  .am_shopby_apply_filters.visible {
    bottom: inherit;
    visibility: visible;
  }
  .am_shopby_apply_filters.-fixed {
    position: fixed;
  }
  .am_shopby_apply_filters.-fixed .am-show-button:before {
    display: none;
  }
  .am-show-button {
    position: relative;
    justify-content: space-between;
    margin: 0 0 10px;
    padding: 12px 10px;
    min-width: 180px;
    width: inherit;
    border: none;
    border-radius: 6px;
    box-shadow: 0 4px 8px rgba(190, 199, 219, 0.21), 0 6px 25px rgba(190, 199, 219, 0.28);
  }
  .am-show-button > .am-items {
    margin: 0 auto;
  }
  .am-show-button:before {
    position: absolute;
    width: 10px;
    height: 10px;
    background: #fff;
    content: '';
    transform: rotate(45deg);
  }
  .am-show-button.-vertical:before {
    top: calc(50% - (10px / 2));
    right: calc(100% - (10px / 2));
  }
  .am-show-button.-horizontal:before {
    top: calc(100% - (10px / 2));
    left: calc(50% - (10px / 2));
  }
  #amasty-shopby-product-list .amshopby-overlay-block > .amshopby-loader {
    top: 30%;
    transform: translate(-50%, -30%);
  }
  .am-categories-slider {
    width: 85%;
  }
  .ambrands-letters-list {
    display: flex;
  }
  .ambrands-letters-list .ambrands-letter .ambrands-content {
    margin: 0 -10px;
  }
  .ambrands-letters-list .ambrands-brand-item {
    margin: 0 10px 20px;
  }
  .ambrands-letters-list .ambrands-brand-item.-no-logo {
    max-width: 156px;
  }
  .ambrands-letters-list .ambrands-letter {
    padding-right: 10px;
    width: inherit;
  }
  .ox-banner__text-container .link {
    letter-spacing: -0.03em;
  }
  .ox-carousel .ox-slide-item .title.big {
    font-size: 72px;
  }
  .ox-carousel .ox-slide-item .title.huge {
    font-size: 90px;
  }
  .ox-carousel .ox-slide-item.margins-big .subtitle {
    margin-bottom: 45px;
  }
  .ox-carousel .ox-slide-item.margins-big .title {
    margin-bottom: 43px;
  }
  .ox-carousel .ox-slide-item.margins-big .subtitle + a.ox-slide__button,
  .ox-carousel .ox-slide-item.margins-big .title + a.ox-slide__button {
    margin-top: 0;
  }
  .ox-carousel .ox-slide-item.margins-big .ox-carousel__col > a.ox-slide__button,
  .ox-carousel .ox-slide-item.margins-big .ox-carousel__inner > a.ox-slide__button {
    margin-top: 47px;
  }
  .ox-carousel .ox-slide-item.margins-big .ox-carousel__col > *:last-child,
  .ox-carousel .ox-slide-item.margins-big .ox-carousel__inner > *:last-child {
    margin-bottom: 0;
  }
  .ox-carousel:hover .owl-nav {
    visibility: visible;
    opacity: 1;
  }
  .ox-carousel.ox-dots__p-right.ox-nav__simple .owl-dots {
    right: 90px;
  }
  .ox-carousel.ox-dots__p-right.nav-big .owl-dots {
    right: 70px;
  }
  .ox-carousel.ox-dots__p-right.ox-dots__s-lines_text_big .owl-dots {
    width: 250px;
    max-width: 250px;
  }
  .ox-carousel.ox-dots__p-right.ox-dots__s-lines_text_big .owl-dots .owl-dot {
    padding: 0;
  }
  .ox-carousel.ox-dots__p-right.ox-dots__s-lines_text_big .owl-dots .owl-dot button.dot {
    margin: 14px 0 0 auto;
  }
  .ox-carousel.ox-dots__p-right.ox-dots__s-lines_text_big .owl-dots .owl-dot button.dot span.title {
    padding: 0;
  }
  .ox-carousel.ox-dots__p-right .owl-dots {
    top: 50%;
    right: 50px;
    left: auto;
    width: 200px;
    max-width: 200px;
    padding: 0;
    transform: translateY(-50%);
    height: auto;
    bottom: auto;
    position: absolute;
    display: block;
  }
  .ox-carousel.ox-dots__p-right .owl-dots .owl-dot {
    width: auto;
    padding: 0;
    margin: 14px 0 0 auto;
    display: block;
  }
  .ox-carousel.ox-dots__p-right .owl-dots .owl-dot button {
    white-space: normal;
  }
  .ox-carousel.ox-dots__p-right .owl-dots .owl-dot button.owl-dot {
    margin: 7px 0 0 auto;
    position: relative;
    display: block;
    width: auto;
  }
  .ox-carousel.ox-dots__p-right .owl-dots .owl-dot button.owl-dot span {
    width: 100%;
  }
  .ox-carousel.ox-dots__p-right .owl-dots .owl-dot button.owl-dot span.title {
    text-align: right;
  }
  :root {
    --oxmm-l0-fs: 16px;
    --oxmm-l0-height: 27px;
    --oxmm-l0-padding: 0 9px;
    --oxmm-l0-ls: -1px;
    --oxmm-l0-color: #ffffff;
    --oxmm-l0-bg-a: var(--a2-main-color);
    --oxmm-l0-color-a: #000000;
    --oxmm-l0-bg-h: var(--a2-main-color);
    --oxmm-l0-color-h: #000000;
    --oxmm-item-padding: 7px;
    --oxmm-item-color: #000;
    --oxmm-item-bg-a: #ffe51e;
    --oxmm-item-color-a: #000;
    --oxmm-item-bg-h: #000;
    --oxmm-item-color-h: #fff;
    --oxmm-item-ls: -1px;
    --oxmm-l1s-tt: none;
    --oxmm-l1s-ls: 0;
    --oxmm-l1s-fw: 600;
    --oxmm-l1-fs: 14px;
    --oxmm-l1-fw: 800;
    --oxmm-l1-padding: 7px;
    --oxmm-l1-color: #000000;
    --oxmm-l1-tt: uppercase;
    --oxmm-l1-ls: 0;
  }
  .ox-mm-overflow {
    overflow-y: auto;
    height: 100%;
    max-height: calc(100vh - var(--a2-header-bottom, 60px));
  }
  .hide-on-desktop {
    display: none !important;
  }
  .ox-megamenu .ox-megamenu-navigation {
    padding: 0 0 0 24px;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown {
    z-index: 6;
  }
  .ox-megamenu-navigation .category-item > .ox-mm-a-wrap a {
    transition: all 600ms ease-in-out;
    background-color: var(--oxmm-item-bg);
    color: var(--oxmm-item-color);
    padding: var(--oxmm-item-padding);
    font-size: var(--oxmm-item-fs);
    font-weight: var(--oxmm-item-fw);
    text-transform: var(--oxmm-item-tt);
    letter-spacing: var(--oxmm-item-ls);
    display: inline-flex;
    width: auto;
  }
  .ox-megamenu-navigation .category-item:hover > .ox-mm-a-wrap a {
    transition: all 10ms ease-in-out;
    background-color: var(--oxmm-item-bg-h);
    color: var(--oxmm-item-color-h);
  }
  .ox-megamenu-navigation .category-item.has-active > .ox-mm-a-wrap .level-top,
  .ox-megamenu-navigation .category-item.active > .ox-mm-a-wrap .level-top,
  .ox-megamenu-navigation .category-item.has-active > .ox-mm-a-wrap a,
  .ox-megamenu-navigation .category-item.active > .ox-mm-a-wrap a {
    background-color: var(--oxmm-item-bg-a);
    color: var(--oxmm-item-color-a);
  }
  .ox-megamenu-navigation .category-item.has-active > .ox-mm-a-wrap .ox-menu-arrow:before,
  .ox-megamenu-navigation .category-item.active > .ox-mm-a-wrap .ox-menu-arrow:before,
  .ox-megamenu-navigation .category-item.has-active > .ox-mm-a-wrap .ox-menu-arrow:after,
  .ox-megamenu-navigation .category-item.active > .ox-mm-a-wrap .ox-menu-arrow:after {
    background-color: var(--oxmm-arrow-color, currentColor);
    transition: all 10ms ease-in-out;
  }
  .ox-megamenu-navigation > .level0 {
    margin: 0 5px 0 0;
  }
  .ox-megamenu-navigation > .level0:not(.active):not(.has-active):hover > .ox-mm-a-wrap .level-top {
    background-color: transparent;
    color: var(--oxmm-l0-color-h);
  }
  .ox-megamenu-navigation > .level0:not(.active):not(.has-active):hover > .ox-mm-a-wrap .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0:not(.active):not(.has-active):hover > .ox-mm-a-wrap .ox-menu-arrow:after {
    background-color: var(--oxmm-arrow-color, currentColor);
    transition: all 10ms ease-in-out;
  }
  .ox-megamenu-navigation > .level0.has-active > .ox-mm-a-wrap .level-top,
  .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap .level-top,
  .ox-megamenu-navigation > .level0.has-active > .ox-mm-a-wrap a,
  .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap a {
    background-color: transparent;
    color: var(--oxmm-l0-color-a);
    font-weight: var(--oxmm-l0-fw-a, var(--oxmm-l0-fw));
  }
  .ox-megamenu-navigation > .level0.has-active > .ox-mm-a-wrap .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap .ox-menu-arrow:before,
  .ox-megamenu-navigation > .level0.has-active > .ox-mm-a-wrap .ox-menu-arrow:after,
  .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap .ox-menu-arrow:after {
    background-color: var(--oxmm-arrow-color, currentColor);
  }
  .ox-megamenu-navigation > .level0 .category-item {
    margin: 0 0 2px 0;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item > .ox-mm-a-wrap a {
    border-top: var(--oxmm-item-border);
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item.active > .ox-mm-a-wrap a {
    border-color: var(--oxmm-item-bg-a);
  }
  .ox-megamenu[data-ox-mm-anim-type="fade"] .ox-megamenu__dropdown {
    opacity: 0;
    transition: opacity 0.05s;
  }
  .ox-megamenu[data-ox-mm-anim-type="fade"] .ox-megamenu__dropdown.animate {
    opacity: 1;
  }
  .ox-megamenu[data-ox-mm-anim-type="fade"] .ox-megamenu__dropdown.opened {
    display: block;
  }
  .ox-megamenu .ox-submenu {
    opacity: 0;
    transition: opacity 0.05s;
    display: none;
  }
  .ox-megamenu .ox-submenu.opened {
    display: block !important;
  }
  .ox-megamenu .ox-submenu.animate {
    opacity: 1;
  }
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-center"] > .ox-megamenu__dropdown,
  .ox-megamenu-navigation li[data-ox-mm-a-h="window-center"] > .ox-megamenu__dropdown,
  .ox-megamenu-navigation li[data-ox-mm-a-h="container-center"] > .ox-megamenu__dropdown {
    left: 50%;
    transform: translateX(-50%);
  }
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-left"] > .ox-megamenu__dropdown {
    left: 0;
  }
  .ox-megamenu-navigation li[data-ox-mm-a-h="menu-right"] > .ox-megamenu__dropdown {
    left: auto;
    right: 0;
  }
  .ox-megamenu-navigation .submenu.ox-megamenu-dd--reverse {
    left: auto !important;
    right: 100% !important;
  }
  .ox-megamenu {
    position: relative;
    z-index: 40;
  }
  .ox-megamenu-navigation {
    margin: 0;
    padding: 0;
    list-style: none none;
    display: flex;
    flex-wrap: wrap;
    flex-direction: row;
    justify-content: flex-start;
    align-content: center;
    align-items: center;
    /* Hover and Dont show top border for category columns */
  }
  .ox-megamenu-navigation .ox-dropdown--simple:hover > .ox-megamenu__dropdown {
    display: block;
    opacity: 1;
    visibility: visible;
  }
  .ox-megamenu-navigation > li {
    display: inline-block;
  }
  .ox-megamenu-navigation > li > .ox-mm-a-wrap a .ox-megamenu-label {
    position: absolute;
    display: block;
    top: -11px;
    right: 0;
    word-break: normal;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item.active + .category-item > .ox-mm-a-wrap a {
    border-color: var(--oxmm-item-bg-a);
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item:hover + .category-item > .ox-mm-a-wrap a,
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item:hover > .ox-mm-a-wrap a {
    border-color: var(--oxmm-item-bg-h);
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .category-item:first-child > .ox-mm-a-wrap a {
    border-top: none;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown .ox-megamenu__categories .level1.category-item > .ox-mm-a-wrap a {
    border-top: none;
  }
  /* set min width for none menu menu items only? */
  .ox-megamenu__dropdown {
    display: none;
    background: #ffffff;
    min-width: var(--oxmm-width);
    position: absolute;
    backface-visibility: hidden;
    box-shadow: var(--oxmm-shadow);
  }
  .ox-megamenu__dropdown .ox-dd-inner {
    padding: var(--oxmm-dd-padding);
  }
  /* Positioning of drop downs */
  .ox-megamenu-navigation .ox-dropdown--megamenu {
    position: static;
  }
  .ox-megamenu-navigation .ox-dropdown--simple .ox-submenu {
    top: -20px;
    left: 80%;
  }
  .ox-dropdown--megamenu {
    /* Hide arrow for megamenu first items */
  }
  .ox-dropdown--megamenu.level1 > .ox-megamenu__dropdown {
    top: -20px;
    left: 80%;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top,
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top-stretch {
    position: static;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top > .ox-megamenu__dropdown,
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top-stretch > .ox-megamenu__dropdown {
    left: calc(100% - 30px);
    top: 0px;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-top-stretch > .ox-megamenu__dropdown {
    min-height: 100%;
    height: 100%;
  }
  .ox-dropdown--megamenu.level1.ox-mm__lvl1-right > .ox-megamenu__dropdown {
    top: -20px;
    left: 100%;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown {
    width: 100%;
    left: 0;
    font-weight: normal;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-mm-inner {
    padding: var(--oxmm-padding);
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .ox-mm-a-wrap a,
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .level1.category-item > .ox-mm-a-wrap a {
    background-color: transparent;
    color: var(--oxmm-l1-color);
    font-size: var(--oxmm-l1-fs);
    font-weight: var(--oxmm-l1-fw);
    margin: 0 0 2px 0;
    padding: var(--oxmm-l1-padding);
    text-decoration: none;
    text-transform: var(--oxmm-l1-tt);
    letter-spacing: var(--oxmm-l1-ls);
    box-sizing: border-box;
    transition: all 600ms ease-in-out;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .ox-mm-a-wrap a:hover,
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .level1.category-item > .ox-mm-a-wrap a:hover {
    background-color: var(--oxmm-l1-bg-h, var(--oxmm-item-bg-h));
    color: var(--oxmm-l1-color-h, var(--oxmm-item-color-h));
    transition: all 10ms ease-in-out;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item.active > .ox-mm-a-wrap a,
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .level1.category-item.active > .ox-mm-a-wrap a {
    background-color: var(--oxmm-l1-bg-a, var(--oxmm-item-bg-a));
    color: var(--oxmm-l1-color-a, var(--oxmm-item-color-a));
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .ox-submenu-inner > .category-item {
    margin: 0 0 2px 0;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .ox-submenu-inner > .category-item > .ox-mm-a-wrap a {
    font-size: var(--oxmm-l1s-fs, var(--oxmm-item-fs));
    font-weight: var(--oxmm-l1s-fw, var(--oxmm-item-fw));
    padding: var(--oxmm-item-padding);
    color: var(--oxmm-l1s-color, var(--oxmm-item-color));
    background-color: var(--oxmm-l1s-bg, var(--oxmm-item-bg));
    text-transform: var(--oxmm-l1s-tt, var(--oxmm-item-tt));
    letter-spacing: var(--oxmm-l1s-ls, var(--oxmm-item-ls));
    border-top: var(--oxmm-l1s-border, var(--oxmm-item-border));
    margin: 0;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .ox-submenu-inner > .category-item > .ox-mm-a-wrap a:hover {
    background-color: var(--oxmm-l1s-bg-h, var(--oxmm-item-bg-h));
    color: var(--oxmm-l1s-color-h, var(--oxmm-item-color-h));
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .ox-submenu-inner > .category-item :first-child > .ox-mm-a-wrap a {
    border-top: none;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list > .category-item > .submenu > .ox-submenu-inner > .category-item.active > .ox-mm-a-wrap a {
    background-color: var(--oxmm-l1s-bg-a, var(--oxmm-item-bg-a));
    color: var(--oxmm-l1s-color-a, var(--oxmm-item-color-a));
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list.row {
    margin-bottom: -20px;
  }
  .ox-dropdown--megamenu > .ox-megamenu__dropdown .ox-megamenu-list.row > li .submenu {
    margin-bottom: 20px;
  }
  .ox-dropdown--megamenu .ox-megamenu-list.ox-megamenu-list--columns-1 {
    display: block;
  }
  .ox-dropdown--megamenu .ox-megamenu-list > .category-item > .ox-mm-a-wrap .ox-menu-arrow {
    display: none;
  }
  /* Custom content margin */
  .ox-megamenu-block-top + .ox-megamenu__categories,
  .ox-megamenu-block-top + .row,
  .ox-megamenu-block-bottom {
    margin-top: 30px;
  }
  .ox-dropdown--simple .ox-submenu {
    display: none;
    background: #ffffff;
    min-width: var(--oxmm-width);
    position: absolute;
    backface-visibility: hidden;
    box-shadow: var(--oxmm-shadow);
    z-index: 10;
  }
  .ox-dropdown--simple .ox-submenu .ox-dd-inner {
    padding: var(--oxmm-dd-padding);
  }
  .ox-dropdown--simple li:hover > .ox-submenu {
    display: block;
  }
  .ox-megamenu .level2 .ox-submenu {
    display: none;
    background: #ffffff;
    min-width: var(--oxmm-width);
    position: absolute;
    backface-visibility: hidden;
    box-shadow: var(--oxmm-shadow);
    z-index: 10;
    left: 80%;
    top: -20px;
  }
  .ox-megamenu .level2 .ox-submenu .ox-dd-inner {
    padding: var(--oxmm-dd-padding);
  }
  .ox-megamenu .level2:hover > .ox-submenu {
    display: block;
  }
  .ox-mm__dd-all {
    height: var(--oxmm-allcats-h, auto);
  }
  .ox-mm__list-all > .category-item.active > .ox-mm-a-wrap .ox-menu-arrow:before,
  .ox-mm__list-all > .category-item.active > .ox-mm-a-wrap .ox-menu-arrow:after {
    background-color: var(--oxmm-arrow-color-a, var(--oxmm-arrow-color));
  }
  .ox-dd--all.ox-dropdown--megamenu .level1 > :is(.ox-megamenu__dropdown,.ox-submenu) {
    position: absolute;
    left: var(--oxmm-allcats-c-w)!important;
    top: 0!important;
    box-shadow: none;
    min-width: var(--oxmm-width);
    height: 100%;
  }
  .ox-dd--all.ox-dropdown--megamenu .ox-mm__list-all {
    width: var(--oxmm-allcats-c-w, 100%);
    height: var(--oxmm-allcats-h, 'auto');
  }
  .ox-dd--all.ox-dropdown--megamenu .ox-mm__list-all > .level1 > .ox-mm-a-wrap .ox-menu-arrow {
    display: block;
  }
  .ox-dropdown--megamenu .ox-mm__list-all > .level1:is(.ox-megamenu--opened,.opened) > .ox-mm-a-wrap a {
    background-color: var(--oxmm-l1-bg-h, var(--oxmm-item-bg-h));
    color: var(--oxmm-l1-color-h, var(--oxmm-item-color-h));
  }
  /* Parent menu arrows */
  /* Arrow position */
  .ox-menu--arrow .level0 > .ox-mm-a-wrap .ox-menu-arrow {
    margin-left: 6px;
    transform: rotate(90deg);
  }
  /* Category columns */
  .ox-megamenu-list--columns-1 > li {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .ox-megamenu-list--columns-2 > li {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ox-megamenu-list--columns-3 > li {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ox-megamenu-list--columns-4 > li {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ox-megamenu-list--columns-5 > li {
    flex: 0 0 20%;
    max-width: 20%;
  }
  .ox-megamenu-list--columns-6 > li {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  /* Basic Grid Columns */
  .ox-menu-col-1 {
    flex: 0 0 8.33333333%;
    max-width: 8.33333333%;
  }
  .ox-menu-col-2 {
    flex: 0 0 16.66666667%;
    max-width: 16.66666667%;
  }
  .ox-menu-col-3 {
    flex: 0 0 25%;
    max-width: 25%;
  }
  .ox-menu-col-4 {
    flex: 0 0 33.33333333%;
    max-width: 33.33333333%;
  }
  .ox-menu-col-5 {
    flex: 0 0 41.66666667%;
    max-width: 41.66666667%;
  }
  .ox-menu-col-6 {
    flex: 0 0 50%;
    max-width: 50%;
  }
  .ox-menu-col-7 {
    flex: 0 0 58.33333333%;
    max-width: 58.33333333%;
  }
  .ox-menu-col-8 {
    flex: 0 0 66.66666667%;
    max-width: 66.66666667%;
  }
  .ox-menu-col-9 {
    flex: 0 0 75%;
    max-width: 75%;
  }
  .ox-menu-col-10 {
    flex: 0 0 83.33333333%;
    max-width: 83.33333333%;
  }
  .ox-menu-col-11 {
    flex: 0 0 91.66666667%;
    max-width: 91.66666667%;
  }
  .ox-menu-col-12 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .nav-sections-item-content > .ox-megamenu {
    display: block;
  }
  .owl-carousel.widget-product-grid:hover .owl-nav {
    visibility: visible;
    opacity: 1;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-l-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-l-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-l-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-l-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-l-8 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-l-8 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-l-8 .products-grid .product-item,
  .block.widget.product-columns-l-8 .products-grid .product-item {
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-l-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-l-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-l-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-l-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-l-7 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-l-7 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-l-7 .products-grid .product-item,
  .block.widget.product-columns-l-7 .products-grid .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-l-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-l-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-l-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-l-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-l-6 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-l-6 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-l-6 .products-grid .product-item,
  .block.widget.product-columns-l-6 .products-grid .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-l-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-l-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-l-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-l-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-l-5 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-l-5 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-l-5 .products-grid .product-item,
  .block.widget.product-columns-l-5 .products-grid .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-l-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-l-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-l-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-l-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-l-4 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-l-4 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-l-4 .products-grid .product-item,
  .block.widget.product-columns-l-4 .products-grid .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-l-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-l-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-l-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-l-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-l-3 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-l-3 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-l-3 .products-grid .product-item,
  .block.widget.product-columns-l-3 .products-grid .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-l-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-l-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-l-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-l-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-l-2 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-l-2 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-l-2 .products-grid .product-item,
  .block.widget.product-columns-l-2 .products-grid .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .widget.block-products-list .block-title h1 {
    font-size: 58px;
  }
  .block-cart-failed .actions {
    text-align: left;
  }
  .block-cart-failed .actions.primary {
    float: right;
  }
  .block-category-event.block:last-child {
    margin-bottom: 30px;
    padding: 0 0 30px;
  }
  .block-category-event .block-title {
    margin: 0;
  }
  .block-category-event .block-title strong {
    font-size: 2.4rem;
  }
  .block-category-event .ticker li {
    display: none;
    margin: 0 50px;
  }
  .block-category-event .ticker .value {
    font-size: 6rem;
  }
  .block-category-event .ticker .label {
    font-size: 1.4rem;
    text-transform: none;
  }
  .block-category-event .dates .date {
    font-size: 5rem;
  }
  .block-category-event .dates .start {
    padding-right: 50px;
  }
  .block-category-event .dates .start:after {
    font-size: 5rem;
    right: 10px;
  }
  .multicheckout.address.form .col.address select {
    max-width: 100%;
  }
  .cart.main.actions {
    text-align: right;
  }
  .cart.main.actions .action.continue {
    float: left;
  }
  .cart-container .form-cart {
    /*&:extend(.abs-shopping-cart-items-desktop all);*/
    width: 70%;
    padding-right: 50px;
    float: left;
    position: relative;
  }
  .cart-container .widget {
    float: left;
  }
  .cart-summary {
    float: right;
    position: relative;
    width: 30%;
  }
  .column.main .cart-summary .actions-toolbar > .secondary {
    float: none;
  }
  .cart-products-toolbar .toolbar-amount {
    line-height: 30px;
    margin: 0;
  }
  .cart-products-toolbar .pages {
    float: right;
    margin: 0 0 1px;
  }
  .cart-products-toolbar .pages .item:last-child {
    margin-right: 0;
  }
  .multicheckout.address.form .table-wrapper .table .cart + .cart-products-toolbar,
  .cart.table-wrapper .cart + .cart-products-toolbar {
    margin-top: 25px;
  }
  .minicart--style-modern .ox-dropdown .block-wishlist .empty-wishlist-wrapper {
    padding: 60px 0 90px;
  }
  .minicart--style-modern .ox-dropdown .block-compare .empty-compare-wrapper {
    padding: 60px 0 90px;
  }
  .minicart--style-modern .ox-dropdown .block-minicart .empty-cart-wrapper {
    padding: 60px 0 90px;
  }
  .ox-dropdown .minicart-items-wrapper {
    min-height: 110px;
  }
  .ox-dropdown .block-minicart .empty-cart-wrapper {
    padding: 60px 0 50px;
  }
  .ox-dropdown .block-minicart .empty-cart-wrapper .button.continue {
    display: none;
  }
  .minicart-wrapper {
    display: inline-block;
    position: relative;
  }
  .minicart-wrapper:before,
  .minicart-wrapper:after {
    content: '';
    display: table;
  }
  .minicart-wrapper:after {
    clear: both;
  }
  .minicart-wrapper .action.showcart {
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
  }
  .minicart-wrapper .action.showcart:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0;
    line-height: 0;
    color: inherit;
    font-family: "athlete2";
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .minicart-wrapper .action.showcart:hover:before {
    color: inherit;
  }
  .minicart-wrapper .action.showcart:active:before {
    color: inherit;
  }
  .minicart-wrapper .action.showcart.active {
    display: inline-block;
    text-decoration: none;
  }
  .minicart-wrapper .action.showcart.active:before {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 0;
    line-height: 0;
    color: inherit;
    font-family: "athlete2";
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .minicart-wrapper .action.showcart.active:hover:before {
    color: inherit;
  }
  .minicart-wrapper .action.showcart.active:active:before {
    color: inherit;
  }
  .minicart-wrapper .block-minicart {
    margin: 0;
    padding: 0;
    list-style: none none;
    background: #fff;
    border: none;
    margin-top: 0;
    min-width: 100%;
    width: 320px;
    z-index: 101;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 100%;
    right: 0px;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  }
  .minicart-wrapper .block-minicart li {
    margin: 0;
  }
  .minicart-wrapper .block-minicart li:hover {
    cursor: pointer;
  }
  .minicart-wrapper .block-minicart:before,
  .minicart-wrapper .block-minicart:after {
    border-bottom-style: solid;
    content: '';
    display: block;
    height: 0;
    position: absolute;
    width: 0;
  }
  .minicart-wrapper .block-minicart:before {
    border: 6px solid;
    border-color: transparent transparent #fff transparent;
    z-index: 99;
  }
  .minicart-wrapper .block-minicart:after {
    border: 7px solid;
    border-color: transparent transparent #bbb transparent;
    z-index: 98;
  }
  .minicart-wrapper .block-minicart:before {
    right: 26px;
    top: -12px;
  }
  .minicart-wrapper .block-minicart:after {
    right: 25px;
    top: -14px;
  }
  .minicart-wrapper.active {
    overflow: visible;
  }
  .minicart-wrapper.active .block-minicart {
    display: block;
  }
  .minicart-wrapper .action.showcart {
    display: flex;
  }
  .minicart-wrapper .action.showcart.active {
    display: flex;
  }
  .minicart-wrapper .action.showcart svg {
    margin-right: 10px;
    flex-shrink: 0;
  }
  .minicart-wrapper .action.showcart .text {
    position: static;
  }
  .minicart-wrapper .action.showcart span {
    display: inline-block;
    line-height: 12px;
    transform: translateZ(0);
  }
  .minicart-wrapper .action.showcart span.qty {
    margin: 0 0 0 11px;
    padding: 0 0 0 11px;
    border-left: 1px solid #000;
    border-left-color: rgba(0, 0, 0, 0.21);
  }
  .ox-slideout .block-minicart {
    padding: 0;
    margin: 0;
    top: auto;
    left: auto;
    box-shadow: none;
    height: 100%;
    overflow: auto;
    overflow-x: hidden;
  }
  .ox-slideout .block-minicart:before,
  .ox-slideout .block-minicart:after {
    content: none;
  }
  .multishipping-checkout-success .column.main,
  .checkout-onepage-success .column.main {
    display: flex;
    align-items: center;
    min-height: 70vh;
  }
  .checkout-index-index .page-main {
    padding: 50px 50px 30px 50px;
  }
  .opc-wrapper {
    width: 60%;
    float: left;
    order: 1;
    padding-right: 50px;
  }
  .opc-wrapper .opc-wrapper-boxed {
    padding: 50px;
    padding-top: 50px;
  }
  .multishipping-checkout-success .print,
  .checkout-onepage-success .print {
    display: none;
    font-weight: 600;
    margin: 22px 0 0;
    border-bottom: 2px solid;
  }
  .opc-estimated-wrapper {
    display: none;
    margin: 50px 0 0 0;
  }
  .checkout-index-index .modal-popup .form-shipping-address {
    max-width: 100%;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address {
    float: right;
    margin: 0;
    width: auto;
  }
  .checkout-index-index .modal-popup .modal-footer .action-save-address + .action-hide-popup {
    float: left;
  }
  .checkout-index-index .modal-popup .modal-footer .action-hide-popup {
    margin: 0;
    width: auto;
  }
  .checkout-shipping-method .actions-toolbar .action.primary {
    margin-top: 50px;
  }
  .opc-wrapper .form-login,
  .opc-wrapper .form-shipping-address {
    max-width: 100%;
  }
  .opc-sidebar {
    width: 40%;
    float: right;
    order: 2;
    margin-top: 60px;
  }
  .opc-summary-wrapper .modal-header .action-close {
    display: none;
  }
  .opc-summary-wrapper .modal-inner-wrap {
    box-shadow: none;
  }
  .opc-block-summary .product-item .subtotal .price-including-tax {
    margin: 0;
  }
  .opc-block-summary .product-item .subtotal .price-including-tax > span {
    justify-content: flex-end;
  }
  .authentication-dropdown {
    background-color: #fff;
    border: none;
    position: absolute;
    text-align: left;
    top: 100%;
    opacity: 0;
    transition: transform linear 0.1s, visibility 0s linear 0.1s;
    visibility: hidden;
    width: 100%;
    min-width: 460px;
    right: 0;
  }
  .authentication-dropdown._show {
    z-index: 100;
    opacity: 1;
    visibility: visible;
  }
  .block-authentication .block-title {
    border-bottom: 0;
    margin-bottom: 25px;
  }
  .block-authentication .block-title strong {
    font-size: 3.6rem;
  }
  .block-authentication .block-new-customer .actions-toolbar > .primary {
    float: none;
  }
  .popup-authentication .modal-inner-wrap {
    min-width: 1025px;
    width: 60%;
  }
  .popup-authentication .block-authentication {
    display: flex;
    flex-direction: row;
  }
  .popup-authentication .block[class],
  .popup-authentication .form-login,
  .popup-authentication .fieldset,
  .popup-authentication .block-content {
    display: flex;
    flex-direction: column;
    flex-grow: 1;
  }
  .popup-authentication .block[class] {
    flex-flow: wrap;
    align-self: stretch;
    align-content: center;
    box-sizing: border-box;
    float: left;
    width: 50%;
  }
  .popup-authentication .block[class].block-new-customer:before {
    left: 0;
    top: 50%;
  }
  .popup-authentication .actions-toolbar {
    margin-bottom: 0;
    margin-top: auto;
  }
  .checkout-payment-method {
    /*.actions-toolbar {
            .primary {
                float: right;
                margin: 0;
            }
        }*/
  }
  .checkout-payment-method .fieldset > .field-select-billing > .control {
    float: none;
    width: 100%;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field {
    margin: 0 0 20px;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type .control {
    margin-left: 25.8%;
  }
  .checkout-payment-method .payment-method-content .fieldset > .field.type.no-detection .control {
    margin-left: 0;
  }
  .checkout-billing-address .action-update {
    float: right;
  }
  .checkout-billing-address .actions-toolbar .action-cancel {
    margin: 6px 20px 0 0;
  }
  .checkout-payment-method .payment-option-content .payment-option-inner + .actions-toolbar {
    margin-left: 0;
  }
  .modal-popup.agreements-modal .modal-content {
    padding: 40px;
  }
  .page-product-downloadable .product-options-wrapper {
    float: left;
    width: 55%;
  }
  .page-product-downloadable .product-options-bottom {
    float: right;
    width: 40%;
  }
  .page-product-downloadable .product-options-bottom .field.qty + .actions {
    padding-top: 0;
  }
  .gift-message .field {
    margin-bottom: 20px;
  }
  .gift-options {
    position: relative;
    z-index: 1;
  }
  .gift-options .actions-toolbar {
    clear: both;
    float: right;
    position: static;
  }
  .gift-options .actions-toolbar .secondary {
    float: right;
  }
  .gift-options .actions-toolbar .secondary .action {
    float: right;
    margin-left: 20px;
  }
  .gift-options .actions-toolbar .secondary .action-cancel {
    display: block;
    float: left;
    margin-top: 6px;
  }
  .gift-options .actions-toolbar:nth-child(3):before {
    border-left: 1px solid #c1c1c1;
    bottom: 5rem;
    content: '';
    display: block;
    left: 50%;
    overflow: hidden;
    position: absolute;
    top: 0;
    width: 0;
  }
  .gift-options-title {
    font-weight: 300;
    font-size: 1.8rem;
  }
  .cart.table-wrapper .action-gift {
    float: left;
  }
  .order-options .gift-wrapping,
  .table-order-review .gift-wrapping {
    max-width: 50%;
  }
  .form-giftregistry-search .fieldset {
    margin-bottom: 29px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field {
    margin: 0 0 20px;
    box-sizing: border-box;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field > .label {
    margin: 0;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    content: '';
    display: table;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:after {
    clear: both;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.choice:before,
  .form-giftregistry-search .fieldset > .fields-specific-options > .field.no-label:before {
    padding: 6px 15px 0 0;
    width: 25.8%;
    box-sizing: border-box;
    content: ' ';
    float: left;
    height: 1px;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field .description {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .label {
    padding: 6px 15px 0 0;
    text-align: right;
    width: 25.8%;
    box-sizing: border-box;
    float: left;
  }
  .form-giftregistry-search .fieldset > .fields-specific-options > .field:not(.choice) > .control {
    width: 74.2%;
    float: left;
  }
  .block-giftregistry-shared-items .product-item-photo {
    display: table-cell;
    max-width: 100%;
    padding: 0 20px 0 0;
    vertical-align: top;
    width: 1%;
  }
  .block-giftregistry-shared-items .product-item-details {
    display: table-cell;
    vertical-align: top;
    width: 99%;
    word-break: normal;
  }
  .block-giftregistry-shared-items .col.product {
    width: 48%;
  }
  .block-giftregistry-shared-items .col:not(.product) {
    text-align: center;
  }
  .block-giftregistry-shared-items .col.price {
    padding-top: 17px;
  }
  .block-giftregistry-shared-items .input-text.qty {
    margin-top: -4px;
  }
  .gift-options-cart-item .gift-wrapping,
  .cart-gift-item .gift-wrapping {
    box-sizing: border-box;
    float: left;
    padding-right: 20px;
    width: 50%;
  }
  .gift-options-cart-item .gift-wrapping + .gift-message,
  .cart-gift-item .gift-wrapping + .gift-message {
    border-left: 1px solid #c1c1c1;
    box-sizing: border-box;
    float: left;
    padding-left: 4.5rem;
    width: 50%;
  }
  .form-add-invitations .additional,
  .form-add-invitations .field.text {
    margin-top: 29px;
  }
  .table-invitations .col {
    width: 50%;
  }
  .wishlist.window.popup {
    bottom: auto;
    top: 20%;
    left: 50%;
    margin-left: -220px;
    width: 380px;
    right: auto;
  }
  .wishlist.window.popup .field {
    margin: 0 0 20px;
  }
  .wishlist.window.popup .field:not(.choice) > .label {
    box-sizing: content-box;
    float: none;
    width: auto;
    text-align: left;
    padding: 0;
  }
  .wishlist.window.popup .field:not(.choice) > .control {
    float: none;
    width: auto;
  }
  .wishlist.window.popup .field > .label {
    margin: 0 0 5px;
    display: inline-block;
  }
  .wishlist.window.popup .field.choice:before,
  .wishlist.window.popup .field.no-label:before {
    display: none;
  }
  .block-wishlist-management {
    margin-bottom: 20px;
  }
  .block-wishlist-management .wishlist-select {
    border-bottom: 1px solid #e8e8e8;
    display: table;
    margin-bottom: 15px;
    width: 100%;
  }
  .block-wishlist-management .wishlist-select .wishlist-name {
    display: table-cell;
    margin-right: 0;
    padding: 5px 0 0;
    vertical-align: top;
    white-space: nowrap;
    width: 5%;
  }
  .block-wishlist-management .wishlist-select-items {
    display: table-cell;
    padding-right: 160px;
    vertical-align: top;
  }
  .block-wishlist-management .wishlist-select-items .item {
    display: inline-block;
    margin-right: 0;
    padding: 5px 0 0;
  }
  .block-wishlist-management .wishlist-select-items .item:last-child {
    margin-right: 0;
  }
  .block-wishlist-management .wishlist-select-items .current {
    border-bottom: 3px solid #ff5501;
    font-weight: 600;
  }
  .block-wishlist-management .wishlist-select .wishlist-name-current {
    display: none;
  }
  .block-wishlist-management .wishlist-add.item {
    position: absolute;
    right: 0;
    top: 0;
  }
  .block-wishlist-management .wishlist-title strong {
    font-size: 4rem;
  }
  .block-wishlist-management .wishlist-info {
    float: left;
  }
  .block-wishlist-management .wishlist-toolbar {
    float: right;
  }
  .block-wishlist-info-items .product-item-photo {
    margin-left: 0;
  }
  .products-grid.wishlist .product-item-checkbox {
    float: left;
  }
  .products-grid.wishlist .product-item-checkbox + .product-item-name {
    margin-left: 25px;
  }
  .paypal-review .paypal-review-title {
    border-bottom: 1px solid #d1d1d1;
  }
  .paypal-review .block-content .box-order-shipping-address,
  .paypal-review .block-content .box-order-shipping-method,
  .paypal-review .block-content .box-order-shipping-method + .box-order-billing-address {
    box-sizing: border-box;
    float: left;
    width: 33%;
  }
  .paypal-review .block-content .box-order-shipping-address {
    padding: 0 5%;
    width: 34%;
  }
  .paypal-review .col.subtotal,
  .paypal-review .mark,
  .paypal-review .amount {
    text-align: right;
  }
  .reward-settings + .actions-toolbar {
    margin-top: -32px;
  }
  .form-create-return .additional .field:last-child {
    margin-top: 29px;
  }
  .magento-rma-guest-returns .column.main .block:not(.widget) .block-content .box {
    margin-bottom: 20px;
  }
  .block-returns-tracking .block-title .action {
    margin: 0 0 0 30px;
  }
  .block-returns-tracking .block-title .actions-track {
    float: right;
    margin-top: 12px;
  }
  .my-credit-cards .card-type img {
    display: block;
  }
  .bundle-options-container .bundle-options-wrapper {
    float: left;
    width: 57%;
  }
  .bundle-options-container .block-bundle-summary {
    float: right;
    position: relative;
    width: 40%;
  }
  .page-layout-2columns-left .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-left .bundle-options-container .block-bundle-summary,
  .page-layout-2columns-right .bundle-options-container .bundle-options-wrapper,
  .page-layout-2columns-right .bundle-options-container .block-bundle-summary,
  .page-layout-3columns .bundle-options-container .bundle-options-wrapper,
  .page-layout-3columns .bundle-options-container .block-bundle-summary {
    width: 48%;
  }
  .page-products .products-grid .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products .products-grid.product-columns-l-8 .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .page-products .products-grid.product-columns-l-7 .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-products .products-grid.product-columns-l-6 .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-products .products-grid.product-columns-l-5 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products .products-grid.product-columns-l-4 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products .products-grid.product-columns-l-3 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products .products-grid.product-columns-l-2 .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-products .products-grid.product-columns-l-1 .product-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid .product-item,
  .page-products.page-layout-1column .products-grid .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-l-8 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-l-8 .product-item {
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-l-7 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-l-7 .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-l-6 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-l-6 .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-l-5 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-l-5 .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-l-4 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-l-4 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-l-3 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-l-3 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-l-2 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-l-2 .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-l-1 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-l-1 .product-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .page-products.page-layout-3columns .products-grid .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-l-8 .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-l-7 .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-l-6 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-l-5 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-l-4 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-l-3 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-l-2 .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-l-1 .product-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .page-layout-3columns .products-grid .owl-carousel .product-item,
  .page-layout-1column-fullwidth .products-grid .owl-carousel .product-item,
  .page-layout-1column .products-grid .owl-carousel .product-item {
    flex-basis: auto;
    max-width: 100%;
  }
  .products-grid .owl-carousel .product-item {
    flex-basis: auto;
    max-width: 100%;
  }
  /*.page-products {
        .columns {            
            position: relative;
            z-index: 1;
        }
    }*/
  .products.wrapper ~ .toolbar .pages {
    float: none;
  }
  .filters-action {
    display: none;
  }
  .ox-show-filter .filters-action {
    display: flex;
    margin-right: var(--a2-toolbar-items-margin);
  }
  .toolbar-amount {
    display: none;
    margin-right: var(--a2-toolbar-items-margin);
  }
  .modes {
    display: inline-block;
    margin-right: var(--a2-toolbar-items-margin);
    float: left;
  }
  .products.wrapper ~ .toolbar .modes {
    display: none;
  }
  .modes-mode {
    width: var(--a2-toolbar-height);
    height: var(--a2-toolbar-height);
    float: left;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--a2-toolbar-i-bg);
    color: var(--a2-toolbar-i-color);
    transition: 600ms ease-in-out;
    transition-property: all;
  }
  .modes-mode svg {
    fill: var(--a2-toolbar-i-color);
    transition: 600ms ease-in-out;
    transition-property: all;
  }
  .modes-mode.active,
  .modes-mode:hover {
    background: var(--a2-toolbar-i-bg-hover);
    color: var(--a2-toolbar-i-color-hover);
  }
  .modes-mode.active svg,
  .modes-mode:hover svg {
    fill: var(--a2-toolbar-i-color-hover);
    transition: 10ms ease-in-out;
    transition-property: all;
  }
  .mode-grid svg {
    width: 12px;
  }
  .mode-list svg {
    width: 16px;
  }
  .ox-dropdown .block-compare .empty-compare-wrapper {
    padding: 60px 0 50px;
  }
  .ox-dropdown .block-compare .empty-compare-wrapper .button.continue {
    display: none;
  }
  #ox-zoom-cursor {
    display: block;
  }
  .product-add-form .fieldset:last-child {
    margin-bottom: 0;
  }
  .product.info.detailed {
    margin-bottom: 65px;
  }
  .product-info-main {
    margin-bottom: 50px;
    margin-top: 40px;
  }
  .product.media {
    margin-bottom: 80px;
  }
  .product-info-main .box-tocart .field.qty,
  .product-options-bottom .box-tocart .field.qty {
    display: inline-block;
  }
  .product-info-main .box-tocart .field.qty .control,
  .product-options-bottom .box-tocart .field.qty .control {
    position: relative;
  }
  .catalog-product-view .columns {
    position: relative;
  }
  .catalog-product-view .column.main > div:last-child {
    margin-bottom: 0;
  }
  .athlete2_product_info__wrapper {
    position: relative;
    margin-bottom: 80px;
  }
  .athlete2_product_info__wrapper:after {
    content: '';
    display: table;
    clear: both;
  }
  .athlete2_product_info__wrapper .product-info-main {
    margin-top: 0;
    margin-bottom: 0;
  }
  .athlete2_product_info__wrapper .product-info-main > *:last-child {
    margin-bottom: 0;
  }
  .athlete2_product_info__wrapper .product.media {
    margin-bottom: 0;
  }
  .athlete2_product__bottom > div:last-child {
    margin-bottom: 0;
  }
  .product-info-main {
    float: right;
    margin-bottom: 80px;
  }
  .product-info-main.ox-sticky-fixed {
    z-index: 5;
  }
  .product.media {
    float: left;
  }
  .page-layout-1column-fullwidth .product-info-main,
  .page-layout-1column .product-info-main {
    width: 40%;
  }
  .page-layout-1column-fullwidth .product.media,
  .page-layout-1column .product.media {
    width: 55%;
  }
  .page-layout-2columns-left .product-info-main,
  .page-layout-2columns-right .product-info-main,
  .page-layout-3columns .product-info-main {
    width: 46%;
  }
  .page-layout-2columns-left .product.media,
  .page-layout-2columns-right .product.media,
  .page-layout-3columns .product.media {
    width: 50%;
  }
  .product-info-main .product.data.items > .item.title > .switch {
    padding-left: 20px;
    padding-right: 20px;
  }
  .product-info-main .product.data.items.accordion > .item.title > .switch {
    padding-left: 50px;
  }
  .tabs-style--minimal .product-info-main .product.data.items.accordion > .item.title > .switch {
    padding-left: 30px;
  }
  .tabs-style--minimal .product-info-main .product.data.items.tabs > .item.content {
    padding: 40px 0 0 0;
  }
  .page-layout-1column-fullwidth .filters-toggle-show,
  .page-layout-1column .filters-toggle-show,
  body:not(.page-with-filter) .filters-toggle-show,
  body:not(.hide-sidebar) .filters-toggle-show,
  .page-with-filter.hide-sidebar .sidebar {
    display: none!important;
  }
  .page-with-filter.hide-sidebar .column.main {
    max-width: 100%;
    width: 100%;
  }
  .filters-toggle {
    cursor: pointer;
    padding-left: 20px;
    padding-right: 20px;
  }
  .filters-toggle .action {
    display: flex;
    align-items: center;
    height: var(--a2-toolbar-height);
    gap: 10px;
  }
  .sidebar .filters-toggle {
    border-bottom: 1px solid;
    border-top: 1px solid;
    border-color: var(--a2-toolbar-border-color);
    margin-bottom: 20px;
  }
  .filters-toggle:hover .ox-close-icon:before,
  .filters-toggle:hover .ox-close-icon:after {
    transform: rotate(0);
  }
  /* hide in filters slideout */
  .ox-dialog .filters-toggle {
    display: none;
  }
  .block-search--type-panel .ox-overlay-close-btn,
  .block-search--type-panel .flashing-cursor,
  .block-search--type-panel .action-search-slideout {
    display: none!important;
  }
  .block-search--type-panel .block-content {
    display: block;
  }
  .block-search {
    position: relative;
    z-index: 4;
  }
  .block-search .control {
    border-top: 0;
    margin: 0;
    padding: 0 0 25px;
  }
  .block-search .nested {
    display: block;
    padding-top: 5px;
    position: absolute;
  }
  .search-autocomplete {
    margin-top: 0;
  }
  .multishipping-checkout-register .form.create.account {
    display: flex;
    flex-wrap: wrap;
  }
  .multishipping-checkout-register .form.create.account .fieldset.address {
    order: 1;
    width: 100%;
  }
  .multishipping-checkout-register .form.create.account .actions-toolbar {
    order: 2;
    width: 100%;
  }
  .login-container {
    max-width: 920px;
    flex-flow: row;
  }
  .login-container .block {
    width: 50%;
  }
  .login-container .block.login .actions-toolbar > .primary {
    margin-bottom: 0;
    margin-right: 30px;
  }
  .login-container .block.login .actions-toolbar > .secondary {
    float: left;
  }
  .login-container .fieldset > .field > .control {
    width: 100%;
  }
  .form.create.account {
    max-width: 920px;
    margin: 0 auto;
  }
  .form.create.account > .fieldset {
    width: 50%;
    display: inline-block;
    float: left;
  }
  .form.create.account > .fieldset > .legend {
    margin-bottom: 40px;
  }
  .form.create.account > .fieldset.info {
    padding-right: 25px;
  }
  .form.create.account > .fieldset.account {
    padding-left: 25px;
  }
  .form.create.account .actions-toolbar {
    width: 100%;
    display: flex;
    flex-wrap: wrap;
  }
  .form.create.account .actions-toolbar:before,
  .form.create.account .actions-toolbar:after {
    content: '';
    display: table;
  }
  .form.create.account .actions-toolbar:after {
    clear: both;
  }
  .form.create.account .actions-toolbar .action.primary {
    padding: 18px 27px;
    width: 100%;
  }
  .form.create.account .actions-toolbar > .secondary {
    width: 50%;
    padding-right: 25px;
  }
  .form.create.account .actions-toolbar > .secondary .action {
    padding: 18px 27px;
    width: 100%;
  }
  .form.create.account .actions-toolbar > .primary {
    order: 1;
    width: 50%;
    padding-left: 25px;
  }
  .account .data.table tr:first-child .col {
    border-top: none;
  }
  .account .data.table .col {
    border-top: 1px solid rgba(107, 107, 107, 0.18);
  }
  .block-addresses-list .items.addresses {
    font-size: 0;
  }
  .block-addresses-list .items.addresses > .item {
    display: inline-block;
    font-size: 14px;
    margin-bottom: 20px;
    vertical-align: top;
    width: 48.8%;
  }
  .block-addresses-list .items.addresses > .item:nth-last-child(1),
  .block-addresses-list .items.addresses > .item:nth-last-child(2) {
    margin-bottom: 0;
  }
  .block-addresses-list .items.addresses > .item:nth-child(even) {
    margin-left: 2.4%;
  }
  .control.captcha-image .captcha-img {
    margin: 0 10px 10px 0;
  }
  .filter.block {
    display: block;
  }
  .filter-title {
    display: none;
  }
  .filter-actions {
    margin-bottom: 30px;
  }
  .filter-subtitle {
    display: block;
    position: static;
  }
  .multicheckout .block-shipping .box {
    float: left;
    width: 25%;
  }
  .multicheckout .block-shipping .box-items {
    width: 100%;
  }
  .multicheckout .block-billing .box-billing-address {
    width: 25%;
  }
  .footer--layout-1 .footer.content .block_newsletter_wrapper {
    width: 36%;
    float: right;
  }
  .footer--layout-1 .footer.content .block_newsletter_wrapper .block_newsletter_below {
    padding: 15px 30px;
  }
  .footer.content .block_newsletter_wrapper .block.newsletter {
    float: none;
  }
  .footer.content .block_newsletter_wrapper .block.newsletter .field .control {
    width: 100%;
  }
  .footer-newsletter-2col .footer.content .block.newsletter.newsletter-style--big {
    min-height: 300px;
  }
  /*.product-reviews-summary {
        .products.wrapper.list & {
            margin: 0;
        }
    }*/
  .review-content-left {
    margin-right: 50px;
  }
  /* 2 columns review block on product page */
  .product-review--layout-2columns.catalog-product-view.page-layout-1column .review-add {
    display: inline-block;
    width: 40%;
    width: calc(40% - 40px);
    margin-left: 40px;
  }
  .product-review--layout-2columns.catalog-product-view.page-layout-1column .review-list {
    display: inline-block;
    width: 60%;
    float: left;
  }
  .product-info-main .review-form {
    max-width: 100%;
  }
  .product-info-main .review-item {
    flex-flow: column;
    padding: 35px 0;
  }
  .product-info-main .extended-review-summary-wrapper {
    flex-wrap: wrap;
    margin: 0;
    margin-bottom: 20px;
  }
  .product-info-main .extended-review-summary-wrapper .extended-review-summary {
    max-width: 100%;
    margin-right: 0;
  }
  .product-info-main .extended-review-summary-wrapper .extended-review-button {
    order: 2;
    margin: 0;
    width: 100%;
  }
  .product-info-main .extended-review-summary-wrapper .extended-review-button .action.primary {
    width: 100%;
  }
  .product-info-main .extended-review-summary-wrapper .number-of-ratings {
    order: 3;
  }
  .product-info-main .extended-review-summary-wrapper .number-of-ratings .rating-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  .product-info-main .extended-review-summary-wrapper .number-of-ratings .rating-number {
    margin-right: 20px;
  }
  .product-info-main .extended-review-summary-wrapper .number-of-ratings .rating-percent {
    min-width: 60px;
    text-align: right;
  }
  .product-info-main .extended-review-summary-wrapper .number-of-ratings .rating-result {
    flex-grow: 1;
  }
  .product-info-main .extended-review-summary-wrapper .review-ratings {
    order: 4;
  }
  .product-info-main .extended-review-summary-wrapper .number-of-ratings,
  .product-info-main .extended-review-summary-wrapper .review-ratings {
    width: 100%;
    margin-right: 0;
  }
  .product-info-main .extended-review-summary-wrapper > div {
    margin-top: 30px;
  }
  .product-info-main .review-content-left {
    margin-bottom: 25px;
    display: block;
    margin-right: 0;
    max-width: 100%;
  }
  .product-info-main .product-info-main .review-content-left {
    margin-bottom: 0;
  }
  .order-links .item {
    float: left;
    margin: 0;
    width: auto;
    /*a {
                padding: @tab-control__padding-top @indent__base;
            }*/
    /*
            strong {
                border-bottom: 0;
                margin-bottom: -1px;
                padding: @tab-control__padding-top @indent__base @tab-control__padding-bottom + 1 @indent__base;
            }*/
  }
  .order-links .item strong,
  .order-links .item a {
    color: #000;
    background: none;
    line-height: 30px;
    height: 30px;
    font-size: 1.5rem;
    box-sizing: content-box;
  }
  .order-links .item a:before {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: translateY(39px);
    transition: all 0.25s ease;
    background: #000000;
    will-change: transform;
  }
  .order-links .item a:after {
    content: '';
    display: block;
    position: absolute;
    width: 100%;
    height: 100%;
    bottom: 0;
    left: 0;
    z-index: -1;
    transform: translateY(100%);
    transition: all 0.4s ease;
    background: var(--a2-main-color);
    will-change: transform;
  }
  .order-links .item a:visited {
    color: #000;
    text-decoration: none;
  }
  .order-links .item a:focus,
  .order-links .item a:hover {
    color: #fff;
    text-decoration: none;
    background: none;
  }
  .order-links .item a:focus:before,
  .order-links .item a:hover:before {
    transform: translateY(0);
  }
  .order-links .item.current strong {
    transition: color 200ms 100ms;
  }
  .order-links .item.current strong:after {
    transform: translateY(0);
    transition: transform 0.3s ease;
  }
  .order-links .item.current strong:before {
    transform: translateY(0);
  }
  .order-actions-toolbar .actions {
    display: block;
    width: 100%;
  }
  .order-actions-toolbar .action.print {
    display: inline-block;
    float: right;
  }
  .account .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  [class^='sales-guest-'] .column.main .block.block-order-details-view .block-content:not(.widget) .box,
  .sales-guest-view .column.main .block.block-order-details-view .block-content:not(.widget) .box {
    clear: none;
    float: left;
    width: 100%/4;
  }
  .block-order-details-comments {
    margin: 0 0 60px;
  }
  .block-order-details-comments .comment-date {
    clear: left;
    float: left;
    margin-right: 50px;
    max-width: 90px;
  }
  .block-order-details-comments .comment-content {
    overflow: hidden;
  }
  .order-details-items {
    padding: 40px;
  }
  .order-details-items .col.price {
    text-align: center;
  }
  .order-details-items .col.subtotal {
    text-align: right;
  }
  .order-details-items tbody td {
    padding-bottom: 20px;
    padding-top: 20px;
  }
  .order-details-items tfoot .amount,
  .order-details-items tfoot .mark {
    text-align: right;
  }
  .order-details-items.ordered .order-title {
    display: none;
  }
  .order-pager-wrapper .order-pager-wrapper-top {
    padding-left: 0;
    padding-right: 0;
  }
  .order-pager-wrapper .toolbar-amount {
    position: relative;
  }
  .order-pager-wrapper .pages {
    float: right;
  }
  .table-order-items tbody .col.label,
  .table-order-items tbody .col.value {
    padding-left: 0;
  }
  .table-order-items.invoice .col.qty,
  .table-order-items.shipment .col.qty {
    text-align: center;
  }
  .table-order-items.creditmemo .col.qty,
  .table-order-items.creditmemo .col.discount,
  .table-order-items.creditmemo .col.subtotal {
    text-align: center;
  }
  .table-order-items.creditmemo .col.total {
    text-align: right;
  }
  html,
  body {
    height: 100%;
  }
  .page-wrapper {
    display: flex;
    flex-direction: column;
    min-height: 100%;
  }
  .page-wrapper > .breadcrumbs,
  .page-wrapper > .top-container,
  .page-wrapper > .widget {
    box-sizing: border-box;
    width: 100%;
    min-height: 40px;
  }
  .ie10 .page-wrapper,
  .ie11 .page-wrapper {
    height: 100%;
  }
  .page-main > .page-title-wrapper .page-title {
    display: inline-block;
  }
  .page-main > .page-title-wrapper .page-title + .action {
    float: right;
    margin-top: 20px;
  }
  .switcher {
    display: inline-block;
  }
  .switcher .options {
    display: inline-block;
    position: relative;
  }
  .switcher .options:before,
  .switcher .options:after {
    content: '';
    display: table;
  }
  .switcher .options:after {
    clear: both;
  }
  .switcher .options .action.toggle {
    padding: 0 24px 0 11px;
    cursor: pointer;
    display: inline-block;
    text-decoration: none;
  }
  .switcher .options .action.toggle:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 11px;
    line-height: 18px;
    color: inherit;
    content: '\e607';
    font-family: "athlete2";
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .switcher .options .action.toggle:hover:after {
    color: inherit;
  }
  .switcher .options .action.toggle:active:after {
    color: inherit;
  }
  .switcher .options .action.toggle.active {
    display: inline-block;
    text-decoration: none;
  }
  .switcher .options .action.toggle.active:after {
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 11px;
    line-height: 18px;
    color: inherit;
    content: "\72";
    font-family: "athlete2";
    margin: 0;
    vertical-align: top;
    display: inline-block;
    font-weight: normal;
    overflow: hidden;
    speak: none;
    text-align: center;
  }
  .switcher .options .action.toggle.active:hover:after {
    color: inherit;
  }
  .switcher .options .action.toggle.active:active:after {
    color: inherit;
  }
  .switcher .options ul.dropdown {
    margin: 0;
    padding: 0;
    list-style: none none;
    background: #ffffff;
    border: 0;
    margin-top: 0;
    min-width: 130px;
    z-index: 100;
    box-sizing: border-box;
    display: none;
    position: absolute;
    top: 100%;
    box-shadow: 0px 0px 10px 0px rgba(0, 0, 0, 0.15);
  }
  .switcher .options ul.dropdown li {
    margin: 0;
    padding: 0;
  }
  .switcher .options ul.dropdown li:hover {
    background: #f5f4f4;
    cursor: pointer;
  }
  .switcher .options ul.dropdown:before,
  .switcher .options ul.dropdown:after {
    border-bottom-style: solid;
    content: '';
    display: block;
    height: 0;
    position: absolute;
    width: 0;
  }
  .switcher .options ul.dropdown:before {
    border: 6px solid;
    border-color: transparent transparent #ffffff transparent;
    z-index: 99;
  }
  .switcher .options ul.dropdown:after {
    border: 7px solid;
    border-color: transparent transparent #bbb transparent;
    z-index: 98;
  }
  .switcher .options ul.dropdown:before {
    left: 10px;
    top: -12px;
  }
  .switcher .options ul.dropdown:after {
    left: 9px;
    top: -14px;
  }
  .switcher .options.active {
    overflow: visible;
  }
  .switcher .options.active ul.dropdown {
    display: block;
  }
  .switcher .options ul {
    list-style: none;
  }
  .switcher .options ul a {
    color: #322c29;
    text-decoration: none;
    display: block;
    white-space: nowrap;
  }
  .switcher .options ul a:visited {
    color: #322c29;
    text-decoration: none;
  }
  .switcher .options ul a:hover {
    color: #322c29;
    text-decoration: none;
  }
  .switcher .options ul a:active {
    color: #322c29;
    text-decoration: none;
  }
  .switcher .options ul:before,
  .switcher .options ul:after {
    content: none;
  }
  .switcher .options ul li {
    transition: all 600ms ease-in-out;
    line-height: 18px;
    list-style: none;
  }
  .switcher .options ul li:hover {
    transition: all 10ms ease-in-out;
  }
  .switcher.tiny-drop .options ul.dropdown {
    padding: 15px;
  }
  .switcher.tiny-drop .options ul a {
    padding: 1px 7px;
    line-height: 18px;
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .switcher-option:hover a {
    background-color: #f5f4f4;
  }
  .footer.content {
    padding-bottom: 50px;
    padding-top: 50px;
  }
  .footer.content .block {
    float: right;
  }
  .footer.content .links {
    display: inline-block;
    margin-bottom: 20px;
    padding: 0 50px 0 0;
    vertical-align: top;
  }
  .footer-block-content {
    padding: 26px 0 0;
  }
  .footer--layout-1 .footer-block-content {
    max-width: 64%;
    padding: 26px 20px 0 0;
  }
  .footer-newsletter-wide .footer.content {
    padding-top: 0;
  }
  .footer-block-content-after {
    margin-bottom: -10px;
  }
  .ox-dropdown .block-wishlist .empty-wishlist-wrapper {
    padding: 60px 0 50px;
  }
  .ox-dropdown .block-wishlist .empty-wishlist-wrapper .button.continue {
    display: none;
  }
  .products-grid.wishlist {
    margin-bottom: 20px;
  }
  .products-grid.wishlist .product-item-tooltip {
    display: inline-block;
  }
  .products-grid.wishlist .product-item .box-tocart .actions-primary {
    margin: 0;
  }
  .products-grid.wishlist .product-item .box-tocart .stock {
    margin: 20px 0 0;
  }
  .wishlist-index-index .product-item-info {
    width: 240px;
  }
  .block.widget .products-grid .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .sidebar .block.widget .products-grid .product-item {
    margin-left: 0;
    width: 100%;
  }
  .sidebar .block.widget .products-grid .product-item .actions-secondary {
    display: block;
    padding: 10px 0;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .sidebar .block.widget .pager .pages-item-next {
    padding: 0;
  }
  .sidebar .block.widget .pager .pages-item-next .action {
    margin: 0;
  }
  .oxmm-col--minwidth .ox-menu-col {
    min-width: 300px;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap a:before {
    content: none;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap a {
    padding-top: 6px;
    padding-bottom: 6px;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap a .a2-menu-stroke {
    width: 50px;
    height: 35px;
    position: absolute;
    z-index: -1;
    margin-left: -25px;
    margin-top: -19px;
    left: 50%;
    top: 50%;
    display: block;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap a .a2-menu-stroke span {
    height: 9px;
    background: var(--oxmm-style5-bg, black);
    display: block;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(1) {
    width: 38px;
    transform: translate(-6px, -0.5px) rotate(-39deg) scaleX(0);
    transform-origin: right;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(2) {
    width: 48px;
    transform: translate(3.9px, 17.3px) rotate(-25deg) scaleX(0);
    transform-origin: left;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(3) {
    width: 26px;
    transform: translate(21px, -11.4px) rotate(-44deg) scaleX(0);
    transform-origin: right;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0.has-active > .ox-mm-a-wrap a,
  .menu-style-5 .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap a {
    background-color: transparent;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0.has-active > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(1),
  .menu-style-5 .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(1) {
    animation: none !important;
    transform: translate(-6px, -0.5px) rotate(-39deg) scaleX(1);
  }
  .menu-style-5 .ox-megamenu-navigation > .level0.has-active > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(2),
  .menu-style-5 .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(2) {
    animation: none !important;
    transform: translate(3.9px, 17.3px) rotate(-25deg) scaleX(1);
  }
  .menu-style-5 .ox-megamenu-navigation > .level0.has-active > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(3),
  .menu-style-5 .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(3) {
    animation: none !important;
    transform: translate(21px, -11.4px) rotate(-44deg) scaleX(1);
  }
  @keyframes a2-ms-1 {
    from {
      transform: translate(-6px, -0.5px) rotate(-39deg) scaleX(0);
    }
    to {
      transform: translate(-6px, -0.5px) rotate(-39deg) scaleX(1);
    }
  }
  @keyframes a2-ms-2 {
    from {
      transform: translate(3.9px, 17.3px) rotate(-25deg) scaleX(0);
    }
    to {
      transform: translate(3.9px, 17.3px) rotate(-25deg) scaleX(1);
    }
  }
  @keyframes a2-ms-3 {
    from {
      transform: translate(21px, -11.4px) rotate(-44deg) scaleX(0);
    }
    to {
      transform: translate(21px, -11.4px) rotate(-44deg) scaleX(1);
    }
  }
  .menu-style-5 .ox-megamenu-navigation > .level0:hover > .ox-mm-a-wrap a .a2-menu-stroke,
  .menu-style-5 .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap a .a2-menu-stroke {
    margin-left: -25px;
    margin-top: -19px;
    left: 50%;
    top: 50%;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0:hover > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(1) {
    animation: a2-ms-1 0.1s forwards;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0:hover > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(2) {
    animation: a2-ms-2 0.12s forwards;
    animation-delay: 0.09s;
  }
  .menu-style-5 .ox-megamenu-navigation > .level0:hover > .ox-mm-a-wrap a .a2-menu-stroke span:nth-child(3) {
    animation: a2-ms-3 0.08s forwards;
    animation-delay: 0.2s;
  }
  .menu-style-5 .ox-megamenu-navigation > li > .ox-mm-a-wrap a .ox-megamenu-label,
  .menu-style-2 .ox-megamenu-navigation > li > .ox-mm-a-wrap a .ox-megamenu-label,
  .menu-style-4 .ox-megamenu-navigation > li > .ox-mm-a-wrap a .ox-megamenu-label {
    top: 0;
  }
  .menu-style-3 .ox-megamenu-navigation > li > .ox-mm-a-wrap a .ox-megamenu-label {
    right: -10px;
  }
  .ox-megamenu-navigation > .level0.has-active > .ox-mm-a-wrap .level-top,
  .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap .level-top {
    background-color: transparent !important;
  }
  .ox-dropdown--megamenu.big-padding > .ox-megamenu__dropdown > .ox-mm-inner {
    padding: 50px;
  }
  .ox-megamenu-navigation .level1-margin-bottom > .ox-megamenu__dropdown .ox-megamenu__categories .level1.category-item > .ox-mm-a-wrap a {
    margin-bottom: 20px;
  }
  .hide-category-name > .ox-mm-a-wrap a .name {
    display: none !important;
  }
  .hide-category-name > .ox-mm-a-wrap a .ox-menu-item__custom-element {
    margin: 0 !important;
  }
  .ox-megamenu-navigation li.parent > .ox-mm-a-wrap .ox-menu-arrow {
    position: absolute;
    display: inline-block;
    text-decoration: none;
    width: 8px;
    height: 8px;
    right: 0;
    top: 0;
  }
  .ox-megamenu-navigation li.parent > .ox-mm-a-wrap .ox-menu-arrow:after,
  .ox-megamenu-navigation li.parent > .ox-mm-a-wrap .ox-menu-arrow:before {
    content: '';
    position: absolute;
    background: currentColor;
    transition: background  0.3s ease-in-out;
    right: calc(50% - var(--oxmm-arrow-w) / 2);
    top: calc(50% - var(--oxmm-arrow-h) / 2);
    width: var(--oxmm-arrow-w);
    height: var(--oxmm-arrow-h);
  }
  .ox-megamenu-navigation li.parent > .ox-mm-a-wrap .ox-menu-arrow:after {
    transform: rotate(90deg);
  }
  .ox-megamenu-navigation li.parent.level0 > .ox-mm-a-wrap .ox-menu-arrow {
    position: relative;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown li.parent > .ox-mm-a-wrap {
    position: static;
  }
  .ox-megamenu-navigation .ox-megamenu__dropdown li.parent > .ox-mm-a-wrap .ox-menu-arrow {
    top: 50%;
    margin-top: -4px;
    right: 3px;
  }
  .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap a {
    transition: color 0.3s ease;
  }
  .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap a:before {
    content: '';
    width: 100%;
    height: 100%;
    position: absolute;
    background: var(--a2-main-color);
    display: block;
    z-index: -1;
    left: 0;
    top: 0;
    transform: scaleY(0);
    transition: transform 0.3s ease;
    transform-origin: 100% 0;
  }
  .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap a span {
    display: inline-table;
    -webkit-transform: translateZ(0);
    -moz-transform: translateZ(0);
    -ms-transform: translateZ(0);
    -o-transform: translateZ(0);
    transform: translateZ(0);
  }
  .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap a span.ox-megamenu-label {
    display: inline-block;
  }
  .ox-megamenu-navigation > .level0 > .ox-mm-a-wrap .ox-menu-arrow {
    position: relative;
  }
  .ox-megamenu-navigation > .level0.has-active > .ox-mm-a-wrap a,
  .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap a,
  .ox-megamenu-navigation > .level0:hover > .ox-mm-a-wrap a {
    transition: color 0.1s ease;
  }
  .ox-megamenu-navigation > .level0.has-active > .ox-mm-a-wrap a:before,
  .ox-megamenu-navigation > .level0.active > .ox-mm-a-wrap a:before,
  .ox-megamenu-navigation > .level0:hover > .ox-mm-a-wrap a:before {
    transform: scaleY(1);
    transition: transform 0.1s ease;
  }
  .ox-megamenu-navigation > li > .ox-mm-a-wrap a,
  .ox-megamenu-navigation .category-item > .ox-mm-a-wrap a {
    display: inline-flex;
    width: auto;
  }
  /* Custom Menu items colors */
  .ox-megamenu-navigation > .level0.green > .ox-mm-a-wrap a {
    color: #adb903 !important;
  }
  .ox-megamenu-navigation > .level0.green > .ox-mm-a-wrap a:before {
    background-color: #adb903 !important;
  }
  .ox-megamenu-navigation > .level0.poison > .ox-mm-a-wrap a {
    color: #b8e536 !important;
  }
  .ox-megamenu-navigation > .level0.poison > .ox-mm-a-wrap a:before {
    background-color: #b8e536 !important;
  }
  .ox-megamenu-navigation > .level0.brazil > .ox-mm-a-wrap a {
    color: #c3e235 !important;
  }
  .ox-megamenu-navigation > .level0.brazil > .ox-mm-a-wrap a:before {
    background-color: #c3e235 !important;
  }
  .ox-megamenu-navigation > .level0.brazil:hover > .ox-mm-a-wrap a {
    color: #333333 !important;
  }
  .ox-megamenu-navigation > .level0.green-wh:not(:hover) > .ox-mm-a-wrap a {
    color: #aad304 !important;
  }
  .ox-megamenu-navigation > .level0.green-wbg > .ox-mm-a-wrap a {
    color: #aad304 !important;
  }
  .ox-megamenu-navigation > .level0.green-wbg:hover > .ox-mm-a-wrap a {
    color: #000 !important;
    background: #caef36 !important;
  }
  .ox-megamenu-navigation > .level0.green:hover > .ox-mm-a-wrap a,
  .ox-megamenu-navigation > .level0.poison:hover > .ox-mm-a-wrap a {
    color: #ffffff !important;
  }
}
@media all and (min-width: 1025px) and (max-width: 1300px), print and (max-width: 1300px) {
  .oxmm-left-block--hide-ds .ox-megamenu-block-left,
  .oxmm-right-block--hide-ds .ox-megamenu-block-right {
    display: none;
  }
}
@media all and (min-width: 1160px), print {
  .responsive-padding-1 {
    padding: 55px;
  }
  .top-bar.topline-3col .flex-center,
  .top-bar.topline-3col .flex-left,
  .top-bar.topline-3col .flex-right {
    flex-basis: 0;
    flex-grow: 1;
    max-width: 100%;
  }
  .post-list.blog-style-modern.columns-3 article.post-style--overlay .post-content,
  .post-list.blog-style-modern.columns-3.blog-list--image-top article.post-style--overlay .post-content,
  .post-list.blog-style-modern.columns-3.blog-list--overlay article .post-content {
    padding: 60px;
  }
  .page-layout-2columns-left .post-list.blog-style-modern article.post-style--above-image .post-content,
  .page-layout-2columns-right .post-list.blog-style-modern article.post-style--above-image .post-content,
  .page-layout-2columns-left .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image .post-content,
  .page-layout-2columns-right .post-list.blog-style-modern.blog-list--image-top article.post-style--above-image .post-content,
  .page-layout-2columns-left .post-list.blog-style-modern.blog-list--first-above-image article:first-child .post-content,
  .page-layout-2columns-right .post-list.blog-style-modern.blog-list--first-above-image article:first-child .post-content,
  .page-layout-2columns-left .post-list.blog-style-modern.blog-list--above-image article .post-content,
  .page-layout-2columns-right .post-list.blog-style-modern.blog-list--above-image article .post-content {
    max-width: 70%;
  }
  .page-layout-2columns-left .post-list.blog-style-modern.blog-list--image-left article.post-style--above-image .post-content,
  .page-layout-2columns-right .post-list.blog-style-modern.blog-list--image-left article.post-style--above-image .post-content {
    flex: 0 0 70%;
    max-width: 70%;
  }
  .post-view.narrow-post :is(.wide-content,
            .wide) {
    margin-left: -200px;
    margin-right: -200px;
  }
  .ox-cats {
    --cols-l: calc(100% / 5);
  }
  .ox-cat {
    --cols: var(--cols-l);
  }
  .filter-options-content .am-filter-price {
    width: 43%;
  }
  .ambrands-letters-filter .ambrands-letter {
    margin: 0 7px 7px 0;
  }
  .ambrands-letters-list .ambrands-letter {
    padding-right: 30px;
    width: inherit;
  }
  .ambrands-list-popup {
    position: absolute;
    width: 600px;
    height: 415px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 2px 7px rgba(131, 136, 141, 0.13), 0 10px 15px rgba(131, 136, 141, 0.13);
    opacity: 0;
    transition: all 0.5s ease;
    pointer-events: none;
  }
  .ambrands-menu-item:hover .ambrands-list-popup,
  .ammenu-item:hover .ambrands-list-popup {
    display: block;
    opacity: 1;
    pointer-events: auto;
  }
  .ambrands-list-container {
    display: flex;
    height: 100%;
    font-size: 0;
  }
  .ambrands-list-popup .ambrands-letters-filter {
    display: block;
    overflow: auto;
    box-sizing: border-box;
    padding: 20px 14px 0;
    min-width: calc(((34px + 12px) * 4) + (14px * 2));
    width: calc(((34px + 12px) * 4) + (14px * 2));
    height: 100%;
    background: #fbfbfb;
    font-size: 0;
  }
  .ambrands-list-popup .ambrands-letters-filter .ambrands-letter {
    display: inline-flex;
    margin: 0 6px 12px;
  }
  .ambrands-list-popup .ambrands-letters-filter .ambrands-letter.-letter-all {
    margin-bottom: 30px;
    width: calc(100% - 12px);
  }
  .ambrands-popup-items {
    display: inline-block;
    overflow: auto;
    box-sizing: border-box;
    padding: 20px;
    width: 100%;
    height: 100%;
    font-size: 14px;
  }
  .ambrands-popup-items .ambrands-letters-list {
    width: 100%;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-letter {
    margin-bottom: 30px;
    padding-right: 0;
  }
  .ambrands-popup-items .ambrands-letters-list:last-child .ambrands-letter {
    margin-bottom: 0;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item {
    min-width: 100px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item {
    min-width: 100px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item .ambrands-label {
    max-width: 130px;
  }
  .ambrands-popup-items .ambrands-letters-list .ambrands-brand-item.-no-logo {
    max-width: 102px;
  }
  .ambrands-popup-items .ambrands-letter .ambrands-brand-item .ambrands-empty {
    font-weight: 400;
    font-size: 40px;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-8 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-8 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-8 .products-grid .product-item,
  .block.widget.product-columns-8 .products-grid .product-item {
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-7 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-7 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-7 .products-grid .product-item,
  .block.widget.product-columns-7 .products-grid .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-6 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-6 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-6 .products-grid .product-item,
  .block.widget.product-columns-6 .products-grid .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-5 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-5 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-5 .products-grid .product-item,
  .block.widget.product-columns-5 .products-grid .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-4 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-4 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-4 .products-grid .product-item,
  .block.widget.product-columns-4 .products-grid .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-3 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-3 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-3 .products-grid .product-item,
  .block.widget.product-columns-3 .products-grid .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-3columns .block.widget.product-columns-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .block.widget.product-columns-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .block.widget.product-columns-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .block.widget.product-columns-2 .products-grid .product-item,
  .page-layout-3columns .block.widget.product-columns-2 .products-grid .product-item,
  .page-layout-1column .block.widget.product-columns-2 .products-grid .product-item,
  .block.widget.product-columns-2 .products-grid .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-8 .product-item,
  .page-layout-3columns .block.widget.product-columns-8 .product-item,
  .page-layout-1column .block.widget.product-columns-8 .product-item,
  .block.widget.product-columns-8 .product-item {
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-7 .product-item,
  .page-layout-3columns .block.widget.product-columns-7 .product-item,
  .page-layout-1column .block.widget.product-columns-7 .product-item,
  .block.widget.product-columns-7 .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-6 .product-item,
  .page-layout-3columns .block.widget.product-columns-6 .product-item,
  .page-layout-1column .block.widget.product-columns-6 .product-item,
  .block.widget.product-columns-6 .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-5 .product-item,
  .page-layout-3columns .block.widget.product-columns-5 .product-item,
  .page-layout-1column .block.widget.product-columns-5 .product-item,
  .block.widget.product-columns-5 .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-4 .product-item,
  .page-layout-3columns .block.widget.product-columns-4 .product-item,
  .page-layout-1column .block.widget.product-columns-4 .product-item,
  .block.widget.product-columns-4 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-3 .product-item,
  .page-layout-3columns .block.widget.product-columns-3 .product-item,
  .page-layout-1column .block.widget.product-columns-3 .product-item,
  .block.widget.product-columns-3 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-2 .product-item,
  .page-layout-3columns .block.widget.product-columns-2 .product-item,
  .page-layout-1column .block.widget.product-columns-2 .product-item,
  .block.widget.product-columns-2 .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-layout-1column-fullwidth .block.widget.product-columns-1 .product-item,
  .page-layout-3columns .block.widget.product-columns-1 .product-item,
  .page-layout-1column .block.widget.product-columns-1 .product-item,
  .block.widget.product-columns-1 .product-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .checkout-index-index .modal-popup .modal-inner-wrap {
    margin-left: -400px;
    width: 800px;
    left: 50%;
  }
  .opc-wrapper .shipping-address-item {
    width: 33.33333333%;
  }
  .opc-wrapper .shipping-address-item:before {
    background: #ccc;
    height: calc(100% - 20px);
    content: '';
    left: 0;
    position: absolute;
    top: 0;
    width: 1px;
  }
  .opc-wrapper .shipping-address-item:nth-child(3n + 1):before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item:before {
    display: none;
  }
  .opc-wrapper .shipping-address-item.selected-item + .shipping-address-item:before {
    display: none;
  }
  .products-grid .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .products-grid.product-columns-8 .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .products-grid.product-columns-7 .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .products-grid.product-columns-6 .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .products-grid.product-columns-5 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .products-grid.product-columns-4 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .products-grid.product-columns-3 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .products-grid.product-columns-2 .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .products-grid.product-columns-1 .product-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .page-layout-1column-fullwidth .products-grid .product-item,
  .page-layout-1column .products-grid .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .products-grid.product-columns-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .products-grid.product-columns-8 .products-grid .product-item,
  .page-layout-1column .products-grid.product-columns-8 .products-grid .product-item {
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .products-grid.product-columns-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .products-grid.product-columns-7 .products-grid .product-item,
  .page-layout-1column .products-grid.product-columns-7 .products-grid .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .products-grid.product-columns-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .products-grid.product-columns-6 .products-grid .product-item,
  .page-layout-1column .products-grid.product-columns-6 .products-grid .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .products-grid.product-columns-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .products-grid.product-columns-5 .products-grid .product-item,
  .page-layout-1column .products-grid.product-columns-5 .products-grid .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .products-grid.product-columns-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .products-grid.product-columns-4 .products-grid .product-item,
  .page-layout-1column .products-grid.product-columns-4 .products-grid .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .products-grid.product-columns-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .products-grid.product-columns-3 .products-grid .product-item,
  .page-layout-1column .products-grid.product-columns-3 .products-grid .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column .products-grid.product-columns-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-layout-1column-fullwidth .products-grid.product-columns-2 .products-grid .product-item,
  .page-layout-1column .products-grid.product-columns-2 .products-grid .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-8 .product-item,
  .page-layout-1column .products-grid.product-columns-8 .product-item {
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-7 .product-item,
  .page-layout-1column .products-grid.product-columns-7 .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-6 .product-item,
  .page-layout-1column .products-grid.product-columns-6 .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-5 .product-item,
  .page-layout-1column .products-grid.product-columns-5 .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-4 .product-item,
  .page-layout-1column .products-grid.product-columns-4 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-3 .product-item,
  .page-layout-1column .products-grid.product-columns-3 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-2 .product-item,
  .page-layout-1column .products-grid.product-columns-2 .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-layout-1column-fullwidth .products-grid.product-columns-1 .product-item,
  .page-layout-1column .products-grid.product-columns-1 .product-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .page-layout-3columns .products-grid .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products .products-grid .product-items {
    margin: 0;
  }
  .page-products .products-grid .product-item {
    padding: 0;
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products .products-grid.product-columns-8 .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .page-products .products-grid.product-columns-7 .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-products .products-grid.product-columns-6 .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-products .products-grid.product-columns-5 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products .products-grid.product-columns-4 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products .products-grid.product-columns-3 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products .products-grid.product-columns-2 .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-products .products-grid.product-columns-1 .product-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid .product-item,
  .page-products.page-layout-1column .products-grid .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column .products-grid.product-columns-8 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-8 .products-grid .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-8 .products-grid .product-item {
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column .products-grid.product-columns-7 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-7 .products-grid .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-7 .products-grid .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column .products-grid.product-columns-6 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-6 .products-grid .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-6 .products-grid .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column .products-grid.product-columns-5 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-5 .products-grid .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-5 .products-grid .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column .products-grid.product-columns-4 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-4 .products-grid .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-4 .products-grid .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column .products-grid.product-columns-3 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-3 .products-grid .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-3 .products-grid .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column .products-grid.product-columns-2 .owl-carousel:not(.owl-loaded) > .product-item-info,
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-2 .products-grid .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-2 .products-grid .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-8 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-8 .product-item {
    max-width: 12.5%;
    flex-basis: 12.5%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-7 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-7 .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-6 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-6 .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-5 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-5 .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-4 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-4 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-3 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-3 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-2 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-2 .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-products.page-layout-1column-fullwidth .products-grid.product-columns-1 .product-item,
  .page-products.page-layout-1column .products-grid.product-columns-1 .product-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .page-products.page-layout-3columns .products-grid .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-8 .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-7 .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-6 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-5 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-4 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-3 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-2 .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-1 .product-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .page-layout-3columns .products-grid .owl-carousel .product-item,
  .page-layout-1column-fullwidth .products-grid .owl-carousel .product-item,
  .page-layout-1column .products-grid .owl-carousel .product-item {
    flex-basis: auto;
    max-width: 100%;
  }
  .products-grid .owl-carousel .product-item {
    flex-basis: auto;
    max-width: 100%;
  }
  .toolbar-amount {
    display: block;
  }
  .wishlist-index-index .products-grid .product-items {
    margin: 0;
  }
  .wishlist-index-index .products-grid .product-item {
    padding: 0;
    width: 25%;
  }
  .block.widget .products-grid .product-item {
    max-width: 25%;
    flex-basis: 25%;
    padding: 0;
  }
  .page-layout-1column .block.widget .products-grid .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-layout-3columns .block.widget .products-grid .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .block.widget .products-grid .owl-carousel.product-grid .product-item {
    margin-left: 0;
  }
}
@media all and (max-width: 1159px), print {
  .field-tooltip .field-tooltip-content {
    right: -10px;
    top: 40px;
    left: auto;
  }
}
@media all and (min-width: 1300px), print {
  .checkout-index-index .page-main {
    padding: 70px 70px 40px 70px;
  }
  .opc-wrapper {
    padding-right: 80px;
  }
  .opc-wrapper .opc-wrapper-boxed {
    padding: 70px;
    padding-top: 50px;
  }
}
@media all and (min-width: 1440px), print {
  .page-products.page-layout-3columns .products-grid .product-item,
  .page-layout-3columns .products-grid .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-8 .product-item,
  .page-layout-3columns .products-grid.product-columns-8 .product-item {
    max-width: 14.28571429%;
    flex-basis: 14.28571429%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-7 .product-item,
  .page-layout-3columns .products-grid.product-columns-7 .product-item {
    max-width: 16.66666667%;
    flex-basis: 16.66666667%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-6 .product-item,
  .page-layout-3columns .products-grid.product-columns-6 .product-item {
    max-width: 20%;
    flex-basis: 20%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-5 .product-item,
  .page-layout-3columns .products-grid.product-columns-5 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-4 .product-item,
  .page-layout-3columns .products-grid.product-columns-4 .product-item {
    max-width: 25%;
    flex-basis: 25%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-3 .product-item,
  .page-layout-3columns .products-grid.product-columns-3 .product-item {
    max-width: 33.33333333%;
    flex-basis: 33.33333333%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-2 .product-item,
  .page-layout-3columns .products-grid.product-columns-2 .product-item {
    max-width: 50%;
    flex-basis: 50%;
  }
  .page-products.page-layout-3columns .products-grid.product-columns-1 .product-item,
  .page-layout-3columns .products-grid.product-columns-1 .product-item {
    max-width: 100%;
    flex-basis: 100%;
  }
  .page-layout-3columns .products-grid .owl-carousel .product-item,
  .page-layout-1column-fullwidth .products-grid .owl-carousel .product-item,
  .page-layout-1column .products-grid .owl-carousel .product-item {
    flex-basis: auto;
    max-width: 100%;
  }
  .products-grid .owl-carousel .product-item {
    flex-basis: auto;
    max-width: 100%;
  }
}
/*@icon-settings:'\3d';
@icon-checkmark: '\2e';
@icon-search: '\61';
@icon-down: "\72";
@icon-up: "\72";
/*@icon-help
@icon-expand
@icon-pointer-right: "\72";
@icon-pointer-left: "\72";*/
/*
@button__span-padding: 0 12px;
@button__span-height: 30px;*/
/*
@breadcrumbs__container-margin: 0;
@breadcrumbs-icon__use: false;
@breadcrumbs__padding: 0;

@breadcrumbs-current__color: @text__color__muted;
@breadcrumbs-link__color: @text__color__muted;
@breadcrumbs-link__visited__color: @breadcrumbs-link__color;
@breadcrumbs-link__hover__color: #ffffff;
@breadcrumbs-link__active__color: @breadcrumbs-link__color;
*/
.page-layout-2columns-right .extended-review-button {
  display: none !important;
}
.product-item .price-box .price-container .price-label {
  display: none !important;
}
.page-layout-2columns-right.catalog-product-view .number-of-ratings .rating-number .label {
  display: none;
}
.footer--layout-2 .footer.content .block.newsletter:before {
  background-color: rgb(23 27 33);
  border-bottom: 1px solid #2f2e2e;
}
.catalog-product-view .prices-tier .price-container .price-including-tax + .price-excluding-tax:last-child:after {
  content: '' !important;
}
.logo__container {
  padding-left: 0;
  padding: 8px !important;
}
.logo__container .logo {
  margin: 0 !important;
}
form.minisearch .control {
  background-color: #fff;
}
.slide-out-menu--mobile > span {
  display: none;
}
.top-bar a:not(.button) {
  line-height: inherit !important;
}
.top-bar .header.links li.account:before {
  content: '';
  display: inline-block;
  background-image: url(/media/wysiwyg/icon-account.png);
  background-repeat: no-repeat;
  width: 28px;
  height: 23px;
}
.top-bar .header.links li.login:before {
  content: '';
  display: inline-block;
  background-image: url(/media/wysiwyg/icon-login.png);
  background-repeat: no-repeat;
  width: 22px;
  height: 18px;
  vertical-align: middle;
}
.top-bar .header.links li.creat-account:before {
  content: '';
  display: inline-block;
  background-image: url(/media/wysiwyg/icon-user.png);
  background-repeat: no-repeat;
  width: 22px;
  height: 22px;
  vertical-align: middle;
}
.top-bar .flex-left .topline-block {
  margin-left: 0 !important;
}
.header__content .minicart-wrapper .action.showcart svg {
  display: none;
}
.header__content .minicart-wrapper .action.showcart:before {
  content: "" !important;
  background-image: url(/media/wysiwyg/icon-cart.png);
  background-repeat: no-repeat;
  width: 25px;
  height: 23px;
  display: inline-block;
  margin-right: 8px;
}
@media only screen and (max-width: 767px) {
  .header__content .minicart-wrapper .action.showcart {
    padding: 8px;
  }
}
@media only screen and (min-width: 1200px) {
  .page-header {
    position: relative;
    z-index: 50 !important;
  }
  .header__content .header__center.block-search {
    z-index: 40 !important;
  }
  .header__content .header__additional-content {
    width: auto;
  }
  .header__content .header__additional-content .payment-logos-header {
    line-height: 8px;
  }
  .header__content .header__additional-content .payment-logos-header ul {
    list-style: none;
    margin-bottom: 0;
    padding-left: 0;
  }
  .header__content .header__additional-content .payment-logos-header ul li {
    display: inline-block;
  }
  .sticky-minimized .top-bar {
    height: auto !important;
    padding-top: 0;
  }
}
@media only screen and (max-width: 767px) {
  .page-header .block-search .action.search {
    background: #000 !important;
    width: 49px;
  }
  .page-header .header__item-search form input {
    border: 1px !important;
    font-size: 17px;
  }
  .ox-nav-sections-item-content {
    padding: 12px !important;
  }
  .ox-nav-sections-item-title .ox-nav-sections-item-switch {
    color: #3d3d3d !important;
  }
  .top-bar {
    display: none !important;
    text-align: center;
  }
  .top-bar .flex-left {
    display: block;
  }
  .top-bar .flex-center {
    display: none;
  }
  .logo__container {
    padding: 10px 10px 0 10px !important;
    width: 65% !important;
    max-width: 100% !important;
  }
  .minicart-wrapper .action.showcart {
    background: #ff6600 !important;
  }
  .mobile-header--layout-5 .header__content .header__right {
    margin: -6px;
  }
  .mobile-header--layout-5 .header__content .slide-out-menu--mobile {
    left: 5px;
  }
}
@media only screen and (max-width: 1024px) {
  .top-bar {
    display: flex;
    text-align: center;
  }
  .header__content {
    height: auto;
    min-height: 55px;
  }
  .top-bar.topline-3col {
    justify-content: center;
  }
  .top-bar.topline-3col .flex-center {
    display: none;
  }
  .page-header .block-search .action.search {
    background: #ff6600 !important;
  }
  .page-header .header__item-search form input {
    border: 1px !important;
  }
}
.custom-menu {
  display: block;
  padding-left: 20px;
}
.custom-menu ul {
  margin-bottom: 0 !important;
  display: flex;
  padding-left: 15px;
  border-left: 1px solid #fff;
  float: left;
}
.custom-menu li {
  list-style: none;
  display: block;
  padding: 0 20px;
}
.custom-menu li a {
  display: block;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}
.custom-menu li a:hover {
  color: #000000;
}
@media only screen and (max-width: 767px) {
  .custom-menu {
    display: none;
  }
}
.custom-menu .openingstijden {
  display: block;
  float: right;
  text-align: right;
  position: relative;
}
.custom-menu .openingstijden a {
  display: block;
  color: #fff;
  font-size: 16px;
  cursor: pointer;
  font-weight: 700;
  text-transform: uppercase;
}
.custom-menu .openingstijden a:hover {
  color: #000000;
  transition: all 600ms ease-in-out !important;
}
.custom-menu .openingstijden a:after {
  content: '';
  display: inline-block;
  background-image: url(/media/wysiwyg/angle-down.png);
  background-repeat: no-repeat;
  width: 13px;
  height: 8px;
  margin-left: 4px;
  vertical-align: middle;
  transition: all 600ms ease-in-out !important;
}
.custom-menu .openingstijden a:hover:after {
  background-image: url(/media/wysiwyg/angle-down-green.png);
  transition: all 600ms ease-in-out !important;
}
.custom-menu .openingstijden .dropdown-content {
  display: none;
  position: absolute;
  background-color: #333;
  overflow: auto;
  z-index: 50;
  padding: 10px 15px;
  right: 1px;
  min-width: 210px;
  white-space: nowrap;
}
.custom-menu .openingstijden .dropdown-content.show {
  display: block;
  color: #fff;
  white-space: normal;
}
.custom-menu .openingstijden .dropdown-content span {
  color: #fff;
  text-decoration: none;
  display: block;
  line-height: 2;
  text-align: left;
}
.custom-menu .block-static-block.widget {
  margin-bottom: 0;
}
.header-nav-wide {
  height: 2px !important;
}
.sticky-minimized .ox-sticky.sticky.resize .header-nav-wide {
  display: block !important;
}
.am-childer-categories.am-categories-slider .am-splide-arrow {
  background: #00a500;
}
.block-search .action.search span.search-icon-wrapper,
.search-icon-wrapper {
  width: 70%;
  height: 70%;
}
.page-header .block-search .action.search:hover svg,
.page-header a.button.action-search-slideout:hover svg {
  fill: unset;
}
.page-header .block-search .action.search svg,
.page-header a.button.action-search-slideout svg {
  fill: unset;
}
/* =========================================
    AMASTY LAYERED NAVIGATION FIXES
 ========================================= */
/* volledige reset native checkbox/radio */
/* GEEN checkboxen bij categorieën */
.sidebar .am-filter-items-category_ids .amshopby-choice,
.sidebar .am-filter-items-category_ids input[type="radio"],
.sidebar .am-filter-items-category_ids input[type="checkbox"] {
  display: none !important;
  border: 0;
  clip: rect(0, 0, 0, 0);
  height: 0;
  margin: 0;
  opacity: 0;
  overflow: hidden;
  padding: 0;
  width: 0;
  position: absolute;
}
/* categorieën zonder checkbox spacing */
.sidebar .am-filter-items-category_ids li.item {
  gap: 0;
}
.sidebar .filter-options-content input[type="checkbox"],
.sidebar .filter-options-content input[type="radio"] {
  appearance: none !important;
  -webkit-appearance: none !important;
  -moz-appearance: none !important;
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  padding: 0 !important;
  border: 0 !important;
  outline: 0 !important;
  box-shadow: none !important;
  background: transparent !important;
  pointer-events: none !important;
}
.sidebar .filter-options-title {
  display: flex;
  align-items: center;
  width: 100%;
}
.sidebar .filter-options-title strong {
  flex: 1 1 auto;
}
.sidebar .filter-options-title .toggle-minus {
  margin-left: auto;
}
/* basis per regel */
.sidebar .filter-options-content li.item {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  gap: 8px;
}
/* link vult ruimte */
.sidebar .filter-options-content li.item > a {
  display: flex;
  align-items: center;
  flex: 1 1 auto;
  width: 100%;
  min-width: 0;
}
.sidebar .filter-options-content li.item a:hover,
.sidebar .filter-options-content li.item a:active,
.sidebar .filter-options-content li.item a:active .count {
  color: #00a500;
}
/* originele input verbergen */
.sidebar .filter-options-content li.item > input.am-input,
.sidebar .filter-options-content li.item > input[type="checkbox"],
.sidebar .filter-options-content li.item > input[type="radio"] {
  position: absolute !important;
  opacity: 0 !important;
  width: 0 !important;
  height: 0 !important;
  margin: 0 !important;
  pointer-events: none;
}
.filter-options input[type='checkbox'] + .amshopby-choice:hover:before,
.filter-options input[type='checkbox']:checked + .amshopby-choice:before {
  border-color: #00a500;
  border-radius: 0px;
}
.filter-options input[type='checkbox'] + .amshopby-choice:before,
.filter-options input[type='checkbox'] + .amshopby-choice:after {
  border-color: #00a500;
  border-radius: 0px;
  width: 13px;
  height: 13px;
}
.filter-options input[type='checkbox'] + .amshopby-choice:after {
  background-color: #00a500;
}
/* custom checkbox/radio */
.sidebar .filter-options-content li.item > .amshopby-choice {
  order: -1;
  display: inline-block;
  flex: 0 0 13px;
  width: 15px;
  height: 15px;
  border: 1px solid #555;
  box-sizing: border-box;
}
/* geen hokje bij prijs */
.sidebar .am-filter-items-price li.item > .amshopby-choice {
  display: none;
}
/* tekst/count uitlijnen */
.sidebar .filter-options-content li.item .label {
  flex: 1 1 auto;
  min-width: 0;
}
.sidebar .filter-options-content li.item .count {
  margin-left: auto;
  min-width: 28px;
  text-align: right;
  color: #999;
}
.sidebar .filter-options-content .filter-count-label {
  display: none;
}
.myparcel-delivery-options svg:first-child {
  display: none !important;
}
@media only screen and (max-width: 1024px) {
  body.cms-index-index .ox-banner-animated-text.ox-banner-medium .ox-banner-animated-container {
    padding: 18px;
  }
}
body.cms-index-index .ox-banner-animated-text.ox-banner-medium .ox-banner-animated-container span.text {
  font-size: 24px;
  color: #3d3d3d !important;
}
@media only screen and (max-width: 1024px) {
  body.cms-index-index .ox-banner-animated-text.ox-banner-medium .ox-banner-animated-container span.text {
    font-size: 16px;
  }
}
body.cms-index-index .ox-banner-animated-text .ox-banner-animated-container .text:after {
  background-color: transparent !important;
}
@media only screen and (min-width: 1200px) {
  body.cms-index-index .ox-banner-animated-text.v-center .ox-banner-animated-container {
    transform: translateY(11%) !important;
    padding: 10px !important;
  }
  body.cms-index-index .product-item .product-item-info {
    border-right: 1px dotted #d1d1d1;
    border-width: 0px 1px 0px 0px;
  }
  body.cms-index-index .product-item .product-item-name {
    height: 90px;
    padding-top: 15px;
    overflow: inherit;
    font-size: 14px;
    width: 100%;
  }
  body.cms-index-index .product-item .product-item-name a.product-item-link span.manufacurer-name {
    display: block;
  }
  body.cms-index-index .product-item .product-item-name a.product-item-link span.sku-list {
    padding-bottom: 2px;
    display: block;
    overflow: hidden;
  }
}
body.cms-index-index span.ox-banner-animated-container.bottom {
  position: relative;
  bottom: -160px;
  text-align: center;
  margin: 0px auto;
  right: auto;
  left: auto;
  width: 100%;
}
@media only screen and (max-width: 1024px) {
  body.cms-index-index span.ox-banner-animated-container.bottom {
    bottom: -105px;
  }
}
body.cms-index-index span.ox-banner-animated-container.bottom span.text {
  display: block;
  height: 40px;
}
@media only screen and (max-width: 767px) {
  body.cms-index-index span.ox-banner-animated-container.bottom {
    bottom: 0px !important;
  }
}
body.cms-index-index .titel-aanbevolen {
  background-color: #00a500;
}
body.cms-index-index .titel-aanbevolen a.ox-banner-link {
  position: relative;
}
body.cms-index-index .titel-aanbevolen .ox-banner.ox-banner-medium {
  height: 275px;
}
@media only screen and (max-width: 767px) {
  body.cms-index-index .titel-aanbevolen .ox-banner.ox-banner-medium {
    padding-top: 30px !important;
    height: 100% !important;
  }
}
@media only screen and (max-width: 1024px) {
  body.cms-index-index .titel-aanbevolen .ox-banner.ox-banner-medium {
    height: 210px;
  }
}
body.cms-index-index .category-images.home-category {
  padding-left: 0;
  list-style: none;
}
body.cms-index-index .category-images.home-category li {
  display: inline-block;
  border-right: 1px dotted #d1d1d1;
  border-width: 0px 1px 0px 0px;
  margin-bottom: 30px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  body.cms-index-index .category-images.home-category li {
    width: 47%;
  }
}
body.cms-index-index .category-images.home-category li .product-item-name {
  font-weight: 600;
  text-align: center;
}
body.cms-index-index .category-images.home-category li .category-image img {
  width: 70%;
  text-align: center;
  margin: 0px auto;
  display: block;
}
body.cms-index-index .category-images.home-category li:hover .product-grid-overlay {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.14s, visibility 0.14s;
}
@media only screen and (max-width: 1024px) {
  body.cms-index-index .category-images.home-category li {
    width: 32%;
  }
}
@media only screen and (max-width: 767px) {
  body.cms-index-index .category-images.home-category li:nth-of-type(2n+2) {
    border-right: 0px;
  }
}
body.cms-index-index li:nth-of-type(6n+6) {
  border-right: 0px;
}
@media only screen and (max-width: 767px) {
  body.cms-index-index .product-item .product-item-info {
    border-right: 1px dotted #d1d1d1;
    border-width: 0px 1px 0px 0px;
  }
  body.cms-index-index .product-item .product-item-info:nth-of-type(2n+2) {
    border-right: 0px;
  }
  body.cms-index-index .product-item .product-item-name {
    height: 130px;
  }
  body.cms-index-index .ox-banner.banner-stretch {
    padding-bottom: 10px;
  }
  body.cms-index-index h3.header3VP {
    margin-left: 14px;
  }
}
body.cms-index-index .product-item .price-box span {
  float: none;
}
body.cms-index-index .product-item .price-including-tax:after {
  content: "incl. BTW";
  font-size: 9px;
  color: #3d3d3d;
  padding-left: 5px;
}
body.cms-index-index .product-item .old-price {
  float: none;
}
body.cms-index-index .product-item .old-price .price {
  color: #3d3d3d !important;
  text-decoration: none;
}
body.cms-index-index .product-item .old-price .price:before {
  content: "Was: ";
  font-size: 12px;
  color: #3d3d3d;
}
body.cms-index-index .product-item .minimal-price-link {
  display: none;
}
body.cms-index-index .product-item .product-item-details span.manufacurer-name {
  font-weight: 600;
  margin-bottom: 4px;
  display: inline-block;
}
body.cms-index-index .product-item .product-item-details span.sku-list {
  font-weight: 600;
}
body.cms-index-index .product-item .product-item-details .brand-sku {
  display: block;
  min-height: 50px;
  padding-bottom: 10px;
}
.widget.block-products-list .block-title h3 {
  max-width: 100%;
}
.product-item .product-item-name {
  height: 100px;
}
.product-item .product-item-name a:after {
  background-color: transparent !important;
}
.product-item .product-item-name .product-item-link span.manufacurer-name {
  font-style: italic;
}
.product-item:hover .product-item-name a {
  color: #3d3d3d;
}
.product-item:hover .product-item-name a:hover {
  color: #00a500 !important;
}
.product-item .price-box .price-container:after {
  background-color: transparent !important;
}
.products-grid .product-item:hover .price-box .price-container .price-wrapper {
  color: #3d3d3d !important;
}
.products-grid .product-item .product-item-name a {
  text-transform: lowercase !important;
  line-height: 1.5;
}
.product-item .price-box .special-price {
  float: none;
}
.product-item .price-box .price-container {
  display: flex !important;
  flex-wrap: wrap;
  white-space: nowrap;
}
.product-item .price-box .price-container .price {
  font-size: 1.6rem;
}
.product-item .price-wrapper {
  order: 0;
  width: 100%;
  line-height: unset;
}
.product-item .price-wrapper .price {
  float: none !important;
  color: #00a500 !important;
  font-weight: 700 !important;
}
.product-item .price-including-tax {
  order: 2;
  width: 100%;
  line-height: unset;
}
.product-item .price-including-tax .price {
  color: #00a500 !important;
  font-weight: 700 !important;
}
.product-item .price-excluding-tax {
  order: 0;
  width: 100%;
  line-height: unset;
}
.product-item .price-excluding-tax .price {
  color: #00a500 !important;
  font-size: 1.6rem !important;
  font-weight: 700 !important;
}
.product-item .price-excluding-tax .price:after {
  content: "excl. BTW";
  font-size: 9px;
  color: #3d3d3d;
  padding-left: 5px;
}
.product-item .price-excluding-tax:before {
  display: none;
}
.product-item:hover .ox-product-labels-wrapper {
  opacity: 1 !important;
}
.product-item .price-including-tax:after {
  content: "incl. BTW";
  font-size: 9px;
  color: #3d3d3d;
  padding-left: 5px;
}
.block-minicart .empty-cart-wrapper .athlete2-icon-cart.empty-cart-icon:before {
  content: "" !important;
  background-image: url(/media/wysiwyg/icon-cart-sidebar.png);
  background-repeat: no-repeat;
  width: 119px;
  height: 106px;
  display: inline-block;
}
@media only screen and (max-width: 1024px) {
  .centered-iblocks {
    flex-flow: row;
  }
}
.centered-iblocks .iblock {
  padding: 0px;
}
.centered-iblocks .iblock .icon-wrapper {
  margin-right: 10px;
}
@media only screen and (max-width: 767px) {
  .centered-iblocks {
    flex-flow: column !important;
  }
}
.message.success:before {
  background: #00a500;
}
.category-images.home-category {
  list-style: none;
}
.category-images.home-category li {
  display: inline-block;
  border-right: 1px dotted #d1d1d1;
  border-width: 0px 1px 0px 0px;
  margin-bottom: 30px;
  position: relative;
}
@media only screen and (max-width: 767px) {
  .category-images.home-category li {
    width: 47%;
  }
}
.category-images.home-category li .product-item-name {
  font-weight: 600;
  text-align: center;
}
.category-images.home-category li .category-image img {
  width: 70%;
  text-align: center;
  margin: 0px auto;
  display: block;
}
.category-images.home-category li:hover .product-grid-overlay {
  visibility: visible;
  opacity: 1;
  transition: opacity 0.14s, visibility 0.14s;
}
@media only screen and (max-width: 767px) {
  .category-images.home-category li:nth-of-type(2n+2) {
    border-right: 0px;
  }
}
.ox-product-label-sale {
  background: #018DC2;
}
.customer-account-create h1.page-title {
  color: #ffffff;
}
input[type="number"] {
  -webkit-appearance: textfield;
  -moz-appearance: textfield;
}
@media only screen and (min-width: 1200px) {
  .footer.content .block_newsletter_wrapper .block.newsletter {
    background-color: #101317;
  }
  .footer.content .block_newsletter_wrapper .block_newsletter_below {
    padding: 15px 0px !important;
  }
}
body.customer-account-create fieldset {
  padding-left: 0 !important;
  padding-right: 0 !important;
  width: 100% !important;
}
body.customer-account-create fieldset .field.street label.label_street_2,
body.customer-account-create fieldset .field.street label.label_street_3 {
  position: static !important;
  display: block;
  width: auto;
  height: auto;
  clip: unset;
  margin-bottom: 5px;
}
.breadcrumbs .item {
  color: #00a500;
}
.breadcrumbs .item a {
  color: #00a500 !important;
}
.breadcrumbs .item a:hover {
  background-color: #00a500;
  color: #ffffff !important;
}
.form.create.account fieldset.fieldset.address .street .field.additional.required .label:after {
  content: '*';
  color: #E02B27;
  font-size: 1.2rem;
  margin: 0 0 0 5px;
}
@media only screen and (min-width: 1200px) {
  body.page-products .amslider .container {
    padding-left: 0px;
  }
  body.page-products .amslider .wrapper {
    justify-content: left !important;
  }
  body.page-products .amslider .slide .category-item {
    border: 1px dotted #e5dddd;
    height: 215px;
  }
  body.page-products .amslider .slide .category-item:hover {
    border-color: transparent !important;
    box-shadow: none !important;
  }
  body.page-products .amslider .slide .category-item:hover .product-grid-overlay {
    visibility: visible;
    opacity: 1;
    transition: opacity 0.14s, visibility 0.14s;
  }
  body.page-products .amslider .slide .category-item-title {
    font-size: 13px;
    line-height: 1.2;
    font-family: 'montserrat', 'Open Sans', Helvetica, Arial, sans-serif;
  }
  body.page-products li.item.product.product-item:nth-of-type(7n+7) {
    border-right: 0px;
  }
  body.page-products .column.main {
    width: calc(100% - 320px) !important;
  }
  body.page-products .products-list .product-grid__image-wrapper {
    max-width: 10%;
  }
  body.page-products .products-list .product-item {
    border-right: 0px !important;
    border-width: 0px !important;
    border-bottom: 1px solid #e4e4e4 !important;
    padding: 0px 0;
  }
  body.page-products .products-list .product-item .product-item-name {
    font-size: 16px;
  }
  body.page-products .products-list .product-item .product-item-info {
    padding: 15px 0;
  }
  body.page-products .products-list .product-list-view__right-wrapper .price-box {
    float: left;
  }
  body.page-products .products-list .product-list-view__right-wrapper .price-box .old-price {
    float: none;
  }
  body.page-products .products-list .product-list-view__right-wrapper .price-box .price-container .price {
    font-size: 1.6rem;
  }
  body.page-products .products-list .product-list-view__right-wrapper .product-item-inner {
    display: flex;
    flex-flow: row-reverse;
  }
  body.page-products .products-list .product-list-view__right-wrapper .product-item-inner svg {
    display: none;
  }
  body.page-products .products-list .product-list-view__right-wrapper .product-item-inner .product-item-actions .action.tocart:before {
    content: "" !important;
    background-image: url(/media/wysiwyg/icon-cart.png);
    background-repeat: no-repeat;
    width: 25px;
    height: 23px;
    display: inline-block;
    margin-right: 8px;
  }
}
body.page-products .toolbar-products .modes-mode.active svg {
  fill: #ffffff;
}
body.page-products .filters-action {
  background-color: #00a500;
}
body.page-products .filters-action .hamburger-menu-icon-small span {
  background: #ffffff;
}
body.page-products .filters-action .label {
  color: #ffffff;
}
body.page-products li.item.product.product-item {
  border-right: 1px dotted #d1d1d1;
  border-width: 0px 1px 0px 0px;
}
@media only screen and (max-width: 767px) {
  body.page-products li.item.product.product-item {
    margin-bottom: 30px;
    border-right: 1px dotted #adadad;
  }
}
@media only screen and (max-width: 767px) {
  body.page-products li.item.product.product-item:nth-of-type(2n+2) {
    border-right: 0px;
  }
  body.page-products .product-item .product-item-name {
    max-height: 48px;
    overflow: hidden;
  }
  body.page-products h1#page-title-heading {
    font-size: 26px;
  }
}
@media only screen and (max-width: 1024px) {
  body.page-products .amslider .wrapper {
    justify-content: flex-start !important;
  }
  body.page-products .slide .category-item:hover {
    box-shadow: none;
  }
}
body.page-products .product-item .price-including-tax:after {
  content: "incl. BTW";
  font-size: 9px;
  color: #3d3d3d;
  padding-left: 5px;
}
body.page-products .product-item .old-price .price-wrapper:before {
  content: "Was: ";
  font-size: 12px;
  color: #3d3d3d !important;
}
body.page-products .product-item .old-price .price {
  color: #3d3d3d !important;
  text-decoration: none;
}
body.page-products .product-item .minimal-price-link {
  display: none;
}
body.page-products .skulist {
  padding-bottom: 10px;
  font-weight: 600;
}
body.page-products span.manufacurer-name {
  font-weight: 600;
}
body.page-products .brand-sku {
  display: block;
  min-height: 50px;
  padding-bottom: 10px;
}
body.page-products div#limiter {
  width: 100% !important;
}
body.page-products div#limiter div:hover {
  width: 100%;
}
@media only screen and (max-width: 767px) {
  body.page-products .amslider .wrapper {
    display: inline-block !important;
  }
  body.page-products .amslider .slide {
    max-width: 45% !important;
    display: inline-block !important;
    float: left;
  }
  body.page-products .amslider .children-category-container.container {
    padding-right: 0px;
    padding-left: 0px;
  }
}
body.catalog-product-view .product-info-main {
  box-shadow: 0px 0px 5px 0px #e0e0e0;
  padding: 20px;
  margin-top: 0px;
  background-color: #fafafadd;
}
@media only screen and (max-width: 767px) {
  body.catalog-product-view .product-info-main {
    margin-bottom: 30px;
  }
}
body.catalog-product-view .product-info-main .page-title {
  color: #00a500;
  letter-spacing: 0px;
}
@media only screen and (max-width: 767px) {
  body.catalog-product-view .product-info-main .page-title {
    font-size: 20px;
  }
}
body.catalog-product-view .product-info-main .price-box .price-container {
  display: flex !important;
  flex-wrap: wrap;
  white-space: nowrap;
}
body.catalog-product-view .product-info-main .price-box .price-wrapper {
  font-size: 16px;
}
body.catalog-product-view .product-info-main .price-box .price-wrapper > .price {
  font-size: 2.6rem !important;
  color: #00a500 !important;
  font-weight: 700 !important;
}
body.catalog-product-view .product-info-main .price-box .old-price {
  text-decoration: none;
}
body.catalog-product-view .product-info-main .price-box .old-price .price-wrapper {
  /*
                    span{
                        text-decoration: line-through;
                    }*/
}
body.catalog-product-view .product-info-main .price-box .old-price .price-wrapper .price {
  color: #3d3d3d !important;
}
body.catalog-product-view .product-info-main .price-box .old-price .price-wrapper:before {
  content: "Was: ";
  font-size: 12px;
  color: #3d3d3d;
}
body.catalog-product-view .product-info-main .price-box .old-price .price-including-tax .price {
  color: #3d3d3d !important;
  text-decoration: none;
}
body.catalog-product-view .product-info-main .price-including-tax {
  order: 2;
  width: 100%;
  line-height: unset;
}
body.catalog-product-view .product-info-main .price-including-tax .price {
  font-size: 2.6rem !important;
  color: #00a500 !important;
  font-weight: 700 !important;
}
body.catalog-product-view .product-info-main .price-including-tax:after {
  content: "incl. BTW";
  font-size: 12px;
  color: #3d3d3d;
  padding-left: 5px;
  font-weight: 400;
}
body.catalog-product-view .product-info-main .price-excluding-tax {
  order: 0;
  width: 100%;
  line-height: unset;
}
body.catalog-product-view .product-info-main .price-excluding-tax .price {
  color: #00a500 !important;
  font-size: 2.6rem !important;
  font-weight: 700 !important;
}
body.catalog-product-view .product-info-main .price-excluding-tax .price:after {
  content: "excl. BTW";
  font-size: 12px;
  color: #3d3d3d;
  padding-left: 5px;
  font-weight: 400;
}
body.catalog-product-view .product-info-main .price-excluding-tax:before {
  display: none;
}
body.catalog-product-view .product-info-main .product-info-price {
  display: block;
}
body.catalog-product-view .product-info-main .product-info-stock-sku {
  padding-top: 20px;
}
body.catalog-product-view .product-info-main .product.attribute.sku {
  display: none;
}
body.catalog-product-view .product-info-main .box-tocart .action.tocart svg {
  display: none !important;
}
body.catalog-product-view .product-info-main .box-tocart .action.tocart:before {
  content: "" !important;
  background-image: url(/media/wysiwyg/icon-cart.png);
  background-repeat: no-repeat;
  width: 25px;
  height: 23px;
  display: inline-block;
  margin-right: 8px;
}
body.catalog-product-view .product-info-main a#pc_pdf_link {
  text-align: left !important;
}
body.catalog-product-view .product-info-main ul.product-attributes {
  padding-left: 0px;
  list-style: none;
}
body.catalog-product-view .product-info-main ul.product-attributes li span {
  width: 125px;
  display: inline-block;
  font-weight: 600;
  padding-bottom: 4px;
}
@media only screen and (max-width: 1024px) {
  body.catalog-product-view .product-info-main ul.product-attributes li span {
    width: 18%;
  }
}
@media only screen and (max-width: 767px) {
  body.catalog-product-view .product-info-main ul.product-attributes li span {
    width: 40%;
  }
}
body.catalog-product-view .product-info-main .ox-expand.minimized .ox-expand__inner:before {
  background: linear-gradient(0deg, #fbfbfb 0%, #fbfbfb 10%, #ffffff00 100%);
}
body.catalog-product-view .product-info-main .stock.available,
body.catalog-product-view .product-info-main .stock.unavailable {
  display: inline-block;
  font-weight: 600;
  margin-right: 10px;
  text-transform: inherit;
  vertical-align: top;
  letter-spacing: -0.02em;
  margin-top: 20px;
  font-size: 18px;
}
body.catalog-product-view .product-info-main .amshopby-option-link {
  float: right;
}
@media only screen and (min-width: 1200px) {
  body.catalog-product-view .product-info-main .prices-tier {
    padding: 10px 7px;
  }
}
body.catalog-product-view .product-info-main .prices-tier .price-container.price-tier_price.tax.weee {
  width: 260px;
  display: inline-flex;
}
@media only screen and (max-width: 767px) {
  body.catalog-product-view .product-info-main .prices-tier .price-container.price-tier_price.tax.weee {
    width: 100%;
  }
}
body.catalog-product-view .product-info-main .prices-tier .price-including-tax .price {
  font-size: 1.4rem !important;
  color: #3d3d3d !important;
}
body.catalog-product-view .product-info-main .prices-tier .price-excluding-tax .price {
  font-size: 1.4rem !important;
  color: #3d3d3d !important;
}
body.catalog-product-view .product-description {
  clear: both;
}
body.catalog-product-view .block.related .products-grid .product-item {
  border-right: 1px dotted #d1d1d1;
  border-width: 0px 1px 0px 0px;
}
@media only screen and (min-width: 1200px) {
  body.catalog-product-view .block.related .products-grid .product-item {
    max-width: 16%;
    flex-basis: 16%;
  }
}
body.catalog-product-view .block.related .products-grid .product-item .product-image-wrapper {
  padding-bottom: 80% !important;
}
@media only screen and (max-width: 767px) {
  body.catalog-product-view .block.related .products-grid .product-item {
    max-width: 49% !important;
  }
}
@media only screen and (max-width: 1024px) {
  body.catalog-product-view .block.related .products-grid .product-item {
    max-width: 33%;
  }
}
body.catalog-product-view .block.related .products-grid .product-item .product-item-name {
  height: 75px;
  overflow: hidden;
}
@media only screen and (max-width: 767px) {
  body.catalog-product-view .block.related .products-grid .product-item .product-item-name {
    height: 48px;
  }
}
body.catalog-product-view .block.related .products-grid .product-item .price-including-tax {
  order: 2;
  width: 100%;
  line-height: unset;
}
body.catalog-product-view .block.related .products-grid .product-item .price-including-tax .price {
  color: #00a500 !important;
  font-weight: 700 !important;
}
body.catalog-product-view .block.related .products-grid .product-item .price-including-tax .price:after {
  content: "";
  font-size: 12px;
  color: #3d3d3d;
  padding-left: 2px;
}
body.catalog-product-view .block.related .products-grid .product-item .old-price .price {
  color: #3d3d3d !important;
}
body.catalog-product-view .block.related .block-title strong {
  color: #00a500;
}
body.catalog-product-view .block.related li.item:nth-of-type(6n+6) {
  border-right: 0px;
}
body.catalog-product-view .page-main {
  padding-bottom: 0px;
}
.checkout-cart-index .cart-container .form-cart .action.continue {
  background: #d1d1d1;
}
.checkout-cart-index .cart-container .form-cart .action.continue:hover {
  color: #ffffff;
}
.checkout-cart-index .cart-container .form-cart .action.update {
  background: #d1d1d1;
}
.checkout-cart-index .cart-container .form-cart .action.update:hover {
  color: #ffffff;
}
.checkout-cart-index .cart-container .form-cart tbody.cart.item .price-excluding-tax {
  line-height: 1.5;
}
.checkout-cart-index .cart-container .form-cart tbody.cart.item .price-excluding-tax .price:after {
  display: block;
}
.checkout-cart-index .cart-summary #block-shipping {
  display: none;
}
.checkout-cart-index .cart-summary .discount {
  display: none;
}
.checkout-cart-index .cart-empty .empty-cart-icon:before {
  content: "" !important;
  background-image: url(/media/wysiwyg/icon-cart-sidebar.png);
  background-repeat: no-repeat;
  width: 119px;
  height: 106px;
  display: inline-block;
}
.block-minicart #minicart-content-wrapper .minicart-items .product-item .product-item-name {
  max-width: 100% !important;
  height: auto !important;
  display: block;
}
.block-minicart #minicart-content-wrapper .minicart-items .product-item .product-item-name a {
  font-size: 13px;
  font-weight: 700;
}
.block-minicart #minicart-content-wrapper .minicart-items .product-item-details {
  margin-left: 8px;
}
.block-minicart #minicart-content-wrapper .minicart-items .product-item-details .price-including-tax > span {
  display: inline-block;
}
.price-including-tax:after {
  content: "incl. BTW";
  font-size: 9px;
  color: #3d3d3d;
  padding-left: 5px;
  font-weight: 700;
}
.price-excluding-tax .price {
  font-size: 1.6rem !important;
  font-weight: 700 !important;
}
.price-excluding-tax .price:after {
  content: "excl. BTW";
  font-size: 9px;
  color: #3d3d3d;
  padding-left: 5px;
}
.price-excluding-tax:before {
  display: none;
}
@media only screen and (min-width: 1200px) {
  .block-minicart .ox-overlay-close-btn {
    right: 40px !important;
  }
  .block-minicart .secondary {
    right: -29px;
  }
}
body.checkout-index-index .loading-mask {
  display: none !important;
}
body.checkout-index-index .opc-block-summary .items-in-cart .content {
  display: block !important;
}
body.checkout-index-index .opc-block-summary .items-in-cart .title:after {
  display: none;
}
body.checkout-index-index .opc-block-summary .table-totals .totals-mageworx-fee-summary .amount .price {
  padding-right: 0px;
}
body.checkout-index-index .opc-block-summary .table-totals .totals-mageworx-fee-summary .amount .price:after {
  display: none;
}
body.checkout-index-index .opc-block-summary .table-totals .totals-mageworx-fee-summary .mark,
body.checkout-index-index .opc-block-summary .table-totals .totals-mageworx-fee-summary .amount {
  border-top: 0px;
  border-bottom: 0px;
}
body.checkout-index-index .opc-block-summary .table-totals .totals-mageworx-fee-details {
  display: none !important;
}
body.checkout-index-index aside._show #opc-new-shipping-address {
  display: block !important;
}
@media only screen and (min-width: 1200px) {
  body.checkout-index-index .col.header__content-wrapper {
    padding: 0px 69px 0px 44px;
  }
  body.checkout-index-index .authentication-wrapper {
    right: 70px;
  }
  body.checkout-index-index .page-main {
    padding: 20px 70px 40px 70px;
    max-width: 100% !important;
  }
  body.checkout-index-index .street [name='shippingAddress.street.0'] {
    width: 50% !important;
    display: inline-block !important;
  }
  body.checkout-index-index .street [name='shippingAddress.street.1'] {
    width: 25% !important;
    display: inline-block !important;
  }
  body.checkout-index-index .street [name='shippingAddress.street.2'] {
    width: 25% !important;
    display: inline-block !important;
  }
  body.checkout-index-index .street [name='billingAddressshared.street.0'] {
    width: 50% !important;
    display: inline-block !important;
  }
  body.checkout-index-index .street [name='billingAddressshared.street.1'] {
    width: 25% !important;
    display: inline-block !important;
  }
  body.checkout-index-index .street [name='billingAddressshared.street.2'] {
    width: 25% !important;
    display: inline-block !important;
  }
  body.checkout-index-index .checkout-billing-address [name='billingAddressshared.firstname'] {
    width: 50% !important;
  }
  body.checkout-index-index .checkout-billing-address [name='billingAddressshared.lastname'] {
    width: 50% !important;
  }
}
body.checkout-index-index .opc-wrapper .form fieldset legend.label {
  margin-bottom: 10px !important;
}
body.checkout-index-index .opc-wrapper .form input[type="text"] {
  padding-left: 10px !important;
}
body.checkout-index-index .opc-wrapper .form select {
  padding-left: 10px;
}
body.checkout-index-index .opc-wrapper div#shipping-new-address-form [name='shippingAddress.firstname'] {
  width: 50% !important;
}
body.checkout-index-index .opc-wrapper div#shipping-new-address-form [name='shippingAddress.lastname'] {
  width: 50% !important;
}
body.checkout-index-index .opc-wrapper .opc-wrapper-boxed {
  padding: 0px;
  padding-top: 0px;
  box-shadow: none;
}
body.checkout-index-index .opc-wrapper .opc li {
  box-shadow: none !important;
  border-radius: 0px !important;
}
body.checkout-index-index .opc-wrapper .opc li#step_idin {
  border: 0px;
}
body.checkout-index-index .checkout-agreements-block .action-show {
  vertical-align: middle;
  text-transform: none;
}
body.checkout-index-index .checkout-agreements-block .checkout-agreement input[type="checkbox"] {
  top: 0px;
}
@media only screen and (max-width: 767px) {
  body.checkout-index-index .authentication-wrapper {
    position: relative;
    top: -25px;
    right: 0;
    width: 100%;
    text-align: right;
  }
  body.checkout-index-index .street [name='shippingAddress.street.0'] {
    width: 100% !important;
    display: inline-block !important;
  }
  body.checkout-index-index .street [name='shippingAddress.street.1'] {
    width: 150px !important;
    display: inline-block !important;
  }
  body.checkout-index-index .street [name='shippingAddress.street.2'] {
    width: 150px !important;
    display: inline-block !important;
  }
  body.checkout-index-index .checkout-shipping-address .fieldset div.field {
    width: 100% !important;
  }
}
body.checkout-index-index .opc-estimated-wrapper .minicart-wrapper .action.showcart svg {
  display: none;
}
body.checkout-index-index .opc-estimated-wrapper .minicart-wrapper .action.showcart:before {
  content: "" !important;
  background-image: url(/media/wysiwyg/icon-cart.png);
  background-repeat: no-repeat;
  width: 25px;
  height: 23px;
  display: inline-block;
  margin-right: 8px;
}
@media only screen and (max-width: 767px) {
  body.checkout-index-index .opc-estimated-wrapper .minicart-wrapper .action.showcart {
    padding: 8px;
  }
}
body.checkout-index-index #checkout input[type="radio"] {
  border: 1px solid #00a500;
}
body.checkout-index-index #checkout input[type="radio"]:checked {
  box-shadow: 0 0 0 10px #00a500 inset !important;
}
body.checkout-index-index #checkout input[type="checkbox"] {
  border: 1px solid #00a500;
}
body.checkout-index-index #checkout input[type="checkbox"]:checked {
  box-shadow: 0 0 0 10px #00a500 inset !important;
}
body.checkout-index-index #checkout .block.items-in-cart .title[data-role="title"] strong:after {
  width: 0px;
  height: 0px;
  border-color: #ffffff;
}
body.checkout-index-index #checkout .discount-code {
  display: none;
}
body.checkout-index-index .product-item-details {
  margin-left: 8px;
}
body.checkout-index-index .product-item-details .price-including-tax > span {
  display: inline-block;
}
body.checkout-index-index table.table-checkout-shipping-method .row .col.col-price > .price:after {
  content: "excl. BTW";
  font-size: 9px;
  color: #3d3d3d;
  padding-left: 5px;
}
body.checkout-index-index span.field-tooltip-action.action-help {
  display: none;
}
body.checkout-index-index .payment-option._collapsible.opc-payment-additional.um-ordercomment.comment .payment-option-content {
  display: block !important;
}
body.checkout-index-index .payment-option._collapsible.opc-payment-additional.um-ordercomment.comment .payment-option-title span.action.action-toggle span {
  color: #00a500 !important;
  font-size: 25px !important;
  font-weight: 700 !important;
  letter-spacing: -2px;
  text-transform: none !important;
}
body.checkout-index-index .payment-option._collapsible.opc-payment-additional.um-ordercomment.comment .payment-option-title span.action.action-toggle:after {
  display: none !important;
}
body.checkout-index-index .payment-option._collapsible.opc-payment-additional.um-ordercomment.comment form.form.form-discount.order-comment-form .payment-option-inner .field .label span {
  display: none;
}
body.cms-page-view tr:nth-child(even) {
  background-color: #f3f1f1;
}
body.cms-page-view table td {
  padding-left: 10px;
}
body.cms-page-view table tr {
  padding-left: 10px;
}
@media only screen and (min-width: 1200px) {
  body.cms-page-view .over-ons img {
    height: 422px;
  }
}
@media only screen and (min-width: 1200px) {
  body.account .columns .column.main {
    width: 78.333333%;
  }
  body.account .columns .sidebar-main {
    width: 20.666667%;
  }
  body.account .form-address-edit .field.taxvat {
    width: 45%;
    float: right;
  }
  body.account .form-address-edit .field.country.required {
    width: 50%;
    float: left;
  }
  body.account .form-address-edit .field.city.required {
    width: 45%;
    float: right;
  }
  body.account .form-address-edit .field.zip.required {
    width: 50%;
    float: left;
  }
  body.account .form-address-edit .field.field-name-firstname.required {
    width: 49%;
    float: left;
    margin-right: 9px;
  }
  body.account .form-address-edit .field.field-name-lastname.required input#lastname {
    width: 50%;
  }
  body.account .form-address-edit .field.company {
    width: 49%;
    float: left;
    margin-right: 9px;
  }
  body.account .form-address-edit .field.telephone.required {
    width: 50%;
    float: left;
  }
}
body.account .box-actions .action:hover {
  color: #ffffff;
}
body.account .account-nav .item .delimiter {
  display: none;
}
body.account .account-nav .item a {
  border-bottom: 1px solid #d1d1d1;
  width: 100%;
  line-height: 25px;
}
body.account .account-nav .item a:hover {
  background-color: #00a500;
}
body.account .account-nav .item.current a {
  background-color: #00a500;
}
body.account .account-nav .item.current strong {
  background-color: #00a500;
  width: 100%;
  line-height: 24px;
}
body.account .order-links .item.current strong {
  color: #ffffff;
}
body.account .message.info {
  display: inline-block;
}
.form-address-edit .street .nested .field .label {
  display: block;
  float: none;
  clip: auto;
  overflow: visible;
  position: static !important;
  height: auto;
  width: auto;
  margin-bottom: 4px;
}
.form-address-edit .street .field.additional.required .label:after {
  content: '*';
  color: #E02B27;
  font-size: 1.2rem;
  margin: 0 0 0 5px;
}
.form-create-account .street,
.customer-address-form .street {
  margin-bottom: 0;
}
.form-create-account .street .control,
.customer-address-form .street .control {
  position: relative;
}
.form-create-account .street .control > div.mage-error,
.customer-address-form .street .control > div.mage-error {
  position: absolute;
  left: 0;
  bottom: -75px;
}
.form-create-account .street .control .control div.mage-error,
.customer-address-form .street .control .control div.mage-error {
  bottom: -30px;
}
.form-create-account .street:after,
.customer-address-form .street:after {
  content: '.';
  display: block;
  clear: both;
  width: 0;
  height: 0;
  overflow: hidden;
}
.form-create-account .street #street_1,
.customer-address-form .street #street_1 {
  width: 50%;
  float: left;
}
.form-create-account .street .nested,
.customer-address-form .street .nested {
  width: 45%;
  float: right;
  position: relative;
  top: -32px;
}
.form-create-account .street .nested .field,
.customer-address-form .street .nested .field {
  width: 45%;
  float: left;
}
.form-create-account .street .nested .field:last-child,
.customer-address-form .street .nested .field:last-child {
  width: 45%;
  float: right;
}
.form-create-account .field.gw-euvat-field,
.customer-address-form .field.gw-euvat-field {
  clear: both;
}
.form-create-account .field.gw-euvat-field input,
.customer-address-form .field.gw-euvat-field input {
  width: 100%;
}
.category-description > [data-content-type='row'][data-appearance='contained'] {
  max-width: 100%;
}
.category-description > [data-content-type='row'][data-appearance='contained'] [data-element='inner'] {
  padding: 0!important;
}
@media only screen and (max-device-width: 640px) {
  .pswp__item .video-wrapper iframe {
    left: 15px;
    width: calc(100% - 15px * 2);
  }
}
/*# sourceMappingURL=data:application/json,%7B%22version%22%3A3%2C%22sources%22%3A%5B%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_messages.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_animation.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_slideouts.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_theme.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_ReCaptchaCheckoutSalesRule%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_ReCaptchaCustomer%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_ReCaptchaFrontendUi%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_ReCaptchaNewsletter%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_ReCaptchaReview%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_ReCaptchaSendFriend%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_ReCaptchaWishlist%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_PaymentServicesPaypal%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_mini-cart.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_PaymentServicesPaypal%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_pay-later.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_PaymentServicesPaypal%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_apple-pay.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_PaymentServicesPaypal%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_google-pay.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_Base%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_slick-theme.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_ShopbyBase%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_ShopbyBrand%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FGeissweb_Euvat%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_BannerSlider%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_Athlete2Slideshow%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_Quickview%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_base.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FCeezoo_Custom%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_cart.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_minicart.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_tooltip.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_utilities.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_ProductVideo%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_listings.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_prod_page.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_list_layout.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_CatalogSearch%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Review%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_responsive.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_extends.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_GiftRegistry%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_AdvancedCheckout%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Rma%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Customer%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_PaymentServicesPaypal%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_review.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_GiftMessage%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Paypal%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_billing.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Paypal%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_review.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Bundle%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Wishlist%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_toolbar.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_GiftWrapping%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_MultipleWishlist%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Sales%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_checkout.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_forms.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2F_widgets.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_typography.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_layout.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_layout.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_navigation.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_navigation.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_icons.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2Fvariables%5C%2F_icons.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_forms.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_sections.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_sections.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_typography.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_PageBuilder%5C%2Fcss%5C%2Fsource%5C%2Ftabs%5C%2F_tabs-minimal.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fheader%5C%2F_header_menu.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fheader%5C%2F_header_megamenu.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fheader%5C%2F_header_layout-4.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fheader%5C%2F_header_layout-5.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fheader%5C%2F_header_layout-6.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_header.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_next-prev.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_owl.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fbanners%5C%2F_banners.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fbanners%5C%2F_banner-blocks.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fbanners%5C%2F_banner-grid.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fbanners%5C%2F_banner-animated.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_instagram.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fblog%5C%2F_general.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fblog%5C%2F_page.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fblog%5C%2F_post.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_sticky.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_bnav.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_nav.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_subcategories.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Fcomponents%5C%2F_modals_extend.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_PageBuilder%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_ShopbyBase%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_base.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2F_base.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fcomponents%5C%2F_filter-fly-out.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fcomponents%5C%2F_inputs.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fcomponents%5C%2F_show-button.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fcomponents%5C%2F_loader.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_Shopby%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Ffrontend%5C%2Fcomponents%5C%2F_slider.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_ShopbyBrand%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_brands-list.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_Carousel%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_base.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_Carousel%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_arrows.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_Carousel%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_dots.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_MegaMenu%5C%2Fcss%5C%2Fsource%5C%2Fvariables%5C%2F_variables-desktop.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_MegaMenu%5C%2Fcss%5C%2Fsource%5C%2F_desktop.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_MegaMenu%5C%2Fcss%5C%2Fsource%5C%2Fvariables%5C%2F_variables.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_MegaMenu%5C%2Fcss%5C%2Fsource%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_ProductSlider%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_ProductSlider%5C%2Fcss%5C%2Fsource%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_mixins.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_CatalogEvent%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2Flib%5C%2F_dropdowns.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_estimated-total.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_modals.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_shipping.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_sidebar.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_order-summary.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_authentication.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_payments.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_payment-options.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Checkout%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcheckout%5C%2F_checkout-agreements.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Downloadable%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Invitation%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Reward%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Vault%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Catalog%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_hide_sidebar.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_LayeredNavigation%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Multishipping%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Newsletter%5C%2Fcss%5C%2Fsource%5C%2F_module.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Theme%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_general.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Theme%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_switcher.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Theme%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_footer.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_Theme%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2F_footer-after.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_MegaMenu%5C%2Fcss%5C%2Fsource%5C%2F_extend.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FOlegnax_MegaMenu%5C%2Fcss%5C%2Fsource%5C%2F_base.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_ShopbyBrand%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_brands-filter.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FAmasty_ShopbyBrand%5C%2Fcss%5C%2Fsource%5C%2Fmodule%5C%2Fcomponents%5C%2F_brands-popup.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_header_extend.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_home.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_custom.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_categorie.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_productpage.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_checkout_cart.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_checkout.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_cmsPages.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2Fcss%5C%2Fsource%5C%2F_account.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_PageBuilder%5C%2Fcss%5C%2Fsource%5C%2F_extend.less%22%2C%22%5C%2Fstatic%5C%2Ffrontend%5C%2FOlegnax%5C%2Feijlander%5C%2Fnl_NL%5C%2FMagento_ProductVideo%5C%2Fcss%5C%2Fsource%5C%2F_extend.less%22%5D%2C%22names%22%3A%5B%5D%2C%22mappings%22%3A%22%3B%3B%3B%3BAAoBA%3BEACI%3BIACI%2CWAAW%2CSAAX%3B%3BEAEJ%3BIACI%2CWAAW%2CSAAX%3B%3B%3BAAGR%3BEACI%3BIACI%2CWAAW%2CcAAc%2CSAAzB%3B%3BEAEJ%3BIACI%2CWAAW%2CcAAc%2CSAAzB%3B%3B%3BAAGR%3BEACI%3BIACG%2CWAAW%2CeAAe%2CSAA1B%3B%3BEAEH%3BIACG%2CWAAW%2CeAAe%2CSAA1B%3B%3B%3BAAGP%3BEACI%3BIACG%2CUAAA%3B%3BEAEH%3BIACG%2CUAAA%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BACtCH%3BEACI%2CiCAAA%3B%3BAACA%2CUAAC%3BEACG%2CgCAAA%3B%3BACNZ%3BEACI%3BIAEI%2CeAAA%3B%3BEAEJ%3BIAEI%2CWAAU%2C4BAAV%3B%3B%3BAAGR%3BEACI%3BIAEI%2CeAAA%3B%3BEAEJ%3BIAEI%2CWAAU%2CiBAAV%3B%3B%3BAAGR%3BEACI%3BIAEK%2CeAAA%3B%3BEAEL%3BIAEI%2CWAAU%2CgDAAV%3B%3B%3BAAGR%3BEACI%3BIAEI%2CeAAA%3B%3B%3BAAGR%3BEACI%3BIACI%2CUAAA%3B%3BEAEJ%3BIACI%2CUAAA%3B%3B%3BAAGR%3BEACI%3BIACI%2CUAAA%3B%3B%3BAAGR%3BEACI%3BIACI%2CUAAA%3B%3BEAEJ%3BIACI%2CUAAA%3BIAEA%2CWAAW%2CWAAX%3B%3BEAEJ%3BIACI%2CUAAA%3BIAEA%2CWAAW%2CQAAX%3B%3B%3BAAIR%3BEACI%3BIACI%2CUAAA%3BIACA%2CmBAAA%3BIAEA%2CWAAW%2CQAAX%3B%3BEAEJ%3BIACI%2CUAAA%3BIACA%2CkBAAA%3BIAEA%2CWAAW%2CWAAX%3B%3B%3BAAGR%3BEACI%3BIACI%2CUAAA%3B%3B%3BAAIR%3BEACI%3BIACI%2CUAAA%3B%3BEAEJ%3BIACI%2CUAAA%3B%3B%3BAA8EJ%3BEACI%2CeAAA%3BEACA%2CMAAA%3BEACA%2COAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CUAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3BEACA%2CuBAAA%3B%3BAAZJ%2CSAaM%3BAAbN%2CSAcI%3BEACI%2CoCAAA%3BEACA%2CYAAA%3BEACA%2CaAAA%3BEACA%2CgBAAA%3BEACA%2CiBAAA%3BEACA%2CuDAAA%3BEAEA%2C0BAAA%3BEAEA%2CWAAW%2CWAAX%3B%3BAAEJ%2CSAAC%3BEACG%2CUAAA%3BEAEA%2CwBAAA%3BEACA%2CqCAAA%3BEACA%2C6BAAA%3B%3BAALJ%2CSAAC%2CgBAMK%3BAANN%2CSAAC%2CgBAOG%3BEAEI%2CWAAW%2CQAAX%3BEAEA%2C0BAAA%3B%3BAAGR%2CSAAC%3BEACG%2CoCAAA%3BEACA%2C6BAAA%3B%3B%3BAAIR%2CMACI%2CUACI%3BEACI%2CiCAAA%3BEACC%2CgBAAA%3B%3B%3BAAKb%3BEAWI%2CeAAA%3BEACA%2CMAAA%3BEACA%2CSAAA%3BEACA%2CWAAA%3BEACA%2CWC1JU%2CwBD0JV%3BEACA%2CYAAA%3BEACA%2CYAAA%3BEACA%2C2DAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3BEACA%2C0BAAA%3B%3BAArBJ%2CYAsBM%3BAAtBN%2CYAuBI%3BEACI%2CYAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3B%3BAA1BR%2CYA4BI%3BEACI%2CuBAAA%3BEACA%2CiBAAA%3B%3BAA9BR%2CYAgCI%2C%2BBAA%2BB%3BAAhCnC%2CYAiCI%2C%2BBAA%2BB%3BAAjCnC%2CYAkCI%2CiBAAiB%3BAAlCrB%2CYAmCI%2CgBAAgB%3BEACZ%2CYAAA%3BEACA%2CaAAA%3BEACA%2CsBAAA%3B%3BAAtCR%2CYAwCI%2CeAAiB%3BEApCjB%2COAAA%3BEACA%2CaAAA%3BEACA%2CsBAAA%3BEACA%2CsBAAA%3BEACA%2CWAAW%2CaAAX%3B%3BAARJ%2CYA2CI%2CeAGI%3BAA9CR%2CYA4CI%2CgBAEI%3BAA9CR%2CYA6CI%2CgBACI%3BEA1CJ%2COAAA%3BEACA%2CaAAA%3BEACA%2CsBAAA%3BEACA%2CsBAAA%3BEACA%2CWAAW%2CaAAX%3B%3BAARJ%2CYA2CI%2CeAMI%3BAAjDR%2CYA4CI%2CgBAKI%3BAAjDR%2CYA6CI%2CgBAII%3BEACI%2CcAAA%3BEACA%2CcAAA%3B%3BAAcZ%2CuBACI%3BAADJ%2CuBAEI%3BEAXA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CUAAA%3B%3BAAYA%2CuBAAC%3BEATD%2CgBAAA%3BEAEA%2CWAAU%2CiBAAV%3B%3BAAEJ%2CuBAQI%3BEACI%2COAAA%3BEAEA%2CWAAU%2C4BAAV%3B%3BAAIR%3BEAII%2CQAAA%3BEAEA%2CWAAU%2CWCjOA%2CyBDiOV%3B%3BAACA%2CkBAAC%3BEACG%2C6CAAA%3BEACA%2C6BAAA%3BEACA%2C2BAA2B%2CiCAA3B%3B%3BAAGR%3BEACI%2COAAA%3BEAEA%2CWAAU%2C%2BCAAV%3B%3BAAEJ%3BEACI%2CWAAA%3BEACA%2CeAAA%3BEACA%2CQC%5C%2FOW%2CyBD%2BOX%3BEACA%2CMAAA%3BEACA%2COAAA%3BEAEA%2CWAAU%2CgDAAV%3B%3BAACA%2CgBAAC%3BEACG%2C4CAAA%3BEACA%2C6BAAA%3BEACA%2C2BAA2B%2CiCAA3B%3B%3BAAGR%3BEACI%2CyCAAA%3BEACA%2C6BAAA%3B%3BAAGJ%3BEACI%2C4CAAA%3BEACA%2C6BAAA%3B%3BAAIJ%3BAACA%3BEACI%2CeAAA%3BEACA%2CMAAA%3BEACA%2COAAA%3BEACA%2CYAAA%3BEACA%2CaAAA%3BEACA%2CmCAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CYAAA%3BEACA%2CyCAAA%3BEAEA%2CgCAAA%3B%3BAAEJ%2CkBAEI%3BAADJ%2CeACI%3BAAFJ%2CkBAGI%3BAAFJ%2CeAEI%3BEACI%2CYAAA%3BEACA%2CmBAAA%3B%3BAAGR%2CiBACI%3BAADJ%2CiBAEI%3BEACI%2CuBAAA%3B%3BAAGR%3BEACI%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3B%3BAAEJ%3BEACI%2CkBAAA%3B%3BAAEJ%3BEACI%2CgCAAA%3BEACA%2CeAAA%3BEACA%2CMAAA%3BEACA%2COAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CYAAA%3BEACA%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CcAAA%3BEACA%2CkBAAA%3BEAEA%2CWAAW%2CWAAX%3B%3BAAbJ%2CWAcM%3BAAdN%2CWAeI%3BEACI%2CYAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3B%3BAAEJ%2CWAAC%3BEACG%2CmBAAA%3BEACA%2CuCAAA%3BEACA%2C6BAAA%3B%3BAAEJ%2CWAAC%3BEACG%2CsCAAA%3BEACA%2C6BAAA%3B%3B%3BAAIR%3BEACI%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3BEACA%2CUAAA%3BEACA%2CaAAA%3BEACA%2CWAAA%3BEACA%2CoCAAA%3BEACA%2CuCAAA%3BEACA%2CcAAA%3B%3BAATJ%2CqBAUI%3BEACI%2CqBAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CsBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3B%3BAACA%2CqBAPJ%2CKAOK%3BAACD%2CqBARJ%2CKAQK%3BEACG%2CSAAS%2CEAAT%3BEACA%2CkBAAA%3BEACA%2CWAAA%3BEACA%2CWAAA%3BEACA%2CQAAA%3BEACA%2COAAA%3BEACA%2CgBAAA%3BEACA%2C8BAAA%3BEACA%2CyBAAA%3BEACA%2CUAAA%3BEACA%2C%2BBAAA%3B%3BAAEJ%2CqBArBJ%2CKAqBK%3BEACG%2CWAAW%2CaAAX%3B%3BAAEJ%2CqBAxBJ%2CKAwBK%3BEACG%2CWAAW%2CcAAX%3B%3BAAKZ%2CUACI%3BEACI%2CgBAAA%3B%3BAACA%2CUAFJ%2CsBAEK%3BEACG%2CaAAA%3B%3BAAEJ%2CUALJ%2CsBAKK%3BAACD%2CUANJ%2CsBAMK%3BEACG%2CcAAA%3B%3BAAIZ%2CqBACI%3BEACI%2CWAAA%3BEACA%2CYAAA%3BEACA%2CmBAAA%3BEACA%2CcAAA%3BEACA%2CsCAAA%3B%3BAANR%2CqBACI%2CsBAMI%3BEACI%2CqBAAA%3B%3BAACA%2CqBARR%2CsBAMI%2CKAEK%3BAACD%2CqBATR%2CsBAMI%2CKAGK%3BEACG%2C8BAAA%3B%3BAAGR%2CqBAbJ%2CsBAaK%3BEACG%2CcAAA%3BEACA%2CYC5dH%2CoBD4dG%3B%3BAAQI%2CSAHZ%2CsBACK%2CMACG%2CKACK%3BAACD%2CSAJZ%2CsBACK%2CMACG%2CKAEK%3BEACG%2CWAAW%2CSAAX%3B%3BAA8HxB%2CQAnD0C%3BEACtC%2CuBACI%2CcACI%3BEAFR%2CuBACI%2CcAEI%2CQAAO%3BEAHf%2CuBACI%2CcAGI%2CQAAO%3BIACH%2CuBAAA%3B%3BEAIZ%2CSACM%3BEADN%2CSAEI%3BIACI%2CUAAA%3BIACA%2CWAAA%3B%3BEAKJ%2CIAFA%2CkCAEC%3BEAAD%2CIADA%2CkCACC%3BIACG%2CwBAAA%3B%3BEADJ%2CIAFA%2CkCAEC%2CqBAEG%3BEAFJ%2CIADA%2CkCACC%2CqBAEG%3BEAFJ%2CIAFA%2CkCAEC%2CqBAGG%2CQAAO%3BEAHX%2CIADA%2CkCACC%2CqBAGG%2CQAAO%3BIAGH%2CsBAAA%3B%3BEANR%2CIAFA%2CkCAEC%2CqBAQG%3BEARJ%2CIADA%2CkCACC%2CqBAQG%3BEARJ%2CIAFA%2CkCAEC%2CqBASG%2CSAAQ%3BEATZ%2CIADA%2CkCACC%2CqBASG%2CSAAQ%3BIACJ%2CWAAA%3BIACA%2CgBAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3B%3BEAbR%2CIAFA%2CkCAEC%2CqBAQG%2CmBAMI%3BEAdR%2CIADA%2CkCACC%2CqBAQG%2CmBAMI%3BEAdR%2CIAFA%2CkCAEC%2CqBASG%2CSAAQ%2CMAKJ%3BEAdR%2CIADA%2CkCACC%2CqBASG%2CSAAQ%2CMAKJ%3BIACI%2CuBAAA%3B%3BEAOZ%2CIAFA%2CkCAEC%2CqBACG%2CSAAQ%3BEADZ%2CIADA%2CkCACC%2CqBACG%2CSAAQ%3BIACJ%2CoBAAA%3B%3BEAFR%2CIAFA%2CkCAEC%2CqBAIG%3BEAJJ%2CIADA%2CkCACC%2CqBAIG%3BIACI%2CoBAAA%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BAEzmBhB%2CcACI%3BEACI%2C2BAAA%3B%3B%3B%3B%3B%3BACFR%2CgBAGI%3BAAFJ%2CWAEI%3BAADJ%2CkBACI%3BEACI%2C8BAAA%3B%3B%3B%3B%3B%3BACJR%2CiBAAiB%3BEACb%2CkBAAA%3BEACA%2CcAAA%3BEACA%2CmBAAA%3BEACA%2CgBAAA%3BEACA%2CUAAA%3BEACA%2CUAAA%3BEACA%2CWAAA%3B%3B%3B%3B%3B%3BACFY%2CMAJV%2CWACF%2CiBACI%2COACI%2CSACK%3BEACG%2CaAAA%3B%3B%3B%3B%3B%3BACNpB%2CYACI%3BEACI%2CmBAAA%3B%3B%3B%3B%3B%3BACFR%2CKAAK%2CKAAK%2COAAQ%3BEACd%2CgBAAA%3B%3B%3B%3B%3B%3BACDJ%2CKAAK%2CSAAS%2CMAAO%3BEACjB%2CmBAAA%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BACEI%2CeADJ%2CeACM%2CWACE%3BEACI%2CgBAAA%3B%3BACJhB%3BEACI%2CgBAAA%3B%3BACCI%2CcADA%2CMACI%3BEACA%2CsBAAA%3B%3BAAKZ%3BEACI%2CgBAAA%3B%3BAAIA%2CaAAE%3BEACE%2CgBAAA%3B%3BACdR%3BEACI%2CgBAAA%3B%3BAAEA%2CWAAE%3BEACE%2C8BAAA%3BEACA%2CkCAAA%3BEACA%2C4BAAA%3BEACA%2CwBAAA%3BEACA%2CSAAA%3B%3BAAKJ%2CaAAE%3BEACE%2CmBAAA%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BACOR%3BEACI%3BIACI%2CWAAW%2CsBAAqB%2CSAAhC%3B%3BEAGJ%3BIACI%2CWAAW%2CsBAAqB%2CgBAAhC%3B%3B%3BACAR%3BEAEQ%2CqBAAA%3BEACA%2CsBAAA%3B%3BAAGJ%2CKAAM%3BEACF%2CqBAAA%3B%3BACHR%3BEACI%2CSAAA%3BEACA%2CMAAM%2CgBAAN%3BEACA%2CSAAA%3BEACA%2CSAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3BEACA%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3B%3BAAGJ%3BEAEQ%2CsBAAA%3BEACA%2CqBAAA%3B%3BAAGJ%2CKAAM%3BEACF%2CqBAAA%3B%3BACER%3BEAEQ%2CqBAAA%3BEACA%2CsBAAA%3B%3BAAGJ%2CKAAM%3BEACF%2CqBAAA%3B%3BAChER%2CeACI%3BEACI%2CaAAA%3B%3BAAFR%2CeAII%3BEACI%2CeAAA%3B%3BAC8UR%2CwBAtC2C%3BEAKvB%2C6BAHZ%2CoBACI%2CkBACI%2CyBACK%3BIACG%2CuBAAA%3B%3BEAQJ%2C6BAHX%2CsBACG%2CoBACI%2CkBACK%2CMACG%3BIACQ%2CWAAU%2CUAAV%3B%3BEAUR%2C6BAJf%2CiBACI%2CsBACG%2CoBACI%2CkBACK%2CMACG%3BIACQ%2CWAAU%2CWAAV%3B%3B%3BAChUpC%3BEACI%3BIACI%2CWAAU%2CSAAV%3B%3BEAEJ%3BIACI%2CWAAU%2CSAAV%3B%3B%3BAAGR%3BEACI%3BIACI%2CWAAU%2CSAAV%3B%3BEAEJ%3BIACI%2CWAAU%2CSAAV%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BACOP%2CQAVyC%3BEACtC%2CuBACI%2CcACI%2CIAAG%3B%3B%3BIAGC%2CuBAAA%3B%3B%3BACYhB%2CmBApCsC%3BEACpC%3BIACE%2CwBAAA%3B%3BEAGF%2CGAAG%3BIACD%2CcAAA%3BIACA%2CcAAA%3BIACA%2CeAAA%3BIACA%2CeAAA%3BIACA%2CWAAA%3BIACA%2CgBAAA%3BIACA%2CmBAAA%3BIACA%2CyBAAA%3BIACA%2CaAAA%3B%3BEAEE%2CGAXD%2CqBAUD%2CKACG%3BIACC%2CSAAS%2CEAAT%3BIACA%2CqBAAA%3BIACA%2CsDAAA%3BIACA%2C4BAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CsBAAA%3B%3BEAEF%2CGArBD%2CqBAUD%2CKAWG%2CMAAM%3BIACL%2C4DAAA%3B%3BEAGJ%2CGAzBC%2CqBAyBA%3BIACC%2CcAAA%3B%3B%3BAAKN%3BEACE%2CaAAA%3B%3BAAGF%3BEACE%2CQAAA%3BEACA%2CSAAA%3B%3BAAEA%2CsBAAC%2CQACC%3BEACE%2CcAAA%3B%3BAAFJ%2CsBAAC%2CQAIC%3BEACE%2CWAAW%2CeAAX%3BEACA%2C4BAAA%3BEACA%2CkBAAA%3B%3BAACA%2CsBARH%2CQAIC%2CeAIG%3BEACC%2CWAAA%3B%3BAAEF%2CsBAXH%2CQAIC%2CeAOG%3BEACC%2CmBAAA%3B%3BAAEF%2CsBAdH%2CQAIC%2CeAUG%3BEACC%2CmBAAA%3B%3BAAnBR%2CsBAwBE%3BEACE%2CaAAA%3BEACA%2CeAAA%3BEACA%2COAAA%3BEACA%2CMAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CYAAA%3BEACA%2CsBAAA%3BEACA%2CcAAA%3B%3BAAjCJ%2CsBAoCE%3BEACE%2CeAAA%3BEACA%2COAAA%3BEACA%2CMAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CWAAW%2CmBAAX%3BEACA%2C%2BBAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CsBAAA%3B%3BAA9CJ%2CsBAoCE%2CeAYE%3BEACE%2CkBAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CeAAA%3BEACA%2CUAAA%3BEACA%2CSAAA%3BEACA%2CeAAA%3BEACA%2CWAAA%3B%3BAAKN%2CkBACE%3BEACE%2CeAAA%3B%3BAAFJ%2CkBAIE%3BEACE%2CkBAAA%3B%3BAALJ%2CkBAIE%2CGAEE%3BEACE%2CeAAA%3B%3BAACA%2CkBAJJ%2CGAEE%2CEAEG%3BEACC%2CcAAA%3B%3BAAIJ%2CkBATF%2CGASG%3B%3BEACC%2CcAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3B%3BAAEE%2CkBAdN%2CGASG%2CEAIE%2CMACE%3BEACC%2CSAAS%2CEAAT%3BEACA%2CqBAAA%3BEACA%2C8CAAA%3BEACA%2C4BAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CsBAAA%3B%3BAAGJ%2CkBAxBJ%2CGASG%2CEAeE%2CSACE%3BEACC%2CcAAA%3BEACA%2CkBAAA%3B%3BAAHJ%2CkBAxBJ%2CGASG%2CEAeE%2CSACE%2CKAGC%2CGACE%3BEACE%2CeAAA%3B%3BAANR%2CkBAxBJ%2CGASG%2CEAeE%2CSAUE%3B%3BEAEC%2C6BAAA%3B%3BAACA%2CkBArCR%2CGASG%2CEAeE%2CSAUE%2CMAGE%3BEACC%2CSAAS%2CEAAT%3BEACA%2CqBAAA%3BEACA%2C6CAAA%3BEACA%2C4BAAA%3BEACA%2CWAAA%3BEACA%2CWAAA%3BEACA%2CsBAAA%3B%3BAAnCR%2CkBATF%2CGASG%2CEAuCC%3BEACE%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3B%3BAACA%2CkBApDN%2CGASG%2CEAuCC%2CEAIG%3BEACC%2CyBAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3B%3BAAIN%2CkBA3DF%2CGA2DG%2CIAAI%3B%3BEACH%2CiBAAA%3BEACA%2CkBAAA%3BEACA%2CiBAAA%3B%3BAAHF%2CkBA3DF%2CGA2DG%2CIAAI%2CIAIH%3BEACE%2CeAAA%3BEACA%2CgBAAA%3B%3BAArER%2CkBAIE%2CGAoEE%3BEACE%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CMAAA%3BEACA%2CUAAA%3BEACA%2CcAAA%3BEACA%2CUAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3BEACA%2CyBAAA%3B%3BAAjFN%2CkBAIE%2CGA%2BEE%3BEACE%2CaAAA%3B%3BAACA%2CkBAjFJ%2CGA%2BEE%2CGAEG%3BEACC%2CcAAA%3B%3BACwaR%2CQAbwB%3BEACpB%2CKAAK%3BIACD%2CcAAA%3B%3BEADJ%2CKAAK%2CmBAED%3BIACI%2CWAAA%3BIACA%2CkBAAA%3B%3BEAJR%2CKAAK%2CmBAMD%2CQAAO%3BIACH%2CWAAA%3BIACA%2CWAAA%3B%3B%3BAA%2BLX%2CQAxB6B%2CwBAA0B%3BEACpD%2CeACI%3BIACI%2CmBAAA%3BIACA%2CUAAA%3B%3BEAHR%2CeAKI%3BIACI%2CwBAAA%3BIACA%2CaAAA%3B%3BEAGR%2CcAAc%2CQAAQ%2CKAAM%2CeAAe%2COAEvC%3BEADJ%2CKAAK%2CcACD%3BIACI%2CmBAAA%3B%3BEAHR%2CcAAc%2CQAAQ%2CKAAM%2CeAAe%2COAKvC%2CMAAK%2CcAAe%3BEAJxB%2CKAAK%2CcAID%2CMAAK%2CcAAe%3BIACjB%2CkBAAA%3B%3BEAGP%3BIACI%2CaAAA%3BIACA%2CUAAA%3B%3B%3BAC1uBR%3BEACQ%2CUAAA%3BEACA%2CSAAA%3BEACA%2CSAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3B%3BAAER%3BEACI%2CYAAA%3BEACA%2CcAAA%3BEACA%2CkBAAA%3B%3BAAEJ%3BAACA%3BEACI%2CWAAA%3BEACA%2CYAAA%3BEACA%2CeAAA%3BEACA%2CkBAAA%3BEACA%2CqBAAA%3B%3BAAEA%2CQAAC%3BAAAD%2CSAAC%3BEACG%2CSAAS%2CEAAT%3BEACA%2CWAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CQAAA%3B%3BAAKJ%2CQAAC%3BEACG%2CSAAS%2CEAAT%3BEACA%2CUAAA%3BEACA%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2COAAA%3BEACA%2CQAAA%3B%3B%3B%3B%3B%3B%3BACsHR%2CwBAzB%2BC%3BEAC3C%2CcAAe%3BIACX%2CUAAA%3BIACA%2CYAAA%3BIACA%2CSAAA%3B%3BEAEJ%2CcAAe%2CuBAAsB%3BEACrC%2CcAAe%2CuBAAsB%3BIACjC%2C8BAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2CiBAAA%3BIACA%2CWAAA%3BIACA%2CMAAA%3BIACA%2CQAAA%3B%3BEAEJ%2CcAAe%2CuBAAsB%3BICoGrC%2CyBAAA%3B%3BEDjGA%2CcAAe%2CuBAAsB%3BICiGrC%2C4BAAA%3BID%5C%2FFI%2CQAAA%3B%3B%3BAEhGR%2CwBAPA%2C8BACA%2C8BAA6B%3BEACzB%3BIACI%2CYAAA%3BIACA%2CUAAA%3B%3B%3BACpGR%3BEACI%3BIACG%2CWAAW%2CiBAAiB%2CgBAA5B%3BIACA%2CUAAA%3B%3BEAEH%3BIACG%2CWAAW%2CgBAAgB%2CgBAA3B%3BIACA%2CUAAA%3B%3B%3BAAGP%3BEACI%3BIACI%2CWAAW%2CgBAAgB%2CgBAA3B%3BIACA%2CUAAA%3B%3BEAEJ%3BIACG%2CWAAW%2CiBAAiB%2CgBAA5B%3BIACA%2CUAAA%3B%3B%3BACo3CN%2CwBAjB2C%2CwBAAwB%3BEAChE%3BEACA%3BEACA%3BIACI%2CyBAAA%3B%3BEAHJ%2CkBAII%2CQAAO%3BEAHX%2CuBAGI%2CQAAO%3BEAFX%2CqBAEI%2CQAAO%3BEAJX%2CkBAKI%2CQAAO%3BEAJX%2CuBAII%2CQAAO%3BEAHX%2CqBAGI%2CQAAO%3BIACH%2COAAO%2CwBAAP%3B%3BEAGR%2CMAAM%3B4BAEF%2CYAAW%3BIACP%2CqBAAA%3BIACA%2CoBAAA%3B%3B%3BACxwCZ%2CwBAb0C%2CuBAAsB%3BEAC5D%2CaAAc%2CkCAAkC%2CmBAAmB%3BIAC%5C%2FD%2CoBAAA%3B%3BEADJ%2CaAAc%2CkCAAkC%2CmBAAmB%2CQAE%5C%2FD%3BIACI%2CaAAA%3B%3B%3BAA4CZ%2CwBAnC%2BC%2CwBAA2B%3BEACtE%2CcACI%3BIACI%2CcAAA%3B%3BEACA%2CcAFJ%2CmBAEK%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CWAAA%3B%3BEANZ%2CcASI%3BIACI%2CqBAAA%3BIACA%2CeAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3B%3BEAbR%2CcAeI%2CcAAc%3BIACV%2CWAAA%3BIACA%2CqBAAA%3BIACA%2CiBAAA%3BIACA%2CiBAAA%3B%3BEAnBR%2CcAeI%2CcAAc%2CkCAKV%3BIACI%2CiBAAA%3B%3BEArBZ%2CcAeI%2CcAAc%2CkCAKV%2CmBAEI%3BIACI%2CqBAAA%3B%3BEAvBhB%2CcA2BI%3BIACQ%2CqBAAA%3BIACA%2CWAAA%3B%3B%3BACkChB%2CyBAA0B%3BEACzB%2CaAAA%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BACo1BA%2CQArC6B%2CwBAA0B%3BEAEhD%2CgCAAC%2CUAEG%3BEADJ%2CgCAAC%2CUACG%3BIACI%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2CaAAA%3B%3BEALR%2CgCAAC%2CUAOG%3BEANJ%2CgCAAC%2CUAMG%3BIACI%2CkBAAA%3B%3BEARR%2CgCAAC%2CUAOG%2CmBAEI%3BEARR%2CgCAAC%2CUAMG%2CmBAEI%3BIACI%2CiBAAA%3BIACA%2CYAAA%3B%3BEAXZ%2CgCAAC%2CUAcK%3BEAbN%2CgCAAC%2CUAaK%3BIACE%2CkBAAA%3B%3BEAfR%2CgCAAC%2CUAiBG%2CgBAAgB%3BEAhBpB%2CgCAAC%2CUAgBG%2CgBAAgB%3BIACZ%2CmBAAA%3B%3BEAlBR%2CgCAAC%2CUAoBK%2CMAAG%3BEAnBT%2CgCAAC%2CUAmBK%2CMAAG%3BIACD%2CeAAA%3B%3BEArBR%2CgCAAC%2CUAuBG%2CwBACI%2CQAAO%3BEAvBf%2CgCAAC%2CUAsBG%2CwBACI%2CQAAO%3BIACH%2CkBAAA%3B%3BEAMhB%3BIACI%2CgBAAA%3BIACA%2CkBAAA%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BACz8BJ%2CgBALsC%3BEC4BtC%2CiCAxBA%3BEC0JA%2C0BACI%2CcD3JJ%3BIACI%2CWAAA%3BIACA%2CWAAA%3BIACA%2CiBAAA%3B%3BEAEA%2CiCALJ%2CGAKK%3BECqJL%2C0BACI%2CcD3JJ%2CGAKK%3BIACG%2CSAAS%2CIAAT%3B%3BEAkBR%2CiCAdA%3BECgJA%2C0BACI%2CcDjJJ%3BIACI%2CqBAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3B%3BEA%2BBJ%3BIACI%2CWAAA%3B%3BEA4BJ%3BEEoBA%2COACI%2CgBACI%2CeAGI%3BEC3BZ%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%3BEC8vBhB%2CQAWI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%3BIJ%5C%2FxBhB%2CYAAA%3B%3BEAEA%2CoBAAC%2CUAAU%3BEE%2BBX%2COACI%2CgBACI%2CeAGI%2CKFpCX%2CUAAU%3BEGSX%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKHff%2CUAAU%3BEI6wBX%2CQAWI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKJ7xBf%2CUAAU%3BIACP%2CWAAA%3BIACA%2CWAAA%3B%3BEAGJ%2CoBAAC%2CUAAU%3BEE0BX%2COACI%2CgBACI%2CeAGI%2CKF%5C%2FBX%2CUAAU%3BEGIX%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKHVf%2CUAAU%3BEIwwBX%2CQAWI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%2CKJxxBf%2CUAAU%3BIACP%2CYAAA%3B%3BEA0OJ%3BEKrNI%2COAAO%2CKAAM%2CyBACT%3BEhB4jBA%2COAAO%2CKAAM%2CcADjB%3BEiB9ZJ%2CaAEI%3BEADJ%2CKAAK%2CcAAe%2CcAChB%3BELvFA%2COAAO%2CKAAM%2CiCACT%3BEMlNR%2CmBACI%2CUAAU%3BEADd%2CmBAEI%3BECsFA%2COAAO%2CKAAM%2CeACT%3BECqKR%2CyBACI%2CQAAO%3BECyHX%2CqBASI%2CMACI%2CqBACI%3BIVhDZ%2CcAAA%3B%3BEAyCA%3BIACI%2CkBAAA%3BIACA%2CQAAA%3B%3BEAiBJ%3BIR7HA%2CkBAAA%3B%3BEQmLA%3BEW5FA%3BEPqkBA%3BIZx6BA%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAiBA%2CyBAAC%3BEACD%2CyBAAC%3BEamFD%2CwBAKI%2CebzFH%3BEaoFD%2CwBAKI%2CebxFH%3BEaoID%2CiCbrIC%3BEaqID%2CiCbpIC%3BEa0JD%2CkBb3JC%3BEa2JD%2CkBb1JC%3BEU6FD%2CkBAWI%2CeVzGH%3BEU8FD%2CkBAWI%2CeVxGH%3BEU6GD%2COACI%2CgBACI%2CeVhHP%3BEU8GD%2COACI%2CgBACI%2CeV%5C%2FGP%3BEHipBD%2CeGlpBC%3BEHkpBD%2CeGjpBC%3BES0KD%2C0BACI%2CcT5KH%3BES2KD%2C0BACI%2CcT3KH%3BEoByLD%2CcACI%2CQpB3LH%3BEoB0LD%2CcACI%2CQpB1LH%3BEoB%2BLD%2CMACI%2CeACI%2CSpBlMP%3BEoBgMD%2CMACI%2CeACI%2CSpBjMP%3BEqB6VD%2C0BrB9VC%3BEqB8VD%2C0BrB7VC%3BEgBoCD%2CcAKI%2CehB1CH%3BEgBqCD%2CcAKI%2CehBzCH%3BEWuFD%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeX3FX%3BEWwFD%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeX1FX%3BEY8wBD%2CgBZ%5C%2FwBC%3BEY%2BwBD%2CgBZ9wBC%3BEY21BD%2CQAWI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeZz2BX%3BEY41BD%2CQAWI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeZx2BX%3BEYm3BD%2CqBACI%2COAAM%2CUZr3BT%3BEYo3BD%2CqBACI%2COAAM%2CUZp3BT%3BEsBqmBD%2CYtBtmBC%3BEsBsmBD%2CYtBrmBC%3BEsBorBD%2CQAII%2CQAAO%2CKAAM%2COAAM%2CyBtBzrBtB%3BEsBqrBD%2CQAII%2CQAAO%2CKAAM%2COAAM%2CyBtBxrBtB%3BEsBqrBD%2CuBAGI%2CQAAO%2CKAAM%2COAAM%2CyBtBzrBtB%3BEsBsrBD%2CuBAGI%2CQAAO%2CKAAM%2COAAM%2CyBtBxrBtB%3BEsBsrBD%2CiBAEI%2CQAAO%2CKAAM%2COAAM%2CyBtBzrBtB%3BEsBurBD%2CiBAEI%2CQAAO%2CKAAM%2COAAM%2CyBtBxrBtB%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CyBAAC%3BEa8ED%2CwBAKI%2CebnFH%3BEa%2BHD%2CiCb%5C%2FHC%3BEaqJD%2CkBbrJC%3BEUwFD%2CkBAWI%2CeVnGH%3BEUwGD%2COACI%2CgBACI%2CeV1GP%3BEH4oBD%2CeG5oBC%3BESqKD%2C0BACI%2CcTtKH%3BEoBoLD%2CcACI%2CQpBrLH%3BEoB0LD%2CMACI%2CeACI%2CSpB5LP%3BEqBwVD%2C0BrBxVC%3BEgB%2BBD%2CcAKI%2CehBpCH%3BEWkFD%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeXrFX%3BEYywBD%2CgBZzwBC%3BEYs1BD%2CQAWI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeZn2BX%3BEY82BD%2CqBACI%2COAAM%2CUZ%5C%2F2BT%3BEsBgmBD%2CYtBhmBC%3BEsB%2BqBD%2CQAII%2CQAAO%2CKAAM%2COAAM%2CyBtBnrBtB%3BEsBgrBD%2CuBAGI%2CQAAO%2CKAAM%2COAAM%2CyBtBnrBtB%3BEsBirBD%2CiBAEI%2CQAAO%2CKAAM%2COAAM%2CyBtBnrBtB%3BIACG%2CWAAA%3B%3BEQ%2BeJ%3BEc%2BLA%2CQAII%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BEALpC%2CuBAGI%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BEAJpC%2CiBAEI%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BId%5C%2FMpC%2CsBAAA%3B%3BEAsBA%3BEe%5C%2FPA%3BIfyOA%2CsBAAA%3B%3BEAgCA%2C8BACI%2CUACM%3BEAFV%2C8BACI%2CUAEI%2CQAAU%3BIR3RlB%2CgBAAA%3B%3BEwBulBA%2C8BhB9TI%2CUACM%2CSgB6TT%2CIAAI%2CSACC%3BEADN%2C8BhB9TI%2CUAEI%2CQAAU%2CSgB4TjB%2CIAAI%2CSACC%3BIACE%2CuBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIA4FR%2CgBAAA%3BIANA%2CUAAA%3B%3BEA1FA%2C8BhB9TI%2CUACM%2CSgB6TT%2CIAAI%2CSAeC%3BEAfN%2C8BhB9TI%2CUAEI%2CQAAU%2CSgB4TjB%2CIAAI%2CSAeC%3BIACE%2CWAAA%3BIACA%2CWAAA%3B%3BEhBhVR%2C8BACI%2CUACM%2CSgB0NR%3BEhB5NF%2C8BACI%2CUAEI%2CQAAU%2CSgByNhB%3BIxBpfF%2CeAAA%3BIwBwfI%2CqBAAA%3B%3BEA6HA%2C8BhB5VA%2CUACM%2CSgByVT%2COAEI%3BEAAD%2C8BhB5VA%2CUAEI%2CQAAU%2CSgBwVjB%2COAEI%3BEAAD%2C8BhB5VA%2CUACM%2CSgB0VT%2CSACI%3BEAAD%2C8BhB5VA%2CUAEI%2CQAAU%2CSgByVjB%2CSACI%3BIACG%2CaAAA%3B%3BEhBxVI%2C8BALR%2CUACM%2CSAIG%2CIAAI%2CcAAc%3BEAAnB%2C8BALR%2CUAEI%2CQAAU%2CSAGL%2CIAAI%2CcAAc%3BIACf%2CgBAAA%3B%3BEAgXhB%3BEiB30BA%2CQAAS%2COAAM%2COAAQ%2COACnB%2CMAAK%2CIAAI%2CkBAAkB%2CIAAI%3BIjB0zBnC%2CaAAA%3B%3BEAwKA%3BEE77BA%3BEIiLA%2CeACI%3BIN4wBA%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAHJ%2CgCAKI%3BEEl8BJ%2CkBFk8BI%3BEMjxBJ%2CeACI%2CgBNgxBA%3BIACI%2CiBAAA%3B%3BEAIA%2CgCADJ%2CQACK%3BEACD%2CgCAFJ%2CQAEK%3BEEx8BT%2CkBFs8BI%2CQACK%3BEEv8BT%2CkBFs8BI%2CQAEK%3BEMvxBT%2CeACI%2CgBNoxBA%2CQACK%3BEMtxBT%2CeACI%2CgBNoxBA%2CQAEK%3BIACG%2CcAAA%3B%3BEAGJ%2CgCANJ%2CQAMK%3BEE58BT%2CkBFs8BI%2CQAMK%3BEM3xBT%2CeACI%2CgBNoxBA%2CQAMK%3BIACG%2CWAAA%3B%3BEkBxSR%2CCADH%2CkBACI%3BIACG%2CUAAA%3B%3BEAGR%3BIACI%2CWAAA%3B%3BEAEJ%2CiBACI%3BEADJ%2CiBAEM%3BIACE%2CkBAAA%3B%3BEAGR%3BIACI%2CoBAAA%3B%3BEAEJ%3BI1B%5C%2FhBA%2CmBAAA%3B%3BE0BoiBI%2CEAAC%3BEAAD%2CGAAC%3BEAAD%2CEAAC%3BEAAD%2CGAAC%3BIACG%2CeAAA%3B%3BEAIJ%2CEAAC%3BEAAD%2CGAAC%3BIACG%2CeAAA%3B%3BEAEJ%2CEAAC%3BEAAD%2CGAAC%3BIACG%2CeAAA%3B%3BEClbR%3BIACI%2CgBAAA%3B%3BEAEJ%3BIACI%2CeAAA%3B%3BEAEJ%3BIACI%2CmBAAA%3B%3BEAEJ%3BIACI%2CkBAAA%3B%3BEAEJ%3BIACI%2CmBAAA%3B%3BEAEJ%3BIACI%2CkBAAA%3B%3BEAEJ%3BIACI%2CaAAA%3B%3BEAEJ%3BIACI%2CuBAAA%3B%3BEAEJ%3BIACI%2CiBAAA%3B%3BEAGJ%3BEACA%3BEACA%3BEACA%2CYAAa%2CQAAO%3BEACpB%2COAAO%3BEACP%2COAAO%3BEACP%2CaAAgB%3BEAChB%2CMAAM%2CSAAS%3BEACf%3BEACA%3BIACI%2CsBAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3BIACA%2CmBAAA%3BIAEA%2CWAAA%3B%3BEAEJ%2CgBAAiB%3BIACb%2CUAAA%3B%3BEAEJ%3BIACI%2CWAAA%3BIAEA%2CYAAA%3BIACA%2CcAAA%3BIACA%2CgBAAA%3B%3BEAEA%2CIAAK%3BIACD%2CWAAA%3B%3BEAKJ%2CwBAAC%2CqBACG%3BEADJ%2C8BAAC%2CqBACG%3BIACI%2CkBAAA%3BIACA%2CmBAAA%3B%3BEAIZ%3BIACI%2CcAAA%3B%3BECxbA%2CCAAC%2CmBAAwB%2CQD2btB%3BI3BrMP%2CWAAA%3BIAgKA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BE4BrZL%2CCAAC%2CoBAAyB%2CQDwbvB%3BI3BrMP%2CmBAAA%3BI4B9KA%2CqBAAA%3BI5B8UA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BE4BlZL%2CCAAC%2CyBAA%2BB%2CQDqb7B%3BI3BrMP%2CmBAAA%3BI4BlLA%2CYAAA%3BI5BkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BE4B%5C%2FYL%2CCAAC%2C0BAAgC%2CQDkb9B%3BI3BrMP%2CmBAAA%3BI4BtLA%2CWAAA%3BI5BsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BE2ByCT%3BIAEI%2CmBAAA%3B%3BECpbA%2CCAAC%2CoBAAyB%3BI5BuO9B%2CmBAAA%3BI4BtLA%2CWAAA%3BI5BsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BE4BtYL%2CCAAC%2CyBAA%2BB%3BI5BoOpC%2CmBAAA%3BI4BtLA%2CWAAA%3BI5BsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BE4BnYL%2CCAAC%2C0BAAgC%3BI5BiOrC%2CmBAAA%3BI4BtLA%2CWAAA%3BI5BsVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BE2B%2BCT%3BIAEI%2CYAAA%3BIACA%2CkBAAA%3B%3BEC%5C%2FaA%2CCAAC%2CoBAAyB%3BI5B2N9B%2CmBAAA%3BI4BlLA%2CYAAA%3BI5BkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BE4B1XL%2CCAAC%2CyBAA%2BB%3BI5BwNpC%2CmBAAA%3BI4BlLA%2CYAAA%3BI5BkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BE4BvXL%2CCAAC%2C0BAAgC%3BI5BqNrC%2CmBAAA%3BI4BlLA%2CYAAA%3BI5BkVA%2CiBAAA%3BIACC%2CgBAAA%3BIACQ%2CQAAA%3B%3BE2BsDT%2C0BACI%3BIACI%2CWAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3B%3BEALR%2C0BAOI%3BIACK%2CmBAAA%3B%3BEAGT%2C2BACI%3BIACI%2CgBAAA%3BIACA%2CkBAAA%3B%3BEAHR%2C2BAKI%3BIACI%2CkBAAA%3BIACA%2CgBAAA%3B%3BEAGR%2CqBACI%2CQAAO%3BIACH%2CyBAAA%3B%3BEAFR%2CqBAII%3BEAJJ%2CqBAKI%3BIACI%2CYAAA%3B%3BEANR%2CqBAQI%3BIACI%2CkBAAA%3B%3BEATR%2CqBAWI%3BIACI%2CmBAAA%3B%3BEAGR%2C2BAEI%2CQAAO%3BEADX%2C0BACI%2CQAAO%3BIACH%2CyBAAA%3B%3BEAHR%2C2BAKI%3BEAJJ%2C0BAII%3BEALJ%2C2BAMI%3BEALJ%2C0BAKI%3BIACI%2CYAAA%3B%3BEAGR%2CMAAM%3BIACF%2CkBAAA%3B%3BEAGA%2C8BAEI%3BEADJ%2C8BAAC%2CsBACG%3BIACI%2CUAAA%3BIACA%2CeAAA%3B%3BEAIZ%2C4BACI%3BIACI%2CwBAAA%3BIACA%2CgCAAA%3BIACA%2C8BAAA%3B%3BEAJR%2C4BACI%2C8BAII%3BIACI%2CeAAA%3BIACA%2CmBAAA%3B%3BEAIZ%3BIACI%2CmBAAA%3B%3BEAEJ%3BIACI%2CgBAAA%3B%3BEAII%2CaADH%2CsBACI%2C0BACG%3BEADJ%2CaADH%2CsBACI%2C0BAEG%3BIACI%2CkBAAA%3BIACA%2CmBAAA%3B%3BEAIR%2CaATH%2CsBASI%2C2BACG%3BEADJ%2CaATH%2CsBASI%2C2BAEG%3BIACI%2CmBAAA%3BIACA%2CkBAAA%3B%3BEAIR%2CaAjBH%2CsBAiBI%2CqBACG%3BIACI%2CkBAAA%3B%3BEAFR%2CaAjBH%2CsBAiBI%2CqBAKG%3BIACI%2CmBAAA%3B%3BEAKhB%3BIACI%2CYAAA%3B%3BEADJ%2CyBAEM%3BIACE%2COAAA%3B%3BEtD5YR%2CkBACI%2CMAAK%3BIACD%2CeAAA%3BIACA%2CUAAA%3BIACA%2CUAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3B%3BEAPR%2CkBACI%2CMAAK%2CSAOD%3BIACI%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CkDAAA%3BIACA%2CmBAAA%3B%3B%3BEAZZ%2CkBACI%2CMAAK%2CSAOD%2CSAMI%3BIACI%2CcAAA%3BIACA%2CqBAAA%3BIACA%2C6BAAA%3B%3BEAjBhB%2CkBACI%2CMAAK%2CSAmBD%3BIACI%2CaAAA%3BIACA%2CUAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CSAAA%3BIACA%2CYAAA%3B%3BEA3BZ%2CkBACI%2CMAAK%2CSAmBD%2CsBAQI%3BIACI%2CWAAA%3BIACA%2CYAAA%3B%3BEwD2UhB%3BEACA%3BIACI%2CWAAA%3BIACA%2CaAAA%3B%3BEAEJ%3BEACA%3BIACI%2CuBAAA%3B%3BEAGJ%3BIACI%2CcAAA%3BIACA%2CgBAAA%3BIACA%2CmBAAA%3B%3BEAGJ%3BIACI%2CaAAA%3B%3BEAGJ%3BIACI%2CyBAAA%3B%3BEAGJ%2C0BAA6B%3BIACzB%2CaAAA%3B%3BEAGJ%2C0BACM%3BIACE%2CcAAA%3B%3BECvUR%3BI9BSA%2CuBAAA%3BIAAA%2CeAAA%3BIAAA%2CgBAAA%3BI8BJI%2CeAAA%3BIACA%2CUAAA%3BIACA%2CiBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEAEA%2CWAAC%3BIACG%2CaAAA%3B%3BEAfR%2CWAkBI%3BIACI%2CaAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3B%3BEAtBR%2CWAyBI%2CGAAE%3BI9BhBN%2CgBAAA%3B%3BE8BTA%2CWA6BI%2CGAAE%3BIACE%2CkBAAA%3B%3BEA9BR%2CWAiCI%3BI9BxBJ%2CiBAAA%3BI8B0BQ%2CqBAAA%3BIACA%2CkBAAA%3B%3BEAEA%2CWALJ%2CQAKK%3BIACG%2CeAAA%3BIACA%2CgBAAA%3B%3BEAIA%2CWAXR%2CQAUK%2CMACI%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3BIACA%2CUAAA%3BIACA%2CWAAA%3BIACA%2CQAAQ%2CgBAAR%3BIACA%2CUAAA%3B%3BEApDhB%2CWAiCI%2CQAuBM%3BI9B%5C%2FCV%2CcAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CqBAAA%3BI8BsDY%2CsBAAA%3BIACA%2CkBAAA%3BIACA%2CqBAAA%3B%3BEAEA%2CWAlCR%2CQAuBM%2CaAWG%3BEAAQ%2CWAlCjB%2CQAuBM%2CaAWY%3BI9B1DtB%2CcAAA%3BIAAA%2CqBAAA%3B%3BE8BkEQ%2CWA1CJ%2CQA0CK%2COAEK%3BEADN%2CWA3CJ%2CQA2CK%2CWACK%3BI9BpEd%2CeAAA%3BIAAA%2CcAAA%3BIAAA%2CqBAAA%3BI8B2EgB%2CqBAAA%3B%3BEAIR%2CWAvDJ%2CQAuDK%2COAAO%2CMAAS%3BIACb%2C4BAAA%3B%3BEAGJ%2CWA3DJ%2CQA2DK%2COACK%3BIACE%2CmBAAA%3B%3BEAFR%2CWA3DJ%2CQA2DK%2COACK%2CaAGI%3BIACE%2CkBAAA%3BIACA%2CQAAA%3BI9BzFpB%2CqBAAA%3BI%2BBhOA%2CqBAAA%3B%3BEDmTQ%2CWA3DJ%2CQA2DK%2COACK%2CaAGI%2CgBCnGhB%3BI%5C%2FBhQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BE%2BB2CA%2CWDkPI%2CQA2DK%2COACK%2CaAGI%2CgBCjTjB%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BI%5C%2FB9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSgC9NQ%2COhC8NR%3BIAAA%2CaxBlLQ%2CUwBkLR%3BIAAA%2CsBAAA%3BI%2BBqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEDlFA%2CWAiCI%2CQA8EI%3BI9BtGR%2CgBAAA%3BIAAA%2CgDAAA%3BIAAA%2CeAAA%3BIAAA%2CgBAAA%3BIAAA%2CgBAAA%3BIAAA%2CeAAA%3BI8B8GY%2CaAAA%3BIACA%2COAAA%3BIACA%2CoBAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3BI9BlHZ%2CiBAAA%3B%3BE8BTA%2CWAiCI%2CQA8EI%2CSAwKF%3BI9B9QN%2CgBAAA%3B%3BE8BiRQ%2CWAzPJ%2CQA8EI%2CSAwKF%2CKAGG%3BI9BnOT%2C8BAAA%3BIACA%2CSAAA%3BIACA%2CQAAA%3BIAhDA%2CyBAAA%3BIAAA%2CWAAA%3BIAAA%2CUAAA%3BIAAA%2CUAAA%3BI8BsRY%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEA9JA%2CWApGR%2CQA8EI%2CSAsBK%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIACA%2COAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3B%3BEA7IhB%2CWAiCI%2CQA8EI%2CSAiCI%3BIACI%2CcAAA%3BIACA%2CoBAAA%3BI9BzIhB%2CuBAAA%3BIAAA%2CcAAA%3BIAAA%2CYAAA%3B%3BE8BgJgB%2CWAxHZ%2CQA8EI%2CSAiCI%2CEASK%3BEACD%2CWAzHZ%2CQA8EI%2CSAiCI%2CEAUK%3BI9BjJjB%2CmBAAA%3BIAAA%2CcAAA%3BIAAA%2CqBAAA%3B%3BE8BTA%2CWAiCI%2CQA8EI%2CSA4DI%3BIACI%2CSAAA%3BIACA%2CqBAAA%3B%3BEA7KhB%2CWAiCI%2CQA8EI%2CSAiEI%3BIACI%2CqBAAA%3BIACA%2CWAAA%3B%3BEAlLhB%2CWAiCI%2CQA8EI%2CSAsEI%3BIACI%2CSAAA%3BIACA%2CkBAAA%3B%3BEAEA%2CWAxJZ%2CQA8EI%2CSAsEI%2CGAIK%2COACK%2CIACI%3BIACE%2CkBAAA%3BIACA%2CUAAA%3BI9BpL5B%2CqBAAA%3BI%2BBhOA%2CqBAAA%3B%3BEDgZgB%2CWAxJZ%2CQA8EI%2CSAsEI%2CGAIK%2COACK%2CIACI%2CgBC9LxB%3BI%5C%2FBhQF%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BE%2BB2CA%2CWDkPI%2CQA8EI%2CSAsEI%2CGAIK%2COACK%2CIACI%2CgBC5YzB%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BI%5C%2FB9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSgCxPQ%2COhCwPR%3BIAAA%2CaxBlLQ%2CUwBkLR%3BIAAA%2CsBAAA%3BI%2BBqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BED0HQ%2CWA3KJ%2CQA2KK%3BIACG%2CkBAAA%3BI9BpMZ%2CqBAAA%3BI%2BBhOA%2CqBAAA%3B%3BEAMA%2CWDkPI%2CQA2KK%2CKC7ZR%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BI%5C%2FB9DA%2CeAAA%3BIAAA%2CoBAAA%3BIAAA%2CcAAA%3BIAAA%2CSgCzPgB%2COhCyPhB%3BIAAA%2CaxBlLQ%2CUwBkLR%3BIAAA%2CsBAAA%3BI%2BBqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEDkIY%2CWAnLR%2CQA2KK%2CKAQI%3BIACG%2CaAAA%3B%3BEAGJ%2CWAvLR%2CQA2KK%2CKAYI%3BIACG%2CeAAA%3BIACA%2CiBAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAGJ%2CWA9LR%2CQA2KK%2CKAmBI%2CMAAS%3BIACN%2C4BAAA%3B%3BEApBR%2CWA3KJ%2CQA2KK%2CKAuBG%3BIACI%2CcAAA%3B%3BED0GJ%2CWADR%2CQACS%2COACK%3BIACE%2CkBAAA%3B%3BEAFR%2CWADR%2CQACS%2COACK%2CaAEK%3BIACC%2CuBAAA%3B%3BEAMxB%2CWAAY%2CQAAQ%2CSAAS%2CGAAE%2COAAU%2CIAAI%3BIACzC%2CUAAA%3BIACA%2CWAAA%3BIACA%2CQAAA%3BIACA%2CWAAW%2CgBAAX%3B%3BEAlnBA%2CWA8mBQ%2CQAAQ%2CSAAS%2CGAAE%2COAAU%2CIAAI%2CgBA9mBxC%3BIACG%2CSAAS%2CEAAT%3BIACA%2CkBAAA%3BIACA%2CQAAA%3BIACA%2CQAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3BIACA%2CWAAA%3BIACA%2CqCAAA%3B%3BEAEJ%2CWAomBQ%2CQAAQ%2CSAAS%2CGAAE%2COAAU%2CIAAI%2CgBApmBxC%3BIACG%2CSAAS%2CEAAT%3BIACA%2CkBAAA%3BIACA%2CUAAA%3BIACA%2CMAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3BIACA%2CWAAA%3BIACA%2CqCAAA%3B%3BEAmmBR%2CMAAM%2COACF%3BEADJ%2CMAAM%2COAEF%3BIACI%2CqBAAA%3B%3BEIjRR%3B%3B%3B%3B%3BEAAA%2CSAKM%3B%3BIAEE%2CgBAAA%3B%3BECzQR%2CQAAQ%2CKAAK%3BICrGb%2CkBAAA%3BIACA%2CUAAA%3B%3BEnC0CA%2CQkC0DQ%2CKAAK%2CMlC1DZ%3BEACD%2CQkCyDQ%2CKAAK%2CMlCzDZ%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CQkCoDQ%2CKAAK%2CMlCpDZ%3BIACG%2CWAAA%3B%3BEkCmDJ%2CQAAQ%2CKAAK%2CMClGX%2CQAAK%3BIACH%2CWAAA%3BIACA%2CWAAA%3B%3BEDgGJ%2CQAAQ%2CKAAK%2CMClGX%2CQAAK%2CMAID%3BInCwRN%2CYAAA%3BImCtRQ%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BED0FR%2CQAAQ%2CKAAK%2CMCtFX%2CQAAK%3BInCgRP%2CgBAAA%3BImC7QI%2CsBAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3B%3BEnCsBJ%2CQkC0DQ%2CKAAK%2CMCtFX%2CQAAK%2CQnC4BN%3BEACD%2CQkCyDQ%2CKAAK%2CMCtFX%2CQAAK%2CQnC6BN%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CQkCoDQ%2CKAAK%2CMCtFX%2CQAAK%2CQnCkCN%3BIACG%2CWAAA%3B%3BEmC3BA%2CQD8EI%2CKAAK%2CMCtFX%2CQAAK%2CQAQF%3BIACG%2CcAAA%3B%3BED6ER%2CQAAQ%2CKAAK%2CMC5BX%2CQAAK%3BInCsNP%2CeAAA%3B%3BEkC1LA%2CQAAQ%2CKAAK%2CMC5BX%2CQAAK%2CMAED%3BInCoNN%2CgBAAA%3BIAAA%2CiBAAA%3BIAAA%2CiBAAA%3BIAAA%2CWAAA%3BIAAA%2CqBAAA%3BIAAA%2CuBAAA%3BIAAA%2CYAAA%3BImC%5C%2FLQ%2CmBAAA%3BInC%2BLR%2CYAAA%3BIAAA%2C0BAAA%3B%3BEoCjJA%2CQFzCQ%2CKAAK%2CMC5BX%2CQAAK%2CMAED%2CUCmEL%3BIpCiJD%2CWAAA%3BIAAA%2CqBAAA%3B%3BEoC5IA%2CQF9CQ%2CKAAK%2CMC5BX%2CQAAK%2CMAED%2CUCwEL%3BIpC4ID%2CWAAA%3BIAAA%2CqBAAA%3B%3BEoCvIA%2CQFnDQ%2CKAAK%2CMC5BX%2CQAAK%2CMAED%2CUC6EL%3BIpCuID%2CWAAA%3BIAAA%2CqBAAA%3B%3BEmC1LI%2CQDAI%2CKAAK%2CMC5BX%2CQAAK%2CMA4BF%2CIAAI%2CWAAc%2CUAAO%3BEAC1B%2CQDDI%2CKAAK%2CMC5BX%2CQAAK%2CMA6BF%2CIAAI%2CWAAc%2CUAAO%3BInCyL9B%2CuBAAA%3B%3BEmCrLI%2CQDLI%2CKAAK%2CMC5BX%2CQAAK%2CMAiCF%2CIAAI%2CWAAc%2CUAAO%3BEAC1B%2CQDNI%2CKAAK%2CMC5BX%2CQAAK%2CMAkCF%2COAAU%3BEACX%2CQDPI%2CKAAK%2CMC5BX%2CQAAK%2CMAmCF%2COAAU%2CUAAO%3BEAClB%2CQDRI%2CKAAK%2CMC5BX%2CQAAK%2CMAoCF%2COAAU%2CUAAO%3BInCkLtB%2CuBAAA%3BIAAA%2CWAAA%3BIAAA%2CqBAAA%3B%3BEmC5KI%2CQDdI%2CKAAK%2CMC5BX%2CQAAK%2CMA0CF%2COAAU%3BEACX%2CQDfI%2CKAAK%2CMC5BX%2CQAAK%2CMA2CF%2COAAU%2CUAAO%3BEAClB%2CQDhBI%2CKAAK%2CMC5BX%2CQAAK%2CMA4CF%2COAAU%2CUAAO%3BInC0KtB%2CmBAAA%3B%3BEkC1LA%2CQAAQ%2CKAAK%2CMCqBX%2CQAAK%3BInCqKP%2CmBAAA%3BImCnKI%2CgBAAA%3BIACA%2C4BAAA%3BInCkKJ%2CYAAA%3B%3BEkCtLI%2CQAJI%2CKAAK%2CMAIR%3BIArGL%2CwBAAA%3B%3BEACA%2CoBAAqB%2CSAgGb%2CKAAK%2CMAIR%2CUAnGD%2CuBAAuB%3BIACnB%2CeAAA%3B%3BEAGA%2CoBALa%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQACG%3BIACG%2CyBAAA%3BIACA%2CgBAAA%3BIACA%2CSAAA%3B%3BEACA%2CoBATS%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQACG%2CQAII%3BIACG%2CaAAA%3B%3BEAGR%2CoBAba%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%3BIACG%2CyCAAA%3BIACA%2CSAAA%3B%3BEAFJ%2CoBAba%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAGK%3BIACE%2CWAAA%3BIACA%2CYAAA%3BIACA%2C0BAAA%3BIACA%2CaAAa%2CuBAAb%3BIACA%2CgBAAgB%2CuBAAhB%3BIACA%2CkBAAA%3B%3BEACA%2CoBAvBK%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAGK%2CUAOG%3BEACD%2CoBAxBK%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAGK%2CUAQG%3BIACG%2CgBAAA%3B%3BEACA%2CoBA1BC%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAGK%2CUAOG%2CMAGI%3BEAAD%2CoBA1BC%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAGK%2CUAQG%2CMAEI%3BEACD%2CoBA3BC%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAGK%2CUAOG%2CMAII%3BEAAD%2CoBA3BC%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAGK%2CUAQG%2CMAGI%3BIACG%2CgBAAA%3B%3BEAGR%2CoBA%5C%2FBK%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAGK%2CUAeG%3BEACD%2CoBAhCK%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAGK%2CUAgBG%3BIACG%2CgBAAA%3B%3BEAEJ%2CoBAnCK%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAGK%2CUAmBG%3BIACG%2CSAAA%3BIACA%2CQAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIACA%2CgBAAA%3B%3BEAEJ%2CoBA1CK%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAGK%2CUA0BG%3BIACG%2CSAAA%3BIACA%2CQAAA%3BIACA%2CUAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3B%3BEAIR%2CoBAnDS%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAsCI%2CIAAI%2CWAAc%2CUAAO%3BEAC1B%2CoBApDS%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAuCI%2COAAU%3BEACX%2CoBArDS%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAwCI%2COAAU%2CUAAO%3BEAClB%2CoBAtDS%2CSAgGb%2CKAAK%2CMAIR%2CUAhGC%2CQASG%2CMAyCI%2COAAU%2CUAAO%3BIACd%2CWAAA%3BIACA%2CgBAAgB%2CuBAAhB%3B%3BEAkDR%2CQAFA%2CKAAK%2CMACP%2CQACG%3BIACG%2CmBAAA%3B%3BEADJ%2CQAFA%2CKAAK%2CMACP%2CQACG%2CMAEK%3BIACG%2CuBAAA%3BIACC%2CgBAAA%3BIACA%2CyBAAA%3BIACA%2CuBAAA%3B%3BEACF%2CQATR%2CKAAK%2CMACP%2CQACG%2CMAEK%2CUAKG%3BIGxHjB%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CSAAA%3BIACA%2COAAA%3BIACA%2CWAAA%3BIHmHoB%2CWAAW%2CgBAAX%3BIACA%2C0BAAA%3BIACA%2CmBAAA%3BIACA%2CsBAAA%3B%3BEAEJ%2CQAhBR%2CKAAK%2CMACP%2CQACG%2CMAEK%2CUAYG%3BIG%5C%2FHjB%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CSAAA%3BIACA%2COAAA%3BIACA%2CWAAA%3BIH0HoB%2CWAAW%2CgBAAX%3BIACA%2CyBAAA%3BIACA%2CY1D9HX%2CoB0D8HW%3BIACA%2CsBAAA%3B%3BEAEJ%2CQAvBR%2CKAAK%2CMACP%2CQACG%2CMAEK%2CUAmBG%3BIACG%2CWAAA%3BIACA%2CqBAAA%3B%3BEAEJ%2CQA3BR%2CKAAK%2CMACP%2CQACG%2CMAEK%2CUAuBG%3BEACD%2CQA5BR%2CKAAK%2CMACP%2CQACG%2CMAEK%2CUAwBG%3BIACG%2CWAAA%3BIACA%2CqBAAA%3BIACA%2CgBAAA%3B%3BEAGR%2CQAlCJ%2CKAAK%2CMACP%2CQACG%2CMAgCI%2COACK%3BIACE%2C0BAAA%3B%3BEACA%2CQArCZ%2CKAAK%2CMACP%2CQACG%2CMAgCI%2COACK%2CUAEG%3BIACG%2CWAAW%2CaAAX%3BIACA%2C%2BBAAA%3B%3BEAUL%2CoBAJM%2CSA7CjB%2CKAAK%2CMA8CH%2CQACG%2CMACK%2CUACE%3BEACD%2CoBALM%2CSA7CjB%2CKAAK%2CMA8CH%2CQACG%2CMACK%2CUAEE%3BEACD%2CoBANM%2CSA7CjB%2CKAAK%2CMA8CH%2CQACG%2CMACK%2CUAGE%3BIACG%2CWAAA%3B%3BEAEH%2CoBATK%2CSA7CjB%2CKAAK%2CMA8CH%2CQACG%2CMACK%2CUAMG%3BIACG%2CWAAA%3BIACA%2CWAAW%2CeAAX%3BIACA%2C0BAAA%3BIACA%2CgBAAA%3BIACA%2CsBAAA%3B%3BEAEJ%2CoBAhBK%2CSA7CjB%2CKAAK%2CMA8CH%2CQACG%2CMACK%2CUAaG%3BIACG%2CaAAA%3B%3BEAKA%2CoBAtBC%2CSA7CjB%2CKAAK%2CMA8CH%2CQACG%2CMAkBI%2COACK%2CUACG%3BIACG%2CWAAW%2CaAAX%3BIACA%2C%2BBAAA%3B%3BEAIZ%2CoBA5BS%2CSA7CjB%2CKAAK%2CMA8CH%2CQACG%2CMA0BI%2CIAAI%2CWAAc%2CUAAO%3BEAC1B%2CoBA7BS%2CSA7CjB%2CKAAK%2CMA8CH%2CQACG%2CMA2BI%2COAAU%3BEACX%2CoBA9BS%2CSA7CjB%2CKAAK%2CMA8CH%2CQACG%2CMA4BI%2COAAU%2CUAAO%3BEAClB%2CoBA%5C%2FBS%2CSA7CjB%2CKAAK%2CMA8CH%2CQACG%2CMA6BI%2COAAU%2CUAAO%3BIACd%2CWAAA%3B%3BEAGR%2CoBAnCa%2CSA7CjB%2CKAAK%2CMA8CH%2CQAkCG%3BIACG%2CeAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3B%3BEACA%2CoBAvCS%2CSA7CjB%2CKAAK%2CMA8CH%2CQAkCG%2CQAII%3BIACG%2CWAAA%3BIACA%2CWAAA%3BIACA%2C%2BBAAA%3BIACA%2CkBAAA%3BIACA%2CSAAA%3B%3BEAOR%2CoBAFY%2CUAAW%2CSA9F3B%2CKAAK%2CMA%2BFH%2CQACG%2CMACK%3BIACE%2CeAAA%3BIACA%2CeAAA%3BIACA%2CkBAAA%3B%3BEACA%2CoBAPI%2CUAAW%2CSA9F3B%2CKAAK%2CMA%2BFH%2CQACG%2CMACK%2CUAIG%3BIACG%2CWAAW%2CeAAX%3BIACA%2C6BAAA%3BIACA%2CYAAY%2CyBAAZ%3B%3BEAKA%2CoBAfA%2CUAAW%2CSA9F3B%2CKAAK%2CMA%2BFH%2CQACG%2CMAWI%2COACK%2CUACG%3BIACG%2CWAAW%2CaAAX%3BIACA%2CYAAW%2CwBAAwB%2CqBAAnC%3B%3BEAMZ%2CoBAvBQ%2CUAAW%2CSA9F3B%2CKAAK%2CMA%2BFH%2CQAqBG%2CQACI%3BIACG%2CaAAA%3B%3BEAKhB%2CiBAAkB%2CSA3Hd%2CKAAK%3BIA4HL%2CaAAA%3BIACA%2CuBAAA%3BIACA%2CeAAA%3B%3BEAEI%2CiBALU%2CSA3Hd%2CKAAK%2CMA%2BHH%2CQACG%3BIACG%2CQAAA%3BIACA%2CSAAA%3BIACA%2CcAAA%3B%3BEAMJ%2CeAFQ%2CSAvIZ%2CKAAK%2CMAwIH%2CQACG%2CMACK%3BIACE%2CuBAAA%3B%3BEAMpB%2CQAAQ%2CKAAK%2CMAAM%3BICxGnB%2CSAAA%3BIACA%2CUAAA%3B%3BEDuGA%2CQAAQ%2CKAAK%2CMAAM%2CUCrGjB%2CQAAK%3BIACH%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3B%3BEDkGJ%2CQAAQ%2CKAAK%2CMAAM%2CUCrGjB%2CQAAK%2CMAKD%3BIACE%2CcAAA%3B%3BED%2BFR%2CQAAQ%2CKAAK%2CMAAM%2CUC3FjB%2CQAAK%3BIAEH%2CsBAAA%3BIACA%2CcAAA%3BIACA%2CWAAA%3BIACA%2CSAAA%3B%3BEnC7HJ%2CQkCmNQ%2CKAAK%2CMAAM%2CUC3FjB%2CQAAK%2CQnCxHN%3BEACD%2CQkCkNQ%2CKAAK%2CMAAM%2CUC3FjB%2CQAAK%2CQnCvHN%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CQkC6MQ%2CKAAK%2CMAAM%2CUC3FjB%2CQAAK%2CQnClHN%3BIACG%2CWAAA%3B%3BEmCwHA%2CQDoFI%2CKAAK%2CMAAM%2CUC3FjB%2CQAAK%2CQAOF%3BIACG%2CcAAA%3B%3BEDmFR%2CQAAQ%2CKAAK%2CMAAM%2CUC9Bb%2CQAAK%3BInC%2BDX%2CgBAAA%3B%3BEkCjCA%2CQAAQ%2CKAAK%2CMAAM%2CUC1BjB%2CQAAK%2CMACD%3BInC0DN%2CmBAAA%3BIAAA%2C8BAAA%3BIAAA%2C4BAAA%3BIAAA%2C6BAAA%3BIAAA%2C2BAAA%3BIAAA%2CYAAA%3BIAAA%2C0BAAA%3BIAAA%2CgBAAA%3BIAAA%2CiBAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CqBAAA%3B%3BEoCjJA%2CQFgHQ%2CKAAK%2CMAAM%2CUC1BjB%2CQAAK%2CMACD%2CUCvFL%3BIpCiJD%2CcAAA%3BIAAA%2CqBAAA%3B%3BEoC5IA%2CQF2GQ%2CKAAK%2CMAAM%2CUC1BjB%2CQAAK%2CMACD%2CUClFL%3BIpC4ID%2CcAAA%3BIAAA%2CqBAAA%3B%3BEoCvIA%2CQFsGQ%2CKAAK%2CMAAM%2CUC1BjB%2CQAAK%2CMACD%2CUC7EL%3BIpCuID%2CcAAA%3BIAAA%2CqBAAA%3B%3BEmC9BI%2CQDHI%2CKAAK%2CMAAM%2CUC1BjB%2CQAAK%2CMA6BF%2CIAAI%2CWAAc%2CUAAO%3BEAC1B%2CQDJI%2CKAAK%2CMAAM%2CUC1BjB%2CQAAK%2CMA8BF%2CIAAI%2CWAAc%2CUAAO%3BInC6B9B%2CYxB5RS%2CoBwB4RT%3B%3BEmCzBI%2CQDRI%2CKAAK%2CMAAM%2CUC1BjB%2CQAAK%2CMAkCF%2CIAAI%2CWAAc%2CUAAO%3BEAC1B%2CQDTI%2CKAAK%2CMAAM%2CUC1BjB%2CQAAK%2CMAmCF%2COAAU%3BEACX%2CQDVI%2CKAAK%2CMAAM%2CUC1BjB%2CQAAK%2CMAoCF%2COAAU%2CUAAO%3BEAClB%2CQDXI%2CKAAK%2CMAAM%2CUC1BjB%2CQAAK%2CMAqCF%2COAAU%2CUAAO%3BInCsBtB%2CYxB5RS%2CoBwB4RT%3BIAAA%2CcAAA%3BIAAA%2CqBAAA%3BIAAA%2CmBAAA%3B%3BEkCjCA%2CQAAQ%2CKAAK%2CMAAM%2CUCmBjB%2CQAAK%3BInCcP%2CmBAAA%3BIAAA%2CYAAA%3BIAAA%2CgBAAA%3BIAAA%2C4BAAA%3B%3BEkCjCA%2CQAAQ%2CKAAK%2CMAAM%2CUAEf%2CMAAK%3BIACD%2CcAAA%3B%3BEACA%2CQAJA%2CKAAK%2CMAAM%2CUAEf%2CMAAK%2CKAEA%3BIACG%2CaAAA%3B%3BEAIJ%2CQATA%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMACA%3BIACG%2CgBAAA%3B%3BEADJ%2CQATA%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMACA%2COAEK%3BIACE%2CcAAA%3B%3BEACA%2CQAbR%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMACA%2COAEK%2CUAEG%3BIACG%2CcAAA%3B%3BEAEJ%2CQAhBR%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMACA%2COAEK%2CUAKG%3BEACD%2CQAjBR%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMACA%2COAEK%2CUAMG%3BIACO%2CmBAAA%3B%3BEAER%2CQApBR%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMACA%2COAEK%2CUASG%3BIACG%2CaAAA%3B%3BEArBpB%2CQAAQ%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMAiBC%3BIACE%2CkBAAA%3BIACA%2CsBAAA%3B%3BEACA%2CQA5BJ%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMAiBC%2CUAGG%3BEACD%2CQA7BJ%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMAiBC%2CUAIG%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CmBAAA%3BIACA%2CyBAAA%3BIACA%2CeAAA%3BIACA%2CcAAA%3B%3BEAEJ%2CQAtCJ%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMAiBC%2CUAaG%3BIACG%2CUAAA%3BIACA%2CSAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3B%3BEAEJ%2CQA5CJ%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMAiBC%2CUAmBG%3BIACG%2CUAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2CYAAA%3B%3BEAIA%2CQApDR%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMAiBC%2CUAyBG%2CMAEI%3BEAAD%2CQApDR%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMAiBC%2CUA0BG%2CMACI%3BEACD%2CQArDR%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMAiBC%2CUAyBG%2CMAGI%3BEAAD%2CQArDR%2CKAAK%2CMAAM%2CUAQf%2CMAAK%2CMAiBC%2CUA0BG%2CMAEI%3BIACG%2CyBAAA%3BIACI%2CmBAAA%3B%3BEItJxB%2CaACI%2CaACI%3BIACI%2CYAAA%3B%3BEAHZ%2CaACI%2CaACI%2CYAEM%2CKACI%3BIACE%2CYAAA%3B%3BEANpB%2CaACI%2CaACI%2CYAEM%2CKACI%2CUAEI%3BIACE%2CYAAA%3BIACA%2CaAAA%3BIACA%2CmBAAA%3B%3BEAOxB%2CaACI%2CaACI%3BIACI%2CYAAA%3B%3BEAHZ%2CaACI%2CaACI%2CYAEM%3BIACE%2CUAAA%3B%3BEAGQ%2CaAPpB%2CaACI%2CYAEM%2CKAEI%2CUACI%2CaACG%3BIACG%2CyBAAA%3BIACA%2CMAAA%3BIACA%2CqBAAA%3BIACA%2C2BAA2B%2C8BAA3B%3B%3BEAMA%2CaAjBxB%2CaACI%2CYAEM%2CKAEI%2CUASG%2COAEK%2CaACG%3BEAAD%2CaAjBxB%2CaACI%2CYAEM%2CKAEI%2CUAUG%2CMACK%2CaACG%3BIACG%2C2BAA2B%2C8BAA3B%3B%3BEAWhC%2CaACI%2CaACI%2CYACM%2CKACI%2CUACI%3BEALtB%2CaACI%2CaACI%2CYACM%2CKACI%2CUAEI%3BIACE%2CaAAA%3BIACA%2CUAAA%3BIACA%2C0BAAA%3B%3BEACA%2CaATpB%2CaACI%2CYACM%2CKACI%2CUACI%2CaAKG%3BEAAD%2CaATpB%2CaACI%2CYACM%2CKACI%2CUAEI%2CIAIG%3BIACG%2CWAAW%2CSAAX%3BIACA%2CUAAA%3BIACA%2C6BAAA%3BIACA%2CWAAA%3BIACA%2CSAAA%3BIACA%2CSAAA%3B%3BEAOA%2CaAtBxB%2CaACI%2CYACM%2CKACI%2CUAeG%2CWAGK%2CIACG%3BEAAD%2CaAtBxB%2CaACI%2CYACM%2CKACI%2CUAgBG%2COAEK%2CIACG%3BEAAD%2CaAtBxB%2CaACI%2CYACM%2CKACI%2CUAiBG%2CMACK%2CIACG%3BIACG%2CUAAA%3B%3BEAYxB%2CaADJ%2CaACK%2CUAAU%2COAAO%2COACd%3BIACI%2CY9D3LG%2CuB8D2LH%3B%3BEAJhB%2CaACI%2CaAMI%3BIACI%2CYAAA%3B%3BEARZ%2CaACI%2CaAMI%2CYAEM%3BIACE%2CUAAA%3B%3BEAVhB%2CaACI%2CaAMI%2CYAEM%2CKAEI%3BIACE%2CSAAA%3BIACA%2CYAAA%3B%3BEAbpB%2CaACI%2CaAMI%2CYAEM%2CKAEI%2CUAGI%3BEAdtB%2CaACI%2CaAMI%2CYAEM%2CKAEI%2CUAII%3BIACE%2C0BAAA%3BIACA%2CiBAAA%3BIACA%2CYAAA%3BIACA%2CaAAA%3BIACA%2CmBAAA%3B%3BEACA%2CaApBpB%2CaAMI%2CYAEM%2CKAEI%2CUAGI%2CaAOG%3BEAAD%2CaApBpB%2CaAMI%2CYAEM%2CKAEI%2CUAII%2CIAMG%3BIACG%2CWAAW%2CSAAX%3BIACA%2CUAAA%3BIACA%2C6BAAA%3BIACA%2CWAAA%3BIACA%2CSAAA%3BIACA%2CSAAA%3B%3BEAQA%2CaAlCxB%2CaAMI%2CYAEM%2CKAEI%2CUAoBG%2CWAGK%2CIACG%3BEAAD%2CaAlCxB%2CaAMI%2CYAEM%2CKAEI%2CUAqBG%2COAEK%2CIACG%3BEAAD%2CaAlCxB%2CaAMI%2CYAEM%2CKAEI%2CUAsBG%2CMACK%2CIACG%3BIACG%2CUAAA%3B%3BECjLhC%2CaACI%2CaACI%3BIACI%2CYAAA%3B%3BEAHZ%2CaACI%2CaACI%2CaAEM%2CKACI%3BIACE%2CYAAA%3B%3BEANpB%2CaACI%2CaACI%2CaAEM%2CKACI%2CUAEI%3BIACE%2CYAAA%3B%3BEARxB%2CaACI%2CaACI%2CaAEM%2CKACI%2CUAEI%2CgBAEE%3BIACI%2CYAAA%3BIACA%2CaAAA%3BIACA%2CmBAAA%3B%3BEAQ5B%2CaACI%2CaACI%3BIACI%2CYAAA%3B%3BEAHZ%2CaACI%2CaACI%2CaAEM%3BIACE%2CUAAA%3B%3BEAGQ%2CaAPpB%2CaACI%2CaAEM%2CKAEI%2CUACI%2CgBAAc%2CWACX%3BIACG%2CyBAAA%3BIACA%2CMAAA%3BIACA%2CqBAAA%3BIACA%2C2BAA2B%2C8BAA3B%3B%3BEAMA%2CaAjBxB%2CaACI%2CaAEM%2CKAEI%2CUASG%2COAEK%2CgBAAc%2CWACX%3BEAAD%2CaAjBxB%2CaACI%2CaAEM%2CKAEI%2CUAUG%2CMACK%2CgBAAc%2CWACX%3BIACG%2C2BAA2B%2C8BAA3B%3B%3BEAWhC%2CaACI%2CaACI%2CaACM%2CKACI%2CUACI%2CgBACE%3BEANxB%2CaACI%2CaACI%2CaACM%2CKACI%2CUACI%2CgBAEE%3BIACI%2CaAAA%3BIACA%2CUAAA%3BIACA%2C0BAAA%3B%3BEACA%2CaAVxB%2CaACI%2CaACM%2CKACI%2CUACI%2CgBACE%2CWAKK%3BEAAD%2CaAVxB%2CaACI%2CaACM%2CKACI%2CUACI%2CgBAEE%2CEAIK%3BIACG%2CWAAW%2CSAAX%3BIACA%2CUAAA%3BIACA%2C6BAAA%3BIACA%2CWAAA%3BIACA%2CSAAA%3BIACA%2CSAAA%3B%3BEAQJ%2CaAxBxB%2CaACI%2CaACM%2CKACI%2CUAiBG%2CWAGK%2CgBAAc%2CEACX%3BEAAD%2CaAxBxB%2CaACI%2CaACM%2CKACI%2CUAkBG%2COAEK%2CgBAAc%2CEACX%3BEAAD%2CaAxBxB%2CaACI%2CaACM%2CKACI%2CUAmBG%2CMACK%2CgBAAc%2CEACX%3BIACG%2CUAAA%3B%3BEAYxB%2CaADJ%2CaACK%2CUAAU%2COAAO%2COACd%3BIACI%2CY%5C%2FDpIG%2CuB%2BDoIH%3B%3BEAJhB%2CaACI%2CaAMI%3BIACI%2CYAAA%3B%3BEARZ%2CaACI%2CaAMI%2CaAEM%3BIACE%2CUAAA%3B%3BEAVhB%2CaACI%2CaAMI%2CaAEM%2CKAEI%3BIACE%2CSAAA%3BIACA%2CYAAA%3B%3BEAbpB%2CaACI%2CaAMI%2CaAEM%2CKAEI%2CUAGI%3BIACE%2CYAAA%3B%3BEAfxB%2CaACI%2CaAMI%2CaAEM%2CKAEI%2CUAGI%2CgBAEE%3BEAhBxB%2CaACI%2CaAMI%2CaAEM%2CKAEI%2CUAGI%2CgBAGE%3BIACI%2C0BAAA%3BIACA%2CiBAAA%3BIACA%2CYAAA%3BIACA%2CaAAA%3BIACA%2CmBAAA%3B%3BEACA%2CaAtBxB%2CaAMI%2CaAEM%2CKAEI%2CUAGI%2CgBAEE%2CWAOK%3BEAAD%2CaAtBxB%2CaAMI%2CaAEM%2CKAEI%2CUAGI%2CgBAGE%2CEAMK%3BIACG%2CWAAW%2CSAAX%3BIACA%2CUAAA%3BIACA%2C6BAAA%3BIACA%2CWAAA%3BIACA%2CSAAA%3BIACA%2CSAAA%3B%3BEAQJ%2CaApCxB%2CaAMI%2CaAEM%2CKAEI%2CUAsBG%2CWAGK%2CgBAAc%2CEACX%3BEAAD%2CaApCxB%2CaAMI%2CaAEM%2CKAEI%2CUAuBG%2COAEK%2CgBAAc%2CEACX%3BEAAD%2CaApCxB%2CaAMI%2CaAEM%2CKAEI%2CUAwBG%2CMACK%2CgBAAc%2CEACX%3BIACG%2CUAAA%3B%3BEClHhC%2CiBACI%2CiBACI%3BIACI%2CQhE9CO%2CoCgE8CP%3BIACA%2CYhE9CU%2CuCgE8CV%3B%3BEAJZ%2CiBAOI%2CkBACA%2CQAAO%3BIACC%2CkBAAA%3B%3BEACJ%2CiBAHJ%2CkBACA%2CQAAO%2CSAEF%3BIACG%2CSAAS%2CEAAT%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIACA%2CWAAW%2CSAAX%3BIACA%2CsBAAA%3BIACA%2CYAAA%3BIACA%2CMAAA%3BIACA%2COAAA%3BIACA%2CkBhE9HH%2CoBgE8HG%3BIACA%2CmCAAmC%2C8BAAnC%3B%3BEAGA%2CiBAjBR%2CkBACA%2CQAAO%2CSAeF%2CMACI%3BIACG%2CkCAAkC%2C8BAAlC%3BIACA%2CuBAAA%3B%3BEClGhB%2CiBACI%2CaAAY%2CmBACR%3BIACI%2CkBAAA%3B%3BEAHZ%2CiBACI%2CaAAY%2CmBACR%2CcAEI%2CaAAa%3BIACT%2CiBAAA%3B%3BEALhB%2CiBAUI%2CiBACI%3BEAXR%2CiBAUI%2CiBAEI%3BIACI%2C6BAAA%3BIACA%2C4BAAA%3B%3BEAdZ%2CiBAUI%2CiBAMI%2CcACI%2CaAAa%3BIACL%2CmBAAA%3B%3BEAlBpB%2CiBAUI%2CiBAWI%3BIACI%2CyBAAA%3BIACA%2CgBAAA%3B%3BEClDZ%2CiBACI%2CWAAU%2COAAO%2COACb%2CiBACI%3BIACI%2CcAAA%3B%3BEAJhB%2CiBACI%2CWAAU%2COAAO%2COACb%2CiBAIM%2CkBAAe%3BIACb%2CaAAA%3B%3BEAPhB%2CiBACI%2CWAAU%2COAAO%2COASb%3BIACG%2CcAAA%3B%3BEAXX%2CiBACI%2CWAAU%2COAAO%2COAYb%2C0BAA0B%3BIACtB%2CwBAAA%3B%3BEAdZ%2CiBAiBI%2CiBACI%2CeACI%3BIACI%2CaAAA%3B%3BEApBhB%2CiBAiBI%2CiBAOI%2CgBAAe%3BIACX%2CYAAA%3BIACA%2CYAAA%3BIACA%2CmBAAA%3BIACA%2CaAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CmBAAA%3B%3BEACA%2CiBAhBR%2CiBAOI%2CgBAAe%2CaASV%2CoBAAqB%2CwBAA0B%3BIAC5C%2CWAAA%3BIACA%2CWAAA%3B%3BEAFJ%2CiBAhBR%2CiBAOI%2CgBAAe%2CaASV%2CoBAAqB%2CwBAA0B%2COAG5C%3BIACI%2CqBAAA%3B%3BEArCpB%2CiBAiBI%2CiBAOI%2CgBAAe%2CaAgBX%3BIACI%2CcAAA%3B%3BEAzChB%2CiBAiBI%2CiBAOI%2CgBAAe%2CaAgBX%2CwBAEI%3BEA1ChB%2CiBAiBI%2CiBAOI%2CgBAAe%2CaAgBX%2CwBAGI%3BEA3ChB%2CiBAiBI%2CiBAOI%2CgBAAe%2CaAgBX%2CwBAII%3BEA5ChB%2CiBAiBI%2CiBAOI%2CgBAAe%2CaAgBX%2CwBAKI%3BIACI%2CaAAA%3B%3BEA9CpB%2CiBAiBI%2CiBAOI%2CgBAAe%2CaAgBX%2CwBAQI%3BIACI%2CkBAAA%3B%3BEAjDpB%2CiBAiBI%2CiBAOI%2CgBAAe%2CaAgBX%2CwBAWI%3BIACQ%2CUAAA%3B%3BEC8QxB%2CYAAY%2CmBACR%3BEADJ%2CYAAY%2CmBAER%3BEAFJ%2CYAAY%2CmBAGR%2CiBAAmB%3BIACf%2CmBAAA%3B%3BEAGA%2CYAPI%2CmBAMP%2COAAO%2COACH%2CiBACG%2CiBAAmB%3BIACf%2CgBAAA%3B%3BEAIZ%2CYAbQ%2CmBAaP%2CiBACG%2CiBAAmB%3BIACf%2CgBAAA%3B%3BEAKR%2CmBAAC%2CiBACG%2CSACI%3BIACI%2CmBAAA%3B%3BEAKhB%2CgBACI%3BIAEI%2CcAAA%3B%3BEAGR%2CmBACI%2CaACI%2CaAEM%3BEAJd%2CmBACI%2CaAEI%2CYACM%3BIACE%2CuBAAA%3B%3BEAKhB%2CkBACI%2CaACI%2CaAEM%3BEAJd%2CkBACI%2CaAEI%2CYACM%3BIACE%2CyBAAA%3B%3BEAKhB%2CiBACI%2CaACI%2CaAEM%3BEAJd%2CiBACI%2CaAEI%2CYACM%3BIACE%2C2BAAA%3B%3BEAKhB%2CYACI%2CaAEM%3BEAHV%2CYAEI%2CYACM%3BIACE%2CcAAA%3B%3BEAIZ%2C0BACI%2CaAAY%2CUAAU%2COAClB%2CaAEM%3BEAJd%2C0BACI%2CaAAY%2CUAAU%2COAElB%2CYACM%3BIACE%2CuBAAA%3B%3BEAKhB%2CyBACI%2CaAAY%2CUAAU%2COAClB%2CaAEM%3BEAJd%2CyBACI%2CaAAY%2CUAAU%2COAElB%2CYACM%3BIACE%2CyBAAA%3B%3BEAKhB%2CwBACI%2CaAAY%2CUAAU%2COAClB%2CaAEM%3BEAJd%2CwBACI%2CaAAY%2CUAAU%2COAElB%2CYACM%3BIACE%2CcAAA%3BIACA%2C2BAAA%3B%3BEAKhB%2CiBACI%3BIACI%2CSAAA%3BIACA%2CWAAA%3B%3BEAIR%2CiBACI%3BIACI%2CYAAA%3BI3C7JR%2CgBAAA%3B%3BE2CiKA%3BIACI%2CYAAA%3B%3BEAEJ%3BIACI%2CqBAAA%3B%3B%3BEAIJ%3BIACI%2CYAAA%3BI3C1KJ%2CgBAAA%3BIAAA%2CqBAAA%3BIAAA%2CmDAAA%3B%3BE2CyKA%2CgBAKI%3BIACI%2CqBAAA%3B%3BEAGR%2CiBACI%3BI3CnMN%2C6BAAA%3BIACK%2C0BAAA%3BIACC%2CyBAAA%3BIAcJ%2CqBAAA%3BIAhBF%2C2DAAA%3BIACK%2CwDAAA%3BIACC%2CuDAAA%3BIAcJ%2CmDAAA%3B%3BE2CkLA%2CiBAKI%2CWAAU%2COAAO%2COACb%3BIACI%2CiBAAA%3B%3BEAPZ%2CiBAKI%2CWAAU%2COAAO%2COAKb%3BIACI%2CiBAAA%3BIACA%2CoBAAA%3BIACA%2CgBAAA%3B%3BEAbZ%2CiBAKI%2CWAAU%2COAAO%2COAUb%3BEAfR%2CiBAKI%2CWAAU%2COAAO%2COAWb%3BIACI%2CYnEzaO%2CuBmEyaP%3BIACA%2CYnE1aO%2CuBmE0aP%3B%3BEAlBZ%2CiBAKI%2CWAAU%2COAAO%2COAUb%2CiBAII%2CIAAG%3BEAnBf%2CiBAKI%2CWAAU%2COAAO%2COAWb%2CiBAGI%2CIAAG%3BIACC%2CYnE5aG%2CuBmE4aH%3BIACA%2CWAAA%3B%3BEArBhB%2CiBAKI%2CWAAU%2COAAO%2COAUb%2CiBAQI%3BEAvBZ%2CiBAKI%2CWAAU%2COAAO%2COAWb%2CiBAOI%3BIACI%2CYnEhbG%2CuBmEgbH%3BIACA%2CYnEjbG%2CuBmEibH%3B%3BEAzBhB%2CiBAKI%2CWAAU%2COAAO%2COAuBb%3BIACI%2CmBAAA%3BIACA%2CcAAA%3BIACA%2CaAAA%3BIACA%2CYAAA%3B%3BEAhCZ%2CiBAKI%2CWAAU%2COAAO%2COA6Bb%3BEAlCR%2CiBAKI%2CWAAU%2COAAO%2COA8Bb%3BIACI%2CaAAA%3B%3BEAGR%2CiBAAC%2CyBACG%2CWAAU%2COAAO%2COACb%2CQAAO%3BIACH%2CYAAA%3BIACA%2CiBAAA%3BIACA%2CUAAA%3B%3BEALZ%2CiBAAC%2CyBACG%2CWAAU%2COAAO%2COACb%2CQAAO%2CSAIH%3BIACI%2CcAAA%3BIACA%2CeAAA%3B%3BEARhB%2CiBAAC%2CyBACG%2CWAAU%2COAAO%2COACb%2CQAAO%2CSAQH%3BIACI%2CaAAA%3B%3BEAXhB%2CiBAAC%2CyBACG%2CWAAU%2COAAO%2COACb%2CQAAO%2CSAWH%3BIACI%2CcAAA%3BIACA%2CeAAA%3B%3BEAfhB%2CiBAAC%2CyBACG%2CWAAU%2COAAO%2COACb%2CQAAO%2CSAeH%2CKAAI%3BIACA%2CqBAAA%3BIACA%2CYAAA%3BIACA%2CYAAA%3BIACA%2CSAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3BIACA%2CYAAA%3BIACA%2CeAAA%3BIACA%2CkBAAA%3BIACA%2CsBAAA%3BIACA%2CQAAA%3BIACA%2CmBAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2C8BAAA%3BIACA%2CiBAAA%3BIACA%2CcAAA%3B%3BEAnChB%2CiBAAC%2CyBACG%2CWAAU%2COAAO%2COACb%2CQAAO%2CSAeH%2CKAAI%2CIAmBA%3BIACI%2CcAAA%3B%3BEpEsGpB%2CYAAC%3BIACG%2CkCAAA%3BIACA%2C6BAAA%3BIACA%2C%2BBAAA%3B%3BEAEJ%2CYAAC%3BIACG%2CiCAAA%3BIACA%2C6BAAA%3BIACA%2C%2BBAAA%3B%3BEAIR%2CuBACI%3BIACI%2CYAAA%3BIACA%2CUAAA%3BIACA%2CYAAW%2C0BAAX%3B%3BEAGR%2CYAAY%3BIACR%2CqBAAA%3B%3B%3BEAKA%2CYAAC%2CcACG%2CQAAO%3BEADX%2CYAAC%2CcACG%2CQAAO%3BIACH%2CWAAA%3B%3BEAFR%2CYAAC%2CcACG%2CQAAO%2CMAEH%3BEAHR%2CYAAC%2CcACG%2CQAAO%2CMAEH%3BIACI%2CiBAAA%3B%3BEAJZ%2CYAAC%2CcACG%2CQAAO%2CMAEH%2CGAEI%3BEALZ%2CYAAC%2CcACG%2CQAAO%2CMAEH%2CGAEI%3BEALZ%2CYAAC%2CcACG%2CQAAO%2CMAEH%2CGAGI%2CEAAC%2CIAAI%3BEANjB%2CYAAC%2CcACG%2CQAAO%2CMAEH%2CGAGI%2CEAAC%2CIAAI%3BIACD%2CYAAA%3BIACA%2CWAAA%3B%3BEAIJ%2CYAZX%2CcACG%2CQAAO%2CMAUH%2CEAAC%2CIAAI%2CSACA%3BEAAD%2CYAZX%2CcACG%2CQAAO%2CMAUH%2CEAAC%2CIAAI%2CSACA%3BEACD%2CYAbX%2CcACG%2CQAAO%2CMAUH%2CEAAC%2CIAAI%2CSAEA%3BEAAD%2CYAbX%2CcACG%2CQAAO%2CMAUH%2CEAAC%2CIAAI%2CSAEA%3BIACG%2CgBAAA%3BIACA%2CWAAA%3B%3BEAMpB%2CYACI%2CQAAO%3BIACH%2CaAAA%3B%3BEAGR%2CuBACI%2CaACI%2CQAAO%3BIACH%2CkBAAA%3B%3BEAKR%2CYAAC%3BIACG%2CYAAA%3B%3BEAEJ%2CYAAC%3BIACG%2CUAAA%3BIACA%2CYAAA%3B%3BEANR%2CYAQI%2CeACM%3BIACE%2CaAAA%3BIACA%2CmBAAA%3B%3BEAXZ%2CYAQI%2CeAKI%3BIACI%2CaAAA%3BIACA%2CUAAA%3BIACA%2CSAAA%3BIACA%2CaAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CqBAAA%3B%3BEAMJ%2CuBADJ%2CaACK%3BIACG%2CYAAA%3B%3BEADJ%2CuBADJ%2CaACK%2CcAEG%3BIACI%2CaAAA%3B%3BEALhB%2CuBACI%2CaAOI%2CeACI%3BIACI%2CaAAA%3B%3BEqE7mBhB%3BIACI%2CcAAA%3B%3BEC1HA%2CUAuUA%2CcAxUH%2CIAAI%2CiBACA%2CMACG%3BEADJ%2CQAuUA%2CcAxUH%2CIAAI%2CiBACA%2CMACG%3BEADJ%2COAuUA%2CcAxUH%2CIAAI%2CiBACA%2CMACG%3BIACI%2CmBAAA%3BIACA%2CUAAA%3B%3BEAEI%2CUAkUZ%2CcAxUH%2CIAAI%2CiBACA%2CMACG%2CSAGI%2COACK%3BEAAD%2CQAkUZ%2CcAxUH%2CIAAI%2CiBACA%2CMACG%2CSAGI%2COACK%3BEAAD%2COAkUZ%2CcAxUH%2CIAAI%2CiBACA%2CMACG%2CSAGI%2COACK%3BEACD%2CUAiUZ%2CcAxUH%2CIAAI%2CiBACA%2CMACG%2CSAGI%2COAEK%3BEAAD%2CQAiUZ%2CcAxUH%2CIAAI%2CiBACA%2CMACG%2CSAGI%2COAEK%3BEAAD%2COAiUZ%2CcAxUH%2CIAAI%2CiBACA%2CMACG%2CSAGI%2COAEK%3BIACG%2CWAAU%2CgBAAgB%2CgBAA1B%3B%3BEAmUhB%2CUAAC%3BEAAD%2CQAAC%3BEAAD%2COAAC%3BIACG%2CmBAAA%3B%3BEA3UJ%2CaA8US%2CoBA%5C%2FUZ%2CIAAI%2CiBACA%2CMACG%3BIACI%2CmBAAA%3BIACA%2CUAAA%3B%3BEAEI%2CaAyUH%2CoBA%5C%2FUZ%2CIAAI%2CiBACA%2CMACG%2CSAGI%2COACK%3BEACD%2CaAwUH%2CoBA%5C%2FUZ%2CIAAI%2CiBACA%2CMACG%2CSAGI%2COAEK%3BIACG%2CWAAU%2CgBAAgB%2CgBAA1B%3B%3BECgjBhB%2CUADM%2C0BAA2B%2CqBAChC%3BIACG%2CaAAA%3B%3BEAEJ%2CUAJM%2C0BAA2B%2CqBAIhC%3BIACG%2CaAAA%3B%3BECpfQ%2CcAHX%2CiBACG%2CaACK%2CaACI%3BEAAD%2CoBAHX%2CiBACG%2CaACK%2CaACI%3BIACG%2CWAAA%3B%3BEAIJ%2CcARX%2CiBACG%2CaAMK%2CcACI%3BEAAD%2CoBARX%2CiBACG%2CaAMK%2CcACI%3BIACG%2CYAAA%3B%3BECjBZ%2C%2BBADJ%2CWACK%2C0BACG%3BIACI%2CaAAA%3B%3BEAKR%2C%2BBADJ%2CKACK%3BIAEG%2CaAAA%3BIACA%2CcAAA%3BIACA%2CgBAAA%3B%3BEAEJ%2C%2BBAPJ%2CKAOK%3BIAEG%2CaAAA%3BIACA%2CcAAA%3B%3BECyMR%2CUADM%2C0BAA2B%2CqBAChC%3BIACG%2CaAAA%3B%3BEAEJ%2CUAJM%2C0BAA2B%2CqBAIhC%3BIACG%2CaAAA%3B%3BEAKA%2C%2BBADJ%2CWACK%2C0BACG%3BIACI%2CaAAA%3B%3BEAKR%2C%2BBADJ%2CKACK%3BIAEG%2CaAAA%3BIACA%2CcAAA%3BIACA%2CgBAAA%3B%3BEAEJ%2C%2BBAPJ%2CKAOK%3BIAEG%2CaAAA%3BIACA%2CcAAA%3B%3BEAKR%2CwBAAC%2CeACG%3BIACI%2CaAAA%3B%3BEAFR%2CwBAAC%2CeAIG%3BIACI%2CkBAAA%3B%3BEALR%2CwBAAC%2CeAOG%2CKAAI%3BIACA%2CeAAA%3BIACA%2CiBAAA%3B%3BEAIR%2CwBAAC%2CcACG%3BIACI%2CaAAA%3B%3BEAFR%2CwBAAC%2CcAIG%3BIACI%2CcAAA%3B%3BEALR%2CwBAAC%2CcAOG%2CKAAI%3BIACA%2CcAAA%3BIACA%2CgBAAA%3B%3BEAGR%2CwBAAC%2CiBACG%3BIACI%2CaAAA%3B%3BEAFR%2CwBAAC%2CiBACG%2C8BAEI%3BIACI%2CiBAAA%3BIACA%2CgBAAA%3BIACA%2CeAAA%3B%3BEANZ%2CwBAAC%2CiBACG%2C8BAOI%3BIACI%2CkBAAA%3B%3BEATZ%2CwBAAC%2CiBACG%2C8BAUI%2CKAAI%3BIAEA%2CeAAA%3BIACA%2CiBAAA%3B%3BEAxChB%2CwBA4CI%2C8BAA8B%3BIAC1B%2CuBAAA%3B%3BEAQQ%2CcAHX%2CiBACG%2CaACK%2CaACI%3BEAAD%2CoBAHX%2CiBACG%2CaACK%2CaACI%3BIACG%2CWAAA%3B%3BEAIJ%2CcARX%2CiBACG%2CaAMK%2CcACI%3BEAAD%2CoBARX%2CiBACG%2CaAMK%2CcACI%3BIACG%2CYAAA%3B%3BECrJZ%2CkBAAC%2CSAAS%2CCACN%3BIAEI%2CcAAA%3BIACA%2CeAAA%3B%3BEAJR%2CkBAAC%2CSAAS%2CCACN%3BIAEI%2CaAAA%3BIACA%2CcAAA%3B%3BEAJR%2CkBAAC%2CSAAS%2CCACN%3BIAEI%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAJR%2CkBAAC%2CSAAS%2CCACN%3BIAEI%2CaAAA%3BIACA%2CcAAA%3B%3BEAJR%2CkBAAC%2CSAAS%2CCACN%3BIAEI%2CaAAA%3BIACA%2CcAAA%3B%3BEAJR%2CkBAAC%2CSAAS%2CCACN%3BIAEI%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAJR%2CkBAAC%2CSAAS%2CCACN%3BIAEI%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAJR%2CkBAAC%2CSAAS%2CCACN%3BIAEI%2CeAAA%3BIACA%2CgBAAA%3B%3BEAJR%2CkBAAC%2CSAAS%2CCACN%3BIAEI%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAJR%2CkBAAC%2CSAAS%2CEACN%3BIAEI%2CaAAA%3BIACA%2CcAAA%3B%3BEAJR%2CkBAAC%2CSAAS%2CEACN%3BIAEI%2CqBAAA%3BIACA%2CsBAAA%3B%3BEAJR%2CkBAAC%2CSAAS%2CEACN%3BIAEI%2CqBAAA%3BIACA%2CsBAAA%3B%3BEC8YR%2CUAFE%2CkBACL%2CmBACI%2CUACG%3BIAEI%2CiCAAA%3BIACA%2CkCAAA%3B%3BEAKhB%3BIACI%2CgBAAA%3B%3BEACA%2CUAAC%2CUACG%2CQAAO%3BIAEH%2CiCAAA%3BIACA%2CkCAAA%3B%3BEAJR%2CUAAC%2CUAMG%2CQAAO%3BIAEH%2CoBAAA%3BIACA%2CqBAAA%3B%3BEAIJ%2CUADH%2CmBACI%2CUACG%3BEADJ%2CUADH%2CmBACI%2CUAEG%2CQAAO%3BIAEH%2CiCAAA%3BIACA%2CkCAAA%3B%3BEAKR%2CUADH%2CqBACI%2CUACG%2CQAAO%3BEADX%2CUADH%2CqBACI%2CUAEG%3BIAEI%2CoBAAA%3BIACA%2CqBAAA%3B%3BEA9BhB%2CUAkCI%3BIACI%2CmBAAA%3B%3BEAEJ%2CUAAC%2CkBACG%2CQACI%2CoBACI%3BIACI%2CUAAA%3BIACA%2CWAAW%2CgBAAX%3BIACA%2CyBAAA%3BIACA%2CeAAA%3BIACA%2CYAAA%3BIACA%2CeAAA%3BIACA%2CiBAAA%3BIACA%2CsBAAA%3B%3BEAGR%2CUAdP%2CkBACG%2CQAaK%2CMACG%2CoBACI%3BIACI%2CUAAA%3BIACA%2CWAAW%2CaAAX%3B%3BEAlBpB%2CUAAC%2CkBAuBG%2CQAAO%2CwBAIH%3BEAHJ%2CUAxBH%2CkBAwBI%2CqBAAsB%2CQAAO%2CwBAG1B%3BEAFJ%2CUAzBH%2CkBAyBI%2C6BAA8B%2CQAAO%2CYAElC%3BEADJ%2CUA1BH%2CkBA0BI%2CuBAAwB%2CQACrB%3BIACI%2CaAAA%3B%3BEA5BZ%2CUAAC%2CkBAuBG%2CQAAO%2CwBAOH%3BEANJ%2CUAxBH%2CkBAwBI%2CqBAAsB%2CQAAO%2CwBAM1B%3BEALJ%2CUAzBH%2CkBAyBI%2C6BAA8B%2CQAAO%2CYAKlC%3BEAJJ%2CUA1BH%2CkBA0BI%2CuBAAwB%2CQAIrB%3BIACI%2CeAAA%3B%3BEA%5C%2FBZ%2CUAAC%2CkBAkCG%2CQAAO%2CoBAGH%3BEAFJ%2CUAnCH%2CkBAmCI%2CqBAAsB%2CQAAO%2CoBAE1B%3BEADJ%2CUApCH%2CkBAoCI%2CmBAAoB%2CQACjB%3BIACI%2CaAAA%3B%3BEAGR%2CUAzCH%2CkBAyCI%2CUACG%2CQAAO%2CoBAGH%3BEAFJ%2CUA3CP%2CkBAyCI%2CUAEI%2CqBAAsB%2CQAAO%2CoBAE1B%3BEADJ%2CUA5CP%2CkBAyCI%2CUAGI%2CmBAAoB%2CQACjB%3BIACI%2CaAAA%3B%3BEAMhB%2CUAAC%2CUACG%2CQAAO%3BIAEH%2CaAAA%3BIACA%2CcAAA%3B%3BEAIJ%2CUADH%2CqBACI%2CUACG%3BIAEI%2CaAAA%3BIACA%2CcAAA%3B%3BEArGhB%2CUAyGI%3BIACI%2CmBAAA%3B%3BEAEJ%2CUAAC%2CkBACG%2CQAAO%2CoBAOH%3BEANJ%2CUAFH%2CkBAEI%2CqBAAsB%2CQAAO%2CoBAM1B%3BEALJ%2CUAHH%2CkBAGI%2CmBAAoB%2CQAKjB%3BEARR%2CUAAC%2CkBAIG%2CQAAO%2CwBAIH%3BEAHJ%2CUALH%2CkBAKI%2CqBAAsB%2CQAAO%2CwBAG1B%3BEAFJ%2CUANH%2CkBAMI%2C6BAA8B%2CQAAO%2CYAElC%3BEADJ%2CUAPH%2CkBAOI%2CuBAAwB%2CQACrB%3BIACI%2CWAAW%2CgBAAX%3BIACA%2C0BAAA%3BIACA%2CsBAAA%3B%3BEAXZ%2CUAAC%2CkBACG%2CQAAO%2CoBAYH%2CuBACI%3BEAZR%2CUAFH%2CkBAEI%2CqBAAsB%2CQAAO%2CoBAW1B%2CuBACI%3BEAXR%2CUAHH%2CkBAGI%2CmBAAoB%2CQAUjB%2CuBACI%3BEAdZ%2CUAAC%2CkBAIG%2CQAAO%2CwBASH%2CuBACI%3BEATR%2CUALH%2CkBAKI%2CqBAAsB%2CQAAO%2CwBAQ1B%2CuBACI%3BEARR%2CUANH%2CkBAMI%2C6BAA8B%2CQAAO%2CYAOlC%2CuBACI%3BEAPR%2CUAPH%2CkBAOI%2CuBAAwB%2CQAMrB%2CuBACI%3BIACI%2CUAAA%3BIACA%2CWAAW%2CgBAAX%3BIACA%2CoBAAA%3BIACA%2CsBAAA%3B%3BEAlBhB%2CUAAC%2CkBACG%2CQAAO%2CoBAoBH%3BEAnBJ%2CUAFH%2CkBAEI%2CqBAAsB%2CQAAO%2CoBAmB1B%3BEAlBJ%2CUAHH%2CkBAGI%2CmBAAoB%2CQAkBjB%3BEArBR%2CUAAC%2CkBAIG%2CQAAO%2CwBAiBH%3BEAhBJ%2CUALH%2CkBAKI%2CqBAAsB%2CQAAO%2CwBAgB1B%3BEAfJ%2CUANH%2CkBAMI%2C6BAA8B%2CQAAO%2CYAelC%3BEAdJ%2CUAPH%2CkBAOI%2CuBAAwB%2CQAcrB%3BIACI%2CYAAA%3BIACA%2CUAAA%3BIACA%2CwBAAA%3B%3BEAEJ%2CUA1BP%2CkBACG%2CQAAO%2CoBAyBF%2CMACG%2CuBACI%3BEAFR%2CUA1BP%2CkBAEI%2CqBAAsB%2CQAAO%2CoBAwBzB%2CMACG%2CuBACI%3BEAFR%2CUA1BP%2CkBAGI%2CmBAAoB%2CQAuBhB%2CMACG%2CuBACI%3BEAFR%2CUA1BP%2CkBAIG%2CQAAO%2CwBAsBF%2CMACG%2CuBACI%3BEAFR%2CUA1BP%2CkBAKI%2CqBAAsB%2CQAAO%2CwBAqBzB%2CMACG%2CuBACI%3BEAFR%2CUA1BP%2CkBAMI%2C6BAA8B%2CQAAO%2CYAoBjC%2CMACG%2CuBACI%3BEAFR%2CUA1BP%2CkBAOI%2CuBAAwB%2CQAmBpB%2CMACG%2CuBACI%3BIACI%2CUAAA%3BIACA%2CWAAW%2CaAAX%3B%3BEACA%2CUA%5C%2FBnB%2CkBACG%2CQAAO%2CoBAyBF%2CMACG%2CuBACI%2CEAGK%2CUAAU%3BEAAX%2CUA%5C%2FBnB%2CkBAEI%2CqBAAsB%2CQAAO%2CoBAwBzB%2CMACG%2CuBACI%2CEAGK%2CUAAU%3BEAAX%2CUA%5C%2FBnB%2CkBAGI%2CmBAAoB%2CQAuBhB%2CMACG%2CuBACI%2CEAGK%2CUAAU%3BEAAX%2CUA%5C%2FBnB%2CkBAIG%2CQAAO%2CwBAsBF%2CMACG%2CuBACI%2CEAGK%2CUAAU%3BEAAX%2CUA%5C%2FBnB%2CkBAKI%2CqBAAsB%2CQAAO%2CwBAqBzB%2CMACG%2CuBACI%2CEAGK%2CUAAU%3BEAAX%2CUA%5C%2FBnB%2CkBAMI%2C6BAA8B%2CQAAO%2CYAoBjC%2CMACG%2CuBACI%2CEAGK%2CUAAU%3BEAAX%2CUA%5C%2FBnB%2CkBAOI%2CuBAAwB%2CQAmBpB%2CMACG%2CuBACI%2CEAGK%2CUAAU%3BIACP%2CsBAAA%3B%3BEAEJ%2CUAlCnB%2CkBACG%2CQAAO%2CoBAyBF%2CMACG%2CuBACI%2CEAMK%2CUAAU%3BEAAX%2CUAlCnB%2CkBAEI%2CqBAAsB%2CQAAO%2CoBAwBzB%2CMACG%2CuBACI%2CEAMK%2CUAAU%3BEAAX%2CUAlCnB%2CkBAGI%2CmBAAoB%2CQAuBhB%2CMACG%2CuBACI%2CEAMK%2CUAAU%3BEAAX%2CUAlCnB%2CkBAIG%2CQAAO%2CwBAsBF%2CMACG%2CuBACI%2CEAMK%2CUAAU%3BEAAX%2CUAlCnB%2CkBAKI%2CqBAAsB%2CQAAO%2CwBAqBzB%2CMACG%2CuBACI%2CEAMK%2CUAAU%3BEAAX%2CUAlCnB%2CkBAMI%2C6BAA8B%2CQAAO%2CYAoBjC%2CMACG%2CuBACI%2CEAMK%2CUAAU%3BEAAX%2CUAlCnB%2CkBAOI%2CuBAAwB%2CQAmBpB%2CMACG%2CuBACI%2CEAMK%2CUAAU%3BIACP%2CuBAAA%3B%3BEAThB%2CUA1BP%2CkBACG%2CQAAO%2CoBAyBF%2CMAaG%3BEAbJ%2CUA1BP%2CkBAEI%2CqBAAsB%2CQAAO%2CoBAwBzB%2CMAaG%3BEAbJ%2CUA1BP%2CkBAGI%2CmBAAoB%2CQAuBhB%2CMAaG%3BEAbJ%2CUA1BP%2CkBAIG%2CQAAO%2CwBAsBF%2CMAaG%3BEAbJ%2CUA1BP%2CkBAKI%2CqBAAsB%2CQAAO%2CwBAqBzB%2CMAaG%3BEAbJ%2CUA1BP%2CkBAMI%2C6BAA8B%2CQAAO%2CYAoBjC%2CMAaG%3BEAbJ%2CUA1BP%2CkBAOI%2CuBAAwB%2CQAmBpB%2CMAaG%3BIACI%2CWAAW%2CaAAX%3B%3BEAdR%2CUA1BP%2CkBACG%2CQAAO%2CoBAyBF%2CMAgBG%3BEAhBJ%2CUA1BP%2CkBAEI%2CqBAAsB%2CQAAO%2CoBAwBzB%2CMAgBG%3BEAhBJ%2CUA1BP%2CkBAGI%2CmBAAoB%2CQAuBhB%2CMAgBG%3BEAhBJ%2CUA1BP%2CkBAIG%2CQAAO%2CwBAsBF%2CMAgBG%3BEAhBJ%2CUA1BP%2CkBAKI%2CqBAAsB%2CQAAO%2CwBAqBzB%2CMAgBG%3BEAhBJ%2CUA1BP%2CkBAMI%2C6BAA8B%2CQAAO%2CYAoBjC%2CMAgBG%3BEAhBJ%2CUA1BP%2CkBAOI%2CuBAAwB%2CQAmBpB%2CMAgBG%3BIACI%2CUAAA%3B%3BEA3ChB%2CUAAC%2CkBA%2BCG%2CQAAO%2CoBAGH%3BEAFJ%2CUAhDH%2CkBAgDI%2CqBAAsB%2CQAAO%2CoBAE1B%3BEADJ%2CUAjDH%2CkBAiDI%2CmBAAoB%2CQACjB%3BIACI%2CeAAA%3B%3BEAnDZ%2CUAAC%2CkBAsDG%2CQAAO%2CwBAIH%3BEAHJ%2CUAvDH%2CkBAuDI%2CqBAAsB%2CQAAO%2CwBAG1B%3BEAFJ%2CUAxDH%2CkBAwDI%2C6BAA8B%2CQAAO%2CYAElC%3BEADJ%2CUAzDH%2CkBAyDI%2CuBAAwB%2CQACrB%3BIACI%2CcAAA%3B%3BEAMZ%2CmBADgB%2CWAAU%2CkBACzB%2CuBACG%2CQAAQ%3BIACJ%2CcAAA%3B%3BEAGR%2CmBANgB%2CWAAU%2CkBAMzB%2CmBACG%2CQAAQ%3BIACJ%2CeAAA%3B%3BEAQJ%2C0BADJ%2CWACK%2CkBACG%2CQAAO%2CwBAIH%3BEALR%2C2BADJ%2CWACK%2CkBACG%2CQAAO%2CwBAIH%3BEAHJ%2C0BAHR%2CWACK%2CkBAEI%2CqBAAsB%2CQAAO%2CwBAG1B%3BEAHJ%2C2BAHR%2CWACK%2CkBAEI%2CqBAAsB%2CQAAO%2CwBAG1B%3BEAFJ%2C0BAJR%2CWACK%2CkBAGI%2C6BAA8B%2CQAAO%2CYAElC%3BEAFJ%2C2BAJR%2CWACK%2CkBAGI%2C6BAA8B%2CQAAO%2CYAElC%3BEADJ%2C0BALR%2CWACK%2CkBAII%2CuBAAwB%2CQACrB%3BEADJ%2C2BALR%2CWACK%2CkBAII%2CuBAAwB%2CQACrB%3BIAEI%2CcAAA%3BIACA%2CeAAA%3B%3BEC3wBhB%2C8BAAC%2CUACG%3BIACI%2CoBAAA%3BIACA%2CiBAAA%3B%3BECgeR%2CUAAC%2CYACG%2CIAAG%3B%3BIAEC%2CkBAAA%3BIACA%2CmBAAA%3B%3BEC7gBZ%3BIACI%2C4BAAA%3BIACA%2CWAAA%3BIACA%2CSAAA%3B%3BEAEJ%3BIACI%2CyBAAA%3BIACA%2CUAAA%3B%3BEAEJ%3BIACI%2CaAAA%3BIACA%2CsBAAA%3B%3BEAEJ%2CqBAAsB%3BIACd%2CWAAA%3BIACA%2CcAAA%3BIACA%2CeAAA%3B%3BEAER%2C2BACI%2CmBACI%3BIACI%2CiBAAA%3B%3BEC9Bf%3BIACC%2CuBAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3B%3BECoJU%2COAFD%2CQACH%2COACK%3BIACG%2CUAAA%3BIACA%2CWAAW%2CkBAAkB%2CgBAA7B%3B%3BEAEJ%2COAND%2CQACH%2COAKK%3BIACG%2CUAAA%3BIACA%2CWAAW%2CiBAAkB%2CgBAA7B%3B%3BEAOA%2CMAHN%2CyBAAyB%2CMAC3B%2CQAAO%2CQACH%2COACK%2CGAAG%3BIACA%2CUAAA%3BIACA%2CWAAU%2CgBAAgB%2CgBAA1B%3B%3BECvBhB%3BIACI%2CUAAS%2CcAAT%3B%3BEAEJ%3BIACI%2CQAAQ%2CaAAR%3B%3BECsGJ%2CYACI%3BEADJ%2CYAEI%3BI1D8CJ%2CaAAA%3B%3BE0DhDA%2CYAKI%3BI1D2CJ%2CcAAA%3B%3BE0DxCI%2CYAAC%2CQACG%3BIACI%2CiBAAA%3B%3BEAFR%2CYAAC%2CQAIG%2CkBAAkB%3BIACd%2CmBAAA%3B%3BEALR%2CYAAC%2CQAOG%3BIACI%2CoBAAA%3B%3BEAGR%2CYAAC%2CYACG%3BI1D4BR%2CgBAAA%3BI0D1BY%2CkBAAA%3B%3BEC1MZ%3BIACI%2CwBAAA%3B%3BE9CmEJ%2CwBACI%3BIACI%2CgCAAA%3B%3BEAFR%2CwBAKI%2CeAGI%3BEARR%2CwBAKI%2CeAII%3BEATR%2CwBAKI%2CeAKI%2C2BAA6B%3BIACzB%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEAbZ%2CwBAKI%2CeAWI%3BIACI%2CaAAA%3BIACA%2CUAAA%3B%3BEAYA%2CwBAFR%2CqCACI%2CKACK%3BEACD%2CwBAHR%2CqCACI%2CKAEK%3BIACG%2CkBAAA%3B%3BEAGJ%2CwBAPR%2CqCACI%2CKAMK%3BIACG%2CUAAA%3B%3BEApChB%2CwBAyCI%2CKAAI%3BEAzCR%2CwBA0CI%3BEA1CJ%2CwBA2CI%3BIACI%2CiBAAA%3B%3BEAKR%3BIAGI%2C6BAAA%3B%3BEAHJ%2CiCAKI%3BIb0GJ%2CmBAAA%3B%3BEatGY%2CiCAJR%2COAGI%2COACK%3BIACG%2CeAAA%3BIACA%2CcAAA%3BIACA%2CgBAAA%3B%3BEAZhB%2CiCAKI%2COAWI%3BIACI%2CiBAAA%3B%3BEAKZ%2CkBAGI%2CiBACM%3BIACE%2CYAAA%3B%3BEAKJ%2CkBADJ%2CQACK%3BIACG%2CeAAA%3B%3BE%2BChLZ%3BIACI%2CsBAAA%3B%3BECklBJ%2CWAAW%3BIACP%2CgBAAA%3B%3BEAGJ%2CuBAAwB%2CEAAC%3BIACrB%2CqBAAA%3B%3BEAGJ%3BIACI%2CcAAA%3B%3BEAGJ%2CoBAAqB%3BIACjB%2C4BAAA%3B%3BEAGJ%2CuBACI%3BIACI%2CUAAA%3B%3BEAIR%2CQAAW%3BIACP%2CmBAAA%3B%3BEAGJ%3BIAEQ%2CeAAA%3B%3BEAGJ%2CsBAAC%2CeAAgB%2CgBAAgB%3BIAC7B%2CgBAAA%3BIACA%2CaAAA%3B%3BEAPR%2CsBAUI%3BIACI%2CmBAAA%3BIACA%2CcAAA%3B%3BEAZR%2CsBAeI%3BIACI%2CaAAA%3B%3BEAhBR%2CsBAmBI%3BIACI%2CgBAAA%3B%3BEApBR%2CsBAuBI%3BIACI%2CgBAAA%3B%3BEAxBR%2CsBA2BI%2CqBAAoB%2CYAAa%3BIAC7B%2CeAAA%3B%3BEA5BR%2CsBA%2BBI%3BIACI%2CkBAAA%3B%3BEAhCR%2CsBAmCI%2CsBAAqB%3BIACjB%2CqBAAA%3BIACA%2CkBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAW%2CgBAAX%3B%3BEASR%2CQAAQ%2CaAAa%3BIAEb%2CgBAAA%3BIACA%2CgBAAA%3BIACA%2CMAAA%3BIACA%2CWAAA%3B%3BEALR%2CQAAQ%2CaAAa%2CiBAQjB%3BIvEzmBA%2CgBAAA%3BIACA%2CqBAAA%3B%3BEAGJ%2CQuE6lBQ%2CaAAa%2CiBAQjB%2CgBvErmBH%3BIAEO%2CiDAAA%3B%3BEAGJ%2CQuEwlBI%2CaAAa%2CiBAQjB%2CgBvErmBH%2CMAKI%3BIACG%2CmBAAA%3B%3BEAGJ%2CQuEolBI%2CaAAa%2CiBAQjB%2CgBvErmBH%2CMASI%3BIACG%2CmBAAA%3BIACA%2CkBAAA%3BIACA%2CeAAA%3B%3BEAGJ%2CQuE8kBI%2CaAAa%2CiBAQjB%2CgBvErmBH%2CMAeI%3BIACG%2C8BAAA%3B%3BEAKJ%2CQuEwkBI%2CaAAa%2CiBAQjB%2CgBvEhlBC%3BIACG%2CYAAA%3BIACA%2CUAAA%3B%3BEAGJ%2CQuEmkBI%2CaAAa%2CiBAQjB%2CgBvE3kBC%3BIACG%2CWAAA%3BIACA%2CUAAA%3B%3BEuEikBR%2CQAAQ%2CaAAa%2CiBAQjB%2CgBvEtkBA%3BIACI%2CWAAA%3BIACA%2CUAAA%3B%3BEwExBR%2CsBAAuB%2CqBAAqB%2CwBAAwB%2CuBAAuB%2COAAM%3BIAC7F%2CaAAA%3BIACA%2CgBAAA%3B%3BECXJ%2CeAAgB%2CMAAK%3BIzEvErB%2CSAAA%3BIACA%2CMAAM%2CgBAAN%3BIACA%2CSAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIAEA%2CQAAA%3BIyEZI%2CkBAAA%3B%3BEAGJ%2CeAwEgB%2CMAAK%2CiBAxEjB%3BIzEcA%2CsBAAA%3BIACA%2CqBAAA%3BIyEZA%2CkBAAA%3BIACA%2CQAAA%3BIACA%2COAAA%3BIACA%2CcAAA%3BIACA%2CSAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CgBAAA%3BIACA%2CeAAA%3B%3BEzEOJ%2CKAAM%2CgByEsDU%2CMAAK%2CiBAxEjB%3BIzEmBA%2CqBAAA%3B%3BEyELJ%2CeA0DgB%2CMAAK%2CiBA1DjB%2CmBAAgB%3BEACpB%2CeAyDgB%2CMAAK%2CiBAzDjB%2CmBAAgB%3BIAChB%2CkBAAA%3BIACA%2CMAAA%3BIACA%2COAAA%3BIACA%2CqBAAA%3BIACA%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CSAAS%2CEAAT%3B%3BEAGJ%2CeA6CgB%2CMAAK%2CiBA7CjB%2CmBAAgB%3BIAChB%2CyBAAA%3BIACA%2CgBAAA%3B%3BEAGJ%2CeAwCgB%2CMAAK%2CiBAxCjB%2CmBAAgB%3BIAChB%2CioCAAA%3BIACA%2CaAAA%3B%3BEAGJ%2CeAmCgB%2CMAAK%2CiBAnCjB%2CmBAAgB%2CMAAM%3BEAC1B%2CeAkCgB%2CMAAK%2CiBAlCpB%2CQAAW%2CmBAAgB%3BIACxB%2CqBAAA%3B%3BEAGJ%2CeA8BgB%2CMAAK%2CiBA9BpB%2CQAAW%2CmBAAgB%3BIACxB%2CSAAS%2CEAAT%3B%3BEAKA%2CUAAW%2CgBAwBC%2CMAAK%2CiBA1BpB%2COAAU%2CmBAAgB%3BEAEvB%2CUAAW%2CgBAwBC%2CMAAK%2CiBAzBpB%2CMAAS%2CmBAAgB%3BEAEtB%2CeAuBY%2CMAAK%2CiBA1BpB%2COAAU%2CmBAAgB%3BEAGvB%2CeAuBY%2CMAAK%2CiBAzBpB%2CMAAS%2CmBAAgB%3BIAGlB%2CqBAAA%3B%3BEAIR%2CeAkBgB%2CMAAK%2CiBAlBpB%2CIAAI%2CUAAU%2CWAAc%2CmBAAgB%3BIACzC%2CqBAAA%3B%3BECLJ%3BIAEQ%2CkBAAA%3BIACA%2CeAAA%3BIACA%2CYAAA%3BIACA%2CaAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3BIACA%2CcAAA%3B%3BEAGJ%2CwBAAC%3BIACG%2CeAAA%3BIACA%2CmBAAA%3B%3BEAGJ%2CwBAAC%3BIACG%2CeAAA%3B%3BEAGJ%2CwBAAC%2COAAQ%2CgBAAe%3BIACpB%2CaAAA%3B%3BEAIR%3BIAEQ%2CkBAAA%3BIACA%2C8BAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2CgBAAA%3BIACA%2CcAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CqFAAA%3B%3BEAVR%2CeAaM%3BIACE%2CcAAA%3B%3BEAGJ%2CeAAC%3BIACG%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CSAAS%2CEAAT%3BIACA%2CWAAW%2CaAAX%3B%3BEAGJ%2CeAAC%2CUAAU%3BIACP%2C2BAAA%3BIACA%2C8BAAA%3B%3BEAGJ%2CeAAC%2CYAAY%3BIACT%2C4BAAA%3BIACA%2C4BAAA%3B%3BECzFR%2C2BAA4B%2CwBAA0B%3BIAClD%2CQAAA%3BIACA%2CWAAW%2CqBAAX%3B%3BECsCJ%3BIACI%2CUAAA%3B%3BECwDJ%3BIAEQ%2CaAAA%3B%3BEAFR%2CsBAKI%2CiBAAiB%3BIACb%2CeAAA%3B%3BEANR%2CsBASI%3BIACI%2CmBAAA%3B%3BEAVR%2CsBAaI%2CqBAAoB%3BIAChB%2CgBAAA%3B%3BEAdR%2CsBAiBI%3BIACI%2CmBAAA%3BIACA%2CcAAA%3B%3BE1EyKR%2C0BACI%3BIACI%2CuBAAA%3B%3BE2E8EI%2CYAFR%2CeACI%2COACK%3BIACG%2CeAAA%3B%3BEAEJ%2CYALR%2CeACI%2COAIK%3BIACG%2CeAAA%3B%3BEAGR%2CYATJ%2CeASK%2CYACG%3BIACI%2CmBAAA%3B%3BEAFR%2CYATJ%2CeASK%2CYAIG%3BIACI%2CmBAAA%3B%3BEALR%2CYATJ%2CeASK%2CYAOG%2CUAAY%2CIAAC%3BEAPjB%2CYATJ%2CeASK%2CYAQG%2COAAS%2CIAAC%3BIACN%2CaAAA%3B%3BEATR%2CYATJ%2CeASK%2CYAWG%2CkBAEM%2CIAAC%3BEAbX%2CYATJ%2CeASK%2CYAYG%2CoBACM%2CIAAC%3BIACC%2CgBAAA%3B%3BEAdZ%2CYATJ%2CeASK%2CYAWG%2CkBAKM%2CIAAC%3BEAhBX%2CYATJ%2CeASK%2CYAYG%2CoBAIM%2CIAAC%3BIACC%2CgBAAA%3B%3BECjQhB%2CYAAC%2CMACG%3BIACI%2CmBAAA%3BIACA%2CUAAA%3B%3BECkDJ%2CYADH%2CiBACI%2CeACG%3BIACI%2CWAAA%3B%3BEAGR%2CYANH%2CiBAMI%2CQACG%3BIACI%2CWAAA%3B%3BEAGR%2CYAXH%2CiBAWI%2C0BACG%3BIACI%2CYAAA%3BIACA%2CgBAAA%3B%3BEAHR%2CYAXH%2CiBAWI%2C0BACG%2CUAGI%3BIACI%2CUAAA%3B%3BEALZ%2CYAXH%2CiBAWI%2C0BACG%2CUAGI%2CSAEI%2COAAM%3BIACF%2CqBAAA%3B%3BEAPhB%2CYAXH%2CiBAWI%2C0BACG%2CUAGI%2CSAEI%2COAAM%2CIAEF%2CKAAI%3BIACA%2CUAAA%3B%3BEApBxB%2CYAAC%2CiBA0BG%3BIACI%2CQAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3BIACA%2CWAAW%2CgBAAX%3BIACA%2CYAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CcAAA%3B%3BEArCR%2CYAAC%2CiBA0BG%2CUAYG%3BIACK%2CWAAA%3BIACA%2CUAAA%3BIACA%2CqBAAA%3BIACA%2CcAAA%3B%3BEA1CZ%2CYAAC%2CiBA0BG%2CUAYG%2CSAKK%3BIACG%2CmBAAA%3B%3BEACA%2CYA7Cd%2CiBA0BG%2CUAYG%2CSAKK%2COAEI%3BIACI%2CoBAAA%3BIACA%2CkBAAA%3BIACA%2CcAAA%3BIACA%2CWAAA%3B%3BEAJL%2CYA7Cd%2CiBA0BG%2CUAYG%2CSAKK%2COAEI%2CQAKI%3BIACI%2CWAAA%3B%3BEACC%2CYApDxB%2CiBA0BG%2CUAYG%2CSAKK%2COAEI%2CQAKI%2CKAEM%3BIACG%2CiBAAA%3B%3BEC%5C%2FLjC%3BIACI%2CkBAAA%3BIACA%2CsBAAA%3BIACA%2CwBAAA%3BIACA%2CkBAAA%3BIACA%2CwBAAA%3BIACA%2CgB%5C%2FF7FK%2CoB%2BF6FL%3BIACA%2C0BAAA%3BIACA%2CgB%5C%2FF%5C%2FFK%2CoB%2BF%2BFL%3BIACA%2C0BAAA%3BIAEA%2CwBAAA%3BIACA%2CuBAAA%3BIACA%2CyBAAA%3BIACA%2CyBAAA%3BIACA%2CsBAAA%3BIACA%2CyBAAA%3BIACA%2CoBAAA%3BIAEA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2CkBAAA%3BIACA%2CiBAAA%3BIACA%2CsBAAA%3BIACA%2CwBAAA%3BIACA%2CuBAAA%3BIACA%2CeAAA%3B%3BEC3HP%3BIACC%2CgBAAA%3BIACA%2CYAAA%3BIACA%2CuDAAA%3B%3BEAEA%3BIACD%2CwBAAA%3B%3BEAEC%2CYACD%3BIACE%2CmBAAA%3B%3BEAID%2CuBACD%3BIACE%2CUAAA%3B%3BEAFD%2CuBAOD%2CeACI%2CgBAAc%3BIxE%2BQf%2CiCAAA%3BIwE7QF%2CkBCyCsC%2CmBDzCtC%3BIACA%2COC8CiC%2CsBD9CjC%3BIACA%2CSCyCmC%2CwBDzCnC%3BIACA%2CWC0CqC%2CmBD1CrC%3BIACA%2CaC0CuC%2CmBD1CvC%3BIACA%2CgBCiD0C%2CmBDjD1C%3BIACA%2CgBCiD0C%2CmBDjD1C%3BIACA%2CoBAAA%3BIACA%2CWAAA%3B%3BEAGC%2CuBAdF%2CeAcG%2CMAAS%2CgBAAc%3BIxEkQvB%2CgCAAA%3BIwEhQF%2CkBCuC6C%2CqBDvC7C%3BIACA%2COCuCwC%2CwBDvCxC%3B%3BEAGC%2CuBApBF%2CeAoBG%2CWAEA%2CgBACD%3BEAFA%2CuBArBF%2CeAqBG%2COACA%2CgBACD%3BEAHA%2CuBApBF%2CeAoBG%2CWAEA%2CgBAED%3BEAHA%2CuBArBF%2CeAqBG%2COACA%2CgBAED%3BIACC%2CkBC4B4C%2CqBD5B5C%3BIACA%2COC4BuC%2CwBD5BvC%3B%3BEAGD%2CuBA7BF%2CeAoBG%2CWAEA%2CgBAMA%2CeACA%3BEAAD%2CuBA7BF%2CeAqBG%2COACA%2CgBAMA%2CeACA%3BEACD%2CuBA9BF%2CeAoBG%2CWAEA%2CgBAMA%2CeAEA%3BEAAD%2CuBA9BF%2CeAqBG%2COACA%2CgBAMA%2CeAEA%3BIACC%2CkBCrB4B%2CqCDqB5B%3BIxEiPD%2CgCAAA%3B%3BEwEvRF%2CuBA8CC%3BIACA%2CiBAAA%3B%3BEAcD%2CuBAfC%2CUAcC%2CIAAI%2CSAAS%2CIAAI%2CaAClB%2CMAAS%2CgBACT%3BIACA%2C6BAAA%3BIACA%2COChBsC%2CsBDgBtC%3B%3BEAGA%2CuBArBA%2CUAcC%2CIAAI%2CSAAS%2CIAAI%2CaAClB%2CMAAS%2CgBAKR%2CeACA%3BEACD%2CuBAtBA%2CUAcC%2CIAAI%2CSAAS%2CIAAI%2CaAClB%2CMAAS%2CgBAKR%2CeAEA%3BIACC%2CkBCpD4B%2CqCDoD5B%3BIxEkND%2CgCAAA%3B%3BEwE3MD%2CuBA9BA%2CUA8BC%2CWAEA%2CgBACF%3BEAFC%2CuBA%5C%2FBA%2CUA%2BBC%2COACA%2CgBACF%3BEAHC%2CuBA9BA%2CUA8BC%2CWAEA%2CgBAED%3BEAHA%2CuBA%5C%2FBA%2CUA%2BBC%2COACA%2CgBAED%3BIACA%2C6BAAA%3BIACA%2COCpCuC%2CsBDoCvC%3BIACA%2CaD%5C%2FD4C%2CoBEeP%2CkBDgDrC%3B%3BEAGA%2CuBAxCA%2CUA8BC%2CWAEA%2CgBAOA%2CeACA%3BEAAD%2CuBAxCA%2CUA%2BBC%2COACA%2CgBAOA%2CeACA%3BEACD%2CuBAzCA%2CUA8BC%2CWAEA%2CgBAOA%2CeAEA%3BEAAD%2CuBAzCA%2CUA%2BBC%2COACA%2CgBAOA%2CeAEA%3BIACC%2CkBCvE4B%2CqCDuE5B%3B%3BEAxFH%2CuBA8CC%2CUAgDA%3BIACD%2CiBAAA%3B%3BEA%5C%2FFA%2CuBAoGD%2CuBACE%2CeACC%2CgBAAc%3BIACd%2CYCnDgC%2CuBDmDhC%3B%3BEAGF%2CuBAND%2CuBACE%2CeAKA%2COACG%2CgBAAc%3BIACjB%2CcChD6C%2CqBDgD7C%3B%3BEASF%2CYAAC%2C6BACC%3BIACD%2CUAAA%3BIACA%2CyBAAA%3B%3BEAEA%2CYALA%2C6BACC%2CuBAIA%3BIACC%2CUAAA%3B%3BEAGF%2CYATA%2C6BACC%2CuBAQA%3BIACC%2CcAAA%3B%3BEAXF%2CYAgBD%3BIACE%2CUAAA%3BIACA%2CyBAAA%3BIACA%2CaAAA%3B%3BEAEA%2CYALF%2CYAKG%3BIACF%2CyBAAA%3B%3BEAGC%2CYATF%2CYASG%3BIACF%2CUAAA%3B%3BEA0BC%2CuBAlBF%2CGAkBG%2C8BAGA%3BEAFD%2CuBAnBF%2CGAmBG%2CgCAEA%3BEADD%2CuBApBF%2CGAoBG%2CmCACA%3BIACA%2CSAAA%3BIxE2GA%2CWwE1GoB%2CgBxE0GpB%3B%3BEwEvGD%2CuBA1BF%2CGA0BG%2C4BACA%3BIACD%2COAAA%3B%3BEAGA%2CuBA%5C%2FBF%2CGA%2BBG%2C6BACA%3BIACA%2CUAAA%3BIACA%2CQAAA%3B%3BEAnCF%2CuBAwCD%2CSAAQ%3BIACN%2CqBAAA%3BIACA%2CsBAAA%3B%3BEAKD%3BIACD%2CkBAAA%3BIACA%2CWAAA%3B%3BEAGC%3BIxE8EE%2CSAAA%3BIAAA%2CUAAA%3BIoC1KA%2CqBAAA%3BIoC8FH%2CaAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2C2BAAA%3BIACA%2CqBAAA%3BIACA%2CmBAAA%3B%3B%3BEAEC%2CuBADD%2CqBACE%2CMAAS%3BIACV%2CcAAA%3BIACC%2CUAAA%3BIACA%2CmBAAA%3B%3BEAZD%2CuBAeC%3BIACA%2CqBAAA%3B%3BEAhBD%2CuBAeC%2CKAGE%2CgBAAc%2CEACjB%3BIACC%2CkBAAA%3BIACA%2CcAAA%3BIACA%2CUAAA%3BIACA%2CQAAA%3BIACA%2CkBAAA%3B%3BEASD%2CuBAFD%2CuBACE%2CeACA%2COAAU%2CiBACP%2CgBAAc%3BIACjB%2CcChL6C%2CqBDgL7C%3B%3BEAID%2CuBARD%2CuBACE%2CeAOA%2CMAAS%2CiBAEN%2CgBAAc%3BEADlB%2CuBATD%2CuBACE%2CeAQA%2CMACG%2CgBAAc%3BIACjB%2CcCrL4C%2CqBDqL5C%3B%3BEAID%2CuBAfD%2CuBACE%2CeAcA%2CYACG%2CgBAAc%3BIACjB%2CgBAAA%3B%3BEAhDD%2CuBA%2BBD%2CuBAsBE%2CyBACD%2CQAAO%2CcACH%2CgBAAc%3BIACjB%2CgBAAA%3B%3B%3BEAUD%3BIEzQA%2CaAAA%3BIACA%2CmBAAA%3BIACA%2CWHU4B%2CiBGV5B%3BIACA%2CkBAAA%3BI1EkRE%2C2BAAA%3BIAAA%2CYuExQ2B%2CkBvEwQ3B%3B%3BEwEZF%2CsBEnQA%3BIACE%2CSHGoC%2CsBGHpC%3B%3B%3BEFsQF%2CuBACD%3BIACE%2CgBAAA%3B%3BEAFD%2CuBAKD%2CqBAGE%3BIACD%2CUAAA%3BIACA%2CSAAA%3B%3BEAOA%3B%3B%3BEACM%2CsBAAC%2COAEK%3BIACE%2CUAAA%3BIACA%2CSAAA%3B%3BEAEJ%2CsBANH%2COAMI%3BEACD%2CsBAPH%2COAOI%3BIACG%2CgBAAA%3B%3BEAFJ%2CsBANH%2COAMI%2CgBAGK%3BEAFN%2CsBAPH%2COAOI%2CwBAEK%3BIACE%2CuBAAA%3BIACA%2CQAAA%3B%3BEAMR%2CsBAjBH%2COAiBI%2CwBACK%3BIACE%2CgBAAA%3BIACf%2CYAAA%3B%3BEAGO%2CsBAvBH%2COAuBI%2CkBAEK%3BIACE%2CUAAA%3BIACA%2CUAAA%3B%3BEA5BlB%2CsBAgCC%3BIAEA%2CWAAA%3BIACA%2COAAA%3BIACA%2CmBAAA%3B%3BEApCD%2CsBAgCC%2CyBAKA%3BIACD%2CSDzT2C%2CmBCyT3C%3B%3BEAtCA%2CsBAgCC%2CyBAQG%2CkBAAoB%2CiBAEtB%2CgBAAc%3BEA1ChB%2CsBAgCC%2CyBASA%2CQAAO%2CcACN%2CgBAAc%3BIACd%2C6BAAA%3BIACA%2CODrRmD%2CoBCqRnD%3BIACA%2CWD1RuD%2CiBC0RvD%3BIACA%2CaD1RyD%2CiBC0RzD%3BIACA%2CiBAAA%3BIACA%2CSD1RqD%2CsBC0RrD%3BIACA%2CqBAAA%3BIACA%2CgBDzR4D%2CiBCyR5D%3BIACA%2CgBDzR4D%2CiBCyR5D%3BIACA%2CsBAAA%3BIxE7DA%2CiCAAA%3B%3BEwEgEA%2CsBAvBD%2CyBAQG%2CkBAAoB%2CiBAEtB%2CgBAAc%2CEAab%3BEAAD%2CsBAvBD%2CyBASA%2CQAAO%2CcACN%2CgBAAc%2CEAab%3BIACF%2CkBD1RgE%2CoBEApB%2CsBD0R5C%3BIACA%2COD1R2D%2CuBEApB%2CyBD0RvC%3BIxElEC%2CgCAAA%3B%3BEwEuEF%2CsBA9BC%2CyBAQG%2CkBAAoB%2CiBAsBvB%2COACG%2CgBAAc%3BEADlB%2CsBA9BC%2CyBASA%2CQAAO%2CcAqBP%2COACG%2CgBAAc%3BIACjB%2CkBDpSiE%2CoBEApB%2CsBDoS7C%3BIACA%2CODpS4D%2CuBEApB%2CyBDoSxC%3B%3BEAjED%2CsBAgCC%2CyBAsCF%2CkBAAoB%2CiBAAiB%2CWAAW%2CoBAAoB%3BIACnE%2CiBAAA%3B%3BEAvEA%2CsBAgCC%2CyBAsCF%2CkBAAoB%2CiBAAiB%2CWAAW%2CoBAAoB%2CiBAGjE%2CgBAAc%3BIACd%2CWDxS0D%2CmBEXvB%2CoBDmTnC%3BIACA%2CaDxS4D%2CmBEXvB%2CoBDmTrC%3BIACA%2CSCvTiC%2CwBDuTjC%3BIACA%2CODvSsD%2CsBEbvB%2CuBDoT%5C%2FB%3BIACA%2CkBDvS2D%2CmBEpBvB%2CoBD2TpC%3BIACA%2CgBDvS%2BD%2CmBERvB%2CoBD%2BSxC%3BIACA%2CgBDvS%2BD%2CmBERvB%2CoBD%2BSxC%3BIACA%2CYDvSuD%2CuBEtBvB%2CwBD6ThC%3BIACA%2CSAAA%3B%3BEAEA%2CsBApDD%2CyBAsCF%2CkBAAoB%2CiBAAiB%2CWAAW%2CoBAAoB%2CiBAGjE%2CgBAAc%2CEAWb%3BIACF%2CkBDvSmE%2CqBEhBvB%2CsBDuT5C%3BIACA%2CODvS8D%2CwBEhBvB%2CyBDuTvC%3B%3BEAtFD%2CsBAgCC%2CyBAsCF%2CkBAAoB%2CiBAAiB%2CWAAW%2CoBAAoB%2CiBAoBnE%2CaAAe%2CgBAAc%3BIAC3B%2CgBAAA%3B%3BEAGF%2CsBA9DC%2CyBAsCF%2CkBAAoB%2CiBAAiB%2CWAAW%2CoBAAoB%2CiBAwBlE%2COACG%2CgBAAc%3BIACjB%2CkBDpToE%2CqBEhBvB%2CsBDoU7C%3BIACA%2CODpT%2BD%2CwBEhBvB%2CyBDoUxC%3B%3BEAjGD%2CsBAgCC%2CyBA6EA%2CkBAAiB%3BIAClB%2CoBAAA%3B%3BEA9GA%2CsBAgCC%2CyBA6EA%2CkBAAiB%2CIAGhB%2CKAAG%3BIACH%2CmBAAA%3B%3BEAMD%2CsBADF%2CkBACG%3BIACF%2CcAAA%3B%3BEAxHA%2CsBA8HD%2CkBAAoB%2CiBAAiB%2CgBAAc%3BIACjD%2CaAAA%3B%3B%3BEAKD%2CsBAAyB%3BEACzB%2CsBAAyB%3BEACzB%3BIACD%2CgBAAA%3B%3BEAKC%2CoBACD%3BIE3aC%2CaAAA%3BIACA%2CmBAAA%3BIACA%2CWHU4B%2CiBGV5B%3BIACA%2CkBAAA%3BI1EkRE%2C2BAAA%3BIAAA%2CYuExQ2B%2CkBvEwQ3B%3BIwEwJD%2CWAAA%3B%3BEAHD%2CoBACD%2CYEraC%3BIACE%2CSHGoC%2CsBGHpC%3B%3BEFmaF%2CoBAMD%2CGAAE%2CMACE%3BIACH%2CcAAA%3B%3BEAIA%2CYAOD%2CQACE%3BIE9bD%2CaAAA%3BIACA%2CmBAAA%3BIACA%2CWHU4B%2CiBGV5B%3BIACA%2CkBAAA%3BI1EkRE%2C2BAAA%3BIAAA%2CYuExQ2B%2CkBvEwQ3B%3BIwE2KF%2CWAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3B%3BEAZA%2CYAOD%2CQACE%2CYExbD%3BIACE%2CSHGoC%2CsBGHpC%3B%3BEF8bD%2CYARF%2CQAQG%2CMACA%3BIACA%2CcAAA%3B%3BEAQH%3BIACC%2CQAAO%2C2BAAP%3B%3BEAOI%2CgBAJF%2CiBACA%2COACE%2CgBACD%2CeACE%3BEACD%2CgBALF%2CiBACA%2COACE%2CgBACD%2CeAEE%3BIACA%2CkBCzc4B%2C0BAA0B%2CwBDyctD%3B%3BEASL%2CWAAC%2CsBACA%2CQAAU%2CMAAG%3BIACZ%2CkBAAA%3BIACA%2CuCAAA%3BIACA%2CgBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAU%2CiBAAV%3BIACA%2CYAAA%3B%3BEAPF%2CWAAC%2CsBASA%3BIACC%2COAAM%2C6BAAN%3BIACA%2CQAAO%2CsBAAsB%2COAA7B%3B%3BEAXF%2CWAAC%2CsBASA%2CiBAGG%2CUAAU%2CgBAAc%3BIACzB%2CcAAA%3B%3BEAKJ%2CsBAAuB%2CiBAAmB%2CUAAO%2CGAAG%2C8BAAiC%2CgBAAc%3BIAClG%2CkBDzbiE%2CoBEApB%2CsBDyb7C%3BIACA%2CODzb4D%2CuBEApB%2CyBDybxC%3B%3B%3B%3BEAYA%2CeACA%2CQAAU%2CgBACT%3BIACC%2CgBAAA%3BIACA%2CWAAW%2CaAAX%3B%3B%3BEE5gBF%2C2BAA2B%2CCAAO%3BIAblC%2CcAAA%3BIACA%2CeAAA%3B%3BEAYA%2C2BAA2B%2CCAAO%3BIAblC%2CaAAA%3BIACA%2CcAAA%3B%3BEAYA%2C2BAA2B%2CCAAO%3BIAblC%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAYA%2C2BAA2B%2CCAAO%3BIAblC%2CaAAA%3BIACA%2CcAAA%3B%3BEAYA%2C2BAA2B%2CCAAO%3BIAblC%2CaAAA%3BIACA%2CcAAA%3B%3BEAYA%2C2BAA2B%2CCAAO%3BIAblC%2CsBAAA%3BIACA%2CuBAAA%3B%3B%3BEAGA%2CaAAa%3BIAEX%2CqBAAA%3BIACA%2CsBAAA%3B%3BEAHF%2CaAAa%3BIAEX%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAHF%2CaAAa%3BIAEX%2CaAAA%3BIACA%2CcAAA%3B%3BEAHF%2CaAAa%3BIAEX%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAHF%2CaAAa%3BIAEX%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAHF%2CaAAa%3BIAEX%2CaAAA%3BIACA%2CcAAA%3B%3BEAHF%2CaAAa%3BIAEX%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAHF%2CaAAa%3BIAEX%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAHF%2CaAAa%3BIAEX%2CaAAA%3BIACA%2CcAAA%3B%3BEAHF%2CaAAa%3BIAEX%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAHF%2CaAAa%3BIAEX%2CsBAAA%3BIACA%2CuBAAA%3B%3BEAHF%2CaAAa%3BIAEX%2CcAAA%3BIACA%2CeAAA%3B%3BEF4iBF%2C0BACC%3BIACA%2CcAAA%3B%3BEGjRC%2CaADW%2CoBACV%2CMACC%3BIACE%2CmBAAA%3BIACA%2CUAAA%3B%3BEClPN%2C8BDuPiC%2COAD3B%2COCtPL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBDwPwB%2COAFlB%2COCtPL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBDyPuB%2COAHjB%2COCtPL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMDsPM%2COCtPL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BDuPiC%2COAD3B%2COCtPL%2CoBAEC%2CeAAe%3BEAFjB%2CqBDwPwB%2COAFlB%2COCtPL%2CoBAEC%2CeAAe%3BEAFjB%2CoBDyPuB%2COAHjB%2COCtPL%2CoBAEC%2CeAAe%3BEAFjB%2CMDsPM%2COCtPL%2CoBAEC%2CeAAe%3BICEf%2CgBAAA%3BIACA%2CiBAAA%3B%3BEDCF%2C8BDiPiC%2COAD3B%2COChPL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBDkPwB%2COAFlB%2COChPL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBDmPuB%2COAHjB%2COChPL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMDgPM%2COChPL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BDiPiC%2COAD3B%2COChPL%2CoBAEC%2CeAAe%3BEAFjB%2CqBDkPwB%2COAFlB%2COChPL%2CoBAEC%2CeAAe%3BEAFjB%2CoBDmPuB%2COAHjB%2COChPL%2CoBAEC%2CeAAe%3BEAFjB%2CMDgPM%2COChPL%2CoBAEC%2CeAAe%3BICJf%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDOF%2C8BD2OiC%2COAD3B%2COC1OL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBD4OwB%2COAFlB%2COC1OL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBD6OuB%2COAHjB%2COC1OL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMD0OM%2COC1OL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BD2OiC%2COAD3B%2COC1OL%2CoBAEC%2CeAAe%3BEAFjB%2CqBD4OwB%2COAFlB%2COC1OL%2CoBAEC%2CeAAe%3BEAFjB%2CoBD6OuB%2COAHjB%2COC1OL%2CoBAEC%2CeAAe%3BEAFjB%2CMD0OM%2COC1OL%2CoBAEC%2CeAAe%3BICVf%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDaF%2C8BDqOiC%2COAD3B%2COCpOL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBDsOwB%2COAFlB%2COCpOL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBDuOuB%2COAHjB%2COCpOL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMDoOM%2COCpOL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BDqOiC%2COAD3B%2COCpOL%2CoBAEC%2CeAAe%3BEAFjB%2CqBDsOwB%2COAFlB%2COCpOL%2CoBAEC%2CeAAe%3BEAFjB%2CoBDuOuB%2COAHjB%2COCpOL%2CoBAEC%2CeAAe%3BEAFjB%2CMDoOM%2COCpOL%2CoBAEC%2CeAAe%3BIChBf%2CcAAA%3BIACA%2CeAAA%3B%3BEDmBF%2C8BD%2BNiC%2COAD3B%2COC9NL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBDgOwB%2COAFlB%2COC9NL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBDiOuB%2COAHjB%2COC9NL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMD8NM%2COC9NL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BD%2BNiC%2COAD3B%2COC9NL%2CoBAEC%2CeAAe%3BEAFjB%2CqBDgOwB%2COAFlB%2COC9NL%2CoBAEC%2CeAAe%3BEAFjB%2CoBDiOuB%2COAHjB%2COC9NL%2CoBAEC%2CeAAe%3BEAFjB%2CMD8NM%2COC9NL%2CoBAEC%2CeAAe%3BICtBf%2CcAAA%3BIACA%2CeAAA%3B%3BEDyBF%2C8BDyNiC%2COAD3B%2COCxNL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBD0NwB%2COAFlB%2COCxNL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBD2NuB%2COAHjB%2COCxNL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMDwNM%2COCxNL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BDyNiC%2COAD3B%2COCxNL%2CoBAEC%2CeAAe%3BEAFjB%2CqBD0NwB%2COAFlB%2COCxNL%2CoBAEC%2CeAAe%3BEAFjB%2CoBD2NuB%2COAHjB%2COCxNL%2CoBAEC%2CeAAe%3BEAFjB%2CMDwNM%2COCxNL%2CoBAEC%2CeAAe%3BIC5Bf%2CuBAAA%3BIACA%2CwBAAA%3B%3BED%2BBF%2C8BDmNiC%2COAD3B%2COClNL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBDoNwB%2COAFlB%2COClNL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBDqNuB%2COAHjB%2COClNL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMDkNM%2COClNL%2CoBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BDmNiC%2COAD3B%2COClNL%2CoBAEC%2CeAAe%3BEAFjB%2CqBDoNwB%2COAFlB%2COClNL%2CoBAEC%2CeAAe%3BEAFjB%2CoBDqNuB%2COAHjB%2COClNL%2CoBAEC%2CeAAe%3BEAFjB%2CMDkNM%2COClNL%2CoBAEC%2CeAAe%3BIClCf%2CcAAA%3BIACA%2CeAAA%3B%3BEF0PA%2COAAC%2CoBACC%2CaACE%3BIACE%2CeAAA%3B%3BEjErKN%2CkBAGI%3BIACI%2CgBAAA%3B%3BEAJR%2CkBAOI%2CSAAQ%3BIACJ%2CYAAA%3B%3BEoE1DJ%2CqBAAC%2CMAAM%3BIACH%2CmBAAA%3BIACA%2CiBAAA%3B%3BEAHR%2CqBAMI%3BIACI%2CSAAA%3B%3BEAPR%2CqBAMI%2CaAGI%3BI9EgMR%2CiBAAA%3B%3BE8EzMA%2CqBAcI%2CQACI%3BIACI%2CaAAA%3BIACA%2CcAAA%3B%3BEAjBZ%2CqBAcI%2CQAMI%3BI9EqLR%2CeAAA%3B%3BE8EzMA%2CqBAcI%2CQAUI%3BI9EiLR%2CiBAAA%3BI8E%5C%2FKY%2CoBAAA%3B%3BEA1BZ%2CqBA8BI%2COACI%3BI9E0KR%2CeAAA%3B%3BE8EzMA%2CqBA8BI%2COAKI%3BIACI%2CmBAAA%3B%3BEAEA%2CqBARR%2COAKI%2COAGK%3BI9EmKb%2CeAAA%3BI8EjKgB%2CWAAA%3B%3BEjFijBhB%2CcAAc%2CQAAQ%2CKAClB%2CKAAI%2CQACA%3BIACI%2CeAAA%3B%3BEAIZ%2CKAAK%2CKAAK%3BIACP%2CiBAAA%3B%3BEADH%2CKAAK%2CKAAK%2CQAEP%2CQAAO%3BIACH%2CWAAA%3B%3BEAIP%2CeAEI%3B%3BIAEI%2CUAAA%3BIACA%2CmBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEAPR%2CeAUI%3BIACI%2CWAAA%3B%3BEAIR%3BIACI%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAGI%2COAAO%2CKAAM%2CcADjB%2CiBAGU%3BIACE%2CWAAA%3B%3BEAUhB%2CsBACI%3BIACI%2CiBAAA%3BIACA%2CSAAA%3B%3BEAHR%2CsBAMI%3BIACI%2CYAAA%3BIACA%2CeAAA%3B%3BEAGI%2CsBALR%2COAII%2CMACK%3BIACG%2CeAAA%3B%3BEAKhB%2CcAAc%2CQAAQ%2CKAAM%2CeAAe%2COAEvC%2CMACM%3BEAFV%2CKAAK%2CcACD%2CMACM%3BIACE%2CgBAAA%3B%3BECwcZ%2CuBACI%2CaACI%2CgBACI%3BIACI%2CoBAAA%3B%3BEAJhB%2CuBACI%2CaAMI%2CeACI%3BIACI%2CoBAAA%3B%3BEAThB%2CuBACI%2CaAWI%2CgBACI%3BIACI%2CoBAAA%3B%3BEAKhB%2CYACI%3BIACI%2CiBAAA%3B%3BEAFR%2CYAII%2CgBACI%3BIACI%2CoBAAA%3B%3BEANZ%2CYAII%2CgBACI%2CoBAEI%2CQAAO%3BIACH%2CaAAA%3B%3BEAKhB%3BIiFhrCA%2CqBAAA%3BIACA%2CkBAAA%3B%3BE%5C%2FEFA%2CiBAAC%3BEACD%2CiBAAC%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CiBAAC%3BIACG%2CWAAA%3B%3BEF0qCJ%2CiBiF7qCA%3BIAEI%2CeAAA%3BI%5C%2FE8OJ%2CqBAAA%3BI%2BB9QA%2CqBAAA%3B%3BEAMA%2CiBgDwBA%2CiBhDxBC%3BIAqUD%2CmCAAA%3BIACA%2CkCAAA%3BI%5C%2FB9DA%2CYAAA%3BIAAA%2CcAAA%3BIAAA%2CcAAA%3BIAAA%2CaxBlLQ%2CUwBkLR%3BIAAA%2CSAAA%3BIAAA%2CmBAAA%3BI%2BBqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEApUI%2CiBgDWJ%2CiBhDZC%2CMACI%3BI%5C%2FB2PL%2CcAAA%3B%3BE%2BBrPI%2CiBgDKJ%2CiBhDNC%2COACI%3BI%5C%2FBqPL%2CcAAA%3B%3BE%2BEqEA%2CiBArTA%2CiBAqTC%3BI%5C%2FErED%2CqBAAA%3BI%2BB9QA%2CqBAAA%3B%3BEAMA%2CiBgDwBA%2CiBAqTC%2COhD7UA%3BIAqUD%2CmCAAA%3BIACA%2CkCAAA%3BI%5C%2FB9DA%2CYAAA%3BIAAA%2CcAAA%3BIAAA%2CcAAA%3BIAAA%2CaxBlLQ%2CUwBkLR%3BIAAA%2CSAAA%3BIAAA%2CmBAAA%3BI%2BBqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEApUI%2CiBgDWJ%2CiBAqTC%2COhDjUA%2CMACI%3BI%5C%2FB2PL%2CcAAA%3B%3BE%2BBrPI%2CiBgDKJ%2CiBAqTC%2COhD3TA%2COACI%3BI%5C%2FBqPL%2CcAAA%3B%3BEF67BA%2CiBiFt%5C%2FBA%3BI%5C%2FEyDA%2CSAAA%3BIAAA%2CUAAA%3BIoC1KA%2CqBAAA%3BIpC0KA%2CgBAAA%3BIAAA%2CYAAA%3BIAAA%2CaAAA%3BIAAA%2CeAAA%3BIAAA%2CYAAA%3BIAAA%2CYAAA%3BI%2BEhDI%2CsBAAA%3BIACA%2CaAAA%3BIACA%2CkBAAA%3BI%5C%2FE8CJ%2CSAAA%3BIAAA%2CUAAA%3BIAAA%2CgDAAA%3B%3BEF67BA%2CiBiFt%5C%2FBA%2CgBAsBI%3BI%5C%2FEmCJ%2CSAAA%3B%3BE%2BE3BQ%2CiBA9BR%2CgBAsBI%2CGAQK%3BIAEG%2CeAAA%3B%3BEAuTZ%2CiBAvVA%2CgBAuVC%3BEACD%2CiBAxVA%2CgBAwVC%3BIACG%2C0BAAA%3BIACA%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CSAAA%3BIACA%2CkBAAA%3BIACA%2CQAAA%3B%3BEAGJ%2CiBAjWA%2CgBAiWC%3BIACG%2CiBAAA%3BI%5C%2FEzSJ%2CsDAAA%3BI%2BE2SI%2CWAAA%3B%3BEAGJ%2CiBAvWA%2CgBAuWC%3BIACG%2CiBAAA%3BI%5C%2FE%5C%2FSJ%2CsDAAA%3BI%2BEiTI%2CWAAA%3B%3BEAlCJ%2CiBAxUA%2CgBAwUC%3BI%5C%2FE%5C%2FQD%2CWAAA%3BIAAA%2CUAAA%3B%3BE%2BEoRA%2CiBA7UA%2CgBA6UC%3BI%5C%2FEpRD%2CWAAA%3BIAAA%2CUAAA%3B%3BE%2BEZA%2CiBAAC%3BIACG%2CiBAAA%3B%3BEADJ%2CiBAAC%2COAGG%3BIACI%2CcAAA%3B%3BEjFq8BR%2CiBA1oCD%2CQAAO%3BIACH%2CaAAA%3B%3BEACA%2CiBAFJ%2CQAAO%2CSAEF%3BIACG%2CaAAA%3B%3BEAuoCP%2CiBA1oCD%2CQAAO%2CSAKH%3BIACI%2CkBAAA%3BIACA%2CcAAA%3B%3BEAmoCP%2CiBA1oCD%2CQAAO%2CSASH%3BIACI%2CgBAAA%3B%3BEAgoCP%2CiBA1oCD%2CQAAO%2CSAYH%3BIACI%2CqBAAA%3BIACA%2CiBAAA%3BIACA%2CWAAW%2CaAAX%3B%3BEACA%2CiBAhBR%2CQAAO%2CSAYH%2CKAIK%3BIACG%2CkBAAA%3BIACA%2CmBAAA%3BIACA%2C2BAAA%3BIACA%2CsCAAA%3B%3BEA%2BoCX%2CYAAa%3BIA5sCT%2CUAAA%3BIACA%2CSAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2CgBAAA%3BIAGJ%2CYAAA%3BIACA%2CcAAA%3BIACA%2CkBAAA%3B%3BEAusCA%2CYAAa%2CgBAAe%3BEAAS%2CYAAa%2CgBAAe%3BIAC7D%2CaAAA%3B%3BEyBz9BJ%2C%2BBAEI%2CQAAO%3BEADX%2CyBACI%2CQAAO%3BIACH%2CaAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3B%3BEAGR%2CqBACI%3BIACI%2C4BAAA%3B%3BEAGR%3BIAEI%2CUAAA%3BIACA%2CWAAA%3BIAEA%2CQAAA%3BIACA%2CmBAAA%3B%3BEANJ%2CYAOI%3BIACI%2CaAAA%3BIACA%2CiBAAA%3B%3BEAGR%2C%2BBAEI%3BEADJ%2CyBACI%3BIACI%2CaAAA%3BIACA%2CgBAAA%3BIACA%2CgBAAA%3BIACA%2CwBAAA%3B%3BEyD3PR%3BIACI%2CaAAA%3BIACA%2CkBAAA%3B%3BEC3CJ%2CqBACI%2CaACI%3BIjFiQR%2CeAAA%3B%3BEiFnQA%2CqBACI%2CaAKI%2CcACI%3BIACI%2CYAAA%3BIACA%2CSAAA%3BIACA%2CWAAA%3B%3BEAVhB%2CqBACI%2CaAKI%2CcACI%2CqBAIM%3BIACE%2CWAAA%3B%3BEAZpB%2CqBACI%2CaAKI%2CcASI%3BIACK%2CSAAA%3BIACA%2CWAAA%3B%3BECuPL%2CyBAHR%2CiBAEI%2CQACK%3BIACG%2CgBAAA%3B%3BEAMhB%2CYACI%3BEADJ%2CYAEI%3BIlFdJ%2CeAAA%3B%3BEmFxRA%3BIACI%2CUAAA%3BIACA%2CYAAA%3BIAEA%2CQAAA%3BIACA%2CgBAAA%3B%3BECiRJ%2CoBACI%2CcACI%3BIACI%2CaAAA%3B%3BEAHZ%2CoBAMI%3BIACI%2CgBAAA%3B%3BEAGR%2CkBAAmB%2CcAAc%2CUAAU%3BIACtC%2CSAAA%3B%3BEADL%2CkBAAmB%2CcAAc%2CUAAU%2CqBAErC%3BIACE%2CyBAAA%3B%3BECzJR%3BIrF8IA%2CsBAAA%3BIAAA%2CYAAA%3BIqF1II%2CkBAAA%3BIACA%2CgBAAA%3BIACA%2CSAAA%3BIACA%2CUAAA%3BIACA%2C4DAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CgBAAA%3BIACA%2CQAAA%3B%3BEACA%2CwBAAC%3BIrFiIL%2CYAAA%3BIqF%5C%2FHQ%2CUAAA%3BIACA%2CmBAAA%3B%3BEAKR%2CqBACI%3BIAII%2CgBAAA%3BIACA%2CmBAAA%3B%3BEANR%2CqBACI%2CaACI%3BIrFuHR%2CiBAAA%3B%3BEqFzHA%2CqBASI%2CoBACI%2CiBACM%3BIACE%2CWAAA%3B%3BEAMhB%2CqBACI%3BIACI%2CiBAAA%3BIACA%2CUAAA%3B%3BEAHR%2CqBAMI%3BIACI%2CaAAA%3BIACA%2CmBAAA%3B%3BEARR%2CqBAUI%2COAAM%3BEAVV%2CqBAWI%3BEAXJ%2CqBAYI%3BEAZJ%2CqBAaI%3BIACI%2CaAAA%3BIACA%2CsBAAA%3BIACA%2CYAAA%3B%3BEAhBR%2CqBAmBI%2COAAM%3BIACF%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CqBAAA%3BIACA%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEAGI%2CqBATR%2COAAM%2COAQD%2CmBACI%3BIACG%2COAAA%3BIACA%2CQAAA%3B%3BEA9BhB%2CqBAmCI%3BIACI%2CgBAAA%3BIACA%2CgBAAA%3B%3BEClCR%3B%3B%3B%3B%3B%3B%3B%3BEAAA%2CwBAQI%2CUACM%2CwBACI%3BIACE%2CWAAA%3BIACA%2CWAAA%3B%3BEAZhB%2CwBAiBI%2CwBACI%2CUACM%3BIACE%2CgBAAA%3B%3BEAEA%2CwBALZ%2CwBACI%2CUACM%2CSAGG%2CKACG%3BIACI%2CkBAAA%3B%3BEAGJ%2CwBAVhB%2CwBACI%2CUACM%2CSAGG%2CKAKI%2CaACG%3BIACI%2CcAAA%3B%3BEAS5B%2CyBACI%3BIACI%2CYAAA%3B%3BEAFR%2CyBAKI%2CiBACI%3BIACI%2CoBAAA%3B%3BEC9BZ%2CwBAGI%2CwBACI%2CsBACM%3BIACE%2CcAAA%3B%3BEC5JZ%2CYAAC%2CiBACG%3BIACQ%2CaAAA%3B%3BECqBhB%2C0BAKI%3BIACI%2CWAAA%3BIACA%2CUAAA%3B%3BEAPR%2C0BAUI%3BIACI%2CYAAA%3BIACA%2CUAAA%3B%3BEAGI%2C0BALR%2CwBAII%2COAAM%2CIACE%3BIACA%2CcAAA%3B%3BE3EqKhB%2CaACI%3BIACI%2CmBAAA%3B%3BEAIR%3BIACI%2CkBAAA%3BIACA%2CUAAA%3B%3BEAFJ%2CaAII%3BIACI%2CWAAA%3BIACA%2CYAAA%3BIACA%2CgBAAA%3B%3BEAPR%2CaAII%2CiBAKI%3BIACI%2CYAAA%3B%3BEAVZ%2CaAII%2CiBAKI%2CWAGI%3BIACI%2CYAAA%3BIACA%2CiBAAA%3B%3BEAdhB%2CaAII%2CiBAKI%2CWAQI%3BIACI%2CcAAA%3BIACA%2CWAAA%3BIACA%2CeAAA%3B%3BEAKJ%2CaArBR%2CiBAoBK%2CUAAU%2CGACN%3BIdAb%2C8BAAA%3BIcEgB%2CYAAA%3BIACA%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CSAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3BIACA%2CQAAA%3B%3BEAMhB%3BIdfA%2CgBAAA%3BIAAA%2CiBAAA%3B%3BEcsCI%2CKAAC%2CcACG%3BIACI%2CWAAA%3B%3BEASZ%2CcAEI%3BEADJ%2CmBACI%3BIACI%2CcAAA%3B%3BEL5IR%2CyBACI%3BIACI%2CmBAAA%3B%3BEAFR%2CyBACI%2CUAEM%2C2BACI%3BIToFd%2CgBAAA%3BIwBwcA%2CsBAAA%3B%3BEfhiBA%2CyBACI%2CUAEM%2C2BACI%2CSe6tBZ%3BIAoDF%2CSAAA%3B%3BExBj7BA%2CyBS6JI%2CUAEM%2C2BACI%2CSThKb%3BEACD%2CyBS4JI%2CUAEM%2C2BACI%2CST%5C%2FJb%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CyBSuJI%2CUAEM%2C2BACI%2CST1Jb%3BIACG%2CWAAA%3B%3BEwBurBJ%2CyBfjiBI%2CUAEM%2C2BACI%2CSe8hBb%2COAAO%3BEACR%2CyBfliBI%2CUAEM%2C2BACI%2CSe%2BhBb%2CSAAS%3BIxB3cV%2CqBAAA%3BIAAA%2CYAAA%3BIwB8cI%2CsBAAA%3BIACA%2CSAAS%2CGAAT%3BIACA%2CWAAA%3BIACA%2CWAAA%3B%3BEfziBJ%2CyBACI%2CUAEM%2C2BACI%2CSewiBd%3BIxBpdA%2CqBAAA%3BIAAA%2CiBAAA%3BIAAA%2CYAAA%3BIwBwdI%2CsBAAA%3BIACA%2CWAAA%3B%3BEAGJ%2CyBfnjBI%2CUAEM%2C2BACI%2CSegjBb%2CIAAI%2CSACC%3BIxB7dN%2CqBAAA%3BIAAA%2CiBAAA%3BIAAA%2CYAAA%3BIwBkeQ%2CsBAAA%3BIACA%2CWAAA%3B%3BEAPR%2CyBfnjBI%2CUAEM%2C2BACI%2CSegjBb%2CIAAI%2CSAUC%3BIxBteN%2CYAAA%3BIwBweQ%2CWAAA%3B%3BEfliBA%2CgCADJ%2CSACK%3BIACG%2CmBAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CSAAA%3B%3BEAGJ%2CgCATJ%2CSASK%3BIACG%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3B%3BEAKJ%2CgCADJ%2CKACK%3BIACG%2CUAAA%3B%3BEAGJ%2CgCALJ%2CKAKK%2CIAAI%3BIACD%2CkBAAA%3B%3BEAGJ%2CgCATJ%2CKASK%3BIACG%2CiBAAA%3B%3BEAKJ%2CgCADJ%2CYACK%3BIACG%2CgBAAA%3B%3BEWlBZ%2CuBAEI%3BEADJ%2CeACI%3BIACI%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CmBAAA%3BIACA%2CUAAA%3B%3BEAEA%2CuBANJ%2CeAMQ%3BEAAJ%2CeANJ%2CeAMQ%3BIpBoCZ%2C8BAAA%3BIoBlCY%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CoBAAA%3BIACA%2CUAAA%3B%3BEsElOZ%2CqBAEI%3BEAFJ%2CqBAGI%2COAAM%3BI1F8PV%2CgBAAA%3B%3BE0FzPA%2CkBACI%3BIACI%2CUAAA%3B%3BErEmVJ%2CSAAC%2COAAO%3BIAKJ%2CYAAA%3BIrBjGR%2CQAAA%3BIAAA%2CSAAA%3BIAAA%2CmBAAA%3BIAAA%2CYAAA%3BIqBsGQ%2CWAAA%3B%3BEAVJ%2CSAAC%2COAAO%2CMACJ%3BIrB7FR%2CgBAAA%3B%3BEwBulBA%2CSH3fK%2COAAO%2CMACJ%2COG0fP%2CIAAI%2CSACC%3BIACE%2CuBAAA%3BIACA%2CWAAA%3BIACA%2CWAAA%3BIA4FR%2CgBAAA%3BIANA%2CUAAA%3B%3BEA1FA%2CSH3fK%2COAAO%2CMACJ%2COG0fP%2CIAAI%2CSAeC%3BIACE%2CWAAA%3BIACA%2CWAAA%3B%3BEH5gBJ%2CSAAC%2COAAO%2CMACJ%2COGuZN%3BIxBpfF%2CeAAA%3BIwBwfI%2CqBAAA%3B%3BEA6HA%2CSHzhBC%2COAAO%2CMACJ%2COGshBP%2COAEI%3BEAAD%2CSHzhBC%2COAAO%2CMACJ%2COGuhBP%2CSACI%3BIACG%2CaAAA%3B%3BEH5gBR%3BIAEI%2CmBAAA%3B%3BEAII%2C0BAFJ%2CUAEK%3BIACG%2CgCAAA%3BIACA%2CcAAA%3BIACA%2CmBAAA%3BIACA%2CWAAA%3B%3BEAJJ%2C0BAFJ%2CUAEK%2COAMG%3BIACI%2CmBAAA%3BIACA%2CeAAA%3BIACA%2CgBAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CSAAA%3B%3BEAGJ%2C0BAjBR%2CUAEK%2COAeI%3BIACG%2CmBAAA%3BIACA%2CoBAAA%3BIACA%2CmBAAA%3B%3BEAHJ%2C0BAjBR%2CUAEK%2COAeI%2CMAKG%3BIACI%2CqBAAA%3BIACA%2CeAAA%3BIACA%2CgBAAA%3B%3BEAEA%2C0BA3BhB%2CUAEK%2COAeI%2CMAKG%2CMAKK%3BIACG%2CeAAA%3B%3BEAXZ%2C0BAjBR%2CUAEK%2COAeI%2CMAeG%3BIACI%2CgCAAA%3BIACA%2CgBAAA%3B%3BEAhCZ%2C0BAFJ%2CUAEK%2COAoCG%3BIACI%2CaAAA%3B%3BEAIR%2C0BA3CJ%2CUA2CK%2CIAAI%3BIACD%2CkBAAA%3BIACA%2CQAAA%3BIACA%2CMAAA%3B%3BEAIJ%2C0BAlDJ%2CUAkDK%2CMACG%3BIrBjKZ%2CeAAA%3B%3BEqBuKQ%2C0BAzDJ%2CUAyDK%3BIACG%2CWAAA%3B%3BEAIJ%2C0BA9DJ%2CUA8DK%3BIACG%2CYAAA%3B%3BEAKZ%2C0BACI%3BIACI%2CcAAA%3B%3BEAOI%2CcAHE%2CSACV%2CSACK%2CKACI%3BIACG%2CWAAA%3B%3BEADJ%2CcAHE%2CSACV%2CSACK%2CKACI%2CSAGK%3BIACE%2CiBAAA%3B%3BEL9YpB%2CcACI%3BIACI%2CgCAAA%3B%3BEAFR%2CcAKI%2CeAEI%3BEAPR%2CcAKI%2CeAGI%3BEARR%2CcAKI%2CeAII%2C2BAA6B%3BIACzB%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CUAAA%3B%3BEAZZ%2CcAKI%2CeAUI%3BIACI%2CaAAA%3BIACA%2CUAAA%3B%3BEAjBZ%2CcA2BI%2CKAAI%3BEA3BR%2CcA4BI%3BEA5BJ%2CcA6BI%3BIACI%2CiBAAA%3B%3BE2E9ER%2CgBACM%3BIACE%2CiBAAA%3B%3BEhFoFR%2CmBAEI%2CYACI%2COAAM%3BIACF%2CgBAAA%3B%3BEASZ%2C0BACI%2CQAAO%2CKACH%2COAAM%2CIAAI%2CSACN%2CeAGI%3BIAEI%2CmBAAA%3B%3BEAOpB%2CuBACI%2CaACI%3BIACI%2CkBAAA%3B%3BEAHZ%2CuBACI%2CaAKI%3BIACI%2CYAAA%3BIACA%2CgBAAA%3B%3BEiFlGZ%2CgBACI%2CWACI%3BIACI%2CcAAA%3B%3BE3EgNZ%2CyBAKI%3BIACI%2CWAAA%3BIACA%2CUAAA%3B%3BEAPR%2CyBAUI%3BIACI%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CUAAA%3B%3BEAKA%2C0BAA2B%2C0BAF%5C%2FB%3BEAEI%2C0BAA2B%2C0BAD%5C%2FB%3BEAEI%2C2BAA4B%2C0BAHhC%3BEAGI%2C2BAA4B%2C0BAFhC%3BEAGI%2CqBAAsB%2C0BAJ1B%3BEAII%2CqBAAsB%2C0BAH1B%3BIAIQ%2CUAAA%3B%3BEfiNZ%2CcACI%2CeACI%3BI2EncR%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3EqcQ%2CcAJJ%2CeAIK%2CoBACG%3BI2EvcZ%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3E0cQ%2CcATJ%2CeASK%2CoBACG%3BI2E5cZ%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3E%2BcQ%2CcAdJ%2CeAcK%2CoBACG%3BI2EjdZ%2CcAAA%3BIACA%2CeAAA%3B%3BE3EodQ%2CcAnBJ%2CeAmBK%2CoBACG%3BI2EtdZ%2CcAAA%3BIACA%2CeAAA%3B%3BE3EydQ%2CcAxBJ%2CeAwBK%2CoBACG%3BI2E3dZ%2CcAAA%3BIACA%2CeAAA%3B%3BE3E8dQ%2CcA7BJ%2CeA6BK%2CoBACG%3BI2EheZ%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3EmeQ%2CcAlCJ%2CeAkCK%2CoBACG%3BI2EreZ%2CcAAA%3BIACA%2CeAAA%3B%3BE3EweQ%2CcAvCJ%2CeAuCK%2CoBACG%3BI2E1eZ%2CeAAA%3BIACA%2CgBAAA%3B%3BE3E%2BeA%2CcAAc%2C8BAEV%2CeACI%3BEAFR%2CcAAc%2CoBACV%2CeACI%3BI2EnfR%2CcAAA%3BIACA%2CeAAA%3B%3BE3EqfQ%2CcANM%2C8BAEV%2CeAIK%2CoBACG%3BEADJ%2CcALM%2CoBACV%2CeAIK%2CoBACG%3BI2EvfZ%2CgBAAA%3BIACA%2CiBAAA%3B%3BE3E0fQ%2CcAXM%2C8BAEV%2CeASK%2CoBACG%3BEADJ%2CcAVM%2CoBACV%2CeASK%2CoBACG%3BI2E5fZ%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3E%2BfQ%2CcAhBM%2C8BAEV%2CeAcK%2CoBACG%3BEADJ%2CcAfM%2CoBACV%2CeAcK%2CoBACG%3BI2EjgBZ%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3EogBQ%2CcArBM%2C8BAEV%2CeAmBK%2CoBACG%3BEADJ%2CcApBM%2CoBACV%2CeAmBK%2CoBACG%3BI2EtgBZ%2CcAAA%3BIACA%2CeAAA%3B%3BE3EygBQ%2CcA1BM%2C8BAEV%2CeAwBK%2CoBACG%3BEADJ%2CcAzBM%2CoBACV%2CeAwBK%2CoBACG%3BI2E3gBZ%2CcAAA%3BIACA%2CeAAA%3B%3BE3E8gBQ%2CcA%5C%2FBM%2C8BAEV%2CeA6BK%2CoBACG%3BEADJ%2CcA9BM%2CoBACV%2CeA6BK%2CoBACG%3BI2EhhBZ%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3EmhBQ%2CcApCM%2C8BAEV%2CeAkCK%2CoBACG%3BEADJ%2CcAnCM%2CoBACV%2CeAkCK%2CoBACG%3BI2ErhBZ%2CcAAA%3BIACA%2CeAAA%3B%3BE3EwhBQ%2CcAzCM%2C8BAEV%2CeAuCK%2CoBACG%3BEADJ%2CcAxCM%2CoBACV%2CeAuCK%2CoBACG%3BI2E1hBZ%2CeAAA%3BIACA%2CgBAAA%3B%3BE3EgiBA%2CcAAc%2CqBACV%2CeACI%3BI2EniBR%2CcAAA%3BIACA%2CeAAA%3B%3BE3EqiBQ%2CcALM%2CqBACV%2CeAIK%2CoBACG%3BI2EviBZ%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3E0iBQ%2CcAVM%2CqBACV%2CeASK%2CoBACG%3BI2E5iBZ%2CcAAA%3BIACA%2CeAAA%3B%3BE3E%2BiBQ%2CcAfM%2CqBACV%2CeAcK%2CoBACG%3BI2EjjBZ%2CcAAA%3BIACA%2CeAAA%3B%3BE3EojBQ%2CcApBM%2CqBACV%2CeAmBK%2CoBACG%3BI2EtjBZ%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3EyjBQ%2CcAzBM%2CqBACV%2CeAwBK%2CoBACG%3BI2E3jBZ%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3E8jBQ%2CcA9BM%2CqBACV%2CeA6BK%2CoBACG%3BI2EhkBZ%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3EmkBQ%2CcAnCM%2CqBACV%2CeAkCK%2CoBACG%3BI2ErkBZ%2CcAAA%3BIACA%2CeAAA%3B%3BE3EwkBQ%2CcAxCM%2CqBACV%2CeAuCK%2CoBACG%3BI2E1kBZ%2CeAAA%3BIACA%2CgBAAA%3B%3BEAvBA%2CqBAGI%2CeACI%2CcACI%3BEAJZ%2C8BAEI%2CeACI%2CcACI%3BEAHZ%2CoBACI%2CeACI%2CcACI%3BIACI%2CgBAAA%3BIACA%2CeAAA%3B%3BEAKhB%2CcACI%2CcACI%3BIACI%2CgBAAA%3BIACA%2CeAAA%3B%3B%3B%3B%3B%3B%3B%3BE1DkTR%2CSAAS%2CQAAW%2CWAAE%3BIAClB%2CWAAA%3B%3BEAGR%3BIACI%2CaAAA%3B%3BEAEJ%2CeAAgB%3BIACZ%2CaAAA%3BIACA%2Cc3CoNiB%2C8B2CpNjB%3B%3BEAGJ%3BIACI%2CaAAA%3BIACA%2Cc3C%2BMiB%2C8B2C%5C%2FMjB%3B%3BEAGJ%3BIACI%2CqBAAA%3BIACA%2Cc3C0MiB%2C8B2C1MjB%3BIACA%2CWAAA%3B%3BEACA%2CSAAS%2CQAAW%2CWAAS%3BIACzB%2CaAAA%3B%3BEAQR%3BIACI%2CO3C6LkB%2CwB2C7LlB%3BIACA%2CQ3C4LkB%2CwB2C5LlB%3BIACA%2CWAAA%3BIACA%2CaAAA%3BIACA%2CmBAAA%3BIACA%2CuBAAA%3BIACA%2CYAAY%2CsBAAZ%3BIACA%2COAAM%2CyBAAN%3BIAnYJ%2C6BAAA%3BIACA%2CwBAAA%3B%3BEA0XA%2CWAUI%3BIACI%2CMAAK%2CyBAAL%3BIAtYR%2C6BAAA%3BIACA%2CwBAAA%3B%3BEAwYI%2CWAAC%3BEACD%2CWAAC%3BIACG%2CYAAY%2C4BAAZ%3BIACA%2COAAM%2C%2BBAAN%3B%3BEAHJ%2CWAAC%2COAIG%3BEAHJ%2CWAAC%2CMAGG%3BIACI%2CMAAK%2C%2BBAAL%3BIA1YZ%2C4BAAA%3BIACA%2CwBAAA%3B%3BEA8YA%2CUACI%3BIACI%2CWAAA%3B%3BEAGR%2CUACI%3BIACI%2CWAAA%3B%3BEhBioBR%2CYACI%2CeACI%3BIACI%2CoBAAA%3B%3BEAHZ%2CYACI%2CeACI%2CuBAEI%2CQAAO%3BIACH%2CaAAA%3B%3BEAKhB%3BIACI%2CcAAA%3B%3BEAIQ%2CiBADR%2CUACS%3BIACG%2CgBAAA%3B%3BEAIhB%2CQAAQ%2CKAAK%3BIACT%2CmBAAA%3B%3BEAEJ%3BIACI%2CmBAAA%3BIACA%2CgBAAA%3B%3BEAEJ%2CQAAQ%3BIACJ%2CmBAAA%3B%3BEAEJ%2CkBAEI%2CYACI%2COAAM%3BEAFd%2CuBACI%2CYACI%2COAAM%3BIACF%2CqBAAA%3B%3BEAJZ%2CkBAEI%2CYACI%2COAAM%2CIAEF%3BEAJZ%2CuBACI%2CYACI%2COAAM%2CIAEF%3BIACI%2CkBAAA%3B%3BEAoMhB%2CqBACI%3BIACI%2CkBAAA%3B%3BEAFR%2CqBAII%2CQAAO%2CKACD%2CMAAG%3BIACD%2CgBAAA%3B%3BEAIZ%3BIACQ%2CkBAAA%3BIACA%2CmBAAA%3B%3BEACA%2C%2BBAAC%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CWAAA%3B%3BEANZ%2C%2BBAQQ%3BIACI%2CaAAA%3BIACA%2CgBAAA%3B%3BEAVZ%2C%2BBAQQ%2CmBAGM%2CIAAC%3BIACC%2CgBAAA%3B%3BEAZhB%2C%2BBAeQ%2CSAAQ%3BIACJ%2CgBAAA%3B%3BEAGZ%2CyBACU%2CMAAG%3BIACD%2CgBAAA%3B%3BEAGZ%3BIACI%2CYAAA%3BIACA%2CmBAAA%3B%3BEACA%2CkBAAC%3BIACG%2CUAAA%3B%3BEAIR%2CQAAQ%3BIACJ%2CWAAA%3B%3BEAEJ%2C8BAEI%3BEADJ%2CoBACI%3BIACI%2CUAAA%3B%3BEAHR%2C8BAKI%2CSAAQ%3BEAJZ%2CoBAII%2CSAAQ%3BIACJ%2CUAAA%3B%3BEAIR%2C0BAGI%3BEAFJ%2C2BAEI%3BEADJ%2CqBACI%3BIACI%2CUAAA%3B%3BEAJR%2C0BAOI%2CSAAQ%3BEANZ%2C2BAMI%2CSAAQ%3BEALZ%2CqBAKI%2CSAAQ%3BIACJ%2CUAAA%3B%3BEAGR%2CkBACI%2CSAAQ%2CKAAK%2CMACP%2CQAAK%2CMAAS%3BIACZ%2CkBAAA%3BIACA%2CmBAAA%3B%3BEAEJ%2CkBALJ%2CSAAQ%2CKAAK%2CMAKR%2CUACK%2CQAAK%2CMAAS%3BIACZ%2CkBAAA%3B%3BEAQJ%2CoBAFR%2CmBACI%2CSAAQ%2CKAAK%2CMACR%2CUACK%2CQAAK%2CMAAS%3BIACZ%2CkBAAA%3B%3BEAGR%2CoBAPR%2CmBACI%2CSAAQ%2CKAAK%2CMAMR%2CKACK%2CQAAK%3BIACH%2CmBAAA%3B%3BE0Fr2CpB%2C8BAA%2BB%3BEAC%5C%2FB%2CoBAAqB%3BEACrB%2CIAAI%2CIAAI%2CmBAAoB%3BEAC5B%2CIAAI%2CIAAI%2CeAAgB%3BEACxB%2CiBAAiB%2CaAAc%3BIAC3B%2CuBAAA%3B%3BEAEJ%2CiBAAiB%2CaAAc%2CQAAO%3BIAClC%2CeAAA%3BIACA%2CWAAA%3B%3BEAGJ%3BIACI%2CeAAA%3BIACA%2CkBAAA%3BIACA%2CmBAAA%3B%3BEAHJ%2CeAII%3BIACI%2CaAAA%3BIACA%2CmBAAA%3BIACA%2CQAAQ%2CwBAAR%3BIACA%2CSAAA%3B%3BEAGR%2CQAAS%3BIACL%2CwBAAA%3BIACA%2CqBAAA%3BIACA%2CcAAc%2C8BAAd%3BIACA%2CmBAAA%3B%3BEAEJ%2CeAAe%2CMAAO%2CeAAc%3BEACpC%2CeAAe%2CMAAO%2CeAAc%3BIAChC%2CWAAW%2CSAAX%3B%3B%3BEAGJ%2CUACI%3BIACI%2CaAAA%3B%3BExF6JR%2CyBACI%3BEADJ%2CyBAEI%3BEAFJ%2CyBAGI%3BIACI%2CuBAAA%3B%3BEAJR%2CyBAMF%3BIACC%2CcAAA%3B%3BEAGC%3BIACI%2CkBAAA%3BIACA%2CUAAA%3B%3BEAFJ%2CaAGI%3BIACI%2CaAAA%3BIACA%2CSAAA%3BIACA%2CiBAAA%3B%3BEANR%2CaAQI%3BIACI%2CcAAA%3BIACA%2CgBAAA%3BIACA%2CkBAAA%3B%3BEAIR%3BIACI%2CaAAA%3B%3BEO2lBJ%2CgCACI%2CMAAK%2COAAO%3BIACR%2CaAAA%3BIACA%2CeAAA%3B%3BEAHR%2CgCACI%2CMAAK%2COAAO%2CQAGR%2CUAAS%3BIACL%2CQAAA%3BIACA%2CWAAA%3B%3BEANZ%2CgCACI%2CMAAK%2COAAO%2CQAOR%3BIACI%2CQAAA%3BIACA%2CWAAA%3B%3BEAIZ%3BIAEI%2CgBAAA%3BIACA%2CcAAA%3B%3BEAHJ%2CgBAII%3BIACI%2CUAAA%3B%3BEACA%2CgBAFJ%2COAEK%2CMACG%2CiBACM%3BIACE%2CgBAAA%3BIACA%2CkBAAA%3B%3BEAJZ%2CgBAFJ%2COAEK%2CMACG%2CiBAMM%3BIACE%2CWAAA%3B%3BEAdpB%2CgBAoBI%2CUACM%2CSACI%3BIACE%2CWAAA%3B%3BEAMhB%2CKAAK%2COAAO%3BIACR%2CgBAAA%3BIACA%2CcAAA%3B%3BEAFJ%2CKAAK%2COAAO%2CQAGN%3BIACE%2CUAAA%3BIACA%2CqBAAA%3BIACA%2CWAAA%3B%3BEANR%2CKAAK%2COAAO%2CQAGN%2CYAII%3BIACE%2CmBAAA%3B%3BEAEJ%2CKAVH%2COAAO%2CQAGN%2CYAOG%3BIACG%2CmBAAA%3B%3BEAEJ%2CKAbH%2COAAO%2CQAGN%2CYAUG%3BIACG%2CkBAAA%3B%3BEAdZ%2CKAAK%2COAAO%2CQAiBR%3BIAEI%2CWAAA%3BIACA%2CaAAA%3BIACA%2CeAAA%3B%3BEZj0BR%2CKY4yBK%2COAAO%2CQAiBR%2CiBZ7zBH%3BEACD%2CKY2yBK%2COAAO%2CQAiBR%2CiBZ5zBH%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CKYsyBK%2COAAO%2CQAiBR%2CiBZvzBH%3BIACG%2CWAAA%3B%3BEYqyBJ%2CKAAK%2COAAO%2CQAiBR%2CiBAKI%2CQAAO%3BIACH%2CkBAAA%3BIACA%2CWAAA%3B%3BEAxBZ%2CKAAK%2COAAO%2CQAiBR%2CiBASM%3BIACE%2CUAAA%3BIACA%2CmBAAA%3B%3BEA5BZ%2CKAAK%2COAAO%2CQAiBR%2CiBASM%2CaAGE%3BIACI%2CkBAAA%3BIACA%2CWAAA%3B%3BEA%5C%2FBhB%2CKAAK%2COAAO%2CQAiBR%2CiBAiBM%3BIACE%2CQAAA%3BIACA%2CUAAA%3BIACA%2CkBAAA%3B%3BEAWZ%2CQACI%2CMAAK%2CMACF%2CGAAE%2CYACG%3BIACI%2CgBAAA%3B%3BEAJhB%2CQACI%2CMAAK%2CMAMD%3BIACI%2C%2BCAAA%3B%3BEAgBZ%2CqBACI%2COAAM%3BIAEF%2CYAAA%3B%3BEAHR%2CqBACI%2COAAM%2CUAIA%3BIACE%2CqBAAA%3BIACA%2CeAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CYAAA%3B%3BEAEA%2CqBAXR%2COAAM%2CUAIA%2CQAOG%2CeAAe%3BEAChB%2CqBAZR%2COAAM%2CUAIA%2CQAQG%2CeAAe%3BIACZ%2CgBAAA%3B%3BEAGJ%2CqBAhBR%2COAAM%2CUAIA%2CQAYG%2CUAAU%3BIACP%2CiBAAA%3B%3BEAchB%2CQAAQ%2CcACJ%3BIACI%2CqBAAA%3B%3BEkF9TJ%2COAAC%3BIACG%2CcAAA%3B%3BEAEJ%2COAAC%3BIACG%2CaAAA%3B%3BEAGJ%2COAAC%3BIACG%2CmBAAA%3B%3BEAEJ%2COAAC%3BIACG%2CcAAA%3BIACA%2CgBAAA%3B%3BEC1CR%2CcACI%2CgBACI%3BIAEI%2CWAAA%3BIACA%2CUAAA%3B%3BEALZ%2CcACI%2CgBAMI%3BIACI%2CWAAA%3B%3BEARZ%2CcAWI%2CeACI%3BIACI%2CUAAA%3B%3BECnUZ%2CiBACI%2CQAAO%2CQACH%3BIACI%2CUAAA%3BIACA%2CYAAA%3B%3BEAJZ%2CiBACI%2CQAAO%2CQACH%2C0BAGI%3BIACI%2CkBAAA%3B%3BEAKhB%2COAAO%2CQACH%2C0BACI%2COAAM%3BIACF%2CWAAA%3B%3BEAHZ%2COAAO%2CQACH%2C0BACI%2COAAM%2CWAEF%2COACI%3BIACI%2CWAAA%3B%3BEAOpB%2CuBAAwB%2CQAAO%2CQAAS%2COAAM%2CWAAW%3BIACrD%2CiBAAA%3B%3B%3B%3B%3B%3B%3BE1FsNJ%3BIACI%2CkBAAA%3B%3B%3BEAMI%2CgCADH%2CqBACI%2CoBACG%3BIACI%2CqBAAA%3BIACA%2CUAAA%3BIACA%2CuBAAA%3BIACA%2CiBAAA%3B%3BEALR%2CgCADH%2CqBACI%2CoBAOG%3BIACI%2CqBAAA%3BIACA%2CUAAA%3BIACA%2CWAAA%3B%3BEA6WhB%2CkBACI%3BIACI%2CeAAA%3B%3BEAFR%2CkBAII%3BIACI%2CiBAAA%3BIACC%2CeAAA%3B%3BEANT%2CkBAQI%3BIACI%2CeAAA%3BIACA%2CSAAA%3BIACA%2CmBAAA%3B%3BEAXR%2CkBAQI%2CiCAII%3BIACI%2CeAAA%3BIACA%2CeAAA%3B%3BEAdZ%2CkBAQI%2CiCAQI%3BIACI%2CQAAA%3BIACA%2CSAAA%3BIACA%2CWAAA%3B%3BEAnBZ%2CkBAQI%2CiCAQI%2CwBAII%2CQAAO%3BIACH%2CWAAA%3B%3BEArBhB%2CkBAQI%2CiCAgBI%3BIACI%2CQAAA%3B%3BEAzBZ%2CkBAQI%2CiCAgBI%2CmBAEI%3BIACI%2CaAAA%3BIAEA%2C8BAAA%3BIAEA%2CmBAAA%3B%3BEA%5C%2FBhB%2CkBAQI%2CiCAgBI%2CmBASI%3BIACI%2CkBAAA%3B%3BEAlChB%2CkBAQI%2CiCAgBI%2CmBAYI%3BIACI%2CeAAA%3BIACA%2CiBAAA%3B%3BEAtChB%2CkBAQI%2CiCAgBI%2CmBAgBI%3BIAEI%2CYAAA%3B%3BEA1ChB%2CkBAQI%2CiCAqCI%3BIACI%2CQAAA%3B%3BEA9CZ%2CkBAQI%2CiCAwCI%3BEAhDR%2CkBAQI%2CiCAyCI%3BIACI%2CWAAA%3BIACA%2CeAAA%3B%3BEAnDZ%2CkBAQI%2CiCA6CM%3BIACE%2CgBAAA%3B%3BEAtDZ%2CkBAyDI%3BIACI%2CmBAAA%3BIACA%2CcAAA%3BIACA%2CeAAA%3BIACA%2CeAAA%3B%3BEA7DR%2CkBA%2BDI%2CmBACI%3BIACK%2CgBAAA%3B%3BEgB5Ub%2CYAEI%3BIACI%2CWAAA%3BIACA%2CSAAA%3BIACA%2CWAAA%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BEALR%2CYAEI%2CMAII%3BEANR%2CYAEI%2CMAKI%3BIACI%2CWAAA%3BIACA%2CgBAAA%3BIACA%2CiBAAA%3BIACA%2CYAAA%3BIACA%2CiBAAA%3BIACA%2CuBAAA%3B%3BEAGA%2CYAdR%2CMAaI%2CEACK%3BIenqBb%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CSAAA%3BIACA%2COAAA%3BIACA%2CWAAA%3BIf8pBgB%2CWAAW%2CgBAAX%3BIACA%2C0BAAA%3BIACA%2CmBAAA%3BIACA%2CsBAAA%3B%3BEAEJ%2CYArBR%2CMAaI%2CEAQK%3BIe1qBb%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CSAAA%3BIACA%2COAAA%3BIACA%2CWAAA%3BIfqqBgB%2CWAAW%2CgBAAX%3BIACA%2CyBAAA%3BIACA%2CY9CzqBP%2CoB8CyqBO%3BIACA%2CsBAAA%3B%3BEAEJ%2CYA5BR%2CMAaI%2CEAeK%3BIACG%2CWAAA%3BIACA%2CqBAAA%3B%3BEAEJ%2CYAhCR%2CMAaI%2CEAmBK%3BEACD%2CYAjCR%2CMAaI%2CEAoBK%3BIACG%2CWAAA%3BIACA%2CqBAAA%3BIACA%2CgBAAA%3B%3BEACA%2CYArCZ%2CMAaI%2CEAmBK%2CMAKI%3BEAAD%2CYArCZ%2CMAaI%2CEAoBK%2CMAII%3BIACG%2CWAAW%2CaAAX%3B%3BEAIZ%2CYA1CJ%2CMA0CK%2CQACG%3BIACI%2C6BAAA%3B%3BEACA%2CYA7CZ%2CMA0CK%2CQACG%2COAEK%3BIACG%2CWAAW%2CaAAX%3BIACA%2C%2BBAAA%3B%3BEAEJ%2CYAjDZ%2CMA0CK%2CQACG%2COAMK%3BIACG%2CWAAW%2CaAAX%3B%3BEAgBpB%2CsBACI%3BIACI%2CcAAA%3BIACA%2CWAAA%3B%3BEAHR%2CsBAKI%2CQAAO%3BIACC%2CqBAAA%3BIACA%2CYAAA%3B%3BEAIZ%2CQAII%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BEALpC%2CuBAGI%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BEAJpC%2CiBAEI%2CQAAO%2CKAAM%2COAAM%2CyBAEf%2CeAAc%2CIAAI%2CSAAU%3BIAExB%2CWAAA%3BIACA%2CWAAA%3BIACA%2CaAAA%3B%3BEAKZ%3BIACI%2CgBAAA%3B%3BEADJ%2C6BAGI%3BIACI%2CWAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CeAAA%3B%3BEAPR%2C6BAUI%3BIACI%2CgBAAA%3B%3BEAIR%3BIACI%2CaAAA%3B%3BEAGI%2CoBADJ%2CKACK%3BIACG%2CkBAAA%3B%3BEAGJ%2CoBALJ%2CKAKK%3BIACG%2CiBAAA%3B%3BEATZ%2CoBAaI%2CMAAM%3BIACF%2CoBAAA%3BIACA%2CiBAAA%3B%3BEAfR%2CoBAkBI%2CMACI%3BEAnBR%2CoBAkBI%2CMAEI%3BIACI%2CiBAAA%3B%3BEAIR%2CoBAAC%2CQACG%3BIACI%2CaAAA%3B%3BEAKZ%2CoBACI%3BIACI%2CeAAA%3BIACA%2CgBAAA%3B%3BEAHR%2CoBAMI%3BIACI%2CkBAAA%3B%3BEAPR%2CoBAUI%3BIACI%2CYAAA%3B%3BEAOI%2CkBAFR%2CMACI%2CKACK%3BEACD%2CkBAHR%2CMACI%2CKAEK%3BIACG%2CeAAA%3B%3BEAKZ%2CkBAAC%2CQAEG%2CKAAI%3BEADR%2CkBAAC%2CSACG%2CKAAI%3BIACA%2CkBAAA%3B%3BEAMA%2CkBAFP%2CWACG%2CKACK%3BEACD%2CkBAHP%2CWACG%2CKAEK%3BEACD%2CkBAJP%2CWACG%2CKAGK%3BIACG%2CkBAAA%3B%3BEAGJ%2CkBARP%2CWACG%2CKAOK%3BIACG%2CiBAAA%3B%3BE2E5oBhB%3BEACA%3BIACI%2CYAAA%3B%3BEAGJ%3BIACI%2CaAAA%3BIACA%2CsBAAA%3BIACA%2CgBAAA%3B%3BEAHJ%2CaAKM%3BEALN%2CaAMM%3BEANN%2CaAOM%3BIACE%2CsBAAA%3BIACA%2CWAAA%3BIACA%2CgBAAA%3B%3BEAGJ%2CKAAM%3BEACN%2CKAAM%3BIACF%2CYAAA%3B%3BEAIR%2CUACM%2CsBACE%3BIACI%2CqBAAA%3B%3BEAHZ%2CUACM%2CsBAKE%2CYAAc%3BIACV%2CYAAA%3BIACA%2CgBAAA%3B%3BECzGZ%3BIA7EA%2CqBAAA%3B%3BEA6EA%2CSA5EA%3BInBMA%2CqBAAA%3BIACA%2CkBAAA%3B%3BE%5C%2FEFA%2CSkGLA%2CSlGKC%3BEACD%2CSkGNA%2CSlGMC%3BIACG%2CSAAS%2CEAAT%3BIACA%2CcAAA%3B%3BEAGJ%2CSkGXA%2CSlGWC%3BIACG%2CWAAA%3B%3BEkGgEJ%2CSA5EA%2CSnBSA%3BI%5C%2FEgPA%2CsBAAA%3BI%2BE9OI%2CeAAA%3BI%5C%2FE8OJ%2CqBAAA%3BI%2BBhOA%2CqBAAA%3B%3BEAMA%2CSmE%5C%2FBA%2CSnBSA%2CehDsBC%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BI%5C%2FB9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSgCzPgB%2COhCyPhB%3BIAAA%2CaxBlLQ%2CUwBkLR%3BIAAA%2CSAAA%3BIAAA%2CmBAAA%3BI%2BBqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEAtRI%2CSmE5CJ%2CSnBSA%2CehDkCC%2CMACI%3BI%5C%2FB6ML%2CcAAA%3B%3BE%2BBvMI%2CSmElDJ%2CSnBSA%2CehDwCC%2COACI%3BI%5C%2FBuML%2CcAAA%3B%3BE%2BEqEA%2CSmB9TA%2CSnBSA%2CeAqTC%3BI%5C%2FErED%2CqBAAA%3BI%2BBhOA%2CqBAAA%3B%3BEAMA%2CSmE%5C%2FBA%2CSnBSA%2CeAqTC%2COhD%5C%2FRA%3BIAuRD%2CmCAAA%3BIACA%2CkCAAA%3BI%5C%2FB9DA%2CeAAA%3BIAAA%2CiBAAA%3BIAAA%2CcAAA%3BIAAA%2CSxB%5C%2FKc%2CKwB%2BKd%3BIAAA%2CaxBlLQ%2CUwBkLR%3BIAAA%2CSAAA%3BIAAA%2CmBAAA%3BI%2BBqEA%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CgBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3B%3BEAtRI%2CSmE5CJ%2CSnBSA%2CeAqTC%2COhDnRA%2CMACI%3BI%5C%2FB6ML%2CcAAA%3B%3BE%2BBvMI%2CSmElDJ%2CSnBSA%2CeAqTC%2COhD7QA%2COACI%3BI%5C%2FBuML%2CcAAA%3B%3BEkG7KA%2CSA5EA%2CSnBgMA%3BI%5C%2FEyDA%2CSAAA%3BIAAA%2CUAAA%3BIoC1KA%2CqBAAA%3BIpC0KA%2CmBAAA%3BIAAA%2CSAAA%3BIAAA%2CaAAA%3BIAAA%2CgBAAA%3BIAAA%2CYAAA%3BI%2BEhDI%2CsBAAA%3BIACA%2CaAAA%3BIACA%2CkBAAA%3BI%5C%2FE8CJ%2CSAAA%3BIAAA%2CgDAAA%3B%3BEkG7KA%2CSA5EA%2CSnBgMA%2CYAsBI%3BI%5C%2FEmCJ%2CSAAA%3BIAAA%2CUAAA%3B%3BE%2BE3BQ%2CSmB9NR%2CSnBgMA%2CYAsBI%2CGAQK%3BI%5C%2FE2BT%2CmBAAA%3BI%2BEzBY%2CeAAA%3B%3BEAuTZ%2CSmBvhBA%2CSnBgMA%2CYAuVC%3BEACD%2CSmBxhBA%2CSnBgMA%2CYAwVC%3BIACG%2C0BAAA%3BIACA%2CSAAS%2CEAAT%3BIACA%2CcAAA%3BIACA%2CSAAA%3BIACA%2CkBAAA%3BIACA%2CQAAA%3B%3BEAGJ%2CSmBjiBA%2CSnBgMA%2CYAiWC%3BIACG%2CiBAAA%3BI%5C%2FEzSJ%2CyDAAA%3BI%2BE2SI%2CWAAA%3B%3BEAGJ%2CSmBviBA%2CSnBgMA%2CYAuWC%3BIACG%2CiBAAA%3BI%5C%2FE%5C%2FSJ%2CsDAAA%3BI%2BEiTI%2CWAAA%3B%3BEAzDJ%2CSmBjfA%2CSnBgMA%2CYAiTC%3BI%5C%2FExPD%2CUAAA%3BIAAA%2CUAAA%3B%3BE%2BE6PA%2CSmBtfA%2CSnBgMA%2CYAsTC%3BI%5C%2FE7PD%2CSAAA%3BIAAA%2CUAAA%3B%3BE%2BEZA%2CSmB7OA%2CSnB6OC%3BIACG%2CiBAAA%3B%3BEADJ%2CSmB7OA%2CSnB6OC%2COAGG%3BIACI%2CcAAA%3B%3BEmBrKR%2CSA5EA%2CSAaI%3BIACI%2CgBAAA%3B%3BEA8DR%2CSA5EA%2CSAaI%2CGAEI%3BIlG0OR%2CcAAA%3BIAAA%2CqBAAA%3BIkG%5C%2FNY%2CcAAA%3BIACA%2CmBAAA%3B%3BE9D6EZ%2CS8DxGA%2CSAaI%2CGAEI%2CE9DyFP%3BIpCiJD%2CcAAA%3BIAAA%2CqBAAA%3B%3BEoC5IA%2CS8D7GA%2CSAaI%2CGAEI%2CE9D8FP%3BIpC4ID%2CcAAA%3BIAAA%2CqBAAA%3B%3BEoCvIA%2CS8DlHA%2CSAaI%2CGAEI%2CE9DmGP%3BIpCuID%2CcAAA%3BIAAA%2CqBAAA%3B%3BEkG5NQ%2CSA7BR%2CSAaI%2CGAgBK%3BEACD%2CSA9BR%2CSAaI%2CGAiBK%3BIACG%2CaAAA%3B%3BEA6CZ%2CSA5EA%2CSAaI%2CGAoBI%3BI5HtEJ%2CiCAAA%3BI4HwEQ%2CiBAAA%3BIACA%2CgBAAA%3B%3BE5HxER%2CS4HoCJ%2CSAaI%2CGAoBI%2CG5HrEH%3BIACG%2CgCAAA%3B%3BE4HmBA%2CSA%2BFC%2CUAjGT%2CSACI%2CGACK%3BIACG%2CaAAA%3B%3BEA8FZ%2CSAAS%2CUAjGT%2CSACI%2CGAII%3BIACI%2CgBAAA%3BIACA%2CiBAAA%3BIACA%2CaAAA%3BIACA%2CmBAAA%3BIACA%2CQAAA%3B%3BEA4FR%2CgBAAC%2CMACG%3BIACI%2CyBAAA%3B%3BECwDR%2COAAC%3BIACG%2CoBAAA%3BIACA%2CiBAAA%3B%3BEAFJ%2COAAC%2CQAGG%3BIACI%2CYAAA%3B%3BEAJR%2COAAC%2CQAOG%3BIACI%2CqBAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3BIACA%2CmBAAA%3B%3BEAQZ%3BIACI%2CiBAAA%3B%3BEAEJ%2CiBACI%3BIACI%2CcAAA%3BIACA%2CsBAAA%3B%3BEAGR%2CuBACI%2CQAAO%3BIACH%2CcAAA%3B%3BECzNR%3BIACI%2CoBAAA%3B%3BElF4WJ%2CYACI%2CgBACI%3BIACI%2CoBAAA%3B%3BEAHZ%2CYACI%2CgBACI%2CwBAEI%2CQAAO%3BIACH%2CaAAA%3B%3BEAKhB%2CcAAc%3BIACV%2CmBAAA%3B%3BEAGQ%2CcAJE%2CSAEV%2CSACK%2CKACI%3BIACG%2CqBAAA%3B%3BEAFR%2CcAHM%2CSAEV%2CSACK%2CKAKG%2CYACI%3BIACI%2CSAAA%3B%3BEAPZ%2CcAHM%2CSAEV%2CSACK%2CKAKG%2CYAKI%3BIACI%2CgBAAA%3B%3BEAUR%2CqBAFR%2CSACK%2CKACI%3BIACG%2CYAAA%3B%3BEO9UhB%2CMAAM%2COAAQ%2CeAAe%3BIoDX7B%2CuBAAA%3BIACA%2CwBAAA%3B%3BEpDaI%2CQAAS%2COAHP%2COAAQ%2CeAAe%3BIAIrB%2CcAAA%3BIACA%2CWAAA%3B%3BEAFJ%2CQAAS%2COAHP%2COAAQ%2CeAAe%2CcAOrB%3BIACI%2CcAAA%3BIACA%2CeAAA%3B%3BEAKZ%2CoBAAqB%2COAAM%2COAAQ%2CeAAe%3BIoDzBlD%2CcAAA%3BIACA%2CeAAA%3B%3BEpD4BA%2CqBAAsB%2COAAM%2COAAQ%2CeAAe%3BIoD7BnD%2CcAAA%3BIACA%2CeAAA%3B%3BEpDkDA%2CQAAS%2COAAM%2COAAQ%2COAKnB%3BIACI%2CUAAA%3B%3BEANR%2CQAAS%2COAAM%2COAAQ%2COAKnB%2CiBAGI%3BIACI%2CSAAA%3B%3BE4EEd%2CmBAAoB%3BIAClB%2CgBAAA%3B%3BEAMI%2CaAFJ%2CwBAA0B%2CUACtB%2CgBAAc%2CEACb%3BIACC%2CaAAA%3B%3BEAJR%2CaACE%2CwBAA0B%2CUAOtB%2CgBAAc%3BIACd%2CgBAAA%3BIACA%2CmBAAA%3B%3BEAVN%2CaACE%2CwBAA0B%2CUAOtB%2CgBAAc%2CEAId%3BIACE%2CWAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CWAAA%3BIACA%2CkBAAA%3BIACA%2CiBAAA%3BIACA%2CSAAA%3BIACA%2CQAAA%3BIACA%2CcAAA%3B%3BEArBR%2CaACE%2CwBAA0B%2CUAOtB%2CgBAAc%2CEAId%2CgBAWE%3BIACE%2CWAAA%3BIACA%2CYAAY%2C4BAAZ%3BIACA%2CcAAA%3B%3BEAEA%2CaA3BR%2CwBAA0B%2CUAOtB%2CgBAAc%2CEAId%2CgBAWE%2CKAKG%2CUAAU%3BIACT%2CWAAA%3BIACA%2CWAAW%2CwBAAwB%2CeAAe%2CSAAlD%3BIACA%2CuBAAA%3B%3BEAGF%2CaAjCR%2CwBAA0B%2CUAOtB%2CgBAAc%2CEAId%2CgBAWE%2CKAWG%2CUAAU%3BIACT%2CWAAA%3BIACA%2CWAAW%2CyBAAyB%2CeAAe%2CSAAnD%3BIACA%2CsBAAA%3B%3BEAGF%2CaAvCR%2CwBAA0B%2CUAOtB%2CgBAAc%2CEAId%2CgBAWE%2CKAiBG%2CUAAU%3BIACT%2CWAAA%3BIACA%2CWAAW%2CyBAAyB%2CeAAe%2CSAAnD%3BIACA%2CuBAAA%3B%3BEAMR%2CaAhDF%2CwBAA0B%2CUAgDvB%2CWAEG%2CgBAAc%3BEADlB%2CaAjDF%2CwBAA0B%2CUAiDvB%2COACG%2CgBAAc%3BIACd%2C6BAAA%3B%3BEAII%2CaAvDV%2CwBAA0B%2CUAgDvB%2CWAEG%2CgBAAc%2CEAGd%2CgBACE%2CKACG%2CUAAU%3BEAAX%2CaAvDV%2CwBAA0B%2CUAiDvB%2COACG%2CgBAAc%2CEAGd%2CgBACE%2CKACG%2CUAAU%3BIACT%2C0BAAA%3BIACA%2CWAAW%2CwBAAwB%2CeAAe%2CSAAlD%3B%3BEAGF%2CaA5DV%2CwBAA0B%2CUAgDvB%2CWAEG%2CgBAAc%2CEAGd%2CgBACE%2CKAMG%2CUAAU%3BEAAX%2CaA5DV%2CwBAA0B%2CUAiDvB%2COACG%2CgBAAc%2CEAGd%2CgBACE%2CKAMG%2CUAAU%3BIACT%2C0BAAA%3BIACA%2CWAAW%2CyBAAyB%2CeAAe%2CSAAnD%3B%3BEAGF%2CaAjEV%2CwBAA0B%2CUAgDvB%2CWAEG%2CgBAAc%2CEAGd%2CgBACE%2CKAWG%2CUAAU%3BEAAX%2CaAjEV%2CwBAA0B%2CUAiDvB%2COACG%2CgBAAc%2CEAGd%2CgBACE%2CKAWG%2CUAAU%3BIACT%2C0BAAA%3BIACA%2CWAAW%2CyBAAyB%2CeAAe%2CSAAnD%3B%3BEASd%3BIACE%3BMACE%2CWAAW%2CwBAAwB%2CeAAe%2CSAAlD%3B%3BIAGF%3BMACE%2CWAAW%2CwBAAwB%2CeAAe%2CSAAlD%3B%3B%3BEAIJ%3BIACE%3BMACE%2CWAAW%2CyBAAyB%2CeAAe%2CSAAnD%3B%3BIAGF%3BMACE%2CWAAW%2CyBAAyB%2CeAAe%2CSAAnD%3B%3B%3BEAIJ%3BIACE%3BMACE%2CWAAW%2CyBAAyB%2CeAAe%2CSAAnD%3B%3BIAGF%3BMACE%2CWAAW%2CyBAAyB%2CeAAe%2CSAAnD%3B%3B%3BEAMA%2CaADF%2CwBAA0B%2CUACvB%2CMAEG%2CgBAAc%2CEACd%3BEAFJ%2CaAFF%2CwBAA0B%2CUAEvB%2COACG%2CgBAAc%2CEACd%3BIACE%2CkBAAA%3BIACA%2CiBAAA%3BIACA%2CSAAA%3BIACA%2CQAAA%3B%3BEASE%2CaAjBV%2CwBAA0B%2CUAavB%2CMACG%2CgBAAc%2CEACd%2CgBACE%2CKACG%2CUAAU%3BIACT%2CgCAAA%3B%3BEAGF%2CaArBV%2CwBAA0B%2CUAavB%2CMACG%2CgBAAc%2CEACd%2CgBACE%2CKAKG%2CUAAU%3BIACT%2CiCAAA%3BIACA%2CsBAAA%3B%3BEAGF%2CaA1BV%2CwBAA0B%2CUAavB%2CMACG%2CgBAAc%2CEACd%2CgBACE%2CKAUG%2CUAAU%3BIACT%2CiCAAA%3BIACA%2CqBAAA%3B%3BEASd%2CaAGE%2CwBAA0B%2CKAAK%2CgBAAc%2CEAAE%3BEAFjD%2CaAEE%2CwBAA0B%2CKAAK%2CgBAAc%2CEAAE%3BEADjD%2CaACE%2CwBAA0B%2CKAAK%2CgBAAc%2CEAAE%3BIAC7C%2CMAAA%3B%3BEAIJ%2CaAAc%2CwBAA0B%2CKAAK%2CgBAAc%2CEAAE%3BIAC3D%2CYAAA%3B%3BEAIA%2CuBADwB%2CUACvB%2CWAEG%2CgBAAc%3BEADlB%2CuBAFwB%2CUAEvB%2COACG%2CgBAAc%3BIACd%2CwCAAA%3B%3BEAKN%2CsBAAsB%2CYAAe%2CyBACjC%3BIACA%2CaAAA%3B%3BEAIJ%2CuBAAwB%2CsBAAwB%2CyBAAuB%2CyBAAyB%2CQAAO%2CcAAiB%2CgBAAc%3BIACpI%2CmBAAA%3B%3BEAGF%2CmBAAsB%2CgBAAc%2CEAClC%3BIACE%2CwBAAA%3B%3BEAFJ%2CmBAAsB%2CgBAAc%2CEAKlC%3BIACE%2CoBAAA%3B%3BEAIJ%2CuBACE%2CGAAE%2COACE%2CgBACA%3BICrQN%2CkBAAA%3BIACA%2CqBAAA%3BIACA%2CqBAAA%3BIACA%2CUAAA%3BIACA%2CWAAA%3BIACA%2CQAAA%3BIACA%2CMAAA%3B%3BEAEA%2CuBD2PE%2CGAAE%2COACE%2CgBACA%2CeC7PL%3BEACD%2CuBD0PE%2CGAAE%2COACE%2CgBACA%2CeC5PL%3BIACF%2CSAAS%2CEAAT%3BIACA%2CkBAAA%3BIACA%2CwBAAA%3BItGyOG%2CwCAAA%3BIsGvOH%2C0CAAA%3BIACA%2CwCAAA%3BIACA%2CO7BrCiC%2CmB6BqCjC%3BIACA%2CQ7BrCkC%2CmB6BqClC%3B%3BEAEC%2CuBDgPE%2CGAAE%2COACE%2CgBACA%2CeClPL%3BIACF%2CWAAW%2CaAAX%3B%3BEDyPK%2CuBAVF%2CGAAE%2COAUC%2COACG%2CgBACA%3BIACE%2CkBAAA%3B%3BEAdV%2CuBAoBE%2CuBACE%2CGAAE%2COACE%3BIACA%2CgBAAA%3B%3BEAvBR%2CuBAoBE%2CuBACE%2CGAAE%2COACE%2CgBAGA%3BIACE%2CQAAA%3BIACA%2CgBAAA%3BIACA%2CUAAA%3B%3BEA5BV%2CuBAkCI%2CUACE%2CgBACA%3BIACE%2C2BAAA%3B%3BEAEA%2CuBALJ%2CUACE%2CgBACA%2CEAGG%3BIACC%2CSAAS%2CEAAT%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CkBAAA%3BIACA%2CY7HrVC%2CoB6HqVD%3BIACA%2CcAAA%3BIACA%2CWAAA%3BIACA%2COAAA%3BIACA%2CMAAA%3BIACA%2CWAAW%2CSAAX%3BIACA%2C%2BBAAA%3BIACA%2CwBAAA%3B%3BEAnDV%2CuBAkCI%2CUACE%2CgBACA%2CEAkBE%3BIACE%2CqBAAA%3BIACA%2CmBAAmB%2CaAAnB%3BIACA%2CgBAAgB%2CaAAhB%3BIACA%2CeAAe%2CaAAf%3BIACA%2CcAAc%2CaAAd%3BIACA%2CWAAW%2CaAAX%3B%3BEAEA%2CuBA5BN%2CUACE%2CgBACA%2CEAkBE%2CKAQG%3BIACC%2CqBAAA%3B%3BEA%5C%2FDZ%2CuBAkCI%2CUACE%2CgBAiCA%3BIACE%2CkBAAA%3B%3BEAIJ%2CuBAvCA%2CUAuCC%2CWAGG%2CgBAAc%3BEAFlB%2CuBAxCA%2CUAwCC%2COAEG%2CgBAAc%3BEADlB%2CuBAzCA%2CUAyCC%2CMACG%2CgBAAc%3BIACd%2C2BAAA%3B%3BEAEA%2CuBA7CJ%2CUAuCC%2CWAGG%2CgBAAc%2CEAGb%3BEAAD%2CuBA7CJ%2CUAwCC%2COAEG%2CgBAAc%2CEAGb%3BEAAD%2CuBA7CJ%2CUAyCC%2CMACG%2CgBAAc%2CEAGb%3BIACC%2CWAAW%2CSAAX%3BIACA%2C%2BBAAA%3B%3BEAOV%2CuBACI%2CKAEE%2CgBAAc%3BEAHpB%2CuBAEE%2CeACI%2CgBAAc%3BIACd%2CoBAAA%3BIACA%2CWAAA%3B%3B%3BEAOJ%2CuBADwB%2CUACvB%2CMA1ZD%2CgBAAc%3BIACd%2CcAAA%3B%3BEAEA%2CuBAsZwB%2CUACvB%2CMA1ZD%2CgBAAc%2CEAGb%3BIACC%2CyBAAA%3B%3BEA0ZF%2CuBALwB%2CUAKvB%2COA9ZD%2CgBAAc%3BIACd%2CcAAA%3B%3BEAEA%2CuBAsZwB%2CUAKvB%2COA9ZD%2CgBAAc%2CEAGb%3BIACC%2CyBAAA%3B%3BEA8ZF%2CuBATwB%2CUASvB%2COAlaD%2CgBAAc%3BIACd%2CcAAA%3B%3BEAEA%2CuBAsZwB%2CUASvB%2COAlaD%2CgBAAc%2CEAGb%3BIACC%2CyBAAA%3B%3BEAmaA%2CuBAdsB%2CUAavB%2COACE%2CMACG%2CgBAAc%3BIACd%2CcAAA%3B%3BEAKN%2CuBArBwB%2CUAqBvB%2CSAAS%2CIAAI%2CQACV%2CgBAAc%3BIACd%2CcAAA%3B%3BEAIJ%2CuBA3BwB%2CUA2BvB%2CUACG%2CgBAAc%3BIACd%2CcAAA%3B%3BEAGF%2CuBAhCsB%2CUA2BvB%2CUAKE%2CMACG%2CgBAAc%3BIACd%2CWAAA%3BIACA%2CmBAAA%3B%3BEAOJ%2CuBA1CsB%2CUAwCvB%2CMAEE%2CMACG%2CgBAAc%3BEADlB%2CuBA1CsB%2CUAyCvB%2COACE%2CMACG%2CgBAAc%3BIACd%2CcAAA%3B%3B%3BAA7UR%2CgB9FtDwC%2CwB8F%2BCR%2C%2BBAAA%3BEAC9B%2CyBAA0B%3BEAC1B%2C0BAA2B%3BIACzB%2CaAAA%3B%3B%3BA9FnCF%2CgBALsC%3BEoBqiBtC%3BIACI%2CaAAA%3B%3BEgB6JC%2CQAAC%2CaACE%3BEADH%2CQAAC%2CaAEE%3BEAFH%2CQAAC%2CaAGE%3BIACI%2CaAAA%3BIACA%2CYAAA%3BIACA%2CeAAA%3B%3BEQ8CR%2CUADM%2CkBACL%2CUACG%2CQAAO%2CoBAGH%3BEAFJ%2CUAHE%2CkBACL%2CUAEI%2CqBAAsB%2CQAAO%2CoBAE1B%3BEADJ%2CUAJE%2CkBACL%2CUAGI%2CmBAAoB%2CQACjB%3BIACI%2CaAAA%3B%3BEASR%2C0BADJ%2CWACK%2CkBACG%2CQAAO%2CwBAIH%3BEALR%2C2BADJ%2CWACK%2CkBACG%2CQAAO%2CwBAIH%3BEAHJ%2C0BAHR%2CWACK%2CkBAEI%2CqBAAsB%2CQAAO%2CwBAG1B%3BEAHJ%2C2BAHR%2CWACK%2CkBAEI%2CqBAAsB%2CQAAO%2CwBAG1B%3BEAFJ%2C0BAJR%2CWACK%2CkBAGI%2C6BAA8B%2CQAAO%2CYAElC%3BEAFJ%2C2BAJR%2CWACK%2CkBAGI%2C6BAA8B%2CQAAO%2CYAElC%3BEADJ%2C0BALR%2CWACK%2CkBAII%2CuBAAwB%2CQACrB%3BEADJ%2C2BALR%2CWACK%2CkBAII%2CuBAAwB%2CQACrB%3BIACI%2CcAAA%3B%3BEAGR%2C0BAVR%2CWACK%2CkBASI%2CsBACG%2CQAAO%2CwBACH%3BEAFR%2C2BAVR%2CWACK%2CkBASI%2CsBACG%2CQAAO%2CwBACH%3BIAEI%2CaAAA%3BIACA%2CcAAA%3B%3BEEjUpB%2CUAAC%2CYACG%2CIAAG%3B%3BIAEC%2CmBAAA%3BIACA%2CoBAAA%3B%3BEI3YZ%3BIACI%2CUAAS%2CcAAT%3B%3BEAEJ%3BIACI%2CQAAQ%2CaAAR%3B%3BEI4jBJ%2CuBAAwB%3BIACpB%2CUAAA%3B%3BE0CnfJ%2CwBAAyB%3BIACrB%2CmBAAA%3B%3BEpCnDJ%2CsBAAuB%3BIACnB%2CmBAAA%3BIACA%2CcAAA%3B%3BEqCzJJ%3BIACI%2CkBAAA%3BIACA%2CYAAA%3BIACA%2CaAAA%3BIACA%2CkBAAA%3BIACA%2CgBAAA%3BIACA%2CsFAAA%3BIACA%2CUAAA%3BIACA%2CyBAAA%3BIACA%2CoBAAA%3B%3BEAGJ%2CmBAAmB%2CMAAO%3BEAC1B%2CYAAY%2CMAAO%3BIACf%2CcAAA%3BIACA%2CUAAA%3BIACA%2CoBAAA%3B%3BEAGJ%3BIACI%2CaAAA%3BIACA%2CYAAA%3BIACA%2CYAAA%3B%3BEAGJ%2CoBAAqB%3BIAGb%2CcAAA%3BIACA%2CcAAA%3BIACA%2CsBAAA%3BIACA%2CoBAAA%3BIACA%2CiDAAA%3BIACA%2C6CAAA%3BIACA%2CYAAA%3BIACA%2CmBAAA%3BIACA%2CYAAA%3B%3BEAXR%2CoBAAqB%2CyBAcjB%3BIACI%2CoBAAA%3BIACA%2CkBAAA%3B%3BEAhBR%2CoBAAqB%2CyBAmBjB%2CiBAAgB%3BIACZ%2CmBAAA%3BIACA%2CwBAAA%3B%3BEAIR%3BIACI%2CqBAAA%3BIACA%2CcAAA%3BIACA%2CsBAAA%3BIACA%2CaAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CeAAA%3B%3BEAGJ%2CqBAAsB%3BIAEd%2CWAAA%3B%3BEAFR%2CqBAAsB%2CuBAKlB%3BIACI%2CmBAAA%3BIACA%2CgBAAA%3B%3BEAGJ%2CqBAVkB%2CuBAUjB%2CWAAY%3BIACT%2CgBAAA%3B%3BEAXR%2CqBAAsB%2CuBAclB%3BIACI%2CgBAAA%3B%3BEAIR%2CqBAAsB%2CuBAAuB%3BIAErC%2CgBAAA%3B%3BEAFR%2CqBAAsB%2CuBAAuB%2CqBAKzC%3BIACI%2CgBAAA%3B%3BEAGJ%2CqBATkB%2CuBAAuB%2CqBASxC%3BIACG%2CgBAAA%3B%3BEAIR%2CqBAAsB%2CiBAAiB%2CqBAAqB%3BIACxD%2CgBAAA%3BIACA%2CeAAA%3B%3BE5BlHN%2C8BD4TiC%2COAD3B%2COC3TL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBD6TwB%2COAFlB%2COC3TL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBD8TuB%2COAHjB%2COC3TL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMD2TM%2COC3TL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BD4TiC%2COAD3B%2COC3TL%2CkBAEC%2CeAAe%3BEAFjB%2CqBD6TwB%2COAFlB%2COC3TL%2CkBAEC%2CeAAe%3BEAFjB%2CoBD8TuB%2COAHjB%2COC3TL%2CkBAEC%2CeAAe%3BEAFjB%2CMD2TM%2COC3TL%2CkBAEC%2CeAAe%3BIC%2BCf%2CgBAAA%3BIACA%2CiBAAA%3B%3BED5CF%2C8BDsTiC%2COAD3B%2COCrTL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBDuTwB%2COAFlB%2COCrTL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBDwTuB%2COAHjB%2COCrTL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMDqTM%2COCrTL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BDsTiC%2COAD3B%2COCrTL%2CkBAEC%2CeAAe%3BEAFjB%2CqBDuTwB%2COAFlB%2COCrTL%2CkBAEC%2CeAAe%3BEAFjB%2CoBDwTuB%2COAHjB%2COCrTL%2CkBAEC%2CeAAe%3BEAFjB%2CMDqTM%2COCrTL%2CkBAEC%2CeAAe%3BICyCf%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDtCF%2C8BDgTiC%2COAD3B%2COC%5C%2FSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBDiTwB%2COAFlB%2COC%5C%2FSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBDkTuB%2COAHjB%2COC%5C%2FSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMD%2BSM%2COC%5C%2FSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BDgTiC%2COAD3B%2COC%5C%2FSL%2CkBAEC%2CeAAe%3BEAFjB%2CqBDiTwB%2COAFlB%2COC%5C%2FSL%2CkBAEC%2CeAAe%3BEAFjB%2CoBDkTuB%2COAHjB%2COC%5C%2FSL%2CkBAEC%2CeAAe%3BEAFjB%2CMD%2BSM%2COC%5C%2FSL%2CkBAEC%2CeAAe%3BICmCf%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDhCF%2C8BD0SiC%2COAD3B%2COCzSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBD2SwB%2COAFlB%2COCzSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBD4SuB%2COAHjB%2COCzSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMDySM%2COCzSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BD0SiC%2COAD3B%2COCzSL%2CkBAEC%2CeAAe%3BEAFjB%2CqBD2SwB%2COAFlB%2COCzSL%2CkBAEC%2CeAAe%3BEAFjB%2CoBD4SuB%2COAHjB%2COCzSL%2CkBAEC%2CeAAe%3BEAFjB%2CMDySM%2COCzSL%2CkBAEC%2CeAAe%3BIC6Bf%2CcAAA%3BIACA%2CeAAA%3B%3BED1BF%2C8BDoSiC%2COAD3B%2COCnSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBDqSwB%2COAFlB%2COCnSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBDsSuB%2COAHjB%2COCnSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMDmSM%2COCnSL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BDoSiC%2COAD3B%2COCnSL%2CkBAEC%2CeAAe%3BEAFjB%2CqBDqSwB%2COAFlB%2COCnSL%2CkBAEC%2CeAAe%3BEAFjB%2CoBDsSuB%2COAHjB%2COCnSL%2CkBAEC%2CeAAe%3BEAFjB%2CMDmSM%2COCnSL%2CkBAEC%2CeAAe%3BICuBf%2CcAAA%3BIACA%2CeAAA%3B%3BEDpBF%2C8BD8RiC%2COAD3B%2COC7RL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBD%2BRwB%2COAFlB%2COC7RL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBDgSuB%2COAHjB%2COC7RL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMD6RM%2COC7RL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BD8RiC%2COAD3B%2COC7RL%2CkBAEC%2CeAAe%3BEAFjB%2CqBD%2BRwB%2COAFlB%2COC7RL%2CkBAEC%2CeAAe%3BEAFjB%2CoBDgSuB%2COAHjB%2COC7RL%2CkBAEC%2CeAAe%3BEAFjB%2CMD6RM%2COC7RL%2CkBAEC%2CeAAe%3BICiBf%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDdF%2C8BDwRiC%2COAD3B%2COCvRL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CqBDyRwB%2COAFlB%2COCvRL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoBD0RuB%2COAHjB%2COCvRL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CMDuRM%2COCvRL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8BDwRiC%2COAD3B%2COCvRL%2CkBAEC%2CeAAe%3BEAFjB%2CqBDyRwB%2COAFlB%2COCvRL%2CkBAEC%2CeAAe%3BEAFjB%2CoBD0RuB%2COAHjB%2COCvRL%2CkBAEC%2CeAAe%3BEAFjB%2CMDuRM%2COCvRL%2CkBAEC%2CeAAe%3BICWf%2CcAAA%3BIACA%2CeAAA%3B%3BEAqBA%2C8BFqP%2BB%2COAD3B%2COEpPH%2CkBACG%3BEADJ%2CqBFsPsB%2COAFlB%2COEpPH%2CkBACG%3BEADJ%2CoBFuPqB%2COAHjB%2COEpPH%2CkBACG%3BEADJ%2CMFoPI%2COEpPH%2CkBACG%3BIAvBJ%2CgBAAA%3BIACA%2CiBAAA%3B%3BEA0BA%2C8BFgP%2BB%2COAD3B%2COE%5C%2FOH%2CkBACG%3BEADJ%2CqBFiPsB%2COAFlB%2COE%5C%2FOH%2CkBACG%3BEADJ%2CoBFkPqB%2COAHjB%2COE%5C%2FOH%2CkBACG%3BEADJ%2CMF%2BOI%2COE%5C%2FOH%2CkBACG%3BIA5BJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEA%2BBA%2C8BF2O%2BB%2COAD3B%2COE1OH%2CkBACG%3BEADJ%2CqBF4OsB%2COAFlB%2COE1OH%2CkBACG%3BEADJ%2CoBF6OqB%2COAHjB%2COE1OH%2CkBACG%3BEADJ%2CMF0OI%2COE1OH%2CkBACG%3BIAjCJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAoCA%2C8BFsO%2BB%2COAD3B%2COErOH%2CkBACG%3BEADJ%2CqBFuOsB%2COAFlB%2COErOH%2CkBACG%3BEADJ%2CoBFwOqB%2COAHjB%2COErOH%2CkBACG%3BEADJ%2CMFqOI%2COErOH%2CkBACG%3BIAtCJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAyCA%2C8BFiO%2BB%2COAD3B%2COEhOH%2CkBACG%3BEADJ%2CqBFkOsB%2COAFlB%2COEhOH%2CkBACG%3BEADJ%2CoBFmOqB%2COAHjB%2COEhOH%2CkBACG%3BEADJ%2CMFgOI%2COEhOH%2CkBACG%3BIA3CJ%2CcAAA%3BIACA%2CeAAA%3B%3BEA8CA%2C8BF4N%2BB%2COAD3B%2COE3NH%2CkBACG%3BEADJ%2CqBF6NsB%2COAFlB%2COE3NH%2CkBACG%3BEADJ%2CoBF8NqB%2COAHjB%2COE3NH%2CkBACG%3BEADJ%2CMF2NI%2COE3NH%2CkBACG%3BIAhDJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAmDA%2C8BFuN%2BB%2COAD3B%2COEtNH%2CkBACG%3BEADJ%2CqBFwNsB%2COAFlB%2COEtNH%2CkBACG%3BEADJ%2CoBFyNqB%2COAHjB%2COEtNH%2CkBACG%3BEADJ%2CMFsNI%2COEtNH%2CkBACG%3BIArDJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAwDA%2C8BFkN%2BB%2COAD3B%2COEjNH%2CkBACG%3BEADJ%2CqBFmNsB%2COAFlB%2COEjNH%2CkBACG%3BEADJ%2CoBFoNqB%2COAHjB%2COEjNH%2CkBACG%3BEADJ%2CMFiNI%2COEjNH%2CkBACG%3BIA1DJ%2CeAAA%3BIACA%2CgBAAA%3B%3BEIQA%2CqBACI%2CaACI%3BIjFoOR%2CmBAAA%3BIAAA%2CYAAA%3BIiFjOY%2CSAAA%3B%3BECuPZ%2CYACI%3BIlFvBJ%2CmBAAA%3B%3BEkF0BQ%2CYAHJ%2CuBAGK%3BIlF1BT%2CgBAAA%3BIAAA%2CyBAAA%3BIkF6BY%2CSAAS%2CEAAT%3BIACA%2COAAA%3BIACA%2CkBAAA%3BIACA%2CMAAA%3BIACA%2CUAAA%3B%3BEAIA%2CYAdR%2CuBAaK%2CUAAU%2CQACN%3BIACG%2CaAAA%3B%3BEAKJ%2CYApBR%2CuBAmBK%2CcACI%3BIACG%2CaAAA%3B%3BEAIA%2CYAzBZ%2CuBAmBK%2CcAKK%2CyBACG%3BIACG%2CaAAA%3B%3BEhF6TpB%2CcACI%3BI2E9lBJ%2CcAAA%3BIACA%2CeAAA%3B%3BEA%2BDA%2CcAAC%2CkBACG%3BIAjEJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAoEA%2CcAAC%2CkBACG%3BIAtEJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAyEA%2CcAAC%2CkBACG%3BIA3EJ%2CcAAA%3BIACA%2CeAAA%3B%3BEA8EA%2CcAAC%2CkBACG%3BIAhFJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAmFA%2CcAAC%2CkBACG%3BIArFJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAwFA%2CcAAC%2CkBACG%3BIA1FJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEA6FA%2CcAAC%2CkBACG%3BIA%5C%2FFJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAkGA%2CcAAC%2CkBACG%3BIApGJ%2CeAAA%3BIACA%2CgBAAA%3B%3BE3EkmBA%2C8BAEI%2CeACI%3BEAFR%2CoBACI%2CeACI%3BI2EtmBR%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDlDF%2C8B1EspBM%2Ce0EtpBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoB1EspBM%2Ce0EtpBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8B1EspBM%2Ce0EtpBL%2CkBAEC%2CeAAe%3BEAFjB%2CoB1EspBM%2Ce0EtpBL%2CkBAEC%2CeAAe%3BIC%2BCf%2CgBAAA%3BIACA%2CiBAAA%3B%3BED5CF%2C8B1EgpBM%2Ce0EhpBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoB1EgpBM%2Ce0EhpBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8B1EgpBM%2Ce0EhpBL%2CkBAEC%2CeAAe%3BEAFjB%2CoB1EgpBM%2Ce0EhpBL%2CkBAEC%2CeAAe%3BICyCf%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDtCF%2C8B1E0oBM%2Ce0E1oBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoB1E0oBM%2Ce0E1oBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8B1E0oBM%2Ce0E1oBL%2CkBAEC%2CeAAe%3BEAFjB%2CoB1E0oBM%2Ce0E1oBL%2CkBAEC%2CeAAe%3BICmCf%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDhCF%2C8B1EooBM%2Ce0EpoBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoB1EooBM%2Ce0EpoBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8B1EooBM%2Ce0EpoBL%2CkBAEC%2CeAAe%3BEAFjB%2CoB1EooBM%2Ce0EpoBL%2CkBAEC%2CeAAe%3BIC6Bf%2CcAAA%3BIACA%2CeAAA%3B%3BED1BF%2C8B1E8nBM%2Ce0E9nBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoB1E8nBM%2Ce0E9nBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8B1E8nBM%2Ce0E9nBL%2CkBAEC%2CeAAe%3BEAFjB%2CoB1E8nBM%2Ce0E9nBL%2CkBAEC%2CeAAe%3BICuBf%2CcAAA%3BIACA%2CeAAA%3B%3BEDpBF%2C8B1EwnBM%2Ce0ExnBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoB1EwnBM%2Ce0ExnBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8B1EwnBM%2Ce0ExnBL%2CkBAEC%2CeAAe%3BEAFjB%2CoB1EwnBM%2Ce0ExnBL%2CkBAEC%2CeAAe%3BICiBf%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDdF%2C8B1EknBM%2Ce0ElnBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2CoB1EknBM%2Ce0ElnBL%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2C8B1EknBM%2Ce0ElnBL%2CkBAEC%2CeAAe%3BEAFjB%2CoB1EknBM%2Ce0ElnBL%2CkBAEC%2CeAAe%3BICWf%2CcAAA%3BIACA%2CeAAA%3B%3BEAqBA%2C8B3E%2BkBI%2Ce2E%5C%2FkBH%2CkBACG%3BEADJ%2CoB3E%2BkBI%2Ce2E%5C%2FkBH%2CkBACG%3BIAvBJ%2CgBAAA%3BIACA%2CiBAAA%3B%3BEA0BA%2C8B3E0kBI%2Ce2E1kBH%2CkBACG%3BEADJ%2CoB3E0kBI%2Ce2E1kBH%2CkBACG%3BIA5BJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEA%2BBA%2C8B3EqkBI%2Ce2ErkBH%2CkBACG%3BEADJ%2CoB3EqkBI%2Ce2ErkBH%2CkBACG%3BIAjCJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAoCA%2C8B3EgkBI%2Ce2EhkBH%2CkBACG%3BEADJ%2CoB3EgkBI%2Ce2EhkBH%2CkBACG%3BIAtCJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAyCA%2C8B3E2jBI%2Ce2E3jBH%2CkBACG%3BEADJ%2CoB3E2jBI%2Ce2E3jBH%2CkBACG%3BIA3CJ%2CcAAA%3BIACA%2CeAAA%3B%3BEA8CA%2C8B3EsjBI%2Ce2EtjBH%2CkBACG%3BEADJ%2CoB3EsjBI%2Ce2EtjBH%2CkBACG%3BIAhDJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAmDA%2C8B3EijBI%2Ce2EjjBH%2CkBACG%3BEADJ%2CoB3EijBI%2Ce2EjjBH%2CkBACG%3BIArDJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAwDA%2C8B3E4iBI%2Ce2E5iBH%2CkBACG%3BEADJ%2CoB3E4iBI%2Ce2E5iBH%2CkBACG%3BIA1DJ%2CeAAA%3BIACA%2CgBAAA%3B%3BE3E4mBA%2CqBACI%2CeACI%3BI2E%5C%2FmBR%2CuBAAA%3BIACA%2CwBAAA%3B%3BE3EonBA%2CcACI%2CeACI%3BIACI%2CSAAA%3B%3BEAHZ%2CcACI%2CeAII%3BIACI%2CUAAA%3BI2E3nBZ%2CcAAA%3BIACA%2CeAAA%3B%3BEA%2BDA%2Cc3EsjBI%2Ce2EtjBH%2CkBACG%3BIAjEJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAoEA%2Cc3EijBI%2Ce2EjjBH%2CkBACG%3BIAtEJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAyEA%2Cc3E4iBI%2Ce2E5iBH%2CkBACG%3BIA3EJ%2CcAAA%3BIACA%2CeAAA%3B%3BEA8EA%2Cc3EuiBI%2Ce2EviBH%2CkBACG%3BIAhFJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAmFA%2Cc3EkiBI%2Ce2EliBH%2CkBACG%3BIArFJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAwFA%2Cc3E6hBI%2Ce2E7hBH%2CkBACG%3BIA1FJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEA6FA%2Cc3EwhBI%2Ce2ExhBH%2CkBACG%3BIA%5C%2FFJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAkGA%2Cc3EmhBI%2Ce2EnhBH%2CkBACG%3BIApGJ%2CeAAA%3BIACA%2CgBAAA%3B%3BE3EkoBI%2CcAAC%2C8BAEG%2CeACI%3BEAFR%2CcAAC%2CoBACG%2CeACI%3BI2EtoBZ%2CcAAA%3BIACA%2CeAAA%3B%3BEDlDF%2Cc1EorBO%2C8BAEG%2Ce0EtrBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1EqrBO%2CoBACG%2Ce0EtrBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1EorBO%2C8BAEG%2Ce0EtrBT%2CkBAEC%2CeAAe%3BEAFjB%2Cc1EqrBO%2CoBACG%2Ce0EtrBT%2CkBAEC%2CeAAe%3BIC%2BCf%2CgBAAA%3BIACA%2CiBAAA%3B%3BED5CF%2Cc1E8qBO%2C8BAEG%2Ce0EhrBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1E%2BqBO%2CoBACG%2Ce0EhrBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1E8qBO%2C8BAEG%2Ce0EhrBT%2CkBAEC%2CeAAe%3BEAFjB%2Cc1E%2BqBO%2CoBACG%2Ce0EhrBT%2CkBAEC%2CeAAe%3BICyCf%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDtCF%2Cc1EwqBO%2C8BAEG%2Ce0E1qBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1EyqBO%2CoBACG%2Ce0E1qBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1EwqBO%2C8BAEG%2Ce0E1qBT%2CkBAEC%2CeAAe%3BEAFjB%2Cc1EyqBO%2CoBACG%2Ce0E1qBT%2CkBAEC%2CeAAe%3BICmCf%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDhCF%2Cc1EkqBO%2C8BAEG%2Ce0EpqBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1EmqBO%2CoBACG%2Ce0EpqBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1EkqBO%2C8BAEG%2Ce0EpqBT%2CkBAEC%2CeAAe%3BEAFjB%2Cc1EmqBO%2CoBACG%2Ce0EpqBT%2CkBAEC%2CeAAe%3BIC6Bf%2CcAAA%3BIACA%2CeAAA%3B%3BED1BF%2Cc1E4pBO%2C8BAEG%2Ce0E9pBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1E6pBO%2CoBACG%2Ce0E9pBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1E4pBO%2C8BAEG%2Ce0E9pBT%2CkBAEC%2CeAAe%3BEAFjB%2Cc1E6pBO%2CoBACG%2Ce0E9pBT%2CkBAEC%2CeAAe%3BICuBf%2CcAAA%3BIACA%2CeAAA%3B%3BEDpBF%2Cc1EspBO%2C8BAEG%2Ce0ExpBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1EupBO%2CoBACG%2Ce0ExpBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1EspBO%2C8BAEG%2Ce0ExpBT%2CkBAEC%2CeAAe%3BEAFjB%2Cc1EupBO%2CoBACG%2Ce0ExpBT%2CkBAEC%2CeAAe%3BICiBf%2CuBAAA%3BIACA%2CwBAAA%3B%3BEDdF%2Cc1EgpBO%2C8BAEG%2Ce0ElpBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1EipBO%2CoBACG%2Ce0ElpBT%2CkBACC%2CcAAa%2CIAAI%2CaAAgB%3BEADnC%2Cc1EgpBO%2C8BAEG%2Ce0ElpBT%2CkBAEC%2CeAAe%3BEAFjB%2Cc1EipBO%2CoBACG%2Ce0ElpBT%2CkBAEC%2CeAAe%3BICWf%2CcAAA%3BIACA%2CeAAA%3B%3BEAqBA%2Cc3E6mBK%2C8BAEG%2Ce2E%5C%2FmBP%2CkBACG%3BEADJ%2Cc3E8mBK%2CoBACG%2Ce2E%5C%2FmBP%2CkBACG%3BIAvBJ%2CgBAAA%3BIACA%2CiBAAA%3B%3BEA0BA%2Cc3EwmBK%2C8BAEG%2Ce2E1mBP%2CkBACG%3BEADJ%2Cc3EymBK%2CoBACG%2Ce2E1mBP%2CkBACG%3BIA5BJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEA%2BBA%2Cc3EmmBK%2C8BAEG%2Ce2ErmBP%2CkBACG%3BEADJ%2Cc3EomBK%2CoBACG%2Ce2ErmBP%2CkBACG%3BIAjCJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAoCA%2Cc3E8lBK%2C8BAEG%2Ce2EhmBP%2CkBACG%3BEADJ%2Cc3E%2BlBK%2CoBACG%2Ce2EhmBP%2CkBACG%3BIAtCJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAyCA%2Cc3EylBK%2C8BAEG%2Ce2E3lBP%2CkBACG%3BEADJ%2Cc3E0lBK%2CoBACG%2Ce2E3lBP%2CkBACG%3BIA3CJ%2CcAAA%3BIACA%2CeAAA%3B%3BEA8CA%2Cc3EolBK%2C8BAEG%2Ce2EtlBP%2CkBACG%3BEADJ%2Cc3EqlBK%2CoBACG%2Ce2EtlBP%2CkBACG%3BIAhDJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAmDA%2Cc3E%2BkBK%2C8BAEG%2Ce2EjlBP%2CkBACG%3BEADJ%2Cc3EglBK%2CoBACG%2Ce2EjlBP%2CkBACG%3BIArDJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAwDA%2Cc3E0kBK%2C8BAEG%2Ce2E5kBP%2CkBACG%3BEADJ%2Cc3E2kBK%2CoBACG%2Ce2E5kBP%2CkBACG%3BIA1DJ%2CeAAA%3BIACA%2CgBAAA%3B%3BE3E4oBI%2CcAAC%2CqBACG%2CeACI%3BI2E%5C%2FoBZ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAyGA%2Cc3EmiBK%2CqBACG%2Ce2EpiBP%2CkBACG%3BIA3GJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEA8GA%2Cc3E8hBK%2CqBACG%2Ce2E%5C%2FhBP%2CkBACG%3BIAhHJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAmHA%2Cc3EyhBK%2CqBACG%2Ce2E1hBP%2CkBACG%3BIArHJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAwHA%2Cc3EohBK%2CqBACG%2Ce2ErhBP%2CkBACG%3BIA1HJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEA6HA%2Cc3E%2BgBK%2CqBACG%2Ce2EhhBP%2CkBACG%3BIA%5C%2FHJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAkIA%2Cc3E0gBK%2CqBACG%2Ce2E3gBP%2CkBACG%3BIApIJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAuIA%2Cc3EqgBK%2CqBACG%2Ce2EtgBP%2CkBACG%3BIAzIJ%2CcAAA%3BIACA%2CeAAA%3B%3BEA4IA%2Cc3EggBK%2CqBACG%2Ce2EjgBP%2CkBACG%3BIA9IJ%2CeAAA%3BIACA%2CgBAAA%3B%3BEAvBA%2CqBAGI%2CeACI%2CcACI%3BEAJZ%2C8BAEI%2CeACI%2CcACI%3BEAHZ%2CoBACI%2CeACI%2CcACI%3BIACI%2CgBAAA%3BIACA%2CeAAA%3B%3BEAKhB%2CcACI%2CcACI%3BIACI%2CgBAAA%3BIACA%2CeAAA%3B%3BE1DsXZ%3BIACI%2CcAAA%3B%3BEDRJ%2CqBACI%2CeACI%3BIACI%2CSAAA%3B%3BEAHZ%2CqBACI%2CeAII%3BIACI%2CUAAA%3BIACA%2CUAAA%3B%3BEO7UZ%2CMAAM%2COAAQ%2CeAAe%3BIoDnC7B%2CcAAA%3BIACA%2CeAAA%3BIpDoCI%2CUAAA%3B%3BEAEJ%2CoBAAqB%2COAAM%2COAAQ%2CeAAe%3BIoDvClD%2CcAAA%3BIACA%2CeAAA%3B%3BEpDyCA%2CqBAAsB%2COAAM%2COAAQ%2CeAAe%3BIoD1CnD%2CuBAAA%3BIACA%2CwBAAA%3B%3BEpD4CA%2CMAAM%2COAAQ%2CeAAe%2CcAAa%2CaAAc%3BIACpD%2CcAAA%3B%3B%3BAlBlBJ%2CgBAL4C%3BERsF5C%2CcACI%3BICiIJ%2CYAAA%3BIAAA%2CSAAA%3BID9HQ%2CUAAA%3B%3B%3BAQhFR%2CgBALuC%3BEgByPvC%2CqBACI%3BIACI%2C4BAAA%3B%3BEAGR%3BIACI%2CmBAAA%3B%3BEADJ%2CYAEI%3BIACI%2CaAAA%3BIACA%2CiBAAA%3B%3B%3BAhBvPZ%2CgBAN2C%3BELwnBvC%2CcAAc%2CqBAEV%2CeACI%3BEAFR%2CqBACI%2CeACI%3BI2E5pBR%2CuBAAA%3BIACA%2CwBAAA%3B%3BEA%2BDA%2Cc3EylBc%2CqBAEV%2Ce2E3lBH%2CkBACG%3BEADJ%2CqB3E2lBI%2Ce2E3lBH%2CkBACG%3BIAjEJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAoEA%2Cc3EolBc%2CqBAEV%2Ce2EtlBH%2CkBACG%3BEADJ%2CqB3EslBI%2Ce2EtlBH%2CkBACG%3BIAtEJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEAyEA%2Cc3E%2BkBc%2CqBAEV%2Ce2EjlBH%2CkBACG%3BEADJ%2CqB3EilBI%2Ce2EjlBH%2CkBACG%3BIA3EJ%2CcAAA%3BIACA%2CeAAA%3B%3BEA8EA%2Cc3E0kBc%2CqBAEV%2Ce2E5kBH%2CkBACG%3BEADJ%2CqB3E4kBI%2Ce2E5kBH%2CkBACG%3BIAhFJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAmFA%2Cc3EqkBc%2CqBAEV%2Ce2EvkBH%2CkBACG%3BEADJ%2CqB3EukBI%2Ce2EvkBH%2CkBACG%3BIArFJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAwFA%2Cc3EgkBc%2CqBAEV%2Ce2ElkBH%2CkBACG%3BEADJ%2CqB3EkkBI%2Ce2ElkBH%2CkBACG%3BIA1FJ%2CuBAAA%3BIACA%2CwBAAA%3B%3BEA6FA%2Cc3E2jBc%2CqBAEV%2Ce2E7jBH%2CkBACG%3BEADJ%2CqB3E6jBI%2Ce2E7jBH%2CkBACG%3BIA%5C%2FFJ%2CcAAA%3BIACA%2CeAAA%3B%3BEAkGA%2Cc3EsjBc%2CqBAEV%2Ce2ExjBH%2CkBACG%3BEADJ%2CqB3EwjBI%2Ce2ExjBH%2CkBACG%3BIApGJ%2CeAAA%3BIACA%2CgBAAA%3B%3BEAvBA%2CqBAGI%2CeACI%2CcACI%3BEAJZ%2C8BAEI%2CeACI%2CcACI%3BEAHZ%2CoBACI%2CeACI%2CcACI%3BIACI%2CgBAAA%3BIACA%2CeAAA%3B%3BEAKhB%2CcACI%2CcACI%3BIACI%2CgBAAA%3BIACA%2CeAAA%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3B%3BA4BrDhB%2C2BAA4B%3BEACxB%2CwBAAA%3B%3BAAGJ%2CaAAc%2CWAAW%2CiBAAiB%3BEACtC%2CwBAAA%3B%3BAAGJ%2C2BAA2B%2CqBAAsB%2CmBAAmB%2CeAAe%3BEAC%5C%2FE%2CaAAA%3B%3BAAGJ%2CiBAAkB%2CQAAO%2CQAAS%2COAAM%2CWAAW%3BEAC%5C%2FC%2CkBAAkB%2CaAAlB%3BEACA%2CgCAAA%3B%3BAAGJ%2CqBAAsB%2CaAAa%2CiBAAiB%2CqBAAuB%2CuBAAoB%2CWAAW%3BEACtG%2CSAAS%2CEAAT%3B%3BAAGJ%3BEACI%2CeAAA%3BEACA%2CuBAAA%3B%3BAAFJ%2CgBAII%3BEACI%2CoBAAA%3B%3BAAKJ%2CIAAC%2CWACG%3BEACI%2CsBAAA%3B%3BAAKZ%2CuBACM%3BEACE%2CaAAA%3B%3BAAOA%2CQADJ%2CEACK%2CIAAI%3BEACD%2C%2BBAAA%3B%3BAAOA%2CQAHR%2CQAAO%2CMAEH%2CGAAE%2CQACG%3BEACG%2CSAAS%2CEAAT%3BEACA%2CqBAAA%3BEACA%2CsDAAA%3BEACA%2C4BAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3B%3BAAKJ%2CQAdR%2CQAAO%2CMAaH%2CGAAE%2CMACG%3BEACG%2CSAAS%2CEAAT%3BEACA%2CqBAAA%3BEACA%2CoDAAA%3BEACA%2C4BAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CsBAAA%3B%3BAAKJ%2CQA1BR%2CQAAO%2CMAyBH%2CGAAE%2CcACG%3BEACG%2CSAAS%2CEAAT%3BEACA%2CqBAAA%3BEACA%2CmDAAA%3BEACA%2C4BAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CsBAAA%3B%3BAAzChB%2CQA8CI%2CWACI%3BEACI%2CyBAAA%3B%3BAAKZ%2CgBAEI%2CkBAEI%2CQAAO%2CSAEH%3BEACI%2CaAAA%3B%3BAAGJ%2CgBARR%2CkBAEI%2CQAAO%2CSAMF%3BEACG%2CSAAS%2CEAAT%3BEACA%2CmDAAA%3BEACA%2C4BAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3B%3BAAMR%3BEAAA%2CgBArBJ%2CkBAEI%2CQAAO%3BIAiBC%2CYAAA%3B%3B%3BAA%2BChB%3BEAvCI%3BIACI%2CkBAAA%3BIACA%2CsBAAA%3B%3BEAGJ%2CgBAEI%2CgBAAe%3BIACX%2CsBAAA%3B%3BEAHR%2CgBAMI%3BIACI%2CWAAA%3B%3BEAPR%2CgBAMI%2C4BAGI%3BIACI%2CgBAAA%3B%3BEAVZ%2CgBAMI%2C4BAGI%2CsBAGI%3BIACI%2CgBAAA%3BIACA%2CgBAAA%3BIACA%2CeAAA%3B%3BEAfhB%2CgBAMI%2C4BAGI%2CsBAGI%2CGAKI%3BIACI%2CqBAAA%3B%3BEAOpB%2CiBAEI%3BIACI%2CuBAAA%3BIACA%2CcAAA%3B%3B%3BAAiFZ%3BEA1EI%2CYAEI%2CcAEI%2CQAAO%3BIACH%2CgBAAA%3BIACA%2CWAAA%3B%3BEANZ%2CYAUI%2CqBAEI%2CKAEI%3BIACI%2CsBAAA%3BIACA%2CeAAA%3B%3BEAMhB%3BIACI%2CwBAAA%3B%3BEAGJ%2C2BAEI%3BIACI%2CcAAA%3B%3BEAIR%3BIACI%2CwBAAA%3BIACA%2CkBAAA%3B%3BEAFJ%2CQAII%3BIACI%2CcAAA%3B%3BEALR%2CQAQI%3BIACI%2CaAAA%3B%3BEAIR%3BIACI%2CoCAAA%3BIACA%2CqBAAA%3BIACA%2C0BAAA%3B%3BEAGJ%2CiBAEI%2CQAAO%3BIACH%2CmBAAA%3B%3BEAIR%2CwBAEI%2CiBAEI%3BIACI%2CYAAA%3B%3BEALZ%2CwBAEI%2CiBAMI%3BIACI%2CSAAA%3B%3B%3BAA%2BChB%3BEAvCI%3BIACI%2CaAAA%3BIACA%2CkBAAA%3B%3BEAGJ%3BIACI%2CYAAA%3BIACA%2CgBAAA%3B%3BEAGJ%2CQAAQ%3BIACJ%2CuBAAA%3B%3BEADJ%2CQAAQ%2CaAGJ%3BIACI%2CaAAA%3B%3BEAIR%2CYAEI%2CcAEI%2CQAAO%3BIACH%2CmBAAA%3B%3BEALZ%2CYASI%2CqBAEI%2CKAEI%3BIACI%2CsBAAA%3B%3B%3BAAOpB%3BEACI%2CcAAA%3BEACA%2CkBAAA%3B%3BAAFJ%2CYAII%3BEACI%2C2BAAA%3BEACA%2CaAAA%3BEACA%2CkBAAA%3BEACA%2C2BAAA%3BEACA%2CWAAA%3B%3BAATR%2CYAYI%3BEACI%2CgBAAA%3BEACA%2CcAAA%3BEACA%2CeAAA%3B%3BAAfR%2CYAYI%2CGAKI%3BEACI%2CcAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CyBAAA%3B%3BAAEA%2CYAbR%2CGAKI%2CEAQK%3BEACG%2CcAAA%3B%3BAASZ%3BEAAA%3BIAHI%2CaAAA%3B%3B%3BAAhCR%2CYAmCI%3BEACI%2CcAAA%3BEACA%2CYAAA%3BEACA%2CiBAAA%3BEACA%2CkBAAA%3B%3BAAvCR%2CYAmCI%2CgBAMI%3BEACI%2CcAAA%3BEACA%2CWAAA%3BEACA%2CeAAA%3BEACA%2CeAAA%3BEACA%2CgBAAA%3BEACA%2CyBAAA%3B%3BAAEA%2CYAdR%2CgBAMI%2CEAQK%3BEACG%2CcAAA%3BEACA%2CiCAAA%3B%3BAAGJ%2CYAnBR%2CgBAMI%2CEAaK%3BEACG%2CSAAS%2CEAAT%3BEACA%2CqBAAA%3BEACA%2CoDAAA%3BEACA%2C4BAAA%3BEACA%2CWAAA%3BEACA%2CWAAA%3BEACA%2CgBAAA%3BEACA%2CsBAAA%3BEACA%2CiCAAA%3B%3BAAGJ%2CYA%5C%2FBR%2CgBAMI%2CEAyBK%2CMAAM%3BEACH%2C0DAAA%3BEACA%2CiCAAA%3B%3BAApEhB%2CYAmCI%2CgBAqCI%3BEACI%2CaAAA%3BEACA%2CkBAAA%3BEACA%2CsBAAA%3BEACA%2CcAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3B%3BAAEA%2CYAhDR%2CgBAqCI%2CkBAWK%3BEACG%2CcAAA%3BEACA%2CWAAA%3BEACA%2CmBAAA%3B%3BAAtFhB%2CYAmCI%2CgBAqCI%2CkBAiBI%3BEACI%2CWAAA%3BEACA%2CqBAAA%3BEACA%2CcAAA%3BEACA%2CcAAA%3BEACA%2CgBAAA%3B%3BAA9FhB%2CYAmGI%2CoBAAmB%3BEACf%2CgBAAA%3B%3BAAIR%3BEACI%2CsBAAA%3B%3BAAGJ%2CiBACI%2CWAAU%2COAAO%2COACb%3BEACI%2CyBAAA%3B%3BAAIZ%2CsBAAsB%2CqBAAsB%3BEAAmB%2CmBAAA%3B%3BAAC%5C%2FD%2CaAAc%2CQAAO%2COAAQ%2CKAAI%3BAAAsB%3BEAAuB%2CUAAA%3BEAAY%2CWAAA%3B%3BAAC1F%2CYAAa%2CcAAc%2CQAAO%2COAAO%2CMAAO%3BAAAK%2CYAAa%2CEAAC%2COAAO%2CuBAAuB%2CMAAO%3BEAAM%2CWAAA%3B%3BAAC9G%2CYAAa%2CcAAc%2CQAAO%2COAAQ%3BAAAK%2CYAAa%2CEAAC%2COAAO%2CuBAAwB%3BEAAM%2CWAAA%3B%3B%3B%3B%3B%3B%3BAAOlG%2CQAAS%2C8BAA8B%3BAACvC%2CQAAS%2C8BAA8B%2CMAAK%3BAAC5C%2CQAAS%2C8BAA8B%2CMAAK%3BEACxC%2CwBAAA%3BEACA%2CSAAA%3BEACA%2CMAAM%2CgBAAN%3BEACA%2CSAAA%3BEACA%2CSAAA%3BEACA%2CUAAA%3BEACA%2CgBAAA%3BEACA%2CUAAA%3BEACA%2CQAAA%3BEACA%2CkBAAA%3B%3B%3BAAGJ%2CQAAS%2C8BAA8B%2CGAAE%3BEACrC%2CMAAA%3B%3BAAEJ%2CQAAS%2CwBAAwB%2CMAAK%3BAACtC%2CQAAS%2CwBAAwB%2CMAAK%3BEAClC%2C2BAAA%3BEACA%2CmCAAA%3BEACA%2CgCAAA%3BEAEA%2C6BAAA%3BEACA%2CqBAAA%3BEAEA%2CmBAAA%3BEACA%2CoBAAA%3BEAEA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2CoBAAA%3BEACA%2CqBAAA%3BEACA%2C2BAAA%3BEACA%2CkCAAA%3BEAEA%2C%2BBAAA%3B%3BAAEJ%2CQAAS%3BEACL%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3B%3BAAGJ%2CQAAS%2CsBAAsB%3BEAC3B%2CcAAA%3B%3BAAGJ%2CQAAS%2CsBAAsB%3BEAC3B%2CiBAAA%3B%3B%3BAAIJ%2CQAAS%2CwBAAwB%2CGAAE%3BEAC%5C%2FB%2CkBAAA%3BEACA%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CWAAA%3BEACA%2CQAAA%3B%3B%3BAAIJ%2CQAAS%2CwBAAwB%2CGAAE%2CKAAQ%3BEACvC%2CaAAA%3BEACA%2CmBAAA%3BEACA%2CcAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3B%3BAAEJ%2CQAAS%2CwBAAwB%2CGAAE%2CKAAM%2CEAAC%3BAAC1C%2CQAAS%2CwBAAwB%2CGAAE%2CKAAM%2CEAAC%3BAAC1C%2CQAAS%2CwBAAwB%2CGAAE%2CKAAM%2CEAAC%2COAAQ%3BEAC9C%2CcAAA%3B%3B%3BAAKJ%2CQAAS%2CwBAAwB%2CGAAE%2CKAAQ%2CQAAK%3BAAChD%2CQAAS%2CwBAAwB%2CGAAE%2CKAAQ%2CQAAK%3BAAChD%2CQAAS%2CwBAAwB%2CGAAE%2CKAAQ%2CQAAK%3BEAC5C%2C6BAAA%3BEACA%2CqBAAA%3BEACA%2CmBAAA%3BEACA%2CoBAAA%3BEACA%2CoBAAA%3BEACA%2CoBAAA%3B%3BAAEJ%2CeAAgB%2CMAAK%2CiBAAoB%2CmBAAgB%2CMAAM%3BAAC%5C%2FD%2CeAAgB%2CMAAK%2CiBAAiB%2CQAAW%2CmBAAgB%3BEAC%5C%2FD%2CqBAAA%3BEAAuB%2CkBAAA%3B%3BAACzB%2CeAAgB%2CMAAK%2CiBAAoB%2CmBAAgB%3BAACzD%2CeAAgB%2CMAAK%2CiBAAoB%2CmBAAgB%3BEACvD%2CqBAAA%3BEAAuB%2CkBAAA%3BEAAoB%2CWAAA%3BEAAa%2CYAAA%3B%3BAAC1D%2CeAAgB%2CMAAK%2CiBAAoB%2CmBAAgB%3BEAAS%2CyBAAA%3B%3B%3BAAElE%2CQAAS%2CwBAAwB%2CGAAE%2CKAAQ%3BEACvC%2CSAAA%3BEACA%2CqBAAA%3BEACA%2CcAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CsBAAA%3BEACA%2CsBAAA%3B%3B%3BAAIJ%2CQAAS%2CuBAAuB%2CGAAE%2CKAAQ%3BEACtC%2CaAAA%3B%3B%3BAAIJ%2CQAAS%2CwBAAwB%2CGAAE%2CKAAM%3BEACrC%2CcAAA%3BEACA%2CYAAA%3B%3BAAIJ%2CQAAS%2CwBAAwB%2CGAAE%2CKAAM%3BEACrC%2CiBAAA%3BEACA%2CeAAA%3BEACA%2CiBAAA%3BEACA%2CWAAA%3B%3BAAGJ%2CQAAS%2CwBAAwB%3BEAC7B%2CaAAA%3B%3BAAGJ%2C0BAA2B%2CIAAG%3BEAC1B%2CwBAAA%3B%3BACnhBQ%3BEAAA%2CIANR%2CgBACA%2CyBAAwB%2CiBACpB%3BIAEQ%2CaAAA%3B%3B%3BAAJhB%2CIAAI%2CgBACA%2CyBAAwB%2CiBACpB%2C8BAII%2CKAAI%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAAIJ%3BEAAA%2CIAZR%2CgBACA%2CyBAAwB%2CiBACpB%2C8BAII%2CKAAI%3BIAII%2CeAAA%3B%3B%3BAAQJ%2CIAlBZ%2CgBAeA%2CyBACI%2C8BACI%2CMACK%3BEACE%2CwCAAA%3B%3BAAsCf%3BEAAA%2CIAzDA%2CgBAyBI%2CyBAAwB%2CSACpB%3BIACI%2CWAAW%2CeAAX%3BIACA%2CwBAAA%3B%3BEA6BZ%2CIAzDA%2CgBA%2BBI%2CcACI%3BIACI%2CgCAAA%3BIACA%2C6BAAA%3B%3BEAuBZ%2CIAzDA%2CgBAqCI%2CcACI%3BIACI%2CYAAA%3BIACA%2CiBAAA%3BIACA%2CiBAAA%3BIACA%2CeAAA%3BIACA%2CWAAA%3B%3BEAcZ%2CIAzDA%2CgBAqCI%2CcACI%2CmBAMI%2CEAAC%2CkBACG%2CKAAI%3BIACA%2CcAAA%3B%3BEAWpB%2CIAzDA%2CgBAqCI%2CcACI%2CmBAMI%2CEAAC%2CkBAIG%2CKAAI%3BIACA%2CmBAAA%3BIACA%2CcAAA%3BIACA%2CgBAAA%3B%3B%3BAAnDxB%2CIAAI%2CgBAyDA%2CKAAI%2C6BAA6B%3BEAC7B%2CkBAAA%3BEACA%2CcAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CWAAA%3BEACA%2CUAAA%3BEACA%2CWAAA%3B%3BAAIA%3BEAAA%2CIApEJ%2CgBAyDA%2CKAAI%2C6BAA6B%3BIASzB%2CcAAA%3B%3B%3BAAlEZ%2CIAAI%2CgBAyDA%2CKAAI%2C6BAA6B%2COAW7B%2CKAAI%3BEACA%2CcAAA%3BEACA%2CYAAA%3B%3BAAKR%3BEAAA%2CIA3EA%2CgBAyDA%2CKAAI%2C6BAA6B%3BIAgBzB%2CsBAAA%3B%3B%3BAAzEZ%2CIAAI%2CgBA4EA%3BEACI%2CyBAAA%3B%3BAA7ER%2CIAAI%2CgBA4EA%2CkBAEQ%2CEAAC%3BEACG%2CkBAAA%3B%3BAA%5C%2FEhB%2CIAAI%2CgBA4EA%2CkBAKQ%2CWAAU%3BEACN%2CaAAA%3B%3BAAKA%3BEAAA%2CIAvFZ%2CgBA4EA%2CkBAKQ%2CWAAU%3BIAGF%2C4BAAA%3BIACA%2CuBAAA%3B%3B%3BAAKR%3BEAAA%2CIA1FR%2CgBA4EA%2CkBAKQ%2CWAAU%3BIAOF%2CaAAA%3B%3B%3BAAxFpB%2CIAAI%2CgBA4FA%2CiBAAgB%3BEACZ%2CeAAA%3BEACA%2CgBAAA%3B%3BAA9FR%2CIAAI%2CgBA4FA%2CiBAAgB%2CcAGZ%3BEACI%2CqBAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3B%3BAAII%3BEAAA%2CIAxGZ%2CgBA4FA%2CiBAAgB%2CcAGZ%3BIAOY%2CUAAA%3B%3B%3BAAtGpB%2CIAAI%2CgBA4FA%2CiBAAgB%2CcAGZ%2CGASQ%3BEACI%2CgBAAA%3BEACA%2CkBAAA%3B%3BAA1GpB%2CIAAI%2CgBA4FA%2CiBAAgB%2CcAGZ%2CGAaQ%2CgBACI%3BEACI%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAAGR%2CIApHZ%2CgBA4FA%2CiBAAgB%2CcAGZ%2CGAqBS%2CMACG%3BEACI%2CmBAAA%3BEACA%2CUAAA%3BEACA%2C2CAAA%3B%3BAAMZ%3BEAAA%2CIA9HR%2CgBA4FA%2CiBAAgB%2CcAGZ%3BIA6BY%2CUAAA%3B%3B%3BAAQZ%3BEAAA%2CIApIJ%2CgBA4FA%2CiBAAgB%2CcAoCJ%2CGAAE%2CYAAY%3BIACV%2CiBAAA%3B%3B%3BAAjIpB%2CIAAI%2CgBAqII%2CGAAE%2CYAAY%3BEACV%2CiBAAA%3B%3BAAsBR%3BEAAA%2CIA5JA%2CgBAyIQ%2CcACI%3BIACI%2CgCAAA%3BIACA%2C6BAAA%3B%3BEACA%2CIA7IhB%2CgBAyIQ%2CcACI%2CmBAGK%2CYAAY%3BIACT%2CiBAAA%3B%3BEAcpB%2CIA5JA%2CgBAyIQ%2CcAQI%3BIACI%2CaAAA%3B%3BEAUhB%2CIA5JA%2CgBAqJQ%2CWAAU%3BIACN%2CoBAAA%3B%3BEAMZ%2CIA5JA%2CgBAwJQ%2CGAAE%3BIACE%2CiBAAA%3B%3B%3BAAzJhB%2CIAAI%2CgBA4JA%2CcACI%2CWACI%3BEACI%2CWAAA%3B%3BAAIJ%2CIAnKR%2CgBA4JA%2CcAMI%2CqBACK%3BEACG%2CSAAS%2CWAAT%3BEACA%2CcAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3B%3BAAvKhB%2CIAAI%2CgBA4JA%2CcAcI%3BEACI%2CWAAA%3B%3BAA3KZ%2CIAAI%2CgBA4JA%2CcAcI%2CWAEI%3BEAMI%2CcAAA%3BEACA%2CqBAAA%3B%3BAANA%2CIA7KZ%2CgBA4JA%2CcAcI%2CWAEI%2COACK%3BEACI%2CSAAS%2COAAT%3BEACA%2CeAAA%3BEACC%2CcAAA%3B%3BAAhLtB%2CIAAI%2CgBA4JA%2CcA0BI%3BEACI%2CaAAA%3B%3BAAvLZ%2CIAAI%2CgBA0LA%2CcACI%2CsBACI%2CKAAI%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CqBAAA%3B%3BAA%5C%2FLhB%2CIAAI%2CgBA0LA%2CcACI%2CsBAMI%2CKAAI%3BEACA%2CgBAAA%3B%3BAAlMhB%2CIAAI%2CgBA0LA%2CcACI%2CsBASI%3BEACI%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3B%3BAAKZ%2COAAO%2CoBACH%2CaACI%3BEACI%2CeAAA%3B%3BAC%5C%2FMhB%2CaACI%3BEACQ%2CaAAA%3B%3BAAEA%2CaAHR%2CmBAEI%2CEACK%3BEACG%2CwCAAA%3B%3BAALhB%2CaACI%2CmBAOI%2CmBACI%2CKAAI%3BEACA%2CkBAAA%3B%3BAAIZ%2CaAAC%2CMACG%2CmBACI%3BEACI%2CcAAA%3B%3BAACA%2CaAJX%2CMACG%2CmBACI%2CEAEK%3BEACG%2CcAAA%3B%3BAAOR%2CaAFR%2CWACI%2CiBACK%3BEACG%2CwCAAA%3B%3BAAOR%2CcADJ%2CcACK%2CMACG%2CWACI%2CiBACI%3BEACG%2CcAAA%3B%3BAANvB%2CcACI%2CcAUI%2CmBACI%3BEACI%2CoCAAA%3BEACA%2CgBAAA%3B%3BAAKZ%2CaACI%2CWACC%3BEACC%2CWAAA%3B%3BAAHN%2CaACI%2CWAII%3BEACI%2CwBAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3B%3BAARZ%2CaACI%2CWAII%2CiBAII%3BEACI%2CiBAAA%3B%3BAAVhB%2CaAcF%3BEACC%2CQAAA%3BEACS%2CWAAA%3BEACT%2CkBAAA%3B%3BAAjBC%2CaAcF%2CeAIC%3BEACC%2CsBAAA%3BEACY%2CcAAA%3BEACA%2C2BAAA%3B%3BAArBZ%2CaAwBI%3BEACI%2CQAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3B%3BAA3BR%2CaAwBI%2CqBAII%3BEACI%2CcAAA%3BEACA%2C2BAAA%3B%3BAA9BZ%2CaAiCI%3BEACI%2CQAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3B%3BAApCR%2CaAiCI%2CqBAII%3BEACI%2CcAAA%3BEACA%2CiBAAA%3BEACA%2C2BAAA%3B%3BAACA%2CaARR%2CqBAII%2COAIK%3BEACG%2CSAAS%2CWAAT%3BEACA%2CcAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3B%3BAAGR%2CaAfJ%2CqBAeK%3BEACG%2CaAAA%3B%3BAAGR%2CaAAC%2CMACG%3BEACQ%2CqBAAA%3B%3BAAIR%2CaADJ%2CqBACK%3BEACG%2CSAAS%2CWAAT%3BEACA%2CcAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3B%3BAAOJ%2CeAFR%2CoBACI%2CoBAAmB%2CgBACd%3BEACG%2CSAAS%2CEAAT%3BEACA%2C2DAAA%3BEACA%2C4BAAA%3BEACA%2CYAAA%3BEACA%2CaAAA%3BEACA%2CqBAAA%3B%3BAASZ%3BEAAA%3BIAFI%2CcAAA%3B%3B%3BAAFR%2CiBAII%3BEACI%2CYAAA%3B%3BAALR%2CiBAII%2CQAEQ%3BEACI%2CkBAAA%3B%3BAAMhB%3BEAAA%3BIAFQ%2C4BAAA%3B%3B%3BAAIJ%2CQADI%2CQACH%3BEACG%2CmBAAA%3B%3BAAGR%2CgBAAgB%3BEACR%2CgBAAA%3B%3BAADR%2CgBAAgB%2CcAER%3BEACI%2CqBAAA%3BEACA%2CgCAAA%3BEACA%2C6BAAA%3BEACA%2CmBAAA%3BEACA%2CkBAAA%3B%3BAAII%3BEAAA%2CgBAXA%2CcAER%3BIAOY%2CUAAA%3B%3B%3BAATpB%2CgBAAgB%2CcAER%2CGASQ%3BEACI%2CgBAAA%3BEACA%2CkBAAA%3B%3BAAbpB%2CgBAAgB%2CcAER%2CGAaQ%2CgBACI%3BEACI%2CUAAA%3BEACA%2CkBAAA%3BEACA%2CgBAAA%3BEACA%2CcAAA%3B%3BAAGR%2CgBAvBA%2CcAER%2CGAqBS%2CMACG%3BEACI%2CmBAAA%3BEACA%2CUAAA%3BEACA%2C2CAAA%3B%3BAASxB%3BEAAA%2CgBApCgB%2CcAgCA%2CGAAE%2CYAAY%3BIACV%2CiBAAA%3B%3B%3BAAIpB%3BEACI%2CmBAAA%3B%3BAAEJ%2CwBACI%2CGAAE%3BEACE%2CcAAA%3B%3BAAGR%2CKAAK%3BEACD%2C6BAAA%3BEACA%2C0BAAA%3B%3BAAeJ%3BEAZI%2COAAO%2CQACH%2C0BACI%2COAAM%3BIACF%2CyBAAA%3B%3BEAHZ%2COAAO%2CQACH%2C0BAII%3BIACI%2C4BAAA%3B%3B%3BAAMhB%2CIAAI%2CwBACH%3BEACC%2C0BAAA%3BEACA%2C2BAAA%3BEACA%2CsBAAA%3B%3BAAJF%2CIAAI%2CwBACH%2CSAKC%2COAAM%2COACL%2CMAAK%3BAAPR%2CIAAI%2CwBACH%2CSAKC%2COAAM%2COAwCR%2CCAvCwB%2CKAAK%3BEACtB%2C2BAAA%3BEACA%2CcAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACH%2CkBAAA%3B%3BAAKJ%2CYACI%3BEACI%2CcAAA%3B%3BAAFR%2CYACI%2CMAEI%3BEACI%2CcAAA%3B%3BAACA%2CYAJR%2CMAEI%2CEAEK%3BEACG%2CyBAAA%3BEACA%2CcAAA%3B%3BAAUI%2CKALf%2COAAO%2CQACR%2CSAAQ%2CSAAS%2CQACb%2CQACI%2COAAM%2CWAAW%2CSACb%2COACK%3BEACG%2CSAAS%2CGAAT%3BEACA%2CcAAA%3BEACA%2CiBAAA%3BEACA%2CiBAAA%3B%3BACpKpB%3BEAAA%2CIAvFA%2CcAEI%2CUACI%3BIACI%2CiBAAA%3B%3BEAmFZ%2CIAvFA%2CcAEI%2CUAII%3BIACI%2CgCAAA%3B%3BEAgFZ%2CIAvFA%2CcAEI%2CUAOI%2COACI%3BIACI%2C0BAAA%3BIACA%2CaAAA%3B%3BEACA%2CIAbhB%2CcAEI%2CUAOI%2COACI%2CeAGK%3BIACG%2CoCAAA%3BIACA%2C2BAAA%3B%3BEAFJ%2CIAbhB%2CcAEI%2CUAOI%2COACI%2CeAGK%2CMAGG%3BIACI%2CmBAAA%3BIACA%2CUAAA%3BIACA%2C2CAAA%3B%3BEAoExB%2CIAvFA%2CcAEI%2CUAOI%2COAcI%3BIACI%2CeAAA%3BIACA%2CgBAAA%3BIACA%2CaAAa%2CcAAa%2CyCAA1B%3B%3BEA6DhB%2CIAvFA%2CcA8BI%2CGAAE%2CKAAK%2CQAAQ%2CaAAa%2CYAAY%3BIACpC%2CiBAAA%3B%3BEAwDR%2CIAvFA%2CcAiCI%2CQAAO%3BIACH%2CyBAAA%3B%3BEAqDR%2CIAvFA%2CcAoCI%2CeACI%3BIACI%2CcAAA%3B%3BEAiDZ%2CIAvFA%2CcAoCI%2CeAII%3BIACI%2C4BAAA%3BIACA%2C4BAAA%3BIACA%2CgCAAA%3BIACA%2CcAAA%3B%3BEA2CZ%2CIAvFA%2CcAoCI%2CeAII%2CcAKI%3BIACI%2CeAAA%3B%3BEAyChB%2CIAvFA%2CcAoCI%2CeAII%2CcAQI%3BIACI%2CeAAA%3B%3BEAsChB%2CIAvFA%2CcAoCI%2CeAgBI%2CkCACI%3BIACI%2CWAAA%3B%3BEAiChB%2CIAvFA%2CcAoCI%2CeAgBI%2CkCACI%2CWAEI%3BIACI%2CWAAA%3B%3BEA%2BBpB%2CIAvFA%2CcAoCI%2CeAgBI%2CkCACI%2CWAKI%2CiBACI%3BIACI%2CiBAAA%3B%3BEA2BxB%2CIAvFA%2CcAoCI%2CeAgBI%2CkCAYI%3BIACI%2CaAAA%3BIACA%2CsBAAA%3B%3BEAqBhB%2CIAvFA%2CcAoCI%2CeAgBI%2CkCAYI%2CoBAGI%3BIACI%2CaAAA%3B%3BEAII%2CIAxExB%2CcAoCI%2CeAgBI%2CkCAYI%2CoBAMI%2CsBACI%2CQAAO%2COACF%3BIACG%2CSAAS%2CEAAT%3BIACA%2CmDAAA%3BIACA%2C4BAAA%3BIACA%2CWAAA%3BIACA%2CYAAA%3BIACA%2CqBAAA%3BIACA%2CiBAAA%3B%3B%3BAA%5C%2FEhC%2CIAAI%2CcAuFA%2CkBACI%2CYAAW%2COACP%3BEACI%2CaAAA%3B%3BAA1FhB%2CIAAI%2CcA8FI%3BEACI%2CyBAAA%3B%3BAA%5C%2FFZ%2CIAAI%2CcA8FI%2CgBAEI%2C2BACI%3BEACI%2CmBAAA%3B%3BAAlGpB%2CIAAI%2CcA8FI%2CgBAOI%3BEACI%2CcAAA%3B%3BAAtGhB%2CIAAI%2CcAyGI%2CGAAE%2CKAAK%2CQAAQ%3BEACX%2CgCAAA%3BEACA%2C6BAAA%3B%3BAAKJ%3BEAAA%2CIAhHJ%2CcAyGI%2CGAAE%2CKAAK%2CQAAQ%3BIAIP%2CmBAAA%3BIACA%2CgCAAA%3B%3B%3BAAiBZ%3BEAAA%2CIA%5C%2FHA%2CcAkHY%2CGAAE%2CKAAK%2CQAAQ%2CaAAa%2CYAAY%3BIACpC%2CiBAAA%3B%3BEAYhB%2CIA%5C%2FHA%2CcAqHY%2CcACI%3BIACI%2CgBAAA%3BIACA%2CgBAAA%3B%3BEAOpB%2CIA%5C%2FHA%2CcA2HY%2CGAAE%3BIACE%2CeAAA%3B%3B%3BAAiBhB%3BEAAA%2CIA7IA%2CcAgII%2CUACI%3BIACI%2C2BAAA%3B%3BEAKA%2CIAvIZ%2CcAqII%2COACI%2CeACK%3BIACG%2CgBAAA%3B%3B%3BAAOR%2CIA%5C%2FIR%2CcA6IA%2CcACI%2CqBACK%3BEACG%2CSAAS%2CWAAT%3BEACA%2CcAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3B%3BAAKA%2CIAxJZ%2CcA6IA%2CcASI%2CWACI%2CeACK%3BEACI%2CSAAS%2COAAT%3BEACA%2CeAAA%3BEACC%2CcAAA%3B%3BAA3JtB%2CIAAI%2CcA6IA%2CcASI%2CWAQI%3BEACI%2CcAAA%3BEACA%2CqBAAA%3B%3BAAhKhB%2CIAAI%2CcA6IA%2CcAsBI%3BEACI%2CaAAA%3B%3BAApKZ%2CIAAI%2CcAuKA%3BEACI%2CoBAAA%3BEACA%2CgBAAA%3B%3BAAzKR%2CIAAI%2CcA2KA%2CKAAI%3BEACA%2CgBAAA%3B%3BAA5KR%2CIAAI%2CcA8KA%3BEACI%2CcAAA%3BEACA%2CgBAAA%3BEACA%2CoBAAA%3B%3BAAjLR%2CIAAI%2CcAmLA%2CIAAG%3BEACC%2CsBAAA%3B%3BAAEI%2CIAtLR%2CcAmLA%2CIAAG%2CQAEC%2CIACK%3BEACG%2CWAAA%3B%3BAAoBhB%3BEAAA%2CIA3MI%2CcA4LA%2CUACQ%3BIACI%2CqBAAA%3B%3BEAahB%2CIA3MI%2CcA4LA%2CUAIQ%3BIACI%2CyBAAA%3BIACA%2CqBAAA%3BIACA%2CWAAA%3B%3BEAQhB%2CIA3MI%2CcA4LA%2CUASQ%2C6BAA4B%3BIACxB%2CkBAAA%3BIACA%2CiBAAA%3B%3B%3BACvMhB%2CIAAI%2CqBACA%3BEACI%2CmCAAA%3BEACA%2CaAAA%3BEACA%2CeAAA%3BEACA%2C2BAAA%3B%3BAAIA%3BEAAA%2CIATJ%2CqBACA%3BIAMQ%2CmBAAA%3B%3B%3BAAPZ%2CIAAI%2CqBACA%2CmBAQI%3BEACI%2CcAAA%3BEACA%2CmBAAA%3B%3BAAIJ%3BEAAA%2CIAfJ%2CqBACA%2CmBAQI%3BIAIQ%2CeAAA%3B%3B%3BAAbhB%2CIAAI%2CqBACA%2CmBAeI%2CWACI%3BEACI%2CwBAAA%3BEACA%2CeAAA%3BEACA%2CmBAAA%3B%3BAApBhB%2CIAAI%2CqBACA%2CmBAeI%2CWAMI%3BEACI%2CeAAA%3B%3BAAvBhB%2CIAAI%2CqBACA%2CmBAeI%2CWAMI%2CeAEP%3BEACA%2CiBAAA%3BEACY%2CcAAA%3BEACA%2C2BAAA%3B%3BAA3BjB%2CIAAI%2CqBACA%2CmBAeI%2CWAcI%3BEACI%2CqBAAA%3B%3BAA%5C%2FBhB%2CIAAI%2CqBACA%2CmBAeI%2CWAcI%2CWAEI%3B%3B%3B%3B%3B%3BAAhChB%2CIAAI%2CqBACA%2CmBAeI%2CWAcI%2CWAEI%2CeAKX%3BEACC%2CcAAA%3B%3BAAEc%2CIAxChB%2CqBACA%2CmBAeI%2CWAcI%2CWAEI%2CeAQK%3BEACG%2CSAAS%2COAAT%3BEACA%2CeAAA%3BEACA%2CcAAA%3B%3BAA3CxB%2CIAAI%2CqBACA%2CmBAeI%2CWAcI%2CWAgBI%2CqBACI%3BEACI%2CcAAA%3BEACA%2CqBAAA%3B%3BAAjDxB%2CIAAI%2CqBACA%2CmBAsDI%3BEACI%2CQAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3B%3BAA1DZ%2CIAAI%2CqBACA%2CmBAsDI%2CqBAII%3BEACI%2CiBAAA%3BEACA%2CcAAA%3BEACA%2C2BAAA%3B%3BAAGJ%2CIAjER%2CqBACA%2CmBAsDI%2CqBAUK%3BEACO%2CSAAS%2CWAAT%3BEACA%2CeAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAAtEpB%2CIAAI%2CqBACA%2CmBAwEI%3BEACI%2CQAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3B%3BAA5EZ%2CIAAI%2CqBACA%2CmBAwEI%2CqBAII%3BEACK%2CcAAA%3BEACD%2CiBAAA%3BEACA%2C2BAAA%3B%3BAACA%2CIAjFZ%2CqBACA%2CmBAwEI%2CqBAII%2COAIK%3BEACG%2CSAAS%2CWAAT%3BEACA%2CeAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAAIR%2CIA1FR%2CqBACA%2CmBAwEI%2CqBAiBK%3BEACG%2CaAAA%3B%3BAA3FhB%2CIAAI%2CqBACA%2CmBA6FI%3BEACI%2CcAAA%3B%3BAA%5C%2FFZ%2CIAAI%2CqBACA%2CmBAgGI%3BEACI%2CiBAAA%3B%3BAAlGZ%2CIAAI%2CqBACA%2CmBAmGI%2CSAAQ%2CUAAU%3BEACd%2CaAAA%3B%3BAArGZ%2CIAAI%2CqBACA%2CmBAsGI%2CYACI%2CQAAO%2COACH%3BEACI%2CwBAAA%3B%3BAAEJ%2CIA5GZ%2CqBACA%2CmBAsGI%2CYACI%2CQAAO%2COAIF%3BEACG%2CSAAS%2CEAAT%3BEACA%2CmDAAA%3BEACA%2C4BAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3B%3BAAnHpB%2CIAAI%2CqBACA%2CmBAsHI%2CEAAC%3BEACG%2C2BAAA%3B%3BAAxHZ%2CIAAI%2CqBACA%2CmBAyHI%2CGAAE%3BEACE%2CiBAAA%3BEACA%2CgBAAA%3B%3BAA5HZ%2CIAAI%2CqBACA%2CmBAyHI%2CGAAE%2CmBAGE%2CGACI%3BEACI%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CgBAAA%3BEACA%2CmBAAA%3B%3BAAIA%3BEAAA%2CIAtIhB%2CqBACA%2CmBAyHI%2CGAAE%2CmBAGE%2CGACI%3BIAMQ%2CUAAA%3B%3B%3BAAKR%3BEAAA%2CIAzIZ%2CqBACA%2CmBAyHI%2CGAAE%2CmBAGE%2CGACI%3BIASQ%2CUAAA%3B%3B%3BAAOR%2CIA9IZ%2CqBACA%2CmBA2II%2CWAAU%2CUACN%2CkBACK%3BEACG%2CYAAY%2C8DAAZ%3B%3BAA%5C%2FIpB%2CIAAI%2CqBACA%2CmBAkJI%2COAAM%3BAAnJd%2CIAAI%2CqBACA%2CmBAkJsB%2COAAM%3BEACpB%2CqBAAA%3BEACA%2CgBAAA%3BEACA%2CkBAAA%3BEACA%2CuBAAA%3BEACA%2CmBAAA%3BEACA%2CuBAAA%3BEACA%2CgBAAA%3BEACA%2CeAAA%3B%3BAA3JZ%2CIAAI%2CqBACA%2CmBA4JI%3BEACI%2CYAAA%3B%3BAAMA%3BEAAA%2CIApKR%2CqBACA%2CmBA%2BJI%3BIAEY%2CiBAAA%3B%3B%3BAAlKpB%2CIAAI%2CqBACA%2CmBA%2BJI%2CaAII%2CiBAAgB%2CiBAAiB%2CIAAI%3BEACjC%2CYAAA%3BEACA%2CoBAAA%3B%3BAAIJ%3BEAAA%2CIA1KR%2CqBACA%2CmBA%2BJI%2CaAII%2CiBAAgB%2CiBAAiB%2CIAAI%3BIAI7B%2CWAAA%3B%3B%3BAAxKpB%2CIAAI%2CqBACA%2CmBA%2BJI%2CaAWI%2CqBACI%3BEACI%2CiBAAA%3BEACA%2CcAAA%3B%3BAA9KpB%2CIAAI%2CqBACA%2CmBA%2BJI%2CaAiBI%2CqBACI%3BEACI%2CiBAAA%3BEACA%2CcAAA%3B%3BAApLpB%2CIAAI%2CqBA4LH%3BEACC%2CWAAA%3B%3BAA7LF%2CIAAI%2CqBA%2BLA%2COAAM%2CQACF%2CeACI%3BEACI%2CgCAAA%3BEACA%2C6BAAA%3B%3BAAKA%3BEAAA%2CIAxMZ%2CqBA%2BLA%2COAAM%2CQACF%2CeACI%3BIAIQ%2CcAAA%3BIACA%2CeAAA%3B%3B%3BAAtMpB%2CIAAI%2CqBA%2BLA%2COAAM%2CQACF%2CeACI%2CcAOI%3BEACI%2C8BAAA%3B%3BAAKJ%3BEAAA%2CIA9MZ%2CqBA%2BLA%2COAAM%2CQACF%2CeACI%3BIAWQ%2CyBAAA%3B%3B%3BAAKJ%3BEAAA%2CIAjNZ%2CqBA%2BLA%2COAAM%2CQACF%2CeACI%3BIAcQ%2CcAAA%3B%3B%3BAA%5C%2FMpB%2CIAAI%2CqBA%2BLA%2COAAM%2CQACF%2CeACI%2CcAgBI%3BEACI%2CYAAA%3BEACA%2CgBAAA%3B%3BAAIJ%3BEAAA%2CIAvNZ%2CqBA%2BLA%2COAAM%2CQACF%2CeACI%2CcAgBI%3BIAIQ%2CYAAA%3B%3B%3BAArNxB%2CIAAI%2CqBA%2BLA%2COAAM%2CQACF%2CeACI%2CcAuBI%3BEACI%2CQAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3B%3BAA3NpB%2CIAAI%2CqBA%2BLA%2COAAM%2CQACF%2CeACI%2CcAuBI%2CqBAII%3BEACI%2CcAAA%3BEACA%2C2BAAA%3B%3BAACA%2CIA%5C%2FNpB%2CqBA%2BLA%2COAAM%2CQACF%2CeACI%2CcAuBI%2CqBAII%2COAGK%3BEACG%2CSAAS%2CEAAT%3BEACA%2CeAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3B%3BAAnO5B%2CIAAI%2CqBA%2BLA%2COAAM%2CQACF%2CeACI%2CcAsCI%2CWACI%3BEACI%2CcAAA%3B%3BAAzOxB%2CIAAI%2CqBA%2BLA%2COAAM%2CQA%2BCF%2CaACI%3BEACI%2CcAAA%3B%3BAAhPhB%2CIAAI%2CqBA%2BLA%2COAAM%2CQAoDF%2CGAAE%2CKAAK%2CYAAY%3BEACf%2CiBAAA%3B%3BAApPZ%2CIAAI%2CqBAuPA%3BEACI%2CmBAAA%3B%3BACxPR%2CoBACI%2CgBACI%2CWACI%2CQAAO%3BEACH%2CmBAAA%3B%3BAACA%2CoBAJZ%2CgBACI%2CWACI%2CQAAO%2CSAEF%3BEACG%2CcAAA%3B%3BAANpB%2CoBACI%2CgBACI%2CWAOI%2CQAAO%3BEACH%2CmBAAA%3B%3BAACA%2CoBAVZ%2CgBACI%2CWAOI%2CQAAO%2COAEF%3BEACG%2CcAAA%3B%3BAAZpB%2CoBACI%2CgBACI%2CWAaI%2CMAAK%2CKAAK%2CKACN%3BEACI%2CgBAAA%3B%3BAAEI%2CoBAlBpB%2CgBACI%2CWAaI%2CMAAK%2CKAAK%2CKACN%2CqBAEI%2COACK%3BEACG%2CcAAA%3B%3BAApB5B%2CoBA2BI%2CcACI%3BEACI%2CaAAA%3B%3BAA7BZ%2CoBA2BI%2CcAII%3BEACI%2CaAAA%3B%3BAAKA%2CoBAFR%2CYACI%2CiBACK%3BEACG%2CSAAS%2CEAAT%3BEACA%2C2DAAA%3BEACA%2C4BAAA%3BEACA%2CYAAA%3BEACA%2CaAAA%3BEACA%2CqBAAA%3B%3BAAKhB%2CeACI%2C0BACI%2CgBACI%2CcACI%3BEACI%2C0BAAA%3BEACA%2CuBAAA%3BEACA%2CcAAA%3B%3BAAPpB%2CeACI%2C0BACI%2CgBACI%2CcACI%2CmBAII%3BEACI%2CeAAA%3BEACA%2CgBAAA%3B%3BAAVxB%2CeACI%2C0BACI%2CgBAYI%3BEACI%2CgBAAA%3B%3BAAfhB%2CeACI%2C0BACI%2CgBAYI%2CsBAEI%2CqBAEI%3BEACI%2CqBAAA%3B%3BAAQZ%2CoBAAC%3BEACG%2CSAAS%2CWAAT%3BEACA%2CcAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3BEACA%2CgBAAA%3B%3BAAGR%2CoBACQ%3BEACI%2CiBAAA%3BEACA%2C2BAAA%3B%3BAACA%2CoBAHJ%2COAGK%3BEACG%2CSAAS%2CWAAT%3BEACA%2CcAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3B%3BAAGJ%2CoBAAC%3BEACG%2CaAAA%3B%3BAAYvB%3BEARG%2CeACI%3BIACI%2CsBAAA%3B%3BEAFR%2CeAII%3BIACI%2CYAAA%3B%3B%3BACxGZ%2CIAAI%2CqBACH%3BEACI%2CwBAAA%3B%3BAAFL%2CIAAI%2CqBAIA%2CmBACI%2CeACI%3BEACI%2CyBAAA%3B%3BAAGA%2CIAVZ%2CqBAIA%2CmBACI%2CeAII%2COACK%3BEACG%2CaAAA%3B%3BAAXpB%2CIAAI%2CqBAIA%2CmBAYI%2CcACI%2C6BACI%2CQACI%3BEACI%2CkBAAA%3B%3BAACA%2CIArBpB%2CqBAIA%2CmBAYI%2CcACI%2C6BACI%2CQACI%2COAEK%3BEACG%2CaAAA%3B%3BAAtB5B%2CIAAI%2CqBAIA%2CmBAYI%2CcACI%2C6BASI%3BAA1BhB%2CIAAI%2CqBAIA%2CmBAYI%2CcACI%2C6BASW%3BEACH%2CeAAA%3BEACA%2CkBAAA%3B%3BAA5BpB%2CIAAI%2CqBAIA%2CmBAYI%2CcAeI%3BEACI%2CwBAAA%3B%3BAAKd%2CIArCE%2CqBAoCH%2CMACE%2CMACA%3BEACI%2CyBAAA%3B%3BAAqDH%3BEAAA%2CIA5FA%2CqBA6CQ%2CKAAI%3BIACA%2C0BAAA%3B%3BEA8CZ%2CIA5FA%2CqBAgDI%3BIACI%2CWAAA%3B%3BEA2CR%2CIA5FA%2CqBAmDI%3BIACI%2C4BAAA%3BIACA%2C0BAAA%3B%3BEAuCR%2CIA5FA%2CqBAuDI%2CQACI%3BIACI%2CqBAAA%3BIACA%2CqBAAA%3B%3BEAkCZ%2CIA5FA%2CqBAuDI%2CQAKI%3BIACI%2CqBAAA%3BIACA%2CqBAAA%3B%3BEA8BZ%2CIA5FA%2CqBAuDI%2CQASI%3BIACI%2CqBAAA%3BIACA%2CqBAAA%3B%3BEA0BZ%2CIA5FA%2CqBAqEI%2CQACI%3BIACI%2CqBAAA%3BIACA%2CqBAAA%3B%3BEAoBZ%2CIA5FA%2CqBAqEI%2CQAKI%3BIACI%2CqBAAA%3BIACA%2CqBAAA%3B%3BEAgBZ%2CIA5FA%2CqBAqEI%2CQASI%3BIACI%2CqBAAA%3BIACA%2CqBAAA%3B%3BEAYZ%2CIA5FA%2CqBAmFI%2C0BACI%3BIACI%2CqBAAA%3B%3BEAOZ%2CIA5FA%2CqBAmFI%2C0BAII%3BIACI%2CqBAAA%3B%3B%3BAAxFhB%2CIAAI%2CqBA4FA%2CaACI%2CMACI%2CSACI%2COAAM%3BEACF%2C8BAAA%3B%3BAAhGpB%2CIAAI%2CqBA4FA%2CaACI%2CMAMI%2CMAAK%3BEACD%2C6BAAA%3B%3BAApGhB%2CIAAI%2CqBA4FA%2CaACI%2CMASI%3BEACI%2CkBAAA%3B%3BAAvGhB%2CIAAI%2CqBA4FA%2CaAcI%2CIAAG%2C0BACC%3BEACI%2CqBAAA%3B%3BAA5GhB%2CIAAI%2CqBA4FA%2CaAcI%2CIAAG%2C0BAIC%3BEACI%2CqBAAA%3B%3BAA%5C%2FGhB%2CIAAI%2CqBA4FA%2CaAsBI%3BEACI%2CYAAA%3BEACA%2CgBAAA%3BEACA%2CgBAAA%3B%3BAArHZ%2CIAAI%2CqBA4FA%2CaA2BI%2CKACI%3BEACI%2C2BAAA%3BEACA%2C6BAAA%3B%3BAA1HhB%2CIAAI%2CqBA4FA%2CaA2BI%2CKAKI%2CGAAE%3BEACE%2CWAAA%3B%3BAA7HhB%2CIAAI%2CqBAiIA%2C2BACI%3BEACI%2CsBAAA%3BEACA%2CoBAAA%3B%3BAApIZ%2CIAAI%2CqBAiIA%2C2BAKI%2CoBACI%2CMAAK%3BEACD%2CQAAA%3B%3BAAkCZ%3BEAAA%2CIA1KA%2CqBA6II%3BIACI%2CkBAAA%3BIACA%2CUAAA%3BIACA%2CQAAA%3BIACA%2CWAAA%3BIACA%2CiBAAA%3B%3BEAwBR%2CIA1KA%2CqBAoJI%2CQACI%3BIACI%2CsBAAA%3BIACA%2CqBAAA%3B%3BEAmBZ%2CIA1KA%2CqBAoJI%2CQAKI%3BIACI%2CuBAAA%3BIACA%2CqBAAA%3B%3BEAeZ%2CIA1KA%2CqBAoJI%2CQASI%3BIACI%2CuBAAA%3BIACA%2CqBAAA%3B%3BEAWZ%2CIA1KA%2CqBAkKI%2C2BACI%2CUACI%2CIAAG%3BIACC%2CsBAAA%3B%3B%3BAArKpB%2CIAAI%2CqBA0KA%2CuBACI%2CkBACI%2CQAAO%2CSACH%3BEACI%2CaAAA%3B%3BAAER%2CIAhLR%2CqBA0KA%2CuBACI%2CkBACI%2CQAAO%2CSAIN%3BEACG%2CSAAS%2CEAAT%3BEACA%2CmDAAA%3BEACA%2C4BAAA%3BEACA%2CWAAA%3BEACA%2CYAAA%3BEACA%2CqBAAA%3BEACA%2CiBAAA%3B%3BAAKJ%3BEAAA%2CIA5LR%2CqBA0KA%2CuBACI%2CkBACI%2CQAAO%3BIAcC%2CYAAA%3B%3B%3BAA1LpB%2CIAAI%2CqBA%2BLA%2CUACI%2CMAAK%3BEACD%2CyBAAA%3B%3BAACA%2CIAlMR%2CqBA%2BLA%2CUACI%2CMAAK%2CcAEA%3BEACG%2CoCAAA%3B%3BAAnMhB%2CIAAI%2CqBA%2BLA%2CUAOI%2CMAAK%3BEACD%2CyBAAA%3B%3BAACA%2CIAxMR%2CqBA%2BLA%2CUAOI%2CMAAK%2CiBAEA%3BEACG%2CoCAAA%3B%3BAAMI%2CIA%5C%2FMhB%2CqBA%2BLA%2CUAaI%2COAAM%2CcACF%2COAAM%2CmBACF%2COACK%3BEACG%2CUAAA%3BEACA%2CWAAA%3BEACA%2CqBAAA%3B%3BAAlNxB%2CIAAI%2CqBA%2BLA%2CUAwBI%3BEACI%2CaAAA%3B%3BAAxNZ%2CIAAI%2CqBA2NA%3BEACI%2CgBAAA%3B%3BAA5NR%2CIAAI%2CqBA2NA%2CsBAEQ%2CqBAEI%3BEACI%2CqBAAA%3B%3BAASA%2CIAzOhB%2CqBAoOA%2CMAAK%2C%2BBACD%2CKACI%2CKAAI%2CUAEA%2CSACK%3BEACG%2CSAAS%2CWAAT%3BEACA%2CcAAA%3BEACA%2CcAAA%3BEACA%2CiBAAA%3B%3BAA7OxB%2CIAAI%2CqBAmPA%2CKAAI%2CqBAAqB%3BEACrB%2CaAAA%3B%3BAApPR%2CIAAI%2CqBAsPA%2CgBAAe%2CaAAa%2CuBAAuB%2CgBAAgB%2CQAC%5C%2FD%3BEACI%2CyBAAA%3B%3BAAxPZ%2CIAAI%2CqBAsPA%2CgBAAe%2CaAAa%2CuBAAuB%2CgBAAgB%2CQAI%5C%2FD%2CsBACI%2CKAAI%2COAAO%2CcACP%3BEACI%2CcAAA%3BEACA%2C0BAAA%3BEACA%2C2BAAA%3BEACA%2CoBAAA%3BEACA%2C%2BBAAA%3B%3BAAEJ%2CIAnQZ%2CqBAsPA%2CgBAAe%2CaAAa%2CuBAAuB%2CgBAAgB%2CQAI%5C%2FD%2CsBACI%2CKAAI%2COAAO%2CcAQN%3BEACG%2CwBAAA%3B%3BAApQpB%2CIAAI%2CqBAsPA%2CgBAAe%2CaAAa%2CuBAAuB%2CgBAAgB%2CQAkB%5C%2FD%2CKAAI%2CKAAK%2CcAAc%2CmBACnB%2CsBACI%2COACI%2COACI%3BEACI%2CaAAA%3B%3BAC7Q5B%2CIAAI%2CcACA%2CGAAE%2CUAAU%3BEACR%2CyBAAA%3B%3BAAFR%2CIAAI%2CcAIA%2CMACI%3BEACI%2CkBAAA%3B%3BAANZ%2CIAAI%2CcAIA%2CMAII%3BEACI%2CkBAAA%3B%3BAAQJ%3BEAAA%2CIAjBJ%2CcAYA%2CUACI%3BIAEQ%2CaAAA%3B%3B%3BACiCZ%3BEAAA%2CIAhDA%2CQAEI%2CSACI%2CQAAO%3BIACH%2CiBAAA%3B%3BEA4CZ%2CIAhDA%2CQAEI%2CSAII%3BIACI%2CiBAAA%3B%3BEAyCZ%2CIAhDA%2CQAUI%2CmBACI%2COAAM%3BIACF%2CUAAA%3BIACA%2CYAAA%3B%3BEAmCZ%2CIAhDA%2CQAUI%2CmBAKI%2COAAM%2CQAAQ%3BIACV%2CUAAA%3BIACA%2CWAAA%3B%3BEA%2BBZ%2CIAhDA%2CQAUI%2CmBASI%2COAAM%2CKAAK%3BIACP%2CUAAA%3BIACA%2CYAAA%3B%3BEA2BZ%2CIAhDA%2CQAUI%2CmBAaK%2COAAM%2CIAAI%3BIACP%2CUAAA%3BIACA%2CWAAA%3B%3BEAuBZ%2CIAhDA%2CQAUI%2CmBAiBI%2COAAM%2CqBAAqB%3BIACvB%2CUAAA%3BIACA%2CWAAA%3BIACA%2CiBAAA%3B%3BEAkBZ%2CIAhDA%2CQAUI%2CmBAsBI%2COAAM%2CoBAAoB%2CSACtB%2CMAAK%3BIACD%2CUAAA%3B%3BEAchB%2CIAhDA%2CQAUI%2CmBA2BI%2COAAM%3BIACF%2CUAAA%3BIACA%2CWAAA%3BIACA%2CiBAAA%3B%3BEAQZ%2CIAhDA%2CQAUI%2CmBAgCI%2COAAM%2CUAAU%3BIACZ%2CUAAA%3BIACA%2CWAAA%3B%3B%3BAAMJ%2CIAlDR%2CQAgDA%2CaACI%2CQACK%3BEACG%2CcAAA%3B%3BAAnDhB%2CIAAI%2CQAuDA%2CaACI%2CMACI%3BEACI%2CaAAA%3B%3BAA1DhB%2CIAAI%2CQAuDA%2CaACI%2CMAII%3BEACI%2CgCAAA%3BEACA%2CWAAA%3BEACA%2CiBAAA%3B%3BAACA%2CIAhEZ%2CQAuDA%2CaACI%2CMAII%2CEAIK%3BEACG%2CyBAAA%3B%3BAAjEpB%2CIAAI%2CQAuDA%2CaAcI%2CMAAK%2CQACD%3BEACK%2CyBAAA%3B%3BAAvEjB%2CIAAI%2CQAuDA%2CaAcI%2CMAAK%2CQAID%3BEACI%2CyBAAA%3BEACA%2CWAAA%3BEACA%2CiBAAA%3B%3BAA5EhB%2CIAAI%2CQAgFA%2CaACI%2CMAAK%2CQACD%3BEACI%2CcAAA%3B%3BAAnFhB%2CIAAI%2CQAuFA%2CSAAQ%3BEACJ%2CqBAAA%3B%3BAAIR%2CkBACC%2CQACC%2CQACC%2COACC%3BEACC%2CcAAA%3BEACA%2CWAAA%3BEACA%2CUAAA%3BEACA%2CiBAAA%3BEACA%2C2BAAA%3BEACA%2CYAAA%3BEACA%2CWAAA%3BEACA%2CkBAAA%3B%3BAAMe%2CkBAjBnB%2CQAeO%2COAAM%2CWAAW%2CSACT%2COACK%3BEACG%2CSAAS%2CGAAT%3BEACA%2CcAAA%3BEACA%2CiBAAA%3BEACA%2CiBAAA%3B%3BAAOxB%2CoBAEC%3BAADD%2CsBACC%3BEACC%2CgBAAA%3B%3BAAHF%2CoBAEC%2CQAEC%3BAAHF%2CsBACC%2CQAEC%3BEACC%2CkBAAA%3B%3BAALH%2CoBAEC%2CQAEC%2CSAEE%2CMAAG%3BAALP%2CsBACC%2CQAEC%2CSAEE%2CMAAG%3BEACH%2CkBAAA%3BEACA%2COAAA%3BEACA%2CaAAA%3B%3BAATJ%2CoBAEC%2CQAEC%2CSAOC%2CSACC%2CIAAG%3BAAXP%2CsBACC%2CQAEC%2CSAOC%2CSACC%2CIAAG%3BEACF%2CaAAA%3B%3BAAIH%2CoBAfD%2CQAeE%3BAAAD%2CsBAfD%2CQAeE%3BEACG%2CSAAS%2CGAAT%3BEACA%2CcAAA%3BEACA%2CWAAA%3BEACA%2CQAAA%3BEACA%2CSAAA%3BEACA%2CgBAAA%3B%3BAAvBN%2CoBAEC%2CQAuBC%3BAAxBF%2CsBACC%2CQAuBC%3BEACC%2CUAAA%3BEACA%2CWAAA%3B%3BAA3BH%2CoBAEC%2CQA2BC%3BAA5BF%2CsBACC%2CQA2BC%3BEACC%2CUAAA%3BEACA%2CYAAA%3BEACA%2CkBAAA%3BEACA%2CUAAA%3B%3BAAjCH%2CoBAEC%2CQA2BC%2CQAKC%3BAAjCH%2CsBACC%2CQA2BC%2CQAKC%3BEACC%2CUAAA%3BEACA%2CWAAA%3B%3BAApCJ%2CoBAEC%2CQA2BC%2CQASC%2COAAM%3BAArCT%2CsBACC%2CQA2BC%2CQASC%2COAAM%3BEACL%2CUAAA%3BEACA%2CYAAA%3B%3BAAxCJ%2CoBA4CI%2COAAM%3BAA3CV%2CsBA2CI%2COAAM%3BEACF%2CWAAA%3B%3BAA7CR%2CoBA%2BCI%2COAAM%2CeAAgB%3BAA9C1B%2CsBA8CI%2COAAM%2CeAAgB%3BEAClB%2CWAAA%3B%3BACpKA%2CqBADF%2C4BACG%3BEACG%2CeAAA%3B%3BAADJ%2CqBADF%2C4BACG%2C6BAEG%3BEACI%2CoBAAA%3B%3BACsCf%2CwBATqD%3BEAClD%2CWACI%2CeACI%3BIACI%2CUAAA%3BIACA%2C4BAAA%22%7D */