DonatShell
Server IP : 180.180.241.3  /  Your IP : 216.73.216.252
Web Server : Microsoft-IIS/7.5
System : Windows NT NETWORK-NHRC 6.1 build 7601 (Windows Server 2008 R2 Standard Edition Service Pack 1) i586
User : IUSR ( 0)
PHP Version : 5.3.28
Disable Function : NONE
MySQL : ON  |  cURL : ON  |  WGET : OFF  |  Perl : OFF  |  Python : OFF  |  Sudo : OFF  |  Pkexec : OFF
Directory :  /Program Files (x86)/Mozilla Firefox/updated/browser/features/

Upload File :
current_dir [ Writeable ] document_root [ Writeable ]

 

Command :


[ HOME SHELL ]     

Current File : /Program Files (x86)/Mozilla Firefox/updated/browser/features/onboarding@mozilla.org.xpi
PK
!< |PP8chrome.manifestPK
!<Lbootstrap.jsPK
!<1x		$%chrome/content/img/figure_addons.svgPK
!<3vkk'/chrome/content/img/figure_customize.svgPK
!<2B2B%
chrome/content/img/figure_default.svgPK
!<7%chrome/content/img/figure_private.svgPK
!<3Q}22$chrome/content/img/figure_search.svgPK
!<
x^^"chrome/content/img/figure_sync.svgPK
!<#{+:chrome/content/img/icons_addons-colored.svgPK
!<Of} } 0=chrome/content/img/icons_addons-notification.svgPK
!<|F#Z^chrome/content/img/icons_addons.svgPK
!<H&. achrome/content/img/icons_customize-colored.svgPK
!<Ukk3Edchrome/content/img/icons_customize-notification.svgPK
!<ɥ&{chrome/content/img/icons_customize.svgPK
!<,#,~chrome/content/img/icons_default-colored.svgPK
!<}S	HH1:chrome/content/img/icons_default-notification.svgPK
!<$љchrome/content/img/icons_default.svgPK
!<[T0chrome/content/img/icons_performance-colored.svgPK
!<( chrome/content/img/icons_performance.svgPK
!<y,Schrome/content/img/icons_private-colored.svgPK
!<1chrome/content/img/icons_private-notification.svgPK
!<b$chrome/content/img/icons_private.svgPK
!<`+Schrome/content/img/icons_search-colored.svgPK
!<IG

0=chrome/content/img/icons_search-notification.svgPK
!<~ܡ#chrome/content/img/icons_search.svgPK
!<MoJww)chrome/content/img/icons_sync-colored.svgPK
!<]*[[.chrome/content/img/icons_sync-notification.svgPK
!<(ww!Xchrome/content/img/icons_sync.svgPK
!<殤*chrome/content/img/icons_tour-complete.svgPK
!<k#5chrome/content/img/overlay-icon.svgPK
!<up`` }chrome/content/lib/UITour-lib.jsPK
!<q-[gg-lchrome/content/modules/OnboardingTourType.jsmPK
!<D5VV'uchrome/content/onboarding-tour-agent.jsPK
!<{MhȤ99chrome/content/onboarding.cssPK
!<6ychrome/content/onboarding.jsPK
!<
{//(0den-US/locale/en-US/onboarding.propertiesPK
!<&&~install.rdfPK%%PK
!< |PPchrome.manifestlocale onboarding en-US en-US/locale/en-US/
resource onboarding chrome/content/
PK
!<Lbootstrap.js/* -*- indent-tabs-mode: nil; js-indent-level: 2 -*- */
/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
/* globals  APP_STARTUP, ADDON_INSTALL */
"use strict";

const {utils: Cu, interfaces: Ci} = Components;
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
XPCOMUtils.defineLazyModuleGetter(this, "OnboardingTourType",
  "resource://onboarding/modules/OnboardingTourType.jsm");
XPCOMUtils.defineLazyModuleGetter(this, "Services",
  "resource://gre/modules/Services.jsm");
XPCOMUtils.defineLazyModuleGetter(this, "fxAccounts",
  "resource://gre/modules/FxAccounts.jsm");

const {PREF_STRING, PREF_BOOL, PREF_INT} = Ci.nsIPrefBranch;

const BROWSER_READY_NOTIFICATION = "browser-delayed-startup-finished";
const BROWSER_SESSION_STORE_NOTIFICATION = "sessionstore-windows-restored";
const PREF_WHITELIST = [
  ["browser.onboarding.enabled", PREF_BOOL],
  ["browser.onboarding.hidden", PREF_BOOL],
  ["browser.onboarding.notification.finished", PREF_BOOL],
  ["browser.onboarding.notification.prompt-count", PREF_INT],
  ["browser.onboarding.notification.last-time-of-changing-tour-sec", PREF_INT],
  ["browser.onboarding.notification.tour-ids-queue", PREF_STRING],
];

[
  "onboarding-tour-addons",
  "onboarding-tour-customize",
  "onboarding-tour-default-browser",
  "onboarding-tour-library",
  "onboarding-tour-performance",
  "onboarding-tour-private-browsing",
  "onboarding-tour-search",
  "onboarding-tour-singlesearch",
  "onboarding-tour-sync",
].forEach(tourId => PREF_WHITELIST.push([`browser.onboarding.tour.${tourId}.completed`, PREF_BOOL]));

let waitingForBrowserReady = true;

/**
 * Set pref. Why no `getPrefs` function is due to the priviledge level.
 * We cannot set prefs inside a framescript but can read.
 * For simplicity and effeciency, we still read prefs inside the framescript.
 *
 * @param {Array} prefs the array of prefs to set.
 *   The array element carrys info to set pref, should contain
 *   - {String} name the pref name, such as `browser.onboarding.hidden`
 *   - {*} value the value to set
 **/
function setPrefs(prefs) {
  prefs.forEach(pref => {
    let prefObj = PREF_WHITELIST.find(([name, ]) => name == pref.name);
    if (!prefObj) {
      return;
    }

    let [name, type] = prefObj;

    switch (type) {
      case PREF_BOOL:
        Services.prefs.setBoolPref(name, pref.value);
        break;

      case PREF_INT:
        Services.prefs.setIntPref(name, pref.value);
        break;

      case PREF_STRING:
        Services.prefs.setStringPref(name, pref.value);
        break;

      default:
        throw new TypeError(`Unexpected type (${type}) for preference ${name}.`)
    }
  });
}

/**
 * syncTourChecker listens to and maintains the login status inside, and can be
 * queried at any time once initialized.
 */
let syncTourChecker = {
  _registered: false,
  _loggedIn: false,

  isLoggedIn() {
    return this._loggedIn;
  },

  observe(subject, topic) {
    switch (topic) {
      case "fxaccounts:onlogin":
        this.setComplete();
        break;
      case "fxaccounts:onlogout":
        this._loggedIn = false;
        break;
    }
  },

  init() {
    // Check if we've already logged in at startup.
    fxAccounts.getSignedInUser().then(user => {
      if (user) {
        this.setComplete();
      }
      // Observe for login action if we haven't logged in yet.
      this.register();
    });
  },

  register() {
    if (this._registered) {
      return;
    }
    Services.obs.addObserver(this, "fxaccounts:onlogin");
    Services.obs.addObserver(this, "fxaccounts:onlogout");
    this._registered = true;
  },

  setComplete() {
    this._loggedIn = true;
    Services.prefs.setBoolPref("browser.onboarding.tour.onboarding-tour-sync.completed", true);
  },

  unregister() {
    if (!this._registered) {
      return;
    }
    Services.obs.removeObserver(this, "fxaccounts:onlogin");
    Services.obs.removeObserver(this, "fxaccounts:onlogout");
    this._registered = false;
  },

  uninit() {
    this.unregister();
  },
}

/**
 * Listen and process events from content.
 */
function initContentMessageListener() {
  Services.mm.addMessageListener("Onboarding:OnContentMessage", msg => {
    switch (msg.data.action) {
      case "set-prefs":
        setPrefs(msg.data.params);
        break;
      case "get-login-status":
        msg.target.messageManager.sendAsyncMessage("Onboarding:ResponseLoginStatus", {
          isLoggedIn: syncTourChecker.isLoggedIn()
        });
        break;
    }
  });
}

/**
 * onBrowserReady - Continues startup of the add-on after browser is ready.
 */
function onBrowserReady() {
  waitingForBrowserReady = false;

  OnboardingTourType.check();
  Services.mm.loadFrameScript("resource://onboarding/onboarding.js", true);
  initContentMessageListener();
}

/**
 * observe - nsIObserver callback to handle various browser notifications.
 */
function observe(subject, topic, data) {
  switch (topic) {
    case BROWSER_READY_NOTIFICATION:
      Services.obs.removeObserver(observe, BROWSER_READY_NOTIFICATION);
      onBrowserReady();
      break;
    case BROWSER_SESSION_STORE_NOTIFICATION:
      Services.obs.removeObserver(observe, BROWSER_SESSION_STORE_NOTIFICATION);
      // Postpone Firefox account checking until "before handling user events"
      // phase to meet performance criteria. The reason we don't postpone the
      // whole onBrowserReady here is because in that way we will miss onload
      // events for onboarding.js.
      Services.tm.idleDispatchToMainThread(() => syncTourChecker.init());
      break;
  }
}

function install(aData, aReason) {}

function uninstall(aData, aReason) {}

function startup(aData, aReason) {
  // Only start Onboarding when the browser UI is ready
  if (aReason === APP_STARTUP || aReason === ADDON_INSTALL) {
    Services.obs.addObserver(observe, BROWSER_READY_NOTIFICATION);
    Services.obs.addObserver(observe, BROWSER_SESSION_STORE_NOTIFICATION);
  } else {
    onBrowserReady();
    syncTourChecker.init();
  }
}

function shutdown(aData, aReason) {
  // Stop waiting for browser to be ready
  if (waitingForBrowserReady) {
    Services.obs.removeObserver(observe, BROWSER_READY_NOTIFICATION);
  }
  syncTourChecker.uninit();
}
PK
!<1x		$chrome/content/img/figure_addons.svg<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 352 303"><defs><style>.cls-1{fill:none;}.cls-2{fill:#eaeaee;}.cls-3{fill:#f9f9fa;}.cls-4{fill:url(#New_Gradient_Swatch_1);}.cls-5{fill:#fff;}.cls-6{fill:#ccedf0;}.cls-7{fill:#fafafa;}.cls-8{fill:url(#New_Gradient_Swatch_1-2);}.cls-9{fill:url(#New_Gradient_Swatch_1-3);}.cls-10{fill:url(#New_Gradient_Swatch_1-4);}.cls-11{fill:url(#New_Gradient_Swatch_1-5);}.cls-12{fill:url(#New_Gradient_Swatch_1-6);}.cls-13{fill:url(#New_Gradient_Swatch_1-7);}.cls-14{fill:url(#New_Gradient_Swatch_1-8);}.cls-15{fill:url(#New_Gradient_Swatch_1-9);}.cls-16{fill:url(#New_Gradient_Swatch_1-10);}.cls-17{fill:url(#New_Gradient_Swatch_1-11);}.cls-18{fill:url(#New_Gradient_Swatch_1-12);}.cls-19{fill:url(#New_Gradient_Swatch_1-13);}.cls-20{fill:url(#New_Gradient_Swatch_1-14);}.cls-21{fill:url(#New_Gradient_Swatch_1-15);}.cls-22{fill:url(#New_Gradient_Swatch_1-16);}.cls-23{fill:url(#New_Gradient_Swatch_1-17);}.cls-24{fill:url(#New_Gradient_Swatch_1-18);}.cls-25{fill:url(#New_Gradient_Swatch_1-19);}.cls-26{fill:url(#New_Gradient_Swatch_1-20);}.cls-27{fill:url(#New_Gradient_Swatch_1-21);}.cls-28{fill:url(#New_Gradient_Swatch_1-22);}.cls-29{fill:url(#New_Gradient_Swatch_1-23);}.cls-30{fill:url(#New_Gradient_Swatch_1-24);}.cls-31{fill:url(#New_Gradient_Swatch_1-25);}.cls-32{fill:url(#New_Gradient_Swatch_1-26);}.cls-33{fill:url(#New_Gradient_Swatch_1-27);}.cls-34{fill:url(#New_Gradient_Swatch_1-28);}.cls-35{fill:url(#New_Gradient_Swatch_1-29);}.cls-36{fill:url(#New_Gradient_Swatch_1-30);}.cls-37{fill:url(#New_Gradient_Swatch_1-31);}.cls-38{fill:url(#New_Gradient_Swatch_1-32);}.cls-39{fill:url(#New_Gradient_Swatch_1-33);}.cls-40{fill:url(#New_Gradient_Swatch_1-34);}.cls-41{fill:url(#New_Gradient_Swatch_1-35);}.cls-42{fill:url(#New_Gradient_Swatch_1-36);}.cls-43{fill:url(#New_Gradient_Swatch_1-37);}.cls-44{fill:url(#New_Gradient_Swatch_1-38);}.cls-45{fill:url(#New_Gradient_Swatch_1-39);}.cls-46{fill:url(#New_Gradient_Swatch_1-40);}.cls-47{fill:url(#New_Gradient_Swatch_1-41);}</style><linearGradient id="New_Gradient_Swatch_1" x1="-.25" y1="-152" x2="422.65" y2="270.9" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00c8d7"/><stop offset="1" stop-color="#0a84ff"/></linearGradient><linearGradient id="New_Gradient_Swatch_1-2" x1="-36.12" y1="-116.13" x2="386.78" y2="306.77" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-3" x1="-14.66" y1="-137.59" x2="408.24" y2="285.31" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-4" x1="-6.81" y1="-145.44" x2="416.09" y2="277.46" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-5" x1="-32.26" y1="-119.99" x2="390.64" y2="302.91" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-6" x1="-25.1" y1="-127.15" x2="397.8" y2="295.75" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-7" x1="-28.57" y1="-123.68" x2="394.33" y2="299.22" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-8" x1="-66.38" y1="-85.87" x2="356.52" y2="337.03" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-9" x1="-38.09" y1="-114.17" x2="384.82" y2="308.73" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-10" x1="-92.67" y1="-59.58" x2="330.23" y2="363.32" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-11" x1="-119.12" y1="-33.14" x2="303.79" y2="389.76" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-12" x1="-20.49" y1="-131.77" x2="402.42" y2="291.14" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-13" x1="-110.52" y1="-41.73" x2="312.38" y2="381.17" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-14" x1="-98.7" y1="-53.55" x2="324.2" y2="369.35" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-15" x1="-2.23" y1="-150.02" x2="420.67" y2="272.88" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-16" x1="-85.23" y1="-67.02" x2="337.67" y2="355.88" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-17" x1="20.36" y1="-172.61" x2="443.26" y2="250.29" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-18" x1="-84.34" y1="-67.91" x2="338.56" y2="354.99" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-19" x1="-103.75" y1="-48.51" x2="319.16" y2="374.4" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-20" x1="-45.31" y1="-106.95" x2="377.6" y2="315.95" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-21" x1="-42.27" y1="-109.99" x2="380.64" y2="312.91" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-22" x1="-108.84" y1="-43.41" x2="314.06" y2="379.49" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-23" x1="38.18" y1="-190.43" x2="461.08" y2="232.47" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-24" x1="37.69" y1="-189.94" x2="460.59" y2="232.96" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-25" x1="24.38" y1="-176.63" x2="447.28" y2="246.27" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-26" x1="30.1" y1="-182.35" x2="453" y2="240.55" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-27" x1="30" y1="-182.26" x2="452.91" y2="240.64" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-28" x1="24.91" y1="-177.17" x2="447.82" y2="245.74" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-29" x1="37.77" y1="-190.02" x2="460.67" y2="232.88" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-30" x1=".38" y1="-152.64" x2="423.29" y2="270.27" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-31" x1="27.25" y1="-179.51" x2="450.16" y2="243.4" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-32" x1="34.96" y1="-187.21" x2="457.86" y2="235.69" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-33" x1="-.52" y1="-151.73" x2="422.38" y2="271.17" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-34" x1="5.59" y1="-157.84" x2="428.49" y2="265.06" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-35" x1="-22.02" y1="-130.24" x2="400.89" y2="292.66" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-36" x1="-8.72" y1="-143.54" x2="414.19" y2="279.36" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-37" x1="-71.79" y1="-80.47" x2="351.11" y2="342.44" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-38" x1="-72.61" y1="-79.65" x2="350.29" y2="343.26" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-39" x1="-60.8" y1="-91.45" x2="362.1" y2="331.45" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-40" x1="-80.66" y1="-71.6" x2="342.25" y2="351.3" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-41" x1="28.46" y1="-180.71" x2="451.36" y2="242.19" xlink:href="#New_Gradient_Swatch_1"/></defs><title>add-ons</title><path class="cls-1" d="M0 0h352v303H0z" id="Layer_1" data-name="Layer 1"/><g id="Layer_2" data-name="Layer 2"><g id="OCTO"><path class="cls-2" d="M290.75 47.92a24.51 24.51 0 0 1-13.4-3.61 23.93 23.93 0 0 0-24.21 0 26.64 26.64 0 0 1-26.8 0 23.93 23.93 0 0 0-24.21 0 24.51 24.51 0 0 1-13.4 3.61 1.36 1.36 0 1 1 0-2.72 21.94 21.94 0 0 0 12.1-3.29 26.64 26.64 0 0 1 26.8 0 23.94 23.94 0 0 0 24.21 0 26.64 26.64 0 0 1 26.8 0 23.93 23.93 0 0 0 24.21 0 24.51 24.51 0 0 1 13.4-3.61 1.36 1.36 0 1 1 0 2.72 21.94 21.94 0 0 0-12.1 3.29 24.52 24.52 0 0 1-13.4 3.61z"/><path class="cls-2" d="M239.37 37.81a.68.68 0 0 1 0-1.36 26.34 26.34 0 0 0 4-.33.68.68 0 1 1 .22 1.34 27.71 27.71 0 0 1-4.17.35zm9.26-1.9a.68.68 0 0 1-.28-1.3c.41-.18.81-.38 1.2-.57a.68.68 0 1 1 .61 1.22c-.41.2-.82.4-1.26.6a.69.69 0 0 1-.27.04zm-19.84-.19a.67.67 0 0 1-.29-.06c-.93-.43-1.79-.9-2.65-1.37a22.5 22.5 0 0 0-12.43-3.37.68.68 0 0 1 0-1.36 23.94 23.94 0 0 1 13.08 3.53c.84.46 1.68.91 2.58 1.33a.68.68 0 0 1-.29 1.3zm32.45-4.64a.68.68 0 0 1-.07-1.36 30.67 30.67 0 0 1 3.26-.16.68.68 0 0 1 0 1.36 29.31 29.31 0 0 0-3.11.16zM291 57.11a.68.68 0 0 1 0-1.36 26.34 26.34 0 0 0 4-.33.68.68 0 1 1 .22 1.34 27.71 27.71 0 0 1-4.17.35zm9.26-1.9a.68.68 0 0 1-.28-1.3c.41-.18.81-.38 1.2-.57a.68.68 0 1 1 .61 1.22c-.41.21-.83.41-1.26.6a.69.69 0 0 1-.28.05zM280.4 55a.67.67 0 0 1-.29-.06c-.93-.43-1.79-.9-2.65-1.37A22.51 22.51 0 0 0 265 50.21a.68.68 0 0 1 0-1.36 23.93 23.93 0 0 1 13.07 3.53c.84.46 1.68.91 2.59 1.33a.68.68 0 0 1-.29 1.3zm32.45-4.64a.68.68 0 0 1-.07-1.36 30.43 30.43 0 0 1 3.23-.16.68.68 0 1 1 0 1.36 26.26 26.26 0 0 0-3.1.16z"/><path class="cls-3" d="M7.53 191.87A6 6 0 0 1 1.36 186V41.39a6.55 6.55 0 0 1 6.54-6.54h155.24a6.55 6.55 0 0 1 6.54 6.54V186a6 6 0 0 1-6.16 5.86z"/><path class="cls-2" d="M163.14 36.21a5.18 5.18 0 0 1 5.18 5.18V186a4.66 4.66 0 0 1-4.8 4.5H7.53a4.66 4.66 0 0 1-4.8-4.5V41.39a5.18 5.18 0 0 1 5.17-5.18h155.24m0-2.72H7.9a7.91 7.91 0 0 0-7.9 7.9V186a7.39 7.39 0 0 0 7.53 7.22h156A7.39 7.39 0 0 0 171 186V41.39a7.91 7.91 0 0 0-7.9-7.9z"/><path class="cls-2" d="M161.72 62v119.85c0 1.21-.15 1.44-.17 1.48s-.27.18-1.47.18H11c-1.2 0-1.44-.15-1.47-.17s-.18-.27-.18-1.48V62h152.4m1.36-1.36H8v121.21c0 2.49.52 3 3 3h149.1c2.48 0 3-.53 3-3V60.61z" id="Layer_8" data-name="Layer 8"/><circle class="cls-2" cx="16.28" cy="48.34" r="3.5" id="Layer_3" data-name="Layer 3"/><circle class="cls-2" cx="27.56" cy="48.34" r="3.5" id="Layer_5" data-name="Layer 5"/><path class="cls-2" d="M124.53 52.3h-78a3.79 3.79 0 0 1-3.79-3.79v-.34a3.79 3.79 0 0 1 3.79-3.79h78a3.79 3.79 0 0 1 3.79 3.79v.34a3.79 3.79 0 0 1-3.79 3.79z" id="Layer_6" data-name="Layer 6"/><circle class="cls-2" cx="143.49" cy="48.34" r="3.5" id="Layer_3-2" data-name="Layer 3"/><circle class="cls-2" cx="154.77" cy="48.34" r="3.5" id="Layer_5-2" data-name="Layer 5"/><ellipse class="cls-2" cx="216.91" cy="262.12" rx="95.64" ry="9.06"/><path class="cls-2" d="M294.63 230.16a24.5 24.5 0 0 1-13.4-3.61 23.93 23.93 0 0 0-24.21 0 26.64 26.64 0 0 1-26.8 0 23.93 23.93 0 0 0-24.21 0 26.64 26.64 0 0 1-26.8 0 23.93 23.93 0 0 0-24.21 0 26.64 26.64 0 0 1-26.8 0 21.93 21.93 0 0 0-12.1-3.29 1.36 1.36 0 1 1 0-2.72 24.51 24.51 0 0 1 13.4 3.61 23.93 23.93 0 0 0 24.2 0 26.64 26.64 0 0 1 26.8 0 23.93 23.93 0 0 0 24.21 0 26.64 26.64 0 0 1 26.8 0 23.93 23.93 0 0 0 24.21 0 26.64 26.64 0 0 1 26.8 0 21.92 21.92 0 0 0 12.1 3.29 1.36 1.36 0 1 1 0 2.72zM244.58 219c-1 0-1.89 0-2.77-.12a.68.68 0 1 1 .12-1.36c.84.08 1.73.11 2.65.11h1.32a.68.68 0 1 1 .1 1.37zm-50.53 0a.68.68 0 0 1 0-1.36 26.34 26.34 0 0 0 4-.33.68.68 0 1 1 .22 1.34 27.71 27.71 0 0 1-4.17.35zm57.28-.82a.68.68 0 0 1-.18-1.34q.65-.18 1.25-.39a.68.68 0 0 1 .45 1.28c-.43.15-.88.29-1.34.42zm-48-1.08a.68.68 0 0 1-.28-1.3c.41-.18.81-.38 1.2-.57a.68.68 0 1 1 .61 1.22c-.41.21-.83.41-1.26.6a.69.69 0 0 1-.28.07zm-19.85-.19a.67.67 0 0 1-.29-.06c-.93-.43-1.79-.9-2.65-1.37a22.51 22.51 0 0 0-12.43-3.37.68.68 0 1 1 0-1.36 23.93 23.93 0 0 1 13.07 3.53c.84.46 1.68.91 2.59 1.33a.68.68 0 0 1-.29 1.3zm48.18-1.46a.69.69 0 0 1-.32-.08 22.28 22.28 0 0 0-12.22-3.26 29.23 29.23 0 0 0-3.1.16.68.68 0 0 1-.15-1.35 30.57 30.57 0 0 1 3.25-.16 23.73 23.73 0 0 1 12.88 3.43.68.68 0 0 1-.32 1.28zm32.15-2.62a.68.68 0 0 1-.17-1.34 26.08 26.08 0 0 1 6.48-.74.68.68 0 0 1 0 1.36 24.77 24.77 0 0 0-6.15.69z"/><g id="_Group_" data-name="&lt;Group&gt;"><path class="cls-2" d="M93.71 152.16a11 11 0 0 1-4.34-.84 5.2 5.2 0 0 1-3.27-5c0-1.93 1.12-3.12 2.21-4.26s2.3-2.43 2.3-4.66c0-1.86-2.51-4.54-7.06-4.54s-6.77 2.71-6.77 4.54c0 2.23 1.15 3.41 2.37 4.66s2.28 2.33 2.28 4.27c0 4.32-3.93 5.86-7.61 5.86H58.15a5.33 5.33 0 0 1-5.3-5.35v-14.3c0-.1-.24-3.66 1.79-5.84a5.3 5.3 0 0 1 4.06-1.63c2 0 3 1.21 4.1 2.38s2.17 2.42 4.38 2.42c2 0 4-2.27 4-6.61s-2-6.37-4-6.37c-2.2 0-3.26 1.18-4.37 2.42s-2.13 2.38-4.1 2.38a5.24 5.24 0 0 1-4-1.62c-2.09-2.24-1.85-6-1.84-6.15v-9.07a5.36 5.36 0 0 1 1-3.11 5.29 5.29 0 0 1 4.29-2.24h11.3s3.35-.64 3.35-2.86c0-.88-.49-1.42-1.35-2.29a7.62 7.62 0 0 1-2.67-6c0-2.81 1.3-7.52 10-7.52 9.33 0 10.34 5.26 10.34 7.52a7.4 7.4 0 0 1-2.92 6.06c-.94.87-1.47 1.41-1.47 2.27 0 2.24 3.43 2.86 3.46 2.87h12.11a5.33 5.33 0 0 1 5.3 5.35v6.8s.44 3.71 2.62 3.71c.84 0 1.29-.48 2.06-1.4a6.71 6.71 0 0 1 5.78-2.87c2.94 0 7.88 1.28 7.88 9.85 0 9.48-6 10.21-7.88 10.21a6.63 6.63 0 0 1-5.79-3c-.77-1-1.21-1.48-2-1.48-2.19 0-2.62 3.63-2.63 3.67v16.5a5.33 5.33 0 0 1-5.3 5.35h-6.64z"/><path class="cls-3" d="M78.73 81.48c8.18 0 9.66 4.19 9.66 6.84 0 5.3-4.4 5.48-4.4 8.33s4 3.54 4 3.54h12.22a4.64 4.64 0 0 1 4.62 4.67v6.8s.46 4.39 3.3 4.39 2.54-4.27 7.84-4.27c2.64 0 7.2 1 7.2 9.17s-4.56 9.53-7.2 9.53c-5.3 0-5-4.52-7.84-4.52s-3.3 4.27-3.3 4.27v16.57a4.64 4.64 0 0 1-4.62 4.67h-6.5c-1.58 0-6.93-.36-6.93-5.18 0-3.57 4.5-4.23 4.5-8.93 0-2.34-2.88-5.22-7.74-5.22s-7.44 2.86-7.44 5.23c0 4.7 4.65 5.36 4.65 8.93 0 4.82-5.34 5.18-6.93 5.18H58.15a4.64 4.64 0 0 1-4.61-4.67v-14.27s-.5-6.79 5.17-6.79c3.57 0 3.78 4.8 8.47 4.8 2.34 0 4.72-2.44 4.72-7.29s-2.38-7.05-4.71-7.05c-4.69 0-4.91 4.81-8.47 4.81-5.66 0-5.17-7-5.17-7v-9.12a4.68 4.68 0 0 1 .88-2.72 4.58 4.58 0 0 1 3.74-2h11.3s4-.7 4-3.54-4-3-4-8.33c0-2.64 1.11-6.84 9.29-6.84m0-1.36c-9.27 0-10.65 5.14-10.65 8.2A8.3 8.3 0 0 0 71 94.83c.84.85 1.16 1.22 1.16 1.81 0 1.46-2.3 2.06-2.8 2.18H58.15a6 6 0 0 0-6 6v9.08c0 .52-.15 4.28 2 6.61a5.89 5.89 0 0 0 4.5 1.83c2.27 0 3.57-1.45 4.61-2.61s2-2.2 3.87-2.2a2.73 2.73 0 0 1 2.15 1.17 7.25 7.25 0 0 1 1.2 4.52 7.74 7.74 0 0 1-1.22 4.66 2.71 2.71 0 0 1-2.13 1.27c-1.9 0-2.77-1-3.87-2.19s-2.34-2.6-4.61-2.6a6 6 0 0 0-4.56 1.85c-2.11 2.27-2 5.83-2 6.35v14.24a6 6 0 0 0 6 6h15.73a11.69 11.69 0 0 0 4.62-.9 5.84 5.84 0 0 0 3.67-5.64c0-2.22-1.31-3.56-2.47-4.75s-2.17-2.23-2.17-4.18c0-1.62 2.12-3.86 6.09-3.86s6.38 2.25 6.38 3.86c0 2-1 3-2.11 4.2s-2.39 2.53-2.39 4.73c0 4.82 4.28 6.54 8.29 6.54h6.53a6 6 0 0 0 6-6v-16.48c.06-.41.53-3 1.94-3 .48 0 .75.26 1.51 1.22a7.3 7.3 0 0 0 6.33 3.3c2 0 8.56-.79 8.56-10.89 0-9.16-5.37-10.53-8.56-10.53a7.39 7.39 0 0 0-6.3 3.11c-.73.87-1 1.16-1.53 1.16-1.41 0-1.88-2.71-1.94-3.12v-6.71a6 6 0 0 0-6-6H88.16c-.5-.11-2.81-.72-2.81-2.18 0-.55.34-.92 1.26-1.77a8.08 8.08 0 0 0 3.14-6.56c0-1.92-.79-8.2-11-8.2z"/></g></g><path class="cls-4" d="M336 181.88a2.6 2.6 0 1 1-2.34 2.84 2.6 2.6 0 0 1 2.34-2.84z" id="Layer_6-2" data-name="Layer 6"/><path class="cls-1" d="M315.89 204a4.34 4.34 0 0 1-1.44 1.87 9.36 9.36 0 0 1-.71 3.43 7.61 7.61 0 0 0 3.17-1.9v-.05a13.2 13.2 0 0 0 1.79-2.76 5.82 5.82 0 0 0-1.36-6.65 4.82 4.82 0 0 0-1.86-.95 5.79 5.79 0 0 0-2.76 0c2.65 1.41 4.35 3.84 3.17 7.01zM158.17 138.47l-.23-.1a4.82 4.82 0 0 1-.62-.15H156.64a1.48 1.48 0 0 0-.41 0 .42.42 0 0 0-.15.07l-.2.12a3.86 3.86 0 0 0-.42.3 15.17 15.17 0 0 0-1.37 1.31l-.85.91a.67.67 0 0 1 .17.56 11.76 11.76 0 0 1-1 3.28 15.78 15.78 0 0 0 .78 2 16.84 16.84 0 0 0 1.81 2.73 16.18 16.18 0 0 0 2.67 2.73 14.68 14.68 0 0 0 1.62 1.13l.1.06a13.59 13.59 0 0 0 1.8.91 13.9 13.9 0 0 0 3.93 1 11.55 11.55 0 0 0 1.33.07h1.71l.46-.05h.24a14.57 14.57 0 0 0 1.81-.49 12.19 12.19 0 0 0 1.61-.72 10.77 10.77 0 0 0 1-.6 122 122 0 0 0 1.39-13.65 25 25 0 0 1-4.51-2.61 5.27 5.27 0 0 1-3.52 1.92 2.46 2.46 0 0 1-.93-.18l-3.71-1.64c-1.36 1.1-2.72 1.54-3.83 1.09z"/><path class="cls-5" d="M172.08 99c0 .85 0 1.68.08 2.52q-.62.51-1.2 1.06.58-.56 1.2-1.06c-.05-.85-.08-1.68-.08-2.52zM294.82 128.42zM220 59.18a40.51 40.51 0 0 0-7.38-.68q-1.31 0-2.6.08 1.29-.08 2.6-.08a40.51 40.51 0 0 1 7.38.68zM149.93 195.33c.75-.79 1.5-1.6 2.25-2.44q-1.12 1.25-2.25 2.44c-1.21 1.28-2.44 2.45-3.66 3.53 1.23-1.08 2.45-2.26 3.66-3.53zM163.66 179.79c.42-.44.86-.86 1.29-1.29-.43.43-.87.85-1.29 1.29-1.63 1.7-3.19 3.47-4.72 5.24l-2.28 2.66 2.28-2.66c1.53-1.78 3.06-3.54 4.72-5.24zM157.48 174.22q1.1.56 2.25 1c.77.33 1.56.62 2.36.88-.8-.27-1.59-.56-2.36-.88s-1.52-.63-2.25-1zM294.9 129.89v-.06l-.03-.36.03.36v.06zM298.53 202.57h-.46.46zM177.94 78q1-1.67 2.18-3.23-1.12 1.55-2.18 3.23zM257.49 256.67zM220 215.55zM167.57 256.67zM216.32 203c-.39-1-.77-1.84-1.14-2.65.37.84.75 1.72 1.14 2.65zM133.42 216.71a26.36 26.36 0 0 0 3.87.42h1.72-1.72a26.37 26.37 0 0 1-3.87-.42zM176.07 81.44q.85-1.77 1.87-3.44-1.01 1.66-1.87 3.44zM173.24 153.38a10.77 10.77 0 0 1-1 .6 12.19 12.19 0 0 1-1.61.72 14.57 14.57 0 0 1-1.81.49h-.24l-.46.05H166.38a11.55 11.55 0 0 1-1.33-.07 13.9 13.9 0 0 1-3.93-1 13.59 13.59 0 0 1-1.8-.91l-.1-.06a14.68 14.68 0 0 1-1.62-1.13 16.18 16.18 0 0 1-2.6-2.57 16.84 16.84 0 0 1-1.79-2.93 15.78 15.78 0 0 1-.78-2 6 6 0 0 1-2.2 2.52h-.07c.09.2.16.4.26.6a19.54 19.54 0 0 0 2.08 3.4 18.89 18.89 0 0 0 3.13 3.2 17.65 17.65 0 0 0 2 1.39 16.9 16.9 0 0 0 6.84 2.32 14.21 14.21 0 0 0 1.64.08h1.35l.32-.05h.36l.45-.05h.49a16.9 16.9 0 0 0 2.19-.6 14.72 14.72 0 0 0 2-.9 13.52 13.52 0 0 0 2.16-1.48 126.33 126.33 0 0 0 1.7-17 22.31 22.31 0 0 1-5.42-2.8 13.56 13.56 0 0 1-1.56 2 25 25 0 0 0 4.51 2.61 122 122 0 0 1-1.42 13.57zM171.82 242.33c.59-.56 1.17-1.19 1.74-1.84-.56.66-1.15 1.28-1.74 1.84zM242.44 252.65a32.17 32.17 0 0 0 3.8 1.8q.92.37 1.82.67-.89-.29-1.82-.67a32.17 32.17 0 0 1-3.8-1.8zM248.61 195c.75.12 1.52.26 2.33.47l1.09.3-1.09-.3c-.81-.18-1.58-.33-2.33-.47zM222.58 226.33q.42 1.3.9 2.58a54.31 54.31 0 0 0 2.14 5 54.33 54.33 0 0 1-2.14-5q-.48-1.28-.9-2.58zM220 215.59zM311.19 207.32a6.6 6.6 0 0 1-.86 2l.23.09a5.91 5.91 0 0 0 3.18-.11 9.36 9.36 0 0 0 .71-3.43 8.47 8.47 0 0 1-3.26 1.45z"/><path class="cls-5" d="M305 111c-.71.8-1.33 1.56-1.9 2.31s-1.32 1.74-1.89 2.65a25.23 25.23 0 0 0-1.56 2.81 23.33 23.33 0 0 0-1.19 3 20.78 20.78 0 0 0-.87 6.56v1.26l.06.73.11 1.44v.52c0 .43.07.86.08 1.23a65.53 65.53 0 0 1 0 7.45 51.93 51.93 0 0 1-3.54 16 41.2 41.2 0 0 1-4.32 8 35.47 35.47 0 0 1-5.35 6 8.44 8.44 0 0 1-1.52 1.44 8.82 8.82 0 0 1-1 .63 34.45 34.45 0 0 1-7.13 4.1 33.63 33.63 0 0 1-3.38 1.2 44.77 44.77 0 0 1 9.53 10.67c5.88 8.65 12.73 10.59 18 10.94a12.59 12.59 0 0 1 1.49-2.67c-5-.15-11.31-1.62-16.87-9.8a56.74 56.74 0 0 0-6.54-8.08 36.52 36.52 0 0 0 8.38-5.2 38.52 38.52 0 0 0 7-7.6 43.93 43.93 0 0 0 4.61-8.59 54.65 54.65 0 0 0 3.73-16.82 68.35 68.35 0 0 0 0-7.72c0-.46 0-.91-.08-1.36v-.49l-.11-1.4v-.08l-.06-.73v-.3-.55-.21a18.1 18.1 0 0 1 .74-5.71 20.13 20.13 0 0 1 1.06-2.65 22.51 22.51 0 0 1 1.39-2.5c.52-.83 1.12-1.62 1.76-2.47.47-.63 1-1.26 1.58-1.92A4.79 4.79 0 0 1 305 111zM169.38 100.32v-1.33a43.22 43.22 0 1 1 86.43 0v1.33a22.41 22.41 0 0 1-7.67 37.58c.05.94.11 1.87.18 2.76l.1.19c.19.33.38.7.57 1.08s.25.49.39.75l.05.11c.15.31.31.63.48 1v.07c.1.19.19.38.28.58l.1.19.13.25v.07l.14.29.1.2c.12.22.24.45.36.71s.15.3.23.45l.27.51a15.74 15.74 0 0 0 1.24 1.85 12.61 12.61 0 0 0 1.61 1.68 9.78 9.78 0 0 0 3.89 2.06h.08a10.22 10.22 0 0 0 2.18.29h.26a11.09 11.09 0 0 0 1.61-.18h.11a9.61 9.61 0 0 0 3.8-1.64 12.11 12.11 0 0 0 2-1.79 13.61 13.61 0 0 0 1.76-2.61 26.15 26.15 0 0 0 2.49-7.82 44.51 44.51 0 0 0 .54-4.68v-.11-.65V132.21a3.55 3.55 0 0 1 0-.36v-1.13l.06-.85v-.45c0-.54.08-1.08.14-1.55a39.48 39.48 0 0 1 4.26-14 40.1 40.1 0 0 1 7.49-10 47.25 47.25 0 0 1 7.65-6 56.33 56.33 0 0 1 6.27-3.51l.18-.09-.23-1.27-3.91 1.24a4.15 4.15 0 0 1-1.3.21h-.18c-.58.35-1.18.72-1.79 1.12a49.8 49.8 0 0 0-8.05 6.34 42.82 42.82 0 0 0-8 10.65 42.23 42.23 0 0 0-4.55 15c-.06.48-.1 1.07-.15 1.65v.44l-.06.87v3.58a41.89 41.89 0 0 1-.51 4.39 23.42 23.42 0 0 1-2.22 7 10.84 10.84 0 0 1-1.39 2.07 9.26 9.26 0 0 1-1.49 1.36 6.92 6.92 0 0 1-2.7 1.17 9.91 9.91 0 0 1-1.19.14H261a8.6 8.6 0 0 1-1.52-.18h-.16a7.14 7.14 0 0 1-2.8-1.48 9.91 9.91 0 0 1-1.27-1.32 12.88 12.88 0 0 1-1-1.46l-.27-.51-.14-.26c-.14-.3-.28-.57-.42-.83l-.07-.15-.13-.28-.07-.14-.15-.29-.05-.1c-.1-.21-.2-.42-.31-.63v-.08c-.16-.3-.31-.6-.45-.88l-.11-.21c-.12-.23-.24-.45-.35-.67s-.27-.54-.43-.84v-.16a25.14 25.14 0 0 0 7.57-40.5v-.19A45.94 45.94 0 1 0 167 99v.19a25 25 0 0 0-7 14.41l2.27.92a22.3 22.3 0 0 1 7.11-14.2zM291.32 216.79a17.12 17.12 0 0 1-2 0h.51c.53.06 1.02.04 1.49 0zM273.08 209.74l-1.56-1.24c-.83-.67-1.61-1.32-2.4-2 .78.65 1.57 1.3 2.4 2z"/><path class="cls-5" d="M306.71 212.77l-.46.37a39.65 39.65 0 0 1-3.91 2.71 26.76 26.76 0 0 1-6.32 2.81 22.34 22.34 0 0 1-4.46.83c-.54 0-1.11.07-1.68.07a22.32 22.32 0 0 1-3.45-.28 27.19 27.19 0 0 1-9.54-3.62 61 61 0 0 1-7.07-5.06c-1-.78-1.89-1.54-2.79-2.29l-2.5-2a9 9 0 0 1-.86-.55 8.64 8.64 0 0 1-1.21-1.08c-1.26-1-2.42-1.8-3.49-2.51-.69-.45-1.42-.9-2.33-1.42s-1.57-.84-2.28-1.15a23.66 23.66 0 0 0-4.07-1.43 22.69 22.69 0 0 0-3.44-.59v8.52c.09 1.67.13 3.39.11 5.11V213c.45 20.37 5.31 23.63 12 28.15 7.66 5.16 10.06 6.77 9.44 11a7.21 7.21 0 0 1-7.09 7h-.15a26.69 26.69 0 0 1-3.66.24c-.63 0-1.28 0-1.95-.06a33 33 0 0 1-6.44-1.07 32.39 32.39 0 0 1-3.88-1.29 34.7 34.7 0 0 1-4.11-2 39.25 39.25 0 0 1-4.18-2.69 41.65 41.65 0 0 1-7.73-7.53 44.92 44.92 0 0 1-3.27-4.65 56.56 56.56 0 0 1-5-10.28c-.65-1.74-1.25-3.56-1.75-5.37-.22-.75-.4-1.48-.58-2.19l-.15-.59-.12-.5c-.17-.72-.35-1.47-.5-2.29l-.48-2.47V216.17v-.33l-.12-.52-.24-1c-.31-1.27-.64-2.62-1-3.89a59 59 0 0 0-2.09-6.39c-.43-1-.78-1.86-1.08-2.52l-.19-.4-.18.37c-.32.7-.67 1.51-1.09 2.53a59 59 0 0 0-2.1 6.43c-.35 1.26-.68 2.61-1 3.86l-.24 1-.13.55V216.42l-.48 2.45c-.16.84-.33 1.59-.5 2.31l-.13.55-.14.56c-.18.7-.36 1.43-.57 2.13-.52 1.84-1.11 3.66-1.76 5.39a56.53 56.53 0 0 1-5 10.29 45 45 0 0 1-3.28 4.66 41.65 41.65 0 0 1-7.75 7.54A39.12 39.12 0 0 1 184 255a34.75 34.75 0 0 1-4.11 2 32.25 32.25 0 0 1-3.87 1.29 33 33 0 0 1-6.46 1.07c-.65 0-1.31.06-1.94.06a26.69 26.69 0 0 1-3.66-.24h-.15a7.2 7.2 0 0 1-.66-14.37l.28-.12c.47-.2 1.19-.53 2.06-1a22.62 22.62 0 0 0 2.9-1.91c.55-.43 1.08-.89 1.59-1.37a22.34 22.34 0 0 0 1.54-1.63 20.1 20.1 0 0 0 1.44-1.92 20.43 20.43 0 0 0 1.29-2.16 27.65 27.65 0 0 0 1.15-2.51c.34-.88.67-1.84 1-2.85s.51-1.91.75-3.12c.2-1 .38-2.07.55-3.33.13-1 .27-2.29.35-3.61 0-.5.06-1 .08-1.51v-.36-6.16c0-1.84 0-3.58.12-5.3s.22-3.2.42-4.77c-1.06.67-2.25 1.45-3.65 2.4l-2.95 2c-2.88 2-6.14 4.22-9.63 6.34a73.86 73.86 0 0 1-7.6 4.06 46.49 46.49 0 0 1-8.56 3 37 37 0 0 1-4.57.79c-1.21.12-2.32.17-3.39.17h-1.09a29.49 29.49 0 0 1-6.48-1 14.06 14.06 0 0 1 1.16 3 32 32 0 0 0 5.57.7h1.17c1.16 0 2.35-.06 3.65-.19h.1a39.5 39.5 0 0 0 4.86-.84 49.16 49.16 0 0 0 9-3.17 76.51 76.51 0 0 0 7.87-4.21c3.57-2.16 6.86-4.43 9.77-6.43l1.87-1.29c-.07 1.53-.1 3.08-.08 4.72v6.39c0 .48 0 1-.08 1.44v.08c-.07 1.2-.2 2.38-.33 3.39-.15 1.18-.32 2.2-.51 3.1-.23 1.15-.46 2.08-.7 2.9s-.58 1.82-.9 2.64-.72 1.64-1 2.26a20.15 20.15 0 0 1-2.37 3.55c-.53.61-1 1.07-1.34 1.43s-.92.83-1.4 1.21a19.67 19.67 0 0 1-2.53 1.66c-.75.41-1.35.69-1.8.88a9.93 9.93 0 0 0 1.2 19.73 29.27 29.27 0 0 0 4 .27c.69 0 1.39 0 2.1-.07a35.76 35.76 0 0 0 7-1.16 34.92 34.92 0 0 0 4.18-1.39 37.41 37.41 0 0 0 4.43-2.11 41.85 41.85 0 0 0 4.44-2.86 44.38 44.38 0 0 0 8.25-8 47.74 47.74 0 0 0 3.48-4.94 59.22 59.22 0 0 0 5.19-10.84c.66-1.77 1.28-3.65 1.81-5.56.23-.78.42-1.52.59-2.24l.14-.55v-.11l.11-.48c.18-.76.36-1.54.53-2.44l.47-2.43v-.45l.13-.57.24-1c.29-1.22.62-2.54 1-3.76q.36-1.34.74-2.55c.25.8.49 1.64.73 2.53.34 1.24.67 2.56 1 3.81l.24 1 .12.51V216.94l.48 2.48c.16.85.34 1.63.52 2.39l.11.49v.11l.13.53c.18.72.37 1.47.6 2.26.53 1.91 1.15 3.79 1.83 5.59a59.25 59.25 0 0 0 5.48 10.8 47.62 47.62 0 0 0 3.47 4.92 44.37 44.37 0 0 0 8.22 8 42 42 0 0 0 4.48 2.89 37.38 37.38 0 0 0 4.42 2.1 35.09 35.09 0 0 0 4.2 1.4 35.66 35.66 0 0 0 7 1.15q1.1.07 2.12.07a29.27 29.27 0 0 0 4-.27 9.94 9.94 0 0 0 9.6-9.44c.79-5.83-2.85-8.29-10.63-13.52-6.25-4.21-10.39-7-10.82-25.89v-1.8c0-1.76 0-3.51-.11-5.22s0-3.2 0-4.78v-.44a21 21 0 0 1 3.6 1.27h.08c.58.25 1.21.59 2 1s1.55.91 2.18 1.33c1.45 1 3.05 2.14 4.91 3.63 1 .77 1.93 1.57 2.92 2.39s1.85 1.53 2.82 2.31a63.44 63.44 0 0 0 7.39 5.28 29.91 29.91 0 0 0 10.52 4 25 25 0 0 0 3.87.31c.65 0 1.29 0 1.92-.08a25.11 25.11 0 0 0 5-.93 29.84 29.84 0 0 0 6.95-3.08 42.19 42.19 0 0 0 4.19-2.9l.08-.07c.57-.46 1.06-.86 1.49-1.23-.15 0-.31 0-.46-.08a9.52 9.52 0 0 1-2.7-1.14zM315.14 91.44a9.81 9.81 0 0 0-1-.85l.35 1.05zM122.31 196.87a.67.67 0 0 1 .24-.14.68.68 0 0 1 .86.43c.05.16.07.32.11.48.83.22 1.76.52 2.85.89 2.81.94 6.66 2.23 10.19 2.23a11.36 11.36 0 0 0 3.22-.43 27.61 27.61 0 0 0 3.86-2.78 53.1 53.1 0 0 0 4.3-4.1c2.17-2.28 4.29-4.77 6.54-7.42l2.38-2.78c1.57-1.83 2.87-3.28 4.11-4.6-.81-.27-1.58-.56-2.31-.88a36 36 0 0 1-8.91-5.35 34.22 34.22 0 0 1-3.54-3.31 34.73 34.73 0 0 1-6.88-10.83c-.32-.82-.61-1.65-.86-2.49a3.45 3.45 0 0 1-1.23-2.1l-.06-.35v-.35c0-.23 0-.55-.05-1s0-.89.05-1.46c0-.23.05-.48.09-.73a32.79 32.79 0 0 1-.23-3.32v-.92-.93-.22a7 7 0 0 1-1.91-4 8.57 8.57 0 0 0-.28 1.47l-.1 1c-.06.55-.09 1.13-.11 1.64V146.49a34.45 34.45 0 0 0 .53 5.66 36.53 36.53 0 0 0 2 7.08 37.94 37.94 0 0 0 11.22 15.25 38.52 38.52 0 0 0 8.3 5.18l-1.52 1.75-2.39 2.8c-2.22 2.61-4.32 5.08-6.44 7.3a50.45 50.45 0 0 1-4.08 3.89 25.64 25.64 0 0 1-3.19 2.33 9 9 0 0 1-2.15.24c-3.09 0-6.55-1.16-9.33-2.09a27.14 27.14 0 0 0-4.56-1.27 9.46 9.46 0 0 0-1.33-.1 8.85 8.85 0 0 0-1 .09l.07.72a5.38 5.38 0 0 1 1.54 1.55z"/><path class="cls-5" d="M178.35 231.81c-.15.43-.28.88-.44 1.29.16-.41.29-.86.44-1.29z"/><path class="cls-6" d="M144.06 159.58a1.48 1.48 0 0 1 .38-.08 37.91 37.91 0 0 1-2.11-3.35 3.48 3.48 0 0 1-.75.28c.1.28.19.55.3.83a30 30 0 0 0 1.4 3 1.65 1.65 0 0 1 .78-.68zM178.35 176.23a38.53 38.53 0 0 0 7.64-2.54l.28-.95a40.44 40.44 0 0 1-13.34 2h-1.29a33.41 33.41 0 0 1-22.79-10 5.06 5.06 0 0 1-.17 3 32 32 0 0 0 2.81 2.61 33.11 33.11 0 0 0 6 3.9q1.1.56 2.25 1c.77.33 1.56.62 2.36.88s1.62.5 2.45.72l1.25.29.41.09-.08.08a51.62 51.62 0 0 0 11.24.79 1.33 1.33 0 0 1-.11-.3 1.36 1.36 0 0 1 1.09-1.57zM146.28 198.86c3.58-2.95 7.46-7.44 12.2-12.93 1.94-2.25 4.13-4.78 6.49-7.43-.43.43-.87.85-1.29 1.29-1.63 1.7-3.19 3.47-4.72 5.24l-2.28 2.66-2.25 2.64c-.75.87-1.49 1.73-2.24 2.56s-1.49 1.65-2.25 2.44c-1.22 1.27-2.44 2.45-3.66 3.53zM178.35 231.81c-.15.43-.28.88-.44 1.29a29.86 29.86 0 0 1-1.27 2.77 23.1 23.1 0 0 1-1.46 2.46 22.55 22.55 0 0 1-1.62 2.16c-.57.66-1.14 1.29-1.74 1.84l-.21.18c3.14-2.17 5.39-5.69 6.74-10.7zM184.78 137.31h-.11c-.08 0-.9.09-2.05.09a21.31 21.31 0 0 1-2.78-.17 130.94 130.94 0 0 1-1.8 18.27 13.78 13.78 0 0 0 1.68-2.34c2.28-4.02 4.08-11.32 5.06-15.85zM308 207.74zM297.58 207.37c-8.67 3.65-17.34-.91-23.27-6.39s-20.08-21.9-20.08-21.9l11.41-.91a7.3 7.3 0 0 1 1.8.71c-.41-.34-.84-.66-1.26-1h-1.55a38 38 0 0 1-5.87-.46.68.68 0 0 1-.56-.79.67.67 0 0 1 .79-.56 35.5 35.5 0 0 0 9.43.19c.43-.09.86-.16 1.28-.27a27.74 27.74 0 0 0 4.28-1.41 32.7 32.7 0 0 0 3.48-1.75c-.51-1.23.53-3.25 2.53-4.73 1.81-1.34 3.81-1.79 4.94-1.23a32.07 32.07 0 0 0 2.85-3.51 37.8 37.8 0 0 0 3.2-5.57q.44-.95.83-1.91a44.66 44.66 0 0 0 1.73-5.21 1.62 1.62 0 0 1-.94.07c-1.42-.37-2-2.8-1.32-5.42s2.4-4.44 3.81-4.07v-.52a62.54 62.54 0 0 0 0-7.12c0-.58-.07-1.14-.11-1.71l-.11-1.41-.05-.67v-.41V129.17v-.82a24.82 24.82 0 0 1 .53-5.67q.19-.89.46-1.75a25.51 25.51 0 0 1 1.32-3.33 27.88 27.88 0 0 1 1.73-3.12c.56-.9 1.19-1.74 1.81-2.57a1.73 1.73 0 0 1-1.14-.49c-1-1.07-.22-3.44 1.75-5.29a8.55 8.55 0 0 1 1.58-1.18l-.7-2.12a18.09 18.09 0 0 0-5.83 5.82c-4.37 7.44-5.38 10.61-5.38 17v1.55c0 7.41.12 21.2-5.18 29.14-6.82 10.24-17.06 15.24-31.21 15.24h-1.78a32.8 32.8 0 0 0 11.44.25 1.36 1.36 0 0 1 .44 2.69 34.17 34.17 0 0 1-5.47.44 41 41 0 0 1-16.11-3.5 109.88 109.88 0 0 1 1.5 15.07.67.67 0 0 1 .59.61s.22 2.84.28 7.6c.46 0 .93 0 1.43.08s1.12.12 1.71.21c.75.12 1.52.26 2.33.47l1.09.3c.74.22 1.5.48 2.27.79q.58.23 1.18.51c.8.35 1.61.78 2.44 1.23s1.67 1 2.53 1.54c.32.21.65.46 1 .68 1-1 3.29-.62 5.37.9s3.26 3.85 2.4 5l-.06.06c.78.65 1.57 1.3 2.4 2l1.56 1.24q.8.62 1.64 1.23c.71.52 1.46 1 2.22 1.52a1.49 1.49 0 0 1 .04-.5c.55-1.36 3-1.64 5.54-.63s4.11 2.93 3.56 4.29a1.59 1.59 0 0 1-.53.65c.41.09.82.21 1.24.27a20 20 0 0 0 2 .2h.5a17.12 17.12 0 0 0 2 0 19.65 19.65 0 0 0 3.91-.73c.24-.07.45-.15.67-.23a1.49 1.49 0 0 1-.31-.35c-.74-1.26.55-3.4 2.89-4.77a7.71 7.71 0 0 1 5.19-1 9.66 9.66 0 0 1-.72-1.44 8.82 8.82 0 0 1-2.92-1.93c-.74.34-1.55.67-2.44 1.04z"/><path class="cls-6" d="M263.27 253.58c-4.45 0-13-2.81-18.93-5.91-9.41-5-16.35-20.63-18.1-32.86-2.11-14.76-6.17-27.36-9.87-30.66a9.47 9.47 0 0 0-4.3-2.32 13 13 0 0 0-7.43 6.25c-2.39 4.33-3.42 12.75-4.52 21.66-1.24 10.12-2.53 20.59-6 26.27-7 11.45-14.49 16.87-25.14 18.12a30.35 30.35 0 0 1-3.53.22c-3.37 0-5.08-.73-5.93-1.33a4.47 4.47 0 0 0 4.33 3.39h5.46a30.05 30.05 0 0 0 5.92-1q.85-.22 1.74-.52t1.82-.67c.62-.25 1.24-.52 1.88-.82s1.28-.63 1.92-1a36.33 36.33 0 0 0 3.88-2.5c.29-.22.57-.46.86-.69a1.46 1.46 0 0 1-.21-.14c-1-1-.35-3.43 1.56-5.36s4.29-2.66 5.33-1.63a1.47 1.47 0 0 1 .13.19 42.26 42.26 0 0 0 2.65-3.81q.71-1.15 1.37-2.34a54.22 54.22 0 0 0 2.39-4.92q.54-1.26 1-2.54c.5-1.34.94-2.7 1.35-4.06a1.58 1.58 0 0 1-.82 0c-1.38-.49-1.76-3-.84-5.51.85-2.36 2.5-3.94 3.84-3.77l.06-.26.12-.53.25-1c.33-1.38.66-2.7 1-4s.7-2.46 1.06-3.58.74-2.17 1.13-3.14.77-1.84 1.14-2.65l.56-1.14.54-1c.55-1 1.05-1.87 1.56-2.65.51.78 1 1.65 1.56 2.65l.53 1 .56 1.14c.37.81.75 1.69 1.14 2.65a61.58 61.58 0 0 1 2.2 6.72c.35 1.26.67 2.59 1 4l.25 1 .12.53.06.26v.38l.48 2.47c.18 1 .39 1.82.59 2.69s.43 1.75.69 2.62.51 1.74.79 2.61.58 1.73.9 2.58a54.33 54.33 0 0 0 2.14 5 53.37 53.37 0 0 0 2.63 4.77 42.16 42.16 0 0 0 3.08 4.38 40.31 40.31 0 0 0 3.48 3.85q.92.88 1.86 1.69t1.9 1.52q1 .71 1.94 1.34c.65.42 1.3.8 1.94 1.16a32.17 32.17 0 0 0 3.8 1.8q.92.37 1.82.67t1.74.52a30.08 30.08 0 0 0 5.92 1H261.08a4.47 4.47 0 0 0 4.29-3.24h-.06a5 5 0 0 1-2.04.45zM174.73 125.4a16.3 16.3 0 0 1-1.34 6.44c-.12.3-.26.57-.38.85a19.58 19.58 0 0 0 6.78 3.18 21.69 21.69 0 0 0 4.73.12 36.31 36.31 0 0 1-2.51-3.77 20.6 20.6 0 0 1-7.28-6.82zM256.66 154.94a12.61 12.61 0 0 1-4-2.32 15.28 15.28 0 0 1-2-2c-.29-.36-.56-.74-.81-1.12s-.48-.76-.71-1.14-.43-.76-.6-1.15c-.09-.19-.19-.38-.29-.56l-.27-.56c-.09-.18-.2-.36-.28-.54s-.17-.36-.26-.53c-.18-.35-.35-.69-.51-1s-.34-.64-.49-.95-.3-.59-.46-.86-.26-.45-.39-.65c-.11-1.37-.2-2.81-.27-4.3a28.75 28.75 0 0 1-3.4.33 22.48 22.48 0 0 0 1.08 7.01 16.3 16.3 0 0 0 13.66 10.34zM177.64 99.59a35.08 35.08 0 1 1 69.93-4v1.78a20.5 20.5 0 0 1-2.57 34.51 36.32 36.32 0 0 1-2.84 4.28 28.39 28.39 0 0 0 3.66-.42 19.67 19.67 0 0 0 7.18-34.23c.05-.83.08-1.67.08-2.52a40.56 40.56 0 0 0-1.19-9.75q-.1-.4-.21-.79a40.49 40.49 0 0 0-28.55-28.55l-.79-.21q-1.17-.29-2.37-.51a40.51 40.51 0 0 0-7.38-.68q-1.31 0-2.6.08a40.36 40.36 0 0 0-28.64 14.65q-.62.75-1.2 1.53-1.15 1.56-2.21 3.24t-1.87 3.44a40.21 40.21 0 0 0-2.17 5.51q-.59 1.9-1 3.88a40.67 40.67 0 0 0-.82 8.16c0 .85 0 1.68.08 2.52q-.62.51-1.2 1.06a19.81 19.81 0 0 0-2.13 2.4q-.48.64-.91 1.33a19.11 19.11 0 0 0-3 9.3l2.16.88c1.1.45 1.77 1.72 2 3.47l3.63 1.47a20.41 20.41 0 0 1 4.9-21.84zM185.06 177l-.87.33a.67.67 0 0 1 .48.48.68.68 0 0 1-.49.83 38.84 38.84 0 0 1-8.83.88c-1.22 0-2.56-.05-4-.16l2.36.88a.69.69 0 0 1 .34.29c.27.46 1.32 3.06-5.12 9.5l-1.53 1.55c-6.32 6.39-15.87 16-25.81 16.9-.82.07-1.65.1-2.49.1-6.31 0-13.11-1.84-17.42-3.26l.73 6.66q.5.15 1 .34v-.11c.74-1.26 3.24-1.18 5.57.2 1.91 1.12 3.1 2.75 3.07 4 .44.1.87.21 1.33.29a26.37 26.37 0 0 0 3.87.42h2.27c.62 0 1.24-.07 1.87-.13h.22a1.49 1.49 0 0 1-.26-.41c-.55-1.36 1-3.28 3.56-4.29s5-.73 5.54.63a2.17 2.17 0 0 1-.48 2.06c1.26-.45 2.49-1 3.69-1.51 1.79-.82 3.5-1.73 5.16-2.68a1.53 1.53 0 0 1-.52-.43c-.86-1.18.21-3.44 2.4-5s4.66-1.94 5.53-.75a1.84 1.84 0 0 1 .24 1.46c1.42-1 2.81-1.9 4.13-2.81l2.86-2c1.85-1.25 3.58-2.38 5.15-3.33.76-.46 1.47-.85 2.14-1.21A82.36 82.36 0 0 0 182 188a.7.7 0 0 1 .65-.62l.19-1.08c.45-2.5 1.23-5.68 2.22-9.3z"/><path class="cls-7" d="M187.63 172.92l.34-.16a18 18 0 0 0 3.36-2.33 28 28 0 0 1-3.46 1.71z"/><path class="cls-7" d="M160.07 251.69c.42.42 2.37 1.83 8.76 1.08 10.19-1.19 17.41-6.42 24.14-17.47 3.3-5.43 4.57-15.75 5.8-25.73 1.11-9 2.16-17.6 4.68-22.15a14.37 14.37 0 0 1 5.11-5.44 4.85 4.85 0 0 0-1 .41l-1.31.84 4.83-27.58a20.88 20.88 0 0 1-1.73-2.19c-3.45-5.17.36-11.4 5-16.31l.05-.31h.22a64.84 64.84 0 0 1 9.54-8.06l.2-.13 17.81 1.44-.07.69s-.23 2.46-.22 5.4h.23a36.32 36.32 0 0 0 2.84-4.28 20.5 20.5 0 0 0 2.53-34.47v-1.78a35.08 35.08 0 1 0-69.93 4 20.41 20.41 0 0 0-4.9 21.84c1.24.5 1.9 2 2 4a20.6 20.6 0 0 0 7.28 6.82 36.31 36.31 0 0 0 2.51 3.77.7.7 0 0 1 .5.15c.35-1.68.54-2.77.55-2.81l.06-.37.34-.14c.66-.28 16.37-6.82 22.21-1.48 2.42 2.21 2.78 6.06 1.06 11.44-3.11 9.73-6.71 17.64-12.18 23.16a1.34 1.34 0 0 1 .38.21 1.36 1.36 0 0 1 .13 1.92c-.18.21-4.53 5.18-8.4 7.11-.88.44-1.73.83-2.54 1.18-1.11 4-2 7.48-2.46 10.13a134.12 134.12 0 0 0-2.58 25.62c-.06 2.13-.12 4.51-.22 7.32-.53 14.63-4.38 22.85-12.12 25.86-.64.25-1.29.48-1.95.72s-1.35.48-2 .73l-.83.38c-.52.23-.75.32-.62.32h-.22c-1.92.92-3.4 2.15-3.48 4.16zm77.2-137.14a1.73 1.73 0 1 1-3.46 0v-3.87a1.73 1.73 0 0 1 3.46 0zm-7.53-18.33a7.09 7.09 0 0 1 11.6 0 1.36 1.36 0 0 1-2.28 1.49 4.41 4.41 0 0 0-3.52-1.78A4.46 4.46 0 0 0 232 97.7a1.36 1.36 0 1 1-2.28-1.48zm-35.38 18.33a1.73 1.73 0 1 1-3.46 0v-3.87a1.73 1.73 0 0 1 3.46 0zm3.64-8.45a1.36 1.36 0 0 1-1.88-.39 4.41 4.41 0 0 0-3.52-1.78 4.46 4.46 0 0 0-3.52 1.78 1.36 1.36 0 1 1-2.28-1.48 7.09 7.09 0 0 1 11.6 0 1.36 1.36 0 0 1-.4 1.87z"/><path class="cls-3" d="M169.26 245.3c7.75-3 11.6-11.23 12.12-25.86.1-2.8.16-5.19.22-7.32a134.12 134.12 0 0 1 2.58-25.62c.48-2.65 1.36-6.16 2.46-10.13-.55.24-1.08.46-1.59.65-1 3.6-1.77 6.78-2.21 9.23l-.19 1.08h.07a.68.68 0 0 1 .64.72 89.71 89.71 0 0 1-1.65 10.87c-.12.7-.23 1.4-.32 2.1-.22 1.68-.37 3.35-.45 5q-.07 1.31-.1 2.59t0 2.54v6.37s-.06 1.29-.1 1.92c-.07 1.28-.21 2.52-.36 3.74q-.12.91-.26 1.81t-.32 1.75c-.23 1.15-.49 2.26-.81 3.33-.18.61-.4 1.18-.6 1.77-1.38 5-3.6 8.54-6.74 10.7-.52.48-1.05.94-1.57 1.35a25.25 25.25 0 0 1-3.28 2.15c-.55.3-1 .54-1.44.74.64-.25 1.31-.49 2-.73s1.26-.51 1.9-.75z"/><path class="cls-8" d="M192.63 109a1.72 1.72 0 0 0-1.73 1.73v3.87a1.73 1.73 0 1 0 3.46 0v-3.87a1.73 1.73 0 0 0-1.73-1.73z"/><path class="cls-9" d="M235.54 109a1.72 1.72 0 0 0-1.73 1.73v3.87a1.73 1.73 0 1 0 3.46 0v-3.87a1.73 1.73 0 0 0-1.73-1.73z"/><path class="cls-10" d="M230.14 98.1a1.36 1.36 0 0 0 1.88-.4 4.46 4.46 0 0 1 3.52-1.78 4.41 4.41 0 0 1 3.52 1.78 1.36 1.36 0 0 0 2.28-1.49 7.09 7.09 0 0 0-11.6 0 1.36 1.36 0 0 0 .4 1.89z"/><path class="cls-11" d="M192.63 101.19a7.17 7.17 0 0 0-5.8 3 1.36 1.36 0 1 0 2.28 1.48 4.46 4.46 0 0 1 3.52-1.78 4.41 4.41 0 0 1 3.52 1.78 1.36 1.36 0 0 0 2.28-1.49 7.17 7.17 0 0 0-5.8-2.99z"/><path class="cls-7" d="M171.67 173.38c19.15.43 28.95-8 36.29-31 1.54-4.83 1.31-8.2-.68-10-4.77-4.36-18.12.68-20.42 1.59-.42 2.29-2.7 14.09-5.94 19.92a15.44 15.44 0 0 1-17 7.57c-8-1.77-15-7-17.24-12.39l-.06.14c-.27.67-.5 1.38-.78 2a16.6 16.6 0 0 1-.89 1.87 12.93 12.93 0 0 1-.93 1.44 8.66 8.66 0 0 1-.64.76 36.55 36.55 0 0 0 4.51 6.45c3.73 4.27 11.73 11.39 23.78 11.65z"/><path class="cls-3" d="M146.72 149c2.28 5.42 9.28 10.65 17.28 12.43a15.44 15.44 0 0 0 17-7.57c3.24-5.83 5.52-17.63 5.94-19.92 2.3-.92 15.66-6 20.42-1.59 2 1.82 2.22 5.19.68 10-7.35 23-17.15 31.43-36.29 31-12.05-.26-20-7.4-23.74-11.63a36.55 36.55 0 0 1-4.51-6.45l-.1.11-.22.22-.08.07a3.55 3.55 0 0 1-.68.45 37.91 37.91 0 0 0 2.11 3.35c1.32-.17 3 1.33 3.93 3.61a8.63 8.63 0 0 1 .47 1.59 33.41 33.41 0 0 0 22.79 10h1.29a40.44 40.44 0 0 0 13.34-2l-.28.95c.53-.23 1.08-.49 1.64-.76l.23-.79a28 28 0 0 0 3.46-1.71 44.52 44.52 0 0 0 4.21-4.13 1.35 1.35 0 0 1 1.54-.35c5.46-5.52 9.07-13.43 12.18-23.16 1.72-5.38 1.36-9.23-1.06-11.44-5.84-5.33-21.54 1.2-22.21 1.48l-.34.14-.06.37s-.2 1.13-.55 2.81a.67.67 0 0 1-.25 1.17c-1 4.53-2.81 11.83-5.06 15.89a13.78 13.78 0 0 1-1.68 2.34c0 .25-.09.52-.13.77a16.24 16.24 0 0 1-3.36 2.46c-.37.2-.75.39-1.14.56s-.79.34-1.2.49-.83.28-1.27.4-.87.22-1.32.32h-.25l-.49.05h-.98a1.58 1.58 0 0 1-.3 0H166.15a17 17 0 0 1-2-.1 19.27 19.27 0 0 1-4.13-.92q-.67-.23-1.32-.51c-.43-.18-.86-.38-1.28-.59s-.83-.44-1.22-.68-.79-.49-1.16-.75-.74-.54-1.1-.82a21.55 21.55 0 0 1-3.62-3.7 22.26 22.26 0 0 1-1.88-2.92q-.26-.48-.48-.94c-.16-.34-.28-.65-.41-1h-.3l-.11.22c-.14.65-.31.94-.42 1.18z"/><path class="cls-7" d="M212.3 156.9l-4.17 23.8a8.13 8.13 0 0 1 2.49-.39 9.92 9.92 0 0 1 6.66 2.82c4.61 4.09 8.5 18.76 10.32 31.48 2 14 9.47 27.68 17.38 31.85s17.71 6.54 19.83 5.54c.12-.06.18-.12.19-.17.35-2.07-.25-2.66-7.95-7.84-7-4.71-13-8.78-13.53-31-.09-4.08-.09-8.06-.1-11.92 0-10.92 0-20.85-1.85-30.34-.49-.23-.95-.46-1.37-.68-11.43-2.34-21.91-7.23-27.9-13.15z"/><path class="cls-3" d="M241.58 170.76c1.81 9.5 1.84 19.42 1.85 30.34 0 3.85 0 7.84.1 11.92.49 22.18 6.53 26.25 13.53 31 7.7 5.18 8.29 5.77 7.95 7.84 0 .06-.07.11-.19.17-2.11 1-11.88-1.34-19.83-5.53s-15.38-17.85-17.38-31.85c-1.82-12.72-5.71-27.39-10.32-31.48a9.92 9.92 0 0 0-6.66-2.82 8.13 8.13 0 0 0-2.49.39l4.17-23.8c6 5.92 16.47 10.81 27.91 13.18a34.34 34.34 0 0 1-3.69-2.18s-.05-.06-.09-.09c-11.58-3.06-21.59-8.68-25.88-15.11-5.62-8.44 12.15-21.21 14.22-22.65l16 1.29c-.17 2.31-.58 9.78 1 13.77 1.16 2.9 5.94 12.28 18.67 11.21 11.89-1 14.8-11.61 16.08-21.88.18-1.45.34-2.74.48-3.92.92-7.7 1.23-10.29 4.35-17.33q.17-.37.37-.76c-.54.84-1.05 1.71-1.54 2.63a36.86 36.86 0 0 0-4 13c-.07.6-.12 1.28-.17 1.92l-.06.83v2.2c0 .42 0 .85-.06 1.27a47.48 47.48 0 0 1-.58 5 28.93 28.93 0 0 1-2.76 8.63 16.4 16.4 0 0 1-2.13 3.16 14.85 14.85 0 0 1-2.38 2.18 12.37 12.37 0 0 1-5 2.14 14.38 14.38 0 0 1-2.19.23h-.48a12.19 12.19 0 0 1-2.74-.39c-.32-.08-.64-.2-1-.31A16.3 16.3 0 0 1 243 144.6a22.48 22.48 0 0 1-1.07-7.07h-.42a.68.68 0 0 1 0-1.36h.4c0-2.94.22-5.35.22-5.4l.07-.69-17.81-1.44-.2.13a64.84 64.84 0 0 0-9.54 8.06h-.22l-.05.31c-4.61 4.91-8.41 11.14-5 16.31a20.88 20.88 0 0 0 1.73 2.19l-4.83 27.58 1.31-.84a4.85 4.85 0 0 1 1-.41 14.37 14.37 0 0 0-5.11 5.44c-2.51 4.56-3.57 13.1-4.68 22.15-1.23 10-2.5 20.3-5.8 25.73-6.73 11.05-13.95 16.28-24.14 17.47-6.39.75-8.34-.66-8.76-1.08.08-2 1.55-3.25 3.58-4.22a4.41 4.41 0 0 0-4.11 5.55c.85.6 2.56 1.33 5.93 1.33a30.35 30.35 0 0 0 3.53-.22c10.65-1.25 18.17-6.67 25.14-18.12 3.46-5.68 4.74-16.15 6-26.27 1.1-8.92 2.13-17.34 4.52-21.66a13 13 0 0 1 7.43-6.25 9.47 9.47 0 0 1 4.3 2.32c3.71 3.3 7.77 15.9 9.87 30.66 1.75 12.23 8.68 27.9 18.1 32.86 5.89 3.1 14.48 5.91 18.93 5.91a5 5 0 0 0 2.14-.37h.06a4.43 4.43 0 0 0 .2-1.24 3.6 3.6 0 0 0 0-1.71c-.41-1.31-1.89-2.52-5.65-5.09l-2.54-1.72c-3.07-2.06-5.75-4-7.88-6.94a22.68 22.68 0 0 1-3.28-6.94 40.54 40.54 0 0 1-1.1-4.89 82.56 82.56 0 0 1-1-11.63v-1.87c0-1.63 0-3.3-.11-5v-11.43c-.06-4.68-.27-7.44-.27-7.48a.68.68 0 0 1 .62-.73h.14a109.88 109.88 0 0 0-1.5-15.07c-.59-.24-1.09-.46-1.57-.7z"/><path class="cls-7" d="M277 130.52c-.14 1.18-.3 2.47-.48 3.92-1.28 10.26-4.2 20.89-16.08 21.88-12.73 1.07-17.51-8.31-18.67-11.21-1.6-4-1.19-11.46-1-13.77l-16-1.29c-2.07 1.45-19.85 14.21-14.22 22.65 4.29 6.43 14.3 12 25.88 15.11a1.35 1.35 0 0 1 1.66-2.13 39.69 39.69 0 0 0 8 4c1.81.23 3.63.41 5.44.5 15.28.75 26.1-4 33.13-14.56 5.07-7.6 5-21.63 5-28.38v-1.55c0-6.68 1-10 5.57-17.68a19.59 19.59 0 0 1 6.56-6.46l-1.55-4.71-1.18.59a48.56 48.56 0 0 0-4.63 2.67l-.18.12a62.17 62.17 0 0 0-8 6.53 38.12 38.12 0 0 0-2.74 3.16q-.91 1.19-1.77 2.53-.2.38-.37.76c-3.17 7.03-3.48 9.62-4.37 17.32z"/><path class="cls-3" d="M295.17 108c-4.53 7.7-5.57 11-5.57 17.68v1.55c0 6.75.11 20.78-5 28.38-7 10.54-17.84 15.31-33.13 14.56-1.82-.09-3.63-.27-5.44-.5a41 41 0 0 0 6.71 1.89h1.78c14.15 0 24.39-5 31.21-15.24 5.3-7.94 5.22-21.73 5.18-29.14v-1.55c0-6.38 1-9.56 5.38-17a18.09 18.09 0 0 1 5.83-5.82l-.44-1.33a19.59 19.59 0 0 0-6.51 6.52zM287.14 105.78c-.31.3-.62.65-.93 1a62.17 62.17 0 0 1 8-6.53 44.67 44.67 0 0 0-7.07 5.53z"/><path class="cls-6" d="M254.24 179.08s14.14 16.43 20.08 21.9 14.6 10 23.27 6.39c.89-.37 1.69-.7 2.45-1a5.32 5.32 0 0 1-1.3-2.19 5.39 5.39 0 0 1-.2-1.61h-.46l-.74-.08-.62-.09-.76-.12-.64-.12-.78-.17-.66-.17-.79-.23-.68-.22-.81-.29-.69-.27-.82-.36-.7-.33-.83-.44-.7-.39c-.28-.17-.56-.35-.84-.53l-.69-.46c-.28-.2-.57-.42-.85-.64s-.45-.34-.67-.52-.58-.5-.87-.76-.43-.38-.65-.59-.6-.6-.89-.91-.4-.41-.6-.63-.65-.76-1-1.16c-.16-.2-.33-.38-.49-.59-.49-.62-1-1.27-1.44-2s-.86-1.23-1.28-1.8l-.3-.41c-.41-.55-.82-1.09-1.21-1.58l-.05-.06c-.38-.48-.76-.93-1.13-1.36l-.26-.29c-.37-.43-.74-.83-1.1-1.21l-.09-.1c-.33-.34-.65-.66-1-1l-.24-.24c-.32-.31-.63-.59-.94-.86l-.19-.16-.71-.59-.28-.22-.72-.54-.33-.23-.36-.24-.38-.24c-.32-.19-.61-.36-.88-.5a7.3 7.3 0 0 0-1.8-.71z"/><path class="cls-7" d="M141.48 207.14c9.44-.82 18.78-10.26 25-16.5l1.54-1.55c4.75-4.75 5-7 4.93-7.67l-6.58-2.42c-2.51 2.81-4.82 5.48-6.87 7.86-7.42 8.6-12.78 14.81-18.4 16.66-5.38 1.77-11.66-.34-15.81-1.73l-1.81-.59a6.43 6.43 0 0 1-.52 1.19 7.66 7.66 0 0 1-1.21 1.57c4.74 1.54 12.92 3.78 19.73 3.18z"/><path class="cls-3" d="M141.6 208.5c9.94-.86 19.49-10.52 25.81-16.9l1.53-1.55c6.44-6.44 5.39-9 5.12-9.5a.69.69 0 0 0-.34-.29l-2.36-.88a53.63 53.63 0 0 1-6.39-.88c-2.36 2.65-4.55 5.18-6.49 7.43-4.74 5.49-8.62 10-12.2 12.93-.29.26-.57.53-.86.78a29.75 29.75 0 0 1-4.52 3.2 13.79 13.79 0 0 1-4.32.64c-4.88 0-9.89-2-12.94-3a5.88 5.88 0 0 1-.14.67l1.81.59c4.16 1.39 10.44 3.5 15.81 1.73 5.62-1.85 11-8.06 18.4-16.66 2-2.37 4.36-5.05 6.87-7.86l6.54 2.45c.06.65-.19 2.93-4.93 7.67l-1.54 1.55c-6.18 6.25-15.52 15.68-25 16.5-6.81.59-15-1.65-19.73-3.23l-.2.2.13 1.22c4.31 1.42 11.11 3.26 17.42 3.26.87.03 1.7 0 2.52-.07z"/><path class="cls-12" d="M308.1 207.74a4.34 4.34 0 0 0 2.26 1.51 6.6 6.6 0 0 0 .86-2 16.46 16.46 0 0 1-3.12.49z"/><path class="cls-13" d="M281.13 189a44.77 44.77 0 0 0-9.48-10.59 33.63 33.63 0 0 0 3.38-1.2 34.45 34.45 0 0 0 7.13-4.1c-1.89 1-3.79 1.15-4.53.15a1.47 1.47 0 0 1-.16-.32 32.7 32.7 0 0 1-3.48 1.75 27.74 27.74 0 0 1-4.28 1.41c-.43.11-.85.18-1.28.27a35.5 35.5 0 0 1-9.43-.19.67.67 0 0 0-.79.56.68.68 0 0 0 .56.79 38 38 0 0 0 5.87.46h1.55c.42.33.85.65 1.26 1 .27.14.56.3.88.5l.38.24.36.24.33.23.72.54.28.22.71.59.19.16c.3.26.62.55.94.86l.24.24c.31.3.63.62 1 1l.09.1c.36.38.72.78 1.1 1.21l.26.29c.37.43.74.87 1.13 1.36l.05.06c.39.49.8 1 1.21 1.58l.3.41c.42.57.84 1.17 1.28 1.8s1 1.35 1.44 2c.16.21.33.39.49.59.32.4.65.79 1 1.16s.4.42.6.63.59.63.89.91.43.39.65.59.58.52.87.76.45.35.67.52.57.44.85.64l.69.46c.28.18.56.37.84.53l.7.39.83.44.7.33.82.36.69.27.81.29.68.22.79.23.66.17.78.17.64.12.76.12.62.09.74.08h.46a5.39 5.39 0 0 0 .2 1.61 5.32 5.32 0 0 0 1.3 2.19 8.82 8.82 0 0 0 2.92 1.93 16.4 16.4 0 0 0 2.27.79h.18a.68.68 0 0 0 .18-1.34l-.35-.11c-2.93-.85-4.68-2.14-5.18-3.86-.89-3 2.25-6.54 2.28-6.58a.67.67 0 0 0 .14-.64.66.66 0 0 0-.19-.32.68.68 0 0 0-1 0s-.34.38-.72.91a12.59 12.59 0 0 0-1.49 2.67c-5.25-.39-12.11-2.33-17.98-10.94z"/><path class="cls-14" d="M137 144.67v1.85a32.79 32.79 0 0 0 .23 3.32c0-.37.11-.76.2-1.18s.17-.74.28-1.14.23-.83.36-1.28c.07-.23.16-.48.23-.72a11.82 11.82 0 0 0 3.36 1.58 17.75 17.75 0 0 0 5 .9H147.49c.14.32.25.63.41 1s.31.62.48.94a22.26 22.26 0 0 0 1.88 2.92 21.55 21.55 0 0 0 3.62 3.7c.36.28.72.55 1.1.82s.76.52 1.16.75.8.47 1.22.68.85.41 1.28.59.87.36 1.32.51a19.27 19.27 0 0 0 4.13.92 17 17 0 0 0 2 .1H167.62a1.58 1.58 0 0 0 .3 0h.98l.49-.05h.25c.45-.1.89-.2 1.32-.32s.85-.25 1.27-.4.81-.32 1.2-.49.77-.36 1.14-.56a16.24 16.24 0 0 0 3.36-2.46c0-.25.09-.51.13-.77a130.94 130.94 0 0 0 1.8-18.27 21.31 21.31 0 0 0 2.78.17c1.15 0 2-.08 2.05-.09h.11a.67.67 0 0 0 .25-1.17.7.7 0 0 0-.5-.15 21.69 21.69 0 0 1-4.73-.12 19.58 19.58 0 0 1-6.78-3.18c.13-.28.26-.55.38-.85a16.3 16.3 0 0 0 1.34-6.44c-.06-2-.72-3.46-2-4l-3.65-1.78a11.38 11.38 0 0 1 .09 1.51l3 1.24c1.37.56 1.66 4.24-.13 8.63s-4.55 6.83-5.93 6.27l-3-1.24a11.39 11.39 0 0 1-1.12 1l3.65 1.48a2.46 2.46 0 0 0 .93.18 5.27 5.27 0 0 0 3.52-1.92 13.56 13.56 0 0 0 1.56-2 22.31 22.31 0 0 0 5.42 2.8 126.33 126.33 0 0 1-1.7 17 13.52 13.52 0 0 1-2.16 1.48 14.72 14.72 0 0 1-2 .9 16.9 16.9 0 0 1-2.19.6h-.49l-.45.05h-.37l-.32.05h-1.35a14.21 14.21 0 0 1-1.64-.08 16.9 16.9 0 0 1-6.84-2.32 17.65 17.65 0 0 1-2-1.39 18.89 18.89 0 0 1-3.13-3.2 19.54 19.54 0 0 1-2.08-3.4c-.09-.19-.17-.4-.26-.6h.07a6 6 0 0 0 2.2-2.52 11.76 11.76 0 0 0 1-3.28.68.68 0 0 0-1.34-.23c0 .16-.06.31-.1.47-.45 2.19-1.26 3.64-2.5 4.4-1.56 1-3.84.92-7.39-.16-6.93-2.1-5.59-7.33-5.53-7.55a.68.68 0 0 0-1.31-.37 7.39 7.39 0 0 0-.1 2.58 7 7 0 0 0 1.91 4c-.03.14-.03.22-.03.29z"/><path class="cls-15" d="M291.32 216.79c-.47 0-1 .06-1.44.06h-1.01a20 20 0 0 1-2-.2c-.42-.06-.83-.18-1.24-.27-1 .76-3 .8-5 0-2.24-.9-3.74-2.52-3.66-3.83-.77-.5-1.51-1-2.22-1.52q-.84-.61-1.64-1.23l-1.56-1.24c-.83-.67-1.61-1.32-2.4-2-.79 1-2.71.83-4.61-.26l2.5 2c.9.75 1.83 1.52 2.79 2.29a61 61 0 0 0 7.07 5.06 27.19 27.19 0 0 0 9.54 3.62 22.32 22.32 0 0 0 3.45.28c.57 0 1.14 0 1.68-.07a22.34 22.34 0 0 0 4.46-.83 26.76 26.76 0 0 0 6.32-2.81 39.65 39.65 0 0 0 3.91-2.71l.46-.37a9.53 9.53 0 0 1-1-.71 9.63 9.63 0 0 1-.73-.67c-.28 1.24-2 2.82-3.81 3.9-2.09 1.23-4.29 1.42-5.27.55-.23.07-.44.16-.67.23a19.65 19.65 0 0 1-3.92.73z"/><path class="cls-16" d="M137.2 219.85h1.09c1.07 0 2.18-.06 3.39-.17a37 37 0 0 0 4.57-.79 46.49 46.49 0 0 0 8.56-3 73.86 73.86 0 0 0 7.6-4.06c3.5-2.12 6.76-4.36 9.63-6.34l2.95-2c1.4-.95 2.59-1.73 3.65-2.4q-.29 2.35-.42 4.77c-.1 1.72-.14 3.46-.12 5.3V217.68c0 .51 0 1-.08 1.51-.08 1.32-.22 2.56-.35 3.61-.16 1.26-.34 2.36-.55 3.33-.24 1.21-.49 2.22-.75 3.12s-.63 2-1 2.85a27.65 27.65 0 0 1-1.15 2.51 20.43 20.43 0 0 1-1.29 2.16 20.1 20.1 0 0 1-1.44 1.92 22.34 22.34 0 0 1-1.54 1.63c-.51.48-1 .94-1.59 1.37a22.62 22.62 0 0 1-2.9 1.91c-.87.48-1.59.8-2.06 1l-.28.12a7.2 7.2 0 0 0 .66 14.37h.15a26.69 26.69 0 0 0 3.66.24c.63 0 1.28 0 1.94-.06a33 33 0 0 0 6.46-1.07 32.25 32.25 0 0 0 3.87-1.29 34.75 34.75 0 0 0 4.11-2 39.12 39.12 0 0 0 4.16-2.68 41.65 41.65 0 0 0 7.75-7.54 45 45 0 0 0 3.28-4.66 56.53 56.53 0 0 0 5-10.29c.65-1.73 1.24-3.55 1.76-5.39.21-.7.39-1.43.57-2.13l.14-.56.13-.55c.17-.73.35-1.48.5-2.31l.48-2.45v-.22V215.79l.13-.55.24-1c.3-1.26.63-2.6 1-3.86a59 59 0 0 1 2.1-6.43c.42-1 .77-1.83 1.09-2.53l.18-.37.19.4c.3.66.65 1.47 1.08 2.52a59 59 0 0 1 2.09 6.39c.35 1.27.68 2.62 1 3.89l.24 1 .12.52V216.34l.48 2.47c.15.81.33 1.56.5 2.29l.12.5.15.59c.18.71.36 1.44.58 2.19.51 1.81 1.1 3.63 1.75 5.37a56.56 56.56 0 0 0 5 10.28 44.92 44.92 0 0 0 3.27 4.65 41.65 41.65 0 0 0 7.73 7.53 39.25 39.25 0 0 0 4.18 2.69 34.7 34.7 0 0 0 4.11 2 32.39 32.39 0 0 0 3.88 1.29 33 33 0 0 0 6.44 1.07c.66 0 1.32.06 1.95.06a26.69 26.69 0 0 0 3.66-.24h.15a7.21 7.21 0 0 0 7.09-7c.62-4.24-1.78-5.86-9.44-11-6.72-4.52-11.57-7.78-12-28.15v-1.83c0-1.72 0-3.44-.11-5.11s0-3.26 0-4.86v-3.66a22.69 22.69 0 0 1 3.44.59 23.66 23.66 0 0 1 4.07 1.43c.72.32 1.42.69 2.28 1.15s1.64 1 2.33 1.42c1.07.7 2.23 1.54 3.49 2.51-1.33-1.42-1.86-3-1.18-4a1.45 1.45 0 0 1 .16-.15c-.32-.22-.65-.47-1-.68-.86-.57-1.7-1.07-2.53-1.54s-1.64-.88-2.44-1.23q-.6-.27-1.18-.51c-.78-.31-1.54-.57-2.27-.79l-1.09-.3c-.81-.2-1.58-.35-2.33-.47-.58-.09-1.16-.17-1.71-.21s-1-.06-1.43-.08c-.06-4.75-.28-7.56-.28-7.6a.67.67 0 0 0-.59-.61h-.14a.68.68 0 0 0-.62.73s.21 2.79.27 7.48v11.43c.09 1.7.13 3.36.11 5V213a82.56 82.56 0 0 0 1 11.63 40.54 40.54 0 0 0 1.1 4.89 22.68 22.68 0 0 0 3.28 6.94c2.13 3 4.82 4.88 7.88 6.94l2.54 1.72c3.76 2.57 5.25 3.78 5.65 5.09a3.6 3.6 0 0 1 0 1.71 4.57 4.57 0 0 1-4.48 4.48h-5.46a30.08 30.08 0 0 1-5.92-1q-.85-.22-1.74-.52t-1.82-.67a32.17 32.17 0 0 1-3.8-1.8c-.64-.36-1.29-.75-1.94-1.16s-1.3-.86-1.94-1.34-1.27-1-1.9-1.52-1.25-1.1-1.86-1.69a40.31 40.31 0 0 1-3.48-3.85 42.16 42.16 0 0 1-3.08-4.38 53.37 53.37 0 0 1-2.63-4.77 54.31 54.31 0 0 1-2.14-5q-.48-1.28-.9-2.58t-.79-2.61c-.26-.87-.47-1.75-.69-2.62s-.42-1.73-.59-2.69l-.48-2.47v-.38l-.06-.26-.12-.53-.25-1c-.33-1.38-.66-2.7-1-4a61.58 61.58 0 0 0-2.2-6.72c-.39-1-.77-1.84-1.14-2.65q-.28-.6-.56-1.14l-.53-1c-.55-1-1.05-1.87-1.56-2.65-.51.78-1 1.65-1.56 2.65l-.54 1-.56 1.14c-.37.81-.75 1.69-1.14 2.65s-.77 2-1.13 3.14-.72 2.32-1.06 3.58-.67 2.59-1 4l-.25 1-.12.53-.06.26a1.47 1.47 0 0 1 .32.05c1.38.49 1.76 3 .84 5.51-.74 2.07-2.11 3.54-3.33 3.76-.41 1.36-.85 2.72-1.35 4.06q-.47 1.28-1 2.54a54.22 54.22 0 0 1-2.39 4.92q-.66 1.19-1.37 2.34a42.26 42.26 0 0 1-2.65 3.81c.82 1.11.12 3.34-1.69 5.17s-4 2.55-5.12 1.77c-.29.23-.57.47-.86.69a36.33 36.33 0 0 1-3.88 2.5c-.64.36-1.28.69-1.92 1s-1.26.57-1.88.82-1.22.47-1.82.67-1.18.37-1.74.52a30.05 30.05 0 0 1-5.92 1H163.88a4.47 4.47 0 0 1-.22-8.94h.22c-.13 0 .1-.09.62-.32l.83-.38c.42-.2.9-.44 1.44-.74a25.25 25.25 0 0 0 3.28-2.15c.52-.41 1-.87 1.57-1.35l.21-.18c.59-.56 1.17-1.19 1.74-1.84a22.55 22.55 0 0 0 1.62-2.16 23.1 23.1 0 0 0 1.46-2.46 29.86 29.86 0 0 0 1.27-2.77c.16-.41.29-.87.44-1.29.2-.59.42-1.15.6-1.77.31-1.06.58-2.18.81-3.33q.18-.86.32-1.75t.26-1.81c.15-1.22.29-2.46.36-3.74 0-.63.07-1.28.1-1.92s0-1.31 0-1.89v-4.48q0-1.26 0-2.54t.1-2.59c.09-1.64.23-3.3.45-5 .09-.7.2-1.4.32-2.1a89.71 89.71 0 0 0 1.68-10.98.68.68 0 0 0-.64-.72h-.07a.7.7 0 0 0-.65.62 82.36 82.36 0 0 1-1.24 8.74c-.68.36-1.38.75-2.14 1.21-1.58.94-3.3 2.07-5.15 3.33l-2.86 2c-1.32.91-2.71 1.86-4.13 2.81a6.38 6.38 0 0 1-2.63 3.58c-1.85 1.35-3.89 1.79-5 1.18-1.66.94-3.37 1.86-5.16 2.68-1.2.55-2.43 1.05-3.69 1.51a7.13 7.13 0 0 1-3.08 2.23c-2.23.9-4.43.77-5.28-.22h-.22c-.63.06-1.25.1-1.87.13h-2.27a26.36 26.36 0 0 1-3.87-.42c-.46-.08-.89-.19-1.33-.29a1.57 1.57 0 0 1-.19.77 2 2 0 0 1-1.65.86 14 14 0 0 0-6.85-5.72q-.49-.19-1-.34l-.73-6.66-.13-1.22.2-.2a7.66 7.66 0 0 0 1.21-1.57 6.43 6.43 0 0 0 .52-1.19 5.88 5.88 0 0 0 .14-.67c3.06.94 8.06 3 12.94 3a13.79 13.79 0 0 0 4.32-.64 29.75 29.75 0 0 0 4.52-3.2c.29-.24.57-.52.86-.78 1.22-1.09 2.44-2.26 3.66-3.53q1.13-1.18 2.25-2.44c.75-.84 1.49-1.69 2.24-2.56l2.25-2.64 2.28-2.66c1.53-1.77 3.09-3.54 4.72-5.24.42-.44.86-.86 1.29-1.29a53.63 53.63 0 0 0 6.39.88c1.42.11 2.76.16 4 .16a38.84 38.84 0 0 0 8.83-.88.68.68 0 0 0 .49-.83.67.67 0 0 0-.48-.48.66.66 0 0 0-.34 0 36 36 0 0 1-6.47.77 51.62 51.62 0 0 1-11.24-.79l.08-.08-.41-.09-1.25-.29c-.83-.22-1.65-.46-2.45-.72s-1.59-.56-2.36-.88-1.52-.67-2.25-1a33.11 33.11 0 0 1-6-3.9 32 32 0 0 1-2.81-2.61 1.76 1.76 0 0 1-.9 1c-1.36.56-3.29-1-4.31-3.53-.78-1.91-.81-3.8-.18-4.84a30 30 0 0 1-1.4-3c-.11-.28-.2-.56-.3-.83-.1 0-.2.08-.31.1a3.46 3.46 0 0 1-2.78-.75c.26.84.54 1.67.86 2.49a34.73 34.73 0 0 0 6.88 10.83 34.22 34.22 0 0 0 3.54 3.31 36 36 0 0 0 8.91 5.35c.73.31 1.5.6 2.31.88-1.23 1.32-2.53 2.77-4.11 4.6L154.5 186c-2.25 2.64-4.37 5.14-6.54 7.42a53.1 53.1 0 0 1-4.3 4.1 27.61 27.61 0 0 1-3.86 2.78 11.36 11.36 0 0 1-3.22.43c-3.54 0-7.38-1.29-10.19-2.23-1.09-.37-2-.67-2.85-.89 0-.16-.06-.32-.11-.48a.68.68 0 0 0-.86-.43.67.67 0 0 0-.24.14.68.68 0 0 0-.19.72 4.87 4.87 0 0 1-.34 4.1 9.58 9.58 0 0 1-6 4c-3.05.67-5.34.4-6.8-.82a5.59 5.59 0 0 1-1.76-4.09.67.67 0 0 0-.46-.66.66.66 0 0 0-.19 0 .71.71 0 0 0-.7.65 6.88 6.88 0 0 0 2.24 5.17 6.35 6.35 0 0 0 2.86 1.3l.6 5.9a14.17 14.17 0 0 0-4.15 3.45 14.07 14.07 0 0 0 6.67 22.31 2 2 0 0 0 .6.09h.2a2 2 0 0 0 1.35-.73 2 2 0 0 0 .44-1.46v-.23l-1-9.45a.54.54 0 0 1 .48-.59l2.44-.25 1-.1 1-.1a.55.55 0 0 1 .58.48l1 9.68a2 2 0 0 0 2 1.8h.2a2 2 0 0 0 .77-.24 13.77 13.77 0 0 0 1.64-1.08 14.14 14.14 0 0 0 2.43-2.32 14 14 0 0 0 3.1-10.3 14.15 14.15 0 0 0-1.55-5.15 29.49 29.49 0 0 0 6.41.93zm-6.28 4.33a12.61 12.61 0 0 1-5 11.4l-1-9.44a1.9 1.9 0 0 0-1.89-1.71h-.19l-4.44.45-2.44.25a1.9 1.9 0 0 0-1.7 2.08l1 9.45a12.7 12.7 0 0 1 .17-23l-.7-6.41c.43-.06.86-.13 1.32-.23a12.34 12.34 0 0 0 4.23-1.89l.87 7.94a12.67 12.67 0 0 1 9.78 11.11z"/><path class="cls-6" d="M238.09 165.68a1.35 1.35 0 0 0-1.66 2.13s.05.07.09.09a34.34 34.34 0 0 0 3.69 2.18c.43.22.88.45 1.37.68s1 .46 1.52.69a41 41 0 0 0 16.11 3.5 34.17 34.17 0 0 0 5.47-.44 1.36 1.36 0 0 0-.44-2.69 32.8 32.8 0 0 1-11.44-.25 41 41 0 0 1-6.71-1.89 39.69 39.69 0 0 1-8-4z"/><path class="cls-17" d="M129 212.43c-2.34-1.37-4.83-1.46-5.57-.2v.11a14 14 0 0 1 6.85 5.72 2 2 0 0 0 1.65-.86 1.57 1.57 0 0 0 .19-.77c0-1.25-1.19-2.88-3.12-4z"/><path class="cls-18" d="M280 168.16c-2 1.48-3 3.49-2.53 4.73a1.47 1.47 0 0 0 .16.32c.74 1 2.64.89 4.53-.15a8.82 8.82 0 0 0 1-.63 8.44 8.44 0 0 0 1.52-1.44c1.09-1.33 1.48-2.76.85-3.61a1.55 1.55 0 0 0-.58-.45c-1.14-.56-3.14-.1-4.95 1.23z"/><path class="cls-19" d="M150.47 212.88c-.55-1.36-3-1.64-5.54-.63s-4.11 2.93-3.56 4.29a1.49 1.49 0 0 0 .26.41c.85 1 3 1.11 5.28.22a7.13 7.13 0 0 0 3.08-2.23 2.17 2.17 0 0 0 .48-2.06z"/><path class="cls-20" d="M166.24 204.54c-.86-1.18-3.34-.85-5.53.75s-3.26 3.85-2.4 5a1.53 1.53 0 0 0 .52.43c1.11.61 3.16.17 5-1.18a6.38 6.38 0 0 0 2.63-3.58 1.84 1.84 0 0 0-.22-1.42z"/><path class="cls-21" d="M291.29 145.38c-.69 2.62-.1 5 1.32 5.42a1.62 1.62 0 0 0 .94-.07c1.16-.4 2.33-1.94 2.87-4 .69-2.61.1-5-1.3-5.41-1.44-.38-3.12 1.44-3.83 4.06z"/><path class="cls-22" d="M148.85 164.71a8.63 8.63 0 0 0-.47-1.59c-.93-2.28-2.62-3.78-3.93-3.61a1.48 1.48 0 0 0-.38.08 1.65 1.65 0 0 0-.78.71c-.63 1-.6 2.93.18 4.84 1 2.51 3 4.09 4.31 3.53a1.76 1.76 0 0 0 .9-1 5.06 5.06 0 0 0 .17-2.96z"/><path class="cls-23" d="M299.54 111.47a1.73 1.73 0 0 0 1.14.49 5.85 5.85 0 0 0 3.94-1.66v-.1l-1.71-5.2a8.55 8.55 0 0 0-1.58 1.18c-2.01 1.82-2.8 4.23-1.79 5.29z"/><path class="cls-24" d="M201.27 219.3c-.91 2.55-.54 5 .84 5.51a1.58 1.58 0 0 0 .82 0c1.23-.22 2.59-1.69 3.33-3.76.91-2.55.54-5-.84-5.51a1.47 1.47 0 0 0-.32-.05c-1.33-.13-2.98 1.45-3.83 3.81z"/><path class="cls-25" d="M188.7 244c-1.9 1.93-2.6 4.33-1.56 5.36a1.46 1.46 0 0 0 .21.14c1.12.78 3.33 0 5.12-1.77s2.5-4.06 1.69-5.17a1.47 1.47 0 0 0-.13-.19c-1.03-1.06-3.43-.37-5.33 1.63z"/><path class="cls-26" d="M269.12 206.53l.06-.06c.86-1.18-.21-3.44-2.4-5s-4.4-1.88-5.37-.9a1.45 1.45 0 0 0-.16.15c-.68.93-.14 2.53 1.18 4a8.64 8.64 0 0 0 1.21 1.08 9 9 0 0 0 .86.55c1.91 1.01 3.83 1.14 4.62.18z"/><path class="cls-27" d="M280.59 216.32c2 .82 4 .78 5 0a1.59 1.59 0 0 0 .53-.65c.55-1.36-1-3.28-3.56-4.29s-5-.73-5.54.63a1.49 1.49 0 0 0-.09.47c-.08 1.32 1.42 2.94 3.66 3.84z"/><path class="cls-6" d="M186.65 176.37c.81-.35 1.66-.74 2.54-1.18 3.87-1.94 8.22-6.9 8.4-7.11a1.36 1.36 0 0 0-.13-1.92 1.43 1.43 0 0 0-1.92.13 44.52 44.52 0 0 1-4.21 4.13 18 18 0 0 1-3.36 2.33l-.34.16c-.56.27-1.11.53-1.64.76a38.53 38.53 0 0 1-7.64 2.54 1.36 1.36 0 0 0-1.09 1.58 1.33 1.33 0 0 0 .11.3 36 36 0 0 0 6.47-.77.66.66 0 0 1 .34 0l.87-.33c.52-.16 1.05-.38 1.6-.62z"/><path class="cls-28" d="M112.94 190.68a12.67 12.67 0 0 1-4.58-22.46l1 9.44a1.9 1.9 0 0 0 1.89 1.71h.19l2.44-.25 4.44-.45a1.9 1.9 0 0 0 1.7-2.08l-1-9.45a12.7 12.7 0 0 1-.17 23l.46 4.54a7.46 7.46 0 0 1 1.44.7l-.07-.72-.38-3.72a14.17 14.17 0 0 0 4.15-3.45 14.06 14.06 0 0 0-4.85-21.59 14.09 14.09 0 0 0-1.82-.72 2 2 0 0 0-.6-.09H117a2 2 0 0 0-1.35.73 2 2 0 0 0-.44 1.46l1 9.68a.54.54 0 0 1-.48.59l-2 .2-2.44.25a.55.55 0 0 1-.58-.48l-1-9.44v-.24a2 2 0 0 0-2-1.8h-.2a2 2 0 0 0-.77.24 14.07 14.07 0 0 0 2.7 25.75l.35 3.43a10.23 10.23 0 0 1 3.56-1.25z"/><path class="cls-6" d="M121.16 213.07l-.87-7.94a12.34 12.34 0 0 1-4.23 1.89c-.46.1-.89.17-1.32.23l.7 6.41a12.7 12.7 0 0 0-.17 23l-1-9.45a1.9 1.9 0 0 1 1.7-2.08l2.44-.25 4.44-.45h.19a1.9 1.9 0 0 1 1.89 1.71l1 9.44a12.7 12.7 0 0 0-4.77-22.51zM307.58 74.86l-.3-.92-1.97 1.67 2.27-.75zM292.67 69.58l.41 1.25 2.68-2.26-3.09 1.01zM304.95 66.83l-.38-1.16-2.43.8-7.81 6.61a1.24 1.24 0 0 1-.42.22l.71 2.15 9.92-8.4a1.25 1.25 0 0 1 .41-.22zM295.42 77.94l.27.83 3.25-1.07 7.11-6a1.25 1.25 0 0 1 .42-.23l-.7-2.14-9.92 8.4a1.24 1.24 0 0 1-.43.21zM300.21 92.53l.47 1.43 3.06-2.59-3.53 1.16zM306.7 98.08l-3.26 2.76a1.24 1.24 0 0 1-.42.23l.71 2.15 3.14-2.66a6.3 6.3 0 0 1-.17-2.48zM312.54 90l-.44-1.34-2 .65-8.2 6.94a1.23 1.23 0 0 1-.42.23l.71 2.15 9.92-8.4a1.25 1.25 0 0 1 .43-.23zM308.11 102.79l-3.11 2.68a1.24 1.24 0 0 1-.42.23l.71 2.15 4.48-3.79a6.77 6.77 0 0 1-1.66-1.27z"/><path class="cls-29" d="M298.94 77.7l6.37-2.09 2-1.67.39-.33a1.26 1.26 0 0 0-1.7-1.92z"/><path class="cls-30" d="M302.13 66.47l-6.37 2.09-2.68 2.27-.39.33a1.25 1.25 0 0 0 1.2 2.15 1.24 1.24 0 0 0 .42-.22z"/><path class="cls-31" d="M312.37 105.1a10.91 10.91 0 0 1-2.66-1.05l-4.48 3.79-.39.33a1.25 1.25 0 0 0 1.25 2.14 1.24 1.24 0 0 0 .38-.21z"/><path class="cls-32" d="M310.11 89.28l-6.37 2.09-3.06 2.63-.39.33a1.25 1.25 0 0 0 1.2 2.15 1.23 1.23 0 0 0 .42-.23z"/><path class="cls-33" d="M306.7 98.08a8.26 8.26 0 0 1 .71-2.46.68.68 0 0 1 .91-.29.67.67 0 0 1 .18.15 13.52 13.52 0 0 1 5.5-3.64 1.24 1.24 0 0 0-.07-1.5 1.27 1.27 0 0 0-1.77-.15l-9.92 8.4-.39.33a1.25 1.25 0 0 0 1.2 2.15 1.24 1.24 0 0 0 .42-.23z"/><path class="cls-34" d="M308.11 102.79a5.46 5.46 0 0 1-1-1.44 5.29 5.29 0 0 1-.27-.8l-3.14 2.66-.39.33a1.25 1.25 0 0 0 1.2 2.15 1.24 1.24 0 0 0 .42-.23z"/><path class="cls-35" d="M295.42 77.94a1.24 1.24 0 0 0 .42-.23l9.92-8.4.39-.33a1.26 1.26 0 0 0-1.63-1.92l-9.92 8.4-.39.33a1.25 1.25 0 0 0 1.2 2.15z"/><path class="cls-6" d="M287.476 57.47l13.453-4.418 3.67 11.172-13.455 4.418zM295.014 80.448l13.454-4.416 3.667 11.174-13.454 4.415z"/><path class="cls-36" d="M295 94.24l3.91-1.24.42 1.27-.18.09a56.33 56.33 0 0 0-6.27 3.51 47.25 47.25 0 0 0-7.65 6 40.1 40.1 0 0 0-7.49 10 39.48 39.48 0 0 0-4.26 14c-.06.47-.1 1-.14 1.55v.45l-.06.85v1.13a3.55 3.55 0 0 0 0 .36v2.06a44.51 44.51 0 0 1-.54 4.68 26.15 26.15 0 0 1-2.49 7.82 13.61 13.61 0 0 1-1.76 2.61 12.11 12.11 0 0 1-2 1.79 9.61 9.61 0 0 1-3.8 1.64h-.11a11.09 11.09 0 0 1-1.61.18h-.26a10.22 10.22 0 0 1-2.18-.29h-.08a9.78 9.78 0 0 1-3.89-2.06 12.61 12.61 0 0 1-1.61-1.68 15.74 15.74 0 0 1-1.24-1.85l-.27-.51c-.08-.15-.17-.3-.23-.45s-.24-.49-.36-.71l-.1-.2-.14-.29v-.07l-.13-.25-.1-.19c-.09-.2-.19-.39-.28-.58v-.07c-.17-.32-.33-.64-.48-1l-.05-.11c-.14-.25-.27-.51-.39-.75s-.38-.74-.57-1.08l-.1-.19c-.07-.89-.13-1.81-.18-2.76a22.41 22.41 0 0 0 7.67-37.58v-1.33a43.22 43.22 0 1 0-86.43 0v1.33a22.3 22.3 0 0 0-7.1 14.2l2.53 1.08a19.11 19.11 0 0 1 3-9.3q.43-.68.91-1.33a19.81 19.81 0 0 1 2.13-2.4q.58-.56 1.2-1.06c-.05-.83-.08-1.67-.08-2.52a40.67 40.67 0 0 1 .82-8.16q.4-2 1-3.88a40.21 40.21 0 0 1 2.17-5.51q.85-1.77 1.87-3.44t2.18-3.23q.58-.78 1.2-1.53A40.36 40.36 0 0 1 210 58.58q1.29-.08 2.6-.08a40.51 40.51 0 0 1 7.38.68q1.2.22 2.37.51l.79.21a40.5 40.5 0 0 1 28.55 28.55q.11.39.21.79a40.56 40.56 0 0 1 1.16 9.76c0 .85 0 1.68-.08 2.52a19.62 19.62 0 0 1-7.18 34.24 28.39 28.39 0 0 1-3.66.42h-.64a.68.68 0 0 0 0 1.36h.42a28.75 28.75 0 0 0 3.4-.33c.07 1.48.16 2.93.27 4.3.12.2.26.42.39.65s.31.55.46.86.31.62.49.95.33.67.51 1c.09.17.18.35.26.53s.19.36.28.54l.27.56c.1.18.2.37.29.56.17.39.41.76.6 1.15s.46.76.71 1.14.52.75.81 1.12a15.28 15.28 0 0 0 2 2 12.61 12.61 0 0 0 4 2.32c.32.11.63.23 1 .31a12.19 12.19 0 0 0 2.74.39h.48a14.38 14.38 0 0 0 2.19-.23 12.37 12.37 0 0 0 5-2.14 14.85 14.85 0 0 0 2.38-2.18 16.4 16.4 0 0 0 2.13-3.16 28.93 28.93 0 0 0 2.76-8.63 47.48 47.48 0 0 0 .58-5c0-.42 0-.85.06-1.27v-.88V130.78l.02-.78c.05-.65.09-1.32.17-1.92a36.86 36.86 0 0 1 4-13c.49-.92 1-1.8 1.54-2.63s1.16-1.73 1.77-2.53a38.12 38.12 0 0 1 2.74-3.16c.31-.32.62-.67.93-1a44.67 44.67 0 0 1 7.06-5.56l.18-.12a48.56 48.56 0 0 1 4.61-2.65l1.18-.59 1.55 4.71.44 1.33.7 2.12 1.71 5.2v.1a5.85 5.85 0 0 1-3.94 1.66c-.62.82-1.25 1.67-1.81 2.57a27.88 27.88 0 0 0-1.73 3.12 25.51 25.51 0 0 0-1.32 3.33q-.27.86-.46 1.75a24.82 24.82 0 0 0-.53 5.67v1.47l.05.67.11 1.41c0 .57.1 1.13.11 1.71a62.54 62.54 0 0 1 0 7.12v.52c1.4.39 2 2.8 1.3 5.41-.54 2.06-1.71 3.6-2.87 4a44.66 44.66 0 0 1-1.73 5.21q-.39 1-.83 1.91a37.8 37.8 0 0 1-3.2 5.57 32.07 32.07 0 0 1-2.85 3.51 1.55 1.55 0 0 1 .58.45c.63.85.24 2.28-.85 3.61a35.47 35.47 0 0 0 5.35-6 41.2 41.2 0 0 0 4.32-8 51.93 51.93 0 0 0 3.54-16 65.53 65.53 0 0 0 0-7.45c0-.37 0-.8-.08-1.23v-.52l-.11-1.44-.06-.73v-.36 0-.1-.47-.33a20.78 20.78 0 0 1 .87-6.56 23.33 23.33 0 0 1 1.19-3 25.23 25.23 0 0 1 1.56-2.81c.57-.91 1.24-1.8 1.89-2.65s1.19-1.51 1.9-2.31a4.8 4.8 0 0 0 5.71 2.24l5.33-1.75a4.82 4.82 0 0 0 3.07-6.08l-.27-.83a11.12 11.12 0 0 1-1.34.27l.33 1a3.46 3.46 0 0 1-2.21 4.36l-5.37 1.78a3.45 3.45 0 0 1-4.14-1.68 1.26 1.26 0 0 1-1.25-2.14l.39-.33-.71-2.15a1.25 1.25 0 0 1-1.2-2.15l.39-.33-.71-2.15a1.25 1.25 0 0 1-1.2-2.15l.39-.33-.71-2.15a1.25 1.25 0 0 1-1.2-2.15l.39-.33-.47-1.43 3.54-1.16 6.37-2.09 2-.65.44 1.34a1.26 1.26 0 0 1 1.35.38 1.24 1.24 0 0 1 .07 1.5l.56-.2-.35-1.05-.78-2.39 3.92-1.29a4.14 4.14 0 0 0 2.68-5.23l-2-5.9a4.14 4.14 0 0 0-5.22-2.64l-3.92 1.29-3-9.19 3.92-1.25a4.11 4.11 0 0 0 2.4-2.06 4.18 4.18 0 0 0 .3-.76 4.1 4.1 0 0 0-.06-2.4l-1.94-5.9a4.14 4.14 0 0 0-5.22-2.64l-22.33 7.33a4.14 4.14 0 0 0-2.64 5.22l1.94 5.9a4.13 4.13 0 0 0 5.22 2.64l3.93-1.33 3 9.19-3.92 1.29a4.14 4.14 0 0 0-2.64 5.22l1.94 5.9a4.08 4.08 0 0 0 3.74 2.83h.18a4.15 4.15 0 0 0 1.32-.19zm18.23-19.8a2.78 2.78 0 0 1 3.5 1.77l1.94 5.9a2.77 2.77 0 0 1-1.77 3.5l-3.47 1.14-3.67-11.17zm-7.54-22.94a2.78 2.78 0 0 1 3.5 1.77l1.94 5.9a2.78 2.78 0 0 1-1.77 3.5l-3.46 1.14-3.67-11.17zm-14.33 17.8l-4.11 1.35a3.46 3.46 0 0 1-4.36-2.21l-1.94-5.9a3.46 3.46 0 0 1 2.21-4.36l4.11-1.35.21.65 13.45-4.42 3.67 11.17-13.45 4.42zm2.71 8.27a1.26 1.26 0 0 1 .15-1.77l.39-.33-.71-2.15a1.25 1.25 0 0 1-1.2-2.15l.39-.33-.41-1.25 3.09-1 6.37-2.09 2.43-.8.38 1.16a1.26 1.26 0 0 1 1.2 2.14l-.39.33.7 2.14a1.26 1.26 0 0 1 1.21 2.15l-.39.33.3.92-2.28.75-6.37 2.09-3.25 1.07-.27-.83a1.23 1.23 0 0 1-1.35-.37zm-3.65 13.83l-1.94-5.9a3.46 3.46 0 0 1 2.21-4.36l4.11-1.35.21.65L308.47 76l3.67 11.17-13.46 4.43.21.65-4.11 1.35a3.46 3.46 0 0 1-4.36-2.21z"/><path class="cls-37" d="M298.89 92.24l-.21-.65L295 80.43l-.21-.65-4.11 1.35a3.46 3.46 0 0 0-2.21 4.36l1.94 5.9a3.46 3.46 0 0 0 4.36 2.21z"/><path class="cls-38" d="M287.26 56.83l-4.11 1.35a3.46 3.46 0 0 0-2.21 4.36l1.94 5.9a3.46 3.46 0 0 0 4.36 2.21l4.11-1.35-.21-.65-3.67-11.17z"/><path class="cls-3" d="M309.36 62.67a2.78 2.78 0 0 0 1.77-3.5l-1.94-5.9a2.78 2.78 0 0 0-3.5-1.77l-3.47 1.14 3.67 11.17zM316.89 85.62a2.77 2.77 0 0 0 1.77-3.5l-1.94-5.9a2.78 2.78 0 0 0-3.5-1.77l-3.47 1.14 3.67 11.17z"/><path class="cls-6" d="M341.05 195.34a2.33 2.33 0 0 1 .65 0l-1.85-8.34-5.14 6.24.69 3.41a2.34 2.34 0 0 1 .77-.31zM328.44 162.33l4 19.59 5-5.85-4.68-21a6.36 6.36 0 0 0-4.32 7.26z"/><path class="cls-39" d="M331.54 195.91a2.35 2.35 0 0 1-.53 1.72l-5.64 6.84 8.17-9.92.73 3.62a2.3 2.3 0 0 1 1.07-1.56l-.69-3.41 5.14-6.24 1.85 8.31a2.17 2.17 0 0 1 1.57.78L341 185.66l10.88-13.2v-2.14l-20.49 24.87a2.34 2.34 0 0 1 .15.72z"/><path class="cls-3" d="M326.85 191.16l3.84 3.17a2.34 2.34 0 0 1 .64.86l20.49-24.87v-9l-25.33 29.6a2.34 2.34 0 0 1 .36.24z"/><path class="cls-40" d="M338.53 174.78L334 154.54a1.18 1.18 0 0 0-1.48-.88 7.73 7.73 0 0 0-5.45 8.95l4.19 20.63-6.36 7.43h.2a2.25 2.25 0 0 1 1.37.3l25.33-29.6v-2.09zm-6.12 7.15l-4-19.59a6.36 6.36 0 0 1 4.31-7.31l4.68 21z"/><path class="cls-41" d="M331.54 195.91a2.49 2.49 0 0 0-.84-1.59l-3.84-3.17a2.35 2.35 0 0 0-1.72-.53h-.2a2.34 2.34 0 0 0-1.39.81l-2.68 3.25c-.16-.15-.33-.31-.5-.45a9.49 9.49 0 0 0-3.66-1.87 11.38 11.38 0 0 0-10.62 3 12.67 12.67 0 0 1 6.67 1.53 5.79 5.79 0 0 1 2.76 0 4.82 4.82 0 0 1 1.86.95 5.82 5.82 0 0 1 1.36 6.65 13.2 13.2 0 0 1-1.79 2.76v.05a7.61 7.61 0 0 1-3.17 1.9 5.91 5.91 0 0 1-3.18.11l-.23-.09a4.34 4.34 0 0 1-2.26-1.51 20 20 0 0 1-2.8-.07l.35.11a.68.68 0 0 1-.18 1.34h-.18a16.4 16.4 0 0 1-2.27-.79 9.66 9.66 0 0 0 .72 1.44 7.71 7.71 0 0 0-5.19 1c-2.34 1.37-3.63 3.51-2.89 4.77a1.49 1.49 0 0 0 .31.35c1 .87 3.18.68 5.27-.55 1.84-1.08 3.53-2.66 3.81-3.9a9.63 9.63 0 0 0 .73.67 9.93 9.93 0 0 0 3.66 1.87c.15 0 .31.05.46.08a11.62 11.62 0 0 0 11.24-4.23c.21-.26.41-.53.6-.8l3.72-4.51 5.64-6.84a2.35 2.35 0 0 0 .43-1.74z"/><path class="cls-42" d="M341.7 195.31a2.33 2.33 0 0 0-.65 0l-4.88 1a2.36 2.36 0 0 0-1.84 2.77l2.93 14.41c0 .33.09.66.16 1a11.65 11.65 0 0 0 8.15 9.1 9.44 9.44 0 0 0 6.26-.49v-5.74a5 5 0 0 1-2.86 1.75 4.83 4.83 0 0 1-2.2-.07 6.78 6.78 0 0 1-4.55-4.72v-.07a13.2 13.2 0 0 1-.28-3.28 5.82 5.82 0 0 1 4.33-5.23 4.83 4.83 0 0 1 2.2.07 6.2 6.2 0 0 1 3.37 2.4v-6.06a10.15 10.15 0 0 0-2.18-.89 9.5 9.5 0 0 0-4.33-.13l-.66.16-.84-4.12a2.28 2.28 0 0 0-2.12-1.87z"/><path class="cls-3" d="M154.14 112.5l-.09-.14a2 2 0 0 0-.92-.83 1.71 1.71 0 0 0-.62-.12h-.18l-.16-.1c-9.49-5.79-21.72-14.27-26-21.83a9.07 9.07 0 0 0-.74-1.49 4.73 4.73 0 0 0-2.19-1.94c-2.32-.94-5.55.37-8.87 3.61a43.32 43.32 0 0 0-9.16 14.46c-4.8 11.81-4.66 23.5.31 25.52 1.44.59 3.25.31 5.23-.79l.17-.07c8.41-2 22.4.32 32.66 2.64l.24.05.15.19a1.86 1.86 0 0 0 .76.6 2.22 2.22 0 0 0 1.63-.07l.2-.07h.2l.77.19c2.19-1.34 4.58-4.47 6.22-8.5 1.72-4.23 2.17-8.32 1.38-10.78l-.82-.49zm-28.86-8v.08q-.22 1-.5 2l-.09.32q-.26.9-.57 1.82l-.13.41c-.25.71-.51 1.42-.8 2.14s-.59 1.38-.9 2l-.18.38c-.31.64-.63 1.27-1 1.88-3.52 6.47-8.08 10.62-11.77 10.62a4.46 4.46 0 0 1-1.69-.32c-2.29-.93-3.61-3.73-3.72-7.87a34.73 34.73 0 0 1 2.81-13.43A34.73 34.73 0 0 1 114.11 93c3-2.89 5.86-4 8.16-3 3.54 1.4 4.58 7.26 3.02 14.47z"/><path class="cls-43" d="M147.51 132.35l-.77-.19h-.2l-.2.07a2.22 2.22 0 0 1-1.63.07 1.86 1.86 0 0 1-.76-.6l-.15-.19-.24-.05c-10.25-2.32-24.24-4.67-32.66-2.64l-.17.07c-2 1.11-3.78 1.38-5.23.79-5-2-5.11-13.71-.31-25.52a43.32 43.32 0 0 1 9.16-14.46c3.32-3.23 6.55-4.55 8.87-3.61a4.73 4.73 0 0 1 2.2 1.91 9.07 9.07 0 0 1 .74 1.49c4.3 7.56 16.52 16 26 21.83l.16.1h.18a1.71 1.71 0 0 1 .62.12 2 2 0 0 1 .92.83l.09.14.14.08.82.49a3.22 3.22 0 0 0-1.72-2.17l2.34 1-.61-.36a3.27 3.27 0 0 0-1.47-1.22 3 3 0 0 0-.92-.21c-7.69-4.7-21-13.61-25.35-21.16a9.59 9.59 0 0 0-.81-1.63 6.06 6.06 0 0 0-2.83-2.47c-2.89-1.17-6.55.21-10.33 3.89a44.7 44.7 0 0 0-9.47 14.92c-5.26 12.93-4.79 24.92 1.06 27.3 1.82.74 4 .46 6.32-.82 8.11-1.91 21.67.35 31.72 2.62a3.14 3.14 0 0 0 1.16.83 3.31 3.31 0 0 0 2.06.1l-1.8-.73a3.43 3.43 0 0 0 3.07-.62z"/><path class="cls-3" d="M163.14 136.36l3 1.24c1.38.56 4.15-1.88 5.93-6.27s1.5-8.07.13-8.63l-3-1.24a24.12 24.12 0 0 1-6.06 14.9z"/><path class="cls-44" d="M122.27 90c-2.29-.93-5.19.15-8.16 3a34.73 34.73 0 0 0-7.36 11.59 34.73 34.73 0 0 0-2.81 13.41c.11 4.14 1.43 6.94 3.72 7.87a4.46 4.46 0 0 0 1.69.32c3.69 0 8.26-4.15 11.77-10.62.33-.6.65-1.23 1-1.88l.18-.38c.31-.66.61-1.34.9-2s.56-1.43.8-2.14l.13-.41q.31-.92.57-1.82l.09-.32q.28-1 .5-2v-.08c1.56-7.28.52-13.14-3.02-14.54zm2 12.5a40.2 40.2 0 0 1-6.46 15.88h-.12c-1.08-.44-1.37-4.08.64-9a18.61 18.61 0 0 1 3.28-5.48 3.85 3.85 0 0 1 2.27-1.47.73.73 0 0 1 .28.05z"/><path class="cls-6" d="M121.62 103.82a18.61 18.61 0 0 0-3.28 5.48c-2 4.93-1.72 8.57-.64 9h.12a40.2 40.2 0 0 0 6.46-15.88l-.11-.06a.73.73 0 0 0-.28-.05 3.85 3.85 0 0 0-2.27 1.51z"/><path class="cls-45" d="M152 141.55c0-.16.07-.31.1-.47a.68.68 0 0 1 .79-.56.67.67 0 0 1 .39.23l.85-.91a15.17 15.17 0 0 1 1.37-1.31 3.86 3.86 0 0 1 .42-.3l.2-.12a.42.42 0 0 1 .15-.07 1.48 1.48 0 0 1 .41 0h.71a4.82 4.82 0 0 0 .62.15l.23.1c1.1.45 2.46 0 3.85-1.09a11.39 11.39 0 0 0 1.12-1 24.12 24.12 0 0 0 6.06-14.9 11.38 11.38 0 0 0-.09-1.51c-.23-1.76-.89-3-2-3.47l-2.18-.72-2.67-1.09-2.27-.92-.92-.37-3.36-1.37-2.34-1a3.22 3.22 0 0 1 1.72 2.17c.78 2.46.34 6.55-1.38 10.78-1.64 4-4 7.17-6.22 8.5a3.43 3.43 0 0 1-3.06.54l1.8.73h.08l-.49.56-.3.36c2.9 1.37 5.76 4.15 6.41 7.06z"/><path class="cls-46" d="M143 155.71l.08-.07.22-.22.1-.11a8.66 8.66 0 0 0 .64-.76 12.93 12.93 0 0 0 .93-1.44 16.6 16.6 0 0 0 .89-1.87c.27-.67.5-1.38.78-2l.06-.14c.12-.28.23-.57.36-.84l.11-.22h-.53a17.75 17.75 0 0 1-5-.9 11.82 11.82 0 0 1-3.36-1.58c-.08.24-.17.49-.23.72-.13.45-.26.88-.36 1.28s-.2.78-.28 1.14-.15.81-.2 1.18-.06.5-.09.73c0 .56-.06 1-.05 1.46s0 .73.05 1v.35l.06.35a3.52 3.52 0 0 0 4 2.85c.11 0 .2-.07.31-.1a3.48 3.48 0 0 0 .75-.28 3.55 3.55 0 0 0 .76-.53z"/><path class="cls-6" d="M314 91.84a13.52 13.52 0 0 0-5.46 3.63.68.68 0 0 1 .11.77 5.87 5.87 0 0 0-.24 4.55c.67 1.45 2.21 2.48 4.59 3.06a.68.68 0 0 1-.16 1.34h-.16l-.27-.08-5.9 5a1.24 1.24 0 0 1-.38.21 3.45 3.45 0 0 0 4.14 1.68l5.33-1.75a3.46 3.46 0 0 0 2.21-4.36l-.33-1a11.12 11.12 0 0 0 1.34-.27 8.63 8.63 0 0 0 2.5-1.05c4.47-2.89 4-10.38-2.4-12.51a7.38 7.38 0 0 0-3.75.4l-.61.2zM302.32 197.23s-3.17 3.55-2.28 6.58c.51 1.72 2.26 3 5.18 3.86a20 20 0 0 0 2.8.07h.07a16.46 16.46 0 0 0 3.09-.42 8.47 8.47 0 0 0 3.26-1.48 4.34 4.34 0 0 0 1.44-1.87c1.18-3.15-.52-5.58-3.13-7a12.67 12.67 0 0 0-6.67-1.53 8.08 8.08 0 0 0-2.42.48 5.14 5.14 0 0 0-1.2.7.67.67 0 0 1-.14.61zM142.07 145.8c3.55 1.07 5.83 1.12 7.39.16 1.23-.76 2-2.21 2.5-4.4-.6-2.91-3.47-5.69-6.43-7a8.44 8.44 0 0 0-2.83-.74 7.83 7.83 0 0 0-6.39 3.69.68.68 0 0 1 .24.72c-.07.24-1.41 5.47 5.52 7.57zM107.21 200.79a5.59 5.59 0 0 0 1.76 4.09c1.46 1.21 3.75 1.49 6.8.82a9.58 9.58 0 0 0 6-4 4.87 4.87 0 0 0 .34-4.1.68.68 0 0 1 .19-.72 5.38 5.38 0 0 0-1.57-1.48 7.46 7.46 0 0 0-1.44-.7l-.46-4.54a12.7 12.7 0 0 0 .17-23l1 9.45a1.9 1.9 0 0 1-1.7 2.08l-4.44.45-2.44.25h-.19a1.9 1.9 0 0 1-1.89-1.71l-1-9.44a12.69 12.69 0 0 0 4.58 22.46l.39 3.55a10.23 10.23 0 0 0-3.56 1.25 6.77 6.77 0 0 0-.61.4 7.64 7.64 0 0 0-2.4 4.26.67.67 0 0 1 .47.63z"/><path class="cls-47" d="M307.4 95.62a8.26 8.26 0 0 0-.71 2.46 6.3 6.3 0 0 0 .16 2.47 5.29 5.29 0 0 0 .27.8 5.46 5.46 0 0 0 1 1.44 6.77 6.77 0 0 0 1.6 1.26 10.91 10.91 0 0 0 2.66 1.05l.27.08h.16a.68.68 0 0 0 .16-1.34c-2.38-.58-3.92-1.61-4.59-3.06a5.87 5.87 0 0 1 .24-4.55.68.68 0 0 0-.11-.77.67.67 0 0 0-.18-.15.68.68 0 0 0-.93.31z"/></g></svg>PK
!<3vkk'chrome/content/img/figure_customize.svg<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 352 303"><defs><style>.cls-1{fill:none;}.cls-2{fill:#eaeaee;}.cls-3{fill:#f9f9fa;}.cls-4{fill:#fff;}.cls-5{fill:#ccedf0;}.cls-6{fill:#fffefe;}.cls-7{fill:#e1e1e6;}.cls-8{fill:url(#New_Gradient_Swatch_1);}.cls-9{fill:url(#New_Gradient_Swatch_1-2);}.cls-10{fill:url(#New_Gradient_Swatch_1-3);}.cls-11{fill:url(#New_Gradient_Swatch_1-4);}.cls-12{fill:url(#New_Gradient_Swatch_1-5);}.cls-13{fill:url(#New_Gradient_Swatch_1-6);}.cls-14{fill:url(#New_Gradient_Swatch_1-7);}.cls-15{fill:url(#New_Gradient_Swatch_1-8);}.cls-16{fill:url(#New_Gradient_Swatch_1-9);}.cls-17{fill:url(#New_Gradient_Swatch_1-10);}.cls-18{fill:url(#New_Gradient_Swatch_1-11);}.cls-19{fill:url(#New_Gradient_Swatch_1-12);}.cls-20{fill:url(#New_Gradient_Swatch_1-13);}.cls-21{fill:url(#New_Gradient_Swatch_1-14);}.cls-22{fill:url(#New_Gradient_Swatch_1-15);}.cls-23{fill:url(#New_Gradient_Swatch_1-16);}.cls-24{fill:url(#New_Gradient_Swatch_1-17);}.cls-25{fill:url(#New_Gradient_Swatch_1-18);}.cls-26{fill:url(#New_Gradient_Swatch_1-19);}.cls-27{fill:url(#New_Gradient_Swatch_1-20);}.cls-28{fill:url(#New_Gradient_Swatch_1-21);}.cls-29{fill:url(#New_Gradient_Swatch_1-22);}.cls-30{fill:url(#New_Gradient_Swatch_1-23);}.cls-31{fill:url(#New_Gradient_Swatch_1-24);}.cls-32{fill:url(#New_Gradient_Swatch_1-25);}.cls-33{fill:url(#New_Gradient_Swatch_1-26);}.cls-34{fill:url(#New_Gradient_Swatch_1-27);}.cls-35{fill:url(#New_Gradient_Swatch_1-28);}.cls-36{fill:url(#New_Gradient_Swatch_1-29);}.cls-37{fill:url(#New_Gradient_Swatch_1-30);}.cls-38{fill:url(#New_Gradient_Swatch_1-31);}.cls-39{fill:url(#New_Gradient_Swatch_1-32);}.cls-40{fill:url(#New_Gradient_Swatch_1-33);}.cls-41{fill:url(#New_Gradient_Swatch_1-34);}.cls-42{fill:url(#New_Gradient_Swatch_1-35);}.cls-43{fill:url(#New_Gradient_Swatch_1-36);}.cls-44{fill:url(#New_Gradient_Swatch_1-37);}.cls-45{fill:url(#New_Gradient_Swatch_1-38);}.cls-46{fill:url(#New_Gradient_Swatch_1-39);}.cls-47{fill:url(#New_Gradient_Swatch_1-40);}.cls-48{fill:url(#New_Gradient_Swatch_1-41);}.cls-49{fill:url(#New_Gradient_Swatch_1-42);}.cls-50{fill:url(#New_Gradient_Swatch_1-43);}.cls-51{fill:url(#New_Gradient_Swatch_1-44);}.cls-52{fill:url(#New_Gradient_Swatch_1-45);}.cls-53{fill:url(#New_Gradient_Swatch_1-46);}.cls-54{fill:url(#New_Gradient_Swatch_1-47);}.cls-55{fill:url(#New_Gradient_Swatch_1-48);}.cls-56{fill:url(#New_Gradient_Swatch_1-49);}.cls-57{fill:url(#New_Gradient_Swatch_1-50);}.cls-58{fill:url(#New_Gradient_Swatch_1-51);}.cls-59{fill:url(#New_Gradient_Swatch_1-52);}.cls-60{fill:url(#New_Gradient_Swatch_1-53);}.cls-61{fill:url(#New_Gradient_Swatch_1-54);}.cls-62{fill:url(#New_Gradient_Swatch_1-55);}.cls-63{fill:url(#New_Gradient_Swatch_1-56);}.cls-64{fill:url(#New_Gradient_Swatch_1-57);}.cls-65{fill:url(#New_Gradient_Swatch_1-58);}.cls-66{fill:url(#New_Gradient_Swatch_1-59);}.cls-67{fill:url(#New_Gradient_Swatch_1-60);}.cls-68{fill:url(#New_Gradient_Swatch_1-61);}.cls-69{fill:url(#New_Gradient_Swatch_1-62);}.cls-70{fill:url(#New_Gradient_Swatch_1-63);}.cls-71{fill:url(#New_Gradient_Swatch_1-64);}.cls-72{fill:url(#New_Gradient_Swatch_1-65);}.cls-73{fill:url(#New_Gradient_Swatch_1-66);}.cls-74{fill:url(#New_Gradient_Swatch_1-67);}.cls-75{fill:url(#New_Gradient_Swatch_1-68);}.cls-76{fill:url(#New_Gradient_Swatch_1-69);}.cls-77{fill:url(#New_Gradient_Swatch_1-70);}.cls-78{fill:url(#New_Gradient_Swatch_1-71);}.cls-79{fill:url(#New_Gradient_Swatch_1-72);}.cls-80{fill:url(#New_Gradient_Swatch_1-73);}.cls-81{fill:url(#New_Gradient_Swatch_1-74);}.cls-82{fill:url(#New_Gradient_Swatch_1-75);}.cls-83{fill:url(#New_Gradient_Swatch_1-76);}.cls-84{fill:url(#New_Gradient_Swatch_1-77);}</style><linearGradient id="New_Gradient_Swatch_1" x1="-64.05" y1="-54.6" x2="361.93" y2="371.38" gradientTransform="rotate(61.44 208.002 217.45)" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00c8d7"/><stop offset="1" stop-color="#0a84ff"/></linearGradient><linearGradient id="New_Gradient_Swatch_1-2" x1="-73.04" y1="-45.61" x2="352.94" y2="380.37" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-3" x1="-76.18" y1="-42.47" x2="349.8" y2="383.51" gradientTransform="rotate(16.84 213.174 246.87)" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-4" x1="-79.8" y1="-38.85" x2="346.18" y2="387.13" gradientTransform="rotate(16.84 207.59 248.56)" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-5" x1="-123.06" y1="4.41" x2="302.92" y2="430.39" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-6" x1="-87.05" y1="-31.6" x2="338.93" y2="394.38" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-7" x1="-64.92" y1="-53.73" x2="361.06" y2="372.25" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-8" x1="-48.15" y1="-70.5" x2="377.83" y2="355.48" gradientTransform="rotate(57.51 227.762 205.41)" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-9" x1="-28.88" y1="-89.77" x2="397.1" y2="336.21" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-10" x1="-74.13" y1="-44.52" x2="351.85" y2="381.46" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-11" x1="-74.49" y1="-44.16" x2="351.49" y2="381.82" gradientTransform="rotate(16.84 220.408 250.736)" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-12" x1="-14.87" y1="-103.78" x2="411.11" y2="322.2" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-13" x1="-54.78" y1="-63.87" x2="371.2" y2="362.11" gradientTransform="rotate(.57 216.144 207.002)" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-14" x1="-11.69" y1="-106.96" x2="414.29" y2="319.02" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-15" x1="-73.81" y1="-44.84" x2="352.17" y2="381.14" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-16" x1="-3.89" y1="-114.76" x2="422.09" y2="311.22" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-17" x1="-46.67" y1="-71.98" x2="379.31" y2="354" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-18" x1="-14.47" y1="-104.18" x2="411.51" y2="321.79" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-19" x1="-87.94" y1="-30.7" x2="338.03" y2="395.27" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-20" x1="-9.51" y1="-109.14" x2="416.47" y2="316.84" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-21" x1="-10.59" y1="-108.06" x2="415.38" y2="317.92" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-22" x1="2.33" y1="-120.98" x2="428.31" y2="304.99" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-23" x1="-59.65" y1="-59" x2="366.33" y2="366.98" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-24" x1="-13.06" y1="-105.59" x2="412.92" y2="320.39" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-25" x1="-66.97" y1="-51.68" x2="359.01" y2="374.3" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-26" x1="-4.9" y1="-113.75" x2="421.07" y2="312.23" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-27" x1="-69.94" y1="-48.71" x2="356.04" y2="377.27" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-28" x1="-75.15" y1="-43.5" x2="350.83" y2="382.48" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-29" x1="-69.46" y1="-49.19" x2="356.52" y2="376.79" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-30" x1="-84.94" y1="-33.71" x2="341.04" y2="392.26" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-31" x1="-78.37" y1="-40.28" x2="347.61" y2="385.7" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-32" x1="-.84" y1="-117.8" x2="425.13" y2="308.17" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-33" x1="-83.43" y1="-35.22" x2="342.55" y2="390.75" gradientTransform="rotate(16.84 202.035 250.21)" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-34" x1="-22.53" y1="-96.12" x2="403.45" y2="329.85" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-35" x1="-55.37" y1="-63.28" x2="370.61" y2="362.7" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-36" x1="-35.08" y1="-83.57" x2="390.9" y2="342.41" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-37" x1="-51.8" y1="-66.85" x2="374.18" y2="359.13" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-38" x1="-11.69" y1="-106.96" x2="414.29" y2="319.02" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-39" x1="-53.02" y1="-65.63" x2="372.96" y2="360.35" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-40" x1="-76.43" y1="-42.22" x2="349.55" y2="383.76" gradientTransform="rotate(16.84 222.092 256.286)" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-41" x1="-117.19" y1="-1.46" x2="308.79" y2="424.52" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-42" x1="-7.31" y1="-111.34" x2="418.67" y2="314.64" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-43" x1="-51.17" y1="-67.48" x2="374.81" y2="358.5" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-44" x1="-26.56" y1="-92.09" x2="399.42" y2="333.89" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-45" x1="-49.27" y1="-69.38" x2="376.71" y2="356.6" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-46" x1="14.46" y1="-133.11" x2="440.44" y2="292.87" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-47" x1="36.76" y1="-155.41" x2="462.74" y2="270.57" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-48" x1="-125.35" y1="6.7" x2="300.63" y2="432.68" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-49" x1="28.34" y1="-146.99" x2="454.32" y2="278.99" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-50" x1="-46.75" y1="-71.9" x2="379.23" y2="354.08" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-51" x1="-74.54" y1="-44.11" x2="351.44" y2="381.87" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-52" x1="-60.86" y1="-57.79" x2="365.12" y2="368.19" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-53" x1="-10.95" y1="-107.7" x2="415.03" y2="318.28" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-54" x1="-28.47" y1="-90.18" x2="397.51" y2="335.8" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-55" x1="-29.05" y1="-89.6" x2="396.93" y2="336.38" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-56" x1="-27.45" y1="-91.2" x2="398.53" y2="334.78" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-57" x1="-39.96" y1="-78.69" x2="386.02" y2="347.29" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-58" x1="-53.18" y1="-65.47" x2="372.8" y2="360.51" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-59" x1="-51.98" y1="-66.67" x2="374" y2="359.31" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-60" x1="-26.03" y1="-92.62" x2="399.95" y2="333.35" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-61" x1="-80.74" y1="-37.91" x2="345.24" y2="388.07" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-62" x1="-34.92" y1="-83.73" x2="391.06" y2="342.25" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-63" x1="-32.97" y1="-85.68" x2="393.01" y2="340.3" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-64" x1="-75.08" y1="-43.57" x2="350.9" y2="382.4" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-65" x1="-80.68" y1="-37.97" x2="345.3" y2="388.01" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-66" x1="-54.01" y1="-64.64" x2="371.97" y2="361.34" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-67" x1="-48.03" y1="-70.62" x2="377.95" y2="355.36" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-68" x1="-53.19" y1="-65.46" x2="372.79" y2="360.52" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-69" x1="-33.8" y1="-84.85" x2="392.18" y2="341.13" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-70" x1="-36.74" y1="-81.91" x2="389.24" y2="344.07" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-71" x1="253.6" y1="284.09" x2="254.38" y2="284.87" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-72" x1="332.52" y1="207.4" x2="333.51" y2="208.39" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-73" x1="163.19" y1="193.92" x2="344.52" y2="375.25" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-74" x1="-.03" y1="-118.62" x2="425.95" y2="307.36" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-75" x1="1.6" y1="-120.25" x2="427.58" y2="305.73" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-76" x1="-111.18" y1="15.02" x2="291.24" y2="417.44" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-77" x1="-124.03" y1="27.87" x2="278.39" y2="430.29" xlink:href="#New_Gradient_Swatch_1"/></defs><title>customize</title><path class="cls-1" d="M0 0h352v303H0z" id="Layer_2" data-name="Layer 2"/><g id="Layer_1" data-name="Layer 1"><path class="cls-1" d="M171.74 194.26a3.48 3.48 0 0 1 2-.65 3.48 3.48 0 0 1 3.17 2 3.52 3.52 0 0 1 .17.46 15.21 15.21 0 0 1 3.64-.54c-3.13-6.09-6.12-12.3-9-18.51zM348.08 161.58c-.46.74-.93 1.47-1.42 2.18a13.36 13.36 0 0 1-7.47 9.48 16.61 16.61 0 0 1-.94 1.73 6.29 6.29 0 0 1 5.17-1.95 10.42 10.42 0 0 0 5.38-1.09 1.69 1.69 0 0 1 2.39 2c-2.08 7.27-6.08 8.91-7.71 9.28a6.32 6.32 0 0 1-1.14.14 19.84 19.84 0 0 1-1.29 2.21 24.11 24.11 0 0 1-3.19 3.8c-.58.56-1.23 1.14-2 1.8l-.68.55-.39.3a6.36 6.36 0 0 1 1.36.92 1.31 1.31 0 0 1 .75-.17 1.35 1.35 0 0 1 1.21 1.47 8 8 0 0 1-2.76 5.13 6.68 6.68 0 0 1-4.2 1.35 10.14 10.14 0 0 1-1.59-.13 7 7 0 0 1-4.15-2.1c-4.51 2.58-10.54 5.64-16.69 8.62a30.3 30.3 0 0 1 5.14 1.6 34.37 34.37 0 0 1 7.77 4.42 12.24 12.24 0 0 0 6.18-6.9 5.73 5.73 0 0 1 10.44-1.58 28.4 28.4 0 0 1 3.47 11.7 18.48 18.48 0 0 1 2.51 1.38q3-2.61 6-5.39a.67.67 0 0 1 .91 1q-2.8 2.57-5.59 5a5.67 5.67 0 0 1 6.32.43V159a14.35 14.35 0 0 1-3.79 2.58zM328 204.94l-7.22 6.68a.67.67 0 0 1-.92-1l7.22-6.68a.67.67 0 0 1 .92 1zM174.5 211.79a3.45 3.45 0 0 1 1.57-1.47h.09l.25-.11-2.26-.85a4.24 4.24 0 0 1 .28 1.56 6.68 6.68 0 0 0 .07.87zM180.25 204.27a3.45 3.45 0 0 1 .35.27 3.44 3.44 0 0 1 .15-.31zM260.65 270.13c-1.19 0-2.4 0-3.6-.06a106.34 106.34 0 0 1 2.72 10.68c3.88-.13 7.89-.21 12-.23-.1-2.05-.13-4.65-.1-8l-8.44-2.44c-.85.04-1.71.05-2.58.05zM293.67 262.58h.16-.15zM213.7 241.89a2.7 2.7 0 0 1 .78-.12h.2a2.7 2.7 0 0 1 .87-.45 6.57 6.57 0 0 1 8.2 4.39 2.7 2.7 0 0 0 .56 1.85l1.12 3.71a2.7 2.7 0 0 0 .56 1.85l.42 1.39 1 .8c-2.1-4.69-2.73-10.38-2-16.53a22.1 22.1 0 0 1-4.23.41 21.37 21.37 0 0 1-14.21-5.31q3.18 4.25 6.45 8.06zM245.66 153.24a6.62 6.62 0 0 0-4.62 1.88 6.62 6.62 0 0 1 4.63-1.88zM242.7 157.28a4 4 0 0 1 3-1.34 4 4 0 0 0-3 1.34zM183.36 214.86l-.28.14-4 1.83a2.7 2.7 0 0 1-.59.19 6.69 6.69 0 0 0 8.44-9.49l-2 5.28a3.48 3.48 0 0 1-1.57 2.05zM333.01 207.89v.02-.02zM218.69 260.41a2.68 2.68 0 0 1-.3-.48l-2.46 3.23 3.81 1.34-.94-3.11a2.7 2.7 0 0 1-.11-.98z"/><path class="cls-1" d="M330.42 181.67l.24.13c.28-.19.55-.38.81-.54a24.13 24.13 0 0 1 4.44-2.22c.37-.14.73-.26 1.07-.37a4.84 4.84 0 0 1 .45-2.5 16.81 16.81 0 0 1-7.01 5.5zM206.33 253.69h-.2a2.7 2.7 0 0 1-.87.45l-3 .9.28.93a7.6 7.6 0 0 1 3 3.5l1.2.42 4.46-6v-.06a6.54 6.54 0 0 1 4.48-2.44l-.12-.39-3 .9a2.7 2.7 0 0 1-.78.12h-.2a2.7 2.7 0 0 1-.87.45l-3.71 1.12a2.7 2.7 0 0 1-.67.1z"/><path class="cls-2" d="M278.69 290.6a6.53 6.53 0 0 1-4.08-1.42c-1.62-1.28-2.55-2.46-2.85-8.67-4.11 0-8.13.1-12 .23.7 4 .19 5.37-.86 6.82a6.45 6.45 0 0 1-5.27 2.68c-3.53 0-6.38-2.48-11.61-8.44-18.32 1.62-30.6 4.6-30.6 8 0 5.16 28 9.34 62.52 9.35s62.53-4.16 62.53-9.32c0-4.38-20.25-8.07-47.55-9.08-2.92 6.62-6.31 9.85-10.23 9.85z"/><path class="cls-2" d="M278.15 285.12a.85.85 0 0 1-.27-.14.85.85 0 0 0 .27.14zM205.13 109.11a6.2 6.2 0 0 0 .25-.77.2.2 0 0 1 .38 0 6.2 6.2 0 0 0 .25.77h17.55a1.35 1.35 0 1 0 0-2.7h-51.82v2.7zM194.78 102.21H211a.67.67 0 0 0 0-1.35h-16.22a.67.67 0 1 0 0 1.35zM190.45 114.51a.67.67 0 0 0-.67-.67h-16.2a.67.67 0 1 0 0 1.35h16.19a.67.67 0 0 0 .68-.68z"/><path class="cls-3" d="M98.12 145.72a10.65 10.65 0 1 0-10.65 10.65 10.66 10.66 0 0 0 10.65-10.65zM163.58 91.85h-15.76c.91 2.64 2.17 6.29 3.71 10.67a.68.68 0 0 1-.41.86.69.69 0 0 1-.22 0 .68.68 0 0 1-.64-.45c-1.63-4.63-3-8.45-3.87-11.12h-4.14c1.56 5.45 4.66 15.35 9.1 27.88l4.08-2.58a.63.63 0 0 1-.15-.19l-1.39-3.81a.67.67 0 0 1 1.27-.46l1.37 3.76.27-.17a7.32 7.32 0 0 1 6.78-7.33zM161.91 134.69a.67.67 0 1 1 1.26-.48l.41 1.07v-11.7a7.39 7.39 0 0 1-1.12-.15h-.07a7.35 7.35 0 0 1-1.52-.57l-6.87 4.3c2.08 5.66 4.39 11.72 6.91 18.05a5.79 5.79 0 0 1 2.22-1.3l.43-.13V139q-.81-2.11-1.65-4.31z"/><path class="cls-3" d="M151.42 128.11a3.86 3.86 0 0 1-2.37-6.91c-4.73-13.26-8-23.78-9.61-29.35H10.86v119.58a5.89 5.89 0 0 0 .07 1.19 5.85 5.85 0 0 0 1.19.07h150.2a5.85 5.85 0 0 0 1.19-.07 5.88 5.88 0 0 0 .07-1.19V162a15.32 15.32 0 0 1-2.41-4.69l-1.87-6a5.8 5.8 0 0 1-.06-3.19c-2.81-7-5.38-13.7-7.68-20zm-35.95 23h-7.35a21.19 21.19 0 0 1-2.52 5.68l5.22 5.22.13.14a5.35 5.35 0 0 1-4.28 8.56 5.31 5.31 0 0 1-3.21-1.07l-.14-.13-5.26-5.26a21.2 21.2 0 0 1-5.64 2.2v7.3a5.35 5.35 0 0 1-10.7 0V166a21.2 21.2 0 0 1-5.61-2.18L71.3 169a5.35 5.35 0 1 1-7.5-7.5l5.2-4.82a21.2 21.2 0 0 1-2.18-5.61h-7.3a5.35 5.35 0 1 1 0-10.7h7.3a21.2 21.2 0 0 1 2.18-5.61l-5.24-4.89a5.59 5.59 0 1 1 7.9-7.87l4.86 5.2a21.2 21.2 0 0 1 5.6-2.2v-7.3a5.35 5.35 0 0 1 10.7 0v7.3a21.2 21.2 0 0 1 5.64 2.2l5.26-5.26.14-.13a5.35 5.35 0 0 1 7.49 7.49l-.13.14-5.22 5.29a21.2 21.2 0 0 1 2.2 5.64h7.3a5.35 5.35 0 0 1 0 10.7zm37.65-11a.68.68 0 0 1 .86.41l2 5.74a.68.68 0 0 1-.41.86.69.69 0 0 1-.22 0 .68.68 0 0 1-.64-.45l-2-5.74a.68.68 0 0 1 .42-.86zM164.93 138.78l1.59 4.08 2.51-.78v-20.41a7.27 7.27 0 0 1-4.11 1.86z"/><path class="cls-3" d="M166.16 164.64a15.36 15.36 0 0 1-1.23-1.13v47.91c0 2.29-.32 2.62-2.61 2.62H12.12c-2.29 0-2.61-.32-2.61-2.62V90.5h129.56c-.24-.91-.43-1.65-.53-2.15a1.35 1.35 0 1 1 2.64-.56c.11.54.35 1.47.69 2.71h4.06c-.62-1.83-1-2.87-1-2.89a.67.67 0 1 1 1.28-.43s.4 1.21 1.12 3.32h17.57V109c.25 0 .49.06.73.11h.07a7.4 7.4 0 0 1 2.89 1.41 2.69 2.69 0 0 1 .42.42V71a5.12 5.12 0 0 0-5.12-5.12H10.52A5.12 5.12 0 0 0 5.4 71v142.9a4.6 4.6 0 0 0 4.75 4.45h154.14a4.89 4.89 0 0 0 3.1-1.1 15.14 15.14 0 0 1-1.51-6.41 4.29 4.29 0 0 1 2.68-3.94 3.49 3.49 0 0 1-.82-3.71l1.3-3.46v-28.58c-.98-2.15-1.94-4.35-2.88-6.51zm-22.51-90a.59.59 0 0 1 .76.35l2.33 6.41a.58.58 0 0 1-.41.82h-.17a.58.58 0 0 1-.52-.41l-2.33-6.41a.59.59 0 0 1 .34-.74zm-2.1.52a.58.58 0 0 1 1.17 0v6.41a.58.58 0 0 1-1.17 0zm-1.75.58a.58.58 0 0 1 1.17 0v5.83a.58.58 0 0 1-1.17 0zm-1.75-1.17a.58.58 0 1 1 1.17 0v7a.58.58 0 1 1-1.17 0zm-94.13 3.34a3.74 3.74 0 0 1 3.74-3.74h77.09a3.74 3.74 0 0 1 3.74 3.74v.33a3.74 3.74 0 0 1-3.74 3.76H47.66a3.74 3.74 0 0 1-3.74-3.74zm-15-3.29a3.46 3.46 0 1 1-3.46 3.46 3.46 3.46 0 0 1 3.47-3.46zm-11.15 0a3.46 3.46 0 1 1-3.46 3.46 3.46 3.46 0 0 1 3.47-3.46z"/><path class="cls-3" d="M164.93 143.35l.3-.09-.3-.77z"/><path class="cls-2" d="M169 171.15v28.58l1.45-3.86a3.48 3.48 0 0 1 1.25-1.61v-17.2c-.87-1.97-1.78-3.94-2.7-5.91zM170 166.92c.56 1.27 1.14 2.55 1.71 3.82v-3.26a15.28 15.28 0 0 1-1.71-.56z"/><path class="cls-2" d="M167.39 217.24a4.89 4.89 0 0 1-3.1 1.1H10.15a4.6 4.6 0 0 1-4.75-4.44V71a5.12 5.12 0 0 1 5.12-5.12h153.4A5.12 5.12 0 0 1 169 71v39.91a2.7 2.7 0 0 1 .6 1.72 2.7 2.7 0 0 1 1.58 1.87 7.43 7.43 0 0 1-2.22 7.15v20.41l2.7-.84V71a7.83 7.83 0 0 0-7.82-7.82H10.52A7.83 7.83 0 0 0 2.7 71v142.9a7.31 7.31 0 0 0 7.45 7.1h154.14a7.6 7.6 0 0 0 4.49-1.46 15.28 15.28 0 0 1-1.39-2.3z"/><path class="cls-2" d="M163.58 91.85V109c.19 0 .38-.05.57-.05a7.34 7.34 0 0 1 .78 0V90.5h-17.57l.46 1.35zM164.93 138.78v-15.25a7.39 7.39 0 0 1-.84.07h-.51v11.71zM163.51 212.62a5.85 5.85 0 0 1-1.19.07H12.12a5.85 5.85 0 0 1-1.19-.07 5.89 5.89 0 0 1-.07-1.19V91.85h128.58q-.21-.73-.37-1.35H9.51v120.93c0 2.29.32 2.62 2.61 2.62h150.2c2.29 0 2.61-.32 2.61-2.62v-47.91a15.28 15.28 0 0 1-1.35-1.56v49.47a5.88 5.88 0 0 1-.07 1.19zM163.58 139v4.74l1.35-.42v-.87zM146.39 91.85l-.46-1.35h-4.06l.38 1.35z"/><circle class="cls-2" cx="17.78" cy="78.08" r="3.46"/><circle class="cls-2" cx="28.93" cy="78.08" r="3.46"/><rect class="cls-2" x="43.92" y="74.17" width="84.57" height="7.82" rx="3.74" ry="3.74"/><path class="cls-2" d="M119.48 145.72a4 4 0 0 0-4-4h-8.4a20 20 0 0 0-2.8-7.2l6-6a4 4 0 0 0-5.6-5.6l-6 6a20 20 0 0 0-7.2-2.8v-8.4a4 4 0 0 0-8 0v8.4a20 20 0 0 0-7.2 2.8l-5.6-6a4.24 4.24 0 0 0-6 6l6 5.6a20 20 0 0 0-2.8 7.2h-8.4a4 4 0 1 0 0 8h8.4a20 20 0 0 0 2.8 7.2l-6 5.6a4 4 0 1 0 5.6 5.6l5.6-6a20 20 0 0 0 7.2 2.8v8.8a4 4 0 1 0 8 0v-8.4a20 20 0 0 0 7.2-2.8l6 6a4 4 0 0 0 5.6-5.6l-6-6a20 20 0 0 0 3.2-7.2h8.4a4 4 0 0 0 4-4zm-32 12a12 12 0 1 1 12-12 12 12 0 0 1-12.01 12z"/><path class="cls-3" d="M115.48 140.37h-7.3a21.2 21.2 0 0 0-2.2-5.64l5.26-5.26.13-.14a5.35 5.35 0 0 0-7.49-7.49l-.14.13-5.26 5.26a21.2 21.2 0 0 0-5.64-2.2v-7.3a5.35 5.35 0 0 0-10.7 0V125a21.2 21.2 0 0 0-5.61 2.18L71.66 122a5.59 5.59 0 1 0-7.94 7.88l5.28 4.88a21.2 21.2 0 0 0-2.18 5.61h-7.3a5.35 5.35 0 1 0 0 10.7h7.3a21.2 21.2 0 0 0 2.18 5.61l-5.15 4.81a5.35 5.35 0 1 0 7.5 7.5l4.81-5.15a21.2 21.2 0 0 0 5.56 2.16v7.7a5.35 5.35 0 0 0 10.7 0v-7.3a21.2 21.2 0 0 0 5.64-2.2l5.26 5.26.14.13a5.31 5.31 0 0 0 3.21 1.07 5.35 5.35 0 0 0 4.28-8.56l-.13-.14-5.22-5.22a21.19 21.19 0 0 0 2.52-5.68h7.35a5.35 5.35 0 0 0 0-10.7zm-11.6 16.55l6 6a4 4 0 0 1-5.6 5.6l-6-6a20 20 0 0 1-7.2 2.8v8.4a4 4 0 1 1-8 0v-8.8a20 20 0 0 1-7.2-2.8l-5.6 6a4 4 0 1 1-5.6-5.6l6-5.6a20 20 0 0 1-2.8-7.2h-8.4a4 4 0 1 1 0-8h8.4a20 20 0 0 1 2.8-7.2l-6-5.6a4.24 4.24 0 1 1 6-6l5.6 6a20 20 0 0 1 7.2-2.8v-8.4a4 4 0 0 1 8 0v8.4a20 20 0 0 1 7.2 2.8l6-6a4 4 0 0 1 5.6 5.6l-6 6a20 20 0 0 1 2.8 7.2h8.4a4 4 0 0 1 0 8h-8.4a20 20 0 0 1-3.21 7.2z"/><path class="cls-3" d="M87.47 133.72a12 12 0 1 0 12 12 12 12 0 0 0-12-12zm-10.65 12a10.65 10.65 0 1 1 10.65 10.65 10.66 10.66 0 0 1-10.65-10.65z"/><path class="cls-4" d="M117.93 23.31c-10.14-1.94-12.16 8.17-12.16 8.17S99 14 82 16.28c-7.82 1.06-10.93 5.06-11.88 9.41a.64.64 0 0 1 .14 0 .68.68 0 0 1 .71.63c0 .44.07.88.12 1.3a.68.68 0 0 1-.59.75h-.1a.67.67 0 0 1-.6-.39 22.77 22.77 0 0 0 .61 6.47.65.65 0 0 1 .17 0h.79c-.13-.34-.28-.76-.43-1.25a.67.67 0 0 1 1.28-.41c.41 1.26.76 2.05.76 2.06a.68.68 0 0 1-.62 1h-1.62A26.4 26.4 0 0 0 71.86 39h62.25c-2.47-4.55-8.56-14.24-16.18-15.69z"/><path class="cls-2" d="M141.94 36.56h1.35a.67.67 0 1 0 0-1.35h-1.35a.67.67 0 1 0 0 1.35zM101.54 21a.67.67 0 0 0 1.05-.85 27.34 27.34 0 0 0-2.84-3 .67.67 0 1 0-.91 1 26 26 0 0 1 2.7 2.85zM113.05 20.25a10.36 10.36 0 0 1 5.24-.21c2.84.54 5.76 2.23 8.67 5a.67.67 0 1 0 .93-1c-3.11-3-6.25-4.78-9.35-5.37a11.69 11.69 0 0 0-5.92.26.67.67 0 0 0 .43 1.28zM135.18 36.18a.69.69 0 0 0 .61.38h.75a.67.67 0 1 0 0-1.35h-.34c-.27-.5-.77-1.4-1.49-2.55a.67.67 0 0 0-1.15.71c.92 1.47 1.44 2.52 1.62 2.81zM105.08 26.56a.67.67 0 1 0 1.21-.59c-.17-.35-.38-.77-.64-1.23a.67.67 0 1 0-1.18.65c.24.43.44.83.61 1.17zM74.42 16.1a.67.67 0 0 0 .42-.15A15.57 15.57 0 0 1 82.57 13a20.29 20.29 0 0 1 7.16.25.67.67 0 0 0 .27-1.31 21.72 21.72 0 0 0-7.64-.27A16.88 16.88 0 0 0 74 14.89a.67.67 0 0 0 .42 1.2zM155.43 36.56h5.41a.67.67 0 1 0 0-1.35h-5.41a.67.67 0 1 0 0 1.35zM43.59 35.72h16.2a.67.67 0 0 0 0-1.35h-16.2a.67.67 0 1 0 0 1.35zM70.4 28.34h.08a.68.68 0 0 0 .59-.75c-.05-.43-.09-.86-.12-1.3a.68.68 0 0 0-.71-.63.64.64 0 0 0-.14 0 .66.66 0 0 0-.5.68c0 .47.07.93.12 1.39a.7.7 0 0 0 .67.59zM72.93 35.42a.68.68 0 0 0 .05-.64s-.35-.8-.76-2.06a.67.67 0 0 0-1.28.41c.16.49.31.91.43 1.25h-.79a.65.65 0 0 0-.17 0 .67.67 0 0 0-.5.64.67.67 0 0 0 .67.67h1.78a.68.68 0 0 0 .57-.27z"/><path class="cls-4" d="M43.09 41.65h118.57a1.35 1.35 0 0 0 0-2.7h-27.55L71.86 39H43.09a1.35 1.35 0 0 0 0 2.7zM234.12 74.18zM275.73 65.46C270.09 64.39 269 70 269 70s-3.74-9.74-13.22-8.45c-7 .95-7.22 6.08-6.56 9.5h.9a.67.67 0 0 1 1.08.24l.07.16a.67.67 0 0 1-.62.95h-1.15a14.42 14.42 0 0 0 .62 1.78h34.62c-1.37-2.5-4.74-7.91-9.01-8.72z"/><path class="cls-2" d="M259.9 59.83a10 10 0 0 1 1.22.31.67.67 0 0 0 .42-1.28 11.4 11.4 0 0 0-1.39-.35.68.68 0 0 0-.79.54.67.67 0 0 0 .54.78zM269.36 67.83h.19a.68.68 0 0 0 .65-.48 4.9 4.9 0 0 1 4.64-3.83 6.75 6.75 0 0 1 1.25.12 11.35 11.35 0 0 1 5.91 3.71.67.67 0 0 0 1-.93 12.63 12.63 0 0 0-6.58-4.09 8.1 8.1 0 0 0-1.5-.15c-4.18 0-5.6 3.67-5.94 4.8a.67.67 0 0 0 .38.85zM251.18 62a.67.67 0 0 0 .49-.21 6.76 6.76 0 0 1 3.19-1.75.67.67 0 0 0-.35-1.3 8.07 8.07 0 0 0-3.81 2.11.67.67 0 0 0 .49 1.14zM290.9 72.2h4a.67.67 0 1 0 0-1.35h-4a.67.67 0 0 0 0 1.35zM251.18 72.09a.68.68 0 0 0 .05-.64l-.07-.16a.67.67 0 0 0-1.08-.24h-15.47a.67.67 0 1 0 0 1.35h16a.68.68 0 0 0 .57-.31z"/><path class="cls-4" d="M234.41 76.87h65.94a1.35 1.35 0 0 0 0-2.7h-66a1.34 1.34 0 0 0 .06 2.69z"/><path class="cls-2" d="M132.42 290.65c-4.87 0-7.08-3-7.5-5.6l-.1-.61c-8.44.57-14.66 2.5-14.66 4.81 0 2.76 8.86 5 19.79 5s19.8-2.23 19.8-5c0-1.66-3.22-3.12-8.16-4a6.59 6.59 0 0 1-1.26 2.29c-2.54 2.96-7.04 3.11-7.91 3.11z"/><path class="cls-4" d="M277.37 282.87a6.29 6.29 0 0 0 .4 2 6.3 6.3 0 0 1-.4-2zM278.45 285.15a.89.89 0 0 1-.21 0h.16zM277.12 272.44v0zM243.88 275.81l1 1.11-1-1.11z"/><circle class="cls-4" cx="253.99" cy="284.48" transform="rotate(-56.31 253.988 284.48)"/><path class="cls-4" d="M290.23 263.56q1.75-.46 3.45-1h.15a104.67 104.67 0 0 0 21.12-9.16 79.07 79.07 0 0 1-24.25 6.78c-.15 1.17-.31 2.29-.47 3.38zM295.33 208.2l.29-.7zM285.8 95.75a8.77 8.77 0 0 0-1-.08 8.72 8.72 0 0 0-1.2.1 6.83 6.83 0 0 1 2.21 0zM283.27 95.8a8.77 8.77 0 0 0-6.63 5.44 8.77 8.77 0 0 1 6.63-5.44zM232 252.39v-.07.06zM274.8 104.94q.62-.64 1.27-1.26-.65.61-1.27 1.26a8.77 8.77 0 0 0-7.11 8.61 8.77 8.77 0 0 1 7.11-8.61zM253.35 284.81h-.14zM321.61 219.48c-.48.18-1 .36-1.48.51.5-.15 1-.31 1.45-.48zM303.51 90.26a8.67 8.67 0 0 1 1 .06 8.68 8.68 0 0 0-1-.06zM289.72 95.11a40.16 40.16 0 0 1 4.82-1.48 40.15 40.15 0 0 0-4.82 1.48zM231.41 236.71v.22-.22zM308.06 179.29h-1.18zM347.07 122.72v-.01.01zM333.01 207.89v.02-.02zM332.49 209.35a18.34 18.34 0 0 1-4.64 6.42 18.25 18.25 0 0 0 4.64-6.42zM315.78 94.3a8.81 8.81 0 0 1 2.18-1 8.81 8.81 0 0 0-2.18 1zM320.4 93c-.26 0-.51 0-.76.05.25 0 .5-.05.76-.05zM328.93 99.79zM267.69 113.64a9 9 0 0 0 .1 1.2c-.19.38-.37.78-.55 1.17.18-.39.35-.79.55-1.17a9 9 0 0 1-.1-1.2zM247.86 127.2a1.34 1.34 0 0 0 .28.3 3.65 3.65 0 0 0 .49.32 3.66 3.66 0 0 1-.49-.32 1.34 1.34 0 0 1-.28-.3zM247.56 120.26a2.91 2.91 0 0 1-.26-.22 1.21 1.21 0 0 1-.23-.42 1.21 1.21 0 0 0 .23.42 2.93 2.93 0 0 0 .26.22zM315.9 180.68h.38-.38zM337.86 225.79h-.05v.05zM335 228.72c-.26 0-.51-.05-.77-.1zM287.83 274.75a52.33 52.33 0 0 1-2.36 5.92c-1.8 3.75-4.22 7.19-7.06 7.19a3.53 3.53 0 0 1-2.21-.77c-.77-.61-1.44-1.15-1.69-6.59-.09-1.85-.12-4.27-.1-7.46a6.78 6.78 0 0 1-1.88-.27l-.84-.24c0 3.33 0 5.93.1 8 .3 6.21 1.22 7.39 2.85 8.67a6.53 6.53 0 0 0 4.08 1.42c3.91 0 7.28-3.23 10.23-9.82.71-1.59 1.4-3.37 2.06-5.35a65.84 65.84 0 0 0 2.24-9.92q-1.71.49-3.46.93a58.53 58.53 0 0 1-1.96 8.29zM323.29 251.38c-2.85 1.89-6 3.81-9.44 5.65a59.31 59.31 0 0 0 5.63-2.74h.26a43.85 43.85 0 0 0 12.32-1.65 18.5 18.5 0 0 1-5.75-1.6q-1.47.22-3.02.34zM348.36 217.56a5.71 5.71 0 0 0-2.84.76l-.22.19a18.44 18.44 0 0 1 2.08 1.82 4.88 4.88 0 0 1 4.46-1.33v-.26a5.65 5.65 0 0 0-3.47-1.19zM350.72 238.51c.4-.67.76-1.34 1.08-2a5 5 0 0 1-1.63 1 5 5 0 0 1 .55 1z"/><path class="cls-4" d="M338.19 204.63a5.73 5.73 0 0 0-10.44 1.58 12.24 12.24 0 0 1-6.18 6.9 34.37 34.37 0 0 0-7.77-4.42 30.3 30.3 0 0 0-5.14-1.6c6.15-3 12.18-6 16.69-8.62l-.23-.28-.25.13a34.86 34.86 0 0 1-3.23 1.4l-1 .33-.37.11a3 3 0 0 1-2.85-.72c-7.71 4-16.62 8.19-19.52 9.54l-.29.72q1.53-.11 3-.11a30.16 30.16 0 0 1 20.16 7.32 15.55 15.55 0 0 0 9.59-9.68 2.7 2.7 0 0 1 4.92-.74 24.88 24.88 0 0 1 2.83 8.66 18.49 18.49 0 0 1 3.52 1.18 28.4 28.4 0 0 0-3.44-11.7zM323.65 177.53h.67-.67zM300.64 212.29zM346.83 108.63A49.45 49.45 0 0 0 334 95.8a14.46 14.46 0 0 0-18.49-7.88c-1-.24-1.91-.45-2.87-.63a14.46 14.46 0 0 0-18 .23 46 46 0 0 0-7.49 2.27 14.49 14.49 0 0 0-15.88 10.05 14.5 14.5 0 0 0-9 13.41v.2q-.4.86-.75 1.73a10 10 0 0 0-1.44 1.42c-.11-2.63-1.34-5.06-2.62-7.6l-.79-1.57a6.26 6.26 0 0 0-5.62-3.58c-4.62 0-6.7 4.63-7.49 6.38-1.15 2.57-2.78 7.18-1.62 10.85-.47 4.51.25 7.82 2.15 9.88q.19 1.17.45 2.23c-10.13 4-31.95 13.53-39.6 23.47-2.25 2.93-2.68 6.92-1.25 11.87 3.09 10.75 12.82 22.1 18.81 24.32 7.45 2.76 17.31 4.61 27.3 5.18-5 1.94-8.93 3.56-12.15 4.93a22.82 22.82 0 0 1 2 2.62c3.09-1.31 6.88-2.84 11.55-4.67a81.36 81.36 0 0 1 7.26-5.47h-2.37c-11.94 0-23.89-1.89-32.78-5.19C217 188 208.57 175.9 206.29 168c-1.14-4-.89-7.07.74-9.19 6.82-8.87 27.59-18.43 40.93-23.53a23.68 23.68 0 0 1-1.35-5.54l-.13-.1c-1.75-1.35-2.34-4.25-1.76-8.65-1.32-2.75.41-7.27 1.29-9.22 1.43-3.18 2.88-4.59 4.73-4.59a3.21 3.21 0 0 1 2.9 1.89l.8 1.6c1.43 2.84 2.62 5.19 2.22 7.61a10.35 10.35 0 0 1 1.75 4.13 21.7 21.7 0 0 1 2.24 2.12 6.86 6.86 0 0 1-.12-1.28 6.94 6.94 0 0 1 3.16-5.83c.4-1 .84-2 1.32-3.05v-.81a11.48 11.48 0 0 1 8.43-11.05l.1-.1a11.47 11.47 0 0 1 13.67-9.18 42.93 42.93 0 0 1 8.53-2.6 11.43 11.43 0 0 1 15.35-.2 43.35 43.35 0 0 1 4.4 1 11.44 11.44 0 0 1 15.78 6.67 46.21 46.21 0 0 1 13.14 13.07A11.41 11.41 0 0 1 350 121a11 11 0 0 1-.11 1.56 45.63 45.63 0 0 1 1.83 8.51l.16.18v-16.78a14.51 14.51 0 0 0-5.05-5.84zM345.7 159.47c-.68 1.16-1.42 2.3-2.19 3.38a10.45 10.45 0 0 1-6.92 8.34 13.77 13.77 0 0 1-14.78 8.91 6.94 6.94 0 0 1-10.36 1.65 46.07 46.07 0 0 1-4.89.29c-.54 2.35-1.21 4.68-2 7 9.86-2.32 20.43-4.61 21.77-4.7h.97l.48-.39.76-.6.71-.54c.51-.39 1-.72 1.41-1l-.24-.13a16.81 16.81 0 0 0 7-5.5v-.05a5.12 5.12 0 0 1 .79-1.15 16.61 16.61 0 0 0 .94-1.73 13.36 13.36 0 0 0 7.47-9.48c.49-.71 1-1.44 1.42-2.18a14.35 14.35 0 0 0 3.76-2.58v-5.05a11.5 11.5 0 0 1-6.1 5.51z"/><path class="cls-4" d="M349.09 132.33a8.83 8.83 0 0 1 1.69 1.81 8.83 8.83 0 0 0-1.69-1.81zM349.73 145.42a8.76 8.76 0 0 1 .6 2.27q.05.41.06.82 0-.41-.06-.82a8.76 8.76 0 0 0-.6-2.27zM320.18 177h.11a11.22 11.22 0 0 0 1.25.3 11.19 11.19 0 0 1-1.25-.3zM318 180.14a4.19 4.19 0 0 1-1.28.48 4.18 4.18 0 0 0 1.28-.48zM230.64 243.54v0zM266.51 117.67c-.22.54-.44 1.08-.64 1.63a4.27 4.27 0 0 0-1.06.64 4.27 4.27 0 0 1 1.06-.64c.2-.55.42-1.09.64-1.63zM227.51 217.4a1.23 1.23 0 0 1-.16-.23 1.24 1.24 0 0 0 .16.23zM263.69 129c.05-.54.12-1.08.2-1.62-.08.62-.15 1.12-.2 1.62zM253.64 290.24a6.45 6.45 0 0 0 5.27-2.68c1.05-1.45 1.56-2.8.86-6.82a106.34 106.34 0 0 0-2.77-10.67c1.2 0 2.41.06 3.6.06h2.58l-4.55-1.32q-2.85-.28-5.77-.75c1.92 6.35 3 10.31 3.47 12.85.77 3.83.32 4.46-.21 5.19a3.46 3.46 0 0 1-2.82 1.44c-2 0-4.09-1.58-8-6-1-1.13-2.16-2.44-3.47-4a52 52 0 0 1-8.66-15.43c-1.18-.62-2.36-1.3-3.54-2.05 1.95 5.87 5.16 13.3 10.18 19.17.79.92 1.52 1.76 2.21 2.56 5.23 5.97 8.09 8.45 11.62 8.45zM227.46 255.32q2.19 1.64 4.4 3c-.11-.35-.23-.71-.33-1-2.53-3.69-3.7-8.48-3.61-13.82-.47-.33-.94-.63-1.4-1a.67.67 0 1 1 .79-1.09l.68.47c.08-1.26.21-2.54.42-3.84a21.77 21.77 0 0 1-2.91.79c-.77 6.11-.14 11.8 1.96 16.49zM254.65 201.55q-1 .77-1.9 1.57.93-.8 1.9-1.57z"/><path class="cls-5" d="M289.82 253.44c-.1 1.25-.2 2.43-.3 3.49a69.38 69.38 0 0 0 20.73-5.46 45.81 45.81 0 0 0 5.75-3.1 5 5 0 0 1-2.32-1.37 50.12 50.12 0 0 1-17.17 5.85 64.25 64.25 0 0 1-6.69.59zM327.88 215.76a18.49 18.49 0 0 1 6.15-1.09c.44 0 .87 0 1.3.07a24.07 24.07 0 0 0-1.86-6c-.18-.37-.32-.63-.39-.76v-.08s0 .14-.1.35l-.15.42c-.06.17-.14.36-.23.58a18.25 18.25 0 0 1-4.72 6.51zM327.34 231.11l1.09-.79a.67.67 0 0 1 .79 1.09l-.63.45 1.13.3a5 5 0 0 1 2.39 1.45 33.59 33.59 0 0 0 2.13-5 29.79 29.79 0 0 0 .94-3.58 8.74 8.74 0 0 0-8.65 4.29 5 5 0 0 1-1.36 1.64l1.91.5a.66.66 0 0 1 .26-.35zM232.29 200.09a20.48 20.48 0 1 0-11 37.76 20.59 20.59 0 0 0 7.43-1.39 48.39 48.39 0 0 1 1.48-5.61 3.94 3.94 0 0 1-1.87-.47 3.51 3.51 0 1 1 3.35-6.15 4 4 0 0 1 .87.66c.73-1.58 1.52-3.15 2.42-4.72a48.58 48.58 0 0 1-5.65.61 4.16 4.16 0 0 1-.75-.06 4.52 4.52 0 0 1-3.56-2.24c-.55-1-.9-2.75.56-5.17.55-.91 1.39-2.29 12.79-7.18a20.36 20.36 0 0 0-6.07-6.04zm-17.12 2.52a3.51 3.51 0 1 1-3.73 3.54 3.64 3.64 0 0 1 3.73-3.54zm-10.48 13a3.77 3.77 0 1 1 1.63 4.87 3.64 3.64 0 0 1-1.63-4.84zM220.94 231a3.62 3.62 0 0 1-4 1.5c.69.68 1.39 1.37 2.09 2a.68.68 0 0 1-.92 1 117.14 117.14 0 0 1-11.09-11.92.67.67 0 1 1 1-.85c1.48 1.82 3 3.56 4.52 5.23a2.8 2.8 0 0 1 .33-1.32 3.17 3.17 0 0 1 2.44-1.54l-1.07-1.29a.68.68 0 0 1 1-.86l1.9 2.27a5.74 5.74 0 0 1 1.37.52c2.32 1.26 3.36 3.59 2.43 5.26zm9.88-23.66a3.65 3.65 0 1 1-1.31-4.7 3.46 3.46 0 0 1 1.31 4.73z"/><path class="cls-5" d="M250.16 205.42a166.88 166.88 0 0 0-21.65 10 .66.66 0 0 1-.9-.25 3.74 3.74 0 0 0-.37 1 1.72 1.72 0 0 0 0 .7 1.26 1.26 0 0 0 .1.27 1.23 1.23 0 0 0 .16.23 2.25 2.25 0 0 0 1.5.63.59.59 0 0 0 .18 0h.82l.77-.07 1.08-.12h.2l1.08-.14h.26l1.34-.18h.09l3.73-.55a63.8 63.8 0 0 1 6.23-7.7.67.67 0 0 1 1 0 .67.67 0 0 1 .19.45q1.97-2.19 4.19-4.27zM229.82 213.19l-.27.17-.19.12c1.27-.69 3.29-1.75 5.82-3-2.18 1.01-4.05 1.93-5.36 2.71z"/><path class="cls-3" d="M253.95 139.87v.05-.05zM260.65 258.73a3.7 3.7 0 0 1-2.06-1.51l-.44 1.54 2.29.66c.42-.12.84-.25 1.26-.39zM230.81 244.59a.65.65 0 0 1-.16.15v1.16s0 .5.05.75c0 .51.12 1 .19 1.51 0 .22.06.44.1.65.09.51.21 1 .33 1.49 0 .18.09.37.14.55.15.51.32 1 .5 1.48v.07c1 2 3.54 5.42 9.88 6.59a.67.67 0 0 1-.12 1.34h-.12a16.88 16.88 0 0 1-7.32-3.06c.12.37.22.73.34 1.11.2.61.42 1.23.65 1.86a35.88 35.88 0 0 0 5 2c2.94.93 5.83 1.68 8.68 2.29l-.17-.54-.16-.5a6.73 6.73 0 0 1-.55-1.76l-.31-1h.24a6.75 6.75 0 0 1 .24-2l1.43-4.94c-.91-.24-1.81-.48-2.71-.76a.67.67 0 0 1 .41-1.29c.88.28 1.78.51 2.67.76l5-17.28a6.77 6.77 0 0 1 8.39-4.63l18.5 5.35c2.41-7.55 4.69-16.27 11.52-27.21a10 10 0 0 1 1.72-2.88c.67-.48 15.11-7.19 21.76-10.27l.06-.1c.13-.21.31-.5.55-.86a34.87 34.87 0 0 1 2.12-2.82c1-1.2 2.13-2.44 3.28-3.57l.72-.68c-4.72 1-14.52 3.13-23.48 5.31.44-1.06.84-2.1 1.22-3.14l.27-.74c.62-1.75 1.13-3.46 1.59-5.15a30.54 30.54 0 0 0 .16-11.36.67.67 0 0 1 .4-.77 20.59 20.59 0 0 0-1.89-6.43 9.42 9.42 0 0 1-6.52-9v-.1a40.09 40.09 0 0 1-2.44-3.54 20 20 0 0 1-1.52-1.69 22.42 22.42 0 0 1-4.22-8.89c-.2-.43-.4-.87-.58-1.29a8.82 8.82 0 0 1-2.23-1.91A7.38 7.38 0 0 1 282 136a9.14 9.14 0 0 1-.75-3.92l-3.89-.15a.67.67 0 0 1-.61-.45c-.82 0-1.66 0-2.51.06a4.26 4.26 0 0 1-2 1.76.65.65 0 0 1 .06.16.67.67 0 0 1-.58.76 5.27 5.27 0 0 1-.7 0 6.27 6.27 0 0 1-3.83-1.44l-1.71.54a8.45 8.45 0 0 1 2.56 5.8c0 5.59-5.58 7.51-5.63 7.53a.69.69 0 0 1-.21 0 .66.66 0 0 1-.56-.35 6 6 0 0 1-3 .16 2.32 2.32 0 0 1-.82-.37h-.24c-.21 0-5.16-1.08-7.35-8a1.32 1.32 0 0 1 0-.89l-.67.25-.57.21-.94.36-.64.25-.93.36-.67.26-.93.37-.7.29-.93.38-.7.29-.94.39-.61.39-.92.4-.74.32-.93.41-.7.31-1.65.75-.92.42-.79.37-.86.41-.82.39-.84.4-.8.39-.85.42-.78.4-.83.43-.77.4-.84.44-.73.39-.85.46-.7.38-.86.48-.65.37-.91.53-.57.33-1.23.74-.32.2-1.24.78-.45.29-.87.57-.51.35-.75.52-.52.37-.69.5-.5.38-.64.49-.47.38-.6.49-.44.37-.56.5-.4.36-.53.51-.34.34-.52.56-.26.28c-.24.27-.47.55-.67.82a4.28 4.28 0 0 0-.79 1.92v.15a1.3 1.3 0 0 1 1.18 1c0 .17 7.81 18.58 14.57 21.87 6.12 3 29.59 5.43 47.44 3.84 10.91-2.16 14.63-4.46 23.55-13.37 2.84-2.84 4.24 7.43-.95 12.29-4.4 4.11-15.66 5.7-28 5.74-1 .54-1.93 1.08-2.86 1.64l-.51.31q-1 .62-2 1.25l-.76.51q-1.46 1-2.84 2l-1.23.92-1.32 1q-1 .77-1.9 1.57a72.58 72.58 0 0 1 11-2.87.66.66 0 0 1 .22 1.3 78.31 78.31 0 0 0-13.78 3.88q-2.22 2.07-4.18 4.23a.67.67 0 0 1-.19.51 66.14 66.14 0 0 0-6.58 8.24c-.22.34-.46.68-.67 1s-.26.44-.39.66c-.43.71-.85 1.42-1.25 2.13-.16.29-.31.59-.46.88-.34.64-.68 1.28-1 1.92-.16.32-.3.65-.45 1-.28.6-.55 1.21-.81 1.81-.14.34-.27.68-.4 1-.23.58-.46 1.16-.66 1.74-.12.34-.23.68-.34 1-.19.57-.37 1.13-.53 1.69-.1.34-.19.67-.27 1-.15.56-.29 1.11-.41 1.66-.06.26-.11.51-.16.76v.22c-.11.55-.21 1.09-.29 1.62 0 .32-.09.63-.14.94q-.11.81-.18 1.59c0 .3 0 .6-.07.89 0 .53-.05 1-.06 1.56v.14a.67.67 0 0 1 .1 1.05zm8.85-88.89a7.42 7.42 0 0 1 4.48-3 1.53 1.53 0 0 1-.07-.37v-3.53a1.6 1.6 0 0 1 3.19 0v3.58a1.53 1.53 0 0 1-.07.37 7.42 7.42 0 0 1 4.48 3 2 2 0 0 1-3.38 2.22 3.34 3.34 0 0 0-2.62-1.32 3.35 3.35 0 0 0-2.61 1.29 2 2 0 1 1-3.4-2.2zm14.52 22a.55.55 0 0 1-.14.21l-.49.42a25.55 25.55 0 0 1-3.2 2.31 30.21 30.21 0 0 1-3 1.61 26.21 26.21 0 0 1-5.56 1.82c-.48.08-.93.12-1.41.18a20.13 20.13 0 0 1-8.33-.61h-.25a20.13 20.13 0 0 1-7.3-4.06 6 6 0 0 1 .69-.17 3.45 3.45 0 0 0-.67.14c-.36-.31-.73-.59-1.09-.94a25.28 25.28 0 0 1-3.65-4.56 28 28 0 0 1-1.62-3 24.14 24.14 0 0 1-1.41-3.68l-.18-.6a.52.52 0 0 1 .31-.64.44.44 0 0 1 .25 0l1.95.43 1 .23a7.08 7.08 0 0 1-.3-2.77c.41-.38 6.23 1.12 6.41 1.39a13.12 13.12 0 0 1-.42 2.8l.68.18 1.69.47a15.19 15.19 0 0 1 1-3c.41-.38 8.08 1.55 8.27 1.82a15.26 15.26 0 0 1-2.46 3.1l.73.21c3 1 6.11 1.88 9.14 2.89l4.55 1.55 2.67 1c.6.22 1.22.45 1.83.69a.5.5 0 0 1 .31.59zm25-19.19a2 2 0 0 1-2.79-.58 3.33 3.33 0 0 0-2.62-1.31 3.35 3.35 0 0 0-2.61 1.29 2 2 0 0 1-3.4-2.2 7.42 7.42 0 0 1 4.48-3 1.53 1.53 0 0 1-.07-.37v-3.54a1.6 1.6 0 1 1 3.19 0v3.58a1.53 1.53 0 0 1-.07.37 7.42 7.42 0 0 1 4.48 3 2 2 0 0 1-.64 2.76zm-44.86 88.17a.67.67 0 0 1 .92-.26l1.17.64a.67.67 0 1 1-.63 1.19l-1.19-.65a.67.67 0 0 1-.31-.91z"/><path class="cls-5" d="M248.93 264l-.07-.1c-.07-.13-.11-.27-.18-.41l.16.5h.09zM271.58 257.64l-2.32-.67q0 .18-.08.35a3.72 3.72 0 0 1-4.61 2.54l-2.88-.83c-.42.13-.84.27-1.26.39l12.12 3.5 1.58-5.46a3.69 3.69 0 0 1-2.55.18zM277.12 272.44V280.5s0 .73.05 1.07.06.9.1 1.29a6.3 6.3 0 0 0 .4 2 .45.45 0 0 0 .11.14.85.85 0 0 0 .27.14h.1a.89.89 0 0 0 .21 0h.13l.21-.05.15-.06.22-.11.16-.1.24-.18.17-.14.26-.25.17-.17.3-.35.15-.18c.15-.19.31-.4.46-.62v-.07c.14-.21.29-.42.43-.66l.17-.28.32-.54.2-.36.22-.41.08-.15.21-.41.29-.6.21-.45.3-.66.21-.49.3-.72.2-.5.33-.86.17-.46c.16-.45.32-.91.48-1.38.17-.52.34-1.07.5-1.66v-.05c.16-.57.3-1.17.45-1.78v-.1q.21-.91.4-1.88v-.13c.08-.38.15-.78.22-1.17-2 .43-4 .78-6 1.09a6.79 6.79 0 0 1-3.55 4.19zM293 213.13a.67.67 0 0 1-.62.42.67.67 0 0 1-.25-.05.67.67 0 0 1-.37-.88c.45-1.11 1.08-2.59 1.69-3.9-6.83 10.94-9.11 19.66-11.52 27.21l1.09.32a6.78 6.78 0 0 1 4.63 8.39l-6 20.73q2.9-.47 5.69-1.12v-.22c.11-.68.21-1.37.3-2.05v-.1c0-.29.08-.58.12-.87a.66.66 0 0 1-.06-.34c.65-5.41 2.29-28.72 2.3-29a.66.66 0 0 1 .72-.63.67.67 0 0 1 .63.72c0 .16-.81 11.55-1.52 20.28a62.83 62.83 0 0 0 6.37-.58 48.81 48.81 0 0 0 16.55-5.64 5 5 0 0 1-.43-3.6l2.33-8.88a5 5 0 0 1 3.19-3.45 5 5 0 0 1-.39-5.19 18.46 18.46 0 0 1 4-5.24c-.47.17-.95.34-1.45.48a25.16 25.16 0 0 1-4.2.87 7.74 7.74 0 0 0-7.54-1 8.69 8.69 0 0 0-12 .31 31.44 31.44 0 0 0-3.21.52c-.37 1.81-.64 3.23-.66 3.56a.67.67 0 0 1-1.31.29c-.06-.19-.14-.45 1.09-6.21a48.16 48.16 0 0 1 1.33-5.37q.25-.82.52-1.6.26-.76.53-1.48v-.11q.26-.68.51-1.32l.07-.17.27-.67c-.4 1.07-1.49 3.44-2.4 5.57zm2.74 35.65a121.78 121.78 0 0 0 14.56-6.85.67.67 0 0 1 .65 1.18 123.22 123.22 0 0 1-14.67 6.89.68.68 0 1 1-.49-1.26zM247.82 260.73l.31 1a6.65 6.65 0 0 1-.08-1z"/><path class="cls-3" d="M237.74 266.05q.55 1.18 1.18 2.35l.14.25q.62 1.15 1.3 2.27l.15.24q.71 1.14 1.49 2.23l.12.17c.56.77 1.15 1.53 1.76 2.25l1 1.11.24.28.67.77.29.33.58.66.3.34.54.6.28.3.56.61.21.23.24.25.47.49.11.11.56.55.21.21.41.38.23.21.36.31.21.18.34.26.18.13.36.24.11.07a3.69 3.69 0 0 0 .42.21h.1l.27.08h.31a.78.78 0 0 0 .23-.05h.1a.79.79 0 0 0 .26-.23.68.68 0 0 0 .08-.29v-.12a3.52 3.52 0 0 0 0-.4v-.12c0-.2 0-.43-.08-.69v-.2q0-.32-.12-.68l-.05-.26c0-.23-.1-.47-.15-.72l-.06-.28v-.11c-.07-.33-.16-.68-.24-1l-.09-.36-.25-1-.06-.24-.35-1.33-.09-.35-.3-1.1-.11-.39-.4-1.43v-.16l-.39-1.34-.1-.36-.4-1.35v-.14l-.45-1.51-.07-.24-.24-.78a96.43 96.43 0 0 1-10.39-2.66c-.93-.29-1.86-.64-2.78-1 .29.68.59 1.37.91 2.06zM240.26 158.5a2 2 0 0 0 2.8-.6 3.35 3.35 0 0 1 2.61-1.29 3.34 3.34 0 0 1 2.62 1.32 2 2 0 0 0 3.38-2.22 7.42 7.42 0 0 0-4.48-3 7.11 7.11 0 0 0-1.52-.18 7.11 7.11 0 0 0-1.52.18 7.42 7.42 0 0 0-4.48 3 2 2 0 0 0 .59 2.79zm0-2.43a5.85 5.85 0 0 1 .81-.95 6.62 6.62 0 0 1 4.62-1.88 6.73 6.73 0 0 1 5.44 2.83 1.35 1.35 0 0 1-2.26 1.48 4 4 0 0 0-3.18-1.61 4 4 0 0 0-3 1.34 2.66 2.66 0 0 0-.21.26 1.35 1.35 0 1 1-2.26-1.47zM275.25 152.75a7.11 7.11 0 0 0-1.52-.18 7.11 7.11 0 0 0-1.52.18 7.42 7.42 0 0 0-4.48 3 2 2 0 0 0 3.4 2.2 3.35 3.35 0 0 1 2.61-1.29 3.33 3.33 0 0 1 2.62 1.31 2 2 0 0 0 3.38-2.22 7.42 7.42 0 0 0-4.49-3zm3.52 5.19a1.35 1.35 0 0 1-1.86-.39 3.45 3.45 0 0 0-.49-.54 3.94 3.94 0 0 0-2.69-1.07 4 4 0 0 0-3.17 1.6 1.35 1.35 0 0 1-2.26-1.47 6.72 6.72 0 0 1 5.44-2.83 6.62 6.62 0 0 1 4.63 1.89 5.83 5.83 0 0 1 .81.95 1.35 1.35 0 0 1-.41 1.87z"/><path class="cls-5" d="M295.11 175.89c-8.92 8.91-12.64 11.22-23.55 13.37-17.86 1.59-41.32-.85-47.44-3.84-6.76-3.3-14.53-21.7-14.57-21.87a1.3 1.3 0 0 0-1.18-1c-.43 3 1.14 7.37 3.56 11.69.41.73.84 1.46 1.3 2.18.68 1.08 1.4 2.14 2.15 3.14.5.67 1 1.32 1.51 1.95s1 1.22 1.54 1.78l.77.81c.51.52 1 1 1.52 1.44l.74.62a10.49 10.49 0 0 0 2.73 1.65c8.21 3 19.9 5 31.85 5 2 0 4.11-.07 6.15-.19a.66.66 0 0 1 .19-.06c.15 0 14.7-1.56 21.56-4.35a.67.67 0 0 1 .51 1.25c-4.57 1.86-12.19 3.15-17.14 3.84l-1.16.63c12.36 0 23.62-1.63 28-5.74 5.2-4.87 3.8-15.14.96-12.3z"/><path class="cls-3" d="M305.61 202.35c-4.32 2-7.89 3.71-9.15 4.35 2.46-1.13 5.69-2.7 9.15-4.35z"/><path class="cls-4" d="M227.28 173c.19.37 3.75 1.16 4.25.95a18.3 18.3 0 0 0 3.45-3.22 15.26 15.26 0 0 0 2.46-3.1c-.18-.27-7.86-2.21-8.27-1.82a15.19 15.19 0 0 0-1 3 21.66 21.66 0 0 0-.89 4.19zM224.71 172.08a16.59 16.59 0 0 0 1.1-3.89 13.12 13.12 0 0 0 .42-2.8c-.18-.27-6-1.78-6.41-1.39a7.08 7.08 0 0 0 .3 2.77 33.64 33.64 0 0 0 .88 3.48c.18.36 3.28 2.17 3.71 1.83z"/><path class="cls-5" d="M274.29 131.56c.86 0 1.69-.06 2.51-.06a.67.67 0 0 1 0-.25.68.68 0 0 1 .7-.65l4 .15a5.55 5.55 0 0 1 .91-2.07.67.67 0 0 1 1.06.84c-.07.09-1.69 2.24-.15 6 .75 1.81 3.55 3.38 4.57 3.83a.68.68 0 0 1 .4.56 21.32 21.32 0 0 0 4.28 10.22 22.72 22.72 0 0 0 10.21 6.87.68.68 0 0 1 .48.53s.72 4 2.27 5.55c.85.85 3.12 3.11 9 2a.67.67 0 1 1 .24 1.33 17.78 17.78 0 0 1-3.21.32 9.16 9.16 0 0 1-7-2.72c-1.54-1.54-2.33-4.73-2.57-5.86a24.3 24.3 0 0 1-9-5.55 40.09 40.09 0 0 0 2.44 3.54v.1a9.42 9.42 0 0 0 6.52 9 20.59 20.59 0 0 1 1.89 6.43h.1a.68.68 0 0 1 .81.5 26.89 26.89 0 0 1 .43 7.19H306.84c.4-1.35.77-2.76 1.1-4.2a4 4 0 0 0 5.19-2.79h.18a10.41 10.41 0 0 0 14-6.24A7.31 7.31 0 0 0 334 160a40.49 40.49 0 0 0 3.2-4.05 8.21 8.21 0 0 0 6.55-10.52 8.23 8.23 0 0 0 .6-12.31 40.34 40.34 0 0 0-.34-5.36 8.76 8.76 0 0 0 3-5c.06-.28.1-.57.14-.86s0-.55 0-.84v-.07a8.78 8.78 0 0 0-.08-1.12v-.29a8.69 8.69 0 0 0-.2-.9v-.17a8.66 8.66 0 0 0-.38-1l-.07-.16a8.71 8.71 0 0 0-.46-.86l-.08-.13a8.8 8.8 0 0 0-1.45-1.74h-.05a8.82 8.82 0 0 0-1.91-1.33 8.73 8.73 0 0 0-3.87-1 40.64 40.64 0 0 0-9.47-10.83 8.78 8.78 0 0 0-.22-1.56 8.73 8.73 0 0 0-.43-1.36v-.09a8.75 8.75 0 0 0-.63-1.22l-.06-.09a8.8 8.8 0 0 0-.82-1.1 8.81 8.81 0 0 0-1-1 8.77 8.77 0 0 0-1.11-.76l-.15-.09a8.68 8.68 0 0 0-1.17-.54l-.21-.07a8.66 8.66 0 0 0-1.27-.34h-.18a8.77 8.77 0 0 0-1.48-.24c-.26 0-.51 0-.76.05s-.33 0-.49 0a8.6 8.6 0 0 0-.84.18l-.35.08a8.81 8.81 0 0 0-2.18 1 40.47 40.47 0 0 0-6-1.34 8.88 8.88 0 0 0-.69-.64l-.24-.19c-.17-.13-.33-.26-.51-.37l-.31-.19-.5-.29-.34-.17-.53-.23-.36-.13-.57-.17-.35-.09c-.21 0-.43-.08-.65-.12h-.3a8.67 8.67 0 0 0-1-.06 8.84 8.84 0 0 0-1.07.07 8.71 8.71 0 0 0-3 .94 8.8 8.8 0 0 0-2.4 1.86q-1.26.22-2.49.51a40.16 40.16 0 0 0-4.82 1.48q-1.17.44-2.31 1a8.14 8.14 0 0 0-3.81-.29h-.33a8.86 8.86 0 0 0-7.21 7.88q-.65.61-1.27 1.26a8.77 8.77 0 0 0-7.11 8.61v.09a9 9 0 0 0 .1 1.2c-.19.38-.37.78-.55 1.17q-.38.82-.73 1.67c-.22.54-.44 1.08-.64 1.63a4.26 4.26 0 0 0-2.63 3.94 4.22 4.22 0 0 0 .91 2.6c-.09.53-.18 1.06-.26 1.59s-.14 1.07-.2 1.62c-.09.88-.13 1.75-.16 2.62.28.2.56.42.86.66l2.8-.88a.68.68 0 0 1 .68.16 4.91 4.91 0 0 0 3.72 1.29.66.66 0 0 1 .7.42 4.26 4.26 0 0 0 2.08-1.86zm45.06 31.2a.68.68 0 0 1 1-.08 4.54 4.54 0 0 0 5.93-.25 5.74 5.74 0 0 0 2.3-5.64 8.45 8.45 0 0 1-4.44-1.4 1.35 1.35 0 0 1 1.56-2.2 5.68 5.68 0 0 0 7.44-1c4.12-4.14 2-8.21 2-8.25a1.35 1.35 0 0 1 2.39-1.26c1.06 2 1.91 7-2.5 11.42a8.83 8.83 0 0 1-5.13 2.68 7.11 7.11 0 0 1-2.78 6.73 6.05 6.05 0 0 1-3.94 1.55 6.31 6.31 0 0 1-3.73-1.3.68.68 0 0 1-.1-1zm-31.41-61a5.78 5.78 0 0 1 5.64 2.07l.47-.24a8.67 8.67 0 0 1 6.43-.51 7.16 7.16 0 0 1 5.67-3.78 5.94 5.94 0 0 1 6.65 3.82.67.67 0 1 1-1.28.41 4.54 4.54 0 0 0-5.18-2.9 5.87 5.87 0 0 0-4.63 2.95 8.34 8.34 0 0 1 3 2.59 1.35 1.35 0 1 1-2.23 1.52 5.68 5.68 0 0 0-7.33-1.64c-5.32 2.42-4.8 7-4.79 7a1.35 1.35 0 0 1-1.17 1.51H289a1.35 1.35 0 0 1-1.34-1.18 9.67 9.67 0 0 1 4.7-8.9 4.53 4.53 0 0 0-4.27-1.41c-4.44.64-5.08 4.07-5.1 4.22a.68.68 0 0 1-.66.56h-.11a.67.67 0 0 1-.56-.77s.83-4.51 6.29-5.3z"/><path class="cls-5" d="M284.47 138.86a8.82 8.82 0 0 0 2.23 1.91c.18.42.38.86.58 1.29-.17-.73-.26-1.31-.31-1.67a15.86 15.86 0 0 1-2.5-1.53z"/><path class="cls-4" d="M228.16 215.53a.66.66 0 0 0 .35-.09 166.88 166.88 0 0 1 21.65-10 78.31 78.31 0 0 1 13.78-3.88.66.66 0 0 0-.22-1.3 72.58 72.58 0 0 0-11 2.87l-.21.17c-5.63 2.19-12.34 4.9-17.36 7.2-2.53 1.24-4.54 2.3-5.82 3a5.14 5.14 0 0 0-1.51 1.23c-.1.16-.18.32-.25.46a.66.66 0 0 0 .59.34z"/><path class="cls-5" d="M247.56 120.26c1.62 1.45 4.08.77 5.36-1.15a.92.92 0 0 1 0-.12c0-.07.3-6.59-2.62-8.92l-.11.09-.22.22-.16.19-.24.33-.16.24-.26.44-.15.26c-.1.19-.21.4-.31.61l-.09.19c-.13.28-.26.58-.38.88l-.08.21c-.09.23-.18.47-.27.71l-.11.34c-.07.2-.13.4-.2.6l-.11.37c-.05.19-.1.38-.15.56l-.09.37q-.06.27-.11.53t-.06.35c0 .17 0 .33-.06.48s0 .22 0 .32v.7a2.66 2.66 0 0 0 .07.39v.18a1.21 1.21 0 0 0 .23.42 2.91 2.91 0 0 0 .28.21zM255.54 124.83c0-.06 0-.12.05-.19a29.16 29.16 0 0 0-.88-3.21 5.55 5.55 0 0 0-.37-.87c-.71 2.49-4.54 4-7 1.83 0 .44-.07.88-.08 1.29a12 12 0 0 0 .11 2 3.76 3.76 0 0 0 .52 1.55 1.34 1.34 0 0 0 .28.3 3.66 3.66 0 0 0 .49.32 3.88 3.88 0 0 0 .52.23 5.24 5.24 0 0 0 6.36-3.25zM249.31 129.49c0 .32.1.64.16 1-.14-.79-.25-1.6-.33-2.41.05.45.11.92.17 1.41zM257.36 126.42a5.79 5.79 0 0 1-7.86 4.2v.3c.09.46.19.91.29 1.34.48 1.92 1.16 3.45 2 4.1 3.38.64 8.3-1.77 8.58-5.44v-.55a5.71 5.71 0 0 0-1.36-2.53 15 15 0 0 0-1.65-1.42zM261.68 146.41s-.07-.07-.08-.11a.68.68 0 0 1 .42-.85c.19-.06 4.71-1.64 4.71-6.25 0-3.12-2.55-5.42-4.26-6.61.22 4.17-4.42 7.35-8.51 7.29v.05a7.16 7.16 0 0 0 4.19 3.61 1.35 1.35 0 0 1-.27 2.67 2.32 2.32 0 0 0 .82.37 6 6 0 0 0 2.98-.17z"/><path class="cls-2" d="M293.49 208.72c-.62 1.31-1.24 2.79-1.69 3.9a.67.67 0 0 0 .37.88.67.67 0 0 0 .25.05.67.67 0 0 0 .62-.42c.86-2.12 1.94-4.49 2.55-5.59l.22-.52.62-.28c1.27-.64 4.83-2.33 9.15-4.35 3.59-1.75 7.43-3.67 10.89-5.47a3 3 0 0 1 .35-1.08l.13-.23c-6.65 3.08-21.09 9.79-21.76 10.27a10 10 0 0 0-1.7 2.84z"/><path class="cls-5" d="M338.3 186.87a22 22 0 0 0 1.62-2.09c.39-.57.69-1.1 1-1.58a4.52 4.52 0 0 1-2.47-1.35 5.89 5.89 0 0 1-1.12-1.86c-.29.09-.58.19-.9.31a22.1 22.1 0 0 0-2.42 1.09c0 .14 0 .29.05.43a7.15 7.15 0 0 0 4.24 5.05zM333.33 191.37l.2-.15.75-.59.67-.54.35-.3a11.19 11.19 0 0 1-1.2-.82 11.05 11.05 0 0 1-3.66-5.35l-.36.27-.69.53-.75.6-.69.56c-.71.58-1.4 1.18-2.07 1.78s-1.31 1.21-1.92 1.81c-1.12 1.1-2.22 2.3-3.19 3.47a33.7 33.7 0 0 0-2 2.7c-.23.34-.4.62-.52.81l-.16.28a1.68 1.68 0 0 0 1.91 2.42l.32-.09.91-.31a33.35 33.35 0 0 0 3.1-1.35h.07a10.35 10.35 0 0 1-.68-6.38 1.35 1.35 0 0 1 1.62-1 1.33 1.33 0 0 1 1 .92 13.62 13.62 0 0 1 6.99.73zM343.18 181.87c1-.24 3.22-1.1 5-4.26-1.16-1-3.18.91-4-.68-.68-1.33.08-1.8-.47-2.55h-.81a4.55 4.55 0 0 0-4.27 2.35 3.79 3.79 0 0 0 .74 4.25 3.91 3.91 0 0 0 3.81.89z"/><path class="cls-4" d="M333.33 191.37a13.62 13.62 0 0 0-7.09-.76 1.31 1.31 0 0 1 0 .69c0 .06-.64 3 .67 4.91a4.13 4.13 0 0 0 3 1.69 4.7 4.7 0 0 0 3.7-.68 5.3 5.3 0 0 0 1.74-3.27 1.33 1.33 0 0 1 .72-1 6.36 6.36 0 0 0-1.36-.92 12 12 0 0 0-1.38-.66z"/><path class="cls-2" d="M182.42 180.26a.67.67 0 1 0-1.22.58c2.46 5.22 4.85 10 7.31 14.5a.67.67 0 1 0 1.19-.64c-2.45-4.52-4.83-9.24-7.28-14.44zM196.59 208.5a.67.67 0 0 0 .57-1q-1.08-1.7-2.12-3.43a.67.67 0 0 0-.43-.31 15.14 15.14 0 0 1 1.49 4.52.67.67 0 0 0 .49.22zM163.58 135.28l-.41-1.07a.67.67 0 1 0-1.26.48q.84 2.19 1.67 4.34l1.35 3.46.3.77 1.29-.4-1.59-4.08zM175.61 168a.66.66 0 0 0 0 .47l.54 1.24a.68.68 0 1 0 1.24-.54l-.52-1.2h-1.08zM154.3 112.29a.68.68 0 0 0-.41.86l1.39 3.81a.63.63 0 0 0 .15.19l1.1-.7-1.37-3.76a.67.67 0 0 0-.86-.4zM150.26 103a.68.68 0 0 0 .64.45.69.69 0 0 0 .22 0 .68.68 0 0 0 .41-.86c-1.55-4.38-2.81-8-3.71-10.67l-.46-1.35c-.72-2.11-1.11-3.29-1.12-3.32a.67.67 0 1 0-1.28.43s.35 1.06 1 2.89l.46 1.35c.89 2.61 2.2 6.43 3.84 11.08zM345.52 218.32q2.79-2.44 5.59-5a.67.67 0 0 0-.91-1q-3 2.77-6 5.39c.39.25.76.52 1.13.81zM226.37 241.52a.68.68 0 0 0 .15.94c.46.33.93.64 1.4 1 .65.46 1.3.93 2 1.36a.67.67 0 0 0 .37.11.66.66 0 0 0 .4-.16.65.65 0 0 0 .16-.15.67.67 0 0 0-.18-.91c-.88-.58-1.76-1.2-2.63-1.82l-.68-.47a.68.68 0 0 0-.99.1zM296 250.08a.68.68 0 0 0 .24 0 123.22 123.22 0 0 0 14.76-6.97.67.67 0 0 0-.65-1.18 121.78 121.78 0 0 1-14.56 6.85.67.67 0 0 0 .24 1.3zM329.37 230.47a.67.67 0 0 0-.94-.15l-1.09.79a.66.66 0 0 0-.24.36l1.5.39.63-.45a.67.67 0 0 0 .14-.94zM208.1 222.77a.67.67 0 1 0-1 .85 117.14 117.14 0 0 0 11.09 11.92.68.68 0 1 0 .92-1c-.7-.65-1.39-1.33-2.09-2q-2.2-2.16-4.36-4.54c-1.57-1.68-3.08-3.41-4.56-5.23zM200.86 213.07l-.72-1.06v-.05a.67.67 0 0 0-1.12.76l.76 1.12a.67.67 0 0 0 1.11-.77zM234.54 247.6l1.19.65a.67.67 0 0 0 .63-1.19l-1.17-.64a.67.67 0 1 0-.65 1.18zM247.42 251.73A.67.67 0 0 0 247 253c.89.28 1.8.52 2.71.76l.37-1.3c-.89-.22-1.78-.46-2.66-.73zM149.05 121.2a3.82 3.82 0 0 1 .56-.37l1.73-1.09c-4.44-12.53-7.54-22.43-9.1-27.88l-.38-1.35c-.34-1.24-.58-2.16-.69-2.71a1.35 1.35 0 1 0-2.64.56c.11.5.29 1.24.53 2.15l.37 1.35c1.57 5.56 4.89 16.08 9.62 29.34zM207.06 233.88q-3.09-4.14-6.08-8.62c-2-2.92-3.86-5.93-5.73-9a15 15 0 0 1-1.4 2.73 198.28 198.28 0 0 0 16.92 23.79l2.75-.83q-3.28-3.81-6.46-8.07zM153.73 127.34a3.77 3.77 0 0 1-2.18.75c2.3 6.26 4.88 13 7.68 20a5.87 5.87 0 0 1 1.7-2.84c-2.52-6.33-4.83-12.39-6.91-18.05zM170 166.92a15.19 15.19 0 0 1-3.86-2.28c.94 2.16 1.9 4.33 2.88 6.51.88 2 1.79 3.94 2.7 5.92 2.87 6.21 5.86 12.42 9 18.51h.48a15.13 15.13 0 0 1 2.56.22c-3.8-7.33-7.34-14.67-10.54-21.68-.51-1.12-1-2.23-1.5-3.34-.55-1.31-1.14-2.59-1.72-3.86zM331.4 242c.14 0 .26.11.4.14a8.64 8.64 0 0 0 3.38.17 80.34 80.34 0 0 0 6.44-6.11 1.25 1.25 0 0 0 .07-.12l-2.94-.77a94.53 94.53 0 0 1-7.35 6.69zM236.75 263.81c.93.38 1.85.73 2.78 1a96.43 96.43 0 0 0 10.39 2.66c1 .2 2 .37 3 .53q2.92.48 5.77.75l-5.76-1.67a6.71 6.71 0 0 1-3.54-2.49l-.35-.07c-2.85-.61-5.74-1.36-8.68-2.29a35.88 35.88 0 0 1-5-2c-1.17-.57-2.33-1.23-3.5-1.94q-2.21-1.34-4.4-3l-1-.8.7 2.32a2.7 2.7 0 0 0 .56 1.85v.1c.64.45 1.29.87 1.93 1.28 1.18.75 2.36 1.43 3.54 2.05s2.36 1.23 3.56 1.72zM324.89 250.3a18.47 18.47 0 0 1-2.37-1.62c-2.32 1.56-4.84 3.15-7.57 4.7a104.67 104.67 0 0 1-21.12 9.16h-.16q-1.7.51-3.45 1-1.4.37-2.83.7-2.79.64-5.69 1.12l-.8 2.78v.06c2-.31 4.06-.66 6-1.09 1-.21 1.92-.44 2.87-.68q1.75-.44 3.46-.93a106.1 106.1 0 0 0 20.62-8.5c3.43-1.84 6.59-3.75 9.44-5.65z"/><path class="cls-6" d="M287.12 239.48a6.73 6.73 0 0 0-4.05-3.24l-1.09-.32-18.5-5.35a6.77 6.77 0 0 0-8.39 4.63l-5 17.28-.37 1.3-1.43 4.94a6.75 6.75 0 0 0-.24 2 6.65 6.65 0 0 0 .08 1 6.73 6.73 0 0 0 .55 1.76c.06.14.1.28.18.41l.07.1a6.82 6.82 0 0 0 .44.64 6.71 6.71 0 0 0 3.54 2.49l5.76 1.67 4.55 1.32 8.44 2.44.84.24a6.78 6.78 0 0 0 1.88.27 6.69 6.69 0 0 0 2.71-.6 6.79 6.79 0 0 0 3.76-4.23v-.06l.8-2.78 6-20.73a6.73 6.73 0 0 0-.53-5.18zm-2 4.41l-6.8 23.51a4.08 4.08 0 0 1-5.05 2.79l-19.59-5.66a4.08 4.08 0 0 1-2.79-5.05l6.8-23.51a4.07 4.07 0 0 1 5.05-2.79l19.59 5.66a4.08 4.08 0 0 1 2.78 5.04z"/><path class="cls-6" d="M279.23 242.19l-15.68-4.53A2 2 0 0 0 261 239l-5.66 19.59a2 2 0 0 0 1.39 2.53l15.68 4.53a2 2 0 0 0 2.59-1.35l5.66-19.59a2 2 0 0 0-1.43-2.52zm-17.4 8.81a1 1 0 0 1 1.26-.7l9.8 2.83a1 1 0 1 1-.57 2l-9.8-2.83a1 1 0 0 1-.69-1.3zm-1.13 3.92a1 1 0 0 1 1.26-.7l3.92 1.13a1 1 0 1 1-.57 2l-3.92-1.13a1 1 0 0 1-.69-1.34zm11.85 8l-12.12-3.5-2.29-.66.44-1.54a3.7 3.7 0 0 0 2.06 1.51l1 .3 2.88.83a3.72 3.72 0 0 0 4.61-2.54q.05-.18.08-.35l2.32.67a3.69 3.69 0 0 0 2.55-.18zm2.17-12.49a1 1 0 0 1-1.26.7l-9.8-2.83a1 1 0 1 1 .57-2l9.8 2.83a1 1 0 0 1 .69 1.31zm1.13-3.92a1 1 0 0 1-1.26.7l-9.8-2.83a1 1 0 1 1 .57-2l9.8 2.83a1 1 0 0 1 .69 1.31zM169 142.08l-2.51.78-1.29.4-.3.09-1.35.42-.43.13a5.79 5.79 0 0 0-2.22 1.3 5.87 5.87 0 0 0-1.7 2.84 5.8 5.8 0 0 0 .06 3.19l1.87 6A15.36 15.36 0 0 0 175.61 168h1.27a15.33 15.33 0 0 0 13.56-19.84l-1.87-6A5.83 5.83 0 0 0 183 138a5.86 5.86 0 0 0-1.74.26l-9.5 3zm13-1.21a3.15 3.15 0 0 1 4 2.08l1.87 6a12.63 12.63 0 0 1-24.12 7.49l-.16-.53-1.71-5.5a3.29 3.29 0 0 1 2.08-4l1-.3 4.04-1.21 2.7-.84z"/><path class="cls-6" d="M167.83 153.57a1.58 1.58 0 0 0 .75.9l.46.24 2.7 1.42 3.36 1.77 1.38.73a1.58 1.58 0 0 0 2.11-.66l.73-1.38 3.43-6.52a1.56 1.56 0 1 0-2.77-1.45l-3.43 6.52-4.82-2.63-1.55-.85a1.35 1.35 0 0 0-1.15-.12 1.52 1.52 0 0 0-.2 0 1.58 1.58 0 0 0-1 2.03zM347.38 220.33a18.44 18.44 0 0 0-2.08-1.82c-.37-.28-.74-.55-1.13-.81a18.33 18.33 0 0 0-8.84-3c-.43 0-.86-.07-1.3-.07a18.49 18.49 0 0 0-6.15 1.09 17.65 17.65 0 0 0-6.24 3.71 18.46 18.46 0 0 0-4 5.24 5 5 0 0 0 .39 5.19 5 5 0 0 0-3.19 3.45l-2.33 8.88a5 5 0 0 0 .43 3.6c0 .06.05.13.09.19a5.2 5.2 0 0 0 3 2.31 5 5 0 0 0 4.75-1.27 19.89 19.89 0 0 0 4.14 3.2c.47.27.95.51 1.44.73a18.51 18.51 0 0 0 24.24-8.35 5 5 0 0 0 .31-3.81c0-.13-.1-.24-.15-.37a5 5 0 0 0-.54-1 5 5 0 0 0 1.63-1v-7.2l-1.07 4.08A2.29 2.29 0 0 1 348 235l-8.88-2.33a2.29 2.29 0 1 1 1.17-4.44l4.44 1.17a11.24 11.24 0 0 0-7.71-6.77 11.46 11.46 0 0 0-12.85 5.37 2.29 2.29 0 0 1-2.69 1.19l-.44-.12h-.08a2.29 2.29 0 0 1-1-3.09 15.83 15.83 0 0 1 28-.22l.64-2.44a2.27 2.27 0 0 1 3.18-1.5V219a4.88 4.88 0 0 0-4.46 1.33zm-20.83 9a8.79 8.79 0 0 1 9.76-4.08 8.55 8.55 0 0 1 1.5.53h.05-.06a5 5 0 0 0-2.8 2.92 4.85 4.85 0 0 0-.18.46 5 5 0 0 0 3.56 6.1l.36.09 2.94.77 1.17.31a5 5 0 0 0-1.18 1.36v.08a8.77 8.77 0 0 1-9.84 4.31c-.14 0-.27-.1-.4-.14a8.53 8.53 0 0 1-1.14-.41 5 5 0 0 0-.54-9.48l-1.13-.3-1.5-.39-1.91-.5a5 5 0 0 0 1.33-1.64zm-6.38 3.12l8.88 2.33a2.29 2.29 0 1 1-1.17 4.44l-4.44-1.22a11.24 11.24 0 0 0 7.71 6.77 11.46 11.46 0 0 0 12.85-5.59 2.29 2.29 0 0 1 3.07-.85h.08a2.29 2.29 0 0 1 1 3.09 15.83 15.83 0 0 1-28 .22l-.64 2.44a2.29 2.29 0 0 1-4.44-1.17l2.33-8.88a2.29 2.29 0 0 1 2.8-1.64zM196.29 210.53a15.47 15.47 0 0 0-.2-2.28 15.15 15.15 0 0 0-9.58-11.75 15.36 15.36 0 0 0-2.74-.73 15.13 15.13 0 0 0-2.56-.22h-.48a15.21 15.21 0 0 0-3.64.54 3.52 3.52 0 0 0-.17-.46 3.48 3.48 0 0 0-3.17-2 3.51 3.51 0 0 0-3.26 2.26l-1.49 3.84-1.3 3.46a3.49 3.49 0 0 0 .82 3.71 4.29 4.29 0 0 0-2.68 3.94 15.3 15.3 0 0 0 15.2 15.08h.18a15.11 15.11 0 0 0 10.7-4.58 15.36 15.36 0 0 0 1.88-2.34 15.21 15.21 0 0 0 2.45-8.46zm-15.06 12.68h-.15a12.56 12.56 0 0 1-12.5-12.36 1.59 1.59 0 0 1 1.58-1.57 1.58 1.58 0 0 1 1.57 1.56 9.38 9.38 0 1 0 2.31-6.15l4.54 1.7a.78.78 0 1 1-.55 1.46l-6.3-2.37-1-.38a.78.78 0 0 1-.46-1l1.47-3.92 1.28-3.4a.78.78 0 1 1 1.46.55l-1.48 4a12.46 12.46 0 1 1 8.23 21.89zm-7.07-13.9l2.26.85-.25.11h-.09a3.45 3.45 0 0 0-1.57 1.47 6.68 6.68 0 0 1-.06-.91 4.24 4.24 0 0 0-.29-1.51zm6.83 1.85l2.09-5.56a.78.78 0 1 1 1.46.55l-2.2 5.85a.78.78 0 0 1-.37.53l-4 1.83-.09-.2-1-.38a.78.78 0 0 1 .38-1zm-.74-6.91h.5a3.44 3.44 0 0 0-.15.31 3.45 3.45 0 0 0-.35-.29zm4.67 8.55l2-5.28a6.68 6.68 0 0 1-8.44 9.49 2.7 2.7 0 0 0 .59-.19l4-1.83.28-.14a3.48 3.48 0 0 0 1.57-2.03zM227.23 257.83a2.69 2.69 0 0 0-.11-1l-.7-2.32-.42-1.39a2.7 2.7 0 0 1-.56-1.85l-1.12-3.71a2.7 2.7 0 0 1-.56-1.85 6.57 6.57 0 0 0-8.2-4.39 2.7 2.7 0 0 0-.87.45h-.2a2.7 2.7 0 0 0-.78.12l-.18.06-2.75.83-.78.22a2.7 2.7 0 0 0-.88.45h-.2a2.7 2.7 0 0 0-.78.12l-3.71 1.12a2.69 2.69 0 0 0-.88.45h-.2a2.7 2.7 0 0 0-.78.12l-3.71 1.12a2.7 2.7 0 0 0-.88.45h-.2a2.7 2.7 0 0 0-.78.12 6.58 6.58 0 0 0-4.39 8.2 2.7 2.7 0 0 1 .56 1.85l.07.22a7.56 7.56 0 0 0 2.43 12.37 7.54 7.54 0 1 0 13.68 2.19l.72-.95a2.7 2.7 0 0 0 .39.18l6.86 2.58h.1a6.57 6.57 0 0 0 8.31-4.17v-.07a2.7 2.7 0 0 0-1.09-3.08 6.58 6.58 0 0 0 3-7.5v-.1a2.7 2.7 0 0 0-.41-.84zm-2.69-.2l-3.71 1.12-1.13-3.75 3.71-1.12zm-4.79 6.87l-3.81-1.34 2.46-3.23a1.75 1.75 0 0 1 .41 1.46zm3.11-12.43l-3.71 1.12-1.15-3.71 3.71-1.12zm-5.39-8.32a3.88 3.88 0 0 1 3.71 2.75l-3.71 1.12-1.12-3.71a3.87 3.87 0 0 1 1.11-.17zm-3 .73l1.12 3.71-3.71 1.12-1.12-3.71zm-3.66 8a2.7 2.7 0 0 0 .87-.45h.2a2.7 2.7 0 0 0 .78-.12l3-.9.12.39a6.54 6.54 0 0 0-4.48 2.44v.06l-4.46 6-1.2-.42a7.6 7.6 0 0 0-3-3.5l-.28-.93 3-.9a2.7 2.7 0 0 0 .87-.45h.2a2.7 2.7 0 0 0 .78-.12zm-1.9-6.29l1.12 3.71-3.7 1.1-1.12-3.71zm-5.56 1.68l1.12 3.71-3.71 1.12-1.12-3.7zm-5.56 1.68l1.12 3.71-3.71 1.12a3.88 3.88 0 0 1 2.58-4.85zm8.59 21.7a5.14 5.14 0 1 1-3.12-2.29l2-2.64-2.73-1a4.85 4.85 0 1 1-6.18-7l-.62-2 3.71-1.12.84 2.78a4.85 4.85 0 0 1 3 3.15l.17.56 4.31 1.53 5.61-7.57a3.88 3.88 0 0 1 5.45-.61zm16.8-2.62a3.88 3.88 0 0 1-3.66 2.65.67.67 0 0 1-.82.93l-4.61-1.54a.67.67 0 0 1-.43-.85.67.67 0 0 1 .3-.36l-2.53-1 2.48-3.18 9.29 3.26zm-.67-4.29l-1.12-3.71 3.71-1.12a3.88 3.88 0 0 1-2.59 4.81z"/><path class="cls-6" d="M204.44 272.83a2.52 2.52 0 1 0-1.69 3.14l.2-.05a2.33 2.33 0 0 0 1.54-2.9zM200.82 261.57a2.52 2.52 0 1 0-1.44 3.26l.19-.07a2.33 2.33 0 0 0 1.31-3zM165.73 109.08h-.07c-.24-.05-.49-.09-.73-.11a7.34 7.34 0 0 0-.78 0c-.19 0-.38 0-.57.05a7.32 7.32 0 0 0-6.78 7.33l-.27.17-1.1.7-4.08 2.58-1.73 1.09a3.82 3.82 0 0 0-.56.37 3.86 3.86 0 0 0 2.37 6.91h.13a3.77 3.77 0 0 0 2.18-.75l.3-.19 6.85-4.32a7.35 7.35 0 0 0 1.52.57h.07a7.39 7.39 0 0 0 1.12.15h.51a7.39 7.39 0 0 0 .84-.07 7.35 7.35 0 0 0 6.33-5.66 7.35 7.35 0 0 0 0-3.35 2.7 2.7 0 0 0-1.58-1.87 2.73 2.73 0 0 0-1-2.14 7.4 7.4 0 0 0-2.97-1.46zm2.89 8.19a4.65 4.65 0 0 1-3.7 3.55 4.61 4.61 0 0 1-.84.08 4.77 4.77 0 0 1-.51-.06 4.57 4.57 0 0 1-.52-.06 4.66 4.66 0 0 1-2.12-1.19l-8.77 5.54a1.16 1.16 0 1 1-1.23-1.95l8.77-5.54a4.64 4.64 0 0 1 3.87-6 4.57 4.57 0 0 1 .57 0 4.7 4.7 0 0 1 .78.08h.18a4.66 4.66 0 0 1 1.83.89l-2 1.27-1.33.84a1.48 1.48 0 0 0-.44 2 1.46 1.46 0 0 0 .44.44 1.37 1.37 0 0 0 1.35.13 1.45 1.45 0 0 0 .25-.11l3.45-2.08a4.66 4.66 0 0 1-.02 2.17z"/><path class="cls-2" d="M187 179.89a.67.67 0 0 0-1.22.57l2.7 5.74a.67.67 0 1 0 1.22-.57zM197.33 235.22a.67.67 0 1 0 1.1-.78l-3-4.24a.67.67 0 1 0-1.1.78z"/><path class="cls-7" d="M219.12 270.91l-4.61-1.54a.69.69 0 0 0-.85.43.67.67 0 0 0 .43.85l4.61 1.54a.67.67 0 0 0 .43-1.28zM220 230.23a.67.67 0 0 0 .52-1.11l-3.23-3.87-1.9-2.27a.68.68 0 0 0-1 .86l1.07 1.29 4 4.86a.67.67 0 0 0 .54.24z"/><path class="cls-2" d="M327 203.95l-7.22 6.68a.67.67 0 1 0 .92 1l7.22-6.68a.67.67 0 0 0-.92-1zM154.74 146.66a.68.68 0 0 0 .64.45.69.69 0 0 0 .22 0 .68.68 0 0 0 .41-.86l-2-5.74a.67.67 0 1 0-1.27.45z"/><path class="cls-4" d="M122 239.15a5.44 5.44 0 0 1 3.08-2.08 5.18 5.18 0 0 0-4 3.13l.27.06a5.5 5.5 0 0 1 .65-1.11zM139.11 237.85a6.77 6.77 0 0 0-7.68 2.18c0 .1.11.2.15.31a6.85 6.85 0 0 1 7.53-2.49zM117.92 269.57a4.51 4.51 0 0 0 1.56 1.93 4.46 4.46 0 0 0 2 .77l-.11-.16a4.46 4.46 0 0 1-3.48-2.54zM111.86 266a7.45 7.45 0 0 1-2.93-7.62 7.43 7.43 0 0 0 8.57 9.14v-.22a7.43 7.43 0 0 1-5.64-1.3zM113.18 243a7.44 7.44 0 0 1 1.63-1.65 7.44 7.44 0 0 0-1 11.55l.32-.12a7.46 7.46 0 0 1-.95-9.78zM143.23 249.85c.19.14.37.29.55.44a7.93 7.93 0 0 0-.79-.64 7.74 7.74 0 0 0-.91-.52 7.94 7.94 0 0 1 1.15.72zM134.81 275.46l-.72-4h-.11l.66 4zM133.75 270.11h.09-.09zM126.25 269.38a4.57 4.57 0 0 1-.5.9 4.49 4.49 0 0 1-.33.38l.09.1a4.35 4.35 0 0 0 .34-.4 4.57 4.57 0 0 0 .49-.9l.09.07a6.4 6.4 0 0 0 1 .57 7.31 7.31 0 0 1-1.12-.65zM137.82 269.75c0 .09.1.26.18.45a16.7 16.7 0 0 1 .65 1.75l.09-.21a17.48 17.48 0 0 0-.65-1.65c-.08-.19-.16-.36-.19-.45a.7.7 0 0 0-.89-.43.68.68 0 0 0-.3.22.69.69 0 0 1 1.11.32zM135.92 283.45c.14.83-1.44 1.48-2.95 1.66a6.69 6.69 0 0 0 2.39-.65c.57-.3.93-.67.86-1.09l-1.17-6.52h.08l-.28.09zM128 270.3h.09zM123 272.05l.1.12h.09l-.12-.13zM128.64 274a13.73 13.73 0 0 1-2.34-1.07 14.4 14.4 0 0 0 2.37 1.1z"/><path class="cls-4" d="M140.92 266.86a.7.7 0 0 1 .55.83c-.46 2.28-1.25 5.06-3 7l-.07.07a7 7 0 0 1-2.42 1.74 7 7 0 0 0 2.58-1.86l.07-.07c1.7-2 2.44-4.78 2.87-7.07a.7.7 0 0 0-.56-.82h-.14a.7.7 0 0 0-.68.57v.07a.69.69 0 0 1 .8-.46z"/><path class="cls-4" d="M149.49 247.53a12.59 12.59 0 0 0-17-15 11.13 11.13 0 0 0-5.81-1.63A11.28 11.28 0 0 0 119 234a13.17 13.17 0 0 0-12.19 16.77 13.36 13.36 0 0 0-1 1.28 13.19 13.19 0 0 0 7.62 20.52 10.29 10.29 0 0 0 7.75 5 17.28 17.28 0 0 0 2.87 1.8l.82 5 .1.61c.42 2.58 2.64 5.6 7.5 5.6.88 0 5.37-.15 7.9-3.13a6.59 6.59 0 0 0 1.26-2.29 6.34 6.34 0 0 0 .22-2.93l-.41-2.49a13.18 13.18 0 0 0 1.46-1.38l.19-.21c2.68-3 3.71-6.94 4.26-9.61a6.41 6.41 0 0 0 .09-2 13.62 13.62 0 0 0 2.09-19.1zm-2.31 14.66a10.58 10.58 0 0 1-3.59 3.23 3.39 3.39 0 0 1 .58 2.6c-.44 2.35-1.28 5.77-3.44 8.28l-.15.17a9.78 9.78 0 0 1-2.49 2l.79 4.39a3.3 3.3 0 0 1-.23 1.89 3.6 3.6 0 0 1-.53.9c-1.27 1.55-3.79 2.13-5.56 2.16-3 0-4.3-1.51-4.57-3l-.1-.56-1.2-6.67a14.87 14.87 0 0 1-4.47-2.62h-.06a7.16 7.16 0 0 1-4.23-1.29 7.24 7.24 0 0 1-2.65-3.39 10.17 10.17 0 0 1-5.39-18.14 10.15 10.15 0 0 1 8.89-14.75h.81a8.22 8.22 0 0 1 6.37-3.21 8.2 8.2 0 0 1 5.56 2.06 9.6 9.6 0 0 1 5.1-1.57 9.57 9.57 0 0 1 8.88 13.49 10.6 10.6 0 0 1 1.66 14z"/><path class="cls-5" d="M133.38 270.27l.37-.16zM132.52 285.14h.46c1.51-.18 3.08-.82 2.95-1.66l-1.07-6.54.28-.09a7.09 7.09 0 0 0 .86-.29 7 7 0 0 0 2.42-1.74l.07-.07c1.73-2 2.52-4.74 3-7a.7.7 0 0 0-.55-.83.69.69 0 0 0-.8.47 18.4 18.4 0 0 1-1.35 4.49v-.08l-.09.21a16.7 16.7 0 0 0-.65-1.75c-.08-.19-.15-.37-.18-.45a.69.69 0 0 0-1.11-.32.69.69 0 0 0-.13.67c0 .14.13.32.23.55a12.91 12.91 0 0 1 .72 1.94c.18.73.1 1.05 0 1.13l-.1.12a5.75 5.75 0 0 1-2.6 1.61l-.18.06-.66-4a7.87 7.87 0 0 1-2.72.5h-.43a.67.67 0 0 1-.61-.73.66.66 0 0 1 .2-.41 7.29 7.29 0 0 1-2.38-.49h.09l.65 3.65-.16-.06a14.4 14.4 0 0 1-2.37-1.1.65.65 0 0 1-.31-.07 5.9 5.9 0 0 1-2.7-3.26l-.05-.14c0-.07 0-.14-.06-.2a5.18 5.18 0 0 1-.16-.75v-.16a.67.67 0 0 0-.28-.48.76.76 0 0 0-.66 0c-.38.14-.42 1-.1 2.18a6.87 6.87 0 0 0 1.17 2.05l.12.13a8.33 8.33 0 0 0 1.24 1.17 14.81 14.81 0 0 0 4.6 2.24l1.56 8.68v.1c.07.51.87.73 1.84.72z"/><path class="cls-3" d="M129.64 257.4c.94-.32 1.87-.65 2.74-1-.86.35-1.81.67-2.74 1zM126.85 258.22c-.89.25-1.76.4-2.48.57.72-.17 1.63-.32 2.48-.57zM121.91 270v.08a5.87 5.87 0 0 0 1.08 2h.07a6.87 6.87 0 0 1-1.15-2.08zM132.38 256.4c.86-.33 1.65-.73 2.33-1-.71.27-1.47.66-2.33 1zM123 268.4v-.09.16z"/><path class="cls-3" d="M130.42 270.83a.65.65 0 0 1 .53-.2 6.6 6.6 0 0 0 2.43-.36l.36-.18h.09a7.71 7.71 0 0 0 1.43-.92l.09-.07c.16-.13.3-.28.45-.42a7.34 7.34 0 0 0 .55-.62c.09-.11.18-.21.26-.32a7.29 7.29 0 0 0 1.29-3.68h.7a7.89 7.89 0 0 0 5.18-13.74c-.18-.15-.36-.3-.55-.44a7.94 7.94 0 0 0-1.17-.69l-.27-.15a6.94 6.94 0 0 0 .62-.76 6.71 6.71 0 1 0-10.86-7.88c0-.11-.1-.2-.15-.31-.08.1-.17.2-.24.3a5.27 5.27 0 0 0-9.79-.08l-.27-.06c0 .07-.09.14-.12.22a7.28 7.28 0 0 0-6.89 12.4l-.32.12.14.15a7.46 7.46 0 0 0-4.63 4.17v.1a7.36 7.36 0 0 0-.33 1 7.45 7.45 0 0 0 8.55 8.92v.22a4.59 4.59 0 0 0 .09 1.12v.16a4.2 4.2 0 0 0 1.71 2.51 4.52 4.52 0 0 0 2 .8 6.64 6.64 0 0 1-.77-1.67c-.84-2.89.35-3.69.91-3.89a2.09 2.09 0 0 1 1.84.14 2 2 0 0 1 .93 1.58 4.78 4.78 0 0 0 1.1 2.4 4.49 4.49 0 0 0 .33-.38 4.57 4.57 0 0 0 .5-.9l.09.07a7.31 7.31 0 0 0 1.12.65l.5.21h.09a7.29 7.29 0 0 0 2.48.48zm2.58-23.92a1.42 1.42 0 0 1 1.8.9l1 2.92a3.39 3.39 0 0 0-2.69.93l-1-3a1.42 1.42 0 0 1 .89-1.75zm-13.16 5.86a1.42 1.42 0 0 1 2.7-.9l1 2.92a3.39 3.39 0 0 0-2.69.93zm7.6 9.86a2.73 2.73 0 0 1 .24-.27 1.52 1.52 0 0 0-.26.26c-.22 0-.43 0-.65-.07a11.58 11.58 0 0 1-2.57-.75 12.83 12.83 0 0 1-1.39-.69 11.06 11.06 0 0 1-1.49-1l-.23-.18a.24.24 0 0 1-.05-.32.2.2 0 0 1 .09-.07l.84-.35 1.18-.48 2.06-.77c1.38-.51 2.76-1 4.15-1.45s2.79-.9 4.19-1.32l2.11-.61 1.26-.33.87-.22a.23.23 0 0 1 .27.17.25.25 0 0 1 0 .12l-.07.28a11.7 11.7 0 0 1-.59 1.71 13.83 13.83 0 0 1-.7 1.39 12 12 0 0 1-1.61 2.14c-.15.15-.31.29-.47.43a9.22 9.22 0 0 1-3.29 2H131.21a9.22 9.22 0 0 1-3.81.37z"/><ellipse class="cls-8" cx="207.99" cy="217.44" rx="3.5" ry="3.76" transform="rotate(-61.44 208.004 217.44)"/><path class="cls-9" d="M221.17 246.5a3.87 3.87 0 0 0-4.83-2.59l1.12 3.71z"/><path class="cls-10" d="M210.773 245.587l3.714-1.124 1.124 3.713-3.713 1.124z"/><path class="cls-11" d="M205.212 247.278l3.713-1.124 1.124 3.714-3.714 1.124z"/><path class="cls-12" d="M130.89 261.08c1.25-.59 2.4-1.24 3.7-.86.16-.14.32-.27.47-.43a12 12 0 0 0 1.61-2.14 13.83 13.83 0 0 0 .7-1.39 11.7 11.7 0 0 0 .59-1.71l.07-.28a.25.25 0 0 0 0-.12.23.23 0 0 0-.27-.17l-.87.22-1.26.33-2.11.61c-1.4.42-2.79.88-4.19 1.32s-2.77.94-4.15 1.45l-2.06.77-1.18.48-.84.35a.2.2 0 0 0-.09.07.24.24 0 0 0 .05.32l.23.18a11.06 11.06 0 0 0 1.49 1 12.83 12.83 0 0 0 1.39.69 11.58 11.58 0 0 0 2.57.75c.22 0 .44 0 .65.07a1.52 1.52 0 0 1 .26-.26 5.81 5.81 0 0 1 3.25-1.27zm-6.52-2.28c.72-.17 1.59-.32 2.48-.57-.85.24-1.76.39-2.48.56zm8-2.39c.87-.34 1.65-.73 2.33-1-.68.29-1.47.7-2.33 1s-1.8.68-2.74 1c.94-.34 1.89-.66 2.75-1.01z"/><path class="cls-13" d="M198.91 253.24l-1.12-3.71a3.88 3.88 0 0 0-2.59 4.83z"/><path class="cls-14" d="M218.62 225.78a5.74 5.74 0 0 0-1.37-.52l3.23 3.87a.68.68 0 0 1-1 .86l-4-4.86a3.17 3.17 0 0 0-2.44 1.54 2.8 2.8 0 0 0-.33 1.32q2.16 2.37 4.36 4.54a3.62 3.62 0 0 0 4-1.5c.8-1.7-.24-4.03-2.45-5.25z"/><ellipse class="cls-15" cx="227.76" cy="205.41" rx="3.26" ry="3.63" transform="rotate(-57.51 227.75 205.414)"/><path class="cls-16" d="M253.91 177.08c-.61-.25-1.23-.47-1.83-.69l-2.67-1-4.55-1.55c-3-1-6.1-1.93-9.14-2.89l-.73-.21a18.3 18.3 0 0 1-3.45 3.22c-.5.22-4.07-.58-4.25-.95a21.66 21.66 0 0 1 .89-4.19l-1.69-.47-.68-.18a16.59 16.59 0 0 1-1.1 3.89c-.43.34-3.53-1.46-3.72-1.83a33.64 33.64 0 0 1-.88-3.48l-1-.23-1.95-.43a.44.44 0 0 0-.25 0 .52.52 0 0 0-.31.64l.18.6a24.14 24.14 0 0 0 1.41 3.68 28 28 0 0 0 1.62 3 25.28 25.28 0 0 0 3.65 4.56c.35.35.72.63 1.09.94a3.45 3.45 0 0 1 .67-.14 6 6 0 0 0-.69.17 20.13 20.13 0 0 0 7.3 4.06h.25a20.13 20.13 0 0 0 8.33.61c.47-.06.93-.1 1.41-.18a26.21 26.21 0 0 0 5.56-1.82 30.21 30.21 0 0 0 3-1.61 25.55 25.55 0 0 0 3.2-2.31l.49-.42a.55.55 0 0 0 .14-.21.5.5 0 0 0-.3-.58z"/><path class="cls-17" d="M185.55 199a12.51 12.51 0 0 0-12.55 2.3l1.48-4a.78.78 0 1 0-1.46-.55l-1.28 3.4v5.3l6.3 2.37a.78.78 0 1 0 .55-1.46l-4.54-1.7a9.38 9.38 0 1 1-2.31 6.15v3.06a6.88 6.88 0 0 1-1.08 3.69 12.49 12.49 0 0 0 10.43 5.62h.15a12.51 12.51 0 0 0 4.31-24.18z"/><path class="cls-18" d="M218.026 249.47l3.714-1.124 1.124 3.714-3.714 1.124z"/><path class="cls-19" d="M240.62 157.94a1.35 1.35 0 0 0 1.87-.4 2.66 2.66 0 0 1 .21-.26 4 4 0 0 1 3-1.34 4 4 0 0 1 3.18 1.61 1.35 1.35 0 0 0 2.26-1.48 6.73 6.73 0 0 0-5.44-2.83 6.62 6.62 0 0 0-4.63 1.88 5.85 5.85 0 0 0-.81.95 1.35 1.35 0 0 0 .36 1.87z"/><ellipse class="cls-20" cx="215.21" cy="206.11" rx="3.76" ry="3.5" transform="rotate(-.57 216.094 207.142)"/><path class="cls-21" d="M245.67 152.57a7.11 7.11 0 0 1 1.52.18 1.53 1.53 0 0 0 .07-.37v-3.58a1.6 1.6 0 0 0-3.19 0v3.58a1.53 1.53 0 0 0 .07.37 7.11 7.11 0 0 1 1.52-.18z"/><path class="cls-22" d="M176.83 213.78l1 .38.09.2 4-1.83a.78.78 0 0 0 .37-.53l2.2-5.85a.78.78 0 1 0-1.46-.55l-2.03 5.57-3.77 1.59a.78.78 0 0 0-.4 1.02z"/><path class="cls-23" d="M350.87 221.6a2.29 2.29 0 0 0-2.22 1.71l-.64 2.44a15.83 15.83 0 0 0-28 .22 2.29 2.29 0 0 0 1 3.09h.08l.44.12a2.29 2.29 0 0 0 2.69-1.19 11.46 11.46 0 0 1 12.78-5.37 11.24 11.24 0 0 1 7.71 6.77l-4.44-1.17a2.29 2.29 0 1 0-1.17 4.44L348 235a2.29 2.29 0 0 0 2.8-1.64l1.07-4.08v-7.46a2.18 2.18 0 0 0-1-.22z"/><path class="cls-24" d="M176.56 155.13l3.43-6.52a1.56 1.56 0 1 1 2.77 1.45l-3.43 6.52-.73 1.38a1.58 1.58 0 0 1-2.11.66l-1.38-.73-3.36-1.77v8.54A12.62 12.62 0 0 0 187.87 149l-1.87-6a3.15 3.15 0 0 0-4-2.08l-10.3 3.2v8.44z"/><path class="cls-25" d="M317.37 234.07l-2.37 8.88a2.29 2.29 0 1 0 4.44 1.17l.64-2.44a15.83 15.83 0 0 0 28-.22 2.29 2.29 0 0 0-1-3.09H347a2.29 2.29 0 0 0-3.07.85 11.46 11.46 0 0 1-12.87 5.63 11.24 11.24 0 0 1-7.71-6.77l4.44 1.17a2.29 2.29 0 0 0 1.17-4.44l-8.88-2.33a2.29 2.29 0 0 0-2.8 1.64z"/><path class="cls-26" d="M216.43 254a3.87 3.87 0 0 0-3 1.46l-5.61 7.57-4.31-1.53-.17-.56a4.85 4.85 0 0 0-3-3.15l-.84-2.78-3.71 1.12.62 2a4.85 4.85 0 1 0 6.18 7l2.73 1-2 2.64a3.91 3.91 0 1 0 3.12 2.29l12.47-16.33a3.86 3.86 0 0 0-2.48-.73zm-16.86 10.72l-.19.07a2.52 2.52 0 1 1 1.44-3.26l.06.18a2.33 2.33 0 0 1-1.31 3.06zm3.37 11.15l-.2.05a2.52 2.52 0 1 1 1.69-3.14v.18a2.33 2.33 0 0 1-1.49 2.95z"/><path class="cls-27" d="M335.19 242.37a8.76 8.76 0 0 0 6.45-4.48v-.08a5 5 0 0 1 1.18-1.36l-1.17-.31a1.25 1.25 0 0 1-.07.12 80.34 80.34 0 0 1-6.39 6.11z"/><path class="cls-28" d="M332.12 233.61a5 5 0 0 1-1.85 8 8.53 8.53 0 0 0 1.14.41 94.53 94.53 0 0 0 7.35-6.68l-.36-.09a5 5 0 0 1-3.56-6.1 4.85 4.85 0 0 1 .18-.46l-.76-.11a33.59 33.59 0 0 1-2.14 5.03z"/><path class="cls-29" d="M273.73 152.57a7.11 7.11 0 0 1 1.52.18 1.53 1.53 0 0 0 .07-.37v-3.58a1.6 1.6 0 1 0-3.19 0v3.58a1.53 1.53 0 0 0 .07.37 7.11 7.11 0 0 1 1.52-.18z"/><path class="cls-30" d="M277.18 279.55v-1.53-1.65-1.73-.88-1.27a6.69 6.69 0 0 1-2.71.6c0 3.19 0 5.61.1 7.46h2.71c-.08-.35-.09-.67-.1-1z"/><path class="cls-31" d="M200.87 112.85a.2.2 0 0 0 0 .38 6.24 6.24 0 0 1 4.51 4.51.2.2 0 0 0 .38 0 6.24 6.24 0 0 1 4.51-4.51.2.2 0 0 0 0-.38 6.24 6.24 0 0 1-4.26-3.74h-.89a6.24 6.24 0 0 1-4.25 3.74z"/><path class="cls-32" d="M248.84 264l.17.54.35.07a6.82 6.82 0 0 1-.44-.64z"/><path class="cls-33" d="M335 228.7a5 5 0 0 1 2.77-2.88v-.05a8.55 8.55 0 0 0-1.5-.53 8.82 8.82 0 0 0-1.12-.21 29.79 29.79 0 0 1-.94 3.58c.31.04.56.06.79.09z"/><path class="cls-34" d="M250.16 268.28l.07.24.45 1.51v.14l.4 1.35.1.36.39 1.34v.16l.4 1.43.11.39.3 1.1.09.35.35 1.33.06.24.25 1 .09.36c.09.36.17.71.24 1v.11l.06.28 2.74-.13c-.51-2.55-1.56-6.5-3.47-12.85-1-.16-2-.33-3-.53z"/><path class="cls-35" d="M248.51 281l-.21-.23-.56-.61-.28-.3-.54-.6-.3-.34-.58-.66-.29-.33-.67-.77-.24-.28-1-1.11c-.62-.72-1.2-1.47-1.76-2.25l-.12-.17q-.78-1.09-1.49-2.23l-.15-.24q-.68-1.12-1.3-2.27l-.14-.25q-.62-1.17-1.18-2.35l-.09-.18c-.32-.69-.62-1.37-.91-2.06-1.2-.49-2.39-1.06-3.58-1.68a52 52 0 0 0 8.66 15.43c1.31 1.53 2.45 2.84 3.47 4l3.45-.25z"/><path class="cls-36" d="M234.7 258.36c-.13-.38-.23-.74-.34-1.11a16.88 16.88 0 0 0 7.32 3.06h.12a.67.67 0 0 0 .12-1.34c-6.33-1.18-8.9-4.61-9.88-6.59v-.06c-.18-.48-.35-1-.5-1.48-.05-.18-.09-.37-.14-.55-.12-.49-.24-1-.33-1.49 0-.21-.07-.43-.1-.65-.08-.5-.15-1-.19-1.51 0-.25 0-.5-.05-.75s0-.77 0-1.16a.66.66 0 0 1-.4.16.67.67 0 0 1-.37-.11c-.66-.43-1.31-.9-2-1.36-.09 5.34 1.08 10.13 3.61 13.82.1.34.22.7.33 1 1.16.71 2.33 1.37 3.5 1.94-.22-.63-.45-1.26-.65-1.86z"/><path class="cls-37" d="M211.42 268.48l2.53 1a.66.66 0 0 1 .56-.07l4.61 1.54a.67.67 0 0 1 .39.35 3.88 3.88 0 0 0 3.66-2.65l-9.29-3.26z"/><path class="cls-38" d="M221.39 260.61l1.12 3.71a3.88 3.88 0 0 0 2.59-4.83z"/><path class="cls-39" d="M278.35 155.13a6.62 6.62 0 0 0-4.63-1.89 6.72 6.72 0 0 0-5.44 2.83 1.35 1.35 0 0 0 2.26 1.47 4 4 0 0 1 3.17-1.6 3.94 3.94 0 0 1 2.69 1.07 3.45 3.45 0 0 1 .49.54 1.35 1.35 0 0 0 2.26-1.48 5.83 5.83 0 0 0-.8-.94z"/><path class="cls-40" d="M199.647 248.947l3.713-1.124 1.124 3.713-3.713 1.124z"/><path class="cls-41" d="M326.32 251c-.49-.23-1-.47-1.44-.73l-1.59 1.08q1.55-.09 3.03-.35z"/><path class="cls-42" d="M261.4 256.14l3.92 1.13a1 1 0 0 0 .57-2l-3.89-1.09a1 1 0 0 0-.57 2z"/><path class="cls-43" d="M289.93 252.08c.7-8.73 1.5-20.12 1.52-20.28a.67.67 0 0 0-.63-.72.66.66 0 0 0-.72.63c0 .24-1.65 23.55-2.3 29a.66.66 0 0 0 .06.34c0 .29-.08.58-.12.87v.1l-.3 2.05v.22q1.43-.33 2.83-.7c.16-1.09.32-2.21.47-3.4a79.07 79.07 0 0 0 24.25-6.78c2.73-1.55 5.25-3.13 7.57-4.7a18.45 18.45 0 0 1-1.77-1.58 5 5 0 0 1-4.75 1.27 45.81 45.81 0 0 1-5.75 3.1 69.38 69.38 0 0 1-20.73 5.46c.09-1.06.19-2.23.3-3.49a64.25 64.25 0 0 0 6.68-.6 50.12 50.12 0 0 0 17.13-5.87 5 5 0 0 1-.73-.94c0-.06-.05-.13-.09-.19a48.81 48.81 0 0 1-16.55 5.64 62.83 62.83 0 0 1-6.37.57z"/><path class="cls-44" d="M262.53 252.22l9.8 2.83a1 1 0 0 0 .57-2l-9.8-2.83a1 1 0 1 0-.57 2z"/><path class="cls-45" d="M218 114a.34.34 0 0 0-.68 0 11 11 0 0 1-8 8 .34.34 0 0 0 0 .68 11 11 0 0 1 8 8 .34.34 0 0 0 .68 0 11.05 11.05 0 0 1 8-8 .34.34 0 0 0 0-.67 11.05 11.05 0 0 1-8-8.01z"/><path class="cls-46" d="M286.66 268.41q-.19 1-.4 1.88v.1c-.14.62-.29 1.22-.45 1.78v.05c-.16.58-.33 1.14-.5 1.66-.16.47-.32.93-.48 1.38l-.17.46-.33.86-.2.5-.3.72-.21.49-.3.66-.21.45-.29.6-.21.41-.08.15 3 .07a52.33 52.33 0 0 0 2.36-5.92 58.53 58.53 0 0 0 1.94-8.32c-.95.24-1.9.47-2.87.68-.07.39-.14.79-.22 1.17z"/><path class="cls-47" d="M219.708 255.035l3.713-1.125 1.125 3.714-3.713 1.124z"/><path class="cls-48" d="M133 251.65a3.39 3.39 0 0 1 2.69-.93l-1-2.92a1.42 1.42 0 0 0-2.7.9z"/><path class="cls-49" d="M349.84 122.51A11 11 0 0 0 350 121a11.41 11.41 0 0 0-5.56-9.82 46.21 46.21 0 0 0-13.14-13.07 11.44 11.44 0 0 0-15.78-6.67 43.35 43.35 0 0 0-4.4-1 11.44 11.44 0 0 0-15.35.2 42.93 42.93 0 0 0-8.53 2.6 11.47 11.47 0 0 0-13.67 9.18l-.1.1a11.48 11.48 0 0 0-8.47 11.03v.81c-.48 1-.93 2-1.32 3.05a6.94 6.94 0 0 0-3.16 5.83 6.86 6.86 0 0 0 .12 1.28 21.7 21.7 0 0 0-2.24-2.12 10.35 10.35 0 0 0-1.75-4.13c.4-2.42-.79-4.77-2.22-7.61l-.8-1.6a3.21 3.21 0 0 0-2.9-1.89c-1.84 0-3.3 1.42-4.73 4.59-.88 2-2.61 6.47-1.29 9.22-.58 4.39 0 7.3 1.76 8.65l.13.1a23.68 23.68 0 0 0 1.35 5.54c-13.34 5.09-34.11 14.66-40.93 23.53-1.63 2.12-1.88 5.22-.74 9.19 2.27 7.91 10.71 20 17 22.31 8.89 3.3 20.84 5.19 32.78 5.19h2.37a81.36 81.36 0 0 0-7.26 5.47c-4.67 1.82-8.46 3.36-11.55 4.67a22.82 22.82 0 0 0-2-2.62 21.32 21.32 0 0 0-4.62-4A21.79 21.79 0 0 0 200.14 212l.72 1.06a.67.67 0 0 1-1.11.77 21.93 21.93 0 0 0 1.25 11.44q3 4.47 6.08 8.62a21.37 21.37 0 0 0 14.21 5.31 22.1 22.1 0 0 0 4.23-.41 21.77 21.77 0 0 0 2.91-.79c-.21 1.31-.34 2.58-.42 3.84.87.62 1.75 1.24 2.63 1.82s0-.09 0-.13c0-.51 0-1 .06-1.56 0-.29 0-.59.07-.89q.07-.79.18-1.59c0-.31.09-.63.14-.94.08-.54.18-1.08.29-1.62v-.22c.05-.25.1-.51.16-.76.12-.55.26-1.1.41-1.66.09-.34.18-.67.27-1 .16-.56.34-1.13.53-1.69.11-.34.22-.68.34-1 .2-.58.43-1.16.66-1.74.13-.34.26-.68.4-1 .25-.6.53-1.2.81-1.81.15-.32.29-.65.45-1 .31-.64.65-1.28 1-1.92.16-.29.3-.59.46-.88.39-.71.82-1.42 1.25-2.13.13-.22.25-.44.39-.66s.45-.68.67-1a66.14 66.14 0 0 1 6.58-8.24.69.69 0 0 0 0-1 .67.67 0 0 0-1 0 63.8 63.8 0 0 0-6.23 7.7l-3.73.55h-.09l-1.34.18h-.26l-1.08.14h-.2l-1.08.12-.75.09h-.86a.59.59 0 0 1-.18 0 2.25 2.25 0 0 1-1.46-.64 1.24 1.24 0 0 1-.16-.23 1.26 1.26 0 0 1-.1-.27 1.72 1.72 0 0 1 0-.7 3.74 3.74 0 0 1 .37-1c.07-.15.15-.3.25-.46a5.14 5.14 0 0 1 1.51-1.23l.19-.12.27-.17c1.31-.78 3.17-1.7 5.36-2.71 5-2.3 11.73-5 17.36-7.2l.2-.17q.93-.79 1.9-1.57l1.32-1 1.23-.92q1.38-1 2.84-2l.76-.51q1-.63 2-1.25l.51-.31c.93-.56 1.89-1.11 2.86-1.64l1.16-.63c5-.69 12.57-2 17.14-3.84a.67.67 0 0 0-.51-1.25c-6.86 2.79-21.41 4.33-21.56 4.35a.66.66 0 0 0-.19.06c-2 .12-4.1.19-6.15.19-11.95 0-23.63-2-31.85-5a10.49 10.49 0 0 1-2.73-1.65l-.74-.62c-.5-.43-1-.92-1.52-1.44l-.77-.81c-.51-.56-1-1.15-1.54-1.78s-1-1.28-1.51-1.95c-.74-1-1.47-2.07-2.15-3.14-.45-.72-.89-1.45-1.3-2.18-2.42-4.32-4-8.72-3.56-11.69v-.15a4.28 4.28 0 0 1 .79-1.92c.21-.27.44-.54.67-.82l.26-.28.52-.56.34-.34.53-.51.4-.36.56-.5.44-.37.6-.49.47-.38.64-.49.5-.38.69-.5.52-.37.75-.52.51-.35.87-.57.45-.29 1.24-.78.32-.2 1.23-.74.57-.33.91-.53.65-.37.86-.48.7-.38.85-.46.73-.39.84-.44.77-.4.83-.43.78-.4.85-.42.8-.39.84-.4.82-.39.86-.41.79-.37.92-.42 1.65-.75.7-.31.93-.41.74-.32.92-.4.73-.31.94-.39.7-.29.93-.38.7-.29.93-.37.67-.26.93-.36.64-.25.94-.36.57-.21.67-.25a1.32 1.32 0 0 0 0 .89c2.19 6.95 7.14 8 7.35 8h.24a1.35 1.35 0 0 0 .27-2.67 7.16 7.16 0 0 1-4.19-3.61v-.05c4.09.06 8.73-3.12 8.51-7.29 1.71 1.19 4.26 3.49 4.26 6.61 0 4.61-4.52 6.19-4.71 6.25a.68.68 0 0 0-.42.85s.06.07.08.11a.66.66 0 0 0 .56.35.69.69 0 0 0 .21 0c.06 0 5.63-1.94 5.63-7.53a8.45 8.45 0 0 0-2.56-5.8l1.71-.54a6.27 6.27 0 0 0 3.83 1.44 5.27 5.27 0 0 0 .7 0 .67.67 0 0 0 .58-.76.65.65 0 0 0-.06-.16.66.66 0 0 0-.7-.42 4.91 4.91 0 0 1-3.72-1.29.68.68 0 0 0-.68-.16l-2.8.88c-.29-.25-.58-.47-.86-.66 0-.87.07-1.74.16-2.62.05-.54.12-1.08.2-1.62s.16-1.07.26-1.59a4.21 4.21 0 0 1-.48-4.46 4.28 4.28 0 0 1 2.21-2.08c.2-.55.42-1.09.64-1.63s.48-1.12.73-1.67c.18-.39.35-.79.55-1.17a9 9 0 0 1-.1-1.2v-.09a8.77 8.77 0 0 1 7.11-8.61q.62-.64 1.27-1.26a8.81 8.81 0 0 1 7.21-7.88h.33a8.72 8.72 0 0 1 1.2-.1 11 11 0 0 1 2.61.4q1.14-.51 2.31-1a40.15 40.15 0 0 1 4.82-1.48q1.23-.29 2.49-.51a8.8 8.8 0 0 1 2.4-1.86 8.71 8.71 0 0 1 3-.94 8.84 8.84 0 0 1 1.07-.07 8.68 8.68 0 0 1 1 .06h.3c.22 0 .43.07.65.12l.35.09.57.17.36.13.53.23.34.17.5.29.31.19c.17.12.34.24.51.37l.24.19a8.88 8.88 0 0 1 .69.64 40.47 40.47 0 0 1 6 1.34 8.81 8.81 0 0 1 2.18-1l.35-.08a8.6 8.6 0 0 1 .84-.18h.49s.5-.05.76-.05a8.77 8.77 0 0 1 1.41.12h.18a8.66 8.66 0 0 1 1.27.34l.21.07a8.68 8.68 0 0 1 1.17.54l.15.09a8.77 8.77 0 0 1 1.11.76 8.81 8.81 0 0 1 1 1 8.8 8.8 0 0 1 .82 1.1l.06.09a8.75 8.75 0 0 1 .63 1.22v.09a8.73 8.73 0 0 1 .43 1.36 8.78 8.78 0 0 1 .22 1.56 40.64 40.64 0 0 1 9.47 10.83 8.73 8.73 0 0 1 3.87 1 8.82 8.82 0 0 1 1.91 1.33h.05a8.8 8.8 0 0 1 1.45 1.74l.08.13a8.71 8.71 0 0 1 .46.86l.07.16a8.66 8.66 0 0 1 .38 1v.17a8.69 8.69 0 0 1 .2.9v.29a8.78 8.78 0 0 1 .08 1.12V121.79s-.08.57-.14.86a8.76 8.76 0 0 1-3 5 40.34 40.34 0 0 1 .34 5.36 8.23 8.23 0 0 1-.6 12.31 8.21 8.21 0 0 1-6.55 10.52A40.49 40.49 0 0 1 334 160a7.31 7.31 0 0 1-6.7 6.08 10.41 10.41 0 0 1-14 6.24h-.18a4 4 0 0 1-5.19 2.79c-.33 1.45-.7 2.85-1.1 4.2h1.18-2.84a26.89 26.89 0 0 0-.43-7.19.68.68 0 0 0-.81-.5h-.1a.67.67 0 0 0-.4.77 30.54 30.54 0 0 1-.16 11.36c-.45 1.69-1 3.4-1.59 5.15l-.27.74c-.38 1-.78 2.08-1.22 3.14 9-2.17 18.75-4.35 23.48-5.31l-.72.68c-1.15 1.13-2.28 2.37-3.28 3.57a34.87 34.87 0 0 0-2.12 2.82c-.24.36-.43.66-.55.86l-.06.1-.13.23a3 3 0 0 0-.35 1.08c-3.46 1.8-7.29 3.72-10.89 5.47s-6.69 3.22-9.15 4.35l-.62.28-.22.52-.29.7-.07.17q-.26.64-.51 1.32v.11q-.27.72-.53 1.48-.27.78-.52 1.6a48.16 48.16 0 0 0-1.33 5.37c-1.23 5.76-1.15 6-1.09 6.21a.67.67 0 0 0 1.31-.29c0-.33.29-1.75.66-3.56a31.44 31.44 0 0 1 3.21-.52 8.69 8.69 0 0 1 12-.31 7.74 7.74 0 0 1 7.54 1 25.16 25.16 0 0 0 4.2-.87c.52-.15 1-.33 1.48-.51a17.65 17.65 0 0 1 6.24-3.71 18.34 18.34 0 0 0 4.64-6.42c.09-.21.17-.4.23-.58l.15-.42c.07-.21.1-.32.1-.35v.08c.08.13.21.39.39.76a24.07 24.07 0 0 1 1.86 6 18.57 18.57 0 0 1 2.81.41 24.88 24.88 0 0 0-2.83-8.66 2.7 2.7 0 0 0-4.92.74 15.55 15.55 0 0 1-9.59 9.68 30.16 30.16 0 0 0-20.16-7.32q-1.47 0-3 .11l.29-.72c2.9-1.35 11.8-5.54 19.52-9.54a3 3 0 0 0 2.85.72l.37-.11 1-.33a34.86 34.86 0 0 0 3.23-1.4l.25-.13.23.28a7 7 0 0 0 4.15 2.1 10.14 10.14 0 0 0 1.59.13 6.68 6.68 0 0 0 4.2-1.35 8 8 0 0 0 2.76-5.13 1.35 1.35 0 0 0-1.21-1.47 1.31 1.31 0 0 0-.75.17 1.33 1.33 0 0 0-.72 1 5.3 5.3 0 0 1-1.74 3.27 4.7 4.7 0 0 1-3.7.68 4.13 4.13 0 0 1-3-1.69c-1.31-1.93-.68-4.85-.67-4.91a1.31 1.31 0 0 0 0-.69 1.33 1.33 0 0 0-1-.92 1.35 1.35 0 0 0-1.62 1 10.35 10.35 0 0 0 .68 6.38h-.07a33.35 33.35 0 0 1-3.1 1.35l-.91.31-.32.09a1.68 1.68 0 0 1-1.91-2.42l.16-.28c.12-.19.29-.47.52-.81a33.7 33.7 0 0 1 2-2.7c1-1.17 2.08-2.37 3.19-3.47.61-.6 1.25-1.21 1.92-1.81s1.36-1.2 2.07-1.78l.69-.56.75-.6.69-.53.36-.27a11.05 11.05 0 0 0 3.66 5.35 11.19 11.19 0 0 0 1.2.82l-.35.3-.67.54-.75.59-.2.15a12 12 0 0 1 1.39.62l.39-.3.68-.55c.82-.66 1.47-1.24 2-1.8a24.11 24.11 0 0 0 3.19-3.8 19.84 19.84 0 0 0 1.29-2.21 6.32 6.32 0 0 0 1.14-.14c1.62-.37 5.63-2 7.71-9.28a1.69 1.69 0 0 0-2.39-2 10.42 10.42 0 0 1-5.38 1.09 6.29 6.29 0 0 0-5.17 1.95 5.12 5.12 0 0 0-.79 1.15v.05a4.84 4.84 0 0 0-.45 2.5c-.34.11-.7.23-1.07.37a24.13 24.13 0 0 0-4.44 2.22c-.26.17-.54.35-.81.54-.44.3-.9.63-1.41 1l-.71.54-.76.6-.48.39h-.97c-1.34.08-11.91 2.38-21.77 4.7.78-2.3 1.45-4.64 2-7a46.07 46.07 0 0 0 4.89-.29 6.94 6.94 0 0 0 10.36-1.65 13.77 13.77 0 0 0 14.78-8.91 10.45 10.45 0 0 0 6.92-8.34c.78-1.09 1.51-2.22 2.19-3.38a11.5 11.5 0 0 0 6.13-5.52v-22.62l-.16-.18a45.63 45.63 0 0 0-1.66-8.5zm-124.3 90.8c-1.46 2.41-1.11 4.14-.56 5.17a4.52 4.52 0 0 0 3.56 2.24 4.16 4.16 0 0 0 .75.06 48.58 48.58 0 0 0 5.65-.61c-.89 1.57-1.69 3.14-2.42 4.72a4 4 0 0 0-.87-.66 3.51 3.51 0 1 0-3.35 6.15 3.94 3.94 0 0 0 1.87.47 48.39 48.39 0 0 0-1.48 5.61 20.59 20.59 0 0 1-7.43 1.39 20.53 20.53 0 1 1 17.07-31.71c-11.4 4.86-12.24 6.26-12.79 7.17zM247 119.45a2.66 2.66 0 0 1-.07-.39v-.26-.44-.32s0-.32.06-.48 0-.23.06-.35.07-.35.11-.53l.09-.37c0-.19.1-.37.15-.56l.11-.37c.06-.2.13-.4.2-.6l.11-.34c.09-.24.18-.48.27-.71l.08-.21c.12-.3.25-.6.38-.88l.09-.19c.1-.21.2-.42.31-.61l.15-.26.26-.44.16-.24.24-.33.16-.19.22-.22.11-.09c2.93 2.33 2.62 8.86 2.62 8.92a.92.92 0 0 0 0 .12c-1.28 1.92-3.74 2.6-5.36 1.15a2.93 2.93 0 0 1-.26-.22 1.21 1.21 0 0 1-.23-.42c.04-.04.03-.11-.02-.17zm2.28 10.06c-.07-.48-.13-1-.17-1.44a3.88 3.88 0 0 1-.52-.23 3.65 3.65 0 0 1-.49-.32 1.34 1.34 0 0 1-.28-.3 3.76 3.76 0 0 1-.52-1.55 12 12 0 0 1-.11-2c0-.41 0-.85.08-1.29 2.49 2.12 6.32.66 7-1.83a5.55 5.55 0 0 1 .37.87 29.16 29.16 0 0 1 .88 3.21c0 .06 0 .12-.05.19a5.24 5.24 0 0 1-6.4 3.22c.08.81.2 1.62.33 2.41.02-.3-.04-.62-.08-.94zm11.09 1.42c-.28 3.66-5.2 6.08-8.58 5.44-.83-.65-1.51-2.18-2-4.1-.11-.43-.21-.88-.29-1.34v-.3a5.79 5.79 0 0 0 7.86-4.2 15 15 0 0 1 1.69 1.44 5.71 5.71 0 0 1 1.36 2.53c.01.16.01.34 0 .53zm40.23 81.36zm38-35.59a4.55 4.55 0 0 1 4.27-2.35h.81c.55.75-.21 1.23.47 2.55.82 1.59 2.84-.31 4 .68-1.82 3.16-4 4-5 4.26a3.91 3.91 0 0 1-3.76-.91 3.79 3.79 0 0 1-.72-4.22zm-2.28 3.59c.31-.12.61-.21.9-.31a5.89 5.89 0 0 0 1.12 1.86 4.52 4.52 0 0 0 2.47 1.35c-.26.48-.57 1-1 1.58a22 22 0 0 1-1.62 2.09 7.15 7.15 0 0 1-4.28-5c0-.14 0-.29-.05-.43a22.1 22.1 0 0 1 2.52-1.13zm-20.48.39h.38c-.07-.02-.22 0-.32 0zm.78-.07a4.19 4.19 0 0 0 1.28-.48 4.18 4.18 0 0 1-1.22.48zm3.61-3.61h-.11.11a11.19 11.19 0 0 0 1.25.3 11.22 11.22 0 0 1-1.19-.3zm3.37.53h.67zm26.67-29.84a8.76 8.76 0 0 0-.6-2.27 8.76 8.76 0 0 1 .6 2.27q.05.41.06.82.05-.4 0-.82zm-1.24-15.36a8.83 8.83 0 0 1 1.69 1.81 8.83 8.83 0 0 0-1.63-1.81z"/><path class="cls-50" d="M282.32 238.83l-19.59-5.66a4.07 4.07 0 0 0-5.05 2.79l-6.8 23.51a4.08 4.08 0 0 0 2.79 5.05l19.59 5.66a4.08 4.08 0 0 0 5.05-2.79l6.8-23.51a4.08 4.08 0 0 0-2.79-5.05zm-1.7 5.88L275 264.3a2 2 0 0 1-2.53 1.39l-15.68-4.53a2 2 0 0 1-1.39-2.53L261 239a2 2 0 0 1 2.53-1.39l15.68 4.53a2 2 0 0 1 1.41 2.57z"/><path class="cls-51" d="M212.6 134.15a16.51 16.51 0 0 1-11.91-11.92.51.51 0 0 0-1 0 16.51 16.51 0 0 1-11.92 11.91.51.51 0 0 0 0 1 16.51 16.51 0 0 1 11.91 11.92.51.51 0 0 0 1 0 16.51 16.51 0 0 1 11.92-11.91.51.51 0 0 0 0-1z"/><path class="cls-52" d="M274 249.17l-9.8-2.83a1 1 0 0 0-.57 2l9.8 2.83a1 1 0 0 0 .57-2z"/><path class="cls-53" d="M304.58 164.05a9.16 9.16 0 0 0 7 2.72 17.78 17.78 0 0 0 3.21-.32.67.67 0 1 0-.24-1.33c-5.88 1.08-8.15-1.18-9-2-1.55-1.55-2.27-5.51-2.27-5.55a.68.68 0 0 0-.48-.53 22.72 22.72 0 0 1-10.24-6.91 21.32 21.32 0 0 1-4.28-10.22.68.68 0 0 0-.4-.56c-1-.45-3.82-2-4.57-3.83-1.53-3.73.08-5.88.15-6a.67.67 0 0 0-1.06-.84 5.55 5.55 0 0 0-.91 2.07l-4-.15a.68.68 0 0 0-.7.65.68.68 0 0 0 .65.7l3.89.15a9.14 9.14 0 0 0 .67 3.9 7.38 7.38 0 0 0 2.42 2.84 15.86 15.86 0 0 0 2.5 1.53c0 .36.14.93.31 1.67a22.42 22.42 0 0 0 4.22 8.89 20 20 0 0 0 1.52 1.69 24.3 24.3 0 0 0 9 5.55c.28 1.15 1.03 4.34 2.61 5.88z"/><path class="cls-54" d="M282.26 107.9h.11a.68.68 0 0 0 .66-.56c0-.15.66-3.58 5.1-4.22a4.53 4.53 0 0 1 4.27 1.41 9.67 9.67 0 0 0-4.7 8.9 1.35 1.35 0 0 0 1.34 1.18h.17a1.35 1.35 0 0 0 1.17-1.51s-.52-4.59 4.79-7a5.68 5.68 0 0 1 7.33 1.64 1.35 1.35 0 1 0 2.23-1.52 8.34 8.34 0 0 0-3-2.59 5.87 5.87 0 0 1 4.63-2.95 4.54 4.54 0 0 1 5.18 2.9.67.67 0 1 0 1.28-.41 5.94 5.94 0 0 0-6.65-3.82 7.16 7.16 0 0 0-5.67 3.78 8.67 8.67 0 0 0-6.43.51l-.47.24a5.78 5.78 0 0 0-5.64-2.07c-5.45.78-6.24 5.29-6.24 5.34a.67.67 0 0 0 .54.75z"/><path class="cls-55" d="M122.5 251.87a1.42 1.42 0 0 0-2.7.9l1 3a3.39 3.39 0 0 1 2.69-.93z"/><path class="cls-56" d="M323.16 165a6.05 6.05 0 0 0 3.94-1.55 7.11 7.11 0 0 0 2.78-6.73 8.83 8.83 0 0 0 5.13-2.68c4.41-4.43 3.56-9.4 2.5-11.42a1.35 1.35 0 0 0-2.39 1.26s2.1 4.11-2 8.25a5.68 5.68 0 0 1-7.44 1 1.35 1.35 0 0 0-1.56 2.2 8.45 8.45 0 0 0 4.44 1.4 5.74 5.74 0 0 1-2.3 5.64 4.54 4.54 0 0 1-5.93.25.67.67 0 0 0-.88 1 6.31 6.31 0 0 0 3.71 1.38z"/><path class="cls-57" d="M275.16 245.25l-9.8-2.83a1 1 0 1 0-.57 2l9.8 2.83a1 1 0 1 0 .57-2z"/><path class="cls-2" d="M253.79 281.72l.05.26q.07.36.12.68v.2c0 .25.06.48.08.69v.12a3.52 3.52 0 0 1 0 .4v.12a.68.68 0 0 1-.08.29.79.79 0 0 1-.26.23h-.1a.78.78 0 0 1-.23.05h-.26l-.27-.08h-.1a3.69 3.69 0 0 1-.42-.21l-.11-.07-.36-.24-.18-.13-.34-.26-.21-.18-.36-.31-.23-.21-.41-.38-.21-.21-.56-.55-.11-.11-.47-.49-3.45.25c4 4.39 6 6 8 6a3.46 3.46 0 0 0 2.82-1.44c.53-.73 1-1.36.21-5.19l-2.74.13c.09.17.14.42.18.64z"/><path class="cls-58" d="M253.79 281.72l.05.26q.07.36.12.68v.2c0 .25.06.48.08.69v.12a3.52 3.52 0 0 1 0 .4v.12a.68.68 0 0 1-.08.29.79.79 0 0 1-.26.23h-.1a.78.78 0 0 1-.23.05h-.26l-.27-.08h-.1a3.69 3.69 0 0 1-.42-.21l-.11-.07-.36-.24-.18-.13-.34-.26-.21-.18-.36-.31-.23-.21-.41-.38-.21-.21-.56-.55-.11-.11-.47-.49-3.45.25c4 4.39 6 6 8 6a3.46 3.46 0 0 0 2.82-1.44c.53-.73 1-1.36.21-5.19l-2.74.13c.09.17.14.42.18.64z"/><path class="cls-2" d="M282.26 281l-.2.36-.32.54-.17.28c-.15.23-.29.45-.43.66v.07c-.16.22-.31.43-.46.62l-.15.18-.3.35-.17.17-.26.25-.17.14-.24.18-.16.1-.22.11-.15.06-.21.05h-.39a.85.85 0 0 1-.27-.14.45.45 0 0 1-.11-.14 6.29 6.29 0 0 1-.4-2c0-.39-.07-.82-.1-1.29s0-.69-.05-1.07h-2.71c.25 5.44.92 6 1.69 6.59a3.53 3.53 0 0 0 2.21.77c2.84 0 5.26-3.44 7.06-7.19l-3-.07z"/><path class="cls-59" d="M282.26 281l-.2.36-.32.54-.17.28c-.15.23-.29.45-.43.66v.07c-.16.22-.31.43-.46.62l-.15.18-.3.35-.17.17-.26.25-.17.14-.24.18-.16.1-.22.11-.15.06-.21.05h-.39a.85.85 0 0 1-.27-.14.45.45 0 0 1-.11-.14 6.29 6.29 0 0 1-.4-2c0-.39-.07-.82-.1-1.29s0-.69-.05-1.07h-2.71c.25 5.44.92 6 1.69 6.59a3.53 3.53 0 0 0 2.21.77c2.84 0 5.26-3.44 7.06-7.19l-3-.07z"/><path class="cls-2" d="M205.38 108.34a6.2 6.2 0 0 1-.25.77h.87a6.2 6.2 0 0 1-.25-.77.2.2 0 0 0-.37 0z"/><path class="cls-60" d="M205.38 108.34a6.2 6.2 0 0 1-.25.77h.87a6.2 6.2 0 0 1-.25-.77.2.2 0 0 0-.37 0z"/><path class="cls-3" d="M140.39 82.18a.58.58 0 0 0 .58-.58v-5.84a.58.58 0 0 0-1.17 0v5.83a.58.58 0 0 0 .59.59z"/><path class="cls-61" d="M140.39 82.18a.58.58 0 0 0 .58-.58v-5.84a.58.58 0 0 0-1.17 0v5.83a.58.58 0 0 0 .59.59z"/><path class="cls-3" d="M138.64 82.18a.58.58 0 0 0 .58-.58v-7a.58.58 0 1 0-1.17 0v7a.58.58 0 0 0 .59.58z"/><path class="cls-62" d="M138.64 82.18a.58.58 0 0 0 .58-.58v-7a.58.58 0 1 0-1.17 0v7a.58.58 0 0 0 .59.58z"/><path class="cls-3" d="M142.14 82.18a.58.58 0 0 0 .58-.58v-6.42a.58.58 0 0 0-1.17 0v6.41a.58.58 0 0 0 .59.59z"/><path class="cls-63" d="M142.14 82.18a.58.58 0 0 0 .58-.58v-6.42a.58.58 0 0 0-1.17 0v6.41a.58.58 0 0 0 .59.59z"/><path class="cls-3" d="M163.14 116.75a1.48 1.48 0 0 1 .44-2v-3.07a4.64 4.64 0 0 0-3.87 6l-8.77 5.54a1.16 1.16 0 1 0 1.23 1.95l8.77-5.54a4.66 4.66 0 0 0 2.12 1.19 4.57 4.57 0 0 0 .52.06v-3.66a1.46 1.46 0 0 1-.44-.47z"/><path class="cls-64" d="M163.14 116.75a1.48 1.48 0 0 1 .44-2v-3.07a4.64 4.64 0 0 0-3.87 6l-8.77 5.54a1.16 1.16 0 1 0 1.23 1.95l8.77-5.54a4.66 4.66 0 0 0 2.12 1.19 4.57 4.57 0 0 0 .52.06v-3.66a1.46 1.46 0 0 1-.44-.47z"/><path class="cls-3" d="M161.87 150.44l1.71 5.5v-9.29a3.15 3.15 0 0 0-1.71 3.79z"/><path class="cls-65" d="M161.87 150.44l1.71 5.5v-9.29a3.15 3.15 0 0 0-1.71 3.79z"/><path class="cls-3" d="M168.58 154.47a1.58 1.58 0 0 1 .26-2.89 1.52 1.52 0 0 1 .2 0v-6.68l-4.11 1.28v13a12.58 12.58 0 0 0 4.11 4.24v-8.67z"/><path class="cls-66" d="M168.58 154.47a1.58 1.58 0 0 1 .26-2.89 1.52 1.52 0 0 1 .2 0v-6.68l-4.11 1.28v13a12.58 12.58 0 0 0 4.11 4.24v-8.67z"/><path class="cls-3" d="M145.63 81.83a.58.58 0 0 0 .52.41h.17a.58.58 0 0 0 .41-.82L144.41 75a.59.59 0 1 0-1.11.41z"/><path class="cls-67" d="M145.63 81.83a.58.58 0 0 0 .52.41h.17a.58.58 0 0 0 .41-.82L144.41 75a.59.59 0 1 0-1.11.41z"/><path class="cls-3" d="M169 209.75a1.58 1.58 0 0 0-.46 1.1A12.49 12.49 0 0 0 169 214v-.09z"/><path class="cls-68" d="M169 209.75a1.58 1.58 0 0 0-.46 1.1A12.49 12.49 0 0 0 169 214v-.09z"/><path class="cls-3" d="M164.93 117.32v3.5a4.73 4.73 0 0 0 3.7-5.7l-3.45 2.08a1.45 1.45 0 0 1-.25.12z"/><path class="cls-69" d="M164.93 117.32v3.5a4.73 4.73 0 0 0 3.7-5.7l-3.45 2.08a1.45 1.45 0 0 1-.25.12z"/><path class="cls-3" d="M166.94 112.6a4.66 4.66 0 0 0-1.83-.89h-.18v2.18z"/><path class="cls-70" d="M166.94 112.6a4.66 4.66 0 0 0-1.83-.89h-.18v2.18z"/><path class="cls-2" d="M170.27 204.14a.78.78 0 0 0 .46 1l1 .38v-5.3z"/><path class="cls-71" d="M170.27 204.14a.78.78 0 0 0 .46 1l1 .38v-5.3z"/><path class="cls-2" d="M171.74 210.84a1.58 1.58 0 0 0-1.57-1.56 1.57 1.57 0 0 0-1.12.47v4.24a12.43 12.43 0 0 0 1.62 3.6 6.88 6.88 0 0 0 1.08-3.69z"/><path class="cls-72" d="M171.74 210.84a1.58 1.58 0 0 0-1.57-1.56 1.57 1.57 0 0 0-1.12.47v4.24a12.43 12.43 0 0 0 1.62 3.6 6.88 6.88 0 0 0 1.08-3.69z"/><path class="cls-2" d="M169 154.71v8.67a12.69 12.69 0 0 0 2.7 1.3v-8.54z"/><path class="cls-73" d="M169 154.71v8.67a12.69 12.69 0 0 0 2.7 1.3v-8.54z"/><path class="cls-2" d="M169 144.9v6.64a1.35 1.35 0 0 1 1.15.12l1.55.85v-8.44z"/><path class="cls-74" d="M169 144.9v6.64a1.35 1.35 0 0 1 1.15.12l1.55.85v-8.44z"/><path class="cls-2" d="M164 146.48a3.12 3.12 0 0 0-.37.16v9.29l.16.53a12.65 12.65 0 0 0 1.18 2.67v-13z"/><path class="cls-75" d="M164 146.48a3.12 3.12 0 0 0-.37.16v9.29l.16.53a12.65 12.65 0 0 0 1.18 2.67v-13z"/><path class="cls-2" d="M163.6 114.71l1.33-.84v-2.18a4.7 4.7 0 0 0-.78-.08 4.57 4.57 0 0 0-.57 0v3.07z"/><path class="cls-76" d="M163.6 114.71l1.33-.84v-2.18a4.7 4.7 0 0 0-.78-.08 4.57 4.57 0 0 0-.57 0v3.07z"/><path class="cls-2" d="M164.39 117.44a1.48 1.48 0 0 1-.81-.25v3.66a4.77 4.77 0 0 0 .51.06 4.61 4.61 0 0 0 .84-.08v-3.5a1.47 1.47 0 0 1-.54.11z"/><path class="cls-77" d="M164.39 117.44a1.48 1.48 0 0 1-.81-.25v3.66a4.77 4.77 0 0 0 .51.06 4.61 4.61 0 0 0 .84-.08v-3.5a1.47 1.47 0 0 1-.54.11z"/><path class="cls-4" d="M253.99 284.48z"/><path class="cls-78" d="M253.99 284.48z"/><path class="cls-4" d="M333.01 207.89z"/><path class="cls-79" d="M333.01 207.89z"/><path class="cls-3" d="M254 284.48a.79.79 0 0 1-.26.23.79.79 0 0 0 .26-.23z"/><path class="cls-80" d="M254 284.48a.79.79 0 0 1-.26.23.79.79 0 0 0 .26-.23z"/><path class="cls-3" d="M273.73 155.95a3.94 3.94 0 0 1 2.69 1.07 3.94 3.94 0 0 0-2.69-1.07z"/><path class="cls-81" d="M273.73 155.95a3.94 3.94 0 0 1 2.69 1.07 3.94 3.94 0 0 0-2.69-1.07z"/><path class="cls-3" d="M273.73 153.25a6.62 6.62 0 0 1 4.63 1.89 6.62 6.62 0 0 0-4.63-1.89z"/><path class="cls-82" d="M273.73 153.25a6.62 6.62 0 0 1 4.63 1.89 6.62 6.62 0 0 0-4.63-1.89z"/><path class="cls-5" d="M131.2 262.23H131.32a9.22 9.22 0 0 0 3.29-2c-1.3-.38-2.45.26-3.7.86a5.81 5.81 0 0 0-3.25 1.27 2.73 2.73 0 0 0-.24.27 9.22 9.22 0 0 0 3.78-.4z"/><path class="cls-83" d="M145.52 248.22a9.57 9.57 0 0 0-8.88-13.49 9.6 9.6 0 0 0-5.1 1.57 8.19 8.19 0 0 0-11.94 1.15h-.81a10.15 10.15 0 0 0-8.89 14.75 10.16 10.16 0 0 0 5.39 18.14 7.24 7.24 0 0 0 2.65 3.39 7.16 7.16 0 0 0 4.23 1.29h.06a14.87 14.87 0 0 0 4.47 2.62l1.2 6.67h2.69l-1.56-8.68a14.81 14.81 0 0 1-4.6-2.24 8.33 8.33 0 0 1-1.24-1.17h-.1l-.1-.12a5.87 5.87 0 0 1-1.08-2v-.08c-.32-1.14-.28-2 .1-2.18a.76.76 0 0 1 .66 0 .67.67 0 0 1 .28.48v.16a5.18 5.18 0 0 0 .16.75c0 .07 0 .13.06.2l.05.14a5.9 5.9 0 0 0 2.7 3.26.65.65 0 0 0 .31.07 13.73 13.73 0 0 0 2.34 1.07l.16.06-.65-3.65h-.18l-.5-.21a6.4 6.4 0 0 1-1-.57l-.09-.07a4.57 4.57 0 0 1-.49.9 4.35 4.35 0 0 1-.34.4l-.09-.1a4.78 4.78 0 0 1-1.1-2.4 2 2 0 0 0-.93-1.58 2.09 2.09 0 0 0-1.84-.14c-.55.21-1.74 1-.91 3.89a6.64 6.64 0 0 0 .77 1.67l.11.16a4.46 4.46 0 0 1-2-.77 4.51 4.51 0 0 1-1.56-1.93 4.57 4.57 0 0 1-.26-.76v-.16a4.59 4.59 0 0 1-.09-1.12 7.52 7.52 0 0 1-1.24.13 7.52 7.52 0 0 1-7-10.3v-.1a7.46 7.46 0 0 1 4.63-4.17l-.14-.15a7.45 7.45 0 0 1 7.17-12.58c0-.08.08-.14.12-.22a5.18 5.18 0 0 1 4-3.13 5.43 5.43 0 0 1 6.09 3.27c.08-.11.16-.2.24-.3a6.86 6.86 0 0 1 11 8.19 6.94 6.94 0 0 1-.62.76l.27.15a7.74 7.74 0 0 1 .91.52 7.9 7.9 0 0 1-4.4 14.34h-.7a7.29 7.29 0 0 1-1.29 3.68c-.08.11-.17.21-.26.32a7.34 7.34 0 0 1-.55.62c-.15.15-.29.29-.45.42l-.09.07a7.71 7.71 0 0 1-1.43.92h-.09l-.37.16a6.6 6.6 0 0 1-2.43.36.65.65 0 0 0-.53.2.66.66 0 0 0-.2.41.67.67 0 0 0 .61.73h.43a7.87 7.87 0 0 0 2.72-.5h.11l.72 4a5.75 5.75 0 0 0 2.6-1.61l.1-.12c.08-.07.17-.39 0-1.13a12.91 12.91 0 0 0-.72-1.94c-.1-.23-.18-.41-.23-.55a.69.69 0 0 1 .13-.67.68.68 0 0 1 .3-.22.7.7 0 0 1 .89.43c0 .08.11.26.19.45a17.48 17.48 0 0 1 .65 1.65v.08a18.4 18.4 0 0 0 1.35-4.49v-.07a.7.7 0 0 1 .68-.57h.25a.7.7 0 0 1 .56.82c-.43 2.29-1.17 5.08-2.87 7.07l-.07.07a7 7 0 0 1-2.58 1.86 7.09 7.09 0 0 1-.86.29h-.08l1.17 6.52c.08.42-.29.79-.86 1.09q1.71.12 3.28.32a3.3 3.3 0 0 0 .23-1.89l-.79-4.39a9.78 9.78 0 0 0 2.49-2l.15-.17c2.16-2.51 3-5.93 3.44-8.28a3.39 3.39 0 0 0-.58-2.6 10.59 10.59 0 0 0 1.93-17.2z"/><path class="cls-2" d="M133 285.11h-.46c-1 0-1.77-.21-1.87-.77v-.1h-2.69l.1.56c.27 1.48 1.6 3 4.57 3 1.77 0 4.29-.61 5.56-2.16a3.6 3.6 0 0 0 .53-.9q-1.57-.2-3.28-.32a6.69 6.69 0 0 1-2.46.69z"/><path class="cls-84" d="M133 285.11h-.46c-1 0-1.77-.21-1.87-.77v-.1h-2.69l.1.56c.27 1.48 1.6 3 4.57 3 1.77 0 4.29-.61 5.56-2.16a3.6 3.6 0 0 0 .53-.9q-1.57-.2-3.28-.32a6.69 6.69 0 0 1-2.46.69z"/></g></svg>PK
!<2B2B%chrome/content/img/figure_default.svg<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 352 303"><defs><style>.cls-1{fill:none;}.cls-2{fill:#eaeaee;}.cls-3{fill:#fff;}.cls-4{fill:#f9f9fa;}.cls-5{fill:#ccedf0;}.cls-6{fill:url(#New_Gradient_Swatch_1);}.cls-7{fill:url(#New_Gradient_Swatch_1-2);}.cls-8{fill:url(#New_Gradient_Swatch_1-3);}.cls-9{fill:url(#New_Gradient_Swatch_1-4);}.cls-10{fill:url(#New_Gradient_Swatch_1-5);}.cls-11{fill:url(#New_Gradient_Swatch_1-6);}.cls-12{fill:url(#New_Gradient_Swatch_1-7);}.cls-13{fill:url(#New_Gradient_Swatch_1-8);}.cls-14{fill:url(#New_Gradient_Swatch_1-9);}.cls-15{fill:url(#New_Gradient_Swatch_1-10);}.cls-16{fill:url(#New_Gradient_Swatch_1-11);}.cls-17{fill:url(#New_Gradient_Swatch_1-12);}</style><linearGradient id="New_Gradient_Swatch_1" x1="-2.2" y1="-128.67" x2="430.2" y2="303.74" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00c8d7"/><stop offset="1" stop-color="#0a84ff"/></linearGradient><linearGradient id="New_Gradient_Swatch_1-2" x1="24.47" y1="-155.34" x2="456.87" y2="277.07" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-3" x1="1.1" y1="-131.97" x2="433.5" y2="300.43" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-4" x1="-41.78" y1="-89.09" x2="390.62" y2="343.32" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-5" x1="-3.5" y1="-127.37" x2="428.91" y2="305.03" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-6" x1="-44.19" y1="-86.68" x2="388.21" y2="345.72" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-7" x1="-37.52" y1="-93.35" x2="394.89" y2="339.05" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-8" x1="-3.23" y1="-127.63" x2="429.17" y2="304.77" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-9" x1="1" y1="-131.87" x2="433.4" y2="300.54" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-10" x1="37.72" y1="-168.59" x2="470.13" y2="263.81" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-11" x1="31.05" y1="-161.92" x2="463.45" y2="270.49" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-12" x1="-39.13" y1="-91.73" x2="393.27" y2="340.67" xlink:href="#New_Gradient_Swatch_1"/></defs><title>default</title><path class="cls-1" d="M0 0h352v303H0z" id="Layer_1" data-name="Layer 1"/><g id="Layer_2" data-name="Layer 2"><path class="cls-2" d="M68.53 244.46a1.36 1.36 0 0 0 0 2.73h42.93v-2.73zM103.95 238.55a.68.68 0 0 0 0 1.36h7.5v-1.36zM50.35 251.74h-4.09a.68.68 0 0 0 0 1.36h4.09a.68.68 0 1 0 0-1.36zM57.17 251.74h-1.36a.68.68 0 0 0 0 1.36h1.36a.68.68 0 0 0 0-1.36zM35.35 251.74H19a.68.68 0 0 0 0 1.36h16.35a.68.68 0 1 0 0-1.36zM100.82 251.74h-4.09a.68.68 0 0 0 0 1.36h4.09a.68.68 0 0 0 0-1.36zM85.81 251.74H69.45a.68.68 0 0 0 0 1.36h16.36a.68.68 0 0 0 0-1.36zM107.64 251.74h-1.36a.68.68 0 0 0 0 1.36h1.36a.68.68 0 1 0 0-1.36zM219 68.56a.68.68 0 1 0 0-1.36h-10a8.7 8.7 0 0 1 .41 1.36z"/><path class="cls-3" d="M119.83 13c-10.31-2-12.37 8.31-12.37 8.31S100.61 3.54 83.28 5.9C75.17 7 72 11.21 71.15 15.73a.66.66 0 0 1 .93.58c0 .45.07.89.13 1.32a.68.68 0 0 1-.59.76h-.09a.68.68 0 0 1-.65-.51 23.25 23.25 0 0 0 .62 6.44h1c-.11-.3-.24-.66-.38-1.08a.68.68 0 0 1 1.3-.43c.39 1.18.71 1.91.72 1.91a.68.68 0 0 1-.62 1h-1.68A26.72 26.72 0 0 0 73 29h63.3c-2.51-4.61-8.71-14.48-16.47-16z"/><path class="cls-2" d="M75.34 5.92a.68.68 0 0 0 .44-.16 15.58 15.58 0 0 1 8.09-3.18 20.86 20.86 0 0 1 6.9.17A.68.68 0 0 0 91 1.4a22.2 22.2 0 0 0-7.35-.18 16.89 16.89 0 0 0-8.75 3.49.68.68 0 0 0 .44 1.2zM106.53 15.87a.68.68 0 1 0 1.21-.62c-.19-.37-.41-.78-.67-1.23a.68.68 0 0 0-1.18.68c.24.42.46.81.64 1.17zM157 26.51h6.45a.68.68 0 0 0 0-1.36H157a.68.68 0 1 0 0 1.36zM137.37 26.09a.68.68 0 0 0 .61.37.68.68 0 0 0 .31-.08.68.68 0 0 0 .29-.92c-.2-.38-.93-1.76-2.11-3.59a.68.68 0 0 0-1.15.74c1.15 1.78 1.86 3.11 2.05 3.48zM143.4 26.51h1.36a.68.68 0 0 0 0-1.36h-1.36a.68.68 0 1 0 0 1.36zM102.85 10.31a.68.68 0 0 0 1-.88 27.49 27.49 0 0 0-2.93-3 .68.68 0 1 0-.9 1 26.09 26.09 0 0 1 2.83 2.88zM44.23 25.69H60.6a.68.68 0 1 0 0-1.36H44.23a.68.68 0 0 0 0 1.36zM114.33 10.13a9 9 0 0 1 3.47-.66 12 12 0 0 1 2.4.24 17.56 17.56 0 0 1 8.3 4.61.68.68 0 1 0 .92-1 18.88 18.88 0 0 0-9-4.95 14.13 14.13 0 0 0-2.64-.26 10.38 10.38 0 0 0-4 .76.68.68 0 0 0 .52 1.26zM74.07 25.38a.68.68 0 0 0 .05-.65s-.33-.74-.72-1.91a.68.68 0 0 0-1.3.43c.14.42.27.78.38 1.08h-1a.68.68 0 0 0 0 1.36h2a.68.68 0 0 0 .59-.31zM71.52 18.4h.09a.68.68 0 0 0 .59-.76c-.06-.43-.1-.87-.13-1.32a.66.66 0 0 0-.93-.58.68.68 0 0 0-.44.67c0 .47.08.94.14 1.4a.64.64 0 0 0 0 .08.68.68 0 0 0 .68.51z"/><path class="cls-3" d="M43.73 31.71h120.6a1.36 1.36 0 1 0 0-2.73H43.73a1.36 1.36 0 1 0 0 2.73z"/><path class="cls-4" d="M9.21 214.33c0 1.16.13 1.42.16 1.48a3.51 3.51 0 0 0 1.46.15h100.62V93.83H9.21z"/><path class="cls-4" d="M162.9 68.24H8.76a5.14 5.14 0 0 0-5.14 5.14V217a4.62 4.62 0 0 0 4.77 4.47h103.06v-4.12H10.83c-2.5 0-3-.49-3-3V92.47h103.62v-8.2-.07H47.1a3.76 3.76 0 0 1-3.76-3.76v-.34a3.76 3.76 0 0 1 3.76-3.76h67.08a12.92 12.92 0 0 1 10.22-5h43.21a5.14 5.14 0 0 0-4.71-3.1zM17.08 83.76a3.47 3.47 0 1 1 3.47-3.47 3.47 3.47 0 0 1-3.47 3.47zm11.2 0a3.47 3.47 0 1 1 3.47-3.47 3.47 3.47 0 0 1-3.47 3.47z"/><path class="cls-2" d="M111.45 221.44H8.39A4.62 4.62 0 0 1 3.62 217V73.38a5.14 5.14 0 0 1 5.14-5.14H162.9a5.14 5.14 0 0 1 4.71 3.09h2.88a7.88 7.88 0 0 0-7.59-5.82H8.76a7.88 7.88 0 0 0-7.87 7.87V217a7.36 7.36 0 0 0 7.5 7.19h103.06z"/><path class="cls-2" d="M7.85 214.33c0 2.5.49 3 3 3h100.6V216H10.83a3.51 3.51 0 0 1-1.46-.15c0-.05-.16-.32-.16-1.48V93.83h102.24v-1.36H7.85z"/><circle class="cls-2" cx="17.08" cy="80.28" r="3.47"/><circle class="cls-2" cx="28.28" cy="80.28" r="3.47"/><path class="cls-2" d="M43.34 80.11v.34a3.76 3.76 0 0 0 3.76 3.76h64.36a12.87 12.87 0 0 1 2.72-7.85H47.1a3.76 3.76 0 0 0-3.76 3.75z"/><path class="cls-4" d="M237.06 71.33h71a12.92 12.92 0 0 1 10.22 5H352v-8.09H241.78a5.14 5.14 0 0 0-4.72 3.09zM321 84.27v8.19h31v-8.25h-31v.06zM320.98 105.82v110.14h30.98V93.83h-30.98v11.99zM320.98 217.32h30.98v4.12h-30.98z"/><path class="cls-2" d="M234.19 71.33h2.88a5.14 5.14 0 0 1 4.71-3.09H352v-2.73H241.78a7.88 7.88 0 0 0-7.59 5.82zM320.98 221.44h30.98v2.73h-30.98zM320.98 92.47h30.98v1.36h-30.98zM320.98 215.96h30.98v1.36h-30.98zM321 84.21h31v-7.85h-33.75a12.87 12.87 0 0 1 2.75 7.85z"/><path class="cls-3" d="M325.33 49.22c-1.39-2.54-4.84-8.05-9.17-8.88a5.3 5.3 0 0 0-5.63 2l-.07.25a.67.67 0 0 1-.4.47 7.4 7.4 0 0 0-.78 1.94s-3.81-9.91-13.45-8.59c-7.09 1-7.34 6.19-6.67 9.67h1.46v.58l.59-.25a.77.77 0 0 1 0 .69.7.7 0 0 1-.55.35h-1.13a14.64 14.64 0 0 0 .63 1.82h35.21z"/><path class="cls-2" d="M299.85 34.58a10 10 0 0 1 1.24.29.68.68 0 1 0 .39-1.31 11.65 11.65 0 0 0-1.41-.33.69.69 0 0 0-.79.56.68.68 0 0 0 .57.79zM291.08 37a.68.68 0 0 0 .5-.22 6.64 6.64 0 0 1 3.17-1.84.68.68 0 1 0-.38-1.31 8 8 0 0 0-3.8 2.23.68.68 0 0 0 .5 1.14zM331.12 47.19h4.09a.68.68 0 0 0 0-1.36h-4.09a.68.68 0 0 0 0 1.36zM291.17 47.05a.77.77 0 0 0 0-.69l-.59.25V46h-16.23a.68.68 0 0 0 0 1.36h16.27a.7.7 0 0 0 .55-.31zM310.47 42.55l.07-.25c.3-1 1.42-3.92 4.73-3.92a6.87 6.87 0 0 1 1.27.13 11.24 11.24 0 0 1 5.68 3.49.68.68 0 0 0 1-1 12.54 12.54 0 0 0-6.4-3.85 8.23 8.23 0 0 0-1.53-.15c-4.76 0-6 4.68-6.13 5.22a.68.68 0 0 0 .51.82h.16a.71.71 0 0 0 .66-.52z"/><path class="cls-3" d="M274.14 51.95h67.07a1.36 1.36 0 0 0 0-2.73h-67.09a1.36 1.36 0 0 0 0 2.72zM321 221.44V84.27v-.07a13 13 0 0 0-13-12.87h-98.39a8.75 8.75 0 0 1-1.07 3.41H308a8.87 8.87 0 0 1 8.86 8.85v171.08a8.24 8.24 0 0 1-8.41 8H124a8.24 8.24 0 0 1-8.41-8V83.59a8.87 8.87 0 0 1 8.86-8.85h59.16a8.78 8.78 0 0 1-1.07-3.41H124.4a13 13 0 0 0-12.94 12.88v171.14A12.34 12.34 0 0 0 124 267.49h184.48A12.34 12.34 0 0 0 321 255.35v-33.91z"/><ellipse class="cls-2" cx="218.21" cy="293.46" rx="100.21" ry="8.29"/><path class="cls-5" d="M124.4 77.47a6.13 6.13 0 0 0-6.13 6.13v171.07A5.51 5.51 0 0 0 124 260h184.48a5.51 5.51 0 0 0 5.68-5.32V83.59a6.13 6.13 0 0 0-6.16-6.12H206.13c-.08.06-.15.14-.23.2l-7.63 6.22a3.49 3.49 0 0 1-4.37 0l-7.65-6.19c-.1-.06-.17-.15-.26-.22zm27.39 14.35a4.14 4.14 0 1 1-4.14-4.14 4.14 4.14 0 0 1 4.14 4.14zm-21.62 0a4.14 4.14 0 1 1 4.14 4.18 4.14 4.14 0 0 1-4.14-4.18zm168 4.14a4.14 4.14 0 1 1 4.14-4.14 4.14 4.14 0 0 1-4.18 4.18zm-17.48-4.14a4.14 4.14 0 1 1 4.09 4.18 4.14 4.14 0 0 1-4.14-4.18zm-18.29-4.68a4.48 4.48 0 0 1 4.48 4.48V92a4.48 4.48 0 0 1-4.48 4.48h-7.13a13.49 13.49 0 0 1-.21 9.84h54.11v145.2c0 3-.58 3.56-3.56 3.56H126.87c-3 0-3.56-.58-3.56-3.56V106.33H213a13.54 13.54 0 0 1-.23-9.84h-42.7A4.48 4.48 0 0 1 165.6 92v-.4a4.48 4.48 0 0 1 4.48-4.48z"/><path class="cls-4" d="M250.18 112.24l-13.56 11.06a4.07 4.07 0 0 1-5.11 0l-13.62-11a13.13 13.13 0 0 1-3.79-3.82 13.35 13.35 0 0 1-1.12-2.12h-89.67v145.16c0 3 .58 3.56 3.56 3.56h178.7c3 0 3.56-.58 3.56-3.56V106.33H255a13.18 13.18 0 0 1-1.17 2.21 13.39 13.39 0 0 1-3.65 3.7zm12.34 29.39a31.77 31.77 0 0 1-6.63 46.9l-37 30.17a6.43 6.43 0 0 1-4 1.41 6.36 6.36 0 0 1-4-1.42l-37.19-30.11a31.07 31.07 0 0 1-9.16-9.15 31.94 31.94 0 0 1 4.17-39.94 31.76 31.76 0 0 1 44.91.09l.05.05a1.37 1.37 0 0 0 1 .43 1.47 1.47 0 0 0 1.07-.49 31.78 31.78 0 0 1 46.76 2.06z"/><path class="cls-3" d="M238.19 130.31a31.58 31.58 0 0 0-22.43 9.27 1.47 1.47 0 0 1-1.07.49 1.37 1.37 0 0 1-1-.43l-.05-.05a31.76 31.76 0 0 0-44.91-.09 31.94 31.94 0 0 0-4.17 39.94 31.07 31.07 0 0 0 9.16 9.15l37.19 30.11a6.36 6.36 0 0 0 4 1.42 6.43 6.43 0 0 0 4-1.41l37-30.17a31.8 31.8 0 0 0-17.69-58.22zm22.25 13.09a29 29 0 0 1-6.18 42.94l-37.05 30.24a3.67 3.67 0 0 1-2.3.81 3.61 3.61 0 0 1-2.28-.81l-37.3-30.19a28.32 28.32 0 0 1-8.48-8.43 29.35 29.35 0 0 1 3.81-36.51 29 29 0 0 1 41.05.08 4.11 4.11 0 0 0 2.93 1.24 4.16 4.16 0 0 0 3-1.24 29.05 29.05 0 0 1 42.75 1.89z"/><path class="cls-4" d="M185.87 141.47A21.57 21.57 0 0 0 169 160.85a4.88 4.88 0 0 0 4.46 5.24 2.51 2.51 0 0 0 .39 0 4.85 4.85 0 0 0 4.83-4.46A11.92 11.92 0 0 1 188 151a4.86 4.86 0 1 0-2.11-9.49z"/><path class="cls-3" d="M252.91 92.49A13.42 13.42 0 0 0 234 90.87a13.38 13.38 0 0 0-21.25 5.63 13.54 13.54 0 0 0 .23 9.84 13.35 13.35 0 0 0 1.12 2.12 13.13 13.13 0 0 0 3.79 3.82l13.62 11a4.07 4.07 0 0 0 5.11 0l13.56-11.06a13.39 13.39 0 0 0 3.66-3.7 13.18 13.18 0 0 0 1.17-2.21 13.49 13.49 0 0 0 .21-9.84 13.24 13.24 0 0 0-2.31-3.98zM251.56 107a10.68 10.68 0 0 1-3 3l-13.63 11.12a1.35 1.35 0 0 1-.85.3 1.33 1.33 0 0 1-.84-.3l-13.72-11.11a10.42 10.42 0 0 1-3.12-3.1 10.8 10.8 0 0 1 1.4-13.43 10.68 10.68 0 0 1 15.1 0 1.51 1.51 0 0 0 1.1.52 1.53 1.53 0 0 0 1.09-.46A10.7 10.7 0 0 1 251.56 107z"/><path class="cls-4" d="M223.39 93.54a7.94 7.94 0 0 0-6.21 7.13 1.8 1.8 0 0 0 1.64 1.93h.18a1.78 1.78 0 0 0 1.78-1.64 4.39 4.39 0 0 1 3.39-3.96 1.79 1.79 0 0 0-.78-3.49z"/><path class="cls-3" d="M183.56 74.74c.09.16.15.32.26.48a8.56 8.56 0 0 0 2.18 2.25c.09.07.17.15.26.22l7.65 6.19a3.49 3.49 0 0 0 4.37 0l7.63-6.22c.08-.06.15-.13.23-.2a8.72 8.72 0 0 0 2.11-2.19c.11-.17.19-.36.3-.54a8.92 8.92 0 0 0 .52-7.54 8.57 8.57 0 0 0-1.43-2.41A8.77 8.77 0 0 0 196 63.15a8.71 8.71 0 0 0-13.55 8.18 8.78 8.78 0 0 0 1.11 3.41zm3.33-8.6a6 6 0 0 1 8.53 0 .85.85 0 0 0 .61.26.87.87 0 0 0 .61-.26 6 6 0 0 1 8.89.39 5.83 5.83 0 0 1 .46.65 5.94 5.94 0 0 1 .64 1.36 6.11 6.11 0 0 1 .24 2.77 5.94 5.94 0 0 1-.91 2.44 6 6 0 0 1-1.7 1.7l-7.7 6.28a.76.76 0 0 1-.48.17.75.75 0 0 1-.47-.17l-7.75-6.28a5.89 5.89 0 0 1-1.76-1.75 6 6 0 0 1-.88-2.4 6.06 6.06 0 0 1 1.67-5.16z"/><path class="cls-4" d="M190.06 66.15a4.48 4.48 0 0 0-3.51 4 1 1 0 0 0 .93 1.09h.08a1 1 0 0 0 1-.93 2.48 2.48 0 0 1 1.94-2.22 1 1 0 1 0-.44-2z"/><path class="cls-6" d="M206.65 68.56h-10.49a.68.68 0 0 1 0-1.36H206a5.83 5.83 0 0 0-.46-.65 6 6 0 0 0-8.89-.39.87.87 0 0 1-.61.26.85.85 0 0 1-.61-.26 6 6 0 0 0-10.21 5.17h21.67a6.11 6.11 0 0 0-.24-2.77zm-16.15-.44a2.48 2.48 0 0 0-1.94 2.22 1 1 0 0 1-1 .93h-.08a1 1 0 0 1-.93-1.09 4.48 4.48 0 0 1 3.51-4 1 1 0 1 1 .44 2z"/><path class="cls-7" d="M213.15 55.07l12.73 10.3a1.23 1.23 0 0 0 .78.28 1.25 1.25 0 0 0 .78-.28l12.65-10.32a9.92 9.92 0 1 0-12.48-15.3 1.42 1.42 0 0 1-1 .42 1.4 1.4 0 0 1-1-.42 9.91 9.91 0 0 0-14 0 10 10 0 0 0-1.3 12.46 9.66 9.66 0 0 0 2.84 2.86zm3.6-15.33a1.66 1.66 0 0 1 .72 3.24 4.07 4.07 0 0 0-3.18 3.65 1.66 1.66 0 0 1-1.65 1.52h-.13a1.67 1.67 0 0 1-1.51-1.79 7.36 7.36 0 0 1 5.75-6.62z"/><path class="cls-2" d="M195.48 67.88a.68.68 0 0 0 .68.68h10.49a5.94 5.94 0 0 0-.64-1.36h-9.85a.68.68 0 0 0-.68.68z"/><path class="cls-8" d="M195.48 67.88a.68.68 0 0 0 .68.68h10.49a5.94 5.94 0 0 0-.64-1.36h-9.85a.68.68 0 0 0-.68.68z"/><path class="cls-3" d="M206.13 77.47H308a6.13 6.13 0 0 1 6.13 6.13v171.07a5.51 5.51 0 0 1-5.68 5.32H124a5.51 5.51 0 0 1-5.68-5.32V83.59a6.13 6.13 0 0 1 6.13-6.13H186a8.56 8.56 0 0 1-2.17-2.25c-.1-.15-.17-.32-.26-.48H124.4a8.87 8.87 0 0 0-8.86 8.85v171.09a8.24 8.24 0 0 0 8.41 8h184.53a8.24 8.24 0 0 0 8.41-8V83.59a8.87 8.87 0 0 0-8.89-8.85h-99.46c-.1.18-.18.36-.3.54a8.72 8.72 0 0 1-2.11 2.19z"/><path class="cls-9" d="M206.13 77.47H308a6.13 6.13 0 0 1 6.13 6.13v171.07a5.51 5.51 0 0 1-5.68 5.32H124a5.51 5.51 0 0 1-5.68-5.32V83.59a6.13 6.13 0 0 1 6.13-6.13H186a8.56 8.56 0 0 1-2.17-2.25c-.1-.15-.17-.32-.26-.48H124.4a8.87 8.87 0 0 0-8.86 8.85v171.09a8.24 8.24 0 0 0 8.41 8h184.53a8.24 8.24 0 0 0 8.41-8V83.59a8.87 8.87 0 0 0-8.89-8.85h-99.46c-.1.18-.18.36-.3.54a8.72 8.72 0 0 1-2.11 2.19z"/><path class="cls-3" d="M186.1 73.73a5.89 5.89 0 0 0 1.76 1.75l7.75 6.28a.75.75 0 0 0 .47.17.76.76 0 0 0 .48-.17l7.7-6.28a6 6 0 0 0 1.7-1.7 5.94 5.94 0 0 0 .91-2.44h-21.65a6 6 0 0 0 .88 2.39z"/><path class="cls-10" d="M186.1 73.73a5.89 5.89 0 0 0 1.76 1.75l7.75 6.28a.75.75 0 0 0 .47.17.76.76 0 0 0 .48-.17l7.7-6.28a6 6 0 0 0 1.7-1.7 5.94 5.94 0 0 0 .91-2.44h-21.65a6 6 0 0 0 .88 2.39z"/><circle class="cls-3" cx="134.31" cy="91.82" r="4.14"/><circle class="cls-11" cx="134.31" cy="91.82" r="4.14"/><circle class="cls-3" cx="147.65" cy="91.82" r="4.14"/><circle class="cls-12" cx="147.65" cy="91.82" r="4.14"/><path class="cls-3" d="M170.07 87.14a4.48 4.48 0 0 0-4.48 4.48V92a4.48 4.48 0 0 0 4.48 4.48h42.67A13.4 13.4 0 0 1 234 90.87a13.4 13.4 0 0 1 21.23 5.63h7.13a4.48 4.48 0 0 0 4.48-4.5v-.4a4.48 4.48 0 0 0-4.48-4.48z"/><path class="cls-13" d="M170.07 87.14a4.48 4.48 0 0 0-4.48 4.48V92a4.48 4.48 0 0 0 4.48 4.48h42.67A13.4 13.4 0 0 1 234 90.87a13.4 13.4 0 0 1 21.23 5.63h7.13a4.48 4.48 0 0 0 4.48-4.5v-.4a4.48 4.48 0 0 0-4.48-4.48z"/><path class="cls-3" d="M242.64 90.44a10.65 10.65 0 0 0-7.55 3.12A1.53 1.53 0 0 1 234 94a1.51 1.51 0 0 1-1.08-.46 10.68 10.68 0 0 0-15.1 0 10.8 10.8 0 0 0-1.4 13.43 10.42 10.42 0 0 0 3.12 3.1l13.72 11.11a1.33 1.33 0 0 0 .84.3 1.35 1.35 0 0 0 .85-.3l13.63-11.12a10.7 10.7 0 0 0-5.91-19.61zM224.17 97a4.39 4.39 0 0 0-3.43 3.93 1.78 1.78 0 0 1-1.78 1.64h-.14a1.8 1.8 0 0 1-1.64-1.93 7.94 7.94 0 0 1 6.21-7.13 1.79 1.79 0 0 1 .78 3.49z"/><path class="cls-14" d="M242.64 90.44a10.65 10.65 0 0 0-7.55 3.12A1.53 1.53 0 0 1 234 94a1.51 1.51 0 0 1-1.08-.46 10.68 10.68 0 0 0-15.1 0 10.8 10.8 0 0 0-1.4 13.43 10.42 10.42 0 0 0 3.12 3.1l13.72 11.11a1.33 1.33 0 0 0 .84.3 1.35 1.35 0 0 0 .85-.3l13.63-11.12a10.7 10.7 0 0 0-5.91-19.61zM224.17 97a4.39 4.39 0 0 0-3.43 3.93 1.78 1.78 0 0 1-1.78 1.64h-.14a1.8 1.8 0 0 1-1.64-1.93 7.94 7.94 0 0 1 6.21-7.13 1.79 1.79 0 0 1 .78 3.49z"/><circle class="cls-3" cx="298.13" cy="91.82" r="4.14"/><circle class="cls-15" cx="298.13" cy="91.82" r="4.14"/><circle class="cls-3" cx="284.78" cy="91.82" r="4.14"/><circle class="cls-16" cx="284.78" cy="91.82" r="4.14"/><path class="cls-3" d="M238.19 133a29 29 0 0 0-20.51 8.48 4.16 4.16 0 0 1-3 1.24 4.11 4.11 0 0 1-2.93-1.24 29 29 0 0 0-41.05-.08 29.35 29.35 0 0 0-3.81 36.51 28.32 28.32 0 0 0 8.48 8.43l37.3 30.19a3.61 3.61 0 0 0 2.28.81 3.67 3.67 0 0 0 2.3-.81l37.05-30.24A29.08 29.08 0 0 0 238.19 133zM188 151a11.92 11.92 0 0 0-9.33 10.69 4.85 4.85 0 0 1-4.83 4.46 2.51 2.51 0 0 1-.39 0 4.88 4.88 0 0 1-4.46-5.24 21.57 21.57 0 0 1 16.89-19.38A4.86 4.86 0 1 1 188 151z"/><path class="cls-17" d="M238.19 133a29 29 0 0 0-20.51 8.48 4.16 4.16 0 0 1-3 1.24 4.11 4.11 0 0 1-2.93-1.24 29 29 0 0 0-41.05-.08 29.35 29.35 0 0 0-3.81 36.51 28.32 28.32 0 0 0 8.48 8.43l37.3 30.19a3.61 3.61 0 0 0 2.28.81 3.67 3.67 0 0 0 2.3-.81l37.05-30.24A29.08 29.08 0 0 0 238.19 133zM188 151a11.92 11.92 0 0 0-9.33 10.69 4.85 4.85 0 0 1-4.83 4.46 2.51 2.51 0 0 1-.39 0 4.88 4.88 0 0 1-4.46-5.24 21.57 21.57 0 0 1 16.89-19.38A4.86 4.86 0 1 1 188 151z"/><path class="cls-3" d="M211.54 57.27l12.63 10.22a4 4 0 0 0 5 0l12.57-10.26A12.65 12.65 0 1 0 226.59 37a12.63 12.63 0 0 0-17 .79A12.7 12.7 0 0 0 208 53.68a12.37 12.37 0 0 0 3.54 3.59zm0-17.55a9.91 9.91 0 0 1 14 0 1.4 1.4 0 0 0 1 .42 1.42 1.42 0 0 0 1-.42 9.92 9.92 0 1 1 12.48 15.3l-12.58 10.35a1.25 1.25 0 0 1-.78.28 1.23 1.23 0 0 1-.78-.28l-12.73-10.3a9.66 9.66 0 0 1-2.89-2.88 10 10 0 0 1 1.3-12.46z"/><path class="cls-4" d="M212.51 48.14h.13a1.66 1.66 0 0 0 1.65-1.52 4.07 4.07 0 0 1 3.18-3.62 1.66 1.66 0 0 0-.72-3.24 7.36 7.36 0 0 0-5.75 6.6 1.67 1.67 0 0 0 1.51 1.78z"/></g></svg>PK
!<7%chrome/content/img/figure_private.svg<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 352 303"><defs><style>.cls-1{fill:none;}.cls-2{fill:#eaeaee;}.cls-3{fill:#f9f9fa;}.cls-4{fill:#e1e1e6;}.cls-5{fill:#fff;}.cls-6{fill:#ccedf0;}.cls-7{fill:url(#New_Gradient_Swatch_1);}.cls-8{fill:url(#New_Gradient_Swatch_1-2);}.cls-9{fill:url(#New_Gradient_Swatch_1-3);}.cls-10{fill:url(#New_Gradient_Swatch_1-4);}.cls-11{fill:url(#New_Gradient_Swatch_1-5);}.cls-12{fill:url(#New_Gradient_Swatch_1-6);}.cls-13{fill:url(#New_Gradient_Swatch_1-7);}.cls-14{fill:url(#New_Gradient_Swatch_1-8);}.cls-15{fill:url(#New_Gradient_Swatch_1-9);}.cls-16{fill:url(#New_Gradient_Swatch_1-10);}.cls-17{fill:url(#New_Gradient_Swatch_1-11);}.cls-18{fill:url(#New_Gradient_Swatch_1-12);}.cls-19{fill:url(#New_Gradient_Swatch_1-13);}</style><linearGradient id="New_Gradient_Swatch_1" x1="32.85" y1="-164.62" x2="464.89" y2="267.42" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00c8d7"/><stop offset="1" stop-color="#0a84ff"/></linearGradient><linearGradient id="New_Gradient_Swatch_1-2" x1="251.69" y1="167.11" x2="323.02" y2="238.45" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-3" x1="-54.51" y1="-77.26" x2="377.54" y2="354.78" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-4" x1="-14.77" y1="-117" x2="417.27" y2="315.04" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-5" x1="20.3" y1="-152.07" x2="452.35" y2="279.97" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-6" x1="-37.83" y1="-93.94" x2="394.21" y2="338.1" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-7" x1="18.94" y1="-150.71" x2="450.98" y2="281.33" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-8" x1="-10.34" y1="-121.43" x2="421.71" y2="310.61" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-9" x1="-71.71" y1="-60.06" x2="360.33" y2="371.98" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-10" x1="-50.96" y1="-80.81" x2="381.08" y2="351.23" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-11" x1="23.51" y1="-155.28" x2="455.55" y2="276.76" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-12" x1="2.08" y1="-133.85" x2="434.12" y2="298.2" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-13" x1="-4.89" y1="-126.88" x2="427.16" y2="305.16" xlink:href="#New_Gradient_Swatch_1"/></defs><title>private</title><path class="cls-1" d="M0 0h352v303H0z" id="Layer_1" data-name="Layer 1"/><g id="Layer_2" data-name="Layer 2"><path class="cls-1" d="M304 279.51a20 20 0 0 1-.08-2.56c0-1.16.09-2.89.15-4.86a73.12 73.12 0 0 1-16.82 1.86c-2.29 0-4.64-.09-7-.28-1.61-.13-3.13-.29-4.58-.5.07 2.27.13 4.3.17 5.62h1c9.66-.01 18.86.21 27.16.72zM238.25 73.79s-.16-.37-.4-1l-6.34 1zM276.8 200.29z"/><path class="cls-2" d="M310.37 286.24a6 6 0 0 1-4.37-1.84 7.89 7.89 0 0 1-2-4.89c-8.3-.46-17.5-.72-27.2-.72h-1v.07c.07 2.54-.12 5.41-2.1 7.45a6 6 0 0 1-4.34 1.85c-3.87 0-6.4-3.19-9.46-9.1-28.4.92-49.35 4.12-49.35 7.93 0 4.53 29.65 8.2 66.22 8.2S343 291.51 343 287c0-2.6-9.82-4.92-25.1-6.43-2.28 3.7-4.49 5.67-7.53 5.67zM239.79 102.78a1.32 1.32 0 0 0 .23-.71 1.36 1.36 0 0 0-1.36-1.36h-68v2.73h60.63a12.75 12.75 0 0 1 5.1-.94 24.55 24.55 0 0 1 3.4.28zM181.3 96.51a.68.68 0 0 0 0-1.36h-10.64v1.36zM196.14 108.83a.68.68 0 0 0-.68-.68h-16.35a.68.68 0 1 0 0 1.36h16.35a.68.68 0 0 0 .68-.68zM206.36 109.51h4.09a.68.68 0 1 0 0-1.36h-4.09a.68.68 0 0 0 0 1.36zM215.9 109.51h1.36a.68.68 0 1 0 0-1.36h-1.36a.68.68 0 1 0 0 1.36zM258.2 109.51h2.66a.68.68 0 1 0 0-1.36h-4.09a.67.67 0 0 0-.54.28l.33.17c.5.25 1.05.57 1.64.91zM267.68 108.15h-1.36a.68.68 0 1 0 0 1.36h1.36a.68.68 0 1 0 0-1.36zM246.2 38.45a.17.17 0 0 0-.19-.14l-7.3 1.15a.17.17 0 0 0-.14.19l.48 3 7.63-1.2zM237.85 72.79c-.22-.59-.51-1.42-.78-2.42h-1A.68.68 0 1 1 236 69h.69c-.06-.26-.12-.52-.17-.79a11.38 11.38 0 1 1 4.19-15.14 17.1 17.1 0 0 1 8-3c.36 0 .7-.08 1-.11l-.52-3.31a22.63 22.63 0 0 0-2.83.57l.72-.11c.07 0 .14 0 .14.05l.37 2.36s0 .08-.12.1l-5.79.91c-.07 0-.14 0-.14-.05l-.14-.9a10.52 10.52 0 0 0-1.31 1.16.68.68 0 1 1-1-.93c2.23-2.38 5.55-3.89 9.88-4.5l-.25-2.31a1.78 1.78 0 0 0-2-1.48L239 42.68l-28.69 4.52a1.78 1.78 0 0 0-1.48 2l3.11 19.8h13.19a.68.68 0 1 1 0 1.36h-13l.54 3.42h18.82zM215.7 65.6a2.12 2.12 0 1 1 1.76-2.42 2.12 2.12 0 0 1-1.76 2.42z"/><path class="cls-3" d="M241.66 50.52s.07.07.14.05l5.79-.91c.07 0 .13-.05.12-.1l-.37-2.36s-.07-.07-.14-.05l-.72.11a14.24 14.24 0 0 0-5 2.36z"/><circle class="cls-3" cx="215.37" cy="63.51" r="2.12" transform="rotate(-8.95 215.312 63.517)"/><path class="cls-3" d="M229 47.21a11.38 11.38 0 1 0 7.6 21 23.86 23.86 0 0 1-.5-5.05 7.14 7.14 0 1 1 1.55-6.51 10.92 10.92 0 0 1 3.14-3.58A11.37 11.37 0 0 0 229 47.21z"/><path class="cls-2" d="M229.61 51.39A7.15 7.15 0 1 0 236 63.16v-.82s0-.31-.07-.47a.68.68 0 0 1 .15-.51 13 13 0 0 1 1.43-4.71 7.12 7.12 0 0 0-7.9-5.26zm2.94 6.12a1.3 1.3 0 1 1 1.08-1.51 1.3 1.3 0 0 1-1.08 1.5z"/><circle class="cls-3" cx="232.34" cy="56.22" r="1.3" transform="matrix(1 -.16 .16 1 -5.92 36.82)"/><path class="cls-2" d="M92.57 7.15a.16.16 0 0 0-.18-.15l-7.06.61a.16.16 0 0 0-.15.17l.26 2.93 7.38-.64zM61.24 27a2 2 0 0 1 2.09 1.38 16.73 16.73 0 0 1 5 6.55 7.35 7.35 0 0 1 .67-1.71l-.13-.12a.69.69 0 0 1-.64-.43s-.09-.22-.23-.51a10.91 10.91 0 1 1 13.74 2.61 30.69 30.69 0 0 1 3 4.46l10.56-.92a1.71 1.71 0 0 0 1.55-1.85l-2.17-24.83a1.71 1.71 0 0 0-1.85-1.55l-7.38.64-27.78 2.42A1.71 1.71 0 0 0 56.12 15l1 11.12a11.25 11.25 0 0 1 4 1zm32.26 9.56a.68.68 0 0 1-.68.68h-4.09a.68.68 0 1 1 0-1.36h4.09a.68.68 0 0 1 .68.68zm-.42-21l.2 2.28s-.05.08-.12.08l-5.6.49c-.07 0-.13 0-.13-.06l-.2-2.28s.05-.08.12-.08l5.6-.49c.05.03.12.06.13.1zm-33.87 8.8h-.14a10.85 10.85 0 0 0-1.27-.18.68.68 0 0 1 .11-1.36 12 12 0 0 1 1.43.21.68.68 0 0 1-.14 1.35z"/><path class="cls-3" d="M87.35 16c-.07 0-.12 0-.12.08l.2 2.28s.06.07.13.06l5.6-.49c.07 0 .12 0 .12-.08l-.2-2.28s-.06-.07-.13-.06z"/><path class="cls-4" d="M61.24 27h-.17a12.11 12.11 0 0 1 2.26 1.35A2 2 0 0 0 61.24 27z"/><path class="cls-3" d="M87.3 24.3A10.91 10.91 0 1 0 68 32.16c-.07-.15-.16-.33-.26-.54a.68.68 0 0 1 1-.89 7.35 7.35 0 0 1 1.66-2.29 6.86 6.86 0 1 1 11 1.47.67.67 0 0 1-1 .88 6.78 6.78 0 0 1-1.81.94 16.79 16.79 0 0 1 3.13 3A10.9 10.9 0 0 0 87.3 24.3z"/><path class="cls-3" d="M69.59 32.3A5.31 5.31 0 0 1 72 30.45a6.88 6.88 0 0 1-.87-.88 6.39 6.39 0 0 0-1.54 2.73zM68.88 33.1l.13.12.12-.21a.64.64 0 0 1-.14.07z"/><path class="cls-2" d="M80.4 30.78a10.27 10.27 0 0 0-4.62-2.42 7 7 0 0 0-1.31-.13 4.55 4.55 0 0 0-3.35 1.35 6.88 6.88 0 0 0 .87.88 6.18 6.18 0 0 1 3.4-.21 8.23 8.23 0 0 1 3.22 1.48 6.78 6.78 0 0 0 1.81-.94z"/><path class="cls-2" d="M76 27a11.6 11.6 0 0 1 5.24 2.72.67.67 0 0 1 .14.17 6.83 6.83 0 1 0-11-1.47 5.86 5.86 0 0 1 4.1-1.58A8.36 8.36 0 0 1 76 27zm2-5a1.25 1.25 0 1 1-1.13 1.35A1.25 1.25 0 0 1 78 22z"/><circle class="cls-3" cx="78.14" cy="23.22" r="1.25" transform="rotate(-4.97 78.17 23.25)"/><path class="cls-5" d="M303.13 73.8c-2.56-4.69-8.92-14.85-16.89-16.37-10.56-2-12.67 8.52-12.67 8.52S266.82 48.43 249.83 50c-.35 0-.69.06-1 .11a17.1 17.1 0 0 0-8 3 10.92 10.92 0 0 0-3.14 3.58 13 13 0 0 0-1.43 4.71.68.68 0 0 1 .45-.25.7.7 0 0 1 .75.6c.05.45.11.89.18 1.31a.68.68 0 0 1-.56.78h-.11a.68.68 0 0 1-.67-.57c0-.3-.09-.61-.13-.92v.82a23.86 23.86 0 0 0 .5 5.05c.05.27.11.54.17.79h1l-.13-.35a.68.68 0 0 1 1.28-.46c.27.76.47 1.21.48 1.22a.68.68 0 0 1-.62 1h-1.7c.28 1 .56 1.83.78 2.42s.4 1 .4 1h64.88z"/><path class="cls-2" d="M302.55 67.89a.68.68 0 0 0 1.16-.72c-.74-1.19-1.53-2.34-2.33-3.43a.68.68 0 1 0-1.1.81c.79 1.05 1.55 2.18 2.27 3.34zM320.49 71.21H331a.68.68 0 1 0 0-1.36h-10.51a.68.68 0 1 0 0 1.36zM267.48 53.09a.68.68 0 0 0 1-.95 25.78 25.78 0 0 0-3.15-2.77.68.68 0 1 0-.81 1.1 24.28 24.28 0 0 1 2.96 2.62zM306.86 71.21h1.36a.68.68 0 1 0 0-1.36h-1.36a.68.68 0 1 0 0 1.36zM271.54 58.37a.68.68 0 1 0 1.17-.71c-.23-.38-.48-.77-.75-1.18a.68.68 0 1 0-1.13.76c.25.39.49.76.71 1.13zM278.55 55.65a8.71 8.71 0 0 1 5.62-1.89 13.16 13.16 0 0 1 2.45.24 15.86 15.86 0 0 1 6.25 2.88.68.68 0 1 0 .8-1.1 17.19 17.19 0 0 0-6.79-3.11 14.59 14.59 0 0 0-2.71-.27 10 10 0 0 0-6.47 2.2.68.68 0 1 0 .85 1.06zM239.25 50.82a.68.68 0 0 0 1 0 10.52 10.52 0 0 1 1.31-1.16 14.24 14.24 0 0 1 5-2.36 22.63 22.63 0 0 1 2.83-.57h.08a21.88 21.88 0 0 1 5.44-.08.68.68 0 1 0 .15-1.35 23.21 23.21 0 0 0-5.78.09h-.11c-4.33.61-7.65 2.12-9.88 4.5a.68.68 0 0 0-.04.93zM235.35 69.69a.68.68 0 0 0 .68.68h2.73a.68.68 0 0 0 .62-1s-.2-.46-.48-1.22a.68.68 0 0 0-1.28.46l.13.35H236a.68.68 0 0 0-.65.73zM225.81 69.69a.68.68 0 0 0-.68-.68h-16.35a.68.68 0 1 0 0 1.36h16.35a.68.68 0 0 0 .68-.68zM236 61.88c0 .16 0 .31.07.47 0 .31.08.62.13.92a.68.68 0 0 0 .67.57h.13a.68.68 0 0 0 .56-.78c-.07-.43-.13-.87-.18-1.31a.7.7 0 0 0-.75-.6.69.69 0 0 0-.6.75z"/><path class="cls-5" d="M208.26 76.52h123.57a1.36 1.36 0 0 0 0-2.73H208.26a1.36 1.36 0 0 0 0 2.73zM84.81 39.38l-.08-.15a30.69 30.69 0 0 0-3-4.46 16.79 16.79 0 0 0-3.13-3 8.23 8.23 0 0 0-3.22-1.48 6.18 6.18 0 0 0-3.4.21 5.31 5.31 0 0 0-2.4 1.85c0 .14-.06.23-.06.25a.66.66 0 0 1-.4.46l-.12.21a7.35 7.35 0 0 0-.65 1.73 16.73 16.73 0 0 0-5-6.55 12.11 12.11 0 0 0-2.26-1.35 11.25 11.25 0 0 0-4-1 12.52 12.52 0 0 0-2.52.07c-7.27 1-7.52 6.35-6.83 9.92h1.16a.68.68 0 0 1 0 1.36h-.84a15.07 15.07 0 0 0 .65 1.88H32h1.83z"/><path class="cls-2" d="M98.27 37.24h1.36a.68.68 0 0 0 0-1.36h-1.36a.68.68 0 1 0 0 1.36zM49.26 27.3a.68.68 0 0 0 .55-.28 6.18 6.18 0 0 1 2.93-2.14.68.68 0 1 0-.48-1.27 7.49 7.49 0 0 0-3.56 2.62.68.68 0 0 0 .55 1.08zM59.34 23.06a12 12 0 0 0-1.43-.21.68.68 0 0 0-.11 1.36 10.85 10.85 0 0 1 1.27.18h.14a.68.68 0 0 0 .14-1.35zM88.73 35.88a.68.68 0 1 0 0 1.36h4.09a.68.68 0 0 0 0-1.36zM74.48 28.22a7 7 0 0 1 1.31.13 10.27 10.27 0 0 1 4.62 2.42.67.67 0 0 0 1-.88.67.67 0 0 0-.14-.17A11.6 11.6 0 0 0 76 27a8.36 8.36 0 0 0-1.56-.15 5.86 5.86 0 0 0-4.1 1.58 7.35 7.35 0 0 0-1.66 2.29.68.68 0 0 0-1 .89c.11.21.19.38.26.54s.21.48.23.51a.69.69 0 0 0 .64.43H69a.64.64 0 0 0 .14-.07.66.66 0 0 0 .4-.46s0-.11.06-.25a6.39 6.39 0 0 1 1.53-2.73 4.55 4.55 0 0 1 3.35-1.36zM49.58 36.78a.68.68 0 0 0-.68-.68H32.55a.68.68 0 0 0 0 1.36H48.9a.68.68 0 0 0 .68-.68z"/><path class="cls-5" d="M32.34 42.1h68.72a1.36 1.36 0 1 0 0-2.73H32.34a1.36 1.36 0 1 0 0 2.73z"/><path class="cls-3" d="M66.2 133.52c-8.52.37-12 5.43-12 6.68s5.62 4.8 11.14 4.8 12-2 12-3.82c.03-2.03-3.1-8-11.14-7.66zM102.27 133.52c-8-.35-11.16 5.62-11.16 7.63 0 1.8 6.5 3.82 12 3.82s11.16-3.52 11.16-4.77-3.48-6.31-12-6.68z"/><path class="cls-3" d="M167.94 85.81V66.65a5.16 5.16 0 0 0-5.16-5.16H8a5.16 5.16 0 0 0-5.16 5.16v144.16a4.64 4.64 0 0 0 4.79 4.48h155.52a4.64 4.64 0 0 0 4.79-4.48zm-13.52-15.72a3.49 3.49 0 1 1-3.49 3.49 3.49 3.49 0 0 1 3.49-3.49zm-11.25 0a3.49 3.49 0 1 1-3.49 3.49 3.49 3.49 0 0 1 3.5-3.49zM42.74 73.41a3.77 3.77 0 0 1 3.77-3.77h77.77a3.77 3.77 0 0 1 3.77 3.77v.34a3.77 3.77 0 0 1-3.77 3.77H46.51a3.77 3.77 0 0 1-3.77-3.77zm-15.13-3.32a3.49 3.49 0 1 1-3.49 3.49 3.49 3.49 0 0 1 3.49-3.49zm-11.25 0a3.49 3.49 0 1 1-3.49 3.49 3.49 3.49 0 0 1 3.5-3.49zm144.33 141.07H10.1c-2.51 0-3-.49-3-3V85.81h156.59v122.35c0 2.51-.49 3-3 3z"/><path class="cls-3" d="M162.33 87.17H8.46v121c0 1.17.13 1.43.17 1.49a3.46 3.46 0 0 0 1.47.15h150.59c1.16 0 1.43-.13 1.48-.17a3.47 3.47 0 0 0 .16-1.48zm-54.9 75c-8.75 0-14.8-10.49-23.19-10.49s-15 10.49-23.19 10.49c-10.79 0-18.76-10.19-18.89-27.66-.08-10.84 3.17-14.31 17.18-14.31s18.12 5.72 24.91 5.72 10.9-5.72 24.91-5.72 17.26 3.46 17.18 14.31c-.15 17.43-8.12 27.63-18.91 27.63z"/><path class="cls-2" d="M170.66 96.51V66.65a7.9 7.9 0 0 0-7.89-7.89H8a7.9 7.9 0 0 0-7.87 7.89v144.16A7.37 7.37 0 0 0 7.64 218h155.51a7.37 7.37 0 0 0 7.51-7.21V96.51zm-7.51 118.79H7.64a4.64 4.64 0 0 1-4.79-4.48V66.65A5.16 5.16 0 0 1 8 61.48h154.77a5.16 5.16 0 0 1 5.16 5.16v144.17a4.64 4.64 0 0 1-4.78 4.49z"/><path class="cls-2" d="M163.69 85.81H7.1v122.35c0 2.51.49 3 3 3h150.59c2.51 0 3-.49 3-3zm-1.52 123.83c-.05 0-.32.17-1.48.17H10.1a3.46 3.46 0 0 1-1.47-.15c0-.05-.17-.32-.17-1.49v-121h153.87v121a3.47 3.47 0 0 1-.16 1.47z"/><circle class="cls-2" cx="16.37" cy="73.58" r="3.49"/><circle class="cls-2" cx="27.61" cy="73.58" r="3.49"/><rect class="cls-2" x="42.74" y="69.63" width="85.32" height="7.89" rx="3.77" ry="3.77"/><circle class="cls-2" cx="143.18" cy="73.58" r="3.49"/><circle class="cls-2" cx="154.42" cy="73.58" r="3.49"/><path class="cls-2" d="M109.14 120.17c-14 0-18.12 5.72-24.91 5.72s-10.89-5.72-24.91-5.72-17.26 3.46-17.18 14.31c.13 17.47 8.1 27.66 18.89 27.66 8.23 0 14.8-10.49 23.19-10.49s14.44 10.49 23.19 10.49c10.79 0 18.76-10.19 18.89-27.66.1-10.85-3.15-14.31-17.16-14.31zM65.34 145c-5.52 0-11.16-3.52-11.16-4.77s3.51-6.31 12-6.68c8-.35 11.16 5.62 11.16 7.63.03 1.82-6.48 3.82-12 3.82zm37.79 0c-5.52 0-12-2-12-3.82 0-2 3.13-8 11.16-7.63 8.52.37 12 5.43 12 6.68s-5.64 4.77-11.16 4.77z"/><path class="cls-5" d="M347 149.35a2.11 2.11 0 0 1 2.25-1.95 1.24 1.24 0 0 1 .92.43 1.23 1.23 0 0 0-.93-.45h-.15a2.11 2.11 0 0 0-2.1 2c0 .06 0 .62-.09 1.43.04-.81.1-1.4.1-1.46zM351.12 151.5l-.07.16.08-.18a2.1 2.1 0 0 1 .7-.85 2.1 2.1 0 0 0-.71.87zM341.11 149.46a2.3 2.3 0 0 1 1-3.08c1.13-.56 2 .84 2.61 1.56a11.23 11.23 0 0 1 1.54 1.67 10.85 10.85 0 0 0-1.55-1.69c-.52-.6-1.21-1.69-2.09-1.69a1.17 1.17 0 0 0-.52.13 2.3 2.3 0 0 0-1 3.08l1.77 3.56.78 1.57-.77-1.55zM333.82 157.26a14 14 0 0 0 2-1.44 7.39 7.39 0 0 1 4.05-.76 14.94 14.94 0 0 1 3.46 1 15 15 0 0 0-3.44-1 3.67 3.67 0 0 0-.66-.05 7.6 7.6 0 0 0-3.39.81 14 14 0 0 1-2 1.44 4.34 4.34 0 0 0-1.08.61 4.25 4.25 0 0 1 1.06-.61zM227 188a3.83 3.83 0 0 1-1.26-.68 3.81 3.81 0 0 0 1.26.68zM231.85 183.61a3.82 3.82 0 0 1-3.74 4.54 3.78 3.78 0 0 1-.55 0 3.72 3.72 0 0 0 2-.21 3.82 3.82 0 0 0 2.33-4.27 2.89 2.89 0 0 1 .51-2.27 2.88 2.88 0 0 0-.55 2.21zM229.07 183.12h-1.89a2.43 2.43 0 0 0-.09 1.67 1.1 1.1 0 0 0 1 .69 1.07 1.07 0 0 0 .4-.08 1.09 1.09 0 0 0 .67-1.21 5.54 5.54 0 0 1-.09-1.07zM232 142.68c-.1.2-.17.4-.26.59l.38-.78zM229.14 166.63q-.25-1-.44-2.1c-.06-.36-.1-.72-.15-1.08.05.35.08.7.14 1.06.12.72.31 1.42.45 2.12zM286.9 112.33h-2.13a66.89 66.89 0 0 0-11.61 1.07 74.11 74.11 0 0 0-13.16 3.46 40.07 40.07 0 0 0-6.31-4.14 55.41 55.41 0 0 0-7.49-3.28c-1.42-.5-2.83-.94-4.19-1.29a25.13 25.13 0 0 0-5.93-.88 6.71 6.71 0 0 0-3.43.73l-.21.15a5.1 5.1 0 0 0-1.21 1.36c-3.19 5-4.92 19.22.11 31.63l.12-.18c-5.64-14-2.63-30.4 1.3-32.79 3.37-2 13.51.8 20.86 4.73a39.92 39.92 0 0 1 6.28 4.12 73.87 73.87 0 0 1 13.32-3.55 64.58 64.58 0 0 1 13.87-1 39.55 39.55 0 0 1 4.63-6.25c5.57-6.21 14.14-12.34 18-11.57 4.54.91 13 15.41 12.41 30.64l.15.12c.67-15.36-8-30-12.55-31a3.94 3.94 0 0 0-.77-.07c-4.3 0-12.14 5.85-17.39 11.7-.55.61-1.15 1.33-1.76 2.1-.34.43-.68.89-1 1.36-.69.9-1.33 1.83-1.91 2.83zM332.34 159.81a1.88 1.88 0 0 0 .08.22h-.13.14a2.23 2.23 0 0 1-.09-.22zM306.63 191.87l-.06.15c8.45-.56 17-2.52 19.42-4.55-.12.39-.21.63-.21.64a.77.77 0 0 0 .46 1 .8.8 0 0 0 .26 0 .77.77 0 0 0 .72-.51 35.89 35.89 0 0 0 1.23-4.59c-.59 2.52-1.25 4.44-1.3 4.57a.68.68 0 1 1-1.29-.45s.16-.45.37-1.16l-.07.11c-1.7 1.92-10.16 4.19-19.53 4.79zM210.3 178.28c.47.7.5 1.1.83 1.57-.31-.47-.35-.85-.83-1.57zM259.84 220.48a86.89 86.89 0 0 0-3.49 13.7 87.83 87.83 0 0 1 3.65-14.03l-.12.32zM333.68 162.76zM324.6 191.31a39.51 39.51 0 0 1-6.23 1.83 16.35 16.35 0 0 0 6.56-1.65zM332.91 176.42a7.09 7.09 0 0 1-.19-1.18q-.39-.27-.77-.58c0 1.57-.07 3.2-.15 4.77a37.91 37.91 0 0 1-1.23 7.52 13.74 13.74 0 0 0 2.34-10.53zM328 170.62l-.44.73a53.94 53.94 0 0 1 .44 6c.14-2.43.11-4.79 0-6.73zM217.07 186.36v.07zM251.64 204.15l-.27.25a3.5 3.5 0 0 1-4.91-.45 39.43 39.43 0 0 1-5.35-8.83c-.75-1.78-1.48-3.65-2.13-5.39a12.41 12.41 0 0 1-1.68 2.89 6.73 6.73 0 0 1 .16 1.14 13.5 13.5 0 0 0 7.94 10.91 16.81 16.81 0 0 0 6.63 1.4 18.76 18.76 0 0 0 9.68-2.89 52.8 52.8 0 0 1-9.18 1z"/><path class="cls-5" d="M249.36 200.93l.3.33a.68.68 0 0 1-1 .93c0-.05-.45-.48-1-1.19.52.71.88 1.15.92 1.2a.77.77 0 1 0 1.18-1 12.91 12.91 0 0 0 2.82.26 63 63 0 0 0 14.69-2.33l-.09-.11a61.33 61.33 0 0 1-14.55 2.28 11.4 11.4 0 0 1-3.27-.37zM265.27 277.4c-.44-.79-.91-1.68-1.43-2.71-.28-.55-.53-1.11-.78-1.68.24.56.49 1.12.76 1.66.53 1.04 1 1.93 1.45 2.73zM330.89 168.8a8.15 8.15 0 0 0 .4.84 8.16 8.16 0 0 1-.39-.82c-.33-.81.13-2.16 0-3.06 0-.34-.07-.68-.1-1 0 .31.06.63.09 1 .11.88-.33 2.24 0 3.04zM241.8 186.16c.6 1.91 1.36 4.13 2.24 6.3a56 56 0 0 1-1.5-5.71zM219.67 190.79a9.29 9.29 0 0 1-.6-.91 9.36 9.36 0 0 0 .6.91zM267 202.39c.36-.81.72-1.6 1.07-2.34-.35.72-.71 1.51-1.07 2.34zM213.87 170.72a2.1 2.1 0 0 1 1 .14 2.09 2.09 0 0 0-.8-.18 2.2 2.2 0 0 0-.2.04zM231 175.73a14 14 0 0 1-2.34-.79 4.47 4.47 0 0 0-1.11-.12 7.39 7.39 0 0 0-3 .58 18.46 18.46 0 0 0-1.94 1.17v.06a18.27 18.27 0 0 1 2-1.2 7.39 7.39 0 0 1 4.1-.46 14 14 0 0 0 2.34.79 2.37 2.37 0 0 1 1.89.83 2.34 2.34 0 0 0-1.94-.86zM212.64 173.26c.16.73.13 1.54.23 2.21l-.13-.15a2.12 2.12 0 0 0-1.6-.73h-.2a2.12 2.12 0 0 1 1.82.71l.13.15c-.1-.67-.07-1.48-.23-2.21-.23-1-.38-2 .7-2.43a2.08 2.08 0 0 1 .27-.08 2 2 0 0 0-.29.05c-1.08.46-.92 1.44-.7 2.48zM233.16 177.5l.69-.12zM339 165.72h.09a1.09 1.09 0 0 0 1.08-1 2.43 2.43 0 0 0-.57-1.57l-1.79.6a5.65 5.65 0 0 1 .2 1 1.09 1.09 0 0 0 .99.97z"/><path class="cls-5" d="M339.08 168.45h-.32a3.82 3.82 0 0 1-2.77-1.56 3.81 3.81 0 0 0 6.9-1.91 5 5 0 0 0-.79-3 5 5 0 0 1 .78 3 3.82 3.82 0 0 1-3.8 3.47zM309 276.42a9.5 9.5 0 0 0 .24 2.86 9.79 9.79 0 0 1-.23-2.84c.07-2.3.21-6.89.34-11.09-.11 4.2-.25 8.77-.35 11.07zM219.82 167.77h-.21c-1.08 0-1.46 1.46-1.83 2.28a7.77 7.77 0 0 0-1.08 2.5l-.14.83.14-.84a7.77 7.77 0 0 1 1.08-2.5c.38-.87.79-2.47 2-2.26a2.29 2.29 0 0 1 1.49.92 2.29 2.29 0 0 0-1.45-.93zM209.72 177.5c-.61-.91-.7-1.71.07-2.37a2 2 0 0 1 .25-.18 1.91 1.91 0 0 0-.26.16c-.78.66-.68 1.47-.06 2.39zM224 270.32a1.36 1.36 0 0 1-1.92.18 1.34 1.34 0 0 1-.46-.83h-.19a1.52 1.52 0 0 0 .53 1 1.54 1.54 0 0 0 2.17-.21s.19-.24.42-.57h-.18c-.17.22-.31.39-.37.43zM197.16 241.93a.67.67 0 0 1 .23-.55c.31-.26 5.66-4.64 15.24-7.44a1.33 1.33 0 0 1 .54-.49 1.34 1.34 0 0 1 1.14 0 57.45 57.45 0 0 1 9.15-1.58 1.33 1.33 0 0 1 2.14-.14c.43 0 .83-.06 1.27-.08 2.74-.1 5.28 0 7.65.09a1.37 1.37 0 0 1 1.14-.31 2.05 2.05 0 0 1 .69.42 70.22 70.22 0 0 1 9.58 1.41 1.35 1.35 0 0 1 1.76-.08s.34.28.76.69a44.2 44.2 0 0 1 6.67 2.29v-.11a44.62 44.62 0 0 0-6.44-2.22c-.5-.49-.84-.77-.89-.81a1.48 1.48 0 0 0-.93-.33 1.56 1.56 0 0 0-1.08.44 70.74 70.74 0 0 0-9.26-1.36 2.37 2.37 0 0 0-.83-.53h-.3a1.54 1.54 0 0 0-1.05.42c-1.5-.08-3.06-.13-4.7-.13h-2.78c-.38 0-.74 0-1.12.07a1.56 1.56 0 0 0-1.18-.55 1.49 1.49 0 0 0-.8.23 1.51 1.51 0 0 0-.47.48 57.7 57.7 0 0 0-8.86 1.52 1.61 1.61 0 0 0-.74-.18 1.43 1.43 0 0 0-.6.13 1.5 1.5 0 0 0-.64.6c-9.5 2.8-14.81 7.15-15.12 7.41a.76.76 0 0 0-.26.67c-2.86 2.09-4.87 4.48-5.4 7.13a7.56 7.56 0 0 0-.12 1.94 7.57 7.57 0 0 1 .13-1.92c.54-2.62 2.58-5.06 5.48-7.13z"/><path class="cls-5" d="M349.41 142.61a7.48 7.48 0 0 0-2.22.34 6.71 6.71 0 0 0-4.2-1.48 6.58 6.58 0 0 0-2.94.7 7.74 7.74 0 0 0-2.09 1.52 40.77 40.77 0 0 0-9.89-18.26c.4-16.88-8.78-34-17-35.67a9.42 9.42 0 0 0-1.84-.18c-7.37 0-16.95 8.49-21.45 13.51a48.69 48.69 0 0 0-3.54 4.43 73.53 73.53 0 0 0-11.74 1.15 83.67 83.67 0 0 0-11.3 2.77c-1.08-.75-2.12-1.39-3.05-1.93-.59-.34-1.14-.66-1.63-.92l-.33-.17a55.07 55.07 0 0 0-16.45-5.64 24.55 24.55 0 0 0-3.39-.28 12.75 12.75 0 0 0-5.1.94 9.29 9.29 0 0 0-1.16.59c-7.11 4.32-9.88 23.58-3.74 39.31a40.78 40.78 0 0 0-3.06 20.49 7.72 7.72 0 0 0-2.26-.75A6.82 6.82 0 0 0 220 163a6.47 6.47 0 0 0-5.46 2.93 7.53 7.53 0 0 0-2.72.51 6.69 6.69 0 0 0-4.07 4.45 7.46 7.46 0 0 0-1.14.83c-2.54 2.23-3.64 6.26-.4 10.28v.07a8.26 8.26 0 0 0 1.4 2.28l.68.8c1.23 1.45 2.22 2.61 2.86 3.26l.9.91.77.78a15.87 15.87 0 0 0 1.81 3.15l.42.53c.21.33.44.66.67 1a18.67 18.67 0 0 0 5.45 5.09 30.32 30.32 0 0 0 17.8 21.52 34.29 34.29 0 0 0 13.52 2.84h1.11q-.84 2.92-1.43 5.58l-.37-.11-.2-.17a7 7 0 0 0-6-1.33c-2.21-.42-4.49-.75-6.81-1a6.1 6.1 0 0 0-1.64-.58 7 7 0 0 0-3.55.23c-1.19 0-2.36-.07-3.54-.07h-2.56a7 7 0 0 0-6 .45 63.39 63.39 0 0 0-6.72 1.17 6.88 6.88 0 0 0-3.6.6 6.64 6.64 0 0 0-1.22.73c-9.66 3.09-15.14 7.54-15.75 8.06a6.18 6.18 0 0 0-1.26 1.45c-3.45 2.84-5.55 6-6.23 9.46-1.55 7.75 4.08 15.72 14.81 21.26a6.92 6.92 0 0 0 1 1.52 7 7 0 0 0 7.62 2 56.44 56.44 0 0 0 8.69 2l.07.06a7 7 0 0 0 8.3.44c1 0 2-.08 2.89-.17a66.92 66.92 0 0 0 6.83-1l.31.15a7 7 0 0 0 8.72-2.53q2.52-.84 5-1.87a7 7 0 0 0 5.5-.35 44.73 44.73 0 0 0 2.92 7.59l.64 1.26c3.06 5.91 5.59 9.1 9.46 9.1a6 6 0 0 0 4.34-1.85c2-2 2.18-4.91 2.1-7.45v-.07c0-1.32-.1-3.35-.17-5.62 1.45.21 3 .37 4.58.5 2.36.18 4.72.28 7 .28a73.12 73.12 0 0 0 16.82-1.86c-.06 2-.11 3.7-.15 4.86a20 20 0 0 0 .08 2.56 7.89 7.89 0 0 0 2 4.89 6 6 0 0 0 4.34 1.85c3 0 5.25-2 7.55-5.68.83-1.34 1.66-2.9 2.56-4.68a56.38 56.38 0 0 0 5-18.11c3.66-10.15.56-28.75-2.93-39q-1.33-3.93-2.67-7.53a33.28 33.28 0 0 0 20.22-8.11 30.33 30.33 0 0 0 10.7-25.8 14.56 14.56 0 0 0 1.05-1.28v-7.56c-.07.26-.15.52-.24.78a14.73 14.73 0 0 1-4 6.33 27.83 27.83 0 0 1-9.66 24.74 30.64 30.64 0 0 1-20.26 7.51q-1.07 0-2.17-.07c1.34 3.43 2.7 7.17 4 11.16 3.3 9.71 6.42 28.19 2.84 37.51-.54 4.81-1.8 11.63-4.75 17.53a41.61 41.61 0 0 1-3.62 6.23c-1.42 1.89-2.65 2.63-4 2.63a3.31 3.31 0 0 1-2.39-1 4.41 4.41 0 0 1-1.09-2.16 13.22 13.22 0 0 1-.24-3.32c.05-1.84.16-5.14.26-8.54a67 67 0 0 1-19.66 2.73c-2.22 0-4.5-.09-6.79-.27a59.16 59.16 0 0 1-7.62-1l.28 9v.55c0 2.45-.39 4-1.34 4.93a3.31 3.31 0 0 1-2.39 1c-2 0-3.66-1.53-6-5.78-.5-.9-1-1.92-1.62-3.07a48.46 48.46 0 0 1-4-12.43 15.76 15.76 0 0 1-.75 1.77 4.25 4.25 0 0 1-3.79 2.31 4.3 4.3 0 0 1-2-.48l-.33-.19a69 69 0 0 1-6.89 2.6l-.08.18a4.26 4.26 0 0 1-5.64 2.12 4.13 4.13 0 0 1-.9-.56 64.85 64.85 0 0 1-7.62 1.17c-1.14.11-2.35.16-3.59.17a4.27 4.27 0 0 1-5.62.17 4.2 4.2 0 0 1-.54-.54 53.52 53.52 0 0 1-10.12-2.29 4.25 4.25 0 0 1-6.29-2.56c-10.19-5-15.64-12.06-14.3-18.76.59-2.93 2.5-5.69 5.68-8.2a3.44 3.44 0 0 1 .89-1.15c.58-.49 5.86-4.77 15.32-7.71a4 4 0 0 1 1-.7 4.13 4.13 0 0 1 1.75-.39 4.24 4.24 0 0 1 .82.08 60.64 60.64 0 0 1 7.54-1.31l.25-.18a4.23 4.23 0 0 1 4.24-.16H229.56c1.33 0 2.64 0 4 .09a4.27 4.27 0 0 1 2.58-.3 3.7 3.7 0 0 1 1.32.56 74.15 74.15 0 0 1 7.8 1.13 4.23 4.23 0 0 1 4.16.64c.05 0 .25.21.56.49 1.48.42 2.74.84 3.78 1.22a91 91 0 0 1 3.24-12.33 30 30 0 0 1-4.91.41 31.58 31.58 0 0 1-12.45-2.63 27.82 27.82 0 0 1-16.47-20.85 14.72 14.72 0 0 1-5.67-4.89c-.23-.31-.44-.63-.64-1s-.31-.37-.45-.55a13.29 13.29 0 0 1-1.69-3.06l-1.26-1.27-.78-.79c-.57-.57-1.57-1.74-2.72-3.1l-.7-.82a5.6 5.6 0 0 1-1-1.57 2.42 2.42 0 0 0-.41-.7c-2.26-2.81-1.43-5.22.06-6.52a4.74 4.74 0 0 1 1.84-1 3.83 3.83 0 0 1 2.57-3.77 4.79 4.79 0 0 1 3.23-.09c.49-1.15 1.58-3.17 4-3.17a4.07 4.07 0 0 1 .66.05 5 5 0 0 1 4.13 5.77l-.29 1.78a11.09 11.09 0 0 1 3.41-.53h.54a36.13 36.13 0 0 1-2-7.12 38 38 0 0 1 3-22.3c-6.44-15.26-3.32-33.66 2.21-37a9.15 9.15 0 0 1 4.85-1.12c5.6 0 13.52 2.9 18.89 5.77a44.82 44.82 0 0 1 5.51 3.47 79.25 79.25 0 0 1 12.23-3.12 70 70 0 0 1 12.08-1.11h.63v-.06c.31-.47.62-.92.94-1.36a46.43 46.43 0 0 1 3.14-3.92c4.54-5.07 13.46-12.61 19.42-12.61a6.68 6.68 0 0 1 1.31.12c6.34 1.27 15.56 17.5 14.72 34a38 38 0 0 1 10.44 19.93 36.09 36.09 0 0 1 .54 7.07 11.38 11.38 0 0 1 3.27-.53h.25l-.8-1.61a5 5 0 0 1 2.26-6.73 3.88 3.88 0 0 1 1.74-.41 4.81 4.81 0 0 1 3.65 2 4.8 4.8 0 0 1 2.77-.88h.35a3.93 3.93 0 0 1 2.41 1V143a7.4 7.4 0 0 0-1.87-.41z"/><path class="cls-5" d="M208.32 267.27a1.36 1.36 0 0 1-2.13-1.59l-.18-.08a1.53 1.53 0 0 0 2.41 1.78s.25-.22.58-.57l-.16-.06c-.29.31-.49.49-.52.52zM252.89 264.66a1.33 1.33 0 0 1-1.33-1.21l-.17.08a1.51 1.51 0 0 0 .78 1.11 1.54 1.54 0 0 0 2.07-.66 16.37 16.37 0 0 0 .93-2.41l-.2.11a15.55 15.55 0 0 1-.87 2.24 1.36 1.36 0 0 1-1.21.74zM259.47 259c.17 1.33.4 2.81.7 4.35-.32-1.61-.53-3.06-.7-4.35zM241 268.48a1.36 1.36 0 0 1-1.8.68 1.34 1.34 0 0 1-.76-1h-.18a1.51 1.51 0 0 0 .85 1.11 1.54 1.54 0 0 0 2-.77c0-.07.23-.52.49-1.24l-.18.06c-.22.68-.42 1.09-.42 1.16z"/><path class="cls-6" d="M206.53 265.21s4.63-4.18 6.73-13.84c2-9-.3-15-.69-16a44.42 44.42 0 0 0-14.3 7 .68.68 0 0 1-1-.08.67.67 0 0 1-.15-.41c-2.9 2.1-4.95 4.51-5.48 7.18a7.57 7.57 0 0 0-.13 1.92v.1c0 .26.06.52.1.78 0 .1 0 .21.05.31s.11.45.17.68.08.28.13.42.14.39.22.59.15.36.24.53.15.33.24.49.27.47.41.71l.19.31c2.4 3.68 7 7.1 12.7 9.62l.18.08a1.34 1.34 0 0 1 .39-.39zM238.51 267.35a40.81 40.81 0 0 0 2.49-18.74 24.57 24.57 0 0 0-6.16-14.46 1.36 1.36 0 0 1-.23-.18 1.94 1.94 0 0 1-.55-.86c-2.24-.12-4.61-.16-7.16-.07h-.53c1.27 2.53 3.93 9.08 3.35 18.76-.63 10.54-4.19 16.37-5.34 18h1.26c1.19 0 2.37 0 3.55-.16q1.17-.11 2.3-.26h.08a65.67 65.67 0 0 0 6.66-1.24h.18a1.33 1.33 0 0 1 .1-.79z"/><path class="cls-6" d="M251.68 262.67c0-.06 3.12-6.29 1-15.6a22.49 22.49 0 0 0-6.68-11.74 1.33 1.33 0 0 1-.43-.7 69.09 69.09 0 0 0-7.7-1.22 28 28 0 0 1 5.89 14.95 44.14 44.14 0 0 1-2.29 19l.18-.06a65.81 65.81 0 0 0 9.74-3.75l.17-.08a1.33 1.33 0 0 1 .12-.8zM221.93 268.58c0-.05 4.4-5.53 5.08-16.91s-3.53-18.23-3.57-18.3 0-.07 0-.1a55.76 55.76 0 0 0-8.2 1.41c.71 1.85 2.69 8.21.72 17.27-1.91 8.76-5.69 13.36-7.08 14.8l.16.06a50.17 50.17 0 0 0 12.44 2.83h.19a1.34 1.34 0 0 1 .26-1.06z"/><path class="cls-3" d="M248.45 233.89c-.43-.41-.72-.65-.76-.69a1.35 1.35 0 0 0-1.76.08 70.22 70.22 0 0 0-9.58-1.41 2.05 2.05 0 0 0-.69-.42 1.37 1.37 0 0 0-1.14.31c-2.38-.13-4.91-.18-7.65-.09-.43 0-.84.06-1.27.08a1.33 1.33 0 0 0-2.14.14 57.45 57.45 0 0 0-9.15 1.58 1.34 1.34 0 0 0-1.14 0 1.33 1.33 0 0 0-.54.49c-9.58 2.8-14.93 7.18-15.24 7.44a.71.71 0 0 0-.08 1 .68.68 0 0 0 1 .08 44.42 44.42 0 0 1 14.3-7c.39.94 2.65 7 .69 16-2.1 9.66-6.69 13.8-6.73 13.84a1.34 1.34 0 0 0-.34.47 1.36 1.36 0 0 0 2.13 1.59s.23-.21.52-.51c1.39-1.45 5.17-6 7.08-14.8 2-9.07 0-15.43-.72-17.27a55.76 55.76 0 0 1 8.2-1.41v.1s4.26 6.83 3.57 18.3-5 16.86-5.08 16.91a1.4 1.4 0 0 0 .18 1.92 1.36 1.36 0 0 0 1.92-.18s.16-.21.36-.48c1.15-1.63 4.71-7.46 5.34-18 .58-9.68-2.08-16.23-3.35-18.76h.53c2.55-.09 4.93 0 7.16.07a1.94 1.94 0 0 0 .55.86 1.36 1.36 0 0 0 .23.18 24.57 24.57 0 0 1 6.15 14.3 40.81 40.81 0 0 1-2.52 18.74 1.43 1.43 0 0 0 .68 1.8 1.36 1.36 0 0 0 1.8-.68c0-.07.21-.47.45-1.14a44.14 44.14 0 0 0 2.29-19 28 28 0 0 0-5.89-14.95 69.09 69.09 0 0 1 7.7 1.22 1.33 1.33 0 0 0 .43.7 22.49 22.49 0 0 1 6.71 11.74c2.12 9.31-1 15.54-1 15.6a1.43 1.43 0 0 0 .59 1.84 1.36 1.36 0 0 0 1.84-.58 15.55 15.55 0 0 0 .87-2.24 29.14 29.14 0 0 0 .37-15.21 26.12 26.12 0 0 0-5.11-10.61 37.48 37.48 0 0 1 5 1.89c0-.57-.09-1.09-.12-1.56a44.2 44.2 0 0 0-6.64-2.28zM302.14 205a28.57 28.57 0 0 1-13.43 5.42 26.07 26.07 0 0 1-15.71-2.56c-5.79 8.47-11.44 21.61-11.16 34 .47 20.47 17.73 23.35 28.92 22.86 7.31-.32 14.31-2.95 18.95-8.22v-.07l.12-.07a22 22 0 0 0 5-10.56c2.33-12.58-3.27-25.15-8.4-34.77a28.19 28.19 0 0 0-4.29-6.03z"/><path class="cls-6" d="M351.13 151.52l-.08.18c-.06-.41-.17-.86-.27-1.32 0-.13 0-.26-.07-.4s-.07-.31-.08-.47a3.17 3.17 0 0 0-.45-1.67 1.24 1.24 0 0 0-.92-.43 2.11 2.11 0 0 0-2.25 1.95c0 .06 0 .62-.09 1.44l-.38-.76c-.07-.14-.14-.27-.21-.39a11.23 11.23 0 0 0-1.54-1.67c-.62-.72-1.48-2.13-2.61-1.56a2.3 2.3 0 0 0-1 3.08l1.77 3.56.77 1.55c1.7 1.39 5 4.14 5.43 5.08a.68.68 0 0 1-1.22.61 35.41 35.41 0 0 0-4.52-4.17 14.94 14.94 0 0 0-3.46-1 7.39 7.39 0 0 0-4.05.76 14 14 0 0 1-2 1.44 4.25 4.25 0 0 0-1.1.63 34.25 34.25 0 0 0 .39-8.7v-.06q-.13-1.46-.38-2.92c-.16-.9-.36-1.78-.58-2.65l-.09-.31q-.31-1.15-.7-2.27l-.12-.34a34.18 34.18 0 0 0-2.2-4.87l-.1-.17q-.61-1.09-1.29-2.13l-.15-.23a37.59 37.59 0 0 0-3.35-4.33l-.23-.23a37.65 37.65 0 0 0-11.06-7.29.68.68 0 0 1 .51-1.27 38.91 38.91 0 0 1 6.11 3.27c-.05-13.73-7.68-25.54-10.28-26.06H309c-2.33 0-9.32 4.24-15.15 10.74a38.32 38.32 0 0 0-3.6 4.65c9.73 1 14.31 4.54 14.58 4.75a.68.68 0 0 1-.85 1.07c-.09-.07-9.59-7.34-30.43-3.67s-27.24 12.48-27.31 12.57a.68.68 0 0 1-1.12-.78c.18-.26 3.24-4.51 12-8.4a39.05 39.05 0 0 0-4.67-2.91c-6.43-3.44-13.08-5.12-16.37-5.12a3.71 3.71 0 0 0-1.79.32c-2.25 1.37-5.35 14.88-.86 27.71a42.55 42.55 0 0 1 5.46-6.2.68.68 0 0 1 .9 1 44.34 44.34 0 0 0-7.31 9l-.23.47-.38.78c-.19.4-.37.81-.54 1.21s-.32.73-.46 1.09q-.4 1-.74 2c-.13.39-.24.78-.35 1.17s-.25.85-.36 1.29-.2.82-.29 1.23-.16.78-.23 1.17-.16.85-.22 1.27-.1.82-.14 1.23q-.12 1.11-.17 2.23v2.49s0 .74.05 1.1.06.9.11 1.36.11.84.17 1.26.09.72.15 1.08q.19 1.06.44 2.1c.15.62.32 1.22.5 1.82l.15.47c.14.45.3.89.46 1.32.08.23.17.46.26.69s.27.65.41 1a35.23 35.23 0 0 0 2.92 5.42l7.21-1.28-.32-1.82a6.37 6.37 0 0 1 .46-4.43 1.87 1.87 0 0 1-.52-3.7h.09c-1.07-16.83 14.12-32.84 35.4-36.59 22.51-4 43.3 7.3 46.45 25.15 0 .24.07.47.1.71a31.65 31.65 0 0 1 2.59 5.76l6.41-1.14a1.88 1.88 0 0 1 .57 0l.06-.25a2.23 2.23 0 0 0 .09.25 1.85 1.85 0 0 1 1.38 1.23 3.78 3.78 0 0 0 2.21.18l3.74-1.25a3.67 3.67 0 0 1 2.19 1.8 5 5 0 0 1 .79 3 3.82 3.82 0 0 1-7.61.07 2.86 2.86 0 0 0-.17-.7v-.1a2.85 2.85 0 0 0-.27-.5l-.09-.13a2.92 2.92 0 0 0-.41-.44l-.05-.05a3 3 0 0 0-.53-.34 1.87 1.87 0 0 1-1.31 1l-6 1.06a55.81 55.81 0 0 1 1.23 6.57l.44-.73c-.11-2.83-.3-4.78-.31-4.81a.68.68 0 0 1 .61-.75.7.7 0 0 1 .75.61s.1 1 .2 2.57c.57-1.15 1.09-2.32 1.55-3.5 0 .32.06.66.1 1 .09.9-.36 2.26 0 3.06a8.16 8.16 0 0 0 .39.82l.08.13c.12.21.24.42.38.63s.32.45.49.66a8.7 8.7 0 0 0 3.27 2.6 4.57 4.57 0 0 0 0 2.07c0 .09 2.15 9.16-5.29 15.45a19.2 19.2 0 0 1-12.68 4.67 23.93 23.93 0 0 1-10.42-2.47 4.33 4.33 0 0 0-1.07-.39c-2.43 4.35-8.24 6.39-9.54 6.8a13.26 13.26 0 0 1-8.34 5.48 10.67 10.67 0 0 1-9.33-2.64c-.89.22-3 .42-7.26-.76a8.79 8.79 0 0 1-3.54-1.88c-.34.74-.7 1.53-1.07 2.34l-.14.31c-1.12 1.05-6.88 6.08-14.82 6.08a19.44 19.44 0 0 1-7.7-1.62c-8.82-3.77-9.57-12.86-9.59-13.21a4.52 4.52 0 0 0-.59-2 9.48 9.48 0 0 0 3-6.05c.07-.87-.76-2-.93-2.92a8.32 8.32 0 0 0-.57-2.11l-2.68.48a1.84 1.84 0 0 1-.59 0 2.89 2.89 0 0 0-.51 2.27 3.82 3.82 0 0 1-2.33 4.27 3.72 3.72 0 0 1-2 .21 3.86 3.86 0 0 1-.64-.11 3.81 3.81 0 0 1-1.26-.68l-.22-.18-.21-.22a3.77 3.77 0 0 1-.27-.33l-.13-.18a3.79 3.79 0 0 1-.34-.64c-.73-1.83-.13-4.54 1.59-5.43l3.94.09a3.79 3.79 0 0 0 .82-.17 1.85 1.85 0 0 1-.12-.4 1.88 1.88 0 0 1 1.52-2.17l.85-.15a2.06 2.06 0 0 0-.27-.93 2.37 2.37 0 0 0-1.89-.83 14 14 0 0 1-2.34-.79 7.39 7.39 0 0 0-4.1.46 18.27 18.27 0 0 0-2 1.2 21.46 21.46 0 0 0-2.67 5.08.68.68 0 0 1-.64.46.69.69 0 0 1-.22 0 .68.68 0 0 1-.42-.87 21.56 21.56 0 0 1 2-4.17l.46-2.76.65-3.92a2.27 2.27 0 0 0-1.88-2.62c-1.25-.21-1.66 1.39-2 2.26a7.77 7.77 0 0 0-1.08 2.5l-.14.84c-.28-.77-.48-1.29-.5-1.35a2.08 2.08 0 0 0-.28-.49l-.1-.13a1.91 1.91 0 0 0-.6-.46l-.18-.08a2.1 2.1 0 0 0-1-.14h-.24a2.08 2.08 0 0 0-.27.08c-1.08.42-.93 1.39-.7 2.43.16.73.13 1.54.23 2.21l-.13-.15a2.12 2.12 0 0 0-1.82-.71h-.17a2 2 0 0 0-.57.19l-.16.1a2 2 0 0 0-.25.18c-.77.66-.68 1.46-.07 2.37q.13.19.29.39c.11.14.21.27.29.39.48.7.51 1.1.83 1.57a2.55 2.55 0 0 0 .18.23c.58.67 2.56 3 3.29 3.79l2.45 2.47v.06a13.2 13.2 0 0 0 .59 1.37l.11.2a9.64 9.64 0 0 0 .8 1.29c.15.2.31.39.48.57a9.29 9.29 0 0 0 .6.91c1.48 2 3.51 4 5.92 4.44.37 3.15 2.59 15.08 15.11 20.42a28.74 28.74 0 0 0 11.38 2.41 27.84 27.84 0 0 0 7.65-1.1c2.34-5.63 4.28-7.62 4.37-7.71a.68.68 0 0 1 1 1s-2.44 2.54-5.11 9.95a87.83 87.83 0 0 0-3.62 14.07 175.14 175.14 0 0 0 2 17.46.68.68 0 0 1-.55.79h-.12a.68.68 0 0 1-.67-.56c-.89-5.06-1.44-10.49-1.75-14.16a37.48 37.48 0 0 0-5-1.89 26.12 26.12 0 0 1 5.11 10.61 29.14 29.14 0 0 1-.37 15.21l.2-.11c1.57-.88 3-1.77 4.26-2.62.17 1.33.38 2.79.69 4.33v.11q.17.85.37 1.73v.18q.2.86.43 1.73l.06.22c.15.57.32 1.14.5 1.71l.09.26c.18.56.36 1.12.57 1.68l.11.29c.2.55.42 1.1.65 1.64l.08.18c.25.57.5 1.13.78 1.68.52 1 1 1.91 1.43 2.71l.28.5.39.66.2.33.17.29.29.44c.14.21.27.41.4.59l.21.28c.14.18.28.36.4.51l.15.17a5.15 5.15 0 0 0 .4.4l.09.08a2.19 2.19 0 0 0 .39.26.9.9 0 0 0 .37.1c.72 0 1-1.25 1-3.19v-.5c-.06-2.27-.2-6.74-.34-10.87a18.2 18.2 0 0 1-5.59-3.36.68.68 0 1 1 .92-1 17.82 17.82 0 0 0 4.62 2.87v-.29a48.64 48.64 0 0 0 10.67 1.88q3.41.27 6.58.26a60.5 60.5 0 0 0 21.86-3.67 23.51 23.51 0 0 0 5.38-3.36.68.68 0 1 1 .91 1 24.28 24.28 0 0 1-5.68 3.56c-.13 4.2-.28 8.78-.34 11.09a9.79 9.79 0 0 0 .23 2.84 2.12 2.12 0 0 0 .13.33l.07.12.07.09a.72.72 0 0 0 .15.13.56.56 0 0 0 .24.06 1.09 1.09 0 0 0 .51-.18c1-.58 2.49-2.72 4.72-7.17 2.85-5.71 4-12.4 4.52-17 3.24-7.8.84-25.4-2.75-36-1.33-3.93-2.88-8.21-4.53-12.35 0 0-.06-.05-.07-.09-.08-.23-.16-.46-.25-.69l-.07-.17a35.38 35.38 0 0 0-3.95-6.91.68.68 0 0 1 1.09-.82 38.1 38.1 0 0 1 3.57 5.95 31.61 31.61 0 0 0 4.9.39 28 28 0 0 0 18.5-6.87c10.39-8.78 9-20.83 8.45-24 2.17-1.14 3.52-3.66 4.35-6a9.35 9.35 0 0 0 .31-1.07c.1-.22.2-.45.29-.69a11.24 11.24 0 0 0 .6-3.26l1.61-3.06v-9.58a2.1 2.1 0 0 0-.59 1.09zm-36.39 94.33a22 22 0 0 1-5 10.56l-.12.07v.07c-4.64 5.27-11.63 7.9-18.95 8.22-11.2.49-28.45-2.39-28.92-22.86-.28-12.43 5.37-25.57 11.16-34a26.07 26.07 0 0 0 15.75 2.58 28.57 28.57 0 0 0 13.48-5.49 28.19 28.19 0 0 1 4.21 6.05c5.13 9.64 10.73 22.22 8.39 34.8z"/><path class="cls-3" d="M232.11 142.54l.23-.47-.25.42zM309.69 94.62c-3.85-.77-12.42 5.36-18 11.57a39.55 39.55 0 0 0-4.63 6.25 64.58 64.58 0 0 0-13.87 1 73.87 73.87 0 0 0-13.32 3.56 39.92 39.92 0 0 0-6.28-4.12c-7.36-3.93-17.5-6.78-20.86-4.73-3.93 2.39-6.94 18.74-1.3 32.79.61-1 1.24-1.9 1.86-2.75-4.49-12.84-1.39-26.34.86-27.71a3.71 3.71 0 0 1 1.79-.32c3.29 0 9.94 1.68 16.37 5.12a39.05 39.05 0 0 1 4.67 2.91c-8.74 3.88-11.8 8.14-12 8.4a.68.68 0 0 0 1.12.78c.06-.09 6.38-8.89 27.31-12.57s30.34 3.6 30.43 3.67a.68.68 0 0 0 .85-1.07c-.27-.22-4.85-3.75-14.58-4.75a38.32 38.32 0 0 1 3.6-4.65c5.83-6.5 12.82-10.74 15.15-10.74h.28c2.61.52 10.23 12.33 10.28 26.06.87.56 1.77 1.2 2.67 1.9.62-15.22-7.87-29.7-12.4-30.6z"/><path class="cls-6" d="M239.86 184.45c-.56-1.91-.87-3.18-.88-3.21a.68.68 0 1 1 1.32-.33s.56 2.26 1.5 5.24l.74.58a62.34 62.34 0 0 1-1.05-6.89l-5.13.91a39.83 39.83 0 0 0 3.5 3.7z"/><path class="cls-3" d="M244 192.46l.33.81a31.26 31.26 0 0 0 5 7.66 11.4 11.4 0 0 0 3.22.35 61.33 61.33 0 0 0 14.57-2.28 9.33 9.33 0 0 1-1.94-4.68v-.2c0-.17-.06-.34-.08-.52l-.1-1.49v-.44a11.07 11.07 0 0 1-4.12.24l-3.05.54a13.62 13.62 0 0 1-15.79-11l-.29-1.62h-.23a62.34 62.34 0 0 0 1.05 6.89 56 56 0 0 0 1.43 5.74zM247.71 159.7a11.22 11.22 0 0 1 12.59-9.59l6 .81a11.21 11.21 0 0 1 8.84 6.84 11.11 11.11 0 0 1 9.55-1.78 11.16 11.16 0 0 1 4.3-7.43l4.84-3.69a11.22 11.22 0 0 1 15.7 2.14l4.68 6.15 5.68-1a1.87 1.87 0 0 1 1.25 3.47 6.22 6.22 0 0 1 2.07 4.09l1.26 7.13a13.62 13.62 0 0 1-11 15.79l-2.08.37a11.17 11.17 0 0 1-4.24.75l-.63.11-.4.05.08.16.07.17c.05.12.1.24.15.37l.2.6a3.19 3.19 0 0 1 .11.36l.12.49c0 .21.08.38.11.55l.1.72v.1a1.52 1.52 0 0 1 0 .16l.06.68a1.17 1.17 0 0 1 0 .2v.42a8.22 8.22 0 0 1-.54 3c9.36-.6 17.83-2.87 19.53-4.76l.07-.11a40.9 40.9 0 0 0 1.77-9v-.7a53.94 53.94 0 0 0-.44-6 55.81 55.81 0 0 0-1.23-6.57l-2.18.39-.65-3.67 1.77-.31a31.65 31.65 0 0 0-2.59-5.76c0-.24-.06-.47-.1-.71-3.14-17.85-23.94-29.11-46.45-25.15-21.28 3.75-36.47 19.76-35.4 36.59L247 165z"/><path class="cls-6" d="M266.33 150.92l-6-.81a11.22 11.22 0 0 0-12.59 9.59L247 165l25.51-4.52a11.3 11.3 0 0 1 2.67-2.76 11.21 11.21 0 0 0-8.85-6.8zM265 191.68v-.14-.33l-.26.06-3.9.69a11.07 11.07 0 0 0 4.16-.28zM307.13 183.72a11.17 11.17 0 0 0 4.24-.75zM293.85 144.86l-4.85 3.69a11.16 11.16 0 0 0-4.3 7.43 11.28 11.28 0 0 1 3.65 1.73l25.85-4.58-4.67-6.13a11.22 11.22 0 0 0-15.68-2.14zM287.21 202.8zM288.25 202.65zM280 157.1a9.82 9.82 0 0 0-5.52 3.06l11.82-2.1a9.83 9.83 0 0 0-6.3-.96zM274.52 168.31l.46 2.58.39-.35-.1-.55a1.79 1.79 0 0 1 1.45-2.08 1.77 1.77 0 0 1 1.72.68 13.68 13.68 0 0 1 11.51 0l-.52-2.94a6.39 6.39 0 0 1 .45-4.41l-17.31 3.07a6.39 6.39 0 0 1 1.95 4zM266.39 191.21v.81l.09 1.39c0 .18 0 .32.07.47l.28 1.2a.3.3 0 0 1 0 .09v.15a1.17 1.17 0 0 1 .08.25l.18.47a.39.39 0 0 1 .07.13l.07.15v.06l.16.37.06.15c1.73 2.85 5 4.07 9.17 3.4h.78a5.76 5.76 0 0 1 2 .18 10.45 10.45 0 0 1 1.88.73c.58.29 1.14.58 1.7.84a10.52 10.52 0 0 0 1.67.63 7.57 7.57 0 0 0 1.74.24h.87l.5-.06h.4l.49-.1.42-.11H289.24l.24-.09h.18l.23-.09a1.35 1.35 0 0 0 .21-.09l.19-.09 1.14-.65a10 10 0 0 0 1.34-1.17c.43-.44.85-.91 1.3-1.38a10 10 0 0 1 1.51-1.34 6 6 0 0 1 1.83-.87l.48-.11h.39c4-.82 6.64-3.11 7.24-6.31V189.53v-.3a7.47 7.47 0 0 0-.06-1 .65.65 0 0 1 0-.14.68.68 0 0 1 0-.14v-.1a1.86 1.86 0 0 1 0-.28l-.05-.25c0-.16-.05-.3-.09-.43l-.14-.57c0-.08-.06-.2-.1-.32l-.18-.5c0-.11-.08-.2-.12-.3v-.11l-.11-.23-.19-.36a13.61 13.61 0 0 1-13.78-11.7l-.07-.42a1.88 1.88 0 0 1-.41.12 1.8 1.8 0 0 1-1.23-.21 10 10 0 0 0-9.65 0l1.55 8.6a1.79 1.79 0 1 1-3.53.64l-1.21-6.69a1.77 1.77 0 0 1-.44.16l.07.41a13.61 13.61 0 0 1-9.33 15.36l-.06.35zm13-1.06a1.79 1.79 0 0 1 2.08 1.43 2.09 2.09 0 0 0 .82 1 1.79 1.79 0 0 1 .78 2.41 1.79 1.79 0 0 1-2.42.79 5.48 5.48 0 0 1-2.71-3.56 1.79 1.79 0 0 1 1.44-2.07z"/><path class="cls-3" d="M280.64 195.79a1.8 1.8 0 0 0 1.64-3.19 2.09 2.09 0 0 1-.82-1 1.79 1.79 0 0 0-3.53.66 5.48 5.48 0 0 0 2.71 3.53zM276.72 167.91a1.79 1.79 0 0 0-1.45 2.08l.1.55a13.7 13.7 0 0 1 3.07-1.95 1.77 1.77 0 0 0-1.72-.68zM279.44 183a1.79 1.79 0 0 0 1.45-2.08l-1.55-8.6a10 10 0 0 0-2.68 2.15 1.79 1.79 0 0 1-.51.39l1.21 6.69a1.79 1.79 0 0 0 2.08 1.45z"/><path class="cls-7" d="M349.07 144.65a4.8 4.8 0 0 0-2.77.88 4.81 4.81 0 0 0-3.65-2 3.88 3.88 0 0 0-1.74.41 5 5 0 0 0-2.26 6.73l.8 1.61h-.25a11.38 11.38 0 0 0-3.27.53 36.09 36.09 0 0 0-.54-7.07A38 38 0 0 0 325 125.79c.84-16.54-8.38-32.77-14.72-34a6.68 6.68 0 0 0-1.31-.12c-6 0-14.87 7.54-19.42 12.61a46.43 46.43 0 0 0-3.14 3.92h3.42c.61-.77 1.21-1.49 1.76-2.1 5.25-5.85 13.09-11.7 17.39-11.7a3.94 3.94 0 0 1 .77.07c4.59.92 13.21 15.6 12.55 31l-.15-.12c-.9-.71-1.8-1.34-2.67-1.9a38.91 38.91 0 0 0-6.11-3.27.68.68 0 0 0-.51 1.27 37.65 37.65 0 0 1 11.06 7.29l.23.23a37.59 37.59 0 0 1 3.35 4.33l.15.23q.68 1 1.29 2.13l.1.17a34.18 34.18 0 0 1 2.2 4.87l.12.34q.39 1.12.7 2.27l.09.31c.23.87.42 1.75.58 2.65s.3 1.95.38 2.92v.06a34.25 34.25 0 0 1-.39 8.7 4.34 4.34 0 0 1 1.08-.61 14 14 0 0 0 2-1.44 7.6 7.6 0 0 1 3.39-.81 3.67 3.67 0 0 1 .66.05 15 15 0 0 1 3.44 1 35.41 35.41 0 0 1 4.52 4.17.68.68 0 0 0 1.22-.61c-.47-.93-3.73-3.68-5.43-5.08l-.78-1.57-1.77-3.56a2.3 2.3 0 0 1 1-3.08 1.17 1.17 0 0 1 .52-.13c.88 0 1.57 1.09 2.09 1.69a10.85 10.85 0 0 1 1.55 1.69c.07.12.14.24.21.39l.38.76c0-.81.08-1.37.09-1.43a2.11 2.11 0 0 1 2.1-2h.15a1.23 1.23 0 0 1 .93.45 3.17 3.17 0 0 1 .45 1.67c0 .16.06.31.08.47s0 .26.07.4c.1.46.21.9.27 1.32l.07-.16a2.1 2.1 0 0 1 .72-.86v-5a3.93 3.93 0 0 0-2.41-1z"/><path class="cls-8" d="M287.35 202.79z"/><path class="cls-9" d="M309.49 279.77l-.07-.12a2.12 2.12 0 0 1-.13-.33 9.5 9.5 0 0 1-.24-2.86c.07-2.3.21-6.87.34-11.06a24.28 24.28 0 0 0 5.68-3.56.68.68 0 1 0-.91-1 23.51 23.51 0 0 1-5.38 3.36 60.5 60.5 0 0 1-21.86 3.67q-3.17 0-6.58-.26a48.64 48.64 0 0 1-10.67-1.88v.27a17.82 17.82 0 0 1-4.62-2.87.68.68 0 1 0-.92 1 18.2 18.2 0 0 0 5.59 3.36l.34 10.87v.5h2.72v-.55l-.28-9a59.16 59.16 0 0 0 7.62 1c2.29.18 4.58.27 6.79.27a67 67 0 0 0 19.66-2.73c-.11 3.39-.21 6.69-.26 8.54a13.22 13.22 0 0 0 .24 3.32l3 .2z"/><path class="cls-10" d="M232.31 177.67a1.88 1.88 0 0 0-1.52 2.17 1.85 1.85 0 0 0 .12.4 3.79 3.79 0 0 1-.82.17l-3.94-.09c-1.72.9-2.32 3.6-1.59 5.43a3.79 3.79 0 0 0 .34.64l.13.18a3.77 3.77 0 0 0 .27.33l.21.22.22.18a3.83 3.83 0 0 0 1.27.7 3.86 3.86 0 0 0 .55.12 3.77 3.77 0 0 0 2-.23 3.82 3.82 0 0 0 2.33-4.27 2.88 2.88 0 0 1 .5-2.25 1.84 1.84 0 0 0 .59 0l2.68-.48a8.32 8.32 0 0 1 .57 2.11c.17.89 1 2.05.93 2.92a9.48 9.48 0 0 1-3 6.05 4.52 4.52 0 0 1 .59 2c0 .35.77 9.45 9.59 13.21a19.44 19.44 0 0 0 7.7 1.62c7.93 0 13.7-5 14.82-6.08l.14-.31c.37-.83.74-1.62 1.09-2.38a8.79 8.79 0 0 0 3.54 1.88c4.25 1.18 6.37 1 7.26.76a10.67 10.67 0 0 0 9.33 2.64 13.26 13.26 0 0 0 8.34-5.48c1.3-.41 7.11-2.45 9.54-6.8a4.33 4.33 0 0 1 1.07.39 23.93 23.93 0 0 0 10.42 2.47 19.2 19.2 0 0 0 12.68-4.67c7.45-6.29 5.31-15.36 5.29-15.45a4.57 4.57 0 0 1 0-2.07 8.7 8.7 0 0 1-3.27-2.6c-.17-.21-.33-.44-.49-.66s-.26-.41-.38-.63l-.08-.13a8.15 8.15 0 0 1-.4-.84c-.33-.81.13-2.16 0-3.06 0-.33-.07-.64-.09-1-.45 1.19-1 2.35-1.55 3.5-.1-1.56-.19-2.54-.2-2.57a.7.7 0 0 0-.75-.61.68.68 0 0 0-.61.75s.2 2 .31 4.81c.07 1.94.1 4.3 0 6.73v.7a40.9 40.9 0 0 1-1.77 9c-.22.71-.37 1.15-.37 1.16a.68.68 0 1 0 1.29.45c0-.13.71-2 1.3-4.57a35.89 35.89 0 0 1-1.23 4.59.77.77 0 0 1-.72.51.8.8 0 0 1-.26 0 .77.77 0 0 1-.46-1s.09-.24.21-.64c-2.38 2-11 4-19.42 4.55l.06-.15a8.22 8.22 0 0 0 .54-3v-.42a1.17 1.17 0 0 0 0-.2l-.06-.68a1.52 1.52 0 0 0 0-.16v-.1l-.1-.72c0-.17-.06-.34-.11-.55l-.12-.49a3.19 3.19 0 0 0-.11-.36l-.2-.6c0-.13-.09-.24-.15-.37l-.07-.17-.08-.16.4-.05.63-.11 4.24-.75 2.08-.37a13.62 13.62 0 0 0 11-15.79l-1.26-7.13a6.22 6.22 0 0 0-2.07-4.09 1.87 1.87 0 0 0-1.25-3.47l-5.68 1-25.85 4.58a11.35 11.35 0 0 0-8.56-1.95 11.16 11.16 0 0 0-4.64 2 11.3 11.3 0 0 0-2.67 2.76L247 165l-6.22 1.1h-.09a1.87 1.87 0 0 0 .52 3.7 6.37 6.37 0 0 0-.46 4.43l.32 1.82-7.21 1.28-.69.12zm-3.8 7.68a1.07 1.07 0 0 1-.4.08 1.1 1.1 0 0 1-1-.69 2.43 2.43 0 0 1 .09-1.67h1.89a5.54 5.54 0 0 0 .1 1 1.09 1.09 0 0 1-.68 1.28zm103.29-5.92c.08-1.58.13-3.21.15-4.77q.38.31.77.58a7.09 7.09 0 0 0 .19 1.18 13.74 13.74 0 0 1-2.34 10.58 37.91 37.91 0 0 0 1.23-7.57zm-7.2 11.88l.32.18a16.35 16.35 0 0 1-6.56 1.65 39.51 39.51 0 0 0 6.24-1.83zM252 206.06a16.81 16.81 0 0 1-6.63-1.4 13.5 13.5 0 0 1-7.94-10.91 6.73 6.73 0 0 0-.16-1.14 12.41 12.41 0 0 0 1.68-2.89c.65 1.74 1.38 3.61 2.13 5.39a39.43 39.43 0 0 0 5.35 8.83 3.5 3.5 0 0 0 4.91.45l.27-.25h.89a52.8 52.8 0 0 0 9.18-1 18.76 18.76 0 0 1-9.68 2.92zm24.78-5.77zm10.41 2.51zm2.67-41.55a6.39 6.39 0 0 0-.45 4.41l.52 2.94a13.71 13.71 0 0 0-14.58 1.94l-.39.35-.46-2.58a6.39 6.39 0 0 0-1.94-4zM280 157.1a9.83 9.83 0 0 1 6.3 1l-11.82 2.1a9.82 9.82 0 0 1 5.52-3.1zm-4.26 18.34l-.07-.41a1.77 1.77 0 0 0 .44-.16 1.79 1.79 0 0 0 .51-.39 10 10 0 0 1 12.38-2.19 1.8 1.8 0 0 0 1.23.21 1.88 1.88 0 0 0 .41-.12l.07.42a13.61 13.61 0 0 0 13.92 11.2l.19.36.11.23v.11c0 .1.09.19.12.3l.18.5c0 .12.08.24.1.32l.14.57c0 .13.06.27.09.43l.05.25a1.86 1.86 0 0 0 0 .28v.1a.68.68 0 0 0 0 .14.65.65 0 0 0 0 .14 7.47 7.47 0 0 1 .06 1v1.23c-.59 3.2-3.23 5.49-7.24 6.31h-.1H298.04l-.48.11a6 6 0 0 0-1.83.87 10 10 0 0 0-1.51 1.34c-.45.47-.86.94-1.3 1.38a10 10 0 0 1-1.34 1.17l-1.14.65-.19.09a1.35 1.35 0 0 1-.21.09l-.23.09h-.18l-.24.09H289.22l-.42.11-.49.1h-.4l-.5.06h-.87a7.57 7.57 0 0 1-1.74-.24 10.52 10.52 0 0 1-1.67-.63c-.56-.26-1.11-.56-1.7-.84a10.45 10.45 0 0 0-1.88-.73 5.76 5.76 0 0 0-2-.18h-.78c-4.12.67-7.44-.55-9.17-3.4l-.06-.15-.16-.37v-.06l-.07-.15a.39.39 0 0 0-.07-.13l-.18-.47a1.17 1.17 0 0 0-.08-.25v-.15a.3.3 0 0 0 0-.09l-.28-1.2c0-.15-.05-.29-.07-.47l-.09-1.39v-.4-.46l.06-.35a13.61 13.61 0 0 0 9.19-14.87zm-34.29 4.41h.23l.29 1.62a13.62 13.62 0 0 0 15.79 11l3.05-.54 3.9-.69.26-.06v.91l.1 1.49c0 .17 0 .34.08.52v.2a9.33 9.33 0 0 0 1.94 4.68l.09.11a63 63 0 0 1-14.69 2.33 12.91 12.91 0 0 1-2.82-.26.77.77 0 0 1-1.18 1s-.4-.48-.92-1.2c.58.71 1 1.14 1 1.19a.68.68 0 1 0 1-.93l-.3-.33a31.26 31.26 0 0 1-5-7.66l-.33-.81c-.88-2.17-1.64-4.39-2.24-6.3-.94-3-1.49-5.2-1.5-5.24a.68.68 0 1 0-1.32.33s.32 1.3.88 3.21a39.83 39.83 0 0 1-3.5-3.69z"/><path class="cls-11" d="M332.37 160a1.88 1.88 0 0 1-.08-.22l-.06.25h.11z"/><path class="cls-12" d="M265.94 278.56l-.39-.66-.28-.5c-.45-.8-.92-1.68-1.44-2.73-.27-.54-.52-1.1-.76-1.66l-.08-.18c-.23-.54-.44-1.09-.65-1.64l-.11-.29c-.2-.56-.39-1.12-.57-1.68l-.09-.26c-.18-.57-.34-1.14-.5-1.71L261 267q-.23-.87-.43-1.73v-.18q-.2-.88-.37-1.73v-.11c-.3-1.54-.53-3-.7-4.35-1.27.85-2.69 1.74-4.26 2.62a16.37 16.37 0 0 1-.93 2.41 1.54 1.54 0 0 1-2.07.66 1.51 1.51 0 0 1-.78-1.11 65.81 65.81 0 0 1-9.74 3.75c-.27.73-.46 1.17-.49 1.24a1.54 1.54 0 0 1-2 .77 1.51 1.51 0 0 1-.85-1.11 65.67 65.67 0 0 1-6.66 1.24h-.08q-1.13.15-2.3.26c-1.17.11-2.36.16-3.55.16h-1.08c-.23.33-.39.53-.42.57a1.54 1.54 0 0 1-2.17.21 1.52 1.52 0 0 1-.53-1A50.17 50.17 0 0 1 209 266.8c-.33.35-.54.53-.58.57a1.53 1.53 0 0 1-2.42-1.77c-5.68-2.52-10.3-5.95-12.7-9.62l-.19-.31c-.15-.24-.29-.47-.41-.71s-.16-.33-.24-.49-.17-.35-.24-.53-.15-.39-.22-.59-.09-.28-.13-.42-.12-.45-.17-.68 0-.2-.05-.31c0-.26-.08-.52-.1-.78v-.1a7.56 7.56 0 0 1 .12-1.94c.53-2.65 2.54-5 5.4-7.13a.76.76 0 0 1 .26-.67c.31-.26 5.61-4.61 15.12-7.41a1.5 1.5 0 0 1 .64-.6 1.43 1.43 0 0 1 .6-.13 1.61 1.61 0 0 1 .74.18 57.7 57.7 0 0 1 8.86-1.52 1.51 1.51 0 0 1 .47-.48 1.49 1.49 0 0 1 .8-.23 1.56 1.56 0 0 1 1.18.55c.38 0 .74-.06 1.12-.07h2.78c1.64 0 3.2 0 4.7.13a1.54 1.54 0 0 1 1.05-.42h.3a2.37 2.37 0 0 1 .83.53 70.74 70.74 0 0 1 9.26 1.36 1.56 1.56 0 0 1 1.08-.44 1.48 1.48 0 0 1 .93.33c.05 0 .39.32.89.81a44.62 44.62 0 0 1 6.44 2.22v.11c0 .47.08 1 .12 1.56.31 3.67.85 9.1 1.75 14.16a.68.68 0 0 0 .67.56h.12a.68.68 0 0 0 .55-.79 175.14 175.14 0 0 1-2-17.46 86.89 86.89 0 0 1 3.49-13.7l.12-.32c2.67-7.4 5.09-9.92 5.11-9.95a.68.68 0 0 0-1-1c-.09.09-2 2.08-4.37 7.71a27.84 27.84 0 0 1-7.65 1.1 28.74 28.74 0 0 1-11.38-2.41c-12.52-5.35-14.74-17.28-15.11-20.42-2.41-.45-4.44-2.46-5.92-4.44a9.36 9.36 0 0 1-.6-.91c-.17-.18-.32-.37-.48-.57a9.64 9.64 0 0 1-.8-1.29l-.11-.2a13.2 13.2 0 0 1-.59-1.37v-.07l-2.45-2.47c-.74-.75-2.71-3.12-3.29-3.79a2.55 2.55 0 0 1-.18-.23c-.32-.47-.35-.87-.83-1.57-.08-.12-.18-.25-.29-.39s-.2-.26-.29-.39c-.62-.92-.72-1.72.05-2.39a1.91 1.91 0 0 1 .26-.16l.16-.1a2 2 0 0 1 .57-.19h.37a2.12 2.12 0 0 1 1.6.73l.13.15c-.1-.67-.07-1.48-.23-2.21-.23-1-.38-2 .7-2.43a2 2 0 0 1 .29-.05h.24a2.2 2.2 0 0 1 .23 0 2.09 2.09 0 0 1 .8.18l.18.08a1.91 1.91 0 0 1 .6.46l.1.13a2.08 2.08 0 0 1 .28.49c0 .06.22.58.5 1.35l.14-.83a7.77 7.77 0 0 1 1.08-2.5c.36-.82.74-2.28 1.83-2.28h.21a2.3 2.3 0 0 1 1.89 2.64l-.65 3.92-.46 2.76a21.56 21.56 0 0 0-2 4.17.68.68 0 0 0 .42.87.69.69 0 0 0 .22 0 .68.68 0 0 0 .64-.46 21.46 21.46 0 0 1 2.67-5.08v-.06a18.46 18.46 0 0 1 1.94-1.17 7.39 7.39 0 0 1 3-.58 4.47 4.47 0 0 1 1.11.12 14 14 0 0 0 2.34.79 2.34 2.34 0 0 1 1.91.85 2.06 2.06 0 0 1 .27.93l.68-.12a35.23 35.23 0 0 1-2.92-5.42c-.14-.32-.28-.64-.41-1s-.17-.46-.26-.69c-.16-.44-.32-.88-.46-1.32l-.15-.47c-.18-.6-.35-1.21-.5-1.82-.17-.7-.33-1.4-.45-2.12-.06-.35-.09-.71-.14-1.06s-.12-.84-.17-1.26-.08-.91-.11-1.36 0-.74-.05-1.1 0-.91 0-1.37v-1.12q0-1.12.17-2.23c0-.41.08-.82.14-1.23s.14-.85.22-1.27.15-.78.23-1.17.18-.82.29-1.23.23-.86.36-1.29.22-.78.35-1.17q.34-1 .74-2c.14-.37.3-.73.46-1.09s.35-.81.54-1.21c.09-.2.17-.4.26-.59l.11-.19.25-.42a44.34 44.34 0 0 1 7.31-9 .68.68 0 0 0-.9-1 42.55 42.55 0 0 0-5.46 6.2c-.62.84-1.24 1.76-1.86 2.75l-.12.18c-5-12.41-3.29-26.66-.11-31.63h-1.68a.68.68 0 1 1 0-1.36h2.89l.21-.15a6.71 6.71 0 0 1 3.43-.73 25.13 25.13 0 0 1 5.93.88h3.9a.68.68 0 0 1 .3 1.29 55.41 55.41 0 0 1 7.49 3.28 40.07 40.07 0 0 1 6.31 4.14 74.11 74.11 0 0 1 13.19-3.51 66.89 66.89 0 0 1 11.61-1.07h2.13c.58-1 1.22-1.93 1.86-2.82h-3.32v.06h-.63a70 70 0 0 0-12.08 1.11 79.25 79.25 0 0 0-12.23 3.12 44.82 44.82 0 0 0-5.51-3.47c-5.37-2.87-13.3-5.77-18.89-5.77a9.15 9.15 0 0 0-4.85 1.12c-5.53 3.36-8.65 21.76-2.21 37a38 38 0 0 0-3 22.3 36.13 36.13 0 0 0 2 7.12h-.51a11.09 11.09 0 0 0-3.41.53l.29-1.78a5 5 0 0 0-4.13-5.77 4.07 4.07 0 0 0-.66-.05c-2.44 0-3.53 2-4 3.17a4.79 4.79 0 0 0-3.23.09 3.83 3.83 0 0 0-2.57 3.77 4.74 4.74 0 0 0-1.84 1c-1.49 1.29-2.32 3.71-.06 6.52a2.42 2.42 0 0 1 .41.7 5.6 5.6 0 0 0 1 1.57l.7.82c1.15 1.36 2.15 2.53 2.72 3.1l.78.79 1.26 1.27a13.29 13.29 0 0 0 1.69 3.06c.14.19.29.37.45.55s.42.65.64 1a14.72 14.72 0 0 0 5.67 4.89 27.82 27.82 0 0 0 16.47 20.85 31.58 31.58 0 0 0 12.45 2.63 30 30 0 0 0 4.91-.41 91 91 0 0 0-3.16 12.25c-1-.38-2.3-.8-3.78-1.22-.31-.29-.51-.45-.56-.49a4.23 4.23 0 0 0-4.16-.64 74.15 74.15 0 0 0-7.8-1.13 3.7 3.7 0 0 0-1.32-.56 4.27 4.27 0 0 0-2.58.3c-1.35-.06-2.66-.09-4-.09H226.57a4.23 4.23 0 0 0-4.24.16l-.25.18a60.64 60.64 0 0 0-7.54 1.31 4.24 4.24 0 0 0-.82-.08 4.13 4.13 0 0 0-1.75.39 4 4 0 0 0-1 .7c-9.47 2.94-14.74 7.22-15.32 7.71a3.44 3.44 0 0 0-.89 1.15c-3.19 2.51-5.1 5.27-5.68 8.2-1.34 6.7 4.11 13.79 14.3 18.76a4.26 4.26 0 0 0 6.29 2.56 53.52 53.52 0 0 0 10.12 2.29 4.2 4.2 0 0 0 .54.54 4.27 4.27 0 0 0 5.62-.17c1.24 0 2.45-.06 3.59-.17a64.85 64.85 0 0 0 7.62-1.17 4.13 4.13 0 0 0 .9.56 4.26 4.26 0 0 0 5.64-2.12l.08-.18a69 69 0 0 0 6.89-2.6l.33.19a4.3 4.3 0 0 0 2 .48 4.25 4.25 0 0 0 3.79-2.31 15.76 15.76 0 0 0 .75-1.77 48.46 48.46 0 0 0 4 12.43c.46.8.96 1.86 1.46 2.8l3.13-.07z"/><path class="cls-13" d="M324.19 165.17l2.18-.39 6-1.06a1.87 1.87 0 0 0 1.31-1 3 3 0 0 1 .53.34l.05.05a2.92 2.92 0 0 1 .41.44l.09.13a2.85 2.85 0 0 1 .27.5v.1a2.86 2.86 0 0 1 .17.7 3.82 3.82 0 0 0 3.48 3.4h.32a3.82 3.82 0 0 0 3.8-3.5 5 5 0 0 0-.78-3 3.67 3.67 0 0 0-2.33-1.77l-3.69 1.36a3.78 3.78 0 0 1-2.21-.18 1.85 1.85 0 0 0-1.38-1.23h-.14a1.88 1.88 0 0 0-.57 0l-6.41 1.14-1.77.31zm15.4-2a2.43 2.43 0 0 1 .57 1.57 1.09 1.09 0 0 1-1.08 1H339a1.09 1.09 0 0 1-1-1 5.65 5.65 0 0 0-.2-1z"/><path class="cls-14" d="M349.63 166.57c-.09.24-.18.47-.29.69a9.35 9.35 0 0 1-.31 1.07c-.83 2.33-2.18 4.84-4.35 6 .57 3.13 1.93 15.18-8.45 24a28 28 0 0 1-18.5 6.87 31.61 31.61 0 0 1-4.9-.39 38.1 38.1 0 0 0-3.57-5.95.68.68 0 0 0-1.09.82 35.38 35.38 0 0 1 3.95 6.91l.07.17c.09.23.17.46.25.69 0 0 0 .06.07.09 1.65 4.14 3.2 8.42 4.53 12.35 3.58 10.57 6 28.17 2.75 36-.49 4.58-1.66 11.27-4.52 17-2.22 4.45-3.74 6.59-4.72 7.17l3.54.28a41.61 41.61 0 0 0 3.62-6.23c2.95-5.89 4.21-12.71 4.75-17.53 3.58-9.32.46-27.79-2.84-37.51-1.35-4-2.71-7.72-4-11.16q1.09.07 2.17.07a30.64 30.64 0 0 0 20.21-7.63 27.83 27.83 0 0 0 9.63-24.77 14.73 14.73 0 0 0 4-6.33c.09-.25.16-.52.24-.78v-8.22l-1.61 3.06a11.24 11.24 0 0 1-.63 3.26z"/><path class="cls-2" d="M269.05 282a.9.9 0 0 1-.37-.1 2.19 2.19 0 0 1-.39-.26l-.09-.08a5.15 5.15 0 0 1-.4-.4l-.15-.17c-.13-.15-.26-.32-.4-.51l-.21-.28c-.13-.18-.26-.38-.4-.59l-.29-.44-.17-.29-3.18.12c2.38 4.25 4 5.78 6 5.78a3.31 3.31 0 0 0 2.39-1c.94-1 1.35-2.47 1.34-4.93h-2.72c.06 1.92-.23 3.15-.96 3.15z"/><path class="cls-15" d="M269.05 282a.9.9 0 0 1-.37-.1 2.19 2.19 0 0 1-.39-.26l-.09-.08a5.15 5.15 0 0 1-.4-.4l-.15-.17c-.13-.15-.26-.32-.4-.51l-.21-.28c-.13-.18-.26-.38-.4-.59l-.29-.44-.17-.29-3.18.12c2.38 4.25 4 5.78 6 5.78a3.31 3.31 0 0 0 2.39-1c.94-1 1.35-2.47 1.34-4.93h-2.72c.06 1.92-.23 3.15-.96 3.15z"/><path class="cls-2" d="M310 280.11a.56.56 0 0 1-.24-.06.72.72 0 0 1-.15-.13l-3-.2a4.41 4.41 0 0 0 1.09 2.16 3.31 3.31 0 0 0 2.39 1c1.39 0 2.62-.74 4-2.63l-3.54-.28a1.09 1.09 0 0 1-.55.14z"/><path class="cls-16" d="M310 280.11a.56.56 0 0 1-.24-.06.72.72 0 0 1-.15-.13l-3-.2a4.41 4.41 0 0 0 1.09 2.16 3.31 3.31 0 0 0 2.39 1c1.39 0 2.62-.74 4-2.63l-3.54-.28a1.09 1.09 0 0 1-.55.14z"/><path class="cls-2" d="M289.79 108.15h-3.42c-.31.44-.63.89-.94 1.36h3.32c.36-.51.7-.93 1.04-1.36z"/><path class="cls-17" d="M289.79 108.15h-3.42c-.31.44-.63.89-.94 1.36h3.32c.36-.51.7-.93 1.04-1.36z"/><path class="cls-2" d="M246.56 108.83a.68.68 0 0 0-.68-.68H242c1.36.34 2.77.78 4.19 1.29a.68.68 0 0 0 .37-.61z"/><path class="cls-18" d="M246.56 108.83a.68.68 0 0 0-.68-.68H242c1.36.34 2.77.78 4.19 1.29a.68.68 0 0 0 .37-.61z"/><path class="cls-2" d="M232.41 108.15h-2.89a.68.68 0 1 0 0 1.36h1.68a5.1 5.1 0 0 1 1.21-1.36z"/><path class="cls-19" d="M232.41 108.15h-2.89a.68.68 0 1 0 0 1.36h1.68a5.1 5.1 0 0 1 1.21-1.36z"/><ellipse class="cls-2" cx="114.9" cy="283.82" rx="26.73" ry="5.31"/><circle class="cls-2" cx="114.4" cy="234.64" r="8.47"/><path class="cls-2" d="M121.07 287.57a1.36 1.36 0 0 1-1.35-1.2l-5.66-48c-5.85 18.8-13.19 42.68-13.43 44.39a1.32 1.32 0 0 1-1.37 1.24 1.41 1.41 0 0 1-1.36-1.42c0-1.58 10.81-36.33 15.46-51.2a1.36 1.36 0 0 1 2.65.25l6.41 54.37a1.36 1.36 0 0 1-1.19 1.51z"/><path class="cls-2" d="M127 281.16a1.36 1.36 0 0 1-1.32-1l-12.31-48a1.36 1.36 0 1 1 2.64-.68l12.31 48a1.36 1.36 0 0 1-1.32 1.7z"/><path class="cls-2" d="M131.74 196a.21.21 0 0 1-.17.25l-5.57 1.07-3.45.68a.21.21 0 0 1-.25-.17l-1.3-6.45a.21.21 0 0 1 .17-.25l9.08-1.8a.21.21 0 0 1 .25.17z" id="Layer_2-2" data-name="Layer 2"/><path class="cls-2" d="M138.42 229.58l-45.22 9a2.23 2.23 0 0 1-2.62-1.75l-6.33-31.93a2.23 2.23 0 0 1 1.75-2.67l45.22-9a2.23 2.23 0 0 1 2.62 1.75l6.33 32.02a2.23 2.23 0 0 1-1.75 2.58z" id="Layer_3" data-name="Layer 3"/><path class="cls-3" d="M132.43 200.92c0 .07 0 .14-.14.16l-7.2 1.43a.15.15 0 0 1-.19-.09l-.77-3.9c0-.07 0-.14.14-.16l7.2-1.43a.15.15 0 0 1 .19.09z" id="Layer_4" data-name="Layer 4"/><circle class="cls-3" cx="93.13" cy="222.39" r="2.65" transform="rotate(-11.21 93.14 222.41)" id="Layer_6" data-name="Layer 6"/><circle class="cls-3" cx="112.09" cy="215.29" r="14.25" transform="rotate(-11.21 112.1 215.32)" id="Layer_7" data-name="Layer 7"/><path class="cls-2" d="M110.35 206.51a8.95 8.95 0 1 0 10.52 7 9 9 0 0 0-10.52-7z" id="Layer_8" data-name="Layer 8"/><path class="cls-3" d="M110.78 208.69a6.61 6.61 0 1 0 7.77 5.2 6.61 6.61 0 0 0-7.77-5.2zm3.54 5.32a1.63 1.63 0 1 1 1.28-1.91 1.63 1.63 0 0 1-1.28 1.9z" id="Layer_9" data-name="Layer 9"/></g></svg>PK
!<3Q}22$chrome/content/img/figure_search.svg<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 352 303"><defs><style>.cls-1,.cls-13{fill:none;}.cls-2{fill:#eaeaee;}.cls-3{fill:#fff;}.cls-4{fill:url(#New_Gradient_Swatch_1);}.cls-5{fill:url(#New_Gradient_Swatch_1-2);}.cls-6{fill:#f9f9fa;}.cls-7{fill:#ccedf0;}.cls-8{fill:url(#New_Gradient_Swatch_1-3);}.cls-9{fill:#e9e9ee;}.cls-10{opacity:0.4;fill:url(#New_Gradient_Swatch_1-4);}.cls-11{fill:url(#New_Gradient_Swatch_1-5);}.cls-12{fill:url(#New_Gradient_Swatch_1-6);}.cls-13{stroke:#fff;stroke-linecap:round;stroke-linejoin:round;stroke-width:0;}</style><linearGradient id="New_Gradient_Swatch_1" x1="-80.54" y1="-32.6" x2="340.03" y2="387.97" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00c8d7"/><stop offset="1" stop-color="#0a84ff"/></linearGradient><linearGradient id="New_Gradient_Swatch_1-2" x1="-80.46" y1="-32.69" x2="340.11" y2="387.89" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-3" x1="13.41" y1="-127.77" x2="437.63" y2="297.12" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-4" x1="6.57" y1="-117.72" x2="427.16" y2="302.86" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-5" x1="5.34" y1="-118.49" x2="426.58" y2="302.74" xlink:href="#New_Gradient_Swatch_1"/><linearGradient id="New_Gradient_Swatch_1-6" x1="-106.92" y1="-223.34" x2="490.79" y2="374.37" xlink:href="#New_Gradient_Swatch_1"/></defs><title>search</title><path class="cls-1" d="M0 0h352v303H0z" id="Layer_2" data-name="Layer 2"/><g id="Layer_1" data-name="Layer 1"><path class="cls-2" d="M314.49 249a1.33 1.33 0 0 0-1.33-1.33H165.74a1.33 1.33 0 0 0 0 2.66h147.42a1.33 1.33 0 0 0 1.33-1.33zM256.26 243.68h37a.67.67 0 0 0 0-1.33h-37a.67.67 0 0 0 0 1.33zM174.48 254.82h-1.33a.67.67 0 0 0 0 1.33h1.33a.67.67 0 0 0 0-1.33zM161.16 254.82h-16a.67.67 0 1 0 0 1.33h16a.67.67 0 0 0 0-1.33zM210.44 254.82h-16a.67.67 0 0 0 0 1.33h16a.67.67 0 0 0 0-1.33zM134.52 254.82h-4a.67.67 0 1 0 0 1.33h4a.67.67 0 0 0 0-1.33zM183.8 254.82h-4a.67.67 0 0 0 0 1.33h4a.67.67 0 1 0 0-1.33zM223.76 254.82h-1.33a.67.67 0 0 0 0 1.33h1.33a.67.67 0 0 0 0-1.33zM85.23 254.82h-4a.67.67 0 0 0 0 1.33h4a.67.67 0 0 0 0-1.33zM111.87 254.82h-16a.67.67 0 0 0 0 1.33h16a.67.67 0 0 0 0-1.33zM125.19 254.82h-1.33a.67.67 0 1 0 0 1.33h1.33a.67.67 0 0 0 0-1.33zM233.08 254.82h-4a.67.67 0 0 0 0 1.33h4a.67.67 0 0 0 0-1.33zM259.72 254.82h-16a.67.67 0 0 0 0 1.33h16a.67.67 0 0 0 0-1.33zM75.91 254.82h-1.33a.67.67 0 0 0 0 1.33h1.33a.67.67 0 0 0 0-1.33zM62.59 254.82h-16a.67.67 0 0 0 0 1.33h16a.67.67 0 0 0 0-1.33z"/><path class="cls-3" d="M2.74 139.51V172a4.81 4.81 0 0 0 4.8 4.79h215.57a55 55 0 0 1-12.29-42.11H7.54a4.81 4.81 0 0 0-4.8 4.83z"/><path class="cls-4" d="M7.54 178.16A6.13 6.13 0 0 1 1.41 172v-32.49a6.13 6.13 0 0 1 6.13-6.13H211c.07-.44.15-.89.22-1.33H7.54a7.47 7.47 0 0 0-7.46 7.46V172a7.47 7.47 0 0 0 7.46 7.46h218c-.42-.44-.84-.88-1.24-1.33z"/><path class="cls-3" d="M1.41 139.51V172a6.13 6.13 0 0 0 6.13 6.13h216.72c-.39-.44-.77-.88-1.14-1.33H7.54a4.81 4.81 0 0 1-4.8-4.8v-32.49a4.81 4.81 0 0 1 4.8-4.8h203.28c.06-.44.11-.89.17-1.33H7.54a6.13 6.13 0 0 0-6.13 6.13z"/><path class="cls-5" d="M1.41 139.51V172a6.13 6.13 0 0 0 6.13 6.13h216.72c-.39-.44-.77-.88-1.14-1.33H7.54a4.81 4.81 0 0 1-4.8-4.8v-32.49a4.81 4.81 0 0 1 4.8-4.8h203.28c.06-.44.11-.89.17-1.33H7.54a6.13 6.13 0 0 0-6.13 6.13z"/><path class="cls-3" d="M262.27 12.84C252.13 10.91 250.11 21 250.11 21s-6.74-17.52-23.79-15.2c-8.15 1.11-11.18 5.41-12 10a.66.66 0 0 1 1 .53c0 .44.08.87.14 1.29a.67.67 0 0 1-.57.75h-.09a.67.67 0 0 1-.66-.57v-.14a22.91 22.91 0 0 0 .61 6.3h1c-.09-.24-.19-.53-.3-.86a.67.67 0 1 1 1.26-.43c.35 1 .63 1.66.64 1.68a.67.67 0 0 1-.61.94h-1.62a26.2 26.2 0 0 0 1.12 3.25h62.28C276 24 269.9 14.3 262.27 12.84z"/><path class="cls-2" d="M279.09 24.86a.67.67 0 0 0 1.16-.65c-.44-.78-1.16-2-2.13-3.46a.67.67 0 1 0-1.11.74c.99 1.41 1.65 2.61 2.08 3.37zM248.9 15.07a.67.67 0 1 0 1.17-.63c-.2-.37-.42-.76-.67-1.19a.67.67 0 0 0-1.14.68c.24.41.45.79.64 1.14zM297.8 26.08h7.41a.67.67 0 0 0 0-1.33h-7.41a.67.67 0 0 0 0 1.33zM187.91 25.27h16a.67.67 0 0 0 0-1.33h-16a.67.67 0 1 0 0 1.33zM245.2 9.72a.67.67 0 0 0 1-.88A26.33 26.33 0 0 0 243.28 6a.67.67 0 0 0-.85 1 24.84 24.84 0 0 1 2.77 2.72zM284.48 26.08h1.33a.67.67 0 0 0 0-1.33h-1.33a.67.67 0 1 0 0 1.33zM256.26 10.25a9.71 9.71 0 0 1 6.37-.69 16.67 16.67 0 0 1 7.56 4 .67.67 0 1 0 .87-1 18 18 0 0 0-8.18-4.3 11 11 0 0 0-7.23.81.67.67 0 0 0 .61 1.18zM218.24 6.06a.67.67 0 0 0 .45-.17 15 15 0 0 1 8.21-3.35 20.68 20.68 0 0 1 6.34.08.67.67 0 1 0 .23-1.31 21.9 21.9 0 0 0-6.75-.09 16.33 16.33 0 0 0-8.92 3.68.67.67 0 0 0 .45 1.16zM217.25 25a.67.67 0 0 0 0-.63s-.28-.64-.64-1.68a.67.67 0 1 0-1.26.43c.11.33.21.61.3.86h-1.16a.67.67 0 0 0 0 1.33h2.14a.67.67 0 0 0 .62-.31zM214.79 18.36h.09a.67.67 0 0 0 .57-.75c-.06-.42-.11-.85-.14-1.29a.67.67 0 0 0-1.33.11c0 .42.08.82.14 1.22v.14a.67.67 0 0 0 .67.57z"/><path class="cls-3" d="M187.41 31.19H306a1.33 1.33 0 0 0 0-2.66H187.41a1.33 1.33 0 1 0 0 2.66zM46.27 50.56h5.32a10 10 0 0 0-5.14-3.25 5.21 5.21 0 0 0-5.55 1.94c0 .15-.07.25-.07.28a.67.67 0 0 1-.43.49 7.22 7.22 0 0 0-.72 1.83s-3.75-9.74-13.23-8.45c-7 .95-7.22 6.09-6.56 9.51h1.41a.67.67 0 1 1 0 1.33h-1.09a14.41 14.41 0 0 0 .62 1.79h18.25a7.47 7.47 0 0 1 7.19-5.47z"/><path class="cls-2" d="M30.16 41.61a10.22 10.22 0 0 1 1.22.25h.17a.67.67 0 0 0 .17-1.31 11.69 11.69 0 0 0-1.38-.29.68.68 0 0 0-.75.56.67.67 0 0 0 .57.79zM21.65 44.12a.66.66 0 0 0 .51-.23 6.35 6.35 0 0 1 3-1.88.67.67 0 0 0-.4-1.27A7.67 7.67 0 0 0 21.14 43a.67.67 0 0 0 .51 1.1zM40.83 49.54s0-.13.07-.28c.26-.93 1.36-3.87 4.66-3.87a6.7 6.7 0 0 1 1.25.12 10.7 10.7 0 0 1 5.26 3.08.67.67 0 0 0 .93-1 12 12 0 0 0-5.94-3.44 8 8 0 0 0-1.5-.15 6.19 6.19 0 0 0-5.85 4.51.66.66 0 0 0-.26.83l.1.23a.69.69 0 0 0 .62.43.67.67 0 0 0 .65-.53zM22 53.59a.67.67 0 0 0-.67-.67h-16a.67.67 0 0 0 0 1.33h16a.67.67 0 0 0 .67-.66z"/><path class="cls-3" d="M5.12 58.73h33.69V58a7.42 7.42 0 0 1 .27-2h-34a1.33 1.33 0 1 0 0 2.66z"/><path class="cls-6" d="M41.47 99.57v10.35a4.81 4.81 0 0 0 4.8 4.8h171.1a54.9 54.9 0 0 1 9.12-12.07 55.48 55.48 0 0 1 9.92-7.87H46.27a4.81 4.81 0 0 0-4.8 4.79zM245.92 218a4.81 4.81 0 0 0 4.8-4.8v-10.32a4.81 4.81 0 0 0-4.8-4.8H46.27a4.81 4.81 0 0 0-4.8 4.8v10.35a4.77 4.77 0 0 0 .1 1 4.82 4.82 0 0 0 2 3 4.76 4.76 0 0 0 2.68.82z"/><rect class="cls-6" x="41.47" y="53.23" width="209.24" height="19.94" rx="4.8" ry="4.8"/><path class="cls-2" d="M46.27 114.71a4.81 4.81 0 0 1-4.8-4.8V99.57a4.81 4.81 0 0 1 4.8-4.8h190.14a54.5 54.5 0 0 1 4.8-2.66H46.27a7.47 7.47 0 0 0-7.46 7.46v10.35a7.47 7.47 0 0 0 7.46 7.46H216q.66-1.35 1.39-2.66zM245.92 220.69a7.47 7.47 0 0 0 7.46-7.46v-10.35a7.47 7.47 0 0 0-7.46-7.46H46.27a7.47 7.47 0 0 0-7.46 7.46v10.35a7.47 7.47 0 0 0 7.46 7.46zM41.57 214.2a4.77 4.77 0 0 1-.1-1v-10.32a4.81 4.81 0 0 1 4.8-4.8h199.65a4.81 4.81 0 0 1 4.8 4.8v10.35a4.81 4.81 0 0 1-4.8 4.8H46.27a4.76 4.76 0 0 1-2.68-.82 4.82 4.82 0 0 1-2.02-3.01zM39.08 56.06a7.42 7.42 0 0 0-.27 2v10.31a7.47 7.47 0 0 0 7.46 7.46h199.65a7.47 7.47 0 0 0 7.46-7.46V58a7.47 7.47 0 0 0-7.46-7.46H46.27a7.47 7.47 0 0 0-7.19 5.52zm206.84-2.83a4.81 4.81 0 0 1 4.8 4.8v10.34a4.81 4.81 0 0 1-4.8 4.8H46.27a4.81 4.81 0 0 1-4.8-4.8V58a4.81 4.81 0 0 1 4.8-4.8z"/><path class="cls-3" d="M330.68 183.33a6.64 6.64 0 0 0-3.85-1.72l-9.94-9.12a10.55 10.55 0 0 0-4.23-2.55 55.1 55.1 0 0 0-71.46-77.83 54.5 54.5 0 0 0-4.8 2.66 55.48 55.48 0 0 0-9.92 7.87 54.9 54.9 0 0 0-9.12 12.07q-.74 1.32-1.39 2.66a54.93 54.93 0 0 0-4.76 14.68c-.08.44-.16.89-.22 1.33s-.12.89-.17 1.33a55 55 0 0 0 12.29 42.11c.37.45.75.89 1.14 1.33s.82.89 1.24 1.33.65.7 1 1a54.71 54.71 0 0 0 38.94 16.13 55.71 55.71 0 0 0 28.35-7.85 10.7 10.7 0 0 0 2.59 4.28l9.1 9.91a6.64 6.64 0 0 0 1.71 3.83l19.06 20.76a6.7 6.7 0 0 0 3.68 2l5.06 5.52.12.12a9.39 9.39 0 0 0 6.82 2.69 18 18 0 0 0 10.08-3.61v-6c-3.29 3.27-7.32 5.31-10.54 5.31a5.45 5.45 0 0 1-4-1.52l-6.21-6.76a2.65 2.65 0 0 1-.58.07h-.06a2.66 2.66 0 0 1-1.91-.86l-19.06-20.76a2.65 2.65 0 0 1-.57-2.59l-10.29-11.2a6.68 6.68 0 0 1-1.88-3.57l-3-3a51.36 51.36 0 0 1-28.91 9A51.08 51.08 0 1 1 301.11 105a51.27 51.27 0 0 1 6 65l3 3a6.54 6.54 0 0 1 3.54 1.84l11.25 10.33a2.59 2.59 0 0 1 2.59.57l20.76 19.06a2.6 2.6 0 0 1 .79 2.54l2.92 2.68V203a6.56 6.56 0 0 0-.57-.61z"/><path class="cls-6" d="M267.52 106.35a39.42 39.42 0 0 0-31.4 15.56h62.78a39.39 39.39 0 0 0-31.38-15.56z"/><path class="cls-7" d="M300.94 177.11a14.39 14.39 0 0 1 5.72-3.74l-3-3a48.41 48.41 0 1 0-9.46 9.46l3 3a14.23 14.23 0 0 1 3.74-5.72zm-69.33-14.87c.07.15.13.31.2.45a39.53 39.53 0 0 1-3.18-6.12v-.11c-.22-.53-.44-1.07-.64-1.61s-.49-1.39-.71-2.1v-.18a39.47 39.47 0 0 1 3.33-30.66h.22a39.47 39.47 0 0 1 68.65 0h.08a39.48 39.48 0 0 1-67.85 40.33z"/><path class="cls-3" d="M304.47 141.15a39.41 39.41 0 0 0-2.19-13h-70.09a39.44 39.44 0 0 0-.59 34 39.48 39.48 0 0 0 72.86-21.08zm-61.4 16.21a15.47 15.47 0 0 1 2-19.34 15.29 15.29 0 0 1 10.86-4.49 15.27 15.27 0 0 1 9.43 3.23 15.41 15.41 0 1 1 18.08 24.93l-14.73 12a5.23 5.23 0 0 1-6.56 0l-14.78-12a15.07 15.07 0 0 1-4.3-4.33z"/><path class="cls-3" d="M227.85 128.19h-.16a39.52 39.52 0 0 0-.5 24.37 39.52 39.52 0 0 1 .67-24.37zM298.89 121.9h-62.77a39.49 39.49 0 0 0-3.92 6.29h70.09a39.26 39.26 0 0 0-2.82-6.29h-.08c.49.86 1 1.74 1.39 2.65-.59-.91-1.23-1.79-1.89-2.65z"/><path class="cls-8" d="M298.89 121.9h-62.77a39.49 39.49 0 0 0-3.92 6.29h70.09a39.26 39.26 0 0 0-2.82-6.29h-.08c.49.86 1 1.74 1.39 2.65-.59-.91-1.23-1.79-1.89-2.65z"/><path class="cls-9" d="M230.73 121.9h-.22a39.26 39.26 0 0 0-2.82 6.29h.16a39.27 39.27 0 0 1 2.88-6.29z"/><path class="cls-3" d="M232.19 128.19a39.46 39.46 0 0 1 66.7-6.29c.66.86 1.29 1.74 1.88 2.65-.43-.9-.89-1.78-1.39-2.65a39.48 39.48 0 0 0-72.2 30.66v.18q.33 1.06.71 2.1c.2.54.41 1.08.64 1.61v.11a39.53 39.53 0 0 0 3.18 6.12c-.07-.15-.13-.3-.2-.45a39.44 39.44 0 0 1 .59-34z"/><path class="cls-10" d="M232.19 128.19a39.46 39.46 0 0 1 66.7-6.29c.66.86 1.29 1.74 1.88 2.65-.43-.9-.89-1.78-1.39-2.65a39.48 39.48 0 0 0-72.2 30.66v.18q.33 1.06.71 2.1c.2.54.41 1.08.64 1.61v.11a39.53 39.53 0 0 0 3.18 6.12c-.07-.15-.13-.3-.2-.45a39.44 39.44 0 0 1 .59-34z"/><path class="cls-3" d="M349.15 206.79a2.66 2.66 0 0 0-.86-1.91l-20.76-19.06a2.59 2.59 0 0 0-2.59-.57l-11.25-10.33a6.54 6.54 0 0 0-3.54-1.84l-3-3a51.27 51.27 0 0 0-6-65A51.08 51.08 0 1 0 265 192.23a51.36 51.36 0 0 0 28.91-9l3 3a6.68 6.68 0 0 0 1.88 3.57l10.29 11.2a2.65 2.65 0 0 0 .57 2.59l19.06 20.76a2.66 2.66 0 0 0 1.91.86h.06a2.65 2.65 0 0 0 .58-.07l6.21 6.76a5.45 5.45 0 0 0 4 1.52c3.22 0 7.25-2 10.54-5.31v-18l-2.92-2.68a2.65 2.65 0 0 0 .06-.64zm-52-24l-3-3a48.42 48.42 0 1 1 9.46-9.46l3 3a14.39 14.39 0 0 0-5.72 3.74 14.23 14.23 0 0 0-3.69 5.75zm33.49 39.83l-19.06-20.76 14.1-14.1 20.76 19.06z"/><path class="cls-11" d="M349.15 206.79a2.66 2.66 0 0 0-.86-1.91l-20.76-19.06a2.59 2.59 0 0 0-2.59-.57l-11.25-10.33a6.54 6.54 0 0 0-3.54-1.84l-3-3a51.27 51.27 0 0 0-6-65A51.08 51.08 0 1 0 265 192.23a51.36 51.36 0 0 0 28.91-9l3 3a6.68 6.68 0 0 0 1.88 3.57l10.29 11.2a2.65 2.65 0 0 0 .57 2.59l19.06 20.76a2.66 2.66 0 0 0 1.91.86h.06a2.65 2.65 0 0 0 .58-.07l6.21 6.76a5.45 5.45 0 0 0 4 1.52c3.22 0 7.25-2 10.54-5.31v-18l-2.92-2.68a2.65 2.65 0 0 0 .06-.64zm-52-24l-3-3a48.42 48.42 0 1 1 9.46-9.46l3 3a14.39 14.39 0 0 0-5.72 3.74 14.23 14.23 0 0 0-3.69 5.75zm33.49 39.83l-19.06-20.76 14.1-14.1 20.76 19.06z"/><path class="cls-7" d="M311.63 201.89l19.06 20.76 15.79-15.8-20.75-19.06-14.1 14.1z"/><path class="cls-2" d="M227.39 295c0 3.85 30.58 7 68.3 7 23.38 0 44-1.2 56.31-3v-7.9c-12.31-1.83-32.94-3-56.31-3-37.69-.03-68.3 3.09-68.3 6.9z"/><path class="cls-3" d="M246.23 155.31a11.33 11.33 0 0 0 3.39 3.38l14.93 12.08a1.45 1.45 0 0 0 .91.32 1.47 1.47 0 0 0 .92-.32l14.83-12.1a11.63 11.63 0 1 0-14.64-17.94 1.67 1.67 0 0 1-1.18.5 1.64 1.64 0 0 1-1.17-.5 11.62 11.62 0 0 0-16.43 0 11.75 11.75 0 0 0-1.56 14.58zm7.61-14.6a1.95 1.95 0 0 1 .85 3.8 4.77 4.77 0 0 0-3.73 4.28 1.94 1.94 0 0 1-1.93 1.78h-.16a2 2 0 0 1-1.78-2.1 8.63 8.63 0 0 1 6.75-7.76z"/><path class="cls-12" d="M246.23 155.31a11.33 11.33 0 0 0 3.39 3.38l14.93 12.08a1.45 1.45 0 0 0 .91.32 1.47 1.47 0 0 0 .92-.32l14.83-12.1a11.63 11.63 0 1 0-14.64-17.94 1.67 1.67 0 0 1-1.18.5 1.64 1.64 0 0 1-1.17-.5 11.62 11.62 0 0 0-16.43 0 11.75 11.75 0 0 0-1.56 14.58zm7.61-14.6a1.95 1.95 0 0 1 .85 3.8 4.77 4.77 0 0 0-3.73 4.28 1.94 1.94 0 0 1-1.93 1.78h-.16a2 2 0 0 1-1.78-2.1 8.63 8.63 0 0 1 6.75-7.76z"/><path class="cls-13" d="M255.95 133.53"/><path class="cls-3" d="M265.46 174.86a5.26 5.26 0 0 0 3.28-1.15l14.73-12a15.41 15.41 0 1 0-18.08-24.93 15.39 15.39 0 0 0-20.3 1.22 15.47 15.47 0 0 0-2 19.34 15.07 15.07 0 0 0 4.32 4.37l14.78 12a5.23 5.23 0 0 0 3.27 1.15zm-9.51-37.56a11.59 11.59 0 0 1 8.23 3.42 1.64 1.64 0 0 0 1.17.5 1.67 1.67 0 0 0 1.18-.5 11.64 11.64 0 1 1 14.64 17.94l-14.83 12.1a1.47 1.47 0 0 1-.92.32 1.45 1.45 0 0 1-.91-.32l-14.93-12.08a11.33 11.33 0 0 1-3.39-3.38 11.75 11.75 0 0 1 1.53-14.61 11.58 11.58 0 0 1 8.23-3.39z"/><path class="cls-6" d="M248.86 150.56h.14a1.94 1.94 0 0 0 1.93-1.78 4.77 4.77 0 0 1 3.73-4.28 1.95 1.95 0 0 0-.85-3.8 8.63 8.63 0 0 0-6.76 7.76 2 2 0 0 0 1.81 2.1z"/></g></svg>PK
!<
x^^"chrome/content/img/figure_sync.svg<svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" viewBox="0 0 352 266"><defs><style>.cls-1{fill:none;}.cls-2{fill:#fff;}.cls-3{fill:#eaeaee;}.cls-4{fill:#f9f9fa;}.cls-5{fill:#f3f3f7;}.cls-6{fill:#90e8f0;}.cls-7{fill:#ccedf0;}.cls-8{fill:url(#New_Gradient_Swatch_1);}.cls-9{fill:url(#New_Gradient_Swatch_1-2);}</style><linearGradient id="New_Gradient_Swatch_1" x1="-57.65" y1="-89.4" x2="383.11" y2="351.36" gradientUnits="userSpaceOnUse"><stop offset="0" stop-color="#00c8d7"/><stop offset="1" stop-color="#0a84ff"/></linearGradient><linearGradient id="New_Gradient_Swatch_1-2" x1="6.85" y1="-35.33" x2="378.19" y2="336.02" xlink:href="#New_Gradient_Swatch_1"/></defs><title>sync</title><g id="Layer_1" data-name="Layer 1"><rect class="cls-1" width="352" height="266"/></g><g id="Layer_2" data-name="Layer 2"><path class="cls-2" d="M31.27,28.66H61.21S51.84,7.72,71.73,5C89.47,2.6,96.48,20.83,96.48,20.83s2.1-10.52,12.65-8.5S127.22,31,127.22,31h26.07"/><path class="cls-3" d="M153.8,26.1h-6.6a.7.7,0,0,1,0-1.4h6.6a.7.7,0,0,1,0,1.4Zm-19.16,0h-1.4a.7.7,0,1,1,0-1.4h1.4a.7.7,0,0,1,0,1.4ZM127.7,26a.7.7,0,0,1-.62-.38c-.19-.37-.92-1.74-2.1-3.57a.7.7,0,0,1,1.17-.76c1.21,1.88,2,3.29,2.16,3.68a.7.7,0,0,1-.3.94A.69.69,0,0,1,127.7,26Zm-66-.78h-2a.7.7,0,1,1,0-1.4h1c-.12-.31-.25-.68-.39-1.11a.7.7,0,0,1,1.33-.44c.4,1.2.73,2,.73,2a.7.7,0,0,1-.64,1Zm-13.19,0H31.78a.7.7,0,0,1,0-1.4H48.53a.7.7,0,0,1,0,1.4ZM59.71,17.8a.7.7,0,0,1-.69-.61c-.06-.47-.11-.95-.14-1.43a.7.7,0,0,1,.65-.74.68.68,0,0,1,.74.65c0,.46.08.91.13,1.35a.7.7,0,0,1-.6.78Zm36.44-2.21a.7.7,0,0,1-.62-.38c-.18-.36-.4-.76-.65-1.2a.7.7,0,0,1,1.21-.69c.26.46.49.88.68,1.26a.7.7,0,0,1-.62,1Zm22.34-1.77a.69.69,0,0,1-.47-.18,18,18,0,0,0-8.49-4.72,12.22,12.22,0,0,0-2.45-.24,9.2,9.2,0,0,0-3.55.67A.7.7,0,0,1,103,8.05a10.62,10.62,0,0,1,4.09-.78h0a14.46,14.46,0,0,1,2.7.27A19.31,19.31,0,0,1,119,12.6a.7.7,0,0,1-.47,1.21Zm-26.19-4a.7.7,0,0,1-.54-.25A26.69,26.69,0,0,0,88.91,6.6a.7.7,0,1,1,.92-1,28.13,28.13,0,0,1,3,3.08.7.7,0,0,1-.53,1.15ZM63.61,5a.7.7,0,0,1-.45-1.23,17.28,17.28,0,0,1,9-3.57,22.72,22.72,0,0,1,7.52.18.7.7,0,0,1-.27,1.37,21.34,21.34,0,0,0-7.06-.17,15.94,15.94,0,0,0-8.28,3.26A.7.7,0,0,1,63.61,5Z"/><path class="cls-2" d="M154.66,31.42H31.26a1.4,1.4,0,0,1,0-2.79h123.4a1.4,1.4,0,0,1,0,2.79Z"/><path class="cls-2" d="M280.68,39.1h16.65S292.12,27.46,303.18,26c9.86-1.34,13.76,8.79,13.76,8.79s1.17-5.85,7-4.73S334,40.43,334,40.43h14.5"/><path class="cls-3" d="M297.84,37.24H281.19a.7.7,0,1,1,0-1.4h16.65v.59l.61-.25a.79.79,0,0,1,0,.7A.71.71,0,0,1,297.84,37.24ZM343.46,37h-4.19a.7.7,0,1,1,0-1.4h4.19a.7.7,0,1,1,0,1.4Zm-26-4.21-.16,0a.7.7,0,0,1-.52-.84c.13-.55,1.4-5.34,6.27-5.34a8.42,8.42,0,0,1,1.56.15,12.84,12.84,0,0,1,6.54,3.93.7.7,0,0,1-1,1,11.5,11.5,0,0,0-5.81-3.54,7,7,0,0,0-1.3-.13c-3.72,0-4.74,3.55-4.91,4.27A.7.7,0,0,1,317.47,32.82Zm-19.16-6.27a.7.7,0,0,1-.52-1.17,8.16,8.16,0,0,1,3.89-2.28.7.7,0,1,1,.38,1.34,6.8,6.8,0,0,0-3.24,1.88A.7.7,0,0,1,298.31,26.55Zm10.45-2.11a.7.7,0,0,1-.2,0,10.24,10.24,0,0,0-1.27-.3.7.7,0,0,1-.57-.8.71.71,0,0,1,.8-.57,11.92,11.92,0,0,1,1.44.34.7.7,0,0,1-.2,1.37Z"/><path class="cls-2" d="M349.6,41.9H281a1.4,1.4,0,0,1,0-2.79H349.6a1.4,1.4,0,0,1,0,2.79Z"/><ellipse class="cls-3" cx="182.72" cy="257.92" rx="74.67" ry="6.51"/><path class="cls-4" d="M237.45,26.8h.14a1.69,1.69,0,0,0,1.69-1.56,4.16,4.16,0,0,1,3.26-3.73,1.7,1.7,0,1,0-.74-3.31A7.53,7.53,0,0,0,235.9,25,1.71,1.71,0,0,0,237.45,26.8Z"/><path class="cls-5" d="M220,71.68a.86.86,0,0,0-1.11-.49q-1.77.68-3.49,1.46a.85.85,0,0,0-.48.63h3.43c.39-.16.77-.33,1.16-.49A.86.86,0,0,0,220,71.68Z"/><path class="cls-5" d="M295,190a.86.86,0,0,0,1.22,0c.29-.29.56-.61.85-.91h-2.26A.86.86,0,0,0,295,190Z"/><path class="cls-5" d="M189.51,72.34A.86.86,0,0,0,188.4,71l-1.26,1.08a.86.86,0,0,0-.11,1.18h1.38Z"/><path class="cls-5" d="M82,71.18l-.6.25a9.69,9.69,0,0,1,1.72.28s0,0,0,0A.86.86,0,0,0,82,71.18Z"/><path class="cls-5" d="M163.86,72.53A.86.86,0,1,0,165,71.22l-1.28-1.06a.86.86,0,0,0-1.08,1.34Z"/><path class="cls-5" d="M52.75,71.13A.86.86,0,0,0,51.54,71l-.44.38h1.8A.85.85,0,0,0,52.75,71.13Z"/><path class="cls-3" d="M249.67,210.21a.86.86,0,0,1-.82.9q-1.87.1-3.76.1H245a73,73,0,0,1-15-1.55.86.86,0,0,1,.35-1.69A71.16,71.16,0,0,0,245,209.49c1.27,0,2.52,0,3.76-.1A.84.84,0,0,1,249.67,210.21ZM263.1,70.38a70.29,70.29,0,0,1,13.81,5.25.87.87,0,0,0,.39.09.86.86,0,0,0,.39-1.63,72,72,0,0,0-14.15-5.38.86.86,0,1,0-.44,1.67Zm-14.52-4a73.11,73.11,0,0,0-18.84,1.52.86.86,0,0,0,.18,1.7l.18,0a71.75,71.75,0,0,1,18.39-1.49.85.85,0,0,0,.9-.82A.86.86,0,0,0,248.58,66.41ZM216,205.07a.86.86,0,0,0,.35-1.65c-.73-.33-1.46-.69-2.18-1h-3.75c1.71.94,3.45,1.82,5.23,2.61A.86.86,0,0,0,216,205.07Zm68.31-127.2a.86.86,0,1,0-.94,1.45q1.56,1,3.06,2.09a.85.85,0,0,0,.5.16.86.86,0,0,0,.51-1.56Q285.86,78.9,284.26,77.87Zm-.71,120.2a70.63,70.63,0,0,1-13.16,6.72.86.86,0,0,0,.31,1.67.87.87,0,0,0,.31-.06,72.41,72.41,0,0,0,13.48-6.89.86.86,0,0,0-.94-1.44Zm-20.19,9q-1.78.48-3.6.86a.86.86,0,0,0,.18,1.7l.18,0q1.86-.4,3.69-.88a.86.86,0,0,0,.61-1.05A.87.87,0,0,0,263.36,207.08ZM245,60.85A77.68,77.68,0,0,1,300.09,83.7h4.76A81.19,81.19,0,0,0,196.79,73.28h6.07A77.43,77.43,0,0,1,245,60.85Zm0,155.84a77.46,77.46,0,0,1-44.9-14.3h-5.73a81.17,81.17,0,0,0,114.51-13.32h-4.44A77.76,77.76,0,0,1,245,216.68ZM260.11,224a88.16,88.16,0,0,1-19.51,1.2.87.87,0,0,0-.9.82.86.86,0,0,0,.82.9q2.23.11,4.49.11a89.29,89.29,0,0,0,15.4-1.34.86.86,0,1,0-.3-1.7Zm-32.45-.43c-1.58-.32-3.19-.69-4.77-1.11a.86.86,0,1,0-.44,1.67c1.61.42,3.25.81,4.86,1.13l.17,0a.86.86,0,0,0,.17-1.71Zm48.16-3.91-1.53.57a.86.86,0,1,0,.59,1.62l1.56-.58a.86.86,0,0,0-.61-1.61Zm24.9-147.14a.86.86,0,1,0,1.11-1.32l-1.28-1.06a.86.86,0,0,0-1.08,1.34Zm-84.08,148-1.54-.55a.86.86,0,1,0-.6,1.61l1.58.56a.86.86,0,1,0,.56-1.63Zm69.53-5.65c-1.43.77-2.9,1.52-4.36,2.21a.86.86,0,1,0,.74,1.56c1.5-.7,3-1.46,4.45-2.25a.86.86,0,1,0-.82-1.51Zm25.13-20.52a87.23,87.23,0,0,1-14.17,13.46.86.86,0,1,0,1,1.37,88.77,88.77,0,0,0,14.45-13.73.86.86,0,1,0-1.32-1.11Zm1.11-112.6a.86.86,0,0,0-1.32,1.11c.22.26.42.54.64.81H314C313.45,83.07,313,82.41,312.43,81.79ZM201.08,64a.84.84,0,0,0,.43-.12,86.22,86.22,0,0,1,17.9-7.86.86.86,0,0,0-.51-1.65,87.83,87.83,0,0,0-18.25,8,.86.86,0,0,0,.43,1.6Zm58.67-10.57a86.11,86.11,0,0,1,18.77,5.48.86.86,0,0,0,.67-1.59A87.92,87.92,0,0,0,260,51.77a.86.86,0,0,0-.29,1.7ZM290.14,64.9c1.38.85,2.76,1.75,4.1,2.67a.86.86,0,0,0,1-1.42c-1.37-.95-2.78-1.87-4.19-2.73a.86.86,0,0,0-.9,1.47ZM243.49,52.23h1.65a.8.8,0,0,0,.79-.86.92.92,0,0,0-.93-.86h-1.53a.86.86,0,0,0,0,1.72ZM184.92,203.43a88.71,88.71,0,0,0,16,11.84.86.86,0,0,0,.86-1.49,86.8,86.8,0,0,1-15.48-11.4h-1.56A.85.85,0,0,0,184.92,203.43ZM232,53.17h.13c1.6-.24,3.23-.43,4.86-.58a.86.86,0,1,0-.16-1.72c-1.66.15-3.33.35-5,.6a.86.86,0,0,0,.13,1.71ZM123.08,209.65l.18,0q1.86-.4,3.69-.88a.86.86,0,0,0,.61-1.05.87.87,0,0,0-1.05-.61q-1.78.48-3.6.86a.86.86,0,0,0,.18,1.7Zm2.54-140.33a.86.86,0,0,0,.61,1.05,70.24,70.24,0,0,1,8.6,2.9h4.27a72,72,0,0,0-12.43-4.57A.86.86,0,0,0,125.62,69.32ZM92.88,67.93a.86.86,0,0,0,.18,1.7l.18,0a71.75,71.75,0,0,1,18.39-1.49.85.85,0,0,0,.9-.82.86.86,0,0,0-.82-.9A73.11,73.11,0,0,0,92.88,67.93Zm-.39,140.71a.86.86,0,0,0,.67,1,73,73,0,0,0,15,1.55h.09q1.89,0,3.76-.1a.86.86,0,0,0,.82-.9.84.84,0,0,0-.9-.81c-1.25.06-2.49.1-3.76.1A71.16,71.16,0,0,1,93.51,208,.86.86,0,0,0,92.49,208.64ZM133,205.91a.86.86,0,0,0,1.11.49,72.27,72.27,0,0,0,8.62-4H139c-1.8.87-3.62,1.69-5.49,2.41A.86.86,0,0,0,133,205.91Zm-53.95-.84a.86.86,0,0,0,.35-1.65A70.39,70.39,0,0,1,72.72,200h-3.3a72.27,72.27,0,0,0,9.32,5A.86.86,0,0,0,79.09,205.07ZM108.14,60.85a77.43,77.43,0,0,1,42.14,12.43h6.07A81.17,81.17,0,0,0,62.57,71.4h6.49A77.41,77.41,0,0,1,108.14,60.85Zm0,155.84A77.51,77.51,0,0,1,60,200H54.64a81.12,81.12,0,0,0,104.14,2.4H153A77.46,77.46,0,0,1,108.14,216.68Zm41.18-1.77c-1.43.77-2.9,1.52-4.36,2.21a.86.86,0,1,0,.74,1.56c1.5-.7,3-1.46,4.45-2.25a.86.86,0,1,0-.82-1.51Zm4-150c1.38.85,2.76,1.75,4.1,2.67a.86.86,0,0,0,1-1.42c-1.37-.95-2.78-1.87-4.19-2.73a.86.86,0,0,0-.9,1.47Zm-30,159.1a88.16,88.16,0,0,1-19.51,1.2.86.86,0,1,0-.09,1.72q2.23.11,4.49.11a89.29,89.29,0,0,0,15.4-1.34.86.86,0,1,0-.3-1.7Zm-43.46-3.44L78.25,220a.86.86,0,0,0-.6,1.61l1.58.56a.86.86,0,1,0,.56-1.63Zm11,3c-1.58-.32-3.19-.69-4.77-1.11a.86.86,0,1,0-.44,1.67c1.61.42,3.25.81,4.86,1.13l.17,0a.86.86,0,0,0,.17-1.71Zm69.49-15.72a.86.86,0,1,0,1,1.37,88.54,88.54,0,0,0,8-6.84h-2.53C164.7,204.31,162.54,206.14,160.29,207.85ZM139,219.67l-1.53.57a.86.86,0,1,0,.59,1.62l1.56-.58a.86.86,0,0,0-.61-1.61ZM122.9,53.47a86.11,86.11,0,0,1,18.77,5.48.86.86,0,0,0,.67-1.59,87.92,87.92,0,0,0-19.14-5.59.86.86,0,0,0-.29,1.7Zm-16.27-1.24h1.65a.8.8,0,0,0,.79-.86.92.92,0,0,0-.93-.86h-1.53a.86.86,0,0,0,0,1.72ZM64.22,64a.84.84,0,0,0,.43-.12,86.22,86.22,0,0,1,17.9-7.86A.86.86,0,1,0,82,54.41a87.83,87.83,0,0,0-18.25,8,.86.86,0,0,0,.43,1.6ZM65,213.78a86.81,86.81,0,0,1-15.72-11.61.86.86,0,1,0-1.17,1.26,88.71,88.71,0,0,0,16,11.84.86.86,0,0,0,.86-1.49ZM95.14,53.17h.13c1.6-.24,3.23-.43,4.86-.58a.86.86,0,1,0-.16-1.72c-1.66.15-3.33.35-5,.6a.86.86,0,0,0,.13,1.71Z"/><path class="cls-2" d="M334.53,93.73H296a3,3,0,0,0-3,3v72.14a3,3,0,0,0,3,3h38.53a3,3,0,0,0,3-3V96.7A3,3,0,0,0,334.53,93.73ZM314.75,100a9.85,9.85,0,1,1-9.85,9.85A9.86,9.86,0,0,1,314.75,100Zm-9.65,29.53a1.63,1.63,0,0,1,1.25-1.09l4.72-.84,2.64-5.3,1-.07a1.62,1.62,0,0,1,1.46.9l2.22,4.47,5.6,1,.38.93a1.62,1.62,0,0,1-.35,1.62l-3.39,3.64.83,6-.8.64a1.61,1.61,0,0,1-1.69.11l-4.25-2.21-5.07,2.64-.87-.54a1.62,1.62,0,0,1-.67-1.56l.71-5-4-4.29Zm10.53,22.15a1.51,1.51,0,0,1,1.51-1.51h1.66a5.53,5.53,0,0,0-4-1.75,5.63,5.63,0,0,0-5.46,4.28,1.51,1.51,0,0,1-2.93-.73,8.58,8.58,0,0,1,14-4.41v-.64a1.51,1.51,0,1,1,3,0v4.77a1.51,1.51,0,0,1-1.51,1.51h-4.77A1.51,1.51,0,0,1,315.63,151.69Zm-.88,11a8.61,8.61,0,0,1-5.65-2.15v.64a1.51,1.51,0,1,1-3,0v-4.77a1.51,1.51,0,0,1,1.51-1.51h4.77a1.51,1.51,0,1,1,0,3H310.7a5.53,5.53,0,0,0,4,1.75,5.62,5.62,0,0,0,5.46-4.28,1.51,1.51,0,0,1,2.93.73A8.63,8.63,0,0,1,314.75,162.73Z"/><path class="cls-2" d="M314.75,116.7a6.84,6.84,0,1,0-6.84-6.84A6.85,6.85,0,0,0,314.75,116.7Zm-1.46-11a.86.86,0,1,1,1.72,0v3.91h3.91a.86.86,0,1,1,0,1.72h-4.77a.86.86,0,0,1-.86-.86Z"/><polygon class="cls-2" points="311.49 137.59 314.75 135.9 318.01 137.59 317.48 133.79 320.11 130.97 316.41 130.3 314.75 126.97 313.09 130.3 309.39 130.97 312.02 133.79 311.49 137.59"/><path class="cls-6" d="M308.13,139.84a1.62,1.62,0,0,0,.67,1.56l.87.54,5.07-2.64,4.25,2.21a1.61,1.61,0,0,0,1.69-.11l.8-.64-.83-6,3.39-3.64a1.62,1.62,0,0,0,.35-1.62l-.38-.93-5.6-1-2.22-4.47a1.62,1.62,0,0,0-1.46-.9l-1,.07-2.64,5.3-4.72.84a1.63,1.63,0,0,0-1.25,1.09l-.25,1,4,4.29Zm5-9.54,1.66-3.33,1.66,3.33,3.7.66-2.63,2.83.53,3.8-3.26-1.7-3.26,1.7.53-3.8L309.39,131Z"/><polygon class="cls-2" points="44.68 126.97 42.9 130.55 38.91 131.26 41.75 134.31 41.17 138.4 44.68 136.58 48.19 138.4 47.62 134.31 50.46 131.26 46.47 130.55 44.68 126.97"/><path class="cls-2" d="M13,181.86h64.8a3.15,3.15,0,0,0,3.15-3.15V85a3.15,3.15,0,0,0-3.15-3.15H13A3.15,3.15,0,0,0,9.83,85V178.7A3.15,3.15,0,0,0,13,181.86Zm41-18.57a9.51,9.51,0,0,1-15.44,5v.57a1.72,1.72,0,0,1-3.44,0v-5.25a1.72,1.72,0,0,1,1.72-1.72h5.25a1.72,1.72,0,0,1,0,3.44H40.36a6,6,0,0,0,4.32,1.8,6.13,6.13,0,0,0,5.94-4.66,1.72,1.72,0,0,1,3.34.83Zm.31-4.95a1.72,1.72,0,0,1-1.72,1.72H47.31a1.72,1.72,0,0,1,0-3.44H49a6,6,0,0,0-4.32-1.8,6.13,6.13,0,0,0-5.94,4.66,1.72,1.72,0,0,1-1.67,1.31,1.79,1.79,0,0,1-.42-.05,1.72,1.72,0,0,1-1.25-2.09,9.51,9.51,0,0,1,15.44-5v-.57a1.72,1.72,0,1,1,3.44,0ZM55,131.48l-3.7,4,.92,6.56-.91.73a1.84,1.84,0,0,1-1.93.13l-4.66-2.43-5.59,2.91-1-.62a1.84,1.84,0,0,1-.76-1.77l.77-5.52-4.4-4.73.29-1.1a1.85,1.85,0,0,1,1.43-1.24l5.16-.92,2.91-5.84,1.18-.07a1.84,1.84,0,0,1,1.66,1l2.44,4.89,6.17,1.1.42,1.07A1.85,1.85,0,0,1,55,131.48ZM44.68,92.77a10.91,10.91,0,1,1-10.91,10.91A10.92,10.92,0,0,1,44.68,92.77Z"/><path class="cls-2" d="M37.22,103.68a7.46,7.46,0,1,0,7.46-7.46A7.47,7.47,0,0,0,37.22,103.68Zm5.95-4.59a.86.86,0,0,1,1.72,0v4.39h4.39a.86.86,0,1,1,0,1.72H44a.86.86,0,0,1-.86-.86Z"/><path class="cls-6" d="M54.95,128.56l-6.17-1.1-2.44-4.89a1.84,1.84,0,0,0-1.66-1l-1.18.07-2.91,5.84-5.16.92A1.85,1.85,0,0,0,34,129.63l-.29,1.1,4.4,4.73L37.34,141a1.84,1.84,0,0,0,.76,1.77l1,.62,5.59-2.91,4.66,2.43a1.84,1.84,0,0,0,1.93-.13l.91-.73-.92-6.56,3.7-4a1.85,1.85,0,0,0,.41-1.85Zm-7.33,5.75.57,4.09-3.51-1.83-3.51,1.83.57-4.09-2.84-3,4-.71L44.68,127l1.78,3.58,4,.71Z"/><path class="cls-2" d="M152.61,125.88a7.46,7.46,0,1,0-7.46-7.46A7.47,7.47,0,0,0,152.61,125.88Zm-1.52-12.06a.86.86,0,0,1,1.72,0v4.39h4.39a.86.86,0,1,1,0,1.72H152a.86.86,0,0,1-.86-.86Z"/><polygon class="cls-2" points="183.41 116.65 181.63 113.06 179.84 116.65 175.85 117.36 178.69 120.41 178.12 124.5 181.63 122.67 185.13 124.5 184.56 120.41 187.4 117.36 183.41 116.65"/><path class="cls-2" d="M131.35,153.46h99.33a3.6,3.6,0,0,0,3.6-3.6V90.61a3.6,3.6,0,0,0-3.6-3.6H131.35a3.6,3.6,0,0,0-3.6,3.6v59.24A3.6,3.6,0,0,0,131.35,153.46Zm56.85-31.9.92,6.56-.91.73a1.84,1.84,0,0,1-1.93.13l-4.66-2.43L176,129.47l-1-.62a1.85,1.85,0,0,1-.77-1.76l.77-5.54-4.4-4.73.29-1.1a1.85,1.85,0,0,1,1.43-1.24l5.16-.92,2.91-5.85,1.19-.07a1.85,1.85,0,0,1,1.65,1l2.44,4.89,6.17,1.1.42,1.06a1.86,1.86,0,0,1-.4,1.85Zm13.15-5.46a9.51,9.51,0,0,1,15.44-5v-.57a1.72,1.72,0,0,1,3.44,0v5.25a1.72,1.72,0,0,1-1.72,1.72h-5.25a1.72,1.72,0,1,1,0-3.44H215a6,6,0,0,0-4.32-1.8,6.13,6.13,0,0,0-5.94,4.67,1.72,1.72,0,0,1-1.67,1.31,1.79,1.79,0,0,1-.42-.05A1.72,1.72,0,0,1,201.36,116.1ZM201,121a1.72,1.72,0,0,1,1.72-1.72H208a1.72,1.72,0,0,1,0,3.44h-1.69a6,6,0,0,0,4.32,1.8,6.13,6.13,0,0,0,5.94-4.67,1.72,1.72,0,0,1,3.34.83,9.51,9.51,0,0,1-15.44,5v.57a1.72,1.72,0,1,1-3.44,0Zm-48.43-13.53a10.91,10.91,0,1,1-10.91,10.91A10.92,10.92,0,0,1,152.61,107.51Z"/><path class="cls-7" d="M337.27,87.15h-44a5.94,5.94,0,0,0-5.94,5.94v86.6a5.94,5.94,0,0,0,5.94,5.94h44a5.94,5.94,0,0,0,5.94-5.94V93.09A5.94,5.94,0,0,0,337.27,87.15Zm-15.07,91a2.67,2.67,0,0,1-2.67,2.67H311a2.67,2.67,0,0,1-2.67-2.67v-.1a2.67,2.67,0,0,1,2.67-2.67h8.54a2.67,2.67,0,0,1,2.67,2.67Zm15.29-9.34a3,3,0,0,1-3,3H296a3,3,0,0,1-3-3V96.7a3,3,0,0,1,3-3h38.53a3,3,0,0,1,3,3ZM10.07,196.54H80.7A6.31,6.31,0,0,0,87,190.23V81.15a6.31,6.31,0,0,0-6.31-6.31H10.07a6.31,6.31,0,0,0-6.31,6.31V190.23A6.31,6.31,0,0,0,10.07,196.54Zm24.82-6.83v-2.2a2.31,2.31,0,0,1,2.31-2.31H53.57a2.31,2.31,0,0,1,2.31,2.31v2.2A2.31,2.31,0,0,1,53.57,192H37.2A2.31,2.31,0,0,1,34.89,189.71ZM9.83,85A3.15,3.15,0,0,1,13,81.84h64.8A3.15,3.15,0,0,1,80.94,85V178.7a3.15,3.15,0,0,1-3.15,3.15H13a3.15,3.15,0,0,1-3.15-3.15Zm118.28,74.13H233.92A6.12,6.12,0,0,0,240,153V82.84a6.12,6.12,0,0,0-6.12-6.12H128.11A6.12,6.12,0,0,0,122,82.84V153A6.12,6.12,0,0,0,128.11,159.13ZM179,81.67a2,2,0,1,1,2,2A2,2,0,0,1,179,81.67Zm-51.28,8.94a3.6,3.6,0,0,1,3.6-3.6h99.33a3.6,3.6,0,0,1,3.6,3.6v59.24a3.6,3.6,0,0,1-3.6,3.6H131.35a3.6,3.6,0,0,1-3.6-3.6ZM249,198.94a3.62,3.62,0,0,0,3.82-3.38v-1.77a3,3,0,0,0-.28-1.26l-12.64-27.81a3.84,3.84,0,0,0-3.54-2.12H124.91a3.83,3.83,0,0,0-3.57,2.18l-11.86,27.77a3,3,0,0,0-.25,1.19v1.81a3.62,3.62,0,0,0,3.82,3.38Zm-14.64-25.79a16.05,16.05,0,0,1,.59,2c.13.54-.68,1.09-1.55,1.09l-6.37,0c-.57,0-1-.23-1.06-.57a12.51,12.51,0,0,0-.59-2c-.2-.54.49-1.11,1.39-1.11l6.44,0A1.17,1.17,0,0,1,234.33,173.15Zm-9.4-6.83h6c.52,0,.9.23,1,.57a12.69,12.69,0,0,0,.46,1.9c.16.52-.48,1-1.28,1h-5.94a1.14,1.14,0,0,1-1.11-.55,15.3,15.3,0,0,1-.61-1.89C223.31,166.86,224.09,166.32,224.94,166.31Zm-5.49,6.88c.16.79.24,1.19.39,2,.1.54-.71,1.1-1.61,1.1l-6.58,0c-.58,0-1-.23-1.13-.58-.2-.79-.3-1.18-.51-2-.14-.55.67-1.12,1.6-1.12l6.74,0C218.93,172.6,219.37,172.84,219.44,173.19Zm-9.07-6.84,6.38,0c.56,0,1,.23,1,.57l.38,1.9c.11.52-.66,1-1.51,1l-6.24,0c-.55,0-1-.22-1.08-.55l-.5-1.88C208.72,166.9,209.49,166.35,210.38,166.35Zm-7.49,7c.12.8.17,1.2.28,2,.07.53-.68,1-1.55,1l-6.8,0c-.65,0-1.17-.27-1.25-.66-.17-.8-.26-1.19-.44-2-.12-.53.62-1,1.52-1l7,0C202.32,172.66,202.83,172.94,202.88,173.34Zm-8.63-6.93,6.67,0c.63,0,1.12.27,1.17.64.11.76.16,1.14.27,1.89.07.5-.64,1-1.47,1l-6.5,0c-.62,0-1.12-.26-1.2-.63l-.41-1.89C192.69,166.89,193.4,166.41,194.26,166.4Zm-17.2.76c.1-.4.68-.7,1.36-.7l6,0c.67,0,1.22.29,1.28.69.12.76.18,1.14.29,1.89.08.48-.57.92-1.38.92l-6.76,0c-.8,0-1.42-.43-1.31-.91C176.77,168.31,176.86,167.93,177.05,167.17Zm-.43,6.35c.09-.43.69-.75,1.4-.75l6.33,0c.71,0,1.29.31,1.36.74l.34,2c.09.51-.59,1-1.42,1l-7.05,0c-.84,0-1.49-.45-1.39-1C176.36,174.74,176.45,174.33,176.62,173.52Zm-14.7-7,6.68,0c.86,0,1.51.47,1.35,1-.24.76-.35,1.14-.58,1.89a1.25,1.25,0,0,1-1.25.64l-6.5,0c-.83,0-1.51-.47-1.39-1,.17-.75.26-1.13.45-1.89C160.78,166.8,161.29,166.53,161.92,166.53Zm-2.47,7c.08-.4.6-.69,1.26-.7l7,0c.9,0,1.61.51,1.47,1-.22.81-.32,1.22-.53,2a1.25,1.25,0,0,1-1.28.69l-6.8,0c-.87,0-1.6-.5-1.51-1C159.23,174.77,159.3,174.36,159.45,173.54Zm-22.71.54a13.48,13.48,0,0,0-.67,2.06c-.09.36-.52.61-1.08.61l-6.37,0c-.87,0-1.66-.57-1.51-1.15a16.84,16.84,0,0,1,.68-2.08,1.22,1.22,0,0,1,1.18-.62l6.44,0C136.31,172.93,137,173.51,136.75,174.08Zm1.54-4.56a1.24,1.24,0,0,1-1.15.56H131.2c-.81,0-1.41-.53-1.21-1.05a17.25,17.25,0,0,0,.63-1.88,1,1,0,0,1,1-.56h6c.84,0,1.56.53,1.38,1C138.79,168.4,138.62,168.77,138.29,169.53Zm13.44,6.54c-.1.36-.57.61-1.15.61l-6.59,0c-.9,0-1.7-.57-1.57-1.13.18-.82.28-1.23.47-2.06.09-.36.55-.61,1.14-.62l6.74,0c.94,0,1.72.57,1.55,1.14C152.07,174.84,152,175.25,151.72,176.07Zm1.49-6.58a1.13,1.13,0,0,1-1.12.56l-6.24,0c-.85,0-1.58-.53-1.43-1,.21-.75.33-1.13.56-1.89a1.1,1.1,0,0,1,1.11-.56l6.38,0c.89,0,1.6.53,1.41,1.05C153.6,168.36,153.47,168.74,153.21,169.49Zm3.86,18.79c.57-2.93.83-4.46,1.41-7.55,0-.42.52-.73,1.18-.74l43.64-.33c.66,0,1.14.3,1.14.71a75,75,0,0,1,.75,7.8c0,.53-.76,1-1.5,1H158.44C157.69,189.2,157,188.77,157.07,188.28Z"/><path class="cls-8" d="M337.27,83.7h-.32a1.39,1.39,0,0,0,0-.22V82.05a1.48,1.48,0,0,0-1.48-1.48h-8.27a1.48,1.48,0,0,0-1.48,1.48v1.43a1.39,1.39,0,0,0,0,.22H293.25a9.39,9.39,0,0,0-9.38,9.38v86.6a9.39,9.39,0,0,0,9.38,9.38h44a9.39,9.39,0,0,0,9.38-9.38V93.09A9.39,9.39,0,0,0,337.27,83.7Zm5.94,96a5.94,5.94,0,0,1-5.94,5.94h-44a5.94,5.94,0,0,1-5.94-5.94V93.09a5.94,5.94,0,0,1,5.94-5.94h44a5.94,5.94,0,0,1,5.94,5.94Zm-21-1.61v.1a2.67,2.67,0,0,1-2.67,2.67H311a2.67,2.67,0,0,1-2.67-2.67v-.1a2.67,2.67,0,0,1,2.67-2.67h8.54A2.67,2.67,0,0,1,322.2,178.08ZM69.42,200H80.7a9.77,9.77,0,0,0,9.75-9.75V81.15a9.76,9.76,0,0,0-9.06-9.72c-.23,0-.46,0-.7,0H10.07A9.77,9.77,0,0,0,.32,81.15V190.23A9.77,9.77,0,0,0,10.07,200H69.42ZM3.76,81.15a6.31,6.31,0,0,1,6.31-6.31H80.7A6.31,6.31,0,0,1,87,81.15V190.23a6.31,6.31,0,0,1-6.31,6.31H10.07a6.31,6.31,0,0,1-6.31-6.31ZM37.2,192a2.31,2.31,0,0,1-2.31-2.31v-2.2a2.31,2.31,0,0,1,2.31-2.31H53.57a2.31,2.31,0,0,1,2.31,2.31v2.2A2.31,2.31,0,0,1,53.57,192Zm173.18,10.37H249a7.06,7.06,0,0,0,7.26-6.82v-1.77a6.45,6.45,0,0,0-.58-2.69L243,163.29a6.93,6.93,0,0,0-2.82-3.09,9.54,9.54,0,0,0,3.29-7.2V82.84a9.58,9.58,0,0,0-9.57-9.57H128.11a9.58,9.58,0,0,0-9.57,9.57V153a9.53,9.53,0,0,0,3,6.94,7,7,0,0,0-3.37,3.49L106.32,191.2a6.45,6.45,0,0,0-.52,2.55v1.81a7.06,7.06,0,0,0,7.26,6.82h97.32Zm-97.32-3.44a3.62,3.62,0,0,1-3.82-3.38v-1.81a3,3,0,0,1,.25-1.19l11.86-27.77a3.83,3.83,0,0,1,3.57-2.18H236.34a3.84,3.84,0,0,1,3.54,2.12l12.64,27.81a3,3,0,0,1,.28,1.26v1.77a3.62,3.62,0,0,1-3.82,3.38ZM122,153V82.84a6.12,6.12,0,0,1,6.12-6.12H233.92A6.12,6.12,0,0,1,240,82.84V153a6.12,6.12,0,0,1-6.12,6.12H128.11A6.12,6.12,0,0,1,122,153Zm35.08,35.28c.57-2.93.83-4.46,1.41-7.55,0-.42.52-.73,1.18-.74l43.64-.33c.66,0,1.14.3,1.14.71a75,75,0,0,1,.75,7.8c0,.53-.76,1-1.5,1H158.44C157.69,189.2,157,188.77,157.07,188.28ZM152.32,174c-.25.82-.36,1.23-.59,2-.1.36-.57.61-1.15.61l-6.59,0c-.9,0-1.7-.57-1.57-1.13.18-.82.28-1.23.47-2.06.09-.36.55-.61,1.14-.62l6.74,0C151.7,172.88,152.49,173.46,152.32,174Zm6.77,1.56c.14-.81.21-1.22.37-2,.08-.4.6-.69,1.26-.7l7,0c.9,0,1.61.51,1.47,1-.22.81-.32,1.22-.53,2a1.25,1.25,0,0,1-1.28.69l-6.8,0C159.72,176.62,159,176.12,159.09,175.58Zm42.57-2.91c.66,0,1.17.28,1.23.67.12.8.17,1.2.28,2,.07.53-.68,1-1.55,1l-6.8,0c-.65,0-1.17-.27-1.25-.66-.17-.8-.26-1.19-.44-2-.12-.53.62-1,1.52-1Zm-25.46,2.88c.17-.81.25-1.21.43-2,.09-.43.69-.75,1.4-.75l6.33,0c.71,0,1.29.31,1.36.74l.34,2c.09.51-.59,1-1.42,1l-7.05,0C176.74,176.52,176.09,176.06,176.2,175.54Zm35.4-2.92,6.74,0c.59,0,1,.24,1.11.59.16.79.24,1.19.39,2,.1.54-.71,1.1-1.61,1.1l-6.58,0c-.58,0-1-.23-1.13-.58-.2-.79-.3-1.18-.51-2C209.85,173.2,210.66,172.63,211.6,172.63Zm-57.72-5c-.28.76-.41,1.13-.67,1.89a1.13,1.13,0,0,1-1.12.56l-6.24,0c-.85,0-1.58-.53-1.43-1,.21-.75.33-1.13.56-1.89a1.1,1.1,0,0,1,1.11-.56l6.38,0C153.36,166.55,154.07,167.09,153.88,167.61Zm8-1.08,6.68,0c.86,0,1.51.47,1.35,1-.24.76-.35,1.14-.58,1.89a1.25,1.25,0,0,1-1.25.64l-6.5,0c-.83,0-1.51-.47-1.39-1,.17-.75.26-1.13.45-1.89C160.78,166.8,161.29,166.53,161.92,166.53Zm31.29,2.76-.41-1.89c-.11-.51.6-1,1.46-1l6.67,0c.63,0,1.12.27,1.17.64.11.76.16,1.14.27,1.89.07.5-.64,1-1.47,1l-6.5,0C193.79,169.91,193.29,169.65,193.21,169.28Zm-16.62-.22c.18-.75.27-1.13.47-1.89.1-.4.68-.7,1.36-.7l6,0c.67,0,1.22.29,1.28.69.12.76.18,1.14.29,1.89.08.48-.57.92-1.38.92l-6.76,0C177.09,170,176.47,169.54,176.59,169.06Zm32.78.25-.5-1.88c-.14-.53.63-1.07,1.52-1.07l6.38,0c.56,0,1,.23,1,.57l.38,1.9c.11.52-.66,1-1.51,1l-6.24,0C209.89,169.86,209.45,169.64,209.37,169.31Zm-72.62,4.78a13.48,13.48,0,0,0-.67,2.06c-.09.36-.52.61-1.08.61l-6.37,0c-.87,0-1.66-.57-1.51-1.15a16.84,16.84,0,0,1,.68-2.08,1.22,1.22,0,0,1,1.18-.62l6.44,0C136.31,172.93,137,173.51,136.75,174.08Zm2.31-6.44c-.27.75-.43,1.13-.77,1.88a1.24,1.24,0,0,1-1.15.56H131.2c-.81,0-1.41-.53-1.21-1.05a17.25,17.25,0,0,0,.63-1.88,1,1,0,0,1,1-.56h6C138.53,166.59,139.25,167.12,139.06,167.64Zm87.68,4.94,6.44,0a1.17,1.17,0,0,1,1.15.58,16.05,16.05,0,0,1,.59,2c.13.54-.68,1.09-1.55,1.09l-6.37,0c-.57,0-1-.23-1.06-.57a12.51,12.51,0,0,0-.59-2C225.15,173.14,225.84,172.58,226.74,172.58Zm-2.67-3.3a15.3,15.3,0,0,1-.61-1.89c-.14-.53.64-1.08,1.48-1.08h6c.52,0,.9.23,1,.57a12.69,12.69,0,0,0,.46,1.9c.16.52-.48,1-1.28,1h-5.94A1.14,1.14,0,0,1,224.06,169.28ZM181,83.66a2,2,0,1,1,2-2A2,2,0,0,1,181,83.66Z"/><path class="cls-6" d="M192.31,115.72l-.42-1.06-6.17-1.1-2.44-4.89a1.85,1.85,0,0,0-1.65-1l-1.19.07-2.91,5.85-5.16.92a1.85,1.85,0,0,0-1.43,1.24l-.29,1.1,4.4,4.73-.77,5.54a1.85,1.85,0,0,0,.77,1.76l1,.62,5.59-2.91,4.66,2.43a1.84,1.84,0,0,0,1.93-.13l.91-.73-.92-6.56,3.71-4A1.86,1.86,0,0,0,192.31,115.72Zm-7.75,4.69.57,4.09-3.51-1.83-3.51,1.83.57-4.09-2.84-3,4-.71,1.78-3.58,1.78,3.58,4,.71Z"/><path class="cls-9" d="M304.9,109.86a9.85,9.85,0,1,0,9.85-9.85A9.86,9.86,0,0,0,304.9,109.86Zm9.85-6.84a6.84,6.84,0,1,1-6.84,6.84A6.85,6.85,0,0,1,314.75,103Zm-1.46,7.43v-4.77a.86.86,0,1,1,1.72,0v3.91h3.91a.86.86,0,1,1,0,1.72h-4.77A.86.86,0,0,1,313.29,110.45Zm3.84,42.74a1.51,1.51,0,0,1,0-3h1.66a5.53,5.53,0,0,0-4-1.75,5.63,5.63,0,0,0-5.46,4.28,1.51,1.51,0,0,1-2.93-.73,8.58,8.58,0,0,1,14-4.41v-.64a1.51,1.51,0,1,1,3,0v4.77a1.51,1.51,0,0,1-1.51,1.51Zm-2.38,9.54a8.61,8.61,0,0,1-5.65-2.15v.64a1.51,1.51,0,1,1-3,0v-4.77a1.51,1.51,0,0,1,1.51-1.51h4.77a1.51,1.51,0,1,1,0,3H310.7a5.53,5.53,0,0,0,4,1.75,5.62,5.62,0,0,0,5.46-4.28,1.51,1.51,0,0,1,2.93.73A8.63,8.63,0,0,1,314.75,162.73ZM44.68,114.59a10.91,10.91,0,1,0-10.91-10.91A10.92,10.92,0,0,0,44.68,114.59Zm0-18.37a7.46,7.46,0,1,1-7.46,7.46A7.47,7.47,0,0,1,44.68,96.21Zm-1.52,8.12V99.09a.86.86,0,0,1,1.72,0v4.39h4.39a.86.86,0,1,1,0,1.72H44A.86.86,0,0,1,43.16,104.33Zm11.11,48.76v5.25a1.72,1.72,0,0,1-1.72,1.72H47.31a1.72,1.72,0,0,1,0-3.44H49a6,6,0,0,0-4.32-1.8,6.13,6.13,0,0,0-5.94,4.66,1.72,1.72,0,0,1-1.67,1.31,1.79,1.79,0,0,1-.42-.05,1.72,1.72,0,0,1-1.25-2.09,9.51,9.51,0,0,1,15.44-5v-.57a1.72,1.72,0,1,1,3.44,0ZM54,163.29a9.51,9.51,0,0,1-15.44,5v.57a1.72,1.72,0,0,1-3.44,0v-5.25a1.72,1.72,0,0,1,1.72-1.72h5.25a1.72,1.72,0,0,1,0,3.44H40.36a6,6,0,0,0,4.32,1.8,6.13,6.13,0,0,0,5.94-4.66,1.72,1.72,0,0,1,3.34.83Zm98.64-34a10.91,10.91,0,1,0-10.91-10.91A10.92,10.92,0,0,0,152.61,129.32Zm0-18.37a7.46,7.46,0,1,1-7.46,7.46A7.47,7.47,0,0,1,152.61,111Zm-1.52,8.12v-5.25a.86.86,0,0,1,1.72,0v4.39h4.39a.86.86,0,1,1,0,1.72H152A.86.86,0,0,1,151.09,119.07Zm50,7.22V121a1.72,1.72,0,0,1,1.72-1.72H208a1.72,1.72,0,0,1,0,3.44h-1.69a6,6,0,0,0,4.32,1.8,6.13,6.13,0,0,0,5.94-4.67,1.72,1.72,0,0,1,3.34.83,9.51,9.51,0,0,1-15.44,5v.57a1.72,1.72,0,1,1-3.44,0Zm.31-10.19a9.51,9.51,0,0,1,15.44-5v-.57a1.72,1.72,0,0,1,3.44,0v5.25a1.72,1.72,0,0,1-1.72,1.72h-5.25a1.72,1.72,0,1,1,0-3.44H215a6,6,0,0,0-4.32-1.8,6.13,6.13,0,0,0-5.94,4.67,1.72,1.72,0,0,1-1.67,1.31,1.79,1.79,0,0,1-.42-.05A1.72,1.72,0,0,1,201.36,116.1Z"/><ellipse class="cls-3" cx="313.67" cy="257.92" rx="32.1" ry="5.63"/><ellipse class="cls-3" cx="47.11" cy="257.92" rx="43.73" ry="5.63"/></g></svg>PK
!<#{+chrome/content/img/icons_addons-colored.svg<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title>Icons / Extension</title><g fill="none"><path d="M0 0h16v16H0z"/><path d="M22.5 16c-1 0-1 1-1.7 1-.5 0-.8-.3-.8-.7V13c0-.6-.4-1-1-1h-3.2c-.5 0-.8-.3-.8-.7 0-.8 1-.8 1-1.8 0-.9-.9-1.5-2-1.5s-2 .6-2 1.5c0 1 1 1 1 1.8 0 .4-.3.7-.7.7H9c-.6 0-1 .4-1 1v2.3c0 .4.3.7.8.7.7 0 .7-1 1.7-1 .9 0 1.5.9 1.5 2s-.6 2-1.5 2c-1 0-1-1-1.7-1-.5 0-.8.3-.8.8V23c0 .6.4 1 1 1h3.3c.4 0 .7-.3.7-.7 0-.8-1-.8-1-1.8 0-.9.9-1.5 2-1.5s2 .6 2 1.5c0 1-1 1-1 1.8 0 .4.3.7.8.7H19c.6 0 1-.4 1-1v-3.2c0-.5.3-.8.8-.8.7 0 .7 1 1.7 1 .9 0 1.5-.9 1.5-2s-.6-2-1.5-2z" fill="#0A84FF"/></g></svg>PK
!<Of} } 0chrome/content/img/icons_addons-notification.svg<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><defs><style>.cls-1{fill:none;}.cls-2{fill:#13bf00;}.cls-3{fill:#a0a7e6;}.cls-4{fill:#e1e1e5;}.cls-5{fill:#767aa8;}.cls-6{fill:#737eb3;}.cls-7{fill:#f5f5f7;}.cls-8{fill:#5df73e;}.cls-9{fill:#fff;}</style></defs><title>icons</title><path class="cls-1" d="M11.31,10.32a4.48,4.48,0,0,1-.52.36,4.41,4.41,0,0,0,.52-.36Z"/><path class="cls-1" d="M11.57,11.48a2.4,2.4,0,0,1-.68.26h-.67V11h0v.79h.67A2.44,2.44,0,0,0,11.57,11.48Z"/><path class="cls-1" d="M7.76,11.75H7.39a1.4,1.4,0,0,0-.67.17,1.39,1.39,0,0,1,.65-.16Z"/><path class="cls-1" d="M9.42,19.66c.35.4.47.49.77.49,0,0,.1,0,.19-.15a1.85,1.85,0,0,0,.27-1.1,1.7,1.7,0,0,0-.25-1,.3.3,0,0,0-.21-.14c-.3,0-.41.09-.77.49a3.39,3.39,0,0,1-.84.74A3.39,3.39,0,0,1,9.42,19.66Z"/><path class="cls-1" d="M7.75,4.12V7a.56.56,0,0,0,.56.56h2a.55.55,0,0,0,.24-.06.56.56,0,0,1-.21,0h-2A.56.56,0,0,1,7.78,7V4.1a.19.19,0,0,0-.19-.19l-.07,0h0l.07,0A.19.19,0,0,1,7.75,4.12Z"/><path class="cls-1" d="M12.49,6.11l.18,0-.16,0A3.74,3.74,0,0,0,11,4.17v0A3.74,3.74,0,0,1,12.49,6.11Z"/><path class="cls-1" d="M16.46,7.06h2.76a1,1,0,0,1,1,1V9.92a1,1,0,0,1-.61.93h0a1,1,0,0,0,.63-.94V8.07a1,1,0,0,0-1-1H16.49c-.35-.59-1.12-1.1-2.72-1.1A5,5,0,0,0,13,6,5.81,5.81,0,0,1,13.74,6C15.34,6,16.11,6.47,16.46,7.06Z"/><path class="cls-1" d="M10.16,21.16a1.1,1.1,0,0,0,.54-.15,1.1,1.1,0,0,1-.52.14c-1.45,0-1.52-1.49-2.63-1.49a1.68,1.68,0,0,0-.59.1,1.71,1.71,0,0,1,.57-.09C8.64,19.67,8.71,21.16,10.16,21.16Z"/><path class="cls-1" d="M7.93,18.13c.55-.2.82-.84,1.38-1.19C8.74,17.28,8.47,17.91,7.93,18.13Z"/><path class="cls-1" d="M12.93,23.27c0,1.46,1.44,1.66,1.44,2.77A1.4,1.4,0,0,1,14,27a1.38,1.38,0,0,0,.37-1c0-1.11-1.44-1.31-1.44-2.77A1.57,1.57,0,0,1,13.86,22,1.58,1.58,0,0,0,12.93,23.27Z"/><path class="cls-1" d="M17.59,11.51a.37.37,0,0,1,.35.23h2.47a1.44,1.44,0,0,1,1.43,1.45V15.3a3,3,0,0,0,.07.35c.11.4.36,1,1,1a.72.72,0,0,0,.31-.07.72.72,0,0,1-.28.06c-.59,0-.85-.61-1-1a3,3,0,0,1-.07-.35V13.18a1.44,1.44,0,0,0-1.43-1.45H18a.37.37,0,0,0-.35-.23v-.55h0Z"/><path class="cls-1" d="M27.52,18.18c0,1.58-.55,2.33-1.16,2.68.62-.34,1.18-1.1,1.18-2.69,0-2.54-1.41-2.84-2.23-2.84a2,2,0,0,0-1,.22,2,2,0,0,1,.94-.2C26.11,15.34,27.52,15.65,27.52,18.18Z"/><path class="cls-1" d="M21.84,21.06V26.2A1.45,1.45,0,0,1,21,27.52a1.45,1.45,0,0,0,.88-1.33V21s.11-1,.71-1.26C22,20,21.84,21.06,21.84,21.06Z"/><path class="cls-1" d="M15.26,22.64c-1,0-1.3.49-1.31.62,0,.36.16.53.51.89a3,3,0,0,1,.87,1.34,3,3,0,0,1,.84-1.33c.34-.36.5-.54.5-.89C16.64,23.14,16.23,22.64,15.26,22.64Z"/><path class="cls-2" d="M11.23,15.24a1,1,0,0,1,1-1h1.63v-.47a.36.36,0,0,1-.26-.09.37.37,0,0,1,.12-.61l.14-.06V12.3a.36.36,0,0,1-.26-.09.37.37,0,0,1,.12-.61l.14-.06v-.59H12.26l-.18,0a.88.88,0,0,1-.16.27l0,0-.15.14-.1.07-.09.05a2.44,2.44,0,0,1-.7.27h-.67v3.91h1Z"/><path class="cls-2" d="M7.76,14.48h0V11.75h-.4a1.39,1.39,0,0,0-.65.16A1.46,1.46,0,0,0,6,13.18v2.46h1.8Z"/><path class="cls-2" d="M12.71,7.06h3.75C16.11,6.47,15.34,6,13.74,6A5.81,5.81,0,0,0,13,6l-.29.06-.18,0A3.76,3.76,0,0,1,12.71,7.06Z"/><path class="cls-2" d="M17.73,12.22l-.14.06v.67a.37.37,0,0,1,.14.72l-.14.06v.49h1.63a1,1,0,0,1,1,1v.42h1.67a3,3,0,0,1-.07-.35V13.2a1.44,1.44,0,0,0-1.43-1.45H17.94A.37.37,0,0,1,17.73,12.22Z"/><path class="cls-3" d="M7.79,11v.79h0v2.73h.73V11A3.73,3.73,0,0,1,7.75,4.2V4.12a.19.19,0,0,0-.19-.19l-.07,0a3.76,3.76,0,0,0,.29,7Z"/><path class="cls-4" d="M9.64,7.56H8.32A.56.56,0,0,1,7.75,7V4.2A3.75,3.75,0,0,0,8.49,11v3.51h1.7v1.18h0V11h0a3.2,3.2,0,0,0,.57-.27,4.48,4.48,0,0,0,.52-.36,1,1,0,0,1-.08-.4V8.08a1,1,0,0,1,1-1h.46A3.84,3.84,0,0,0,11,4.2V7a.56.56,0,0,1-.35.52.55.55,0,0,1-.24.06Z"/><polygon class="cls-5" points="7.76 15.66 10.19 15.66 10.19 14.48 8.49 14.48 8.49 14.48 7.76 14.48 7.76 14.48 7.76 15.66"/><path class="cls-4" d="M17.59,14.21v-.49l-1.21.49h-2L17.45,13l.14,0v-.67L14,13.73a.35.35,0,0,1-.14,0v.47h-.34v1.44h4.4V14.21Z"/><path class="cls-6" d="M17.73,12.22a.37.37,0,0,0,.21-.48h0a.37.37,0,0,0-.35-.23v.77Z"/><path class="cls-6" d="M13.54,12.08a.37.37,0,0,0,.08.12.36.36,0,0,0,.26.09v-.76l-.14.06A.37.37,0,0,0,13.54,12.08Z"/><path class="cls-6" d="M17.73,13.67a.37.37,0,0,0-.14-.72v.77Z"/><path class="cls-6" d="M13.54,13.52a.37.37,0,0,0,.08.12.36.36,0,0,0,.26.09V13l-.14.06A.37.37,0,0,0,13.54,13.52Z"/><path class="cls-5" d="M14,12.28l3.31-1.34h-2l-1.46.59v.76A.35.35,0,0,0,14,12.28Z"/><path class="cls-5" d="M14.4,14.21h2l1.21-.49v-.77l-.14,0Z"/><path class="cls-5" d="M14,13.73l3.57-1.45v-.77l-.14,0L13.88,13v.76A.35.35,0,0,0,14,13.73Z"/><path class="cls-4" d="M17.94,10.29V7.06h-4.4v3.89h.34v.59l1.46-.59h2L14,12.28a.35.35,0,0,1-.14,0V13l3.57-1.45.14,0v-.56h.34v-.64Z"/><path class="cls-5" d="M11.34,10.31a1,1,0,0,0,.75.6h0l.18,0h1.28V7.06H12.26a1,1,0,0,0-1,1V9.92a1,1,0,0,0,.08.4h0Z"/><path class="cls-5" d="M13.54,15a.37.37,0,0,1,0-.28v-.47H12.26a1,1,0,0,0-1,1v.42h2.31V15Z"/><path class="cls-6" d="M13.54,15h0v-.29A.37.37,0,0,0,13.54,15Z"/><path class="cls-7" d="M20.24,9.92V8.08a1,1,0,0,0-1-1H17.94v3.87h1.31a1,1,0,0,0,1-1Z"/><path class="cls-7" d="M19.22,14.21H17.94v1.44h2.31v-.42A1,1,0,0,0,19.22,14.21Z"/><path class="cls-8" d="M21.91,15.66H6V16s-.15,2.18,1.6,2.18a1.06,1.06,0,0,0,.37-.06c.54-.21.81-.85,1.38-1.19a1.6,1.6,0,0,1,.88-.24c.72,0,1.46.68,1.46,2.19A2.27,2.27,0,0,1,10.71,21a1.1,1.1,0,0,1-.54.15c-1.45,0-1.52-1.49-2.63-1.49a1.71,1.71,0,0,0-.57.09c-1.12.42-1,2-1,2v4.42a1.44,1.44,0,0,0,1.43,1.45h4.86a3.4,3.4,0,0,0,1.12-.19l.21-.09.13-.08a1.51,1.51,0,0,0,.27-.21L14,27a1.4,1.4,0,0,0,.34-1c0-1.11-1.44-1.31-1.44-2.77a1.58,1.58,0,0,1,.93-1.3,2.89,2.89,0,0,1,1.4-.33c1.51,0,2.4.9,2.4,1.62,0,1.46-1.4,1.66-1.4,2.77,0,1.49,1.66,1.61,2.15,1.61h2a1.41,1.41,0,0,0,.56-.11,1.45,1.45,0,0,0,.85-1.32V21.06s.11-1,.73-1.27a.76.76,0,0,1,.31-.07c.88,0,.79,1.4,2.43,1.4a2.19,2.19,0,0,0,1.05-.26c.61-.35,1.16-1.11,1.16-2.68,0-2.54-1.41-2.84-2.23-2.84a2,2,0,0,0-.94.2c-.58.31-.76.88-1.18,1.05a.72.72,0,0,1-.31.07C22.27,16.67,22,16.06,21.91,15.66Z"/><path class="cls-9" d="M10.89,11.74a2.4,2.4,0,0,0,.68-.26l.09-.05.1-.07.15-.14,0,0a.88.88,0,0,0,.16-.27h0a1,1,0,0,1-.75-.6l0,0a4.41,4.41,0,0,1-.52.36,3.2,3.2,0,0,1-.57.27h0v.79Z"/><path class="cls-9" d="M6.06,11.14a2.46,2.46,0,0,0-1.1,2V16a3.57,3.57,0,0,0,.78,2.46,2.3,2.3,0,0,0,.64.48,2.3,2.3,0,0,0-.66.49A3.44,3.44,0,0,0,5,21.8v4.39a2.44,2.44,0,0,0,2.43,2.45h4.86a4.21,4.21,0,0,0,1.67-.33,2.37,2.37,0,0,0,1.41-1.67c.28,1.23,1.43,2,3.08,2h2a2.44,2.44,0,0,0,2.43-2.45V21.12a1.51,1.51,0,0,1,.05-.21,2.82,2.82,0,0,0,2.4,1.22c1.56,0,3.23-1,3.23-4A3.93,3.93,0,0,0,27.39,15a3.08,3.08,0,0,0-2.08-.71,2.86,2.86,0,0,0-2.38,1.16l0-.1c0-.07,0-.13,0-.17v-2a2.45,2.45,0,0,0-1.81-2.37,2,2,0,0,0,.21-.91V8.07a2,2,0,0,0-2-2H17a4.21,4.21,0,0,0-3.21-1.1,6.38,6.38,0,0,0-.67,0,4.73,4.73,0,0,0-1.62-1.66A1,1,0,0,0,10,4.17V6.55H8.78V4.1A1.19,1.19,0,0,0,7.12,3a4.77,4.77,0,0,0-1.06,8.13Zm9.27,14.36a3,3,0,0,0-.87-1.34c-.35-.36-.51-.54-.51-.89,0-.13.34-.62,1.31-.62s1.38.5,1.4.63c0,.35-.15.53-.5.89A3,3,0,0,0,15.32,25.49Zm-9-20.77a3.77,3.77,0,0,1,1.15-.78h0l.07,0a.19.19,0,0,1,.19.19V7a.56.56,0,0,0,.56.56h2A.56.56,0,0,0,11,7V4.17a3.74,3.74,0,0,1,1.56,1.92l.16,0L13,6a5,5,0,0,1,.8-.06c1.6,0,2.37.52,2.72,1.1h2.76a1,1,0,0,1,1,1V9.91a1,1,0,0,1-.63.94h0a1,1,0,0,1-.39.08H17.61v.55a.37.37,0,0,1,.35.23h2.47a1.44,1.44,0,0,1,1.43,1.45v2.11a3,3,0,0,0,.07.35c.11.4.36,1,1,1a.72.72,0,0,0,.28-.06c.43-.18.6-.74,1.18-1.05a2,2,0,0,1,1-.22c.82,0,2.23.3,2.23,2.84,0,1.6-.56,2.35-1.18,2.69a2.19,2.19,0,0,1-1.05.26c-1.64,0-1.55-1.4-2.43-1.4a.76.76,0,0,0-.31.07c-.6.27-.71,1.26-.71,1.26v5.14A1.45,1.45,0,0,1,21,27.52a1.41,1.41,0,0,1-.56.11h-2c-.49,0-2.15-.11-2.15-1.61,0-1.11,1.4-1.31,1.4-2.77,0-.72-.89-1.62-2.4-1.62a2.89,2.89,0,0,0-1.4.33,1.57,1.57,0,0,0-.91,1.29c0,1.46,1.44,1.66,1.44,2.77A1.38,1.38,0,0,1,14,27l-.05.05a1.51,1.51,0,0,1-.27.21l-.13.08-.21.09a3.4,3.4,0,0,1-1.12.19H7.39A1.44,1.44,0,0,1,6,26.18V21.77s-.11-1.59,1-2a1.68,1.68,0,0,1,.59-.1c1.11,0,1.17,1.49,2.63,1.49a1.1,1.1,0,0,0,.52-.14,2.27,2.27,0,0,0,.94-2.12c0-1.5-.74-2.19-1.46-2.19a1.6,1.6,0,0,0-.88.24c-.57.35-.83,1-1.38,1.19a1.06,1.06,0,0,1-.37.06C5.81,18.19,6,16,6,16v-.35H6V13.18a1.46,1.46,0,0,1,.76-1.27,1.4,1.4,0,0,1,.67-.17h.4V11A3.77,3.77,0,0,1,6.34,4.73Zm2.24,14.2a3.39,3.39,0,0,0,.84-.74c.35-.4.47-.49.77-.49a.3.3,0,0,1,.21.14,1.7,1.7,0,0,1,.25,1,1.85,1.85,0,0,1-.27,1.1c-.09.12-.17.15-.19.15-.3,0-.41-.09-.77-.49A3.39,3.39,0,0,0,8.58,18.93Z"/></svg>PK
!<|F#chrome/content/img/icons_addons.svg<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title>Icons / Extension</title><g fill="none"><path d="M0 0h16v16H0z"/><path d="M22.5 16c-1 0-1 1-1.7 1-.5 0-.8-.3-.8-.7V13c0-.6-.4-1-1-1h-3.2c-.5 0-.8-.3-.8-.7 0-.8 1-.8 1-1.8 0-.9-.9-1.5-2-1.5s-2 .6-2 1.5c0 1 1 1 1 1.8 0 .4-.3.7-.7.7H9c-.6 0-1 .4-1 1v2.3c0 .4.3.7.8.7.7 0 .7-1 1.7-1 .9 0 1.5.9 1.5 2s-.6 2-1.5 2c-1 0-1-1-1.7-1-.5 0-.8.3-.8.8V23c0 .6.4 1 1 1h3.3c.4 0 .7-.3.7-.7 0-.8-1-.8-1-1.8 0-.9.9-1.5 2-1.5s2 .6 2 1.5c0 1-1 1-1 1.8 0 .4.3.7.8.7H19c.6 0 1-.4 1-1v-3.2c0-.5.3-.8.8-.8.7 0 .7 1 1.7 1 .9 0 1.5-.9 1.5-2s-.6-2-1.5-2z" fill="#3E3D40"/></g></svg>PK
!<H&.chrome/content/img/icons_customize-colored.svg<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><title>Glyph / Customize</title><g id="Symbols" fill="none" fill-rule="evenodd"><g id="Glyph-/-Customize" fill-rule="nonzero" fill="#0A84FF"><path d="M4 10c-.886.002-1.665.59-1.91 1.44 0 .01-.015.015-.018.025-.362 1.135-.705 2.11-1.76 2.573l-.022.012-.024.012c-.162.086-.265.254-.266.438 0 .276.224.5.5.5 1.74.12 3.46-.414 4.825-1.5.006-.006.007-.013.013-.02.62-.55.832-1.428.534-2.202C5.575 10.504 4.83 9.995 4 10zM15.693.307c-.365-.363-.95-.383-1.338-.046l-8.03 7c-.206.18-.327.435-.336.707-.01.27.093.535.285.727l1.032 1.03c.184.185.433.288.693.288h.033c.272-.01.527-.13.706-.335l7-8.03c.338-.39.318-.975-.047-1.34z" id="Shape"/></g></g></svg>PK
!<Ukk3chrome/content/img/icons_customize-notification.svg<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><defs><style>.cls-1{fill:none;}.cls-2{fill:gold;}.cls-3{fill:#f2cc00;}.cls-4{fill:#f70;}.cls-5{fill:#ff40df;}.cls-6{fill:#9400ff;}.cls-7{fill:#59acff;}.cls-8{fill:#13bf00;}.cls-9{fill:#de9b59;}.cls-10{fill:#cd6f14;}.cls-11{fill:#fff;}</style></defs><title>icons</title><path class="cls-1" d="M6.39,17.4h0Z"/><path class="cls-1" d="M12.25,18.28l.23.26.43.53.42.55c.17.22.33.45.49.68.31-.41.65-.84,1-1.27C16,17.51,17.07,16,16.07,15.22s-2.19.31-3.41,1.49l-1,1c.19.2.37.4.55.61Z"/><path class="cls-1" d="M4.06,11h0c.27.08.52.16.77.25l.21.08.52.22.18.08c.2.1.39.2.56.3h0a5.26,5.26,0,0,1,1.53,1.35v-.09a5.32,5.32,0,0,0-1.45-1.25h0c-.17-.11-.36-.21-.56-.3l-.18-.08-.51-.22-.21-.08c-.24-.09-.49-.17-.77-.25h0l-.14,0L3.9,11A.46.46,0,0,1,4,11Z"/><path class="cls-1" d="M6.66,17.38h.1Z"/><path class="cls-1" d="M16.72,25.52c.07.2.13.36.16.47l.05.17a1.17,1.17,0,0,1-.83,1.44,1.14,1.14,0,0,1-.35,0l.13,0A1.17,1.17,0,0,0,17,26.16L17,26c0-.11-.09-.27-.16-.47-.14-.38-.36-.92-.66-1.52L16,24C16.35,24.6,16.57,25.14,16.72,25.52Z"/><path class="cls-1" d="M28,14A10.14,10.14,0,0,1,18,24.18h0A10.14,10.14,0,1,0,18,3.9h0A10.14,10.14,0,0,1,28,14Z"/><path class="cls-2" d="M9.84,15a8.14,8.14,0,0,1,2.82,1.72c1.22-1.18,2.49-2.17,3.41-1.49S16,17.51,14.81,19a26.56,26.56,0,0,1,3,5.14H18a10.14,10.14,0,1,0-9.76-12.7,5.67,5.67,0,0,1,.87,1.14A6.4,6.4,0,0,1,9.84,15Zm14.54,3.59A1.74,1.74,0,1,1,25,16.1,1.8,1.8,0,0,1,24.38,18.57ZM23.32,8.74a1.8,1.8,0,0,1,2,1.6,1.87,1.87,0,0,1-3.72.26A1.8,1.8,0,0,1,23.32,8.74Zm-3.14,12a1.81,1.81,0,1,1-1.8-1.61A1.71,1.71,0,0,1,20.18,20.75ZM16.54,6.36a2,2,0,0,1,2.37,1.57c.07,1-.89,1.8-2.13,1.88a2,2,0,0,1-2.37-1.57C14.35,7.28,15.3,6.44,16.54,6.36Zm-5,4.12a1.8,1.8,0,0,1,2,1.6,1.8,1.8,0,0,1-1.74,1.86,1.8,1.8,0,0,1-2-1.6A1.8,1.8,0,0,1,11.51,10.48Z"/><path class="cls-3" d="M13.82,20.3l.32.44c.26.37.5.75.73,1.12.46.74.85,1.45,1.16,2.09l0,0,.09,0v0q.42.08.86.13l.47,0,.4,0a26.56,26.56,0,0,0-3-5.14C14.47,19.46,14.13,19.89,13.82,20.3Z"/><path class="cls-3" d="M8.51,15.28A9.24,9.24,0,0,1,9.76,16a11.37,11.37,0,0,1,1,.75h0c.29.24.58.51.86.8l.11.12,1-1A8.14,8.14,0,0,0,9.84,15a6.4,6.4,0,0,0-.79-2.37,5.67,5.67,0,0,0-.87-1.14,10.12,10.12,0,0,0-.3,1.76l-.06-.07v.09A3.23,3.23,0,0,1,8.51,15.28Z"/><ellipse class="cls-4" cx="18.38" cy="20.75" rx="1.8" ry="1.61"/><ellipse class="cls-5" cx="23.44" cy="17.12" rx="1.86" ry="1.73" transform="translate(-5.55 15.56) rotate(-33.06)"/><ellipse class="cls-6" cx="23.44" cy="10.47" rx="1.86" ry="1.73" transform="translate(-0.66 1.63) rotate(-3.93)"/><ellipse class="cls-7" cx="16.66" cy="8.08" rx="2.26" ry="1.73" transform="translate(-0.52 1.16) rotate(-3.93)"/><ellipse class="cls-8" cx="11.63" cy="12.21" rx="1.86" ry="1.73" transform="translate(-0.81 0.83) rotate(-3.93)"/><path class="cls-9" d="M16.93,26.16,16.88,26c0-.11-.09-.27-.16-.47-.14-.39-.37-.93-.67-1.54l0,0c-.31-.63-.7-1.35-1.16-2.09-.23-.37-.47-.74-.73-1.12l-.32-.44c-.16-.23-.32-.46-.49-.68l-.42-.55-.43-.53-.23-.26a5.6,5.6,0,0,1-.58.9A5.52,5.52,0,0,1,8.72,21.1l0,0h0l.2.28.42.54.43.54c.29.36.59.7.9,1s.61.66.92,1c.61.62,1.22,1.17,1.76,1.62a17.19,17.19,0,0,0,1.38,1l.42.27.15.09a1.18,1.18,0,0,0,.44.13,1.14,1.14,0,0,0,.35,0A1.17,1.17,0,0,0,16.93,26.16Z"/><path class="cls-9" d="M10.74,16.74a11.37,11.37,0,0,0-1-.75,9.24,9.24,0,0,0-1.25-.71,2.07,2.07,0,0,1-.63,1.49,2.47,2.47,0,0,1-1.13.58h.08c.07.25.15.52.26.8a11.42,11.42,0,0,0,.5,1.13,3.53,3.53,0,0,0,.5-.06A3.59,3.59,0,0,0,10.74,16.74Z"/><path class="cls-10" d="M11.67,19.18a5.6,5.6,0,0,0,.58-.9h0c-.18-.21-.36-.41-.55-.61l-.11-.12c-.28-.29-.57-.56-.86-.8h0a3.59,3.59,0,0,1-2.65,2.48,3.53,3.53,0,0,1-.5.06h0c.17.34.36.68.58,1s.35.53.55.79A5.52,5.52,0,0,0,11.67,19.18Z"/><path class="cls-2" d="M4,11a.46.46,0,0,0-.15,0h0a.47.47,0,0,1,.18,0Z"/><path class="cls-2" d="M7.88,16.78a2.07,2.07,0,0,0,.63-1.49,3.23,3.23,0,0,0-.69-2,5.26,5.26,0,0,0-1.53-1.35c-1.1.5.27,1.75-.64,2.21s-1-.23-1.51.47l0,0s0,.07,0,.1h0A2.43,2.43,0,0,0,6.38,17.4h0l.24,0,.1,0A2.47,2.47,0,0,0,7.88,16.78Z"/><path class="cls-8" d="M3.66,12c0,.09.08.17.12.26s.08.26.12.39.06.18.08.28.06.35.09.53,0,.15,0,.24a5.79,5.79,0,0,1,0,.87h0s0,.05,0,.08l0,0c.54-.69.72-.06,1.51-.47s-.46-1.71.64-2.21h0c-.17-.11-.36-.21-.56-.3l-.18-.08L5,11.31l-.21-.08c-.24-.09-.49-.17-.77-.25h0a.47.47,0,0,0-.18,0,.5.5,0,0,0-.35.71C3.58,11.77,3.62,11.88,3.66,12Z"/><path class="cls-11" d="M2.7,12.27l0,.11,0,.1,0,.11c0,.06,0,.13.06.2l0,.12L3,13l0,.09c0,.12,0,.24.06.37v.06l0,.15a4.51,4.51,0,0,1,0,.76c0,.08,0,.16,0,.23a1,1,0,0,0,0,.13,3.76,3.76,0,0,0,1,2.61,3.14,3.14,0,0,0,2,.94l0,.11a12.19,12.19,0,0,0,.5,1.15l0,.09c.19.38.4.75.63,1.1s.37.56.6.87l.08.09.14.19.28.36.14.19.16.2.3.37c.29.36.61.72.92,1.07s.63.69.95,1c.58.59,1.22,1.17,1.83,1.68A18,18,0,0,0,14.19,28l.46.29.19.11A2.17,2.17,0,0,0,18,25.9l-.06-.21c0-.12-.1-.3-.18-.51H18A11.14,11.14,0,1,0,7.21,11.26l-.26-.17-.06,0c-.2-.12-.41-.23-.64-.34l-.15-.07-.05,0-.57-.24-.23-.09c-.26-.1-.54-.19-.83-.28h0a1.51,1.51,0,0,0-1.7.67,1.49,1.49,0,0,0-.06,1.47ZM3.88,11h0l.09,0,.14,0h0c.27.08.52.16.77.25l.21.08.51.22.18.08c.2.1.39.2.56.3h0a5.32,5.32,0,0,1,1.45,1.25l.06.07A10.17,10.17,0,0,1,17.94,3.9h0a10.14,10.14,0,1,1,0,20.28h-.13l-.4,0-.47,0q-.43-.05-.86-.13v0c.3.61.52,1.14.66,1.52.07.2.13.36.16.47l.05.17a1.17,1.17,0,0,1-1.13,1.48l-.13,0a1.18,1.18,0,0,1-.44-.13l-.15-.09-.42-.27a17.19,17.19,0,0,1-1.38-1c-.54-.45-1.15-1-1.76-1.62-.3-.31-.61-.63-.92-1s-.61-.69-.9-1l-.43-.54-.42-.54-.2-.28h0l0,0c-.19-.26-.38-.53-.55-.79s-.41-.68-.58-1h0a11.42,11.42,0,0,1-.5-1.13c-.1-.28-.19-.54-.26-.8H6.66l-.24,0h0a2.43,2.43,0,0,1-2.27-2.68h0s0-.07,0-.1,0,0,0-.08h0a5.79,5.79,0,0,0,0-.87c0-.08,0-.16,0-.24s0-.36-.09-.53-.06-.18-.08-.28-.07-.27-.12-.39-.08-.18-.12-.26-.09-.21-.13-.3A.5.5,0,0,1,3.88,11Z"/></svg>PK
!<ɥ&chrome/content/img/icons_customize.svg<svg width="16" height="16" viewBox="0 0 16 16" xmlns="http://www.w3.org/2000/svg"><title>Glyph / Customize</title><g id="Symbols" fill="none" fill-rule="evenodd"><g id="Glyph-/-Customize" fill-rule="nonzero" fill="#3E3D40"><path d="M4 10c-.886.002-1.665.59-1.91 1.44 0 .01-.015.015-.018.025-.362 1.135-.705 2.11-1.76 2.573l-.022.012-.024.012c-.162.086-.265.254-.266.438 0 .276.224.5.5.5 1.74.12 3.46-.414 4.825-1.5.006-.006.007-.013.013-.02.62-.55.832-1.428.534-2.202C5.575 10.504 4.83 9.995 4 10zM15.693.307c-.365-.363-.95-.383-1.338-.046l-8.03 7c-.206.18-.327.435-.336.707-.01.27.093.535.285.727l1.032 1.03c.184.185.433.288.693.288h.033c.272-.01.527-.13.706-.335l7-8.03c.338-.39.318-.975-.047-1.34z" id="Shape"/></g></g></svg>PK
!<,#,chrome/content/img/icons_default-colored.svg<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 92 92"><style>.st0{fill:#0A84FF;}</style><path class="st0" d="M80.5 3.8h-69C5.1 3.8 0 8.9 0 15.3v57.5c0 6.4 5.1 11.5 11.5 11.5h28.8c3.2 0 5.8-2.6 5.8-5.8 0-3.2-2.6-5.8-5.8-5.8h-23c-3.2 0-5.8-2.6-5.8-5.8V32.5h69V44c0 3.2 2.6 5.8 5.8 5.8s5.8-2.6 5.8-5.8V15.2C92 8.9 86.9 3.8 80.5 3.8zm0 23h-69V21c0-3.2 2.6-5.8 5.8-5.8h57.5c3.2 0 5.8 2.6 5.8 5.8v5.8z"/><path class="st0" d="M11.5 52.9V44c0-3.2-2.6-5.8-5.8-5.8S0 40.8 0 44v28.8c0 6.4 5.1 11.5 11.5 11.5h69c6.4 0 11.5-5.1 11.5-11.5V15.2c0-6.4-5.1-11.5-11.5-11.5H51.8c-3.2 0-5.8 2.6-5.8 5.8 0 3.2 2.6 5.8 5.8 5.8h23c3.2 0 5.8 2.6 5.8 5.8v40.5c0 6.2-2.6 11.2-5.8 11.2H17.2c-3.2 0-5.8-5-5.8-11.2v-8.7z"/><path class="st0" d="M47.3 37.7c-.3.3-.8.5-1.3.5s-.9-.2-1.3-.5c-2.4-2.4-5.6-3.7-9-3.7s-6.6 1.3-9 3.7c-4.2 4.3-4.9 10.9-1.7 16 1 1.5 2.2 2.7 3.7 3.7L45 70.6c.3.2.6.4 1 .4s.7-.1 1-.4l16.2-13.2c4-2.7 6.2-7.4 5.6-12.2s-3.8-8.9-8.4-10.5-9.7-.4-13.1 3z"/></svg>PK
!<}S	HH1chrome/content/img/icons_default-notification.svg<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><defs><style>.cls-1{fill:none;}.cls-2{fill:#ffbb80;}.cls-3{fill:#f70;}.cls-4{fill:#cd6f14;}.cls-5{fill:#e60024;}.cls-6{fill:#fff;}</style></defs><title>icons</title><path class="cls-1" d="M25.87,17.09v0a3.13,3.13,0,0,0-3.15-3.15A3.16,3.16,0,0,1,25.87,17.09Z"/><path class="cls-1" d="M9.39,9.69a1.81,1.81,0,0,1,.32.64l0,0a1.81,1.81,0,0,0-.28-.57A5.9,5.9,0,0,0,7.22,7.57,5.91,5.91,0,0,1,9.39,9.69Z"/><path class="cls-1" d="M28,12.69a5.79,5.79,0,0,1-1.43,1.64,41,41,0,0,1,2.25,3.72.72.72,0,0,1,.11.39.5.5,0,0,1-.07.39c-2.65,4.75-5.47,6.65-10.8,7l.05,0a3.64,3.64,0,0,1-3.67.25,3.64,3.64,0,0,0,3.75-.21l-.05,0c5.33-.36,8.15-2.25,10.8-7a.5.5,0,0,0,.07-.39.72.72,0,0,0-.11-.39,41,41,0,0,0-2.25-3.72,5.79,5.79,0,0,0,1.43-1.64,5.87,5.87,0,0,0,0-5.79.39.39,0,0,0-.19-.14.42.42,0,0,1,.11.1A5.87,5.87,0,0,1,28,12.69Z"/><path class="cls-1" d="M22.73,13.91a3.13,3.13,0,0,0-3.15,3v0A3.16,3.16,0,0,1,22.73,13.91Z"/><path class="cls-1" d="M12.52,23.25s0,.07,0,.11,0-.07,0-.1Z"/><path class="cls-1" d="M14,25.85a13.63,13.63,0,0,1-5.65-1.42,13.54,13.54,0,0,0,5.74,1.46L14,25.83l-.14-.09Z"/><path class="cls-2" d="M8.39,24.43A13.63,13.63,0,0,0,14,25.85l-.14-.11-.19-.15h0a3.62,3.62,0,0,1-.3-.31l0,0a1.55,1.55,0,0,1-.21-.25l0,0c-.07-.11-.14-.25-.21-.36a3.73,3.73,0,0,0-.14-.36h0a3.45,3.45,0,0,1-.22-.87s0-.07,0-.11a2,2,0,0,1,0-.29V17.13a3.15,3.15,0,0,0-6.29,0v1.36H3.26s0,0,0,0a.69.69,0,0,0,.11.36A13.15,13.15,0,0,0,8.39,24.43ZM7,16.31a1.38,1.38,0,0,1,2-.18c0,.07.11.11.14.18s.11-.11.14-.18a1.45,1.45,0,0,1,2-.18,1.38,1.38,0,0,1,.18,2l-2,1.89-2-1.36a1.51,1.51,0,0,1-.25-.18A1.38,1.38,0,0,1,7,16.31Z"/><path class="cls-2" d="M28.84,18.84a.5.5,0,0,0,.07-.39h-3V17.09A3.15,3.15,0,0,0,19.58,17v6s0,0,0,.06a3.48,3.48,0,0,1-.14.89.7.7,0,0,1-.07.22s0,.07,0,.11a1.07,1.07,0,0,1-.14.36A3.13,3.13,0,0,1,19,25l0,0c-.07.07-.14.18-.21.25l-.07.07-.21.21s0,0-.07,0a1,1,0,0,1-.19.15l-.08.06-.05,0C23.37,25.49,26.19,23.6,28.84,18.84Zm-8-2.86a1.38,1.38,0,0,1,2,.18.36.36,0,0,1,.14.18.36.36,0,0,1,.14-.18,1.38,1.38,0,0,1,2,.18,1.53,1.53,0,0,1-.14,2l-2.25,1.54-1.79-1.72L20.65,18A1.38,1.38,0,0,1,20.83,16Z"/><path class="cls-3" d="M6.21,17.34v-.21a3.15,3.15,0,0,1,6.29,0V23a2,2,0,0,0,0,.29h0s0,.07,0,.1a3.45,3.45,0,0,0,.22.87h0a3.73,3.73,0,0,1,.14.36c.07.11.14.25.21.36l0,0a1.55,1.55,0,0,0,.21.25l0,0a3.62,3.62,0,0,0,.3.31h0l.19.15.14.09-.06,0a3.61,3.61,0,0,0,4.11,0l.08-.06a1,1,0,0,0,.19-.15s0,0,.07,0l.21-.21.07-.07c.07-.07.14-.18.21-.25l0,0a3.13,3.13,0,0,0,.21-.36,1.07,1.07,0,0,0,.14-.36s0-.07,0-.11a.7.7,0,0,0,.07-.22,3.48,3.48,0,0,0,.14-.89s0,0,0-.06v-6a3.15,3.15,0,0,1,6.29.11v1.39h3a.72.72,0,0,0-.11-.39,41,41,0,0,0-2.25-3.72A5.79,5.79,0,0,0,28,12.69,5.87,5.87,0,0,0,28,6.9a.42.42,0,0,0-.11-.1.35.35,0,0,0-.13,0c-.13,0-.25,0-.37,0h.36v0a9.37,9.37,0,0,0-4.11,4.4,10,10,0,0,0-1.18-.86l0-.06a12.55,12.55,0,0,0-6.38-1.58,12,12,0,0,0-6.33,1.64s0,0,0-.07l0,0h0a8.24,8.24,0,0,0-1.29.89A8.86,8.86,0,0,0,4.35,6.88.39.39,0,0,0,4.18,7a5.87,5.87,0,0,0,0,5.79,6.33,6.33,0,0,0,1.43,1.64,25.9,25.9,0,0,0-2.29,3.68.71.71,0,0,0-.1.35H6.21Zm11.65,7.11a2.24,2.24,0,0,1-1.82.86,2.49,2.49,0,0,1-1.89-.86.35.35,0,1,1,.54-.46,1.74,1.74,0,0,0,2.65,0,.35.35,0,1,1,.54.46Zm-3.68-3.79a1.05,1.05,0,0,1,.75-.29h1.86a1.62,1.62,0,0,0,.36,0,.8.8,0,0,1,.86.75.76.76,0,0,1-.21.61l-.68.75a1.51,1.51,0,0,1-.36.25,1.07,1.07,0,0,1-.36.14.45.45,0,0,1-.21,0h-.43c-.07,0-.14,0-.21,0a.27.27,0,0,1-.18-.07c-.07,0-.11,0-.18-.07a2.57,2.57,0,0,1-.36-.21l-.64-.64A.84.84,0,0,1,14.18,20.67Z"/><path class="cls-4" d="M14.82,22.49a2.57,2.57,0,0,0,.36.21c.07,0,.11.07.18.07a.27.27,0,0,0,.18.07c.07,0,.14,0,.21,0h.43a.45.45,0,0,0,.21,0,1.07,1.07,0,0,0,.36-.14,1.51,1.51,0,0,0,.36-.25l.68-.75A.76.76,0,0,0,18,21.1a.8.8,0,0,0-.86-.75,1.62,1.62,0,0,1-.36,0H14.93a1.05,1.05,0,0,0-.75.29.84.84,0,0,0,0,1.18Z"/><path class="cls-2" d="M23.66,11.23a9.37,9.37,0,0,1,4.11-4.4v0H27.4l-.38,0-.14,0a5.24,5.24,0,0,0-2.22,1,6.12,6.12,0,0,0-1.75,1.94,5.32,5.32,0,0,0-.33.62l-.08,0,0,.06A10,10,0,0,1,23.66,11.23Z"/><path class="cls-2" d="M8.43,11.23a8.24,8.24,0,0,1,1.29-.89h0a1.81,1.81,0,0,0-.32-.64,5.77,5.77,0,0,0-3-2.51A5.2,5.2,0,0,0,4.5,6.84H4.4s0,0,0,0l0,0A8.86,8.86,0,0,1,8.43,11.23Z"/><path class="cls-5" d="M20.87,18.16l1.79,1.72,2.25-1.54a1.53,1.53,0,0,0,.14-2,1.38,1.38,0,0,0-2-.18.36.36,0,0,0-.14.18.36.36,0,0,0-.14-.18A1.4,1.4,0,1,0,20.65,18Z"/><path class="cls-5" d="M7.42,18.45l2,1.36,2-1.89a1.38,1.38,0,0,0-.18-2,1.45,1.45,0,0,0-2,.18c0,.07-.11.11-.14.18S9,16.2,9,16.13a1.4,1.4,0,1,0-1.79,2.15A1.51,1.51,0,0,0,7.42,18.45Z"/><path class="cls-4" d="M17.33,24a1.74,1.74,0,0,1-2.65,0,.35.35,0,1,0-.54.46,2.49,2.49,0,0,0,1.89.86,2.24,2.24,0,0,0,1.82-.86.35.35,0,1,0-.54-.46Z"/><path class="cls-6" d="M2.25,18.53a1.69,1.69,0,0,0,.25.87c2.8,5,5.89,7.06,11.33,7.48a4.65,4.65,0,0,0,4.6,0c5.46-.42,8.56-2.46,11.35-7.48a1.5,1.5,0,0,0,.21-1,1.72,1.72,0,0,0-.24-.79c-.59-1.1-1.2-2.12-1.8-3a7.61,7.61,0,0,0,1-1.29A6.85,6.85,0,0,0,29,6.46l0-.07a1.37,1.37,0,0,0-1.15-.62A6.22,6.22,0,0,0,24.07,7a7,7,0,0,0-1.89,2,13.87,13.87,0,0,0-6.06-1.28A13.29,13.29,0,0,0,10.2,9,7,7,0,0,0,6.71,6.24,6.16,6.16,0,0,0,4.5,5.84H4.4a1,1,0,0,0-.64.22,1.4,1.4,0,0,0-.41.4l0,.06a6.88,6.88,0,0,0,0,6.78,7.6,7.6,0,0,0,1,1.27,29.59,29.59,0,0,0-1.83,3.06A1.74,1.74,0,0,0,2.25,18.53Zm1,0a.71.71,0,0,1,.1-.35,25.9,25.9,0,0,1,2.29-3.68,6.33,6.33,0,0,1-1.43-1.64A5.87,5.87,0,0,1,4.18,7a.39.39,0,0,1,.16-.13l0,0s0,0,0,0H4.5a5.2,5.2,0,0,1,1.87.35,6,6,0,0,1,.84.38A5.9,5.9,0,0,1,9.47,9.73a1.81,1.81,0,0,1,.28.57s0,0,0,.07a12,12,0,0,1,6.33-1.64,12.55,12.55,0,0,1,6.38,1.58l.08,0a5.32,5.32,0,0,1,.33-.62A6.12,6.12,0,0,1,24.66,7.8a5.24,5.24,0,0,1,2.22-1l.14,0,.38,0c.12,0,.25,0,.37,0a.35.35,0,0,1,.13,0,.39.39,0,0,1,.19.14,5.87,5.87,0,0,1,0,5.79,5.79,5.79,0,0,1-1.43,1.64,41,41,0,0,1,2.25,3.72.72.72,0,0,1,.11.39.5.5,0,0,1-.07.39c-2.65,4.75-5.47,6.65-10.8,7l.05,0A3.66,3.66,0,0,1,14,25.79l.06,0,.08.06a13.54,13.54,0,0,1-5.74-1.46,13.15,13.15,0,0,1-5-5.54.69.69,0,0,1-.11-.36S3.26,18.5,3.26,18.49Z"/></svg>PK
!<$chrome/content/img/icons_default.svg<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="0 0 92 92"><style>.st0{fill:#3E3D40;}</style><path class="st0" d="M80.5 3.8h-69C5.1 3.8 0 8.9 0 15.3v57.5c0 6.4 5.1 11.5 11.5 11.5h28.8c3.2 0 5.8-2.6 5.8-5.8 0-3.2-2.6-5.8-5.8-5.8h-23c-3.2 0-5.8-2.6-5.8-5.8V32.5h69V44c0 3.2 2.6 5.8 5.8 5.8s5.8-2.6 5.8-5.8V15.2C92 8.9 86.9 3.8 80.5 3.8zm0 23h-69V21c0-3.2 2.6-5.8 5.8-5.8h57.5c3.2 0 5.8 2.6 5.8 5.8v5.8z"/><path class="st0" d="M11.5 52.9V44c0-3.2-2.6-5.8-5.8-5.8S0 40.8 0 44v28.8c0 6.4 5.1 11.5 11.5 11.5h69c6.4 0 11.5-5.1 11.5-11.5V15.2c0-6.4-5.1-11.5-11.5-11.5H51.8c-3.2 0-5.8 2.6-5.8 5.8 0 3.2 2.6 5.8 5.8 5.8h23c3.2 0 5.8 2.6 5.8 5.8v40.5c0 6.2-2.6 11.2-5.8 11.2H17.2c-3.2 0-5.8-5-5.8-11.2v-8.7z"/><path class="st0" d="M47.3 37.7c-.3.3-.8.5-1.3.5s-.9-.2-1.3-.5c-2.4-2.4-5.6-3.7-9-3.7s-6.6 1.3-9 3.7c-4.2 4.3-4.9 10.9-1.7 16 1 1.5 2.2 2.7 3.7 3.7L45 70.6c.3.2.6.4 1 .4s.7-.1 1-.4l16.2-13.2c4-2.7 6.2-7.4 5.6-12.2s-3.8-8.9-8.4-10.5-9.7-.4-13.1 3z"/></svg>PK
!<[T0chrome/content/img/icons_performance-colored.svg<svg width="16" height="16" viewBox="0 0 92 92" xmlns="http://www.w3.org/2000/svg"><title>Tip / Icon / Performance</title><g id="Symbols" fill="none" fill-rule="evenodd"><g id="Tip-/-Icon-/-Performance" fill="#0A84FF"><path d="M47.237 53.003L47 53c-6.075 0-11 4.925-11 11s4.925 11 11 11c4.453 0 8.287-2.645 10.018-6.45 1.888-3.525 2.97-7.84 8.397-12.066 7.422-5.778 15.097-10.033 14.61-11.098-.485-1.06-8.04 2.724-16.675 5.79-7.916 2.812-14.765 1.706-16.113 1.827zm-36.467 31.3C4.05 76.316 0 66.015 0 54.768 0 29.4 20.593 8.838 46 8.838c25.404 0 46 20.563 46 45.93 0 11.247-4.05 21.548-10.77 29.535H10.77zM46 21.698c-1.016 0-1.84 1.646-1.84 3.674s.824 3.675 1.84 3.675 1.84-1.647 1.84-3.675c0-2.028-.824-3.674-1.84-3.674zm34.96 40.418c0-1.016-1.65-1.837-3.68-1.837-2.03 0-3.68.82-3.68 1.836s1.65 1.837 3.68 1.837c2.03 0 3.68-.82 3.68-1.837zm-62.364 0c0-1.016-1.65-1.837-3.68-1.837-2.032 0-3.68.82-3.68 1.836s1.648 1.837 3.68 1.837c2.03 0 3.68-.82 3.68-1.837zm7.664-23.133c.73-.706.18-2.46-1.232-3.92s-3.15-2.072-3.88-1.366c-.73.704-.178 2.458 1.234 3.92 1.41 1.457 3.148 2.07 3.878 1.366zm46-5.287c-.73-.706-2.468-.094-3.88 1.367-1.41 1.46-1.962 3.215-1.232 3.92.73.704 2.47.092 3.88-1.368 1.412-1.46 1.964-3.214 1.233-3.92z" id="Combined-Shape"/></g></g></svg>PK
!<(chrome/content/img/icons_performance.svg<svg width="16" height="16" viewBox="0 0 92 92" xmlns="http://www.w3.org/2000/svg"><title>Tip / Icon / Performance</title><g id="Symbols" fill="none" fill-rule="evenodd"><g id="Tip-/-Icon-/-Performance" fill="#3E3D40"><path d="M47.237 53.003L47 53c-6.075 0-11 4.925-11 11s4.925 11 11 11c4.453 0 8.287-2.645 10.018-6.45 1.888-3.525 2.97-7.84 8.397-12.066 7.422-5.778 15.097-10.033 14.61-11.098-.485-1.06-8.04 2.724-16.675 5.79-7.916 2.812-14.765 1.706-16.113 1.827zm-36.467 31.3C4.05 76.316 0 66.015 0 54.768 0 29.4 20.593 8.838 46 8.838c25.404 0 46 20.563 46 45.93 0 11.247-4.05 21.548-10.77 29.535H10.77zM46 21.698c-1.016 0-1.84 1.646-1.84 3.674s.824 3.675 1.84 3.675 1.84-1.647 1.84-3.675c0-2.028-.824-3.674-1.84-3.674zm34.96 40.418c0-1.016-1.65-1.837-3.68-1.837-2.03 0-3.68.82-3.68 1.836s1.65 1.837 3.68 1.837c2.03 0 3.68-.82 3.68-1.837zm-62.364 0c0-1.016-1.65-1.837-3.68-1.837-2.032 0-3.68.82-3.68 1.836s1.648 1.837 3.68 1.837c2.03 0 3.68-.82 3.68-1.837zm7.664-23.133c.73-.706.18-2.46-1.232-3.92s-3.15-2.072-3.88-1.366c-.73.704-.178 2.458 1.234 3.92 1.41 1.457 3.148 2.07 3.878 1.366zm46-5.287c-.73-.706-2.468-.094-3.88 1.367-1.41 1.46-1.962 3.215-1.232 3.92.73.704 2.47.092 3.88-1.368 1.412-1.46 1.964-3.214 1.233-3.92z" id="Combined-Shape"/></g></g></svg>PK
!<y,chrome/content/img/icons_private-colored.svg<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title>Icons / Private Browsing</title><g fill="none"><path d="M0 0h32v32H0z"/><path d="M20.4 20c-1.7 0-2.8-2-4.4-2-1.6 0-2.8 2-4.4 2-2 0-3.5-2-3.5-5.3-.1-2 .6-2.7 3.2-2.7s3.4 1.1 4.7 1.1c1.3 0 2.1-1.1 4.7-1.1s3.3.7 3.2 2.7c0 3.3-1.5 5.3-3.5 5.3zm-7.8-5.4c-1.6 0-2.3 1-2.3 1.2 0 .3 1.1.9 2.1.9 1.1 0 2.3-.4 2.3-.7-.2-1-1.1-1.6-2.1-1.4zm6.8 0c-1-.2-1.9.4-2.1 1.4 0 .3 1.2.7 2.3.7 1 0 2.1-.6 2.1-.9 0-.2-.7-1.2-2.3-1.2z" fill="#0A84FF"/></g></svg>PK
!<1chrome/content/img/icons_private-notification.svg<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><defs><style>.cls-1{fill:none;}.cls-2{fill:gold;}.cls-3{fill:#f2cc00;}.cls-4{fill:#767aa8;}.cls-5{fill:#505473;}.cls-6{fill:#c980ff;}.cls-7{fill:#fff;}</style></defs><title>icons</title><path class="cls-1" d="M26.84,19.32c-.06.2-.13.39-.19.58l-.13.35c-.07.18-.15.36-.23.53l-.17.35c-.09.17-.17.34-.27.5l-.2.33c-.1.16-.2.33-.31.49l-.12.16a11.08,11.08,0,0,1-.77,1l-.27.29-.4.38-.31.28-.42.35-.33.25-.45.32-.34.21a11,11,0,0,1-1,.54l-.26.12-.53.21-.39.14-.54.16-.41.11-.56.12-.42.06-.19,0,.35,0,.42-.06.56-.12.41-.11.54-.16.39-.14.53-.21.26-.12a11,11,0,0,0,1-.54l.34-.21.45-.32.33-.25.42-.35.31-.28.4-.38.27-.29a11.07,11.07,0,0,0,.78-1l.12-.15c.11-.16.21-.32.31-.49l.2-.33c.09-.17.18-.33.27-.5l.17-.35c.08-.18.16-.35.23-.53l.13-.35c.07-.19.14-.38.19-.58v0h-.15Z"/><path class="cls-1" d="M24.27,8.6v0l.19.22c.14.16.29.32.42.49l.28.37c.11.15.22.3.33.46s.19.32.29.48l.09.14c1.3.5,1.67,1.55,1.66,3.45a13.09,13.09,0,0,1-.21,2.29c0,.07,0,.14,0,.21a1.3,1.3,0,0,1-.11,2.59h.08A1.31,1.31,0,0,0,28.57,18a1.29,1.29,0,0,0-1.13-1.3c0-.07,0-.14,0-.21a13.09,13.09,0,0,0,.21-2.29c0-1.9-.36-2.95-1.66-3.45l-.09-.14c-.09-.16-.19-.32-.29-.48s-.22-.3-.33-.45L25,9.27c-.13-.17-.28-.33-.42-.49l-.19-.22v0a11,11,0,0,0-8-3.46l-.36,0h.21A11,11,0,0,1,24.27,8.6Z"/><path class="cls-2" d="M16.22,11.88c1.82,0,2.92-1.53,6.67-1.53a11.09,11.09,0,0,1,2.31.19,11.27,11.27,0,0,0-.94-1.93,11,11,0,0,0-8-3.46h-.21a11.17,11.17,0,0,0-1.11.08h-.1a11,11,0,0,0-8,5.38,9.55,9.55,0,0,1,2.67-.29C13.3,10.35,14.4,11.88,16.22,11.88ZM20,9.24a2.3,2.3,0,0,1,3.44,0,.38.38,0,0,1,0,.54.35.35,0,0,1-.25.1.38.38,0,0,1-.29-.13,1.54,1.54,0,0,0-2.3,0,.38.38,0,0,1-.54,0A.39.39,0,0,1,20,9.24Z"/><path class="cls-2" d="M5.56,19.28h.26a11,11,0,0,0,3,4.9h0l.07.06.27.23a11.31,11.31,0,0,0,14.43-3,4.28,4.28,0,0,1-1.13.15c-2.34,0-4-2.81-6.21-2.81s-4,2.81-6.21,2.81-4.15-1.76-4.8-4.86a1.29,1.29,0,0,0-1,1.24A1.31,1.31,0,0,0,5.56,19.28Zm7,2a.55.55,0,0,1,.78,0,4.22,4.22,0,0,0,3.71.75.55.55,0,1,1,.3,1.07,5.35,5.35,0,0,1-4.74-1A.55.55,0,0,1,12.56,21.3Z"/><path class="cls-2" d="M25.84,10.73h0l-.09-.14Z"/><path class="cls-2" d="M17.31,27.17h.07l.23,0,.19,0Z"/><path class="cls-3" d="M28.42,18a1.29,1.29,0,0,0-1.13-1.3c0-.07,0-.14,0-.21-.51,2.73-1.89,4.47-3.72,5a11.31,11.31,0,0,1-14.43,3l.36.31.1.08a11,11,0,0,0,2.6,1.52l.13.05q.4.16.82.29l.17.05q.41.12.84.21l.16,0c.32.06.65.11,1,.14h0c.36,0,.72.06,1.08.06l.56,0,.34,0,.49-.06.42-.06.56-.12.41-.11.54-.16.39-.14.53-.21.26-.12a11,11,0,0,0,1-.54l.34-.21.45-.32.33-.25.42-.35.31-.28.4-.38.27-.29a11.08,11.08,0,0,0,.77-1l.12-.16c.11-.16.21-.32.31-.49l.2-.33c.09-.17.18-.33.27-.5l.17-.35c.08-.18.16-.35.23-.53l.13-.35c.07-.19.14-.38.19-.58v0h.33A1.3,1.3,0,0,0,28.42,18Z"/><path class="cls-3" d="M25.47,10.11c-.1-.16-.22-.3-.33-.46l-.28-.37c-.13-.17-.28-.33-.42-.49l-.19-.22v0a11.27,11.27,0,0,1,.94,1.93,4.23,4.23,0,0,1,.63.19l-.08-.14C25.67,10.43,25.57,10.26,25.47,10.11Z"/><path class="cls-3" d="M20.61,9.75a1.54,1.54,0,0,1,2.3,0,.38.38,0,0,0,.29.13.35.35,0,0,0,.25-.1.38.38,0,0,0,0-.54,2.3,2.3,0,0,0-3.44,0,.39.39,0,0,0,0,.54A.38.38,0,0,0,20.61,9.75Z"/><path class="cls-4" d="M16,23.25a5.22,5.22,0,0,0,1.39-.19.55.55,0,1,0-.3-1.07,4.22,4.22,0,0,1-3.71-.75.55.55,0,1,0-.74.83A5.21,5.21,0,0,0,16,23.25Z"/><path class="cls-5" d="M11.16,17c1.48,0,3.22-.54,3.22-1a2.68,2.68,0,0,0-3-2c-2.28.1-3.22,1.46-3.22,1.79S9.68,17,11.16,17Z"/><path class="cls-5" d="M21.29,17c1.48,0,3-.94,3-1.28s-.94-1.69-3.22-1.79a2.68,2.68,0,0,0-3,2C18.07,16.45,19.81,17,21.29,17Z"/><path class="cls-6" d="M10,21.59c2.2,0,4-2.81,6.21-2.81s3.87,2.81,6.21,2.81a4.28,4.28,0,0,0,1.13-.15c1.83-.5,3.22-2.24,3.72-5a13.09,13.09,0,0,0,.21-2.29c0-1.9-.36-2.95-1.66-3.45h0a4.23,4.23,0,0,0-.63-.19,11.09,11.09,0,0,0-2.31-.19c-3.75,0-4.86,1.53-6.67,1.53s-2.92-1.53-6.67-1.53a9.55,9.55,0,0,0-2.67.29l0,0c-1.37.49-1.76,1.54-1.75,3.49a12.87,12.87,0,0,0,.25,2.52l-.14,0C5.86,19.84,7.69,21.59,10,21.59Zm11-7.67c2.28.1,3.22,1.46,3.22,1.79S22.77,17,21.29,17s-3.22-.54-3.22-1A2.68,2.68,0,0,1,21.06,13.92Zm-9.67,0a2.68,2.68,0,0,1,3,2c0,.48-1.74,1-3.22,1s-3-.94-3-1.28S9.11,14,11.39,13.92Z"/><path class="cls-7" d="M5.07,20.23a12.08,12.08,0,0,0,3,4.59l.07.08L8.2,25c.21.19.44.39.68.59l.11.09a12,12,0,0,0,2.83,1.65l.1,0c.33.13.63.24.93.33l.19.06c.3.09.6.16.91.23H14l.12,0c.36.07.72.12,1.07.16a12.1,12.1,0,0,0,1.22.07l.44,0h.3l.33,0,.57-.07h.06l.46-.07.61-.13.45-.12.59-.18.35-.13.08,0,.1,0,.47-.19.2-.09.08,0a12.06,12.06,0,0,0,1.11-.59l.09-.05.28-.17.49-.35.36-.27.46-.38.33-.3.43-.42.22-.24.07-.08a12.12,12.12,0,0,0,.85-1l0,0,.09-.13c.1-.14.19-.3.29-.45l.05-.08,0-.08.17-.29c.1-.18.2-.36.29-.55l.19-.39c.09-.19.17-.38.25-.58l.12-.34-.06,0A2.31,2.31,0,0,0,29.57,18a2.27,2.27,0,0,0-1-1.94,14.55,14.55,0,0,0,.13-1.85c0-1.63-.22-3.38-2-4.24l-.24-.39c-.09-.14-.19-.27-.29-.41L26.1,9,26,9l-.23-.31c-.14-.18-.29-.35-.45-.51L25.28,8l-.15-.17L25,7.79a11.91,11.91,0,0,0-8.63-3.66A12.08,12.08,0,0,0,6.16,9.88c-1.83.84-2.07,2.63-2.06,4.29a14.57,14.57,0,0,0,.14,1.9,2.29,2.29,0,0,0-1,1.89A2.31,2.31,0,0,0,5.07,20.23Zm.14-3.5.14,0a12.87,12.87,0,0,1-.25-2.52c0-1.94.37-3,1.75-3.49l0,0a11,11,0,0,1,8-5.38h.1a11.17,11.17,0,0,1,1.11-.08l.36,0a11,11,0,0,1,8,3.46v0l.19.22c.14.16.29.32.42.49l.28.37c.11.15.22.3.33.45s.19.32.29.48l.09.14c1.3.5,1.67,1.55,1.66,3.45a13.09,13.09,0,0,1-.21,2.29c0,.07,0,.14,0,.21A1.29,1.29,0,0,1,28.57,18a1.31,1.31,0,0,1-1.31,1.31H27v0c-.06.2-.13.39-.19.58l-.13.35c-.07.18-.15.36-.23.53l-.17.35c-.09.17-.17.34-.27.5l-.2.33c-.1.16-.2.33-.31.49l-.12.15a11.07,11.07,0,0,1-.78,1l-.27.29-.4.38-.31.28-.42.35-.33.25-.45.32-.34.21a11,11,0,0,1-1,.54l-.26.12-.53.21-.39.14-.54.16-.41.11-.56.12L18,27.1l-.35,0-.23,0h-.07l-.34,0-.56,0c-.37,0-.73,0-1.08-.06h0c-.33,0-.66-.08-1-.14l-.16,0q-.42-.09-.84-.21l-.17-.05q-.42-.13-.82-.29l-.13-.05a11,11,0,0,1-2.6-1.52l-.1-.08-.36-.31-.27-.23-.07-.06h0a11,11,0,0,1-3-4.9H5.56A1.31,1.31,0,0,1,4.24,18,1.29,1.29,0,0,1,5.21,16.73Z"/></svg>PK
!<b$chrome/content/img/icons_private.svg<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title>Icons / Private Browsing</title><g fill="none"><path d="M0 0h32v32H0z"/><path d="M20.4 20c-1.7 0-2.8-2-4.4-2-1.6 0-2.8 2-4.4 2-2 0-3.5-2-3.5-5.3-.1-2 .6-2.7 3.2-2.7s3.4 1.1 4.7 1.1c1.3 0 2.1-1.1 4.7-1.1s3.3.7 3.2 2.7c0 3.3-1.5 5.3-3.5 5.3zm-7.8-5.4c-1.6 0-2.3 1-2.3 1.2 0 .3 1.1.9 2.1.9 1.1 0 2.3-.4 2.3-.7-.2-1-1.1-1.6-2.1-1.4zm6.8 0c-1-.2-1.9.4-2.1 1.4 0 .3 1.2.7 2.3.7 1 0 2.1-.6 2.1-.9 0-.2-.7-1.2-2.3-1.2z" fill="#3E3D40"/></g></svg>PK
!<`+chrome/content/img/icons_search-colored.svg<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16 "><title>Icons / Search</title><g fill="none"><path d="M0 0h32v32H0z"/><path d="M23.7 22.3l-4.8-4.8c1.8-2.5 1.4-6.1-1-8.1s-5.9-1.9-8.1.4c-2.3 2.2-2.4 5.7-.4 8.1 2 2.4 5.6 2.8 8.1 1l4.8 4.8c.4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4zM14 18c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4c0 1.1-.4 2.1-1.1 2.9-.8.7-1.8 1.1-2.9 1.1z" fill="#0A84FF"/></g></svg>PK
!<IG

0chrome/content/img/icons_search-notification.svg<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><defs><style>.cls-1{fill:none;}.cls-2{fill:#fff;}.cls-3{fill:#e1e1e5;}.cls-4{fill:#767aa8;}.cls-5{fill:#f9f9fa;}.cls-6{fill:#cd6f14;}</style></defs><title>icons</title><path class="cls-1" d="M5.36,20.85H19.86l5.33,5.81a.63.63,0,0,0,.46.17,2.31,2.31,0,0,0,1.47-.76,2.17,2.17,0,0,0,.75-1.57A2.22,2.22,0,0,1,27.12,26c-.69.69-1.56,1-1.93.59L19.86,20.8H5.36A1.32,1.32,0,0,1,4,19.48V14.35H4v5.17A1.32,1.32,0,0,0,5.36,20.85Z"/><path class="cls-1" d="M24.12,20.8l0,0a1.32,1.32,0,0,0,1.27-1.31v0A1.32,1.32,0,0,1,24.12,20.8Z"/><path class="cls-2" d="M23.6,20.32h.51a.84.84,0,0,0,.84-.84V14.31a.84.84,0,0,0-.84-.84H21.33a7.34,7.34,0,0,1-1.45,3.86l.63.63a.82.82,0,0,1,.77.22Z"/><path class="cls-2" d="M19.06,19.41l-.63-.63a7.39,7.39,0,0,1-11.82-5.3H5.36a.84.84,0,0,0-.84.84v5.17a.84.84,0,0,0,.84.84h14l-.13-.14A.82.82,0,0,1,19.06,19.41Z"/><path class="cls-3" d="M5.36,20.8H19.86l-.44-.48h-14a.84.84,0,0,1-.84-.84V14.31a.84.84,0,0,1,.84-.84H6.61c0-.16,0-.31,0-.47,0,0,0,0,0,0H5.36A1.32,1.32,0,0,0,4,14.35v5.13A1.32,1.32,0,0,0,5.36,20.8Z"/><path class="cls-3" d="M24.1,13.48a.84.84,0,0,1,.84.84v5.17a.84.84,0,0,1-.84.84H23.6l.26.24.26.24a1.32,1.32,0,0,0,1.3-1.32V14.36A1.32,1.32,0,0,0,24.1,13H21.34v0c0,.15,0,.31,0,.46Z"/><path class="cls-4" d="M8.75,18.11a7.4,7.4,0,0,0,9.68.67l.63.63A2.22,2.22,0,0,1,20.51,18l-.63-.63a7.34,7.34,0,0,0,1.45-3.86c0-.15,0-.31,0-.46a7.37,7.37,0,0,0-1.59-4.71l-.1-.12c-.14-.17-.29-.34-.45-.5A7.39,7.39,0,0,0,6.59,13c0,.16,0,.31,0,.47A7.36,7.36,0,0,0,8.75,18.11ZM8.28,10.9a6,6,0,0,1,.43-1h0a6,6,0,0,1,10.46,0h0c0,.07.06.15.1.22s.08.13.11.2l-.06-.08a6.15,6.15,0,0,1,.28.63A6,6,0,0,1,8.87,16.08l0,.08c-.06-.09-.1-.19-.15-.28l-.14-.26c-.05-.11-.11-.21-.15-.32a6,6,0,0,1-.25-.66v0A6,6,0,0,1,8,13.83v-.05a5.79,5.79,0,0,1,.27-2.87Z"/><path class="cls-5" d="M14.36,7.56A6,6,0,0,0,9.58,9.93h9.56A6,6,0,0,0,14.36,7.56Z"/><path class="cls-2" d="M8,12.92a6,6,0,0,1,.35-2h0A5.79,5.79,0,0,0,8,13.77,6.05,6.05,0,0,1,8,12.92Z"/><path class="cls-2" d="M8.33,13.59a6,6,0,0,0,.54,2.49A6,6,0,0,0,19.66,10.9H9A6,6,0,0,0,8.33,13.59Z"/><path class="cls-3" d="M8,12.92a6.05,6.05,0,0,0,.06.86v.05a6,6,0,0,0,.17.78v0a6,6,0,0,0,.25.66c0,.11.1.21.15.32l.14.26c.05.09.1.19.15.28l0-.08A6,6,0,0,1,9,10.9H19.66a6.15,6.15,0,0,0-.28-.63l.06.08c0-.07-.07-.13-.11-.2s-.06-.15-.1-.22h0a6,6,0,0,0-10.46,0h0a6,6,0,0,0-.43,1h0A6,6,0,0,0,8,12.92Zm6.41-5.35a6,6,0,0,1,4.78,2.37H9.58A6,6,0,0,1,14.36,7.56Z"/><path class="cls-6" d="M21.1,22.15,23.25,20l.61.56-.26-.24-2.32-2.13a.82.82,0,0,0-.77-.22,2.22,2.22,0,0,0-1.44,1.44.82.82,0,0,0,.22.77l.13.14.44.48,5.33,5.81c.37.37,1.24.1,1.93-.59a2.22,2.22,0,0,0,.75-1.53.59.59,0,0,0-.16-.36L26.4,22.93,24,25.32Z"/><path class="cls-4" d="M23.86,20.56,23.25,20,21.1,22.15,24,25.32l2.39-2.39-2.28-2.09h0l0,0Z"/><path class="cls-2" d="M5.36,21.85H19.42l5,5.49a1.65,1.65,0,0,0,1.2.49,3.27,3.27,0,0,0,2.18-1c1.12-1.12,1.37-2.56.59-3.34l-2.58-2.37a2.31,2.31,0,0,0,.59-1.54V14.36A2.32,2.32,0,0,0,24.1,12H22.3A8.37,8.37,0,0,0,8,7,8.31,8.31,0,0,0,5.63,12H5.36A2.32,2.32,0,0,0,3,14.36v5.17A2.32,2.32,0,0,0,5.36,21.85ZM4,14.36H4A1.32,1.32,0,0,1,5.36,13H6.59s0,0,0,0A7.39,7.39,0,0,1,19.2,7.69c.16.16.31.33.45.5l.1.12A7.37,7.37,0,0,1,21.34,13v0H24.1a1.32,1.32,0,0,1,1.32,1.32v5.17a1.32,1.32,0,0,1-1.27,1.31h0l2.28,2.09,1.31,1.21a.59.59,0,0,1,.16.36,2.17,2.17,0,0,1-.75,1.57,2.31,2.31,0,0,1-1.47.76.63.63,0,0,1-.46-.17l-5.33-5.81H5.36A1.32,1.32,0,0,1,4,19.52Z"/></svg>PK
!<~ܡ#chrome/content/img/icons_search.svg<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16 "><title>Icons / Search</title><g fill="none"><path d="M0 0h32v32H0z"/><path d="M23.7 22.3l-4.8-4.8c1.8-2.5 1.4-6.1-1-8.1s-5.9-1.9-8.1.4c-2.3 2.2-2.4 5.7-.4 8.1 2 2.4 5.6 2.8 8.1 1l4.8 4.8c.4.4 1 .4 1.4 0 .4-.4.4-1 0-1.4zM14 18c-2.2 0-4-1.8-4-4s1.8-4 4-4 4 1.8 4 4c0 1.1-.4 2.1-1.1 2.9-.8.7-1.8 1.1-2.9 1.1z" fill="#3E3D40"/></g></svg>PK
!<MoJww)chrome/content/img/icons_sync-colored.svg<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title>  Icons &#x2F; Sync</title><desc>  Created with Sketch.</desc><g fill="none"><rect width="32" height="32"/><path d="M22 9C21.4 9 21 9.4 21 10L21 11.1C19.2 9.3 16.6 8.6 14.2 9.2 11.7 9.9 9.8 11.8 9.2 14.3 9.1 14.7 9.2 15 9.5 15.3 9.8 15.5 10.1 15.6 10.5 15.5 10.8 15.4 11.1 15.1 11.2 14.8 11.7 12.6 13.7 11 16 11 17.6 11 19 11.7 20 13L18 13C17.4 13 17 13.4 17 14 17 14.6 17.4 15 18 15L22 15C22.6 15 23 14.6 23 14L23 10C23 9.4 22.6 9 22 9ZM22 16.5C21.8 16.4 21.5 16.5 21.3 16.6 21.1 16.7 20.9 17 20.8 17.2 20.3 19.4 18.3 21 16 21 14.4 21 13 20.3 12 19L14 19C14.6 19 15 18.6 15 18 15 17.4 14.6 17 14 17L10 17C9.4 17 9 17.4 9 18L9 22C9 22.6 9.4 23 10 23 10.6 23 11 22.6 11 22L11 20.9C12.8 22.7 15.4 23.4 17.8 22.8 20.3 22.1 22.2 20.2 22.8 17.7 22.9 17.2 22.6 16.6 22 16.5Z" fill="#0A84FF"/></g></svg>
PK
!<]*[[.chrome/content/img/icons_sync-notification.svg<svg id="Layer_1" data-name="Layer 1" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32"><defs><style>.cls-1{fill:none;}.cls-2{fill:#767aa8;}.cls-3{fill:#f9f9fa;}.cls-4{fill:#e1e1e5;}.cls-5{fill:#fff;}.cls-6{fill:#0a84ff;}.cls-7{fill:#f5f5f7;}</style></defs><title>icons</title><path class="cls-1" d="M20.51,8.55h0V7.2a.5.5,0,0,0-.08-.25.5.5,0,0,1,0,.17Z"/><path class="cls-1" d="M26.67,8.55h0a.26.26,0,0,0-.07-.15.25.25,0,0,1,0,.11Z"/><path class="cls-1" d="M28.11,25.26A1.07,1.07,0,0,1,27,26.33H19.09a1.06,1.06,0,0,1-1-.6,1.07,1.07,0,0,0,1,.69h7.95a1.07,1.07,0,0,0,1.07-1.07V9.7A1,1,0,0,0,28,9.23a1.06,1.06,0,0,1,.08.39Z"/><path class="cls-1" d="M4.67,21.81a.47.47,0,0,1-.4-.22.47.47,0,0,0,.44.31H18v-.08Z"/><path class="cls-2" d="M4.67,21.81H18V20.71H5.63a.41.41,0,0,1-.41-.41V9h13a1.05,1.05,0,0,1,.86-.46h1.42V7.11A.43.43,0,0,0,20,6.69H4.75a.51.51,0,0,0-.51.51V21.45a.41.41,0,0,0,0,.14A.47.47,0,0,0,4.67,21.81ZM19.21,7.46a.42.42,0,0,1,.38.38.35.35,0,0,1-.35.35.42.42,0,0,1-.38-.38A.35.35,0,0,1,19.21,7.46Zm-1.09,0a.35.35,0,1,1-.35.35A.35.35,0,0,1,18.12,7.49Zm-10.32.3a.38.38,0,0,1,.38-.38h8.2a.38.38,0,0,1,.38.38v0a.38.38,0,0,1-.38.38H8.17a.38.38,0,0,1-.38-.38ZM6.55,7.46a.35.35,0,1,1-.35.35A.35.35,0,0,1,6.55,7.46Zm-1.12,0a.35.35,0,1,1-.35.35A.35.35,0,0,1,5.43,7.46Z"/><circle class="cls-3" cx="5.43" cy="7.81" r="0.35"/><circle class="cls-3" cx="6.55" cy="7.81" r="0.35"/><rect class="cls-3" x="7.79" y="7.41" width="8.96" height="0.79" rx="0.38" ry="0.38"/><path class="cls-3" d="M17.82,19.1a1.17,1.17,0,0,1-1.17-1.17V17a1.1,1.1,0,0,1-.62.21,1.11,1.11,0,0,1-.68-.24l-3-2.28a1.12,1.12,0,0,1,0-1.78l3-2.28a1.11,1.11,0,0,1,.68-.24,1.13,1.13,0,0,1,1.13,1.12v.36H18V9.62A1,1,0,0,1,18.24,9h-13V20.3a.41.41,0,0,0,.41.41H18V19.1Z"/><circle class="cls-3" cx="18.12" cy="7.84" r="0.35"/><path class="cls-3" d="M19.24,8.18a.35.35,0,0,0,.35-.35.42.42,0,0,0-.38-.38.35.35,0,0,0-.35.35.42.42,0,0,0,.38.38Z"/><path class="cls-4" d="M19.09,8.55A1.12,1.12,0,0,0,18,9.62v2.3h.88a1.1,1.1,0,0,1,.16,0V10.2a.47.47,0,0,1,.48-.46h7a.54.54,0,0,1,.54.54v13a.54.54,0,0,1-.54.54h-7a.54.54,0,0,1-.54-.54V19.1H18v2.79h0v3.45a1,1,0,0,0,1,1H27a1.07,1.07,0,0,0,1.07-1.07V9.62a1,1,0,0,0-1-1h-.37v0s0,0,0,0h0v0a.25.25,0,0,0,0-.11.26.26,0,0,0-.18-.07H25a.26.26,0,0,0-.25.22s0,0,0,0v0H20.55V8.55H19.09Zm5.09,16.54a.45.45,0,0,1-.45.45H22.28a.45.45,0,0,1-.45-.45v0a.45.45,0,0,1,.45-.45h1.45a.45.45,0,0,1,.45.45Z"/><path class="cls-3" d="M24.32,16.28a1.12,1.12,0,0,1,0,1.78l-3,2.28a1.11,1.11,0,0,1-1.8-.82l-.52.92V23.3a.54.54,0,0,0,.54.54h7a.54.54,0,0,0,.54-.54v-13a.54.54,0,0,0-.54-.54H25.1l-2.81,5Z"/><path class="cls-5" d="M20.06,13.09V14a1.1,1.1,0,0,1,.62-.21,1.11,1.11,0,0,1,.68.24l.92.71,2.81-5H19.53a.47.47,0,0,0-.48.46V12A1.16,1.16,0,0,1,20.06,13.09Z"/><path class="cls-5" d="M19.56,19.45V19.1h-.51v1.35l.52-.92S19.56,19.48,19.56,19.45Z"/><path class="cls-6" d="M17.15,16.53v1.4a.67.67,0,0,0,.67.67h2.24v.86a.62.62,0,0,0,.63.62.61.61,0,0,0,.38-.13l3-2.28a.62.62,0,0,0,0-1l-3-2.28a.61.61,0,0,0-.38-.13.62.62,0,0,0-.63.62v1H17.82A.67.67,0,0,0,17.15,16.53Z"/><path class="cls-6" d="M16.65,11.56a.62.62,0,0,0-.63-.62.61.61,0,0,0-.38.13l-3,2.28a.62.62,0,0,0,0,1l3,2.28a.61.61,0,0,0,.38.13.62.62,0,0,0,.63-.62v-1H18.9a.67.67,0,0,0,.67-.67v-1.4a.67.67,0,0,0-.67-.67H16.65Z"/><path class="cls-7" d="M17.15,11.56A1.13,1.13,0,0,0,16,10.44a1.11,1.11,0,0,0-.68.24l-3,2.28a1.12,1.12,0,0,0,0,1.78l3,2.28a1.11,1.11,0,0,0,.68.24,1.1,1.1,0,0,0,.62-.21v.88a1.17,1.17,0,0,0,1.17,1.17h1.74v.36s0,0,0,.07a1.11,1.11,0,0,0,1.8.82l3-2.28a1.12,1.12,0,0,0,0-1.78l-2-1.57L21.37,14a1.11,1.11,0,0,0-.68-.24,1.1,1.1,0,0,0-.62.21v-.88a1.16,1.16,0,0,0-1-1.14,1.1,1.1,0,0,0-.16,0H17.15Zm2.9,4.3v-1a.62.62,0,0,1,.63-.62.61.61,0,0,1,.38.13l3,2.28a.62.62,0,0,1,0,1l-3,2.28a.61.61,0,0,1-.38.13.62.62,0,0,1-.63-.62V18.6H17.82a.67.67,0,0,1-.67-.67v-1.4a.67.67,0,0,1,.67-.67ZM18.9,12.42a.67.67,0,0,1,.67.67v1.4a.67.67,0,0,1-.67.67H16.65v1a.62.62,0,0,1-.63.62.61.61,0,0,1-.38-.13l-3-2.28a.62.62,0,0,1,0-1l3-2.28a.61.61,0,0,1,.38-.13.62.62,0,0,1,.63.62v.86Z"/><rect class="cls-3" x="21.83" y="24.62" width="2.35" height="0.92" rx="0.45" ry="0.45"/><path class="cls-5" d="M4.71,22.89H17.06v2.45a2.07,2.07,0,0,0,2.07,2.07h7.95a2.07,2.07,0,0,0,2.07-2.07V9.7a2.07,2.07,0,0,0-1.88-2.06,1.25,1.25,0,0,0-.83-.31H25a1.26,1.26,0,0,0-.82.3H21.55V7.2A1.51,1.51,0,0,0,20,5.69H4.75A1.51,1.51,0,0,0,3.24,7.2V21.45A1.46,1.46,0,0,0,4.71,22.89ZM4.24,9.09V7.2a.51.51,0,0,1,.51-.51H20a.5.5,0,0,1,.43.26.5.5,0,0,1,.08.25V8.63h4.13v0s0,0,0,0A.26.26,0,0,1,25,8.33h1.49a.26.26,0,0,1,.18.07.26.26,0,0,1,.07.15s0,0,0,0v0h.37a1.06,1.06,0,0,1,1,.6,1,1,0,0,1,.12.47V25.34a1.07,1.07,0,0,1-1.07,1.07H19.13a1.09,1.09,0,0,1-1.07-1.07V21.89H4.71a.47.47,0,0,1-.44-.31.41.41,0,0,1,0-.14Z"/></svg>PK
!<(ww!chrome/content/img/icons_sync.svg<svg xmlns="http://www.w3.org/2000/svg" width="16" height="16" viewBox="8 8 16 16"><title>  Icons &#x2F; Sync</title><desc>  Created with Sketch.</desc><g fill="none"><rect width="32" height="32"/><path d="M22 9C21.4 9 21 9.4 21 10L21 11.1C19.2 9.3 16.6 8.6 14.2 9.2 11.7 9.9 9.8 11.8 9.2 14.3 9.1 14.7 9.2 15 9.5 15.3 9.8 15.5 10.1 15.6 10.5 15.5 10.8 15.4 11.1 15.1 11.2 14.8 11.7 12.6 13.7 11 16 11 17.6 11 19 11.7 20 13L18 13C17.4 13 17 13.4 17 14 17 14.6 17.4 15 18 15L22 15C22.6 15 23 14.6 23 14L23 10C23 9.4 22.6 9 22 9ZM22 16.5C21.8 16.4 21.5 16.5 21.3 16.6 21.1 16.7 20.9 17 20.8 17.2 20.3 19.4 18.3 21 16 21 14.4 21 13 20.3 12 19L14 19C14.6 19 15 18.6 15 18 15 17.4 14.6 17 14 17L10 17C9.4 17 9 17.4 9 18L9 22C9 22.6 9.4 23 10 23 10.6 23 11 22.6 11 22L11 20.9C12.8 22.7 15.4 23.4 17.8 22.8 20.3 22.1 22.2 20.2 22.8 17.7 22.9 17.2 22.6 16.6 22 16.5Z" fill="#3E3D40"/></g></svg>
PK
!<殤*chrome/content/img/icons_tour-complete.svg<?xml version="1.0" encoding="UTF-8"?>
<svg width="20px" height="20px" viewBox="0 0 20 20" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
    <!-- Generator: Sketch 44.1 (41455) - http://www.bohemiancoding.com/sketch -->
    <title>Tip / Check</title>
    <desc>Created with Sketch.</desc>
    <defs></defs>
    <g id="Symbols" stroke="none" stroke-width="1" fill="none" fill-rule="evenodd">
        <g id="Tips-/-Navigation" transform="translate(-30.000000, -117.000000)" stroke-width="2">
            <g id="Group">
                <g id="Tip-/-Check" transform="translate(30.000000, 117.000000)">
                    <circle id="Oval-2" stroke="#FFFFFF" fill="#33F70C" fill-rule="evenodd" cx="10" cy="10" r="9"></circle>
                    <polyline id="Path-31" stroke="#165866" stroke-linecap="round" stroke-linejoin="round" points="5.5 10.5 8.5 13.5 14.5 6.5"></polyline>
                </g>
            </g>
        </g>
    </g>
</svg>PK
!<k#chrome/content/img/overlay-icon.svg
<svg width="36" height="29" viewBox="0 0 36 29" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink"><title>overlayfox</title><defs><path id="a" d="M.002.058h35.953V27.94H.002z"/><path id="c" d="M0 17.39V.42h35.957v16.97H0z"/></defs><g fill="none" fill-rule="evenodd"><g transform="translate(0 .55)"><mask id="b" fill="#fff"><use xlink:href="#a"/></mask><path d="M35.953 16.593c.006-.19-.036-.386-.133-.562-1.02-1.884-2.052-3.65-3.17-5.243.773-.62 1.448-1.394 1.975-2.312 1.497-2.61 1.413-5.72.042-8.175-.063-.114-.176-.2-.294-.242.002.01-.006.016-.006.024-.008-.012-.018-.024-.03-.024-2.825-.03-5.558 1.46-7.112 4.09-.16.27-.3.572-.418.896-2.394-1.464-5.24-2.31-8.822-2.31-3.57 0-6.416.832-8.806 2.283v.007l-.02.014c-.12-.322-.257-.623-.416-.89C7.19 1.52 4.457.03 1.632.06c-.014 0-.028.014-.035.028 0-.007.007-.007.007-.014-.14.036-.267.12-.337.256-1.37 2.455-1.462 5.557.042 8.175.526.926 1.208 1.7 1.988 2.327-1.118 1.586-2.15 3.344-3.163 5.23-.092.166-.13.352-.13.533H.002c0 .007.002.013 0 .02v.016h.002c-.006.17.032.344.117.504 3.685 6.71 7.6 9.377 15 9.88.807.58 1.79.928 2.857.928 1.065 0 2.05-.347 2.857-.93 7.4-.5 11.323-3.168 15-9.878.09-.162.13-.35.12-.534v-.003-.004" fill="#F70" mask="url(#b)"/></g><g transform="translate(0 10.268)"><mask id="d" fill="#fff"><use xlink:href="#c"/></mask><path d="M17.978 17.39c9.31 0 13.732-2.447 17.857-9.975.09-.163.133-.356.12-.54h-4.238V5.23h-.014c.007-.113.014-.234.014-.348 0-2.462-1.975-4.46-4.407-4.46-2.43 0-4.406 1.998-4.406 4.46 0 .12.008.235.014.35h-9.88c.007-.1.014-.208.014-.314 0-2.462-1.974-4.462-4.406-4.462-2.43 0-4.406 2-4.406 4.462 0 .106.007.206.014.313h-.007v1.644H.002c-.013.185.03.37.12.54 4.132 7.53 8.545 9.976 17.856 9.976" fill="#FFC899" mask="url(#d)"/></g><path d="M35.954 17.15c.007-.192-.035-.39-.134-.57-1.018-1.885-2.05-3.65-3.17-5.243.774-.62 1.45-1.395 1.976-2.312 1.497-2.61 1.413-5.72.042-8.175-.063-.114-.175-.2-.295-.242.007.02.007.043-.014.057-.746.37-3.943 2.15-5.756 6.19-2.74-2.242-6.1-3.572-10.62-3.572-3.568 0-6.414.832-8.804 2.284v.007c-.632.384-1.23.81-1.8 1.28-1.474-3.28-3.85-5.065-5.1-5.82-.008 0-.008-.006-.015-.006C2.175.97 2.09.92 2.013.878c-.008 0-.015-.007-.015-.007C1.963.85 1.935.836 1.9.82c-.007 0-.007-.006-.014-.006-.035-.02-.064-.035-.098-.05-.008 0-.008-.006-.015-.006-.02-.015-.05-.03-.07-.036-.007 0-.014-.008-.02-.008C1.66.7 1.632.694 1.612.68 1.604.68 1.604.67 1.597.67L1.59.665V.65c0-.007 0-.007.008-.014 0-.007.007-.007.007-.014-.14.036-.267.12-.338.256-1.37 2.455-1.46 5.557.042 8.175.527.925 1.208 1.7 1.988 2.327-1.117 1.587-2.15 3.344-3.162 5.23-.098.177-.14.377-.133.57H4.24v-1.645h.007c-.007-.1-.014-.207-.014-.313 0-2.462 1.975-4.46 4.406-4.46 2.43 0 4.405 1.998 4.405 4.46 0 .106-.007.206-.014.313h.015v7.96c0 2.755 2.207 4.996 4.933 4.996 2.72 0 4.933-2.233 4.933-4.994v-7.99h.01c0-.042-.01-.085-.01-.128v-.47c.128-2.347 2.047-4.21 4.4-4.21 2.432 0 4.407 1.998 4.407 4.46 0 .12-.007.235-.015.348h.015v1.644h4.237z" fill="#F70"/><path d="M16.453 19.832s.05 0 .134.008c.084.006.204.014.345.014.14.007.31.007.49.014.177 0 .374.007.563.007.19 0 .38 0 .563-.007.175 0 .344-.007.492-.014.14-.008.26-.014.344-.014.084-.008.133-.008.133-.008.598-.057 1.132.39 1.18.996.03.3-.07.584-.245.804l-.942 1.146-.035.035c-.02.022-.056.058-.098.093-.043.036-.092.078-.148.114-.057.043-.127.078-.197.12-.07.036-.148.072-.233.107-.084.03-.168.057-.26.08-.175.042-.372.056-.56.048-.1-.006-.19-.014-.29-.028-.05-.007-.09-.014-.14-.02-.05-.008-.092-.023-.134-.03-.042-.007-.09-.028-.133-.035-.042-.015-.084-.03-.127-.043-.042-.015-.084-.03-.12-.05-.034-.015-.077-.036-.112-.05-.035-.022-.07-.036-.105-.057-.036-.022-.064-.036-.092-.058-.057-.035-.106-.07-.148-.106-.042-.03-.077-.065-.098-.08l-.036-.035-.906-.946c-.45-.47-.436-1.21.02-1.666.254-.25.577-.356.893-.342" fill="#994C00"/><path d="M8.407 19.398c-.618 0-1.243-.135-1.82-.412-.28-.136-.4-.477-.267-.762.134-.284.47-.405.752-.27.87.42 1.884.406 2.77-.043.28-.14.617-.027.75.258.14.284.03.625-.252.76-.612.314-1.272.47-1.933.47M26.938 19.398c-.618 0-1.244-.135-1.82-.412-.28-.136-.4-.477-.267-.762.135-.284.472-.405.753-.27.87.42 1.883.406 2.77-.043.28-.14.617-.027.75.258.134.284.03.625-.252.76-.61.314-1.27.47-1.932.47" fill="#F70"/><path d="M10.91 15.926c-.008-.064-.03-.12-.057-.178-.45-1.024-1.363-1.657-2.39-1.657-1.025 0-1.94.634-2.39 1.658-.027.057-.04.12-.055.178-.14.3-.077.67.183.904.31.277.788.25 1.07-.064.3-.342.736-.54 1.194-.54.456 0 .9.198 1.194.54.148.17.358.256.57.256.175 0 .358-.064.498-.192.26-.235.323-.605.183-.904M29.44 15.926c-.007-.064-.028-.12-.057-.178-.45-1.024-1.363-1.657-2.39-1.657-1.024 0-1.938.634-2.388 1.658-.028.057-.042.12-.056.178-.142.3-.078.67.182.904.14.128.323.192.5.192.21 0 .413-.086.568-.256.302-.342.737-.54 1.194-.54.457 0 .9.198 1.195.54.273.313.75.348 1.067.064.26-.235.323-.605.183-.904" fill="#363959"/><path d="M17.978 27.438c-1.405 0-2.122-.718-2.473-1.323-.373-.648-.415-1.288-.415-1.31-.007-.092.042-.184.12-.234.077-.05.175-.056.26-.014.007.008.934.456 2.48.456 1.553 0 2.53-.456 2.544-.456.085-.042.183-.028.26.022.078.05.12.142.112.235 0 .028-.042.67-.414 1.31-.352.597-1.068 1.315-2.474 1.315" fill="#994C00"/><path d="M28.597 6.855c1.468-3.28 3.843-5.066 5.094-5.82.008 0 .008-.007.016-.007.09-.057.175-.107.252-.15.007 0 .015-.007.015-.007.034-.02.063-.034.098-.05.008 0 .008-.006.015-.006.035-.02.063-.035.098-.05.007 0 .007-.007.015-.007.02-.014.05-.028.07-.035.006 0 .014-.008.02-.008.022-.014.05-.02.07-.035.008 0 .008-.008.015-.008l.007-.008V.65c0-.007 0-.007-.007-.013-.007-.015-.02-.03-.035-.03C31.513.58 28.78 2.068 27.226 4.7c-.16.27-.302.575-.42.902.617.356 1.215.783 1.79 1.253M7.374 6.855C5.906 3.575 3.53 1.79 2.28 1.035c-.008 0-.008-.007-.015-.007C2.175.97 2.09.92 2.013.878c-.008 0-.015-.007-.015-.007C1.963.85 1.935.837 1.9.82c-.007 0-.007-.006-.014-.006-.035-.02-.064-.035-.098-.05-.008 0-.008-.007-.015-.007-.02-.014-.05-.028-.07-.035-.007 0-.014-.008-.02-.008C1.66.7 1.632.694 1.612.68 1.604.68 1.604.67 1.597.67L1.59.664V.65c0-.007 0-.007.008-.013.007-.015.02-.03.035-.03C4.458.58 7.19 2.068 8.745 4.7c.16.27.302.575.42.902-.624.356-1.22.783-1.79 1.253" fill="#FF9F4D"/></g></svg>
PK
!<up`` chrome/content/lib/UITour-lib.js/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

/* eslint valid-jsdoc: ["error", { "requireReturn": false }] */

// create namespace
if (typeof Mozilla == "undefined") {
  var Mozilla = {};
}

(function($) {
  "use strict";

  // create namespace
  if (typeof Mozilla.UITour == "undefined") {
    /**
     * Library that exposes an event-based Web API for communicating with the
     * desktop browser chrome. It can be used for tasks such as opening menu
     * panels and highlighting the position of buttons in the toolbar.
     *
     * <p>For security/privacy reasons `Mozilla.UITour` will only work on a list of allowed
     * secure origins. The list of allowed origins can be found in
     * {@link https://dxr.mozilla.org/mozilla-central/source/browser/app/permissions|
     * browser/app/permissions}.</p>
     *
     * @since 29
     * @namespace
     */
    Mozilla.UITour = {};
  }

  var themeIntervalId = null;
  function _stopCyclingThemes() {
    if (themeIntervalId) {
      clearInterval(themeIntervalId);
      themeIntervalId = null;
    }
  }

  function _sendEvent(action, data) {
    var event = new CustomEvent("mozUITour", {
      bubbles: true,
      detail: {
        action,
        data: data || {}
      }
    });

    document.dispatchEvent(event);
  }

  function _generateCallbackID() {
    return Math.random().toString(36).replace(/[^a-z]+/g, "");
  }

  function _waitForCallback(callback) {
    var id = _generateCallbackID();

    function listener(event) {
      if (typeof event.detail != "object")
        return;
      if (event.detail.callbackID != id)
        return;

      document.removeEventListener("mozUITourResponse", listener);
      callback(event.detail.data);
    }
    document.addEventListener("mozUITourResponse", listener);

    return id;
  }

  var notificationListener = null;
  function _notificationListener(event) {
    if (typeof event.detail != "object")
      return;
    if (typeof notificationListener != "function")
      return;

    notificationListener(event.detail.event, event.detail.params);
  }

  Mozilla.UITour.DEFAULT_THEME_CYCLE_DELAY = 10 * 1000;

  Mozilla.UITour.CONFIGNAME_SYNC = "sync";
  Mozilla.UITour.CONFIGNAME_AVAILABLETARGETS = "availableTargets";

  /**
   * @typedef {String} Mozilla.UITour.Target
   *
   * @summary Not all targets are available at all times because they may not be visible
   * or UITour doesn't not how to automatically make them visible. Use
   * <code>`Mozilla.UITour.getConfiguration('availableTargets', callback)`</code> to determine
   * which ones are available at a given time.
   * @see Mozilla.UITour.getConfiguration
   * @see Mozilla.UITour.showHighlight
   * @see Mozilla.UITour.showInfo
   *
   * @description Valid values:<ul>
   * <li>accountStatus
   * <li>addons
   * <li>appMenu
   * <li>backForward
   * <li>bookmarks
   * <li>controlCenter-trackingUnblock
   * <li>controlCenter-trackingBlock
   * <li>customize
   * <li>devtools
   * <li>forget
   * <li>help
   * <li>home
   * <li>library
   * <li>pocket
   * <li>privateWindow
   * <li>quit
   * <li>readerMode-urlBar
   * <li>search
   * <li>searchIcon
   * <li>searchPrefsLink
   * <li>selectedTabIcon
   * <li>trackingProtection
   * <li>urlbar
   * <li>webide
   * </ul>
   *
   * Generate using the following in the Browser Console:
   * <code>`[...UITour.targets.keys()].join("\n* &lt;li&gt;")`</code>
   */

  /**
   * Ensure the browser is ready to handle this document as a tour.
   *
   * @param {Function} [callback] Callback to call if UITour is working for the document.
   * @since 35
   */
  Mozilla.UITour.ping = function(callback) {
    var data = {};
    if (callback) {
      data.callbackID = _waitForCallback(callback);
    }
    _sendEvent("ping", data);
  };

  /**
   * @summary Register a listener to observe all UITour notifications.
   *
   * @description There can only be one observer per tour tab so calling this a second time will
   * replace any previous `listener`.
   * To remove an observer, call the method with `null` as the first argument.
   *
   * @param {?Function} listener - Called when any UITour notification occurs.
   * @param {Function} [callback] - Called when the browser acknowledges the observer.
   */
  Mozilla.UITour.observe = function(listener, callback) {
    notificationListener = listener;

    if (listener) {
      document.addEventListener("mozUITourNotification",
                                _notificationListener);
      Mozilla.UITour.ping(callback);
    } else {
      document.removeEventListener("mozUITourNotification",
                                   _notificationListener);
    }
  };

  /**
   * Register an identifier to use in
   * {@link https://wiki.mozilla.org/Telemetry|Telemetry}. `pageID` must be a
   * string unique to the page/tour.
   *
   * @example
   * Mozilla.UITour.registerPageID('firstrun-page-firefox-29');
   *
   * @param {string} pageID Unique identifier for the page/tour.
   * @memberof Mozilla.UITour
   */
  Mozilla.UITour.registerPageID = function(pageID) {
    _sendEvent("registerPageID", {
      pageID
    });
  };

  /**
   * @typedef {String} Mozilla.UITour.HighlightEffect
   *
   * Specifies the effect/animation to use when highlighting UI elements.
   * @description Valid values:<ul>
   * <li>random
   * <li>wobble
   * <li>zoom
   * <li>color
   * </ul>
   *
   * Generate using the following in the Browser Console:
   * <code>[...UITour.highlightEffects].join("\n* &lt;li&gt;")</code>
   * @see Mozilla.UITour.showHighlight
   */

  /**
   * Visually highlight a UI widget.
   *
   * @see Mozilla.UITour.hideHighlight
   * @example Mozilla.UITour.showHighlight('appMenu', 'wobble');
   *
   * @param {Mozilla.UITour.Target} target - Identifier of the UI widget to show a highlight on.
   * @param {Mozilla.UITour.HighlightEffect} [effect="none"] - Name of the effect to use when highlighting.
   */
  Mozilla.UITour.showHighlight = function(target, effect) {
    _sendEvent("showHighlight", {
      target,
      effect
    });
  };

  /**
   * Hide any visible UI highlight.
   * @see Mozilla.UITour.showHighlight
   */
  Mozilla.UITour.hideHighlight = function() {
    _sendEvent("hideHighlight");
  };

  /**
   * Show an arrow panel with optional images and buttons anchored at a specific UI target.
   *
   * @see Mozilla.UITour.hideInfo
   *
   * @param {Mozilla.UITour.Target} target - Identifier of the UI widget to anchor the panel at.
   * @param {String} title - Title text to be shown as the heading of the panel.
   * @param {String} text - Body text of the panel.
   * @param {String} [icon=null] - URL of a 48x48px (96px @ 2dppx) image (which will be resolved
   *                               relative to the tab's URI) to display in the panel.
   * @param {Object[]} [buttons=[]] - Array of objects describing buttons.
   * @param {String} buttons[].label - Button label
   * @param {String} buttons[].icon - Button icon URL
   * @param {String} buttons[].style - Button style ("primary" or "link")
   * @param {Function} buttons[].callback - Called when the button is clicked
   * @param {Object} [options={}] - Advanced options
   * @param {Function} options.closeButtonCallback - Called when the panel's close button is clicked.
   *
   * @example
   * var buttons = [
   *   {
   *     label: 'Cancel',
   *     style: 'link',
   *     callback: cancelBtnCallback
   *   },
   *   {
   *     label: 'Confirm',
   *     style: 'primary',
   *     callback: confirmBtnCallback
   *   }
   * ];
   *
   * var icon = '//mozorg.cdn.mozilla.net/media/img/firefox/australis/logo.png';
   *
   * var options = {
   *   closeButtonCallback: closeBtnCallback
   * };
   *
   * Mozilla.UITour.showInfo('appMenu', 'my title', 'my text', icon, buttons, options);
   */
  Mozilla.UITour.showInfo = function(target, title, text, icon, buttons, options) {
    var buttonData = [];
    if (Array.isArray(buttons)) {
      for (var i = 0; i < buttons.length; i++) {
        buttonData.push({
          label: buttons[i].label,
          icon: buttons[i].icon,
          style: buttons[i].style,
          callbackID: _waitForCallback(buttons[i].callback)
        });
      }
    }

    var closeButtonCallbackID, targetCallbackID;
    if (options && options.closeButtonCallback)
      closeButtonCallbackID = _waitForCallback(options.closeButtonCallback);
    if (options && options.targetCallback)
      targetCallbackID = _waitForCallback(options.targetCallback);

    _sendEvent("showInfo", {
      target,
      title,
      text,
      icon,
      buttons: buttonData,
      closeButtonCallbackID,
      targetCallbackID
    });
  };

  /**
   * Hide any visible info panels.
   * @see Mozilla.UITour.showInfo
   */
  Mozilla.UITour.hideInfo = function() {
    _sendEvent("hideInfo");
  };

  /**
   * Preview a lightweight-theme applied to the browser UI.
   *
   * @see Mozilla.UITour.cycleThemes
   * @see Mozilla.UITour.resetTheme
   *
   * @param {Object} theme - Theme object format expected by `LightweightThemeManager.previewTheme`
   * @example
   * var theme = {
   *   …
   *   "iconURL":      "https://addons.mozilla.org/_files/…/preview_small.jpg",
   *   "headerURL":    "https://addons.mozilla.org/_files/….jpg",
   *   "name":         "My cool theme",
   *   "author":       "Mozilla",
   *   "footer":       "https://addons.mozilla.org/_files/….jpg",
   *   "previewURL":   "https://addons.mozilla.org/_files/…/preview.jpg",
   *   "updateURL":    "https://versioncheck.addons.mozilla.org/…",
   *   "accentcolor":  "#000000",
   *   "header":       "https://addons.mozilla.org/_files/….jpg",
   *   "version":      "1.0",
   *   "detailURL":    "https://addons.mozilla.org/firefox/addon/…",
   *   "textcolor":    "#ffffff",
   *   "id":           "18066",
   *   "description":  "My awesome theme.",
   *   …
   * };
   *
   * Mozilla.UITour.previewTheme(theme);
   */
  Mozilla.UITour.previewTheme = function(theme) {
    _stopCyclingThemes();

    _sendEvent("previewTheme", {
      theme: JSON.stringify(theme)
    });
  };

  /**
   * Stop previewing and cycling themes, returning to the user's previous theme.
   * @see Mozilla.UITour.cycleThemes
   * @see Mozilla.UITour.previewTheme
   */
  Mozilla.UITour.resetTheme = function() {
    _stopCyclingThemes();

    _sendEvent("resetTheme");
  };

  /**
   * Cycle between an array of themes using the given delay.
   *
   * @see Mozilla.UITour.previewTheme
   * @see Mozilla.UITour.resetTheme
   *
   * @param {Object[]} themes - Array of themes
   * @param {Number} [delay=Mozilla.UITour.DEFAULT_THEME_CYCLE_DELAY]
   *                 - Time in milliseconds between rotating themes
   * @param {Function} callback - Function called at each rotation
   */
  Mozilla.UITour.cycleThemes = function(themes, delay, callback) {
    _stopCyclingThemes();

    if (!delay) {
      delay = Mozilla.UITour.DEFAULT_THEME_CYCLE_DELAY;
    }

    function nextTheme() {
      var theme = themes.shift();
      themes.push(theme);

      _sendEvent("previewTheme", {
        theme: JSON.stringify(theme),
        state: true
      });

      callback(theme);
    }

    themeIntervalId = setInterval(nextTheme, delay);
    nextTheme();
  };

  /**
   * @typedef {String} Mozilla.UITour.MenuName
   * Valid values:<ul>
   * <li>appMenu
   * <li>bookmarks
   * <li>controlCenter
   * <li>pocket
   * </ul>
   *
   * @see Mozilla.UITour.showMenu
   * @see Mozilla.UITour.hideMenu
   * @see Mozilla.UITour.openSearchPanel
   */

  /**
   * Open the named application menu.
   *
   * @see Mozilla.UITour.hideMenu
   *
   * @param {Mozilla.UITour.MenuName} name - Menu name
   * @param {Function} [callback] - Callback to be called with no arguments when
   *                                the menu opens.
   *
   * @example
   * Mozilla.UITour.showMenu('appMenu', function() {
   *   console.log('menu was opened');
   * });
   */
  Mozilla.UITour.showMenu = function(name, callback) {
    var showCallbackID;
    if (callback)
      showCallbackID = _waitForCallback(callback);

    _sendEvent("showMenu", {
      name,
      showCallbackID,
    });
  };

  /**
   * Close the named application menu.
   *
   * @see Mozilla.UITour.showMenu
   *
   * @param {Mozilla.UITour.MenuName} name - Menu name
   */
  Mozilla.UITour.hideMenu = function(name) {
    _sendEvent("hideMenu", {
      name
    });
  };

  /**
   * Loads about:newtab in the tour tab.
   * @since 51
   */
  Mozilla.UITour.showNewTab = function() {
    _sendEvent("showNewTab");
  };


  /**
   * @typedef Mozilla.UITour.ConfigurationName
   * @description Valid values:<ul>
   * <li>{@link Mozilla.UITour.Configuration.AppInfo|appinfo}</li>
   * <li>{@link Mozilla.UITour.Configuration.CanReset|canReset}</li>
   * <li>{@link Mozilla.UITour.Configuration.AvailableTargets|availableTargets}</li>
   * <li>{@link Mozilla.UITour.Configuration.Search|search}</li>
   * <li>{@link Mozilla.UITour.Configuration.Search|selectedSearchEngine}
   * - DEPRECATED, use 'search'</li>
   * <li>{@link Mozilla.UITour.Configuration.Sync|sync}</li>
   * </ul>
   */

  /**
   * @namespace Mozilla.UITour.Configuration
   * @see Mozilla.UITour.getConfiguration
   * @see Mozilla.UITour.ConfigurationName
   */

  /**
   * Indicate whether a user can refresh their Firefox profile via {@link Mozilla.UITour.resetFirefox}.
   * @typedef {Boolean} Mozilla.UITour.Configuration.CanReset
   * @see Mozilla.UITour.resetFirefox
   * @since 48
   */

  /**
   * @typedef {Object} Mozilla.UITour.Configuration.AppInfo
   * @property {Boolean} canSetDefaultBrowserInBackground - Whether the application can be set as
   *                                                        the default browser in the background
   *                                                        without user interaction.
   * @property {Boolean} defaultBrowser - Whether the application is the default browser. Since Fx40.
   * @property {String} defaultUpdateChannel - Update channel e.g. 'release', 'beta', 'aurora',
   *                                           'nightly', 'default'
   *                                           (self-built or automated testing builds)
   * @property {String} distribution - Contains the distributionId property. This value will be
   *                                   "default" in most cases but can differ for repack or
   *                                   funnelcake builds. Since Fx48
   * @property {Number} profileCreatedWeeksAgo - The number of weeks since the profile was created,
   *                                             starting from 0 for profiles dating less than
   *                                             seven days old. Since Fx56.
   * @property {Number} profileResetWeeksAgo - The number of weeks since the profile was last reset,
   *                                           starting from 0 for profiles reset less than seven
   *                                           days ago. If the profile has never been reset it
   *                                           returns null. Since Fx56.
   * @property {String} version - Version string e.g. "48.0a2"
   * @since 35
   */

  /**
   * @summary Search service configuration.
   *
   * @description From version 34 through 42 inclusive, a string was returned for the 'selectedSearchEngine'
   * configuration instead of the object like 'search'.
   *
   * @typedef {String|Object} Mozilla.UITour.Configuration.Search
   * @property {String} searchEngineIdentifier - The default engine's identifier
   * @property {String[]} engines - Identifiers of visible engines
   * @since 43
   */

  /**
   * Sync status and device counts.
   * @typedef {Object} Mozilla.UITour.Configuration.Sync
   * @property {Boolean} setup - Whether sync is setup
   * @property {Number} desktopDevices - Number of desktop devices
   * @property {Number} mobileDevices - Number of mobile devices
   * @property {Number} totalDevices - Total number of connected devices
   * @since 50
   */

  /**
   * Array of UI {@link Mozilla.UITour.Target|Targets} currently available to be annotated.
   * @typedef {Mozilla.UITour.Target[]} Mozilla.UITour.Configuration.AvailableTargets
   */

  /**
   * Retrieve some information about the application/profile.
   *
   * @param {Mozilla.UITour.ConfigurationName} configName - Name of configuration to retrieve
   * @param {Function} callback - Called with one argument containing the value of the configuration.
   */
  Mozilla.UITour.getConfiguration = function(configName, callback) {
    _sendEvent("getConfiguration", {
      callbackID: _waitForCallback(callback),
      configuration: configName,
    });
  };

  /**
   * Set some value or take some action.
   *
   * <p><strong>Valid configuration names:</strong><dl>
   * <dt>defaultBrowser</dt>
   * <dd>Try to set the application as the default web browser. Since Fx40</dd>
   * </dl></p>
   *
   * @param {String} configName - Configuration name to set (e.g. "defaultBrowser")
   * @param {String|Number|Boolean} [configValue] - Not currently used
   *
   * @since 40
   * @example
   * Mozilla.UITour.setConfiguration('defaultBrowser');
   */
  Mozilla.UITour.setConfiguration = function(configName, configValue) {
    _sendEvent("setConfiguration", {
      configuration: configName,
      value: configValue,
    });
  };

  /**
   * Request the browser open the Firefox Accounts page.
   *
   * @param {Object} extraURLCampaignParams - An object containing additional
   * parameters for the URL opened by the browser for reasons of promotional
   * campaign tracking. Each attribute of the object must have a name that
   * is a string, begins with "utm_" and contains only only alphanumeric
   * characters, dashes or underscores. The values may be any string and will
   * automatically be encoded.
   * @param {String} email - A string containing the default email account
   * for the URL opened by the browser.
   * @since 31, 47 for `extraURLCampaignParams`
   * @example
   * // Will open about:accounts?action=signup&entrypoint=uitour
   * Mozilla.UITour.showFirefoxAccounts();
   * @example
   * // Will open:
   * // about:accounts?action=signup&entrypoint=uitour&utm_foo=bar&utm_bar=baz
   * Mozilla.UITour.showFirefoxAccounts({
   *   'utm_foo': 'bar',
   *   'utm_bar': 'baz'
   * });
   * @example
   * // Will open:
   * // about:accounts?action=signup&entrypoint=uitour&email=foo%40bar.com
   * Mozilla.UITour.showFirefoxAccounts(null, "foo@bar.com");
   */
  Mozilla.UITour.showFirefoxAccounts = function(extraURLCampaignParams, email) {
    _sendEvent("showFirefoxAccounts", {
      extraURLCampaignParams: JSON.stringify(extraURLCampaignParams),
      email
    });
  };

  /**
   * Show a profile refresh/reset dialog, allowing users to choose to reomve
   * add-ons and customizations as well as restore browser defaults, if possible.
   * `getConfiguration('canReset')` should first be used to determine whether
   * Refresh/Reset is possible for the user's build/profile.
   * @since 48
   * @see Mozilla.UITour.Configuration.CanReset
   */
  Mozilla.UITour.resetFirefox = function() {
    _sendEvent("resetFirefox");
  };

  /**
   * Add the specified customizable widget to the navigation toolbar.
   *
   * @param {Mozilla.UITour.Target} name - Identifier of the customizable widget.
   * @param {Function} callback - Called with no arguments once the icon was successfully added to
   *                              the toolbar. Not called if it doesn't succeed.
   * @since 33.1
   * @example
   * Mozilla.UITour.addNavBarWidget('forget', function () {
   *   console.log('forget button added to toolbar');
   * });
   */
  Mozilla.UITour.addNavBarWidget = function(name, callback) {
    _sendEvent("addNavBarWidget", {
      name,
      callbackID: _waitForCallback(callback),
    });
  };

  /**
   * Set the specified search engine as the user-set default.
   *
   * @see {@link https://dxr.mozilla.org/mozilla-release/source/browser/locales/search/list.json}
   *
   * @param {String} identifier - Identifier of the engine (e.g. 'yahoo').
   * @see Mozilla.UITour.Configuration.Search
   * @since 34
   */
  Mozilla.UITour.setDefaultSearchEngine = function(identifier) {
    _sendEvent("setDefaultSearchEngine", {
      identifier,
    });
  };

  /**
   * Sets a key+value pair as a treatment tag for recording in FHR.
   * @param {String} name - tag name for the treatment
   * @param {String} value - tag value for the treatment
   * @since 34
   * @see Mozilla.UITour.getTreatmentTag
   * @example
   * Mozilla.UITour.setTreatmentTag('srch-chg-action', 'Switch');
   */
  Mozilla.UITour.setTreatmentTag = function(name, value) {
    _sendEvent("setTreatmentTag", {
      name,
      value
    });
  };

  /**
   * Retrieved the value for a set FHR treatment tag.
   *
   * @param {String} name - Tag name to be retrieved
   * @param {Function} callback - Called once the data has been retrieved
   * @since 34
   * @see Mozilla.UITour.setTreatmentTag
   * @example
   * Mozilla.UITour.getTreatmentTag('srch-chg-action', function(value) {
   *   console.log(value);
   * });
   */
  Mozilla.UITour.getTreatmentTag = function(name, callback) {
    _sendEvent("getTreatmentTag", {
      name,
      callbackID: _waitForCallback(callback)
    });
  };

  /**
   * Set the search term in the search box.
   *
   * This should have been implemented via `setConfiguration("searchTerm", …)`.
   *
   * @param {String} term - Search string e.g. 'Firefox'
   * @since 34
   */
  Mozilla.UITour.setSearchTerm = function(term) {
    _sendEvent("setSearchTerm", {
      term
    });
  };

  /**
   * @summary Opens the search box's panel.
   *
   * @description This should have been implemented via `showMenu("search", …)`.
   *
   * @param {Function} callback - Called once the panel has opened.
   * @since 34
   */
  Mozilla.UITour.openSearchPanel = function(callback) {
    _sendEvent("openSearchPanel", {
      callbackID: _waitForCallback(callback)
    });
  };

  /**
   * @summary Force the reader mode icon to appear in the address bar regardless of whether
   * heuristics determine it's appropriate.
   *
   * @description This is useful if you want to target an annotation (panel/highlight) on it
   * but the tour page doesn't have much textual content.
   */
  Mozilla.UITour.forceShowReaderIcon = function() {
    _sendEvent("forceShowReaderIcon");
  };

  /**
   * Toggle into reader mode for the current tab. Once the user enters reader
   * mode, the UITour document will not be active and therefore cannot call other
   * UITour APIs.
   */
  Mozilla.UITour.toggleReaderMode = function() {
    _sendEvent("toggleReaderMode");
  };

  /**
   * @param {String} pane - Pane to open/switch the preferences to.
   * Valid values match fragments on about:preferences and are subject to change e.g.:
   * <ul>
   * For the old Preferences
   * <li>general
   * <li>search
   * <li>content
   * <li>applications
   * <li>privacy
   * <li>security
   * <li>sync
   * <li>advanced
   * </ul>
   *
   * <ul>
   * For the new Preferences
   * <li>general
   * <li>applications
   * <li>sync
   * <li>privacy
   * <li>advanced
   * </ul>
   *
   * The mapping between the old and the new Preferences:
   * To open to the options of sending telemetry, health report, crach reports,
   * that is, the advanced pane > dataChoicesTab on the old and the privcacy pane > reports on the new.
   * Please call `Mozilla.UITour.openPreferences("privacy-reports")`.
   * UITour would do route mapping automatically.
   *
   * @since 42
   */
  Mozilla.UITour.openPreferences = function(pane) {
    _sendEvent("openPreferences", {
      pane
    });
  };

  /**
   * @summary Closes the tab where this code is running. As usual, if the tab is in the
   * foreground, the tab that was displayed before is selected.
   *
   * @description The last tab in the current window will never be closed, in which case
   * this call will have no effect. The calling code is expected to take an
   * action after a small timeout in order to handle this case, for example by
   * displaying a goodbye message or a button to restart the tour.
   * @since 46
   */
  Mozilla.UITour.closeTab = function() {
    _sendEvent("closeTab");
  };
})();

// Make this library Require-able.
/* eslint-env commonjs */
if (typeof module !== "undefined" && module.exports) {
  module.exports = Mozilla.UITour;
}
PK
!<q-[gg-chrome/content/modules/OnboardingTourType.jsm/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */

"use strict";

this.EXPORTED_SYMBOLS = ["OnboardingTourType"];

const {utils: Cu} = Components;

Cu.import("resource://gre/modules/XPCOMUtils.jsm");

XPCOMUtils.defineLazyModuleGetter(this, "Services",
  "resource://gre/modules/Services.jsm");

var OnboardingTourType = {
  /**
   * Determine the current tour type (new user tour or update user tour).
   * The function checks 2 criterias
   *  - TOURSET_VERSION: current onboarding tourset version
   *  - PREF_SEEN_TOURSET_VERSION: the user seen tourset version
   * As the result the function will set the right current tour type in the tour type pref (PREF_TOUR_TYPE) for later use.
   */
  check() {
    const PREF_TOUR_TYPE = "browser.onboarding.tour-type";
    const PREF_SEEN_TOURSET_VERSION = "browser.onboarding.seen-tourset-version";
    const TOURSET_VERSION = Services.prefs.getIntPref("browser.onboarding.tourset-version");

    if (!Services.prefs.prefHasUserValue(PREF_SEEN_TOURSET_VERSION)) {
      // User has never seen an onboarding tour, present the user with the new user tour.
      Services.prefs.setStringPref(PREF_TOUR_TYPE, "new");
    } else if (Services.prefs.getIntPref(PREF_SEEN_TOURSET_VERSION) < TOURSET_VERSION) {
      // show the update user tour when tour set version is larger than the seen tourset version
      Services.prefs.setStringPref(PREF_TOUR_TYPE, "update");
      Services.prefs.setBoolPref("browser.onboarding.hidden", false);
      // Reset all the notification-related prefs because tours update.
      Services.prefs.setBoolPref("browser.onboarding.notification.finished", false);
      Services.prefs.clearUserPref("browser.onboarding.notification.prompt-count");
      Services.prefs.clearUserPref("browser.onboarding.notification.last-time-of-changing-tour-sec");
      Services.prefs.clearUserPref("browser.onboarding.notification.tour-ids-queue");
    }
    Services.prefs.setIntPref(PREF_SEEN_TOURSET_VERSION, TOURSET_VERSION);
  },
};
PK
!<D5VV'chrome/content/onboarding-tour-agent.js/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

 /* globals Mozilla */

"use strict";

document.addEventListener("Agent:CanSetDefaultBrowserInBackground", () => {
  Mozilla.UITour.getConfiguration("appinfo", config => {
    let canSetInBackGround = config.canSetDefaultBrowserInBackground;
    let btn = document.getElementById("onboarding-tour-default-browser-button");
    btn.setAttribute("data-cansetbg", canSetInBackGround);
    btn.textContent = canSetInBackGround ? btn.getAttribute("data-bg") : btn.getAttribute("data-panel");
  });
});

document.getElementById("onboarding-overlay")
  .addEventListener("click", evt => {
  switch (evt.target.id) {
    case "onboarding-tour-addons-button":
      Mozilla.UITour.showHighlight("addons");
      break;
    case "onboarding-tour-customize-button":
      Mozilla.UITour.showHighlight("customize");
      break;
    case "onboarding-tour-default-browser-button":
      Mozilla.UITour.getConfiguration("appinfo", (config) => {
        let isDefaultBrowser = config.defaultBrowser;
        let btn = document.getElementById("onboarding-tour-default-browser-button");
        let msg = document.getElementById("onboarding-tour-is-default-browser-msg");
        let canSetInBackGround = btn.getAttribute("data-cansetbg") === "true";
        if (isDefaultBrowser || canSetInBackGround) {
          btn.classList.add("onboarding-hidden");
          msg.classList.remove("onboarding-hidden");
          if (canSetInBackGround) {
            Mozilla.UITour.setConfiguration("defaultBrowser");
          }
        } else {
          btn.disabled = true;
          Mozilla.UITour.setConfiguration("defaultBrowser");
        }
      });
      break;
    case "onboarding-tour-library-button":
      Mozilla.UITour.showHighlight("library");
      break;
    case "onboarding-tour-private-browsing-button":
      Mozilla.UITour.showHighlight("privateWindow");
      break;
    case "onboarding-tour-search-button":
      Mozilla.UITour.openSearchPanel(() => {});
      break;
    case "onboarding-tour-singlesearch-button":
      Mozilla.UITour.showMenu("urlbar");
      break;
    case "onboarding-tour-sync-button":
      let emailInput = document.getElementById("onboarding-tour-sync-email-input");
      if (emailInput.checkValidity()) {
        Mozilla.UITour.showFirefoxAccounts(null, emailInput.value);
      }
      break;
    case "onboarding-overlay":
    case "onboarding-overlay-close-btn":
      // Dismiss any highlights if a user tries to close the dialog.
      Mozilla.UITour.hideHighlight();
      break;
  }
  // Dismiss any highlights if a user tries to change to other tours.
  if (evt.target.classList.contains("onboarding-tour-item")) {
    Mozilla.UITour.hideHighlight();
  }
});
PK
!<{MhȤ99chrome/content/onboarding.css/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this
 * file, You can obtain one at http://mozilla.org/MPL/2.0/. */
#onboarding-overlay * {
  box-sizing: border-box;
}

#onboarding-overlay {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  /* Ensuring we can put the overlay over elements using
     z-index on original page */
  z-index: 20999;
  color: #4d4d4d;
  background: rgb(54, 57, 89, 0.8); /* #363959, 0.8 opacity */
  display: none;
}

#onboarding-overlay.onboarding-opened {
  display: block;
}

#onboarding-overlay-button {
  z-index: 20998;
  padding: 0;
  position: absolute;
  cursor: pointer;
  top: 34px;
  offset-inline-start: 34px;
  border: none;
  /* Set to none so no grey contrast background in the high-contrast mode */
  background: none;
}

/* Keyboard focus styling */
#onboarding-overlay-button:-moz-focusring {
  outline: solid 2px rgba(0, 0, 0, 0.1);
  -moz-outline-radius: 5px;
  outline-offset: 5px;
  transition: outline-offset 150ms;
}

#onboarding-overlay-button-icon {
  width: 36px;
  vertical-align: top;
}

#onboarding-notification-icon::after,
#onboarding-overlay-button::after {
  background: #5ce6e6;
  font-size: 12px;
  border: 1px solid #fff;
  text-align: center;
  color: #10404a;
  box-sizing: content-box;
}

#onboarding-overlay-button::after {
  content: attr(aria-label);
  display: inline-block;
  offset-inline-start: 39px;
  border-radius: 22px;
  padding: 5px 8px;
  width: 110px;
  margin-inline-start: 3px;
  margin-top: -5px;
}

#onboarding-overlay-dialog,
.onboarding-hidden,
#onboarding-tour-sync-page[data-login-state=logged-in] .show-on-logged-out,
#onboarding-tour-sync-page[data-login-state=logged-out] .show-on-logged-in {
  display: none;
}

.onboarding-close-btn {
   position: absolute;
   top: 15px;
   offset-inline-end: 15px;
   cursor: pointer;
   width: 16px;
   height: 16px;
   padding: 12px;
   border: none;
   background: var(--onboarding-overlay-dialog-background-color);
 }

.onboarding-close-btn::before {
  content: url(chrome://browser/skin/sidebar/close.svg);
  display: block;
  margin-top: -8px;
  margin-inline-start: -8px;
}

.onboarding-close-btn:-moz-any(:hover, :active, :focus, :-moz-focusring),
#onboarding-notification-close-btn:-moz-any(:hover, :active, :focus, :-moz-focusring) {
  background-color: rgba(204, 204, 204, 0.6);
}

#onboarding-overlay.onboarding-opened > #onboarding-overlay-dialog {
  --onboarding-overlay-dialog-background-color: #f5f5f7;
  width: 960px;
  height: 510px;
  background: var(--onboarding-overlay-dialog-background-color);
  border: 1px solid rgba(9, 6, 13, 0.1); /* #09060D, 0.1 opacity */
  border-radius: 3px;
  position: relative;
  margin: 0 calc(50% - 480px);
  top: calc(50% - 255px);
  display: grid;
  grid-template-rows: [dialog-start] 70px [page-start] 1fr [footer-start] 30px [dialog-end];
  grid-template-columns: [dialog-start] 230px [page-start] 1fr [dialog-end];
}

@media (max-height: 510px) {
  #onboarding-overlay.onboarding-opened > #onboarding-overlay-dialog {
    top: 0;
  }
}

#onboarding-overlay-dialog > header {
  grid-row: dialog-start / page-start;
  grid-column: dialog-start / tour-end;
  margin-top: 22px;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 36px;
  font-size: 22px;
  font-weight: 200;
}

#onboarding-overlay-dialog > nav {
  grid-row: dialog-start / footer-start;
  grid-column-start: dialog-start;
  margin-top: 40px;
  margin-bottom: 0;
  margin-inline-end: 0;
  margin-inline-start: 0;
  padding: 0;
}

#onboarding-overlay-dialog > footer {
  grid-row: footer-start;
  grid-column: dialog-start / tour-end;
  font-size: 13px;
}

#onboarding-tour-hidden-checkbox {
  margin-inline-start: 27px;
  margin-inline-end: 10px;
}

/* Onboarding tour list */
#onboarding-tour-list {
  margin: 40px 0 0 0;
  padding: 0;
  margin-inline-start: 16px;
}

#onboarding-tour-list .onboarding-tour-item-container {
  list-style: none;
  outline: none;
}

#onboarding-tour-list .onboarding-tour-item {
  pointer-events: none;
  display: list-item;
  padding-inline-start: 49px;
  padding-top: 14px;
  padding-bottom: 14px;
  margin-bottom: 9px;
  background-repeat: no-repeat;
  background-position: left 17px top 14px;
  background-size: 20px;
  font-size: 16px;
  cursor: pointer;
}

#onboarding-tour-list .onboarding-tour-item:dir(rtl) {
  background-position-x: right 17px;
}

#onboarding-tour-list .onboarding-tour-item.onboarding-complete::before {
  content: url("img/icons_tour-complete.svg");
  position: relative;
  offset-inline-start: 3px;
  top: -10px;
  float: inline-start;
}

#onboarding-tour-list .onboarding-tour-item.onboarding-complete {
  padding-inline-start: 29px;
}

#onboarding-tour-list .onboarding-tour-item.onboarding-active,
#onboarding-tour-list .onboarding-tour-item-container:hover .onboarding-tour-item {
  color: #0A84FF;
  /* With 1px transparent outline, could see a border in the high-constrast mode */
  outline: 1px solid transparent;
}

/* Default browser tour */
#onboarding-tour-is-default-browser-msg {
  font-size: 16px;
  line-height: 21px;
  float: inline-end;
  margin-inline-end: 26px;
  margin-top: -32px;
  text-align: center;
}

/* Sync tour */
#onboarding-tour-sync-page form {
  text-align: center;
}

#onboarding-tour-sync-page form > h3 {
  text-align: center;
  margin: 0;
  font-size: 22px;
  font-weight: normal;
}

#onboarding-tour-sync-page form > p {
  text-align: center;
  margin: 3px 0 0 0;
  font-size: 15px;
  font-weight: normal;
}

#onboarding-tour-sync-page form > input {
  margin-top: 10px;
  height: 40px;
  width: 80%;
  padding: 7px;
}

#onboarding-tour-sync-page form > #onboarding-tour-sync-button {
  padding: 10px 20px;
  min-width: 40%;
  margin: 15px 0;
  float: none;
}

/* Onboarding tour pages */
.onboarding-tour-page {
  grid-row: page-start / footer-end;
  grid-column: page-start;
  display: grid;
  grid-template-rows: [tour-page-start] 393px [tour-button-start] 1fr [tour-page-end];
  grid-template-columns: [tour-page-start] 368px [tour-content-start] 1fr [tour-page-end];
}

.onboarding-tour-description {
  grid-row: tour-page-start / tour-page-end;
  grid-column: tour-page-start / tour-content-start;
  font-size: 15px;
  line-height: 22px;
  padding-inline-start: 40px;
  padding-inline-end: 28px;
}

.onboarding-tour-description > h1 {
  font-size: 36px;
  margin-top: 16px;
  font-weight: 300;
  line-height: 44px;
}

.onboarding-tour-content {
  grid-row: tour-page-start / tour-button-start;
  grid-column: tour-content-start / tour-page-end;
  padding: 0;
  text-align: end;
}

.onboarding-tour-content > img {
  width: 352px;
  margin: 0;
}

/* These illustrations need to be stuck on the right side to the border. Thus we
   need to flip them horizontally on RTL . */
.onboarding-tour-content > img:dir(rtl) {
  transform: scaleX(-1);
}

.onboarding-tour-content > iframe {
  width: 100%;
  height: 100%;
  border: none;
}

.onboarding-tour-page.onboarding-no-button > .onboarding-tour-content {
  grid-row: tour-page-start / tour-page-end;
  grid-column: tour-content-start / tour-page-end;
}

.onboarding-tour-button-container {
  grid-row: tour-button-start / tour-page-end;
  grid-column: tour-content-start / tour-page-end;
}

.onboarding-tour-page.onboarding-no-button > .onboarding-tour-button-container {
  display: none;
  grid-row: tour-page-end;
  grid-column: tour-page-end;
}

.onboarding-tour-action-button {
  padding: 10px 20px;
  font-size: 15px;
  font-weight: 600;
  line-height: 21px;
  background: #0a84ff;
  /* With 1px transparent border, could see a border in the high-constrast mode */
  border: 1px solid transparent;
  border-radius: 0;
  color: #fff;
  float: inline-end;
  margin-inline-end: 26px;
  margin-top: -32px;
}

/* Remove default dotted outline around buttons' text */
.onboarding-tour-action-button::-moz-focus-inner,
#onboarding-overlay-button::-moz-focus-inner,
#onboarding-notification-action-btn::-moz-focus-inner {
  border: 0;
}

/* Keyboard focus specific outline */
.onboarding-tour-action-button:-moz-focusring,
#onboarding-notification-action-btn:-moz-focusring,
#onboarding-tour-list .onboarding-tour-item:focus {
  outline: 2px solid rgba(0,149,221,0.5);
  outline-offset: 1px;
  -moz-outline-radius: 2px;
}

.onboarding-tour-action-button:hover:not([disabled]) ,
#onboarding-notification-action-btn:hover {
  background: #0060df;
  cursor: pointer;
}

.onboarding-tour-action-button:active:not([disabled]),
#onboarding-notification-action-btn:active  {
  background: #003EAA;
}

.onboarding-tour-action-button:disabled {
  opacity: 0.5;
}

/* Tour Icons */
#onboarding-tour-search,
#onboarding-tour-singlesearch {
  background-image: url("img/icons_search.svg");
}

#onboarding-tour-search.onboarding-active,
#onboarding-tour-search:hover,
#onboarding-tour-singlesearch.onboarding-active,
#onboarding-tour-singlesearch:hover {
  background-image: url("img/icons_search-colored.svg");
}

#onboarding-notification-bar[data-target-tour-id=onboarding-tour-search] #onboarding-notification-tour-icon,
#onboarding-notification-bar[data-target-tour-id=onboarding-tour-singlesearch] #onboarding-notification-tour-icon {
  background-image: url("img/icons_search-notification.svg");
}

#onboarding-tour-private-browsing {
  background-image: url("img/icons_private.svg");
}

#onboarding-tour-private-browsing.onboarding-active,
#onboarding-tour-private-browsing:hover {
  background-image: url("img/icons_private-colored.svg");
}

#onboarding-notification-bar[data-target-tour-id=onboarding-tour-private-browsing] #onboarding-notification-tour-icon {
  background-image: url("img/icons_private-notification.svg");
}

#onboarding-tour-addons {
  background-image: url("img/icons_addons.svg");
}

#onboarding-tour-addons.onboarding-active,
#onboarding-tour-addons:hover {
  background-image: url("img/icons_addons-colored.svg");
}

#onboarding-notification-bar[data-target-tour-id=onboarding-tour-addons] #onboarding-notification-tour-icon {
  background-image: url("img/icons_addons-notification.svg");
}

#onboarding-tour-customize {
  background-image: url("img/icons_customize.svg");
}

#onboarding-tour-customize.onboarding-active,
#onboarding-tour-customize:hover {
  background-image: url("img/icons_customize-colored.svg");
}

#onboarding-notification-bar[data-target-tour-id=onboarding-tour-customize] #onboarding-notification-tour-icon {
  background-image: url("img/icons_customize-notification.svg");
}


#onboarding-tour-default-browser {
  background-image: url("img/icons_default.svg");
}

#onboarding-tour-default-browser.onboarding-active,
#onboarding-tour-default-browser:hover {
  background-image: url("img/icons_default-colored.svg");
}

#onboarding-notification-bar[data-target-tour-id=onboarding-tour-default-browser] #onboarding-notification-tour-icon {
  background-image: url("img/icons_default-notification.svg");
}

#onboarding-tour-sync {
  background-image: url("img/icons_sync.svg");
}

#onboarding-tour-sync.onboarding-active,
#onboarding-tour-sync:hover {
  background-image: url("img/icons_sync-colored.svg");
}

#onboarding-notification-bar[data-target-tour-id=onboarding-tour-sync] #onboarding-notification-tour-icon {
  background-image: url("img/icons_sync-notification.svg");
}

#onboarding-tour-library {
  background-image: url("img/icons_search.svg");
}

#onboarding-tour-library.onboarding-active,
#onboarding-tour-library:hover,
#onboarding-notification-bar[data-target-tour-id=onboarding-tour-library] #onboarding-notification-tour-icon {
  background-image: url("img/icons_search-colored.svg");
}

#onboarding-tour-performance {
  background-image: url("img/icons_performance.svg");
}

#onboarding-tour-performance.onboarding-active,
#onboarding-tour-performance:hover {
  background-image: url("img/icons_performance-colored.svg");
}

#onboarding-notification-bar[data-target-tour-id=onboarding-tour-performance] #onboarding-notification-tour-icon {
  /* TODO: Placeholder icon. It should be replaced upon assets are available.
           This is tracking in Bug 1382520. */
  background-image: url("img/icons_sync-notification.svg");
}

/* Tour Notifications */
#onboarding-notification-bar {
  --onboarding-notification-bar-background-color: rgba(255, 255, 255, 0.97);
  position: fixed;
  z-index: 20998; /* We want this always under #onboarding-overlay */
  left: 0;
  bottom: 0;
  width: 100%;
  height: 122px;
  min-width: 640px;
  background: var(--onboarding-notification-bar-background-color);
  border-top: 2px solid #e9e9e9;
  transition: transform 0.8s;
  transform: translateY(122px);
}

#onboarding-notification-bar.onboarding-opened {
  transition: none;
  transform: translateY(0px);
}

#onboarding-notification-icon {
  height: 36px;
  background: url("img/overlay-icon.svg") no-repeat;
  background-size: 36px;
  background-position: 34px;
  padding-inline-start: 190px;
  position: absolute;
  offset-block-start: 50%;
  transform: translateY(-50%);
}

#onboarding-notification-icon:dir(rtl) {
  background-position: right 34px center;
}

#onboarding-notification-icon::after {
  --height: 22px;
  --vpadding: 3px;
  position: absolute;
  content: attr(aria-label);
  top: 0;
  offset-inline-start: 73px;
  line-height: calc(var(--height) - var(--vpadding) * 2);
  border-radius: calc(var(--height) / 2);
  padding: var(--vpadding) 10px;
}

#onboarding-notification-close-btn {
  background: var(--onboarding-notification-bar-background-color);
  position: absolute;
  offset-block-start: 50%;
  offset-inline-end: 34px;
  transform: translateY(-50%);
}

#onboarding-notification-message-section {
  height: 100%;
  display: flex;
  align-items: center;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}

#onboarding-notification-body {
  width: 500px;
  margin: 0 15px;
  color: #0c0c0d;
  display: inline-block;
  max-height: 100%;
  overflow: auto;
  padding: 15px 0;
  box-sizing: border-box;
}

#onboarding-notification-body * {
  font-size: 13px
}

#onboarding-notification-tour-title {
  margin: 0;
  font-weight: bold;
}

#onboarding-notification-tour-icon {
  min-width: 64px;
  height: 64px;
  background-size: 64px;
  background-repeat: no-repeat;
}

#onboarding-notification-action-btn {
  background: #0a84ff;
  /* With 1px transparent border, could see a border in the high-constrast mode */
  border: 1px solid transparent;
  border-radius: 0;
  padding: 10px 20px;
  font-size: 14px;
  color: #fff;
  min-width: 130px;
}

@media all and (max-width: 960px) {
  #onboarding-notification-icon {
    display: none;
  }
}
@media all and (max-width: 720px) {
  #onboarding-notification-body {
    width: 340px;
  }
}
PK
!<6ychrome/content/onboarding.js/* This Source Code Form is subject to the terms of the Mozilla Public
 * License, v. 2.0. If a copy of the MPL was not distributed with this file,
 * You can obtain one at http://mozilla.org/MPL/2.0/. */

/* eslint-env mozilla/frame-script */

"use strict";

const {classes: Cc, interfaces: Ci, utils: Cu} = Components;
Cu.import("resource://gre/modules/XPCOMUtils.jsm");
Cu.import("resource://gre/modules/Services.jsm");

const ONBOARDING_CSS_URL = "resource://onboarding/onboarding.css";
const ABOUT_HOME_URL = "about:home";
const ABOUT_NEWTAB_URL = "about:newtab";
const BUNDLE_URI = "chrome://onboarding/locale/onboarding.properties";
const UITOUR_JS_URI = "resource://onboarding/lib/UITour-lib.js";
const TOUR_AGENT_JS_URI = "resource://onboarding/onboarding-tour-agent.js";
const BRAND_SHORT_NAME = Services.strings
                     .createBundle("chrome://branding/locale/brand.properties")
                     .GetStringFromName("brandShortName");
const PROMPT_COUNT_PREF = "browser.onboarding.notification.prompt-count";
const ONBOARDING_DIALOG_ID = "onboarding-overlay-dialog";

/**
 * Add any number of tours, key is the tourId, value should follow the format below
 * "tourId": { // The short tour id which could be saved in pref
 *   // The unique tour id
 *   id: "onboarding-tour-addons",
 *   // The string id of tour name which would be displayed on the navigation bar
 *   tourNameId: "onboarding.tour-addon",
 *   // The method returing strings used on tour notification
 *   getNotificationStrings(bundle):
 *     - title: // The string of tour notification title
 *     - message: // The string of tour notification message
 *     - button: // The string of tour notification action button title
 *   // Return a div appended with elements for this tours.
 *   // Each tour should contain the following 3 sections in the div:
 *   // .onboarding-tour-description, .onboarding-tour-content, .onboarding-tour-button-container.
 *   // Add onboarding-no-button css class in the div if this tour does not need a button container.
 *   // If there was a .onboarding-tour-action-button present and was clicked, tour would be marked as completed.
 *   getPage() {},
 * },
 **/
var onboardingTourset = {
  "private": {
    id: "onboarding-tour-private-browsing",
    tourNameId: "onboarding.tour-private-browsing",
    getNotificationStrings(bundle) {
      return {
        title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-private-browsing.title"),
        message: bundle.GetStringFromName("onboarding.notification.onboarding-tour-private-browsing.message2"),
        button: bundle.GetStringFromName("onboarding.button.learnMore"),
      };
    },
    getPage(win) {
      let div = win.document.createElement("div");
      div.innerHTML = `
        <section class="onboarding-tour-description">
          <h1 data-l10n-id="onboarding.tour-private-browsing.title2"></h1>
          <p data-l10n-id="onboarding.tour-private-browsing.description3"></p>
        </section>
        <section class="onboarding-tour-content">
          <img src="resource://onboarding/img/figure_private.svg" role="presentation"/>
        </section>
        <aside class="onboarding-tour-button-container">
          <button id="onboarding-tour-private-browsing-button" class="onboarding-tour-action-button" data-l10n-id="onboarding.tour-private-browsing.button"></button>
        </aside>
      `;
      return div;
    },
  },
  "addons": {
    id: "onboarding-tour-addons",
    tourNameId: "onboarding.tour-addons",
    getNotificationStrings(bundle) {
      return {
        title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-addons.title"),
        message: bundle.formatStringFromName("onboarding.notification.onboarding-tour-addons.message", [BRAND_SHORT_NAME], 1),
        button: bundle.GetStringFromName("onboarding.button.learnMore"),
      };
    },
    getPage(win) {
      let div = win.document.createElement("div");
      div.innerHTML = `
        <section class="onboarding-tour-description">
          <h1 data-l10n-id="onboarding.tour-addons.title2"></h1>
          <p data-l10n-id="onboarding.tour-addons.description2"></p>
        </section>
        <section class="onboarding-tour-content">
          <img src="resource://onboarding/img/figure_addons.svg" role="presentation"/>
        </section>
        <aside class="onboarding-tour-button-container">
          <button id="onboarding-tour-addons-button" class="onboarding-tour-action-button" data-l10n-id="onboarding.tour-addons.button"></button>
        </aside>
      `;
      return div;
    },
  },
  "customize": {
    id: "onboarding-tour-customize",
    tourNameId: "onboarding.tour-customize",
    getNotificationStrings(bundle) {
      return {
        title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-customize.title"),
        message: bundle.formatStringFromName("onboarding.notification.onboarding-tour-customize.message", [BRAND_SHORT_NAME], 1),
        button: bundle.GetStringFromName("onboarding.button.learnMore"),
      };
    },
    getPage(win) {
      let div = win.document.createElement("div");
      div.innerHTML = `
        <section class="onboarding-tour-description">
          <h1 data-l10n-id="onboarding.tour-customize.title2"></h1>
          <p data-l10n-id="onboarding.tour-customize.description2"></p>
        </section>
        <section class="onboarding-tour-content">
          <img src="resource://onboarding/img/figure_customize.svg" role="presentation"/>
        </section>
        <aside class="onboarding-tour-button-container">
          <button id="onboarding-tour-customize-button" class="onboarding-tour-action-button" data-l10n-id="onboarding.tour-customize.button"></button>
        </aside>
      `;
      return div;
    },
  },
  "search": {
    id: "onboarding-tour-search",
    tourNameId: "onboarding.tour-search2",
    getNotificationStrings(bundle) {
      return {
        title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-search.title"),
        message: bundle.GetStringFromName("onboarding.notification.onboarding-tour-search.message"),
        button: bundle.GetStringFromName("onboarding.button.learnMore"),
      };
    },
    getPage(win) {
      let div = win.document.createElement("div");
      div.innerHTML = `
        <section class="onboarding-tour-description">
          <h1 data-l10n-id="onboarding.tour-search.title2"></h1>
          <p data-l10n-id="onboarding.tour-search.description2"></p>
        </section>
        <section class="onboarding-tour-content">
          <img src="resource://onboarding/img/figure_search.svg" role="presentation"/>
        </section>
        <aside class="onboarding-tour-button-container">
          <button id="onboarding-tour-search-button" class="onboarding-tour-action-button" data-l10n-id="onboarding.tour-search.button"></button>
        </aside>
      `;
      return div;
    },
  },
  "default": {
    id: "onboarding-tour-default-browser",
    tourNameId: "onboarding.tour-default-browser",
    getNotificationStrings(bundle) {
      return {
        title: bundle.formatStringFromName("onboarding.notification.onboarding-tour-default-browser.title", [BRAND_SHORT_NAME], 1),
        message: bundle.formatStringFromName("onboarding.notification.onboarding-tour-default-browser.message", [BRAND_SHORT_NAME], 1),
        button: bundle.GetStringFromName("onboarding.button.learnMore"),
      };
    },
    getPage(win, bundle) {
      let div = win.document.createElement("div");
      let setFromBackGround = bundle.formatStringFromName("onboarding.tour-default-browser.win7.button", [BRAND_SHORT_NAME], 1);
      let setFromPanel = bundle.GetStringFromName("onboarding.tour-default-browser.button");
      let isDefaultMessage = bundle.GetStringFromName("onboarding.tour-default-browser.is-default.message");
      let isDefault2ndMessage = bundle.formatStringFromName("onboarding.tour-default-browser.is-default.2nd-message", [BRAND_SHORT_NAME], 1);
      // eslint-disable-next-line no-unsanitized/property
      div.innerHTML = `
        <section class="onboarding-tour-description">
          <h1 data-l10n-id="onboarding.tour-default-browser.title2"></h1>
          <p data-l10n-id="onboarding.tour-default-browser.description2"></p>
        </section>
        <section class="onboarding-tour-content">
          <img src="resource://onboarding/img/figure_default.svg" role="presentation"/>
        </section>
        <aside class="onboarding-tour-button-container">
          <button id="onboarding-tour-default-browser-button" class="onboarding-tour-action-button"
            data-bg="${setFromBackGround}" data-panel="${setFromPanel}"></button>
          <div id="onboarding-tour-is-default-browser-msg" class="onboarding-hidden">${isDefaultMessage}<br/>${isDefault2ndMessage}</div>
        </aside>
      `;

      div.addEventListener("beforeshow", () => {
        win.document.dispatchEvent(new Event("Agent:CanSetDefaultBrowserInBackground"));
      });
      return div;
    },
  },
  "sync": {
    id: "onboarding-tour-sync",
    tourNameId: "onboarding.tour-sync2",
    getNotificationStrings(bundle) {
      return {
        title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-sync.title"),
        message: bundle.GetStringFromName("onboarding.notification.onboarding-tour-sync.message"),
        button: bundle.GetStringFromName("onboarding.button.learnMore"),
      };
    },
    getPage(win, bundle) {
      const STATE_LOGOUT = "logged-out";
      const STATE_LOGIN = "logged-in";
      let div = win.document.createElement("div");
      div.classList.add("onboarding-no-button");
      div.dataset.loginState = STATE_LOGOUT;
      // The email validation pattern used in the form comes from IETF rfc5321,
      // which is identical to server-side checker of Firefox Account. See
      // discussion in https://bugzilla.mozilla.org/show_bug.cgi?id=1378770#c6
      // for detail.
      let emailRegex = "^[\\w.!#$%&’*+\\/=?^`{|}~-]{1,64}@[a-z\\d](?:[a-z\\d-]{0,253}[a-z\\d])?(?:\\.[a-z\\d](?:[a-z\\d-]{0,253}[a-z\\d])?)+$";
      div.innerHTML = `
        <section class="onboarding-tour-description">
          <h1 data-l10n-id="onboarding.tour-sync.title2" class="show-on-logged-out"></h1>
          <p data-l10n-id="onboarding.tour-sync.description2" class="show-on-logged-out"></p>
          <h1 data-l10n-id="onboarding.tour-sync.logged-in.title" class="show-on-logged-in"></h1>
          <p data-l10n-id="onboarding.tour-sync.logged-in.description" class="show-on-logged-in"></p>
        </section>
        <section class="onboarding-tour-content">
          <form class="show-on-logged-out">
            <h3 data-l10n-id="onboarding.tour-sync.form.title"></h3>
            <p data-l10n-id="onboarding.tour-sync.form.description"></p>
            <input id="onboarding-tour-sync-email-input" type="email" required="true"></input><br />
            <button id="onboarding-tour-sync-button" class="onboarding-tour-action-button" data-l10n-id="onboarding.tour-sync.button"></button>
          </form>
          <img src="resource://onboarding/img/figure_sync.svg" role="presentation"/>
        </section>
      `;
      let emailInput = div.querySelector("#onboarding-tour-sync-email-input");
      emailInput.placeholder =
        bundle.GetStringFromName("onboarding.tour-sync.email-input.placeholder");
      emailInput.pattern = emailRegex;

      div.addEventListener("beforeshow", () => {
        function loginStatusListener(msg) {
          removeMessageListener("Onboarding:ResponseLoginStatus", loginStatusListener);
          div.dataset.loginState = msg.data.isLoggedIn ? STATE_LOGIN : STATE_LOGOUT;
        }
        sendMessageToChrome("get-login-status");
        addMessageListener("Onboarding:ResponseLoginStatus", loginStatusListener);
      });

      return div;
    },
  },
  "library": {
    id: "onboarding-tour-library",
    tourNameId: "onboarding.tour-library",
    getNotificationStrings(bundle) {
      return {
        title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-library.title"),
        message: bundle.formatStringFromName("onboarding.notification.onboarding-tour-library.message", [BRAND_SHORT_NAME], 1),
        button: bundle.GetStringFromName("onboarding.button.learnMore"),
      };
    },
    getPage(win) {
      let div = win.document.createElement("div");
      div.innerHTML = `
        <section class="onboarding-tour-description">
          <h1 data-l10n-id="onboarding.tour-library.title"></h1>
          <p data-l10n-id="onboarding.tour-library.description"></p>
        </section>
        <section class="onboarding-tour-content">
          <img src="resource://onboarding/img/figure_search.svg" role="presentation"/>
        </section>
        <aside class="onboarding-tour-button-container">
          <button id="onboarding-tour-library-button" class="onboarding-tour-action-button" data-l10n-id="onboarding.tour-library.button"></button>
        </aside>
      `;
      return div;
    },
  },
  "singlesearch": {
    id: "onboarding-tour-singlesearch",
    tourNameId: "onboarding.tour-singlesearch",
    getNotificationStrings(bundle) {
      return {
        title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-singlesearch.title"),
        message: bundle.GetStringFromName("onboarding.notification.onboarding-tour-singlesearch.message"),
        button: bundle.GetStringFromName("onboarding.button.learnMore"),
      };
    },
    getPage(win, bundle) {
      let div = win.document.createElement("div");
      div.innerHTML = `
        <section class="onboarding-tour-description">
          <h1 data-l10n-id="onboarding.tour-singlesearch.title"></h1>
          <p data-l10n-id="onboarding.tour-singlesearch.description"></p>
        </section>
        <section class="onboarding-tour-content">
          <img src="resource://onboarding/img/figure_search.svg" role="presentation"/>
        </section>
        <aside class="onboarding-tour-button-container">
          <button id="onboarding-tour-singlesearch-button" class="onboarding-tour-action-button" data-l10n-id="onboarding.tour-singlesearch.button"></button>
        </aside>
      `;
      return div;
    },
  },
  "performance": {
    id: "onboarding-tour-performance",
    tourNameId: "onboarding.tour-performance",
    getNotificationStrings(bundle) {
      return {
        title: bundle.GetStringFromName("onboarding.notification.onboarding-tour-performance.title"),
        message: bundle.formatStringFromName("onboarding.notification.onboarding-tour-performance.message", [BRAND_SHORT_NAME], 1),
        button: bundle.GetStringFromName("onboarding.button.learnMore"),
      };
    },
    getPage(win, bundle) {
      let div = win.document.createElement("div");
      // TODO: The content image is a placeholder. It should be replaced upon assets are available.
      //       This is tracking in Bug 1382520.
      div.innerHTML = `
        <section class="onboarding-tour-description">
          <h1 data-l10n-id="onboarding.tour-performance.title"></h1>
          <p data-l10n-id="onboarding.tour-performance.description"></p>
        </section>
        <section class="onboarding-tour-content">
          <img src="resource://onboarding/img/figure_sync.svg" role="presentation"/>
        </section>
      `;
      return div;
    },
  },
};

/**
 * @param {String} action the action to ask the chrome to do
 * @param {Array} params the parameters for the action
 */
function sendMessageToChrome(action, params) {
  sendAsyncMessage("Onboarding:OnContentMessage", {
    action, params
  });
}
/**
 * The script won't be initialized if we turned off onboarding by
 * setting "browser.onboarding.enabled" to false.
 */
class Onboarding {
  constructor(contentWindow) {
    this.init(contentWindow);
  }

  async init(contentWindow) {
    this._window = contentWindow;
    this._tours = [];
    this._tourType = Services.prefs.getStringPref("browser.onboarding.tour-type", "update");

    let tourIds = this._getTourIDList();
    tourIds.forEach(tourId => {
      if (onboardingTourset[tourId]) {
        this._tours.push(onboardingTourset[tourId]);
      }
    });

    if (this._tours.length === 0) {
      return;
    }

    // We want to create and append elements after CSS is loaded so
    // no flash of style changes and no additional reflow.
    await this._loadCSS();
    this._bundle = Services.strings.createBundle(BUNDLE_URI);

    this._loadJS(UITOUR_JS_URI);

    this._window.addEventListener("resize", this);

    // Destroy on unload. This is to ensure we remove all the stuff we left.
    // No any leak out there.
    this._window.addEventListener("unload", () => this.destroy());

    this.uiInitialized = false;
    this._resizeTimerId =
      this._window.requestIdleCallback(() => this._resizeUI());
  }

  _resizeUI() {
    // Don't show the overlay UI before we get to a better, responsive design.
    if (this._window.document.body.getBoundingClientRect().width < 960) {
      this.destroy();
    } else {
      this._initUI();
    }
  }

  _initUI() {
    if (this.uiInitialized) {
      return;
    }
    this.uiInitialized = true;
    this._tourItems = [];
    this._tourPages = [];

    let { body } = this._window.document;
    this._overlayIcon = this._renderOverlayButton();
    this._overlayIcon.addEventListener("click", this);
    this._overlayIcon.addEventListener("keypress", this);
    body.insertBefore(this._overlayIcon, body.firstChild);

    this._overlay = this._renderOverlay();
    this._overlay.addEventListener("click", this);
    this._overlay.addEventListener("keypress", this);
    body.appendChild(this._overlay);

    this._loadJS(TOUR_AGENT_JS_URI);

    this._initPrefObserver();
    // Doing tour notification takes some effort. Let's do it on idle.
    this._window.requestIdleCallback(() => this._initNotification());
  }

  _getTourIDList() {
    let tours = Services.prefs.getStringPref(`browser.onboarding.${this._tourType}tour`, "");
    return tours.split(",").filter(tourId => tourId !== "").map(tourId => tourId.trim());
  }

  _initNotification() {
    let doc = this._window.document;
    if (doc.hidden) {
      // When the preloaded-browser feature is on,
      // it would preload an hidden about:newtab in the background.
      // We don't want to show notification in that hidden state.
      let onVisible = () => {
        if (!doc.hidden) {
          doc.removeEventListener("visibilitychange", onVisible);
          this.showNotification();
        }
      };
      doc.addEventListener("visibilitychange", onVisible);
    } else {
      this.showNotification();
    }
  }

  _initPrefObserver() {
    if (this._prefsObserved) {
      return;
    }

    this._prefsObserved = new Map();
    this._prefsObserved.set("browser.onboarding.hidden", prefValue => {
      if (prefValue) {
        this.destroy();
      }
    });
    this._tours.forEach(tour => {
      let tourId = tour.id;
      this._prefsObserved.set(`browser.onboarding.tour.${tourId}.completed`, () => {
        this.markTourCompletionState(tourId);
      });
    });
    for (let [name, callback] of this._prefsObserved) {
      Services.prefs.addObserver(name, callback);
    }
  }

  _clearPrefObserver() {
    if (this._prefsObserved) {
      for (let [name, callback] of this._prefsObserved) {
        Services.prefs.removeObserver(name, callback);
      }
      this._prefsObserved = null;
    }
  }

  /**
   * Find a tour that should be selected. It is either a first tour that was not
   * yet complete or the first one in the tab list.
   */
  get selectedTour() {
    return this._tours.find(tour => !this.isTourCompleted(tour.id)) ||
           this._tours[0];
  }

  handleClick(target) {
    let { id, classList } = target;
    // Only containers receive pointer events in onboarding tour tab list,
    // actual semantic tab is their first child.
    if (classList.contains("onboarding-tour-item-container")) {
      ({ id, classList } = target.firstChild);
    }

    switch (id) {
      case "onboarding-overlay-button":
      case "onboarding-overlay-close-btn":
      // If the clicking target is directly on the outer-most overlay,
      // that means clicking outside the tour content area.
      // Let's toggle the overlay.
      case "onboarding-overlay":
        this.toggleOverlay();
        this.gotoPage(this.selectedTour.id);
        break;
      case "onboarding-notification-close-btn":
        this.hideNotification();
        this._removeTourFromNotificationQueue(this._notificationBar.dataset.targetTourId);
        break;
      case "onboarding-notification-action-btn":
        let tourId = this._notificationBar.dataset.targetTourId;
        this.toggleOverlay();
        this.gotoPage(tourId);
        this._removeTourFromNotificationQueue(tourId);
        break;
      // These tours are tagged completed instantly upon showing.
      case "onboarding-tour-default-browser":
      case "onboarding-tour-sync":
      case "onboarding-tour-performance":
        this.setToursCompleted([ id ]);
        break;
    }
    if (classList.contains("onboarding-tour-item")) {
      this.gotoPage(id);
      // Keep focus (not visible) on current item for potential keyboard
      // navigation.
      target.focus();
    } else if (classList.contains("onboarding-tour-action-button")) {
      let activeItem = this._tourItems.find(item => item.classList.contains("onboarding-active"));
      this.setToursCompleted([ activeItem.id ]);
    }
  }

  /**
   * Wrap keyboard focus within the dialog and focus on first element after last
   * when moving forward or last element after first when moving backwards. Do
   * nothing if focus is moving in the middle of the list of dialog's focusable
   * elements.
   *
   * @param  {DOMNode} current  currently focused element
   * @param  {Boolean} back     direction
   * @return {DOMNode}          newly focused element if any
   */
  wrapMoveFocus(current, back) {
    let elms = [...this._dialog.querySelectorAll(
      `button, input[type="checkbox"], input[type="email"], [tabindex="0"]`)];
    let next;
    if (back) {
      if (elms.indexOf(current) === 0) {
        next = elms[elms.length - 1];
        next.focus();
      }
    } else if (elms.indexOf(current) === elms.length - 1) {
      next = elms[0];
      next.focus();
    }
    return next;
  }

  handleKeypress(event) {
    let { target, key, shiftKey } = event;

    if (target === this._overlayIcon) {
      if ([" ", "Enter"].includes(key)) {
        // Remember that the dialog was opened with a keyboard.
        this._overlayIcon.dataset.keyboardFocus = true;
        this.handleClick(target);
        event.preventDefault();
      }

      return;
    }

    // Current focused item can be tab container if previous navigation was done
    // via mouse.
    if (target.classList.contains("onboarding-tour-item-container")) {
      target = target.firstChild;
    }
    let targetIndex;
    switch (key) {
      case " ":
      case "Enter":
        // Assume that the handle function should be identical for keyboard
        // activation if there is a click handler for the target.
        if (target.classList.contains("onboarding-tour-item")) {
          this.handleClick(target);
          target.focus();
        }
        break;
      case "ArrowUp":
        // Go to and focus on the previous tab if it's available.
        targetIndex = this._tourItems.indexOf(target);
        if (targetIndex > 0) {
          let previous = this._tourItems[targetIndex - 1];
          this.handleClick(previous);
          previous.focus();
        }
        event.preventDefault();
        break;
      case "ArrowDown":
        // Go to and focus on the next tab if it's available.
        targetIndex = this._tourItems.indexOf(target);
        if (targetIndex > -1 && targetIndex < this._tourItems.length - 1) {
          let next = this._tourItems[targetIndex + 1];
          this.handleClick(next);
          next.focus();
        }
        event.preventDefault();
        break;
      case "Escape":
        this.toggleOverlay();
        break;
      case "Tab":
        let next = this.wrapMoveFocus(target, shiftKey);
        // If focus was wrapped, prevent Tab key default action.
        if (next) {
          event.preventDefault();
        }
        break;
      default:
        break;
    }
    event.stopPropagation();
  }

  handleEvent(evt) {
    switch (evt.type) {
      case "resize":
        this._window.cancelIdleCallback(this._resizeTimerId);
        this._resizeTimerId =
          this._window.requestIdleCallback(() => this._resizeUI());
        break;
      case "keypress":
        this.handleKeypress(evt);
        break;
      case "click":
        this.handleClick(evt.target);
        break;
      default:
        break;
    }
  }

  destroy() {
    if (!this.uiInitialized) {
      return;
    }
    this.uiInitialized = false;

    this._clearPrefObserver();
    this._overlayIcon.remove();
    this._overlay.remove();
    if (this._notificationBar) {
      this._notificationBar.remove();
    }

    this._tourItems = this._tourPages =
    this._overlayIcon = this._overlay = this._notificationBar = null;
  }

  toggleOverlay() {
    if (this._tourItems.length == 0) {
      // Lazy loading until first toggle.
      this._loadTours(this._tours);
    }

    this.hideNotification();
    this._overlay.classList.toggle("onboarding-opened");
    this.toggleModal(this._overlay.classList.contains("onboarding-opened"));

    let hiddenCheckbox = this._window.document.getElementById("onboarding-tour-hidden-checkbox");
    if (hiddenCheckbox.checked) {
      this.hide();
    }
  }

  /**
   * Set modal dialog state and properties for accessibility purposes.
   * @param  {Boolean} opened  whether the dialog is opened or closed.
   */
  toggleModal(opened) {
    let { document: doc } = this._window;
    if (opened) {
      // Set aria-hidden to true for the rest of the document.
      [...doc.body.children].forEach(
        child => child.id !== "onboarding-overlay" &&
                 child.setAttribute("aria-hidden", true));
      // When dialog is opened with the keyboard, focus on the selected or
      // first tour item.
      if (this._overlayIcon.dataset.keyboardFocus) {
        doc.getElementById(this.selectedTour.id).focus();
      } else {
        // When dialog is opened with mouse, focus on the dialog itself to avoid
        // visible keyboard focus styling.
        this._dialog.focus();
      }
    } else {
      // Remove all set aria-hidden attributes.
      [...doc.body.children].forEach(
        child => child.removeAttribute("aria-hidden"));
      // If dialog was opened with a keyboard, set the focus back on the overlay
      // button.
      if (this._overlayIcon.dataset.keyboardFocus) {
        delete this._overlayIcon.dataset.keyboardFocus;
        this._overlayIcon.focus();
      } else {
        this._window.document.activeElement.blur();
      }
    }
  }

  gotoPage(tourId) {
    let targetPageId = `${tourId}-page`;
    for (let page of this._tourPages) {
      if (page.id === targetPageId) {
        page.style.display = "";
        page.dispatchEvent(new this._window.CustomEvent("beforeshow"));
      } else {
        page.style.display = "none";
      }
    }
    for (let tab of this._tourItems) {
      if (tab.id == tourId) {
        tab.classList.add("onboarding-active");
        tab.setAttribute("aria-selected", true);
      } else {
        tab.classList.remove("onboarding-active");
        tab.setAttribute("aria-selected", false);
      }
    }
  }

  isTourCompleted(tourId) {
    return Services.prefs.getBoolPref(`browser.onboarding.tour.${tourId}.completed`, false);
  }

  setToursCompleted(tourIds) {
    let params = [];
    tourIds.forEach(id => {
      if (!this.isTourCompleted(id)) {
        params.push({
          name: `browser.onboarding.tour.${id}.completed`,
          value: true
        });
      }
    });
    if (params.length > 0) {
      sendMessageToChrome("set-prefs", params);
    }
  }

  markTourCompletionState(tourId) {
    // We are doing lazy load so there might be no items.
    if (!this._tourItems || this._tourItems.length === 0) {
      return;
    }

    let completed = this.isTourCompleted(tourId);
    let targetItem = this._tourItems.find(item => item.id == tourId);
    let completedTextId = `onboarding-complete-${tourId}-text`;
    // Accessibility: Text version of the auxiliary information about the tour
    // item completion is provided via an invisible node with an aria-label that
    // the tab is pointing to via aria-described by.
    let completedText = targetItem.querySelector(`#${completedTextId}`);
    if (completed) {
      targetItem.classList.add("onboarding-complete");
      if (!completedText) {
        completedText = this._window.document.createElement("span");
        completedText.id = completedTextId;
        completedText.setAttribute("aria-label", "Complete");
        targetItem.appendChild(completedText);
        targetItem.setAttribute("aria-describedby", completedTextId);
      }
    } else {
      targetItem.classList.remove("onboarding-complete");
      targetItem.removeAttribute("aria-describedby");
      if (completedText) {
        completedText.remove();
      }
    }
  }

  _muteNotificationOnFirstSession() {
    if (Services.prefs.prefHasUserValue("browser.onboarding.notification.tour-ids-queue")) {
      // There is a queue. We had prompted before, this must not be the 1st session.
      return false;
    }

    let muteDuration = Services.prefs.getIntPref("browser.onboarding.notification.mute-duration-on-first-session-ms");
    if (muteDuration == 0) {
      // Don't mute when this is set to 0 on purpose.
      return false;
    }

    // Reuse the `last-time-of-changing-tour-sec` to save the time that
    // we try to prompt on the 1st session.
    let lastTime = 1000 * Services.prefs.getIntPref("browser.onboarding.notification.last-time-of-changing-tour-sec", 0);
    if (lastTime <= 0) {
      sendMessageToChrome("set-prefs", [{
        name: "browser.onboarding.notification.last-time-of-changing-tour-sec",
        value: Math.floor(Date.now() / 1000)
      }]);
      return true;
    }
    return Date.now() - lastTime <= muteDuration;
  }

  _isTimeForNextTourNotification() {
    let promptCount = Services.prefs.getIntPref("browser.onboarding.notification.prompt-count", 0);
    let maxCount = Services.prefs.getIntPref("browser.onboarding.notification.max-prompt-count-per-tour");
    if (promptCount >= maxCount) {
      return true;
    }

    let lastTime = 1000 * Services.prefs.getIntPref("browser.onboarding.notification.last-time-of-changing-tour-sec", 0);
    let maxTime = Services.prefs.getIntPref("browser.onboarding.notification.max-life-time-per-tour-ms");
    if (lastTime && Date.now() - lastTime >= maxTime) {
      return true;
    }

    return false;
  }

  _removeTourFromNotificationQueue(tourId) {
    let params = [];
    let queue = this._getNotificationQueue();
    params.push({
      name: "browser.onboarding.notification.tour-ids-queue",
      value: queue.filter(id => id != tourId).join(",")
    });
    params.push({
      name: "browser.onboarding.notification.last-time-of-changing-tour-sec",
      value: 0
    });
    params.push({
      name: "browser.onboarding.notification.prompt-count",
      value: 0
    });
    sendMessageToChrome("set-prefs", params);
  }

  _getNotificationQueue() {
    let queue = "";
    if (Services.prefs.prefHasUserValue("browser.onboarding.notification.tour-ids-queue")) {
      queue = Services.prefs.getStringPref("browser.onboarding.notification.tour-ids-queue");
    } else {
      // For each tour, it only gets 2 chances to prompt with notification
      // (each chance includes 8 impressions or 5-days max life time)
      // if user never interact with it.
      // Assume there are tour #0 ~ #5. Here would form the queue as
      // "#0,#1,#2,#3,#4,#5,#0,#1,#2,#3,#4,#5".
      // Then we would loop through this queue and remove prompted tour from the queue
      // until the queue is empty.
      let ids = this._tours.map(tour => tour.id).join(",");
      queue = `${ids},${ids}`;
      sendMessageToChrome("set-prefs", [{
        name: "browser.onboarding.notification.tour-ids-queue",
        value: queue
      }]);
    }
    return queue ? queue.split(",") : [];
  }

  showNotification() {
    if (Services.prefs.getBoolPref("browser.onboarding.notification.finished", false)) {
      return;
    }

    if (this._muteNotificationOnFirstSession()) {
      return;
    }

    let queue = this._getNotificationQueue();
    let startQueueLength = queue.length;
    // See if need to move on to the next tour
    if (queue.length > 0 && this._isTimeForNextTourNotification()) {
      queue.shift();
    }
    // We don't want to prompt completed tour.
    while (queue.length > 0 && this.isTourCompleted(queue[0])) {
      queue.shift();
    }

    if (queue.length == 0) {
      sendMessageToChrome("set-prefs", [
        {
          name: "browser.onboarding.notification.finished",
          value: true
        },
        {
          name: "browser.onboarding.notification.tour-ids-queue",
          value: ""
        }
      ]);
      return;
    }
    let targetTourId = queue[0];
    let targetTour = this._tours.find(tour => tour.id == targetTourId);

    // Show the target tour notification
    this._notificationBar = this._renderNotificationBar();
    this._notificationBar.addEventListener("click", this);
    this._notificationBar.dataset.targetTourId = targetTour.id;
    let notificationStrings = targetTour.getNotificationStrings(this._bundle);
    let actionBtn = this._notificationBar.querySelector("#onboarding-notification-action-btn");
    actionBtn.textContent = notificationStrings.button;
    let tourTitle = this._notificationBar.querySelector("#onboarding-notification-tour-title");
    tourTitle.textContent = notificationStrings.title;
    let tourMessage = this._notificationBar.querySelector("#onboarding-notification-tour-message");
    tourMessage.textContent = notificationStrings.message;
    this._notificationBar.classList.add("onboarding-opened");
    this._window.document.body.appendChild(this._notificationBar);

    let params = [];
    if (startQueueLength != queue.length) {
      // We just change tour so update the time, the count and the queue
      params.push({
        name: "browser.onboarding.notification.last-time-of-changing-tour-sec",
        value: Math.floor(Date.now() / 1000)
      });
      params.push({
        name: PROMPT_COUNT_PREF,
        value: 1
      });
      params.push({
        name: "browser.onboarding.notification.tour-ids-queue",
        value: queue.join(",")
      });
    } else {
      let promptCount = Services.prefs.getIntPref(PROMPT_COUNT_PREF, 0);
      params.push({
        name: PROMPT_COUNT_PREF,
        value: promptCount + 1
      });
    }
    sendMessageToChrome("set-prefs", params);
  }

  hideNotification() {
    if (this._notificationBar) {
      this._notificationBar.classList.remove("onboarding-opened");
    }
  }

  _renderNotificationBar() {
    let footer = this._window.document.createElement("footer");
    footer.id = "onboarding-notification-bar";
    footer.setAttribute("aria-live", "polite");
    footer.setAttribute("aria-labelledby", "onboarding-notification-icon")
    // We use `innerHTML` for more friendly reading.
    // The security should be fine because this is not from an external input.
    footer.innerHTML = `
      <div id="onboarding-notification-icon" role="presentation"></div>
      <section id="onboarding-notification-message-section" role="presentation">
        <div id="onboarding-notification-tour-icon" role="presentation"></div>
        <div id="onboarding-notification-body" role="presentation">
          <h1 id="onboarding-notification-tour-title"></h1>
          <p id="onboarding-notification-tour-message"></p>
        </div>
        <button id="onboarding-notification-action-btn"></button>
      </section>
      <button id="onboarding-notification-close-btn" class="onboarding-close-btn"></button>
    `;
    let toolTip = this._bundle.formatStringFromName(
      this._tourType === "new" ? "onboarding.notification-icon-tool-tip" :
                                 "onboarding.notification-icon-tooltip-updated",
      [BRAND_SHORT_NAME], 1);

    let icon = footer.querySelector("#onboarding-notification-icon");
    icon.setAttribute("aria-label", toolTip);
    icon.setAttribute("role", "presentation");

    let closeBtn = footer.querySelector("#onboarding-notification-close-btn");
    closeBtn.setAttribute("title",
      this._bundle.GetStringFromName("onboarding.notification-close-button-tooltip"));
    return footer;
  }

  hide() {
    this.setToursCompleted(this._tours.map(tour => tour.id));
    sendMessageToChrome("set-prefs", [
      {
        name: "browser.onboarding.hidden",
        value: true
      },
      {
        name: "browser.onboarding.notification.finished",
        value: true
      }
    ]);
  }

  _renderOverlay() {
    let div = this._window.document.createElement("div");
    div.id = "onboarding-overlay";
    // We use `innerHTML` for more friendly reading.
    // The security should be fine because this is not from an external input.
    div.innerHTML = `
      <div role="dialog" tabindex="-1" aria-labelledby="onboarding-header">
        <header id="onboarding-header"></header>
        <nav>
          <ul id="onboarding-tour-list" role="tablist"></ul>
        </nav>
        <footer id="onboarding-footer">
          <input type="checkbox" id="onboarding-tour-hidden-checkbox" /><label for="onboarding-tour-hidden-checkbox"></label>
        </footer>
        <button id="onboarding-overlay-close-btn" class="onboarding-close-btn"></button>
      </div>
    `;

    this._dialog = div.querySelector(`[role="dialog"]`);
    this._dialog.id = ONBOARDING_DIALOG_ID;

    div.querySelector("label[for='onboarding-tour-hidden-checkbox']").textContent =
      this._bundle.GetStringFromName("onboarding.hidden-checkbox-label-text");
    div.querySelector("#onboarding-header").textContent =
      this._bundle.GetStringFromName("onboarding.overlay-title2");
    let closeBtn = div.querySelector("#onboarding-overlay-close-btn");
    closeBtn.setAttribute("title",
      this._bundle.GetStringFromName("onboarding.overlay-close-button-tooltip"));
    return div;
  }

  _renderOverlayButton() {
    let button = this._window.document.createElement("button");
    let tooltipStringId = this._tourType === "new" ?
      "onboarding.overlay-icon-tooltip" : "onboarding.overlay-icon-tooltip-updated";
    let tooltip = this._bundle.formatStringFromName(tooltipStringId, [BRAND_SHORT_NAME], 1);
    button.setAttribute("aria-label", tooltip);
    button.id = "onboarding-overlay-button";
    button.setAttribute("aria-haspopup", true);
    button.setAttribute("aria-controls", `${ONBOARDING_DIALOG_ID}`);
    let img = this._window.document.createElement("img");
    img.id = "onboarding-overlay-button-icon";
    img.setAttribute("role", "presentation");
    img.src = "resource://onboarding/img/overlay-icon.svg";
    button.appendChild(img);
    return button;
  }

  _loadTours(tours) {
    let itemsFrag = this._window.document.createDocumentFragment();
    let pagesFrag = this._window.document.createDocumentFragment();
    for (let tour of tours) {
      // Create tour navigation items dynamically
      let li = this._window.document.createElement("li");
      // List item should have no semantics. It is just a container for an
      // actual tab.
      li.setAttribute("role", "presentation");
      li.className = "onboarding-tour-item-container";
      // Focusable but not tabbable.
      li.tabIndex = -1;

      let tab = this._window.document.createElement("span");
      tab.id = tour.id;
      tab.textContent = this._bundle.GetStringFromName(tour.tourNameId);
      tab.className = "onboarding-tour-item";
      tab.tabIndex = 0;
      tab.setAttribute("role", "tab");

      let tourPanelId = `${tour.id}-page`;
      tab.setAttribute("aria-controls", tourPanelId);

      li.appendChild(tab);
      itemsFrag.appendChild(li);
      // Dynamically create tour pages
      let div = tour.getPage(this._window, this._bundle);

      // Do a traverse for elements in the page that need to be localized.
      let l10nElements = div.querySelectorAll("[data-l10n-id]");
      for (let i = 0; i < l10nElements.length; i++) {
        let element = l10nElements[i];
        // We always put brand short name as the first argument for it's the
        // only and frequently used arguments in our l10n case. Rewrite it if
        // other arguments appears.
        element.textContent = this._bundle.formatStringFromName(
                                element.dataset.l10nId, [BRAND_SHORT_NAME], 1);
      }

      div.id = tourPanelId;
      div.classList.add("onboarding-tour-page");
      div.setAttribute("role", "tabpanel");
      div.setAttribute("aria-labelledby", tour.id);
      div.style.display = "none";
      pagesFrag.appendChild(div);
      // Cache elements in arrays for later use to avoid cost of querying elements
      this._tourItems.push(tab);
      this._tourPages.push(div);

      this.markTourCompletionState(tour.id);
    }

    let ul = this._window.document.getElementById("onboarding-tour-list");
    ul.appendChild(itemsFrag);
    let footer = this._window.document.getElementById("onboarding-footer");
    this._dialog.insertBefore(pagesFrag, footer);
  }

  _loadCSS() {
    // Returning a Promise so we can inform caller of loading complete
    // by resolving it.
    return new Promise(resolve => {
      let doc = this._window.document;
      let link = doc.createElement("link");
      link.rel = "stylesheet";
      link.type = "text/css";
      link.href = ONBOARDING_CSS_URL;
      link.addEventListener("load", resolve);
      doc.head.appendChild(link);
    });
  }

  _loadJS(uri) {
    let doc = this._window.document;
    let script = doc.createElement("script");
    script.type = "text/javascript";
    script.src = uri;
    doc.head.appendChild(script);
  }
}

// Load onboarding module only when we enable it.
if (Services.prefs.getBoolPref("browser.onboarding.enabled", false) &&
    !Services.prefs.getBoolPref("browser.onboarding.hidden", false)) {

  addEventListener("load", function onLoad(evt) {
    if (!content || evt.target != content.document) {
      return;
    }
    removeEventListener("load", onLoad);

    let window = evt.target.defaultView;
    let location = window.location.href;
    if (location == ABOUT_NEWTAB_URL || location == ABOUT_HOME_URL) {
      // We just want to run tests as quick as possible
      // so in the automation test, we don't do `requestIdleCallback`.
      if (Cu.isInAutomation) {
        new Onboarding(window);
        return;
      }
      window.requestIdleCallback(() => {
        new Onboarding(window);
      });
    }
  }, true);
}
PK
!<
{//(en-US/locale/en-US/onboarding.properties# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this
# file, You can obtain one at http://mozilla.org/MPL/2.0/.
# LOCALIZATION NOTE(onboarding.overlay-title2): This string will be used in the overlay title.
onboarding.overlay-title2=Let’s get started
onboarding.hidden-checkbox-label-text=Mark all as complete, and hide the tour
#LOCALIZATION NOTE(onboarding.button.learnMore): this string is used as a button label, displayed near the message, and shared across all the onboarding notifications.
onboarding.button.learnMore=Learn More
# LOCALIZATION NOTE(onboarding.notification-icon-tool-tip): This string will be used to show the tooltip alongside the notification icon in the notification bar. %S is brandShortName.
onboarding.notification-icon-tool-tip=New to %S?
# LOCALIZATION NOTE(onboarding.overlay-icon-tooltip): This string will be used to show the tooltip alongside the notification icon in the overlay tour. %S is brandShortName.
onboarding.overlay-icon-tooltip=New to %S? Let’s get started.
# LOCALIZATION NOTE(onboarding.overlay-icon-tooltip-updated): %S is brandShortName.
onboarding.overlay-icon-tooltip-updated=%S is all new. See what you can do!
# LOCALIZATION NOTE(onboarding.overlay-close-button-tooltip): The overlay close button is an icon button. This tooltip would be shown when mousing hovering on the button.
onboarding.overlay-close-button-tooltip=Close
onboarding.notification-icon-tooltip-updated=See what’s new!
# LOCALIZATION NOTE(onboarding.notification-close-button-tooltip): The notification close button is an icon button. This tooltip would be shown when mousing hovering on the button.
onboarding.notification-close-button-tooltip=Dismiss

onboarding.tour-search2=Search
onboarding.tour-search.title2=Find it faster.
# LOCALIZATION NOTE (onboarding.tour-search.description2): If Amazon is not part
# of the default searchplugins for your locale, you can replace it with another
# ecommerce website (if you're shipping one), but not with a general purpose
# search engine (Google, Bing, Yandex, etc.). Alternatively, only reference
# Wikipedia and drop Amazon from the text.
onboarding.tour-search.description2=Having a default search engine doesn’t mean it’s the only one you can use. Choose a search engine or a site, like Amazon or Wikipedia, right from the search box.
onboarding.tour-search.button=Open One-Click Search
onboarding.notification.onboarding-tour-search.title=Find it faster.
onboarding.notification.onboarding-tour-search.message=Access all of your favorite search engines with a click. Search the whole Web or just one website right from the search box.

onboarding.tour-private-browsing=Private Browsing
onboarding.tour-private-browsing.title2=Browse by yourself.
# LOCALIZATION NOTE(onboarding.tour-private-browsing.description3): This string will be used in the private-browsing tour description. %S is brandShortName.
onboarding.tour-private-browsing.description3=Want to keep something to yourself? Use Private Browsing with Tracking Protection. %S will block online trackers while you browse and won’t remember your history after you’ve ended your session.
onboarding.tour-private-browsing.button=Show Private Browsing in Menu
onboarding.notification.onboarding-tour-private-browsing.title=Browse by yourself.
onboarding.notification.onboarding-tour-private-browsing.message2=Want to keep something to yourself? Use Private Browsing with Tracking Protection.

onboarding.tour-addons=Add-ons
onboarding.tour-addons.title2=Get more done.
# LOCALIZATION NOTE(onboarding.tour-addons.description2): This string will be used in the add-on tour description. %S is brandShortName
onboarding.tour-addons.description2=Add-ons let you add features to %S, so your browser works harder for you. Compare prices, check the weather or express your personality with a custom theme.
onboarding.tour-addons.button=Show Add-ons in Menu
onboarding.notification.onboarding-tour-addons.title=Get more done.
# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-addons.message): This string will be used in the notification message for the add-ons tour. %S is brandShortName.
onboarding.notification.onboarding-tour-addons.message=Add-ons are small apps you can add to %S that do lots of things — from managing to-do lists, to downloading videos, to changing the look of your browser.

onboarding.tour-customize=Customize
onboarding.tour-customize.title2=Rearrange your toolbar.
# LOCALIZATION NOTE(onboarding.tour-customize.description2): This string will be used in the customize tour description. %S is brandShortName
onboarding.tour-customize.description2=Put the tools you use most right at your fingertips. Drag, drop, and reorder %S’s toolbar and menu to fit your needs. Or choose a compact theme to make more room for tabbed browsing.
onboarding.tour-customize.button=Show Customize in Menu
onboarding.notification.onboarding-tour-customize.title=Rearrange your toolbar.
# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-customize.message): This string will be used in the notification message for Customize tour. %S is brandShortName.
onboarding.notification.onboarding-tour-customize.message=Put the tools you use most right at your fingertips. Add more options to your toolbar. Or select a theme to make %S reflect your personality.

onboarding.tour-default-browser=Default Browser
# LOCALIZATION NOTE(onboarding.tour-default-browser.title2): This string will be used in the default browser tour title. %S is brandShortName
onboarding.tour-default-browser.title2=Make %S your go-to browser.
# LOCALIZATION NOTE(onboarding.tour-default-browser.description2): This string will be used in the default browser tour description. %1$S is brandShortName
onboarding.tour-default-browser.description2=Love %1$S? Set it as your default browser. Open a link from another application, and %1$S will be there for you.
# LOCALIZATION NOTE(onboarding.tour-default-browser.button): Label for a button to open the OS default browser settings where it's not possible to set the default browser directly. (OSX, Linux, Windows 8 and higher)
onboarding.tour-default-browser.button=Open Default Browser Settings
# LOCALIZATION NOTE(onboarding.tour-default-browser.win7.button): Label for a button to directly set the default browser (Windows 7). %S is brandShortName
onboarding.tour-default-browser.win7.button=Make %S Your Default Browser
# LOCALIZATION NOTE(onboarding.tour-default-browser.is-default.message): Label displayed when Firefox is already set as default browser. followed on a new line by "tour-default-browser.is-default.2nd-message".
onboarding.tour-default-browser.is-default.message=You’ve got this!
# LOCALIZATION NOTE(onboarding.tour-default-browser.is-default.2nd-message): Label displayed when Firefox is already set as default browser. %S is brandShortName
onboarding.tour-default-browser.is-default.2nd-message=%S is already your default browser.
# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-default-browser.title): This string will be used in the notification title for the default browser tour. %S is brandShortName.
onboarding.notification.onboarding-tour-default-browser.title=Make %S your go-to browser.
# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-default-browser.message): This string will be used in the notification message for the default browser tour. %1$S is brandShortName
onboarding.notification.onboarding-tour-default-browser.message=It doesn’t take much to get the most from %1$S. Just set %1$S as your default browser and put control, customization, and protection on autopilot.

onboarding.tour-sync2=Sync
onboarding.tour-sync.title2=Pick up where you left off.
onboarding.tour-sync.description2=Sync makes it easy to access bookmarks, passwords, and even open tabs on all your devices. Sync also gives you control of the types of information you want, and don’t want, to share.
onboarding.tour-sync.logged-in.title=You’re signed in to Sync!
# LOCALIZATION NOTE(onboarding.tour-sync.logged-in.description): %1$S is brandShortName.
onboarding.tour-sync.logged-in.description=Sync works when you’re signed in to %1$S on more than one device. Have a mobile device? Install the %1$S app and sign in to get your bookmarks, history, and passwords on the go.
# LOCALIZATION NOTE(onboarding.tour-sync.form.title): This string is displayed
# as a title and followed by onboarding.tour-sync.form.description.
# Your translation should be consistent with the form displayed in
# about:accounts when signing up to Firefox Account.
onboarding.tour-sync.form.title=Create a Firefox Account
# LOCALIZATION NOTE(onboarding.tour-sync.form.description): The description
# continues after onboarding.tour-sync.form.title to create a complete sentence.
# If it's not possible for your locale, you can translate this string as
# "Continue to Firefox Sync" instead.
# Your translation should be consistent with the form displayed in
# about:accounts when signing up to Firefox Account.
onboarding.tour-sync.form.description=to continue to Firefox Sync
onboarding.tour-sync.button=Next
onboarding.tour-sync.email-input.placeholder=Email
onboarding.notification.onboarding-tour-sync.title=Pick up where you left off.
onboarding.notification.onboarding-tour-sync.message=Still sending yourself links to save or read on your phone? Do it the easy way: get Sync and have the things you save here show up on all of your devices.

onboarding.tour-library=Library
onboarding.tour-library.title=Keep it together.
# LOCALIZATION NOTE (onboarding.tour-library.description): This string will be used in the library tour description. %1$S is brandShortName
onboarding.tour-library.description=Check out the new %1$S library in the redesigned toolbar. The library puts the things you’ve seen and saved to %1$S - your browsing history, bookmarks, Pocket lists, and synced tabs - in one convenient place.
onboarding.tour-library.button=Show Library in Menu
onboarding.notification.onboarding-tour-library.title=Keep it together.
# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-library.message): This string will be used in the notification message for the library tour. %S is brandShortName
onboarding.notification.onboarding-tour-library.message=The new %S library puts the great things you’ve discovered on the web in one convenient place.

onboarding.tour-singlesearch=Address Bar
onboarding.tour-singlesearch.title=Find it faster.
# LOCALIZATION NOTE(onboarding.tour-singlesearch.description): %S is brandShortName
onboarding.tour-singlesearch.description=The address bar might be the most powerful tool in the sleek new %S toolbar. Start typing, and see suggestions based on your browsing and search history. Go to a web address, search the whole web with your default search engine, or send your query directly to a single site with one-click search.
onboarding.tour-singlesearch.button=Show Address Bar
onboarding.notification.onboarding-tour-singlesearch.title=Find it faster.
onboarding.notification.onboarding-tour-singlesearch.message=The unified address bar is the only tool you need to find your way around the web.

onboarding.tour-performance=Performance
onboarding.tour-performance.title=Browse with the best of ‘em.
# LOCALIZATION NOTE(onboarding.tour-performance.description): %1$S is brandShortName.
onboarding.tour-performance.description=It’s a whole new %1$S, built for faster page loading, smoother scrolling, and more responsive tab switching. These performance upgrades come paired with a modern, intuitive design. Start browsing and experience it for yourself: the best %1$S yet.
onboarding.notification.onboarding-tour-performance.title=Browse with the best of ‘em.
# LOCALIZATION NOTE(onboarding.notification.onboarding-tour-performance.message): %S is brandShortName.
onboarding.notification.onboarding-tour-performance.message=Prepare yourself for the fastest, smoothest, most reliable %S yet.
PK
!<&&install.rdf<?xml version="1.0" encoding="UTF-8"?>
<!--  This Source Code Form is subject to the terms of the Mozilla Public
   -  License, v. 2.0. If a copy of the MPL was not distributed with this
   -  file, You can obtain one at http://mozilla.org/MPL/2.0/. -->


<RDF xmlns="http://www.w3.org/1999/02/22-rdf-syntax-ns#"
     xmlns:em="http://www.mozilla.org/2004/em-rdf#">
  <Description about="urn:mozilla:install-manifest">
    <em:id>onboarding@mozilla.org</em:id>
    <em:name>Photon onboarding</em:name>
    <em:description>Photon onboarding</em:description>
    <em:version>0.1</em:version>
    <em:bootstrap>true</em:bootstrap>
    <em:type>2</em:type>
    <em:multiprocessCompatible>true</em:multiprocessCompatible>

    <em:targetApplication>
      <Description>
        <em:id>{ec8030f7-c20a-464f-9b0e-13a3a9e97384}</em:id> <!--Firefox-->
        <em:minVersion>56.0</em:minVersion>
        <em:maxVersion>56.*</em:maxVersion>
      </Description>
    </em:targetApplication>
    <em:strictCompatibility>false</em:strictCompatibility>
  </Description>
</RDF>
PK%%

Anon7 - 2022
AnonSec Team