diff --git a/.eslintrc.js b/.eslintrc.js index 2f9a4167ae51..a5928a3638f2 100644 --- a/.eslintrc.js +++ b/.eslintrc.js @@ -1,8 +1,8 @@ module.exports = { - extends: ['expensify', 'plugin:storybook/recommended', 'plugin:react-hooks/recommended', 'prettier'], - plugins: ['react-hooks'], + extends: ['expensify', 'plugin:storybook/recommended', 'plugin:react-hooks/recommended', 'prettier', 'plugin:react-native-a11y/basic'], + plugins: ['react-hooks', 'react-native-a11y'], parser: 'babel-eslint', - ignorePatterns: ['!.*', 'src/vendor', '.github/actions/**/index.js', 'desktop/dist/*.js', 'dist/*.js', 'node_modules/.bin/**', '.git/**'], + ignorePatterns: ['!.*', 'src/vendor', '.github/actions/**/index.js', 'desktop/dist/*.js', 'dist/*.js', 'node_modules/.bin/**', 'node_modules/.cache/**', '.git/**'], env: { jest: true, }, @@ -23,21 +23,23 @@ module.exports = { paths: [ { name: 'react-native', - importNames: ['useWindowDimensions'], - message: 'Please use useWindowDimensions from src/hooks/useWindowDimensions instead', - }, - { - name: 'react-native', - importNames: ['TouchableOpacity', 'TouchableWithoutFeedback', 'TouchableNativeFeedback', 'TouchableHighlight'], - message: 'Please use PressableWithFeedback and/or PressableWithoutFeedback from src/components/Pressable instead', - }, - { - name: 'react-native', - importNames: ['StatusBar'], - message: 'Please use StatusBar from src/libs/StatusBar instead', + importNames: ['useWindowDimensions', 'StatusBar', 'TouchableOpacity', 'TouchableWithoutFeedback', 'TouchableNativeFeedback', 'TouchableHighlight', 'Pressable'], + message: [ + '', + "For 'useWindowDimensions', please use 'src/hooks/useWindowDimensions' instead.", + "For 'TouchableOpacity', 'TouchableWithoutFeedback', 'TouchableNativeFeedback', 'TouchableHighlight', 'Pressable', please use 'PressableWithFeedback' and/or 'PressableWithoutFeedback' from 'src/components/Pressable' instead.", + "For 'StatusBar', please use 'src/libs/StatusBar' instead.", + ].join('\n'), }, ], }, ], + 'react-native-a11y/has-accessibility-hint': ['off'], + 'react-native-a11y/has-valid-accessibility-descriptors': [ + 'error', + { + touchables: ['PressableWithoutFeedback', 'PressableWithFeedback'], + }, + ], }, }; diff --git a/.github/PULL_REQUEST_TEMPLATE.md b/.github/PULL_REQUEST_TEMPLATE.md index 491784caa693..f118601cbedb 100644 --- a/.github/PULL_REQUEST_TEMPLATE.md +++ b/.github/PULL_REQUEST_TEMPLATE.md @@ -5,21 +5,21 @@ ### Fixed Issues -$ GH_LINK -PROPOSAL: GH_LINK_ISSUE(COMMENT) +$ +PROPOSAL: ### Tests @@ -100,6 +100,7 @@ This is a checklist for PR authors. Please make sure to complete all tasks and c - [ ] The file is named correctly - [ ] The component has a clear name that is non-ambiguous and the purpose of the component can be inferred from the name alone - [ ] The only data being stored in the state is data necessary for rendering and nothing else + - [ ] If we are not using the full Onyx data that we loaded, I've added the proper selector in order to ensure the component only re-renders when the data it is using changes - [ ] For Class Components, any internal methods passed to components event handlers are bound to `this` properly so there are no scoping issues (i.e. for `onClick={this.submit}` the method `this.submit` should be bound to `this` in the constructor) - [ ] Any internal methods bound to `this` are necessary to be bound (i.e. avoid `this.submit = this.submit.bind(this);` if `this.submit` is never passed to a component event handler like `onClick`) - [ ] All JSX used for rendering exists in the render method diff --git a/.github/actions/javascript/authorChecklist/index.js b/.github/actions/javascript/authorChecklist/index.js index 7f9b05a286c3..4276ea0ba6fc 100644 --- a/.github/actions/javascript/authorChecklist/index.js +++ b/.github/actions/javascript/authorChecklist/index.js @@ -139,11 +139,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/actions/javascript/awaitStagingDeploys/index.js b/.github/actions/javascript/awaitStagingDeploys/index.js index 4ea17b8b29e5..bc8510ba5bc6 100644 --- a/.github/actions/javascript/awaitStagingDeploys/index.js +++ b/.github/actions/javascript/awaitStagingDeploys/index.js @@ -177,11 +177,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/actions/javascript/bumpVersion/bumpVersion.js b/.github/actions/javascript/bumpVersion/bumpVersion.js index 2790d815a0a0..647c295fdc52 100644 --- a/.github/actions/javascript/bumpVersion/bumpVersion.js +++ b/.github/actions/javascript/bumpVersion/bumpVersion.js @@ -42,8 +42,8 @@ function updateNativeVersions(version) { let semanticVersionLevel = core.getInput('SEMVER_LEVEL', {require: true}); if (!semanticVersionLevel || !_.contains(versionUpdater.SEMANTIC_VERSION_LEVELS, semanticVersionLevel)) { - console.log(`Invalid input for 'SEMVER_LEVEL': ${semanticVersionLevel}`, `Defaulting to: ${versionUpdater.SEMANTIC_VERSION_LEVELS.BUILD}`); semanticVersionLevel = versionUpdater.SEMANTIC_VERSION_LEVELS.BUILD; + console.log(`Invalid input for 'SEMVER_LEVEL': ${semanticVersionLevel}`, `Defaulting to: ${semanticVersionLevel}`); } const {version: previousVersion} = JSON.parse(fs.readFileSync('./package.json')); diff --git a/.github/actions/javascript/bumpVersion/index.js b/.github/actions/javascript/bumpVersion/index.js index 139a56077747..9f1b86738b79 100644 --- a/.github/actions/javascript/bumpVersion/index.js +++ b/.github/actions/javascript/bumpVersion/index.js @@ -52,8 +52,8 @@ function updateNativeVersions(version) { let semanticVersionLevel = core.getInput('SEMVER_LEVEL', {require: true}); if (!semanticVersionLevel || !_.contains(versionUpdater.SEMANTIC_VERSION_LEVELS, semanticVersionLevel)) { - console.log(`Invalid input for 'SEMVER_LEVEL': ${semanticVersionLevel}`, `Defaulting to: ${versionUpdater.SEMANTIC_VERSION_LEVELS.BUILD}`); semanticVersionLevel = versionUpdater.SEMANTIC_VERSION_LEVELS.BUILD; + console.log(`Invalid input for 'SEMVER_LEVEL': ${semanticVersionLevel}`, `Defaulting to: ${semanticVersionLevel}`); } const {version: previousVersion} = JSON.parse(fs.readFileSync('./package.json')); @@ -272,6 +272,41 @@ const incrementVersion = (version, level) => { return incrementPatch(major, minor, patch); }; +/** + * @param {String} currentVersion + * @param {String} level + * @returns {String} + */ +function getPreviousVersion(currentVersion, level) { + const [major, minor, patch, build] = getVersionNumberFromString(currentVersion); + + if (level === SEMANTIC_VERSION_LEVELS.MAJOR) { + if (major === 1) { + return getVersionStringFromNumber(1, 0, 0, 0); + } + return getVersionStringFromNumber(major - 1, 0, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.MINOR) { + if (minor === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.MAJOR); + } + return getVersionStringFromNumber(major, minor - 1, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.PATCH) { + if (patch === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.MINOR); + } + return getVersionStringFromNumber(major, minor, patch - 1, 0); + } + + if (build === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.PATCH); + } + return getVersionStringFromNumber(major, minor, patch, build - 1); +} + module.exports = { getVersionNumberFromString, getVersionStringFromNumber, @@ -282,6 +317,7 @@ module.exports = { SEMANTIC_VERSION_LEVELS, incrementMinor, incrementPatch, + getPreviousVersion, }; diff --git a/.github/actions/javascript/checkDeployBlockers/index.js b/.github/actions/javascript/checkDeployBlockers/index.js index 8b8a401ba592..ca368f0cff29 100644 --- a/.github/actions/javascript/checkDeployBlockers/index.js +++ b/.github/actions/javascript/checkDeployBlockers/index.js @@ -144,11 +144,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/actions/javascript/createOrUpdateStagingDeploy/index.js b/.github/actions/javascript/createOrUpdateStagingDeploy/index.js index 5fcd41200f47..1b2e81fc244e 100644 --- a/.github/actions/javascript/createOrUpdateStagingDeploy/index.js +++ b/.github/actions/javascript/createOrUpdateStagingDeploy/index.js @@ -216,29 +216,30 @@ const _ = __nccwpck_require__(3571); const {spawn, execSync} = __nccwpck_require__(3129); const CONST = __nccwpck_require__(4097); const sanitizeStringForJSONParse = __nccwpck_require__(9338); +const {getPreviousVersion, SEMANTIC_VERSION_LEVELS} = __nccwpck_require__(8007); /** * @param {String} tag */ -// eslint-disable-next-line no-unused-vars -function fetchTagIfNeeded(tag) { +function fetchTag(tag) { + const previousPatchVersion = getPreviousVersion(tag, SEMANTIC_VERSION_LEVELS.PATCH); try { - console.log(`Checking if tag ${tag} exists locally`); - const command = `git rev-parse --verify ${tag}`; - console.log(`Running command: ${command}`); - const result = execSync(command).toString(); - console.log(result); - } catch (e) { - console.log(`Tag ${tag} not found locally, attempting to fetch it.`); let command = `git fetch origin tag ${tag} --no-tags`; + + // Exclude commits reachable from the previous patch version (i.e: previous checklist), + // so that we don't have to fetch the full history + // Note that this condition would only ever _not_ be true in the 1.0.0-0 edge case + if (previousPatchVersion !== tag) { + command += ` --shallow-exclude=${previousPatchVersion}`; + } + console.log(`Running command: ${command}`); - let result = execSync(command).toString(); - console.log(result); - console.log('Verifying that the tag is now available...'); - command = `git rev-parse --verify ${tag}`; + execSync(command); + } catch (e) { + // This can happen if the tag was only created locally but does not exist in the remote. In this case, we'll fetch history of the staging branch instead + const command = `git fetch origin staging --no-tags --shallow-exclude=${previousPatchVersion}`; console.log(`Running command: ${command}`); - result = execSync(command).toString(); - console.log(result); + execSync(command); } } @@ -250,10 +251,8 @@ function fetchTagIfNeeded(tag) { * @returns {Promise>>} */ function getCommitHistoryAsJSON(fromTag, toTag) { - // fetchTagIfNeeded(fromTag); - // fetchTagIfNeeded(toTag); - // Note: this is a temporary measure until we can figure out a faster way to fetch only what's needed - execSync('git fetch --all --tags'); + fetchTag(fromTag); + fetchTag(toTag); console.log('Getting pull requests merged between the following tags:', fromTag, toTag); return new Promise((resolve, reject) => { @@ -386,11 +385,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } @@ -904,6 +904,154 @@ module.exports = function (inputString) { }; +/***/ }), + +/***/ 8007: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const _ = __nccwpck_require__(3571); + +const SEMANTIC_VERSION_LEVELS = { + MAJOR: 'MAJOR', + MINOR: 'MINOR', + PATCH: 'PATCH', + BUILD: 'BUILD', +}; +const MAX_INCREMENTS = 99; + +/** + * Transforms a versions string into a number + * + * @param {String} versionString + * @returns {Array} + */ +const getVersionNumberFromString = (versionString) => { + const [version, build] = versionString.split('-'); + const [major, minor, patch] = _.map(version.split('.'), (n) => Number(n)); + + return [major, minor, patch, Number.isInteger(Number(build)) ? Number(build) : 0]; +}; + +/** + * Transforms version numbers components into a version string + * + * @param {Number} major + * @param {Number} minor + * @param {Number} patch + * @param {Number} [build] + * @returns {String} + */ +const getVersionStringFromNumber = (major, minor, patch, build = 0) => `${major}.${minor}.${patch}-${build}`; + +/** + * Increments a minor version + * + * @param {Number} major + * @param {Number} minor + * @returns {String} + */ +const incrementMinor = (major, minor) => { + if (minor < MAX_INCREMENTS) { + return getVersionStringFromNumber(major, minor + 1, 0, 0); + } + + return getVersionStringFromNumber(major + 1, 0, 0, 0); +}; + +/** + * Increments a Patch version + * + * @param {Number} major + * @param {Number} minor + * @param {Number} patch + * @returns {String} + */ +const incrementPatch = (major, minor, patch) => { + if (patch < MAX_INCREMENTS) { + return getVersionStringFromNumber(major, minor, patch + 1, 0); + } + return incrementMinor(major, minor); +}; + +/** + * Increments a build version + * + * @param {Number} version + * @param {Number} level + * @returns {String} + */ +const incrementVersion = (version, level) => { + const [major, minor, patch, build] = getVersionNumberFromString(version); + + // Majors will always be incremented + if (level === SEMANTIC_VERSION_LEVELS.MAJOR) { + return getVersionStringFromNumber(major + 1, 0, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.MINOR) { + return incrementMinor(major, minor); + } + + if (level === SEMANTIC_VERSION_LEVELS.PATCH) { + return incrementPatch(major, minor, patch); + } + + if (build < MAX_INCREMENTS) { + return getVersionStringFromNumber(major, minor, patch, build + 1); + } + + return incrementPatch(major, minor, patch); +}; + +/** + * @param {String} currentVersion + * @param {String} level + * @returns {String} + */ +function getPreviousVersion(currentVersion, level) { + const [major, minor, patch, build] = getVersionNumberFromString(currentVersion); + + if (level === SEMANTIC_VERSION_LEVELS.MAJOR) { + if (major === 1) { + return getVersionStringFromNumber(1, 0, 0, 0); + } + return getVersionStringFromNumber(major - 1, 0, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.MINOR) { + if (minor === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.MAJOR); + } + return getVersionStringFromNumber(major, minor - 1, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.PATCH) { + if (patch === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.MINOR); + } + return getVersionStringFromNumber(major, minor, patch - 1, 0); + } + + if (build === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.PATCH); + } + return getVersionStringFromNumber(major, minor, patch, build - 1); +} + +module.exports = { + getVersionNumberFromString, + getVersionStringFromNumber, + incrementVersion, + + // For tests + MAX_INCREMENTS, + SEMANTIC_VERSION_LEVELS, + incrementMinor, + incrementPatch, + getPreviousVersion, +}; + + /***/ }), /***/ 7351: diff --git a/.github/actions/javascript/getDeployPullRequestList/index.js b/.github/actions/javascript/getDeployPullRequestList/index.js index 2d3b51f58f2e..56541aa31b27 100644 --- a/.github/actions/javascript/getDeployPullRequestList/index.js +++ b/.github/actions/javascript/getDeployPullRequestList/index.js @@ -150,29 +150,30 @@ const _ = __nccwpck_require__(3571); const {spawn, execSync} = __nccwpck_require__(3129); const CONST = __nccwpck_require__(4097); const sanitizeStringForJSONParse = __nccwpck_require__(9338); +const {getPreviousVersion, SEMANTIC_VERSION_LEVELS} = __nccwpck_require__(8007); /** * @param {String} tag */ -// eslint-disable-next-line no-unused-vars -function fetchTagIfNeeded(tag) { +function fetchTag(tag) { + const previousPatchVersion = getPreviousVersion(tag, SEMANTIC_VERSION_LEVELS.PATCH); try { - console.log(`Checking if tag ${tag} exists locally`); - const command = `git rev-parse --verify ${tag}`; - console.log(`Running command: ${command}`); - const result = execSync(command).toString(); - console.log(result); - } catch (e) { - console.log(`Tag ${tag} not found locally, attempting to fetch it.`); let command = `git fetch origin tag ${tag} --no-tags`; + + // Exclude commits reachable from the previous patch version (i.e: previous checklist), + // so that we don't have to fetch the full history + // Note that this condition would only ever _not_ be true in the 1.0.0-0 edge case + if (previousPatchVersion !== tag) { + command += ` --shallow-exclude=${previousPatchVersion}`; + } + console.log(`Running command: ${command}`); - let result = execSync(command).toString(); - console.log(result); - console.log('Verifying that the tag is now available...'); - command = `git rev-parse --verify ${tag}`; + execSync(command); + } catch (e) { + // This can happen if the tag was only created locally but does not exist in the remote. In this case, we'll fetch history of the staging branch instead + const command = `git fetch origin staging --no-tags --shallow-exclude=${previousPatchVersion}`; console.log(`Running command: ${command}`); - result = execSync(command).toString(); - console.log(result); + execSync(command); } } @@ -184,10 +185,8 @@ function fetchTagIfNeeded(tag) { * @returns {Promise>>} */ function getCommitHistoryAsJSON(fromTag, toTag) { - // fetchTagIfNeeded(fromTag); - // fetchTagIfNeeded(toTag); - // Note: this is a temporary measure until we can figure out a faster way to fetch only what's needed - execSync('git fetch --all --tags'); + fetchTag(fromTag); + fetchTag(toTag); console.log('Getting pull requests merged between the following tags:', fromTag, toTag); return new Promise((resolve, reject) => { @@ -320,11 +319,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } @@ -838,6 +838,154 @@ module.exports = function (inputString) { }; +/***/ }), + +/***/ 8007: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const _ = __nccwpck_require__(3571); + +const SEMANTIC_VERSION_LEVELS = { + MAJOR: 'MAJOR', + MINOR: 'MINOR', + PATCH: 'PATCH', + BUILD: 'BUILD', +}; +const MAX_INCREMENTS = 99; + +/** + * Transforms a versions string into a number + * + * @param {String} versionString + * @returns {Array} + */ +const getVersionNumberFromString = (versionString) => { + const [version, build] = versionString.split('-'); + const [major, minor, patch] = _.map(version.split('.'), (n) => Number(n)); + + return [major, minor, patch, Number.isInteger(Number(build)) ? Number(build) : 0]; +}; + +/** + * Transforms version numbers components into a version string + * + * @param {Number} major + * @param {Number} minor + * @param {Number} patch + * @param {Number} [build] + * @returns {String} + */ +const getVersionStringFromNumber = (major, minor, patch, build = 0) => `${major}.${minor}.${patch}-${build}`; + +/** + * Increments a minor version + * + * @param {Number} major + * @param {Number} minor + * @returns {String} + */ +const incrementMinor = (major, minor) => { + if (minor < MAX_INCREMENTS) { + return getVersionStringFromNumber(major, minor + 1, 0, 0); + } + + return getVersionStringFromNumber(major + 1, 0, 0, 0); +}; + +/** + * Increments a Patch version + * + * @param {Number} major + * @param {Number} minor + * @param {Number} patch + * @returns {String} + */ +const incrementPatch = (major, minor, patch) => { + if (patch < MAX_INCREMENTS) { + return getVersionStringFromNumber(major, minor, patch + 1, 0); + } + return incrementMinor(major, minor); +}; + +/** + * Increments a build version + * + * @param {Number} version + * @param {Number} level + * @returns {String} + */ +const incrementVersion = (version, level) => { + const [major, minor, patch, build] = getVersionNumberFromString(version); + + // Majors will always be incremented + if (level === SEMANTIC_VERSION_LEVELS.MAJOR) { + return getVersionStringFromNumber(major + 1, 0, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.MINOR) { + return incrementMinor(major, minor); + } + + if (level === SEMANTIC_VERSION_LEVELS.PATCH) { + return incrementPatch(major, minor, patch); + } + + if (build < MAX_INCREMENTS) { + return getVersionStringFromNumber(major, minor, patch, build + 1); + } + + return incrementPatch(major, minor, patch); +}; + +/** + * @param {String} currentVersion + * @param {String} level + * @returns {String} + */ +function getPreviousVersion(currentVersion, level) { + const [major, minor, patch, build] = getVersionNumberFromString(currentVersion); + + if (level === SEMANTIC_VERSION_LEVELS.MAJOR) { + if (major === 1) { + return getVersionStringFromNumber(1, 0, 0, 0); + } + return getVersionStringFromNumber(major - 1, 0, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.MINOR) { + if (minor === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.MAJOR); + } + return getVersionStringFromNumber(major, minor - 1, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.PATCH) { + if (patch === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.MINOR); + } + return getVersionStringFromNumber(major, minor, patch - 1, 0); + } + + if (build === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.PATCH); + } + return getVersionStringFromNumber(major, minor, patch, build - 1); +} + +module.exports = { + getVersionNumberFromString, + getVersionStringFromNumber, + incrementVersion, + + // For tests + MAX_INCREMENTS, + SEMANTIC_VERSION_LEVELS, + incrementMinor, + incrementPatch, + getPreviousVersion, +}; + + /***/ }), /***/ 7351: diff --git a/.github/actions/javascript/getPreviousVersion/action.yml b/.github/actions/javascript/getPreviousVersion/action.yml new file mode 100644 index 000000000000..6b2221af7c40 --- /dev/null +++ b/.github/actions/javascript/getPreviousVersion/action.yml @@ -0,0 +1,12 @@ +name: 'Get previous npm version' +description: 'Get the previous app version.' +inputs: + SEMVER_LEVEL: + description: Semantic Versioning Level + required: true +outputs: + PREVIOUS_VERSION: + description: The previous semver version of the application, according to the SEMVER_LEVEL provided +runs: + using: 'node16' + main: './index.js' diff --git a/.github/actions/javascript/getPreviousVersion/getPreviousVersion.js b/.github/actions/javascript/getPreviousVersion/getPreviousVersion.js new file mode 100644 index 000000000000..aaff0d0a6027 --- /dev/null +++ b/.github/actions/javascript/getPreviousVersion/getPreviousVersion.js @@ -0,0 +1,13 @@ +const {readFileSync} = require('fs'); +const core = require('@actions/core'); +const _ = require('underscore'); +const versionUpdater = require('../../../libs/versionUpdater'); + +const semverLevel = core.getInput('SEMVER_LEVEL', {require: true}); +if (!semverLevel || !_.contains(versionUpdater.SEMANTIC_VERSION_LEVELS, semverLevel)) { + core.setFailed(`'Error: Invalid input for 'SEMVER_LEVEL': ${semverLevel}`); +} + +const {version: currentVersion} = JSON.parse(readFileSync('./package.json')); +const previousVersion = versionUpdater.getPreviousVersion(currentVersion, semverLevel); +core.setOutput('PREVIOUS_VERSION', previousVersion); diff --git a/.github/actions/javascript/getPreviousVersion/index.js b/.github/actions/javascript/getPreviousVersion/index.js new file mode 100644 index 000000000000..5498aa3996d7 --- /dev/null +++ b/.github/actions/javascript/getPreviousVersion/index.js @@ -0,0 +1,4924 @@ +/** + * NOTE: This is a compiled file. DO NOT directly edit this file. + */ +module.exports = +/******/ (() => { // webpackBootstrap +/******/ var __webpack_modules__ = ({ + +/***/ 509: +/***/ ((__unused_webpack_module, __unused_webpack_exports, __nccwpck_require__) => { + +const {readFileSync} = __nccwpck_require__(747); +const core = __nccwpck_require__(186); +const _ = __nccwpck_require__(571); +const versionUpdater = __nccwpck_require__(7); + +const semverLevel = core.getInput('SEMVER_LEVEL', {require: true}); +if (!semverLevel || !_.contains(versionUpdater.SEMANTIC_VERSION_LEVELS, semverLevel)) { + core.setFailed(`'Error: Invalid input for 'SEMVER_LEVEL': ${semverLevel}`); +} + +const {version: currentVersion} = JSON.parse(readFileSync('./package.json')); +const previousVersion = versionUpdater.getPreviousVersion(currentVersion, semverLevel); +core.setOutput('PREVIOUS_VERSION', previousVersion); + + +/***/ }), + +/***/ 7: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +const _ = __nccwpck_require__(571); + +const SEMANTIC_VERSION_LEVELS = { + MAJOR: 'MAJOR', + MINOR: 'MINOR', + PATCH: 'PATCH', + BUILD: 'BUILD', +}; +const MAX_INCREMENTS = 99; + +/** + * Transforms a versions string into a number + * + * @param {String} versionString + * @returns {Array} + */ +const getVersionNumberFromString = (versionString) => { + const [version, build] = versionString.split('-'); + const [major, minor, patch] = _.map(version.split('.'), (n) => Number(n)); + + return [major, minor, patch, Number.isInteger(Number(build)) ? Number(build) : 0]; +}; + +/** + * Transforms version numbers components into a version string + * + * @param {Number} major + * @param {Number} minor + * @param {Number} patch + * @param {Number} [build] + * @returns {String} + */ +const getVersionStringFromNumber = (major, minor, patch, build = 0) => `${major}.${minor}.${patch}-${build}`; + +/** + * Increments a minor version + * + * @param {Number} major + * @param {Number} minor + * @returns {String} + */ +const incrementMinor = (major, minor) => { + if (minor < MAX_INCREMENTS) { + return getVersionStringFromNumber(major, minor + 1, 0, 0); + } + + return getVersionStringFromNumber(major + 1, 0, 0, 0); +}; + +/** + * Increments a Patch version + * + * @param {Number} major + * @param {Number} minor + * @param {Number} patch + * @returns {String} + */ +const incrementPatch = (major, minor, patch) => { + if (patch < MAX_INCREMENTS) { + return getVersionStringFromNumber(major, minor, patch + 1, 0); + } + return incrementMinor(major, minor); +}; + +/** + * Increments a build version + * + * @param {Number} version + * @param {Number} level + * @returns {String} + */ +const incrementVersion = (version, level) => { + const [major, minor, patch, build] = getVersionNumberFromString(version); + + // Majors will always be incremented + if (level === SEMANTIC_VERSION_LEVELS.MAJOR) { + return getVersionStringFromNumber(major + 1, 0, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.MINOR) { + return incrementMinor(major, minor); + } + + if (level === SEMANTIC_VERSION_LEVELS.PATCH) { + return incrementPatch(major, minor, patch); + } + + if (build < MAX_INCREMENTS) { + return getVersionStringFromNumber(major, minor, patch, build + 1); + } + + return incrementPatch(major, minor, patch); +}; + +/** + * @param {String} currentVersion + * @param {String} level + * @returns {String} + */ +function getPreviousVersion(currentVersion, level) { + const [major, minor, patch, build] = getVersionNumberFromString(currentVersion); + + if (level === SEMANTIC_VERSION_LEVELS.MAJOR) { + if (major === 1) { + return getVersionStringFromNumber(1, 0, 0, 0); + } + return getVersionStringFromNumber(major - 1, 0, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.MINOR) { + if (minor === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.MAJOR); + } + return getVersionStringFromNumber(major, minor - 1, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.PATCH) { + if (patch === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.MINOR); + } + return getVersionStringFromNumber(major, minor, patch - 1, 0); + } + + if (build === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.PATCH); + } + return getVersionStringFromNumber(major, minor, patch, build - 1); +} + +module.exports = { + getVersionNumberFromString, + getVersionStringFromNumber, + incrementVersion, + + // For tests + MAX_INCREMENTS, + SEMANTIC_VERSION_LEVELS, + incrementMinor, + incrementPatch, + getPreviousVersion, +}; + + +/***/ }), + +/***/ 351: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.issue = exports.issueCommand = void 0; +const os = __importStar(__nccwpck_require__(87)); +const utils_1 = __nccwpck_require__(278); +/** + * Commands + * + * Command Format: + * ::name key=value,key=value::message + * + * Examples: + * ::warning::This is the message + * ::set-env name=MY_VAR::some value + */ +function issueCommand(command, properties, message) { + const cmd = new Command(command, properties, message); + process.stdout.write(cmd.toString() + os.EOL); +} +exports.issueCommand = issueCommand; +function issue(name, message = '') { + issueCommand(name, {}, message); +} +exports.issue = issue; +const CMD_STRING = '::'; +class Command { + constructor(command, properties, message) { + if (!command) { + command = 'missing.command'; + } + this.command = command; + this.properties = properties; + this.message = message; + } + toString() { + let cmdStr = CMD_STRING + this.command; + if (this.properties && Object.keys(this.properties).length > 0) { + cmdStr += ' '; + let first = true; + for (const key in this.properties) { + if (this.properties.hasOwnProperty(key)) { + const val = this.properties[key]; + if (val) { + if (first) { + first = false; + } + else { + cmdStr += ','; + } + cmdStr += `${key}=${escapeProperty(val)}`; + } + } + } + } + cmdStr += `${CMD_STRING}${escapeData(this.message)}`; + return cmdStr; + } +} +function escapeData(s) { + return utils_1.toCommandValue(s) + .replace(/%/g, '%25') + .replace(/\r/g, '%0D') + .replace(/\n/g, '%0A'); +} +function escapeProperty(s) { + return utils_1.toCommandValue(s) + .replace(/%/g, '%25') + .replace(/\r/g, '%0D') + .replace(/\n/g, '%0A') + .replace(/:/g, '%3A') + .replace(/,/g, '%2C'); +} +//# sourceMappingURL=command.js.map + +/***/ }), + +/***/ 186: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.getIDToken = exports.getState = exports.saveState = exports.group = exports.endGroup = exports.startGroup = exports.info = exports.notice = exports.warning = exports.error = exports.debug = exports.isDebug = exports.setFailed = exports.setCommandEcho = exports.setOutput = exports.getBooleanInput = exports.getMultilineInput = exports.getInput = exports.addPath = exports.setSecret = exports.exportVariable = exports.ExitCode = void 0; +const command_1 = __nccwpck_require__(351); +const file_command_1 = __nccwpck_require__(717); +const utils_1 = __nccwpck_require__(278); +const os = __importStar(__nccwpck_require__(87)); +const path = __importStar(__nccwpck_require__(622)); +const oidc_utils_1 = __nccwpck_require__(41); +/** + * The code to exit an action + */ +var ExitCode; +(function (ExitCode) { + /** + * A code indicating that the action was successful + */ + ExitCode[ExitCode["Success"] = 0] = "Success"; + /** + * A code indicating that the action was a failure + */ + ExitCode[ExitCode["Failure"] = 1] = "Failure"; +})(ExitCode = exports.ExitCode || (exports.ExitCode = {})); +//----------------------------------------------------------------------- +// Variables +//----------------------------------------------------------------------- +/** + * Sets env variable for this action and future actions in the job + * @param name the name of the variable to set + * @param val the value of the variable. Non-string values will be converted to a string via JSON.stringify + */ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function exportVariable(name, val) { + const convertedVal = utils_1.toCommandValue(val); + process.env[name] = convertedVal; + const filePath = process.env['GITHUB_ENV'] || ''; + if (filePath) { + return file_command_1.issueFileCommand('ENV', file_command_1.prepareKeyValueMessage(name, val)); + } + command_1.issueCommand('set-env', { name }, convertedVal); +} +exports.exportVariable = exportVariable; +/** + * Registers a secret which will get masked from logs + * @param secret value of the secret + */ +function setSecret(secret) { + command_1.issueCommand('add-mask', {}, secret); +} +exports.setSecret = setSecret; +/** + * Prepends inputPath to the PATH (for this action and future actions) + * @param inputPath + */ +function addPath(inputPath) { + const filePath = process.env['GITHUB_PATH'] || ''; + if (filePath) { + file_command_1.issueFileCommand('PATH', inputPath); + } + else { + command_1.issueCommand('add-path', {}, inputPath); + } + process.env['PATH'] = `${inputPath}${path.delimiter}${process.env['PATH']}`; +} +exports.addPath = addPath; +/** + * Gets the value of an input. + * Unless trimWhitespace is set to false in InputOptions, the value is also trimmed. + * Returns an empty string if the value is not defined. + * + * @param name name of the input to get + * @param options optional. See InputOptions. + * @returns string + */ +function getInput(name, options) { + const val = process.env[`INPUT_${name.replace(/ /g, '_').toUpperCase()}`] || ''; + if (options && options.required && !val) { + throw new Error(`Input required and not supplied: ${name}`); + } + if (options && options.trimWhitespace === false) { + return val; + } + return val.trim(); +} +exports.getInput = getInput; +/** + * Gets the values of an multiline input. Each value is also trimmed. + * + * @param name name of the input to get + * @param options optional. See InputOptions. + * @returns string[] + * + */ +function getMultilineInput(name, options) { + const inputs = getInput(name, options) + .split('\n') + .filter(x => x !== ''); + if (options && options.trimWhitespace === false) { + return inputs; + } + return inputs.map(input => input.trim()); +} +exports.getMultilineInput = getMultilineInput; +/** + * Gets the input value of the boolean type in the YAML 1.2 "core schema" specification. + * Support boolean input list: `true | True | TRUE | false | False | FALSE` . + * The return value is also in boolean type. + * ref: https://yaml.org/spec/1.2/spec.html#id2804923 + * + * @param name name of the input to get + * @param options optional. See InputOptions. + * @returns boolean + */ +function getBooleanInput(name, options) { + const trueValue = ['true', 'True', 'TRUE']; + const falseValue = ['false', 'False', 'FALSE']; + const val = getInput(name, options); + if (trueValue.includes(val)) + return true; + if (falseValue.includes(val)) + return false; + throw new TypeError(`Input does not meet YAML 1.2 "Core Schema" specification: ${name}\n` + + `Support boolean input list: \`true | True | TRUE | false | False | FALSE\``); +} +exports.getBooleanInput = getBooleanInput; +/** + * Sets the value of an output. + * + * @param name name of the output to set + * @param value value to store. Non-string values will be converted to a string via JSON.stringify + */ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function setOutput(name, value) { + const filePath = process.env['GITHUB_OUTPUT'] || ''; + if (filePath) { + return file_command_1.issueFileCommand('OUTPUT', file_command_1.prepareKeyValueMessage(name, value)); + } + process.stdout.write(os.EOL); + command_1.issueCommand('set-output', { name }, utils_1.toCommandValue(value)); +} +exports.setOutput = setOutput; +/** + * Enables or disables the echoing of commands into stdout for the rest of the step. + * Echoing is disabled by default if ACTIONS_STEP_DEBUG is not set. + * + */ +function setCommandEcho(enabled) { + command_1.issue('echo', enabled ? 'on' : 'off'); +} +exports.setCommandEcho = setCommandEcho; +//----------------------------------------------------------------------- +// Results +//----------------------------------------------------------------------- +/** + * Sets the action status to failed. + * When the action exits it will be with an exit code of 1 + * @param message add error issue message + */ +function setFailed(message) { + process.exitCode = ExitCode.Failure; + error(message); +} +exports.setFailed = setFailed; +//----------------------------------------------------------------------- +// Logging Commands +//----------------------------------------------------------------------- +/** + * Gets whether Actions Step Debug is on or not + */ +function isDebug() { + return process.env['RUNNER_DEBUG'] === '1'; +} +exports.isDebug = isDebug; +/** + * Writes debug message to user log + * @param message debug message + */ +function debug(message) { + command_1.issueCommand('debug', {}, message); +} +exports.debug = debug; +/** + * Adds an error issue + * @param message error issue message. Errors will be converted to string via toString() + * @param properties optional properties to add to the annotation. + */ +function error(message, properties = {}) { + command_1.issueCommand('error', utils_1.toCommandProperties(properties), message instanceof Error ? message.toString() : message); +} +exports.error = error; +/** + * Adds a warning issue + * @param message warning issue message. Errors will be converted to string via toString() + * @param properties optional properties to add to the annotation. + */ +function warning(message, properties = {}) { + command_1.issueCommand('warning', utils_1.toCommandProperties(properties), message instanceof Error ? message.toString() : message); +} +exports.warning = warning; +/** + * Adds a notice issue + * @param message notice issue message. Errors will be converted to string via toString() + * @param properties optional properties to add to the annotation. + */ +function notice(message, properties = {}) { + command_1.issueCommand('notice', utils_1.toCommandProperties(properties), message instanceof Error ? message.toString() : message); +} +exports.notice = notice; +/** + * Writes info to log with console.log. + * @param message info message + */ +function info(message) { + process.stdout.write(message + os.EOL); +} +exports.info = info; +/** + * Begin an output group. + * + * Output until the next `groupEnd` will be foldable in this group + * + * @param name The name of the output group + */ +function startGroup(name) { + command_1.issue('group', name); +} +exports.startGroup = startGroup; +/** + * End an output group. + */ +function endGroup() { + command_1.issue('endgroup'); +} +exports.endGroup = endGroup; +/** + * Wrap an asynchronous function call in a group. + * + * Returns the same type as the function itself. + * + * @param name The name of the group + * @param fn The function to wrap in the group + */ +function group(name, fn) { + return __awaiter(this, void 0, void 0, function* () { + startGroup(name); + let result; + try { + result = yield fn(); + } + finally { + endGroup(); + } + return result; + }); +} +exports.group = group; +//----------------------------------------------------------------------- +// Wrapper action state +//----------------------------------------------------------------------- +/** + * Saves state for current action, the state can only be retrieved by this action's post job execution. + * + * @param name name of the state to store + * @param value value to store. Non-string values will be converted to a string via JSON.stringify + */ +// eslint-disable-next-line @typescript-eslint/no-explicit-any +function saveState(name, value) { + const filePath = process.env['GITHUB_STATE'] || ''; + if (filePath) { + return file_command_1.issueFileCommand('STATE', file_command_1.prepareKeyValueMessage(name, value)); + } + command_1.issueCommand('save-state', { name }, utils_1.toCommandValue(value)); +} +exports.saveState = saveState; +/** + * Gets the value of an state set by this action's main execution. + * + * @param name name of the state to get + * @returns string + */ +function getState(name) { + return process.env[`STATE_${name}`] || ''; +} +exports.getState = getState; +function getIDToken(aud) { + return __awaiter(this, void 0, void 0, function* () { + return yield oidc_utils_1.OidcClient.getIDToken(aud); + }); +} +exports.getIDToken = getIDToken; +/** + * Summary exports + */ +var summary_1 = __nccwpck_require__(327); +Object.defineProperty(exports, "summary", ({ enumerable: true, get: function () { return summary_1.summary; } })); +/** + * @deprecated use core.summary + */ +var summary_2 = __nccwpck_require__(327); +Object.defineProperty(exports, "markdownSummary", ({ enumerable: true, get: function () { return summary_2.markdownSummary; } })); +/** + * Path exports + */ +var path_utils_1 = __nccwpck_require__(981); +Object.defineProperty(exports, "toPosixPath", ({ enumerable: true, get: function () { return path_utils_1.toPosixPath; } })); +Object.defineProperty(exports, "toWin32Path", ({ enumerable: true, get: function () { return path_utils_1.toWin32Path; } })); +Object.defineProperty(exports, "toPlatformPath", ({ enumerable: true, get: function () { return path_utils_1.toPlatformPath; } })); +//# sourceMappingURL=core.js.map + +/***/ }), + +/***/ 717: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +// For internal use, subject to change. +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.prepareKeyValueMessage = exports.issueFileCommand = void 0; +// We use any as a valid input type +/* eslint-disable @typescript-eslint/no-explicit-any */ +const fs = __importStar(__nccwpck_require__(747)); +const os = __importStar(__nccwpck_require__(87)); +const uuid_1 = __nccwpck_require__(521); +const utils_1 = __nccwpck_require__(278); +function issueFileCommand(command, message) { + const filePath = process.env[`GITHUB_${command}`]; + if (!filePath) { + throw new Error(`Unable to find environment variable for file command ${command}`); + } + if (!fs.existsSync(filePath)) { + throw new Error(`Missing file at path: ${filePath}`); + } + fs.appendFileSync(filePath, `${utils_1.toCommandValue(message)}${os.EOL}`, { + encoding: 'utf8' + }); +} +exports.issueFileCommand = issueFileCommand; +function prepareKeyValueMessage(key, value) { + const delimiter = `ghadelimiter_${uuid_1.v4()}`; + const convertedValue = utils_1.toCommandValue(value); + // These should realistically never happen, but just in case someone finds a + // way to exploit uuid generation let's not allow keys or values that contain + // the delimiter. + if (key.includes(delimiter)) { + throw new Error(`Unexpected input: name should not contain the delimiter "${delimiter}"`); + } + if (convertedValue.includes(delimiter)) { + throw new Error(`Unexpected input: value should not contain the delimiter "${delimiter}"`); + } + return `${key}<<${delimiter}${os.EOL}${convertedValue}${os.EOL}${delimiter}`; +} +exports.prepareKeyValueMessage = prepareKeyValueMessage; +//# sourceMappingURL=file-command.js.map + +/***/ }), + +/***/ 41: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.OidcClient = void 0; +const http_client_1 = __nccwpck_require__(255); +const auth_1 = __nccwpck_require__(526); +const core_1 = __nccwpck_require__(186); +class OidcClient { + static createHttpClient(allowRetry = true, maxRetry = 10) { + const requestOptions = { + allowRetries: allowRetry, + maxRetries: maxRetry + }; + return new http_client_1.HttpClient('actions/oidc-client', [new auth_1.BearerCredentialHandler(OidcClient.getRequestToken())], requestOptions); + } + static getRequestToken() { + const token = process.env['ACTIONS_ID_TOKEN_REQUEST_TOKEN']; + if (!token) { + throw new Error('Unable to get ACTIONS_ID_TOKEN_REQUEST_TOKEN env variable'); + } + return token; + } + static getIDTokenUrl() { + const runtimeUrl = process.env['ACTIONS_ID_TOKEN_REQUEST_URL']; + if (!runtimeUrl) { + throw new Error('Unable to get ACTIONS_ID_TOKEN_REQUEST_URL env variable'); + } + return runtimeUrl; + } + static getCall(id_token_url) { + var _a; + return __awaiter(this, void 0, void 0, function* () { + const httpclient = OidcClient.createHttpClient(); + const res = yield httpclient + .getJson(id_token_url) + .catch(error => { + throw new Error(`Failed to get ID Token. \n + Error Code : ${error.statusCode}\n + Error Message: ${error.result.message}`); + }); + const id_token = (_a = res.result) === null || _a === void 0 ? void 0 : _a.value; + if (!id_token) { + throw new Error('Response json body do not have ID Token field'); + } + return id_token; + }); + } + static getIDToken(audience) { + return __awaiter(this, void 0, void 0, function* () { + try { + // New ID Token is requested from action service + let id_token_url = OidcClient.getIDTokenUrl(); + if (audience) { + const encodedAudience = encodeURIComponent(audience); + id_token_url = `${id_token_url}&audience=${encodedAudience}`; + } + core_1.debug(`ID token url is ${id_token_url}`); + const id_token = yield OidcClient.getCall(id_token_url); + core_1.setSecret(id_token); + return id_token; + } + catch (error) { + throw new Error(`Error message: ${error.message}`); + } + }); + } +} +exports.OidcClient = OidcClient; +//# sourceMappingURL=oidc-utils.js.map + +/***/ }), + +/***/ 981: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.toPlatformPath = exports.toWin32Path = exports.toPosixPath = void 0; +const path = __importStar(__nccwpck_require__(622)); +/** + * toPosixPath converts the given path to the posix form. On Windows, \\ will be + * replaced with /. + * + * @param pth. Path to transform. + * @return string Posix path. + */ +function toPosixPath(pth) { + return pth.replace(/[\\]/g, '/'); +} +exports.toPosixPath = toPosixPath; +/** + * toWin32Path converts the given path to the win32 form. On Linux, / will be + * replaced with \\. + * + * @param pth. Path to transform. + * @return string Win32 path. + */ +function toWin32Path(pth) { + return pth.replace(/[/]/g, '\\'); +} +exports.toWin32Path = toWin32Path; +/** + * toPlatformPath converts the given path to a platform-specific path. It does + * this by replacing instances of / and \ with the platform-specific path + * separator. + * + * @param pth The path to platformize. + * @return string The platform-specific path. + */ +function toPlatformPath(pth) { + return pth.replace(/[/\\]/g, path.sep); +} +exports.toPlatformPath = toPlatformPath; +//# sourceMappingURL=path-utils.js.map + +/***/ }), + +/***/ 327: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.summary = exports.markdownSummary = exports.SUMMARY_DOCS_URL = exports.SUMMARY_ENV_VAR = void 0; +const os_1 = __nccwpck_require__(87); +const fs_1 = __nccwpck_require__(747); +const { access, appendFile, writeFile } = fs_1.promises; +exports.SUMMARY_ENV_VAR = 'GITHUB_STEP_SUMMARY'; +exports.SUMMARY_DOCS_URL = 'https://docs.github.com/actions/using-workflows/workflow-commands-for-github-actions#adding-a-job-summary'; +class Summary { + constructor() { + this._buffer = ''; + } + /** + * Finds the summary file path from the environment, rejects if env var is not found or file does not exist + * Also checks r/w permissions. + * + * @returns step summary file path + */ + filePath() { + return __awaiter(this, void 0, void 0, function* () { + if (this._filePath) { + return this._filePath; + } + const pathFromEnv = process.env[exports.SUMMARY_ENV_VAR]; + if (!pathFromEnv) { + throw new Error(`Unable to find environment variable for $${exports.SUMMARY_ENV_VAR}. Check if your runtime environment supports job summaries.`); + } + try { + yield access(pathFromEnv, fs_1.constants.R_OK | fs_1.constants.W_OK); + } + catch (_a) { + throw new Error(`Unable to access summary file: '${pathFromEnv}'. Check if the file has correct read/write permissions.`); + } + this._filePath = pathFromEnv; + return this._filePath; + }); + } + /** + * Wraps content in an HTML tag, adding any HTML attributes + * + * @param {string} tag HTML tag to wrap + * @param {string | null} content content within the tag + * @param {[attribute: string]: string} attrs key-value list of HTML attributes to add + * + * @returns {string} content wrapped in HTML element + */ + wrap(tag, content, attrs = {}) { + const htmlAttrs = Object.entries(attrs) + .map(([key, value]) => ` ${key}="${value}"`) + .join(''); + if (!content) { + return `<${tag}${htmlAttrs}>`; + } + return `<${tag}${htmlAttrs}>${content}`; + } + /** + * Writes text in the buffer to the summary buffer file and empties buffer. Will append by default. + * + * @param {SummaryWriteOptions} [options] (optional) options for write operation + * + * @returns {Promise} summary instance + */ + write(options) { + return __awaiter(this, void 0, void 0, function* () { + const overwrite = !!(options === null || options === void 0 ? void 0 : options.overwrite); + const filePath = yield this.filePath(); + const writeFunc = overwrite ? writeFile : appendFile; + yield writeFunc(filePath, this._buffer, { encoding: 'utf8' }); + return this.emptyBuffer(); + }); + } + /** + * Clears the summary buffer and wipes the summary file + * + * @returns {Summary} summary instance + */ + clear() { + return __awaiter(this, void 0, void 0, function* () { + return this.emptyBuffer().write({ overwrite: true }); + }); + } + /** + * Returns the current summary buffer as a string + * + * @returns {string} string of summary buffer + */ + stringify() { + return this._buffer; + } + /** + * If the summary buffer is empty + * + * @returns {boolen} true if the buffer is empty + */ + isEmptyBuffer() { + return this._buffer.length === 0; + } + /** + * Resets the summary buffer without writing to summary file + * + * @returns {Summary} summary instance + */ + emptyBuffer() { + this._buffer = ''; + return this; + } + /** + * Adds raw text to the summary buffer + * + * @param {string} text content to add + * @param {boolean} [addEOL=false] (optional) append an EOL to the raw text (default: false) + * + * @returns {Summary} summary instance + */ + addRaw(text, addEOL = false) { + this._buffer += text; + return addEOL ? this.addEOL() : this; + } + /** + * Adds the operating system-specific end-of-line marker to the buffer + * + * @returns {Summary} summary instance + */ + addEOL() { + return this.addRaw(os_1.EOL); + } + /** + * Adds an HTML codeblock to the summary buffer + * + * @param {string} code content to render within fenced code block + * @param {string} lang (optional) language to syntax highlight code + * + * @returns {Summary} summary instance + */ + addCodeBlock(code, lang) { + const attrs = Object.assign({}, (lang && { lang })); + const element = this.wrap('pre', this.wrap('code', code), attrs); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML list to the summary buffer + * + * @param {string[]} items list of items to render + * @param {boolean} [ordered=false] (optional) if the rendered list should be ordered or not (default: false) + * + * @returns {Summary} summary instance + */ + addList(items, ordered = false) { + const tag = ordered ? 'ol' : 'ul'; + const listItems = items.map(item => this.wrap('li', item)).join(''); + const element = this.wrap(tag, listItems); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML table to the summary buffer + * + * @param {SummaryTableCell[]} rows table rows + * + * @returns {Summary} summary instance + */ + addTable(rows) { + const tableBody = rows + .map(row => { + const cells = row + .map(cell => { + if (typeof cell === 'string') { + return this.wrap('td', cell); + } + const { header, data, colspan, rowspan } = cell; + const tag = header ? 'th' : 'td'; + const attrs = Object.assign(Object.assign({}, (colspan && { colspan })), (rowspan && { rowspan })); + return this.wrap(tag, data, attrs); + }) + .join(''); + return this.wrap('tr', cells); + }) + .join(''); + const element = this.wrap('table', tableBody); + return this.addRaw(element).addEOL(); + } + /** + * Adds a collapsable HTML details element to the summary buffer + * + * @param {string} label text for the closed state + * @param {string} content collapsable content + * + * @returns {Summary} summary instance + */ + addDetails(label, content) { + const element = this.wrap('details', this.wrap('summary', label) + content); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML image tag to the summary buffer + * + * @param {string} src path to the image you to embed + * @param {string} alt text description of the image + * @param {SummaryImageOptions} options (optional) addition image attributes + * + * @returns {Summary} summary instance + */ + addImage(src, alt, options) { + const { width, height } = options || {}; + const attrs = Object.assign(Object.assign({}, (width && { width })), (height && { height })); + const element = this.wrap('img', null, Object.assign({ src, alt }, attrs)); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML section heading element + * + * @param {string} text heading text + * @param {number | string} [level=1] (optional) the heading level, default: 1 + * + * @returns {Summary} summary instance + */ + addHeading(text, level) { + const tag = `h${level}`; + const allowedTag = ['h1', 'h2', 'h3', 'h4', 'h5', 'h6'].includes(tag) + ? tag + : 'h1'; + const element = this.wrap(allowedTag, text); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML thematic break (
) to the summary buffer + * + * @returns {Summary} summary instance + */ + addSeparator() { + const element = this.wrap('hr', null); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML line break (
) to the summary buffer + * + * @returns {Summary} summary instance + */ + addBreak() { + const element = this.wrap('br', null); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML blockquote to the summary buffer + * + * @param {string} text quote text + * @param {string} cite (optional) citation url + * + * @returns {Summary} summary instance + */ + addQuote(text, cite) { + const attrs = Object.assign({}, (cite && { cite })); + const element = this.wrap('blockquote', text, attrs); + return this.addRaw(element).addEOL(); + } + /** + * Adds an HTML anchor tag to the summary buffer + * + * @param {string} text link text/content + * @param {string} href hyperlink + * + * @returns {Summary} summary instance + */ + addLink(text, href) { + const element = this.wrap('a', text, { href }); + return this.addRaw(element).addEOL(); + } +} +const _summary = new Summary(); +/** + * @deprecated use `core.summary` + */ +exports.markdownSummary = _summary; +exports.summary = _summary; +//# sourceMappingURL=summary.js.map + +/***/ }), + +/***/ 278: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +// We use any as a valid input type +/* eslint-disable @typescript-eslint/no-explicit-any */ +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.toCommandProperties = exports.toCommandValue = void 0; +/** + * Sanitizes an input into a string so it can be passed into issueCommand safely + * @param input input to sanitize into a string + */ +function toCommandValue(input) { + if (input === null || input === undefined) { + return ''; + } + else if (typeof input === 'string' || input instanceof String) { + return input; + } + return JSON.stringify(input); +} +exports.toCommandValue = toCommandValue; +/** + * + * @param annotationProperties + * @returns The command properties to send with the actual annotation command + * See IssueCommandProperties: https://github.com/actions/runner/blob/main/src/Runner.Worker/ActionCommandManager.cs#L646 + */ +function toCommandProperties(annotationProperties) { + if (!Object.keys(annotationProperties).length) { + return {}; + } + return { + title: annotationProperties.title, + file: annotationProperties.file, + line: annotationProperties.startLine, + endLine: annotationProperties.endLine, + col: annotationProperties.startColumn, + endColumn: annotationProperties.endColumn + }; +} +exports.toCommandProperties = toCommandProperties; +//# sourceMappingURL=utils.js.map + +/***/ }), + +/***/ 526: +/***/ (function(__unused_webpack_module, exports) { + +"use strict"; + +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.PersonalAccessTokenCredentialHandler = exports.BearerCredentialHandler = exports.BasicCredentialHandler = void 0; +class BasicCredentialHandler { + constructor(username, password) { + this.username = username; + this.password = password; + } + prepareRequest(options) { + if (!options.headers) { + throw Error('The request has no headers'); + } + options.headers['Authorization'] = `Basic ${Buffer.from(`${this.username}:${this.password}`).toString('base64')}`; + } + // This handler cannot handle 401 + canHandleAuthentication() { + return false; + } + handleAuthentication() { + return __awaiter(this, void 0, void 0, function* () { + throw new Error('not implemented'); + }); + } +} +exports.BasicCredentialHandler = BasicCredentialHandler; +class BearerCredentialHandler { + constructor(token) { + this.token = token; + } + // currently implements pre-authorization + // TODO: support preAuth = false where it hooks on 401 + prepareRequest(options) { + if (!options.headers) { + throw Error('The request has no headers'); + } + options.headers['Authorization'] = `Bearer ${this.token}`; + } + // This handler cannot handle 401 + canHandleAuthentication() { + return false; + } + handleAuthentication() { + return __awaiter(this, void 0, void 0, function* () { + throw new Error('not implemented'); + }); + } +} +exports.BearerCredentialHandler = BearerCredentialHandler; +class PersonalAccessTokenCredentialHandler { + constructor(token) { + this.token = token; + } + // currently implements pre-authorization + // TODO: support preAuth = false where it hooks on 401 + prepareRequest(options) { + if (!options.headers) { + throw Error('The request has no headers'); + } + options.headers['Authorization'] = `Basic ${Buffer.from(`PAT:${this.token}`).toString('base64')}`; + } + // This handler cannot handle 401 + canHandleAuthentication() { + return false; + } + handleAuthentication() { + return __awaiter(this, void 0, void 0, function* () { + throw new Error('not implemented'); + }); + } +} +exports.PersonalAccessTokenCredentialHandler = PersonalAccessTokenCredentialHandler; +//# sourceMappingURL=auth.js.map + +/***/ }), + +/***/ 255: +/***/ (function(__unused_webpack_module, exports, __nccwpck_require__) { + +"use strict"; + +/* eslint-disable @typescript-eslint/no-explicit-any */ +var __createBinding = (this && this.__createBinding) || (Object.create ? (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + Object.defineProperty(o, k2, { enumerable: true, get: function() { return m[k]; } }); +}) : (function(o, m, k, k2) { + if (k2 === undefined) k2 = k; + o[k2] = m[k]; +})); +var __setModuleDefault = (this && this.__setModuleDefault) || (Object.create ? (function(o, v) { + Object.defineProperty(o, "default", { enumerable: true, value: v }); +}) : function(o, v) { + o["default"] = v; +}); +var __importStar = (this && this.__importStar) || function (mod) { + if (mod && mod.__esModule) return mod; + var result = {}; + if (mod != null) for (var k in mod) if (k !== "default" && Object.hasOwnProperty.call(mod, k)) __createBinding(result, mod, k); + __setModuleDefault(result, mod); + return result; +}; +var __awaiter = (this && this.__awaiter) || function (thisArg, _arguments, P, generator) { + function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); } + return new (P || (P = Promise))(function (resolve, reject) { + function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } } + function rejected(value) { try { step(generator["throw"](value)); } catch (e) { reject(e); } } + function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); } + step((generator = generator.apply(thisArg, _arguments || [])).next()); + }); +}; +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.HttpClient = exports.isHttps = exports.HttpClientResponse = exports.HttpClientError = exports.getProxyUrl = exports.MediaTypes = exports.Headers = exports.HttpCodes = void 0; +const http = __importStar(__nccwpck_require__(605)); +const https = __importStar(__nccwpck_require__(211)); +const pm = __importStar(__nccwpck_require__(835)); +const tunnel = __importStar(__nccwpck_require__(294)); +var HttpCodes; +(function (HttpCodes) { + HttpCodes[HttpCodes["OK"] = 200] = "OK"; + HttpCodes[HttpCodes["MultipleChoices"] = 300] = "MultipleChoices"; + HttpCodes[HttpCodes["MovedPermanently"] = 301] = "MovedPermanently"; + HttpCodes[HttpCodes["ResourceMoved"] = 302] = "ResourceMoved"; + HttpCodes[HttpCodes["SeeOther"] = 303] = "SeeOther"; + HttpCodes[HttpCodes["NotModified"] = 304] = "NotModified"; + HttpCodes[HttpCodes["UseProxy"] = 305] = "UseProxy"; + HttpCodes[HttpCodes["SwitchProxy"] = 306] = "SwitchProxy"; + HttpCodes[HttpCodes["TemporaryRedirect"] = 307] = "TemporaryRedirect"; + HttpCodes[HttpCodes["PermanentRedirect"] = 308] = "PermanentRedirect"; + HttpCodes[HttpCodes["BadRequest"] = 400] = "BadRequest"; + HttpCodes[HttpCodes["Unauthorized"] = 401] = "Unauthorized"; + HttpCodes[HttpCodes["PaymentRequired"] = 402] = "PaymentRequired"; + HttpCodes[HttpCodes["Forbidden"] = 403] = "Forbidden"; + HttpCodes[HttpCodes["NotFound"] = 404] = "NotFound"; + HttpCodes[HttpCodes["MethodNotAllowed"] = 405] = "MethodNotAllowed"; + HttpCodes[HttpCodes["NotAcceptable"] = 406] = "NotAcceptable"; + HttpCodes[HttpCodes["ProxyAuthenticationRequired"] = 407] = "ProxyAuthenticationRequired"; + HttpCodes[HttpCodes["RequestTimeout"] = 408] = "RequestTimeout"; + HttpCodes[HttpCodes["Conflict"] = 409] = "Conflict"; + HttpCodes[HttpCodes["Gone"] = 410] = "Gone"; + HttpCodes[HttpCodes["TooManyRequests"] = 429] = "TooManyRequests"; + HttpCodes[HttpCodes["InternalServerError"] = 500] = "InternalServerError"; + HttpCodes[HttpCodes["NotImplemented"] = 501] = "NotImplemented"; + HttpCodes[HttpCodes["BadGateway"] = 502] = "BadGateway"; + HttpCodes[HttpCodes["ServiceUnavailable"] = 503] = "ServiceUnavailable"; + HttpCodes[HttpCodes["GatewayTimeout"] = 504] = "GatewayTimeout"; +})(HttpCodes = exports.HttpCodes || (exports.HttpCodes = {})); +var Headers; +(function (Headers) { + Headers["Accept"] = "accept"; + Headers["ContentType"] = "content-type"; +})(Headers = exports.Headers || (exports.Headers = {})); +var MediaTypes; +(function (MediaTypes) { + MediaTypes["ApplicationJson"] = "application/json"; +})(MediaTypes = exports.MediaTypes || (exports.MediaTypes = {})); +/** + * Returns the proxy URL, depending upon the supplied url and proxy environment variables. + * @param serverUrl The server URL where the request will be sent. For example, https://api.github.com + */ +function getProxyUrl(serverUrl) { + const proxyUrl = pm.getProxyUrl(new URL(serverUrl)); + return proxyUrl ? proxyUrl.href : ''; +} +exports.getProxyUrl = getProxyUrl; +const HttpRedirectCodes = [ + HttpCodes.MovedPermanently, + HttpCodes.ResourceMoved, + HttpCodes.SeeOther, + HttpCodes.TemporaryRedirect, + HttpCodes.PermanentRedirect +]; +const HttpResponseRetryCodes = [ + HttpCodes.BadGateway, + HttpCodes.ServiceUnavailable, + HttpCodes.GatewayTimeout +]; +const RetryableHttpVerbs = ['OPTIONS', 'GET', 'DELETE', 'HEAD']; +const ExponentialBackoffCeiling = 10; +const ExponentialBackoffTimeSlice = 5; +class HttpClientError extends Error { + constructor(message, statusCode) { + super(message); + this.name = 'HttpClientError'; + this.statusCode = statusCode; + Object.setPrototypeOf(this, HttpClientError.prototype); + } +} +exports.HttpClientError = HttpClientError; +class HttpClientResponse { + constructor(message) { + this.message = message; + } + readBody() { + return __awaiter(this, void 0, void 0, function* () { + return new Promise((resolve) => __awaiter(this, void 0, void 0, function* () { + let output = Buffer.alloc(0); + this.message.on('data', (chunk) => { + output = Buffer.concat([output, chunk]); + }); + this.message.on('end', () => { + resolve(output.toString()); + }); + })); + }); + } +} +exports.HttpClientResponse = HttpClientResponse; +function isHttps(requestUrl) { + const parsedUrl = new URL(requestUrl); + return parsedUrl.protocol === 'https:'; +} +exports.isHttps = isHttps; +class HttpClient { + constructor(userAgent, handlers, requestOptions) { + this._ignoreSslError = false; + this._allowRedirects = true; + this._allowRedirectDowngrade = false; + this._maxRedirects = 50; + this._allowRetries = false; + this._maxRetries = 1; + this._keepAlive = false; + this._disposed = false; + this.userAgent = userAgent; + this.handlers = handlers || []; + this.requestOptions = requestOptions; + if (requestOptions) { + if (requestOptions.ignoreSslError != null) { + this._ignoreSslError = requestOptions.ignoreSslError; + } + this._socketTimeout = requestOptions.socketTimeout; + if (requestOptions.allowRedirects != null) { + this._allowRedirects = requestOptions.allowRedirects; + } + if (requestOptions.allowRedirectDowngrade != null) { + this._allowRedirectDowngrade = requestOptions.allowRedirectDowngrade; + } + if (requestOptions.maxRedirects != null) { + this._maxRedirects = Math.max(requestOptions.maxRedirects, 0); + } + if (requestOptions.keepAlive != null) { + this._keepAlive = requestOptions.keepAlive; + } + if (requestOptions.allowRetries != null) { + this._allowRetries = requestOptions.allowRetries; + } + if (requestOptions.maxRetries != null) { + this._maxRetries = requestOptions.maxRetries; + } + } + } + options(requestUrl, additionalHeaders) { + return __awaiter(this, void 0, void 0, function* () { + return this.request('OPTIONS', requestUrl, null, additionalHeaders || {}); + }); + } + get(requestUrl, additionalHeaders) { + return __awaiter(this, void 0, void 0, function* () { + return this.request('GET', requestUrl, null, additionalHeaders || {}); + }); + } + del(requestUrl, additionalHeaders) { + return __awaiter(this, void 0, void 0, function* () { + return this.request('DELETE', requestUrl, null, additionalHeaders || {}); + }); + } + post(requestUrl, data, additionalHeaders) { + return __awaiter(this, void 0, void 0, function* () { + return this.request('POST', requestUrl, data, additionalHeaders || {}); + }); + } + patch(requestUrl, data, additionalHeaders) { + return __awaiter(this, void 0, void 0, function* () { + return this.request('PATCH', requestUrl, data, additionalHeaders || {}); + }); + } + put(requestUrl, data, additionalHeaders) { + return __awaiter(this, void 0, void 0, function* () { + return this.request('PUT', requestUrl, data, additionalHeaders || {}); + }); + } + head(requestUrl, additionalHeaders) { + return __awaiter(this, void 0, void 0, function* () { + return this.request('HEAD', requestUrl, null, additionalHeaders || {}); + }); + } + sendStream(verb, requestUrl, stream, additionalHeaders) { + return __awaiter(this, void 0, void 0, function* () { + return this.request(verb, requestUrl, stream, additionalHeaders); + }); + } + /** + * Gets a typed object from an endpoint + * Be aware that not found returns a null. Other errors (4xx, 5xx) reject the promise + */ + getJson(requestUrl, additionalHeaders = {}) { + return __awaiter(this, void 0, void 0, function* () { + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); + const res = yield this.get(requestUrl, additionalHeaders); + return this._processResponse(res, this.requestOptions); + }); + } + postJson(requestUrl, obj, additionalHeaders = {}) { + return __awaiter(this, void 0, void 0, function* () { + const data = JSON.stringify(obj, null, 2); + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); + additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); + const res = yield this.post(requestUrl, data, additionalHeaders); + return this._processResponse(res, this.requestOptions); + }); + } + putJson(requestUrl, obj, additionalHeaders = {}) { + return __awaiter(this, void 0, void 0, function* () { + const data = JSON.stringify(obj, null, 2); + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); + additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); + const res = yield this.put(requestUrl, data, additionalHeaders); + return this._processResponse(res, this.requestOptions); + }); + } + patchJson(requestUrl, obj, additionalHeaders = {}) { + return __awaiter(this, void 0, void 0, function* () { + const data = JSON.stringify(obj, null, 2); + additionalHeaders[Headers.Accept] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.Accept, MediaTypes.ApplicationJson); + additionalHeaders[Headers.ContentType] = this._getExistingOrDefaultHeader(additionalHeaders, Headers.ContentType, MediaTypes.ApplicationJson); + const res = yield this.patch(requestUrl, data, additionalHeaders); + return this._processResponse(res, this.requestOptions); + }); + } + /** + * Makes a raw http request. + * All other methods such as get, post, patch, and request ultimately call this. + * Prefer get, del, post and patch + */ + request(verb, requestUrl, data, headers) { + return __awaiter(this, void 0, void 0, function* () { + if (this._disposed) { + throw new Error('Client has already been disposed.'); + } + const parsedUrl = new URL(requestUrl); + let info = this._prepareRequest(verb, parsedUrl, headers); + // Only perform retries on reads since writes may not be idempotent. + const maxTries = this._allowRetries && RetryableHttpVerbs.includes(verb) + ? this._maxRetries + 1 + : 1; + let numTries = 0; + let response; + do { + response = yield this.requestRaw(info, data); + // Check if it's an authentication challenge + if (response && + response.message && + response.message.statusCode === HttpCodes.Unauthorized) { + let authenticationHandler; + for (const handler of this.handlers) { + if (handler.canHandleAuthentication(response)) { + authenticationHandler = handler; + break; + } + } + if (authenticationHandler) { + return authenticationHandler.handleAuthentication(this, info, data); + } + else { + // We have received an unauthorized response but have no handlers to handle it. + // Let the response return to the caller. + return response; + } + } + let redirectsRemaining = this._maxRedirects; + while (response.message.statusCode && + HttpRedirectCodes.includes(response.message.statusCode) && + this._allowRedirects && + redirectsRemaining > 0) { + const redirectUrl = response.message.headers['location']; + if (!redirectUrl) { + // if there's no location to redirect to, we won't + break; + } + const parsedRedirectUrl = new URL(redirectUrl); + if (parsedUrl.protocol === 'https:' && + parsedUrl.protocol !== parsedRedirectUrl.protocol && + !this._allowRedirectDowngrade) { + throw new Error('Redirect from HTTPS to HTTP protocol. This downgrade is not allowed for security reasons. If you want to allow this behavior, set the allowRedirectDowngrade option to true.'); + } + // we need to finish reading the response before reassigning response + // which will leak the open socket. + yield response.readBody(); + // strip authorization header if redirected to a different hostname + if (parsedRedirectUrl.hostname !== parsedUrl.hostname) { + for (const header in headers) { + // header names are case insensitive + if (header.toLowerCase() === 'authorization') { + delete headers[header]; + } + } + } + // let's make the request with the new redirectUrl + info = this._prepareRequest(verb, parsedRedirectUrl, headers); + response = yield this.requestRaw(info, data); + redirectsRemaining--; + } + if (!response.message.statusCode || + !HttpResponseRetryCodes.includes(response.message.statusCode)) { + // If not a retry code, return immediately instead of retrying + return response; + } + numTries += 1; + if (numTries < maxTries) { + yield response.readBody(); + yield this._performExponentialBackoff(numTries); + } + } while (numTries < maxTries); + return response; + }); + } + /** + * Needs to be called if keepAlive is set to true in request options. + */ + dispose() { + if (this._agent) { + this._agent.destroy(); + } + this._disposed = true; + } + /** + * Raw request. + * @param info + * @param data + */ + requestRaw(info, data) { + return __awaiter(this, void 0, void 0, function* () { + return new Promise((resolve, reject) => { + function callbackForResult(err, res) { + if (err) { + reject(err); + } + else if (!res) { + // If `err` is not passed, then `res` must be passed. + reject(new Error('Unknown error')); + } + else { + resolve(res); + } + } + this.requestRawWithCallback(info, data, callbackForResult); + }); + }); + } + /** + * Raw request with callback. + * @param info + * @param data + * @param onResult + */ + requestRawWithCallback(info, data, onResult) { + if (typeof data === 'string') { + if (!info.options.headers) { + info.options.headers = {}; + } + info.options.headers['Content-Length'] = Buffer.byteLength(data, 'utf8'); + } + let callbackCalled = false; + function handleResult(err, res) { + if (!callbackCalled) { + callbackCalled = true; + onResult(err, res); + } + } + const req = info.httpModule.request(info.options, (msg) => { + const res = new HttpClientResponse(msg); + handleResult(undefined, res); + }); + let socket; + req.on('socket', sock => { + socket = sock; + }); + // If we ever get disconnected, we want the socket to timeout eventually + req.setTimeout(this._socketTimeout || 3 * 60000, () => { + if (socket) { + socket.end(); + } + handleResult(new Error(`Request timeout: ${info.options.path}`)); + }); + req.on('error', function (err) { + // err has statusCode property + // res should have headers + handleResult(err); + }); + if (data && typeof data === 'string') { + req.write(data, 'utf8'); + } + if (data && typeof data !== 'string') { + data.on('close', function () { + req.end(); + }); + data.pipe(req); + } + else { + req.end(); + } + } + /** + * Gets an http agent. This function is useful when you need an http agent that handles + * routing through a proxy server - depending upon the url and proxy environment variables. + * @param serverUrl The server URL where the request will be sent. For example, https://api.github.com + */ + getAgent(serverUrl) { + const parsedUrl = new URL(serverUrl); + return this._getAgent(parsedUrl); + } + _prepareRequest(method, requestUrl, headers) { + const info = {}; + info.parsedUrl = requestUrl; + const usingSsl = info.parsedUrl.protocol === 'https:'; + info.httpModule = usingSsl ? https : http; + const defaultPort = usingSsl ? 443 : 80; + info.options = {}; + info.options.host = info.parsedUrl.hostname; + info.options.port = info.parsedUrl.port + ? parseInt(info.parsedUrl.port) + : defaultPort; + info.options.path = + (info.parsedUrl.pathname || '') + (info.parsedUrl.search || ''); + info.options.method = method; + info.options.headers = this._mergeHeaders(headers); + if (this.userAgent != null) { + info.options.headers['user-agent'] = this.userAgent; + } + info.options.agent = this._getAgent(info.parsedUrl); + // gives handlers an opportunity to participate + if (this.handlers) { + for (const handler of this.handlers) { + handler.prepareRequest(info.options); + } + } + return info; + } + _mergeHeaders(headers) { + if (this.requestOptions && this.requestOptions.headers) { + return Object.assign({}, lowercaseKeys(this.requestOptions.headers), lowercaseKeys(headers || {})); + } + return lowercaseKeys(headers || {}); + } + _getExistingOrDefaultHeader(additionalHeaders, header, _default) { + let clientHeader; + if (this.requestOptions && this.requestOptions.headers) { + clientHeader = lowercaseKeys(this.requestOptions.headers)[header]; + } + return additionalHeaders[header] || clientHeader || _default; + } + _getAgent(parsedUrl) { + let agent; + const proxyUrl = pm.getProxyUrl(parsedUrl); + const useProxy = proxyUrl && proxyUrl.hostname; + if (this._keepAlive && useProxy) { + agent = this._proxyAgent; + } + if (this._keepAlive && !useProxy) { + agent = this._agent; + } + // if agent is already assigned use that agent. + if (agent) { + return agent; + } + const usingSsl = parsedUrl.protocol === 'https:'; + let maxSockets = 100; + if (this.requestOptions) { + maxSockets = this.requestOptions.maxSockets || http.globalAgent.maxSockets; + } + // This is `useProxy` again, but we need to check `proxyURl` directly for TypeScripts's flow analysis. + if (proxyUrl && proxyUrl.hostname) { + const agentOptions = { + maxSockets, + keepAlive: this._keepAlive, + proxy: Object.assign(Object.assign({}, ((proxyUrl.username || proxyUrl.password) && { + proxyAuth: `${proxyUrl.username}:${proxyUrl.password}` + })), { host: proxyUrl.hostname, port: proxyUrl.port }) + }; + let tunnelAgent; + const overHttps = proxyUrl.protocol === 'https:'; + if (usingSsl) { + tunnelAgent = overHttps ? tunnel.httpsOverHttps : tunnel.httpsOverHttp; + } + else { + tunnelAgent = overHttps ? tunnel.httpOverHttps : tunnel.httpOverHttp; + } + agent = tunnelAgent(agentOptions); + this._proxyAgent = agent; + } + // if reusing agent across request and tunneling agent isn't assigned create a new agent + if (this._keepAlive && !agent) { + const options = { keepAlive: this._keepAlive, maxSockets }; + agent = usingSsl ? new https.Agent(options) : new http.Agent(options); + this._agent = agent; + } + // if not using private agent and tunnel agent isn't setup then use global agent + if (!agent) { + agent = usingSsl ? https.globalAgent : http.globalAgent; + } + if (usingSsl && this._ignoreSslError) { + // we don't want to set NODE_TLS_REJECT_UNAUTHORIZED=0 since that will affect request for entire process + // http.RequestOptions doesn't expose a way to modify RequestOptions.agent.options + // we have to cast it to any and change it directly + agent.options = Object.assign(agent.options || {}, { + rejectUnauthorized: false + }); + } + return agent; + } + _performExponentialBackoff(retryNumber) { + return __awaiter(this, void 0, void 0, function* () { + retryNumber = Math.min(ExponentialBackoffCeiling, retryNumber); + const ms = ExponentialBackoffTimeSlice * Math.pow(2, retryNumber); + return new Promise(resolve => setTimeout(() => resolve(), ms)); + }); + } + _processResponse(res, options) { + return __awaiter(this, void 0, void 0, function* () { + return new Promise((resolve, reject) => __awaiter(this, void 0, void 0, function* () { + const statusCode = res.message.statusCode || 0; + const response = { + statusCode, + result: null, + headers: {} + }; + // not found leads to null obj returned + if (statusCode === HttpCodes.NotFound) { + resolve(response); + } + // get the result from the body + function dateTimeDeserializer(key, value) { + if (typeof value === 'string') { + const a = new Date(value); + if (!isNaN(a.valueOf())) { + return a; + } + } + return value; + } + let obj; + let contents; + try { + contents = yield res.readBody(); + if (contents && contents.length > 0) { + if (options && options.deserializeDates) { + obj = JSON.parse(contents, dateTimeDeserializer); + } + else { + obj = JSON.parse(contents); + } + response.result = obj; + } + response.headers = res.message.headers; + } + catch (err) { + // Invalid resource (contents not json); leaving result obj null + } + // note that 3xx redirects are handled by the http layer. + if (statusCode > 299) { + let msg; + // if exception/error in body, attempt to get better error + if (obj && obj.message) { + msg = obj.message; + } + else if (contents && contents.length > 0) { + // it may be the case that the exception is in the body message as string + msg = contents; + } + else { + msg = `Failed request: (${statusCode})`; + } + const err = new HttpClientError(msg, statusCode); + err.result = response.result; + reject(err); + } + else { + resolve(response); + } + })); + }); + } +} +exports.HttpClient = HttpClient; +const lowercaseKeys = (obj) => Object.keys(obj).reduce((c, k) => ((c[k.toLowerCase()] = obj[k]), c), {}); +//# sourceMappingURL=index.js.map + +/***/ }), + +/***/ 835: +/***/ ((__unused_webpack_module, exports) => { + +"use strict"; + +Object.defineProperty(exports, "__esModule", ({ value: true })); +exports.checkBypass = exports.getProxyUrl = void 0; +function getProxyUrl(reqUrl) { + const usingSsl = reqUrl.protocol === 'https:'; + if (checkBypass(reqUrl)) { + return undefined; + } + const proxyVar = (() => { + if (usingSsl) { + return process.env['https_proxy'] || process.env['HTTPS_PROXY']; + } + else { + return process.env['http_proxy'] || process.env['HTTP_PROXY']; + } + })(); + if (proxyVar) { + return new URL(proxyVar); + } + else { + return undefined; + } +} +exports.getProxyUrl = getProxyUrl; +function checkBypass(reqUrl) { + if (!reqUrl.hostname) { + return false; + } + const noProxy = process.env['no_proxy'] || process.env['NO_PROXY'] || ''; + if (!noProxy) { + return false; + } + // Determine the request port + let reqPort; + if (reqUrl.port) { + reqPort = Number(reqUrl.port); + } + else if (reqUrl.protocol === 'http:') { + reqPort = 80; + } + else if (reqUrl.protocol === 'https:') { + reqPort = 443; + } + // Format the request hostname and hostname with port + const upperReqHosts = [reqUrl.hostname.toUpperCase()]; + if (typeof reqPort === 'number') { + upperReqHosts.push(`${upperReqHosts[0]}:${reqPort}`); + } + // Compare request host against noproxy + for (const upperNoProxyItem of noProxy + .split(',') + .map(x => x.trim().toUpperCase()) + .filter(x => x)) { + if (upperReqHosts.some(x => x === upperNoProxyItem)) { + return true; + } + } + return false; +} +exports.checkBypass = checkBypass; +//# sourceMappingURL=proxy.js.map + +/***/ }), + +/***/ 294: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +module.exports = __nccwpck_require__(219); + + +/***/ }), + +/***/ 219: +/***/ ((__unused_webpack_module, exports, __nccwpck_require__) => { + +"use strict"; + + +var net = __nccwpck_require__(631); +var tls = __nccwpck_require__(16); +var http = __nccwpck_require__(605); +var https = __nccwpck_require__(211); +var events = __nccwpck_require__(614); +var assert = __nccwpck_require__(357); +var util = __nccwpck_require__(669); + + +exports.httpOverHttp = httpOverHttp; +exports.httpsOverHttp = httpsOverHttp; +exports.httpOverHttps = httpOverHttps; +exports.httpsOverHttps = httpsOverHttps; + + +function httpOverHttp(options) { + var agent = new TunnelingAgent(options); + agent.request = http.request; + return agent; +} + +function httpsOverHttp(options) { + var agent = new TunnelingAgent(options); + agent.request = http.request; + agent.createSocket = createSecureSocket; + agent.defaultPort = 443; + return agent; +} + +function httpOverHttps(options) { + var agent = new TunnelingAgent(options); + agent.request = https.request; + return agent; +} + +function httpsOverHttps(options) { + var agent = new TunnelingAgent(options); + agent.request = https.request; + agent.createSocket = createSecureSocket; + agent.defaultPort = 443; + return agent; +} + + +function TunnelingAgent(options) { + var self = this; + self.options = options || {}; + self.proxyOptions = self.options.proxy || {}; + self.maxSockets = self.options.maxSockets || http.Agent.defaultMaxSockets; + self.requests = []; + self.sockets = []; + + self.on('free', function onFree(socket, host, port, localAddress) { + var options = toOptions(host, port, localAddress); + for (var i = 0, len = self.requests.length; i < len; ++i) { + var pending = self.requests[i]; + if (pending.host === options.host && pending.port === options.port) { + // Detect the request to connect same origin server, + // reuse the connection. + self.requests.splice(i, 1); + pending.request.onSocket(socket); + return; + } + } + socket.destroy(); + self.removeSocket(socket); + }); +} +util.inherits(TunnelingAgent, events.EventEmitter); + +TunnelingAgent.prototype.addRequest = function addRequest(req, host, port, localAddress) { + var self = this; + var options = mergeOptions({request: req}, self.options, toOptions(host, port, localAddress)); + + if (self.sockets.length >= this.maxSockets) { + // We are over limit so we'll add it to the queue. + self.requests.push(options); + return; + } + + // If we are under maxSockets create a new one. + self.createSocket(options, function(socket) { + socket.on('free', onFree); + socket.on('close', onCloseOrRemove); + socket.on('agentRemove', onCloseOrRemove); + req.onSocket(socket); + + function onFree() { + self.emit('free', socket, options); + } + + function onCloseOrRemove(err) { + self.removeSocket(socket); + socket.removeListener('free', onFree); + socket.removeListener('close', onCloseOrRemove); + socket.removeListener('agentRemove', onCloseOrRemove); + } + }); +}; + +TunnelingAgent.prototype.createSocket = function createSocket(options, cb) { + var self = this; + var placeholder = {}; + self.sockets.push(placeholder); + + var connectOptions = mergeOptions({}, self.proxyOptions, { + method: 'CONNECT', + path: options.host + ':' + options.port, + agent: false, + headers: { + host: options.host + ':' + options.port + } + }); + if (options.localAddress) { + connectOptions.localAddress = options.localAddress; + } + if (connectOptions.proxyAuth) { + connectOptions.headers = connectOptions.headers || {}; + connectOptions.headers['Proxy-Authorization'] = 'Basic ' + + new Buffer(connectOptions.proxyAuth).toString('base64'); + } + + debug('making CONNECT request'); + var connectReq = self.request(connectOptions); + connectReq.useChunkedEncodingByDefault = false; // for v0.6 + connectReq.once('response', onResponse); // for v0.6 + connectReq.once('upgrade', onUpgrade); // for v0.6 + connectReq.once('connect', onConnect); // for v0.7 or later + connectReq.once('error', onError); + connectReq.end(); + + function onResponse(res) { + // Very hacky. This is necessary to avoid http-parser leaks. + res.upgrade = true; + } + + function onUpgrade(res, socket, head) { + // Hacky. + process.nextTick(function() { + onConnect(res, socket, head); + }); + } + + function onConnect(res, socket, head) { + connectReq.removeAllListeners(); + socket.removeAllListeners(); + + if (res.statusCode !== 200) { + debug('tunneling socket could not be established, statusCode=%d', + res.statusCode); + socket.destroy(); + var error = new Error('tunneling socket could not be established, ' + + 'statusCode=' + res.statusCode); + error.code = 'ECONNRESET'; + options.request.emit('error', error); + self.removeSocket(placeholder); + return; + } + if (head.length > 0) { + debug('got illegal response body from proxy'); + socket.destroy(); + var error = new Error('got illegal response body from proxy'); + error.code = 'ECONNRESET'; + options.request.emit('error', error); + self.removeSocket(placeholder); + return; + } + debug('tunneling connection has established'); + self.sockets[self.sockets.indexOf(placeholder)] = socket; + return cb(socket); + } + + function onError(cause) { + connectReq.removeAllListeners(); + + debug('tunneling socket could not be established, cause=%s\n', + cause.message, cause.stack); + var error = new Error('tunneling socket could not be established, ' + + 'cause=' + cause.message); + error.code = 'ECONNRESET'; + options.request.emit('error', error); + self.removeSocket(placeholder); + } +}; + +TunnelingAgent.prototype.removeSocket = function removeSocket(socket) { + var pos = this.sockets.indexOf(socket) + if (pos === -1) { + return; + } + this.sockets.splice(pos, 1); + + var pending = this.requests.shift(); + if (pending) { + // If we have pending requests and a socket gets closed a new one + // needs to be created to take over in the pool for the one that closed. + this.createSocket(pending, function(socket) { + pending.request.onSocket(socket); + }); + } +}; + +function createSecureSocket(options, cb) { + var self = this; + TunnelingAgent.prototype.createSocket.call(self, options, function(socket) { + var hostHeader = options.request.getHeader('host'); + var tlsOptions = mergeOptions({}, self.options, { + socket: socket, + servername: hostHeader ? hostHeader.replace(/:.*$/, '') : options.host + }); + + // 0 is dummy port for v0.6 + var secureSocket = tls.connect(0, tlsOptions); + self.sockets[self.sockets.indexOf(socket)] = secureSocket; + cb(secureSocket); + }); +} + + +function toOptions(host, port, localAddress) { + if (typeof host === 'string') { // since v0.10 + return { + host: host, + port: port, + localAddress: localAddress + }; + } + return host; // for v0.11 or later +} + +function mergeOptions(target) { + for (var i = 1, len = arguments.length; i < len; ++i) { + var overrides = arguments[i]; + if (typeof overrides === 'object') { + var keys = Object.keys(overrides); + for (var j = 0, keyLen = keys.length; j < keyLen; ++j) { + var k = keys[j]; + if (overrides[k] !== undefined) { + target[k] = overrides[k]; + } + } + } + } + return target; +} + + +var debug; +if (process.env.NODE_DEBUG && /\btunnel\b/.test(process.env.NODE_DEBUG)) { + debug = function() { + var args = Array.prototype.slice.call(arguments); + if (typeof args[0] === 'string') { + args[0] = 'TUNNEL: ' + args[0]; + } else { + args.unshift('TUNNEL:'); + } + console.error.apply(console, args); + } +} else { + debug = function() {}; +} +exports.debug = debug; // for test + + +/***/ }), + +/***/ 521: +/***/ ((__unused_webpack_module, __webpack_exports__, __nccwpck_require__) => { + +"use strict"; +// ESM COMPAT FLAG +__nccwpck_require__.r(__webpack_exports__); + +// EXPORTS +__nccwpck_require__.d(__webpack_exports__, { + "NIL": () => /* reexport */ nil, + "parse": () => /* reexport */ esm_node_parse, + "stringify": () => /* reexport */ esm_node_stringify, + "v1": () => /* reexport */ esm_node_v1, + "v3": () => /* reexport */ esm_node_v3, + "v4": () => /* reexport */ esm_node_v4, + "v5": () => /* reexport */ esm_node_v5, + "validate": () => /* reexport */ esm_node_validate, + "version": () => /* reexport */ esm_node_version +}); + +// CONCATENATED MODULE: external "crypto" +const external_crypto_namespaceObject = require("crypto");; +var external_crypto_default = /*#__PURE__*/__nccwpck_require__.n(external_crypto_namespaceObject); + +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/rng.js + +const rnds8Pool = new Uint8Array(256); // # of random values to pre-allocate + +let poolPtr = rnds8Pool.length; +function rng() { + if (poolPtr > rnds8Pool.length - 16) { + external_crypto_default().randomFillSync(rnds8Pool); + poolPtr = 0; + } + + return rnds8Pool.slice(poolPtr, poolPtr += 16); +} +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/regex.js +/* harmony default export */ const regex = (/^(?:[0-9a-f]{8}-[0-9a-f]{4}-[1-5][0-9a-f]{3}-[89ab][0-9a-f]{3}-[0-9a-f]{12}|00000000-0000-0000-0000-000000000000)$/i); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/validate.js + + +function validate(uuid) { + return typeof uuid === 'string' && regex.test(uuid); +} + +/* harmony default export */ const esm_node_validate = (validate); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/stringify.js + +/** + * Convert array of 16 byte values to UUID string format of the form: + * XXXXXXXX-XXXX-XXXX-XXXX-XXXXXXXXXXXX + */ + +const byteToHex = []; + +for (let i = 0; i < 256; ++i) { + byteToHex.push((i + 0x100).toString(16).substr(1)); +} + +function stringify(arr, offset = 0) { + // Note: Be careful editing this code! It's been tuned for performance + // and works in ways you may not expect. See https://github.com/uuidjs/uuid/pull/434 + const uuid = (byteToHex[arr[offset + 0]] + byteToHex[arr[offset + 1]] + byteToHex[arr[offset + 2]] + byteToHex[arr[offset + 3]] + '-' + byteToHex[arr[offset + 4]] + byteToHex[arr[offset + 5]] + '-' + byteToHex[arr[offset + 6]] + byteToHex[arr[offset + 7]] + '-' + byteToHex[arr[offset + 8]] + byteToHex[arr[offset + 9]] + '-' + byteToHex[arr[offset + 10]] + byteToHex[arr[offset + 11]] + byteToHex[arr[offset + 12]] + byteToHex[arr[offset + 13]] + byteToHex[arr[offset + 14]] + byteToHex[arr[offset + 15]]).toLowerCase(); // Consistency check for valid UUID. If this throws, it's likely due to one + // of the following: + // - One or more input array values don't map to a hex octet (leading to + // "undefined" in the uuid) + // - Invalid input values for the RFC `version` or `variant` fields + + if (!esm_node_validate(uuid)) { + throw TypeError('Stringified UUID is invalid'); + } + + return uuid; +} + +/* harmony default export */ const esm_node_stringify = (stringify); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/v1.js + + // **`v1()` - Generate time-based UUID** +// +// Inspired by https://github.com/LiosK/UUID.js +// and http://docs.python.org/library/uuid.html + +let _nodeId; + +let _clockseq; // Previous uuid creation time + + +let _lastMSecs = 0; +let _lastNSecs = 0; // See https://github.com/uuidjs/uuid for API details + +function v1(options, buf, offset) { + let i = buf && offset || 0; + const b = buf || new Array(16); + options = options || {}; + let node = options.node || _nodeId; + let clockseq = options.clockseq !== undefined ? options.clockseq : _clockseq; // node and clockseq need to be initialized to random values if they're not + // specified. We do this lazily to minimize issues related to insufficient + // system entropy. See #189 + + if (node == null || clockseq == null) { + const seedBytes = options.random || (options.rng || rng)(); + + if (node == null) { + // Per 4.5, create and 48-bit node id, (47 random bits + multicast bit = 1) + node = _nodeId = [seedBytes[0] | 0x01, seedBytes[1], seedBytes[2], seedBytes[3], seedBytes[4], seedBytes[5]]; + } + + if (clockseq == null) { + // Per 4.2.2, randomize (14 bit) clockseq + clockseq = _clockseq = (seedBytes[6] << 8 | seedBytes[7]) & 0x3fff; + } + } // UUID timestamps are 100 nano-second units since the Gregorian epoch, + // (1582-10-15 00:00). JSNumbers aren't precise enough for this, so + // time is handled internally as 'msecs' (integer milliseconds) and 'nsecs' + // (100-nanoseconds offset from msecs) since unix epoch, 1970-01-01 00:00. + + + let msecs = options.msecs !== undefined ? options.msecs : Date.now(); // Per 4.2.1.2, use count of uuid's generated during the current clock + // cycle to simulate higher resolution clock + + let nsecs = options.nsecs !== undefined ? options.nsecs : _lastNSecs + 1; // Time since last uuid creation (in msecs) + + const dt = msecs - _lastMSecs + (nsecs - _lastNSecs) / 10000; // Per 4.2.1.2, Bump clockseq on clock regression + + if (dt < 0 && options.clockseq === undefined) { + clockseq = clockseq + 1 & 0x3fff; + } // Reset nsecs if clock regresses (new clockseq) or we've moved onto a new + // time interval + + + if ((dt < 0 || msecs > _lastMSecs) && options.nsecs === undefined) { + nsecs = 0; + } // Per 4.2.1.2 Throw error if too many uuids are requested + + + if (nsecs >= 10000) { + throw new Error("uuid.v1(): Can't create more than 10M uuids/sec"); + } + + _lastMSecs = msecs; + _lastNSecs = nsecs; + _clockseq = clockseq; // Per 4.1.4 - Convert from unix epoch to Gregorian epoch + + msecs += 12219292800000; // `time_low` + + const tl = ((msecs & 0xfffffff) * 10000 + nsecs) % 0x100000000; + b[i++] = tl >>> 24 & 0xff; + b[i++] = tl >>> 16 & 0xff; + b[i++] = tl >>> 8 & 0xff; + b[i++] = tl & 0xff; // `time_mid` + + const tmh = msecs / 0x100000000 * 10000 & 0xfffffff; + b[i++] = tmh >>> 8 & 0xff; + b[i++] = tmh & 0xff; // `time_high_and_version` + + b[i++] = tmh >>> 24 & 0xf | 0x10; // include version + + b[i++] = tmh >>> 16 & 0xff; // `clock_seq_hi_and_reserved` (Per 4.2.2 - include variant) + + b[i++] = clockseq >>> 8 | 0x80; // `clock_seq_low` + + b[i++] = clockseq & 0xff; // `node` + + for (let n = 0; n < 6; ++n) { + b[i + n] = node[n]; + } + + return buf || esm_node_stringify(b); +} + +/* harmony default export */ const esm_node_v1 = (v1); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/parse.js + + +function parse(uuid) { + if (!esm_node_validate(uuid)) { + throw TypeError('Invalid UUID'); + } + + let v; + const arr = new Uint8Array(16); // Parse ########-....-....-....-............ + + arr[0] = (v = parseInt(uuid.slice(0, 8), 16)) >>> 24; + arr[1] = v >>> 16 & 0xff; + arr[2] = v >>> 8 & 0xff; + arr[3] = v & 0xff; // Parse ........-####-....-....-............ + + arr[4] = (v = parseInt(uuid.slice(9, 13), 16)) >>> 8; + arr[5] = v & 0xff; // Parse ........-....-####-....-............ + + arr[6] = (v = parseInt(uuid.slice(14, 18), 16)) >>> 8; + arr[7] = v & 0xff; // Parse ........-....-....-####-............ + + arr[8] = (v = parseInt(uuid.slice(19, 23), 16)) >>> 8; + arr[9] = v & 0xff; // Parse ........-....-....-....-############ + // (Use "/" to avoid 32-bit truncation when bit-shifting high-order bytes) + + arr[10] = (v = parseInt(uuid.slice(24, 36), 16)) / 0x10000000000 & 0xff; + arr[11] = v / 0x100000000 & 0xff; + arr[12] = v >>> 24 & 0xff; + arr[13] = v >>> 16 & 0xff; + arr[14] = v >>> 8 & 0xff; + arr[15] = v & 0xff; + return arr; +} + +/* harmony default export */ const esm_node_parse = (parse); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/v35.js + + + +function stringToBytes(str) { + str = unescape(encodeURIComponent(str)); // UTF8 escape + + const bytes = []; + + for (let i = 0; i < str.length; ++i) { + bytes.push(str.charCodeAt(i)); + } + + return bytes; +} + +const DNS = '6ba7b810-9dad-11d1-80b4-00c04fd430c8'; +const URL = '6ba7b811-9dad-11d1-80b4-00c04fd430c8'; +/* harmony default export */ function v35(name, version, hashfunc) { + function generateUUID(value, namespace, buf, offset) { + if (typeof value === 'string') { + value = stringToBytes(value); + } + + if (typeof namespace === 'string') { + namespace = esm_node_parse(namespace); + } + + if (namespace.length !== 16) { + throw TypeError('Namespace must be array-like (16 iterable integer values, 0-255)'); + } // Compute hash of namespace and value, Per 4.3 + // Future: Use spread syntax when supported on all platforms, e.g. `bytes = + // hashfunc([...namespace, ... value])` + + + let bytes = new Uint8Array(16 + value.length); + bytes.set(namespace); + bytes.set(value, namespace.length); + bytes = hashfunc(bytes); + bytes[6] = bytes[6] & 0x0f | version; + bytes[8] = bytes[8] & 0x3f | 0x80; + + if (buf) { + offset = offset || 0; + + for (let i = 0; i < 16; ++i) { + buf[offset + i] = bytes[i]; + } + + return buf; + } + + return esm_node_stringify(bytes); + } // Function#name is not settable on some platforms (#270) + + + try { + generateUUID.name = name; // eslint-disable-next-line no-empty + } catch (err) {} // For CommonJS default export support + + + generateUUID.DNS = DNS; + generateUUID.URL = URL; + return generateUUID; +} +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/md5.js + + +function md5(bytes) { + if (Array.isArray(bytes)) { + bytes = Buffer.from(bytes); + } else if (typeof bytes === 'string') { + bytes = Buffer.from(bytes, 'utf8'); + } + + return external_crypto_default().createHash('md5').update(bytes).digest(); +} + +/* harmony default export */ const esm_node_md5 = (md5); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/v3.js + + +const v3 = v35('v3', 0x30, esm_node_md5); +/* harmony default export */ const esm_node_v3 = (v3); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/v4.js + + + +function v4(options, buf, offset) { + options = options || {}; + const rnds = options.random || (options.rng || rng)(); // Per 4.4, set bits for version and `clock_seq_hi_and_reserved` + + rnds[6] = rnds[6] & 0x0f | 0x40; + rnds[8] = rnds[8] & 0x3f | 0x80; // Copy bytes to buffer, if provided + + if (buf) { + offset = offset || 0; + + for (let i = 0; i < 16; ++i) { + buf[offset + i] = rnds[i]; + } + + return buf; + } + + return esm_node_stringify(rnds); +} + +/* harmony default export */ const esm_node_v4 = (v4); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/sha1.js + + +function sha1(bytes) { + if (Array.isArray(bytes)) { + bytes = Buffer.from(bytes); + } else if (typeof bytes === 'string') { + bytes = Buffer.from(bytes, 'utf8'); + } + + return external_crypto_default().createHash('sha1').update(bytes).digest(); +} + +/* harmony default export */ const esm_node_sha1 = (sha1); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/v5.js + + +const v5 = v35('v5', 0x50, esm_node_sha1); +/* harmony default export */ const esm_node_v5 = (v5); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/nil.js +/* harmony default export */ const nil = ('00000000-0000-0000-0000-000000000000'); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/version.js + + +function version(uuid) { + if (!esm_node_validate(uuid)) { + throw TypeError('Invalid UUID'); + } + + return parseInt(uuid.substr(14, 1), 16); +} + +/* harmony default export */ const esm_node_version = (version); +// CONCATENATED MODULE: ./node_modules/uuid/dist/esm-node/index.js + + + + + + + + + + +/***/ }), + +/***/ 641: +/***/ ((__unused_webpack_module, exports) => { + +// Underscore.js 1.13.4 +// https://underscorejs.org +// (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors +// Underscore may be freely distributed under the MIT license. + +Object.defineProperty(exports, "__esModule", ({ value: true })); + +// Current version. +var VERSION = '1.13.4'; + +// Establish the root object, `window` (`self`) in the browser, `global` +// on the server, or `this` in some virtual machines. We use `self` +// instead of `window` for `WebWorker` support. +var root = (typeof self == 'object' && self.self === self && self) || + (typeof global == 'object' && global.global === global && global) || + Function('return this')() || + {}; + +// Save bytes in the minified (but not gzipped) version: +var ArrayProto = Array.prototype, ObjProto = Object.prototype; +var SymbolProto = typeof Symbol !== 'undefined' ? Symbol.prototype : null; + +// Create quick reference variables for speed access to core prototypes. +var push = ArrayProto.push, + slice = ArrayProto.slice, + toString = ObjProto.toString, + hasOwnProperty = ObjProto.hasOwnProperty; + +// Modern feature detection. +var supportsArrayBuffer = typeof ArrayBuffer !== 'undefined', + supportsDataView = typeof DataView !== 'undefined'; + +// All **ECMAScript 5+** native function implementations that we hope to use +// are declared here. +var nativeIsArray = Array.isArray, + nativeKeys = Object.keys, + nativeCreate = Object.create, + nativeIsView = supportsArrayBuffer && ArrayBuffer.isView; + +// Create references to these builtin functions because we override them. +var _isNaN = isNaN, + _isFinite = isFinite; + +// Keys in IE < 9 that won't be iterated by `for key in ...` and thus missed. +var hasEnumBug = !{toString: null}.propertyIsEnumerable('toString'); +var nonEnumerableProps = ['valueOf', 'isPrototypeOf', 'toString', + 'propertyIsEnumerable', 'hasOwnProperty', 'toLocaleString']; + +// The largest integer that can be represented exactly. +var MAX_ARRAY_INDEX = Math.pow(2, 53) - 1; + +// Some functions take a variable number of arguments, or a few expected +// arguments at the beginning and then a variable number of values to operate +// on. This helper accumulates all remaining arguments past the function’s +// argument length (or an explicit `startIndex`), into an array that becomes +// the last argument. Similar to ES6’s "rest parameter". +function restArguments(func, startIndex) { + startIndex = startIndex == null ? func.length - 1 : +startIndex; + return function() { + var length = Math.max(arguments.length - startIndex, 0), + rest = Array(length), + index = 0; + for (; index < length; index++) { + rest[index] = arguments[index + startIndex]; + } + switch (startIndex) { + case 0: return func.call(this, rest); + case 1: return func.call(this, arguments[0], rest); + case 2: return func.call(this, arguments[0], arguments[1], rest); + } + var args = Array(startIndex + 1); + for (index = 0; index < startIndex; index++) { + args[index] = arguments[index]; + } + args[startIndex] = rest; + return func.apply(this, args); + }; +} + +// Is a given variable an object? +function isObject(obj) { + var type = typeof obj; + return type === 'function' || (type === 'object' && !!obj); +} + +// Is a given value equal to null? +function isNull(obj) { + return obj === null; +} + +// Is a given variable undefined? +function isUndefined(obj) { + return obj === void 0; +} + +// Is a given value a boolean? +function isBoolean(obj) { + return obj === true || obj === false || toString.call(obj) === '[object Boolean]'; +} + +// Is a given value a DOM element? +function isElement(obj) { + return !!(obj && obj.nodeType === 1); +} + +// Internal function for creating a `toString`-based type tester. +function tagTester(name) { + var tag = '[object ' + name + ']'; + return function(obj) { + return toString.call(obj) === tag; + }; +} + +var isString = tagTester('String'); + +var isNumber = tagTester('Number'); + +var isDate = tagTester('Date'); + +var isRegExp = tagTester('RegExp'); + +var isError = tagTester('Error'); + +var isSymbol = tagTester('Symbol'); + +var isArrayBuffer = tagTester('ArrayBuffer'); + +var isFunction = tagTester('Function'); + +// Optimize `isFunction` if appropriate. Work around some `typeof` bugs in old +// v8, IE 11 (#1621), Safari 8 (#1929), and PhantomJS (#2236). +var nodelist = root.document && root.document.childNodes; +if ( true && typeof Int8Array != 'object' && typeof nodelist != 'function') { + isFunction = function(obj) { + return typeof obj == 'function' || false; + }; +} + +var isFunction$1 = isFunction; + +var hasObjectTag = tagTester('Object'); + +// In IE 10 - Edge 13, `DataView` has string tag `'[object Object]'`. +// In IE 11, the most common among them, this problem also applies to +// `Map`, `WeakMap` and `Set`. +var hasStringTagBug = ( + supportsDataView && hasObjectTag(new DataView(new ArrayBuffer(8))) + ), + isIE11 = (typeof Map !== 'undefined' && hasObjectTag(new Map)); + +var isDataView = tagTester('DataView'); + +// In IE 10 - Edge 13, we need a different heuristic +// to determine whether an object is a `DataView`. +function ie10IsDataView(obj) { + return obj != null && isFunction$1(obj.getInt8) && isArrayBuffer(obj.buffer); +} + +var isDataView$1 = (hasStringTagBug ? ie10IsDataView : isDataView); + +// Is a given value an array? +// Delegates to ECMA5's native `Array.isArray`. +var isArray = nativeIsArray || tagTester('Array'); + +// Internal function to check whether `key` is an own property name of `obj`. +function has$1(obj, key) { + return obj != null && hasOwnProperty.call(obj, key); +} + +var isArguments = tagTester('Arguments'); + +// Define a fallback version of the method in browsers (ahem, IE < 9), where +// there isn't any inspectable "Arguments" type. +(function() { + if (!isArguments(arguments)) { + isArguments = function(obj) { + return has$1(obj, 'callee'); + }; + } +}()); + +var isArguments$1 = isArguments; + +// Is a given object a finite number? +function isFinite$1(obj) { + return !isSymbol(obj) && _isFinite(obj) && !isNaN(parseFloat(obj)); +} + +// Is the given value `NaN`? +function isNaN$1(obj) { + return isNumber(obj) && _isNaN(obj); +} + +// Predicate-generating function. Often useful outside of Underscore. +function constant(value) { + return function() { + return value; + }; +} + +// Common internal logic for `isArrayLike` and `isBufferLike`. +function createSizePropertyCheck(getSizeProperty) { + return function(collection) { + var sizeProperty = getSizeProperty(collection); + return typeof sizeProperty == 'number' && sizeProperty >= 0 && sizeProperty <= MAX_ARRAY_INDEX; + } +} + +// Internal helper to generate a function to obtain property `key` from `obj`. +function shallowProperty(key) { + return function(obj) { + return obj == null ? void 0 : obj[key]; + }; +} + +// Internal helper to obtain the `byteLength` property of an object. +var getByteLength = shallowProperty('byteLength'); + +// Internal helper to determine whether we should spend extensive checks against +// `ArrayBuffer` et al. +var isBufferLike = createSizePropertyCheck(getByteLength); + +// Is a given value a typed array? +var typedArrayPattern = /\[object ((I|Ui)nt(8|16|32)|Float(32|64)|Uint8Clamped|Big(I|Ui)nt64)Array\]/; +function isTypedArray(obj) { + // `ArrayBuffer.isView` is the most future-proof, so use it when available. + // Otherwise, fall back on the above regular expression. + return nativeIsView ? (nativeIsView(obj) && !isDataView$1(obj)) : + isBufferLike(obj) && typedArrayPattern.test(toString.call(obj)); +} + +var isTypedArray$1 = supportsArrayBuffer ? isTypedArray : constant(false); + +// Internal helper to obtain the `length` property of an object. +var getLength = shallowProperty('length'); + +// Internal helper to create a simple lookup structure. +// `collectNonEnumProps` used to depend on `_.contains`, but this led to +// circular imports. `emulatedSet` is a one-off solution that only works for +// arrays of strings. +function emulatedSet(keys) { + var hash = {}; + for (var l = keys.length, i = 0; i < l; ++i) hash[keys[i]] = true; + return { + contains: function(key) { return hash[key] === true; }, + push: function(key) { + hash[key] = true; + return keys.push(key); + } + }; +} + +// Internal helper. Checks `keys` for the presence of keys in IE < 9 that won't +// be iterated by `for key in ...` and thus missed. Extends `keys` in place if +// needed. +function collectNonEnumProps(obj, keys) { + keys = emulatedSet(keys); + var nonEnumIdx = nonEnumerableProps.length; + var constructor = obj.constructor; + var proto = (isFunction$1(constructor) && constructor.prototype) || ObjProto; + + // Constructor is a special case. + var prop = 'constructor'; + if (has$1(obj, prop) && !keys.contains(prop)) keys.push(prop); + + while (nonEnumIdx--) { + prop = nonEnumerableProps[nonEnumIdx]; + if (prop in obj && obj[prop] !== proto[prop] && !keys.contains(prop)) { + keys.push(prop); + } + } +} + +// Retrieve the names of an object's own properties. +// Delegates to **ECMAScript 5**'s native `Object.keys`. +function keys(obj) { + if (!isObject(obj)) return []; + if (nativeKeys) return nativeKeys(obj); + var keys = []; + for (var key in obj) if (has$1(obj, key)) keys.push(key); + // Ahem, IE < 9. + if (hasEnumBug) collectNonEnumProps(obj, keys); + return keys; +} + +// Is a given array, string, or object empty? +// An "empty" object has no enumerable own-properties. +function isEmpty(obj) { + if (obj == null) return true; + // Skip the more expensive `toString`-based type checks if `obj` has no + // `.length`. + var length = getLength(obj); + if (typeof length == 'number' && ( + isArray(obj) || isString(obj) || isArguments$1(obj) + )) return length === 0; + return getLength(keys(obj)) === 0; +} + +// Returns whether an object has a given set of `key:value` pairs. +function isMatch(object, attrs) { + var _keys = keys(attrs), length = _keys.length; + if (object == null) return !length; + var obj = Object(object); + for (var i = 0; i < length; i++) { + var key = _keys[i]; + if (attrs[key] !== obj[key] || !(key in obj)) return false; + } + return true; +} + +// If Underscore is called as a function, it returns a wrapped object that can +// be used OO-style. This wrapper holds altered versions of all functions added +// through `_.mixin`. Wrapped objects may be chained. +function _$1(obj) { + if (obj instanceof _$1) return obj; + if (!(this instanceof _$1)) return new _$1(obj); + this._wrapped = obj; +} + +_$1.VERSION = VERSION; + +// Extracts the result from a wrapped and chained object. +_$1.prototype.value = function() { + return this._wrapped; +}; + +// Provide unwrapping proxies for some methods used in engine operations +// such as arithmetic and JSON stringification. +_$1.prototype.valueOf = _$1.prototype.toJSON = _$1.prototype.value; + +_$1.prototype.toString = function() { + return String(this._wrapped); +}; + +// Internal function to wrap or shallow-copy an ArrayBuffer, +// typed array or DataView to a new view, reusing the buffer. +function toBufferView(bufferSource) { + return new Uint8Array( + bufferSource.buffer || bufferSource, + bufferSource.byteOffset || 0, + getByteLength(bufferSource) + ); +} + +// We use this string twice, so give it a name for minification. +var tagDataView = '[object DataView]'; + +// Internal recursive comparison function for `_.isEqual`. +function eq(a, b, aStack, bStack) { + // Identical objects are equal. `0 === -0`, but they aren't identical. + // See the [Harmony `egal` proposal](https://wiki.ecmascript.org/doku.php?id=harmony:egal). + if (a === b) return a !== 0 || 1 / a === 1 / b; + // `null` or `undefined` only equal to itself (strict comparison). + if (a == null || b == null) return false; + // `NaN`s are equivalent, but non-reflexive. + if (a !== a) return b !== b; + // Exhaust primitive checks + var type = typeof a; + if (type !== 'function' && type !== 'object' && typeof b != 'object') return false; + return deepEq(a, b, aStack, bStack); +} + +// Internal recursive comparison function for `_.isEqual`. +function deepEq(a, b, aStack, bStack) { + // Unwrap any wrapped objects. + if (a instanceof _$1) a = a._wrapped; + if (b instanceof _$1) b = b._wrapped; + // Compare `[[Class]]` names. + var className = toString.call(a); + if (className !== toString.call(b)) return false; + // Work around a bug in IE 10 - Edge 13. + if (hasStringTagBug && className == '[object Object]' && isDataView$1(a)) { + if (!isDataView$1(b)) return false; + className = tagDataView; + } + switch (className) { + // These types are compared by value. + case '[object RegExp]': + // RegExps are coerced to strings for comparison (Note: '' + /a/i === '/a/i') + case '[object String]': + // Primitives and their corresponding object wrappers are equivalent; thus, `"5"` is + // equivalent to `new String("5")`. + return '' + a === '' + b; + case '[object Number]': + // `NaN`s are equivalent, but non-reflexive. + // Object(NaN) is equivalent to NaN. + if (+a !== +a) return +b !== +b; + // An `egal` comparison is performed for other numeric values. + return +a === 0 ? 1 / +a === 1 / b : +a === +b; + case '[object Date]': + case '[object Boolean]': + // Coerce dates and booleans to numeric primitive values. Dates are compared by their + // millisecond representations. Note that invalid dates with millisecond representations + // of `NaN` are not equivalent. + return +a === +b; + case '[object Symbol]': + return SymbolProto.valueOf.call(a) === SymbolProto.valueOf.call(b); + case '[object ArrayBuffer]': + case tagDataView: + // Coerce to typed array so we can fall through. + return deepEq(toBufferView(a), toBufferView(b), aStack, bStack); + } + + var areArrays = className === '[object Array]'; + if (!areArrays && isTypedArray$1(a)) { + var byteLength = getByteLength(a); + if (byteLength !== getByteLength(b)) return false; + if (a.buffer === b.buffer && a.byteOffset === b.byteOffset) return true; + areArrays = true; + } + if (!areArrays) { + if (typeof a != 'object' || typeof b != 'object') return false; + + // Objects with different constructors are not equivalent, but `Object`s or `Array`s + // from different frames are. + var aCtor = a.constructor, bCtor = b.constructor; + if (aCtor !== bCtor && !(isFunction$1(aCtor) && aCtor instanceof aCtor && + isFunction$1(bCtor) && bCtor instanceof bCtor) + && ('constructor' in a && 'constructor' in b)) { + return false; + } + } + // Assume equality for cyclic structures. The algorithm for detecting cyclic + // structures is adapted from ES 5.1 section 15.12.3, abstract operation `JO`. + + // Initializing stack of traversed objects. + // It's done here since we only need them for objects and arrays comparison. + aStack = aStack || []; + bStack = bStack || []; + var length = aStack.length; + while (length--) { + // Linear search. Performance is inversely proportional to the number of + // unique nested structures. + if (aStack[length] === a) return bStack[length] === b; + } + + // Add the first object to the stack of traversed objects. + aStack.push(a); + bStack.push(b); + + // Recursively compare objects and arrays. + if (areArrays) { + // Compare array lengths to determine if a deep comparison is necessary. + length = a.length; + if (length !== b.length) return false; + // Deep compare the contents, ignoring non-numeric properties. + while (length--) { + if (!eq(a[length], b[length], aStack, bStack)) return false; + } + } else { + // Deep compare objects. + var _keys = keys(a), key; + length = _keys.length; + // Ensure that both objects contain the same number of properties before comparing deep equality. + if (keys(b).length !== length) return false; + while (length--) { + // Deep compare each member + key = _keys[length]; + if (!(has$1(b, key) && eq(a[key], b[key], aStack, bStack))) return false; + } + } + // Remove the first object from the stack of traversed objects. + aStack.pop(); + bStack.pop(); + return true; +} + +// Perform a deep comparison to check if two objects are equal. +function isEqual(a, b) { + return eq(a, b); +} + +// Retrieve all the enumerable property names of an object. +function allKeys(obj) { + if (!isObject(obj)) return []; + var keys = []; + for (var key in obj) keys.push(key); + // Ahem, IE < 9. + if (hasEnumBug) collectNonEnumProps(obj, keys); + return keys; +} + +// Since the regular `Object.prototype.toString` type tests don't work for +// some types in IE 11, we use a fingerprinting heuristic instead, based +// on the methods. It's not great, but it's the best we got. +// The fingerprint method lists are defined below. +function ie11fingerprint(methods) { + var length = getLength(methods); + return function(obj) { + if (obj == null) return false; + // `Map`, `WeakMap` and `Set` have no enumerable keys. + var keys = allKeys(obj); + if (getLength(keys)) return false; + for (var i = 0; i < length; i++) { + if (!isFunction$1(obj[methods[i]])) return false; + } + // If we are testing against `WeakMap`, we need to ensure that + // `obj` doesn't have a `forEach` method in order to distinguish + // it from a regular `Map`. + return methods !== weakMapMethods || !isFunction$1(obj[forEachName]); + }; +} + +// In the interest of compact minification, we write +// each string in the fingerprints only once. +var forEachName = 'forEach', + hasName = 'has', + commonInit = ['clear', 'delete'], + mapTail = ['get', hasName, 'set']; + +// `Map`, `WeakMap` and `Set` each have slightly different +// combinations of the above sublists. +var mapMethods = commonInit.concat(forEachName, mapTail), + weakMapMethods = commonInit.concat(mapTail), + setMethods = ['add'].concat(commonInit, forEachName, hasName); + +var isMap = isIE11 ? ie11fingerprint(mapMethods) : tagTester('Map'); + +var isWeakMap = isIE11 ? ie11fingerprint(weakMapMethods) : tagTester('WeakMap'); + +var isSet = isIE11 ? ie11fingerprint(setMethods) : tagTester('Set'); + +var isWeakSet = tagTester('WeakSet'); + +// Retrieve the values of an object's properties. +function values(obj) { + var _keys = keys(obj); + var length = _keys.length; + var values = Array(length); + for (var i = 0; i < length; i++) { + values[i] = obj[_keys[i]]; + } + return values; +} + +// Convert an object into a list of `[key, value]` pairs. +// The opposite of `_.object` with one argument. +function pairs(obj) { + var _keys = keys(obj); + var length = _keys.length; + var pairs = Array(length); + for (var i = 0; i < length; i++) { + pairs[i] = [_keys[i], obj[_keys[i]]]; + } + return pairs; +} + +// Invert the keys and values of an object. The values must be serializable. +function invert(obj) { + var result = {}; + var _keys = keys(obj); + for (var i = 0, length = _keys.length; i < length; i++) { + result[obj[_keys[i]]] = _keys[i]; + } + return result; +} + +// Return a sorted list of the function names available on the object. +function functions(obj) { + var names = []; + for (var key in obj) { + if (isFunction$1(obj[key])) names.push(key); + } + return names.sort(); +} + +// An internal function for creating assigner functions. +function createAssigner(keysFunc, defaults) { + return function(obj) { + var length = arguments.length; + if (defaults) obj = Object(obj); + if (length < 2 || obj == null) return obj; + for (var index = 1; index < length; index++) { + var source = arguments[index], + keys = keysFunc(source), + l = keys.length; + for (var i = 0; i < l; i++) { + var key = keys[i]; + if (!defaults || obj[key] === void 0) obj[key] = source[key]; + } + } + return obj; + }; +} + +// Extend a given object with all the properties in passed-in object(s). +var extend = createAssigner(allKeys); + +// Assigns a given object with all the own properties in the passed-in +// object(s). +// (https://developer.mozilla.org/docs/Web/JavaScript/Reference/Global_Objects/Object/assign) +var extendOwn = createAssigner(keys); + +// Fill in a given object with default properties. +var defaults = createAssigner(allKeys, true); + +// Create a naked function reference for surrogate-prototype-swapping. +function ctor() { + return function(){}; +} + +// An internal function for creating a new object that inherits from another. +function baseCreate(prototype) { + if (!isObject(prototype)) return {}; + if (nativeCreate) return nativeCreate(prototype); + var Ctor = ctor(); + Ctor.prototype = prototype; + var result = new Ctor; + Ctor.prototype = null; + return result; +} + +// Creates an object that inherits from the given prototype object. +// If additional properties are provided then they will be added to the +// created object. +function create(prototype, props) { + var result = baseCreate(prototype); + if (props) extendOwn(result, props); + return result; +} + +// Create a (shallow-cloned) duplicate of an object. +function clone(obj) { + if (!isObject(obj)) return obj; + return isArray(obj) ? obj.slice() : extend({}, obj); +} + +// Invokes `interceptor` with the `obj` and then returns `obj`. +// The primary purpose of this method is to "tap into" a method chain, in +// order to perform operations on intermediate results within the chain. +function tap(obj, interceptor) { + interceptor(obj); + return obj; +} + +// Normalize a (deep) property `path` to array. +// Like `_.iteratee`, this function can be customized. +function toPath$1(path) { + return isArray(path) ? path : [path]; +} +_$1.toPath = toPath$1; + +// Internal wrapper for `_.toPath` to enable minification. +// Similar to `cb` for `_.iteratee`. +function toPath(path) { + return _$1.toPath(path); +} + +// Internal function to obtain a nested property in `obj` along `path`. +function deepGet(obj, path) { + var length = path.length; + for (var i = 0; i < length; i++) { + if (obj == null) return void 0; + obj = obj[path[i]]; + } + return length ? obj : void 0; +} + +// Get the value of the (deep) property on `path` from `object`. +// If any property in `path` does not exist or if the value is +// `undefined`, return `defaultValue` instead. +// The `path` is normalized through `_.toPath`. +function get(object, path, defaultValue) { + var value = deepGet(object, toPath(path)); + return isUndefined(value) ? defaultValue : value; +} + +// Shortcut function for checking if an object has a given property directly on +// itself (in other words, not on a prototype). Unlike the internal `has` +// function, this public version can also traverse nested properties. +function has(obj, path) { + path = toPath(path); + var length = path.length; + for (var i = 0; i < length; i++) { + var key = path[i]; + if (!has$1(obj, key)) return false; + obj = obj[key]; + } + return !!length; +} + +// Keep the identity function around for default iteratees. +function identity(value) { + return value; +} + +// Returns a predicate for checking whether an object has a given set of +// `key:value` pairs. +function matcher(attrs) { + attrs = extendOwn({}, attrs); + return function(obj) { + return isMatch(obj, attrs); + }; +} + +// Creates a function that, when passed an object, will traverse that object’s +// properties down the given `path`, specified as an array of keys or indices. +function property(path) { + path = toPath(path); + return function(obj) { + return deepGet(obj, path); + }; +} + +// Internal function that returns an efficient (for current engines) version +// of the passed-in callback, to be repeatedly applied in other Underscore +// functions. +function optimizeCb(func, context, argCount) { + if (context === void 0) return func; + switch (argCount == null ? 3 : argCount) { + case 1: return function(value) { + return func.call(context, value); + }; + // The 2-argument case is omitted because we’re not using it. + case 3: return function(value, index, collection) { + return func.call(context, value, index, collection); + }; + case 4: return function(accumulator, value, index, collection) { + return func.call(context, accumulator, value, index, collection); + }; + } + return function() { + return func.apply(context, arguments); + }; +} + +// An internal function to generate callbacks that can be applied to each +// element in a collection, returning the desired result — either `_.identity`, +// an arbitrary callback, a property matcher, or a property accessor. +function baseIteratee(value, context, argCount) { + if (value == null) return identity; + if (isFunction$1(value)) return optimizeCb(value, context, argCount); + if (isObject(value) && !isArray(value)) return matcher(value); + return property(value); +} + +// External wrapper for our callback generator. Users may customize +// `_.iteratee` if they want additional predicate/iteratee shorthand styles. +// This abstraction hides the internal-only `argCount` argument. +function iteratee(value, context) { + return baseIteratee(value, context, Infinity); +} +_$1.iteratee = iteratee; + +// The function we call internally to generate a callback. It invokes +// `_.iteratee` if overridden, otherwise `baseIteratee`. +function cb(value, context, argCount) { + if (_$1.iteratee !== iteratee) return _$1.iteratee(value, context); + return baseIteratee(value, context, argCount); +} + +// Returns the results of applying the `iteratee` to each element of `obj`. +// In contrast to `_.map` it returns an object. +function mapObject(obj, iteratee, context) { + iteratee = cb(iteratee, context); + var _keys = keys(obj), + length = _keys.length, + results = {}; + for (var index = 0; index < length; index++) { + var currentKey = _keys[index]; + results[currentKey] = iteratee(obj[currentKey], currentKey, obj); + } + return results; +} + +// Predicate-generating function. Often useful outside of Underscore. +function noop(){} + +// Generates a function for a given object that returns a given property. +function propertyOf(obj) { + if (obj == null) return noop; + return function(path) { + return get(obj, path); + }; +} + +// Run a function **n** times. +function times(n, iteratee, context) { + var accum = Array(Math.max(0, n)); + iteratee = optimizeCb(iteratee, context, 1); + for (var i = 0; i < n; i++) accum[i] = iteratee(i); + return accum; +} + +// Return a random integer between `min` and `max` (inclusive). +function random(min, max) { + if (max == null) { + max = min; + min = 0; + } + return min + Math.floor(Math.random() * (max - min + 1)); +} + +// A (possibly faster) way to get the current timestamp as an integer. +var now = Date.now || function() { + return new Date().getTime(); +}; + +// Internal helper to generate functions for escaping and unescaping strings +// to/from HTML interpolation. +function createEscaper(map) { + var escaper = function(match) { + return map[match]; + }; + // Regexes for identifying a key that needs to be escaped. + var source = '(?:' + keys(map).join('|') + ')'; + var testRegexp = RegExp(source); + var replaceRegexp = RegExp(source, 'g'); + return function(string) { + string = string == null ? '' : '' + string; + return testRegexp.test(string) ? string.replace(replaceRegexp, escaper) : string; + }; +} + +// Internal list of HTML entities for escaping. +var escapeMap = { + '&': '&', + '<': '<', + '>': '>', + '"': '"', + "'": ''', + '`': '`' +}; + +// Function for escaping strings to HTML interpolation. +var _escape = createEscaper(escapeMap); + +// Internal list of HTML entities for unescaping. +var unescapeMap = invert(escapeMap); + +// Function for unescaping strings from HTML interpolation. +var _unescape = createEscaper(unescapeMap); + +// By default, Underscore uses ERB-style template delimiters. Change the +// following template settings to use alternative delimiters. +var templateSettings = _$1.templateSettings = { + evaluate: /<%([\s\S]+?)%>/g, + interpolate: /<%=([\s\S]+?)%>/g, + escape: /<%-([\s\S]+?)%>/g +}; + +// When customizing `_.templateSettings`, if you don't want to define an +// interpolation, evaluation or escaping regex, we need one that is +// guaranteed not to match. +var noMatch = /(.)^/; + +// Certain characters need to be escaped so that they can be put into a +// string literal. +var escapes = { + "'": "'", + '\\': '\\', + '\r': 'r', + '\n': 'n', + '\u2028': 'u2028', + '\u2029': 'u2029' +}; + +var escapeRegExp = /\\|'|\r|\n|\u2028|\u2029/g; + +function escapeChar(match) { + return '\\' + escapes[match]; +} + +// In order to prevent third-party code injection through +// `_.templateSettings.variable`, we test it against the following regular +// expression. It is intentionally a bit more liberal than just matching valid +// identifiers, but still prevents possible loopholes through defaults or +// destructuring assignment. +var bareIdentifier = /^\s*(\w|\$)+\s*$/; + +// JavaScript micro-templating, similar to John Resig's implementation. +// Underscore templating handles arbitrary delimiters, preserves whitespace, +// and correctly escapes quotes within interpolated code. +// NB: `oldSettings` only exists for backwards compatibility. +function template(text, settings, oldSettings) { + if (!settings && oldSettings) settings = oldSettings; + settings = defaults({}, settings, _$1.templateSettings); + + // Combine delimiters into one regular expression via alternation. + var matcher = RegExp([ + (settings.escape || noMatch).source, + (settings.interpolate || noMatch).source, + (settings.evaluate || noMatch).source + ].join('|') + '|$', 'g'); + + // Compile the template source, escaping string literals appropriately. + var index = 0; + var source = "__p+='"; + text.replace(matcher, function(match, escape, interpolate, evaluate, offset) { + source += text.slice(index, offset).replace(escapeRegExp, escapeChar); + index = offset + match.length; + + if (escape) { + source += "'+\n((__t=(" + escape + "))==null?'':_.escape(__t))+\n'"; + } else if (interpolate) { + source += "'+\n((__t=(" + interpolate + "))==null?'':__t)+\n'"; + } else if (evaluate) { + source += "';\n" + evaluate + "\n__p+='"; + } + + // Adobe VMs need the match returned to produce the correct offset. + return match; + }); + source += "';\n"; + + var argument = settings.variable; + if (argument) { + // Insure against third-party code injection. (CVE-2021-23358) + if (!bareIdentifier.test(argument)) throw new Error( + 'variable is not a bare identifier: ' + argument + ); + } else { + // If a variable is not specified, place data values in local scope. + source = 'with(obj||{}){\n' + source + '}\n'; + argument = 'obj'; + } + + source = "var __t,__p='',__j=Array.prototype.join," + + "print=function(){__p+=__j.call(arguments,'');};\n" + + source + 'return __p;\n'; + + var render; + try { + render = new Function(argument, '_', source); + } catch (e) { + e.source = source; + throw e; + } + + var template = function(data) { + return render.call(this, data, _$1); + }; + + // Provide the compiled source as a convenience for precompilation. + template.source = 'function(' + argument + '){\n' + source + '}'; + + return template; +} + +// Traverses the children of `obj` along `path`. If a child is a function, it +// is invoked with its parent as context. Returns the value of the final +// child, or `fallback` if any child is undefined. +function result(obj, path, fallback) { + path = toPath(path); + var length = path.length; + if (!length) { + return isFunction$1(fallback) ? fallback.call(obj) : fallback; + } + for (var i = 0; i < length; i++) { + var prop = obj == null ? void 0 : obj[path[i]]; + if (prop === void 0) { + prop = fallback; + i = length; // Ensure we don't continue iterating. + } + obj = isFunction$1(prop) ? prop.call(obj) : prop; + } + return obj; +} + +// Generate a unique integer id (unique within the entire client session). +// Useful for temporary DOM ids. +var idCounter = 0; +function uniqueId(prefix) { + var id = ++idCounter + ''; + return prefix ? prefix + id : id; +} + +// Start chaining a wrapped Underscore object. +function chain(obj) { + var instance = _$1(obj); + instance._chain = true; + return instance; +} + +// Internal function to execute `sourceFunc` bound to `context` with optional +// `args`. Determines whether to execute a function as a constructor or as a +// normal function. +function executeBound(sourceFunc, boundFunc, context, callingContext, args) { + if (!(callingContext instanceof boundFunc)) return sourceFunc.apply(context, args); + var self = baseCreate(sourceFunc.prototype); + var result = sourceFunc.apply(self, args); + if (isObject(result)) return result; + return self; +} + +// Partially apply a function by creating a version that has had some of its +// arguments pre-filled, without changing its dynamic `this` context. `_` acts +// as a placeholder by default, allowing any combination of arguments to be +// pre-filled. Set `_.partial.placeholder` for a custom placeholder argument. +var partial = restArguments(function(func, boundArgs) { + var placeholder = partial.placeholder; + var bound = function() { + var position = 0, length = boundArgs.length; + var args = Array(length); + for (var i = 0; i < length; i++) { + args[i] = boundArgs[i] === placeholder ? arguments[position++] : boundArgs[i]; + } + while (position < arguments.length) args.push(arguments[position++]); + return executeBound(func, bound, this, this, args); + }; + return bound; +}); + +partial.placeholder = _$1; + +// Create a function bound to a given object (assigning `this`, and arguments, +// optionally). +var bind = restArguments(function(func, context, args) { + if (!isFunction$1(func)) throw new TypeError('Bind must be called on a function'); + var bound = restArguments(function(callArgs) { + return executeBound(func, bound, context, this, args.concat(callArgs)); + }); + return bound; +}); + +// Internal helper for collection methods to determine whether a collection +// should be iterated as an array or as an object. +// Related: https://people.mozilla.org/~jorendorff/es6-draft.html#sec-tolength +// Avoids a very nasty iOS 8 JIT bug on ARM-64. #2094 +var isArrayLike = createSizePropertyCheck(getLength); + +// Internal implementation of a recursive `flatten` function. +function flatten$1(input, depth, strict, output) { + output = output || []; + if (!depth && depth !== 0) { + depth = Infinity; + } else if (depth <= 0) { + return output.concat(input); + } + var idx = output.length; + for (var i = 0, length = getLength(input); i < length; i++) { + var value = input[i]; + if (isArrayLike(value) && (isArray(value) || isArguments$1(value))) { + // Flatten current level of array or arguments object. + if (depth > 1) { + flatten$1(value, depth - 1, strict, output); + idx = output.length; + } else { + var j = 0, len = value.length; + while (j < len) output[idx++] = value[j++]; + } + } else if (!strict) { + output[idx++] = value; + } + } + return output; +} + +// Bind a number of an object's methods to that object. Remaining arguments +// are the method names to be bound. Useful for ensuring that all callbacks +// defined on an object belong to it. +var bindAll = restArguments(function(obj, keys) { + keys = flatten$1(keys, false, false); + var index = keys.length; + if (index < 1) throw new Error('bindAll must be passed function names'); + while (index--) { + var key = keys[index]; + obj[key] = bind(obj[key], obj); + } + return obj; +}); + +// Memoize an expensive function by storing its results. +function memoize(func, hasher) { + var memoize = function(key) { + var cache = memoize.cache; + var address = '' + (hasher ? hasher.apply(this, arguments) : key); + if (!has$1(cache, address)) cache[address] = func.apply(this, arguments); + return cache[address]; + }; + memoize.cache = {}; + return memoize; +} + +// Delays a function for the given number of milliseconds, and then calls +// it with the arguments supplied. +var delay = restArguments(function(func, wait, args) { + return setTimeout(function() { + return func.apply(null, args); + }, wait); +}); + +// Defers a function, scheduling it to run after the current call stack has +// cleared. +var defer = partial(delay, _$1, 1); + +// Returns a function, that, when invoked, will only be triggered at most once +// during a given window of time. Normally, the throttled function will run +// as much as it can, without ever going more than once per `wait` duration; +// but if you'd like to disable the execution on the leading edge, pass +// `{leading: false}`. To disable execution on the trailing edge, ditto. +function throttle(func, wait, options) { + var timeout, context, args, result; + var previous = 0; + if (!options) options = {}; + + var later = function() { + previous = options.leading === false ? 0 : now(); + timeout = null; + result = func.apply(context, args); + if (!timeout) context = args = null; + }; + + var throttled = function() { + var _now = now(); + if (!previous && options.leading === false) previous = _now; + var remaining = wait - (_now - previous); + context = this; + args = arguments; + if (remaining <= 0 || remaining > wait) { + if (timeout) { + clearTimeout(timeout); + timeout = null; + } + previous = _now; + result = func.apply(context, args); + if (!timeout) context = args = null; + } else if (!timeout && options.trailing !== false) { + timeout = setTimeout(later, remaining); + } + return result; + }; + + throttled.cancel = function() { + clearTimeout(timeout); + previous = 0; + timeout = context = args = null; + }; + + return throttled; +} + +// When a sequence of calls of the returned function ends, the argument +// function is triggered. The end of a sequence is defined by the `wait` +// parameter. If `immediate` is passed, the argument function will be +// triggered at the beginning of the sequence instead of at the end. +function debounce(func, wait, immediate) { + var timeout, previous, args, result, context; + + var later = function() { + var passed = now() - previous; + if (wait > passed) { + timeout = setTimeout(later, wait - passed); + } else { + timeout = null; + if (!immediate) result = func.apply(context, args); + // This check is needed because `func` can recursively invoke `debounced`. + if (!timeout) args = context = null; + } + }; + + var debounced = restArguments(function(_args) { + context = this; + args = _args; + previous = now(); + if (!timeout) { + timeout = setTimeout(later, wait); + if (immediate) result = func.apply(context, args); + } + return result; + }); + + debounced.cancel = function() { + clearTimeout(timeout); + timeout = args = context = null; + }; + + return debounced; +} + +// Returns the first function passed as an argument to the second, +// allowing you to adjust arguments, run code before and after, and +// conditionally execute the original function. +function wrap(func, wrapper) { + return partial(wrapper, func); +} + +// Returns a negated version of the passed-in predicate. +function negate(predicate) { + return function() { + return !predicate.apply(this, arguments); + }; +} + +// Returns a function that is the composition of a list of functions, each +// consuming the return value of the function that follows. +function compose() { + var args = arguments; + var start = args.length - 1; + return function() { + var i = start; + var result = args[start].apply(this, arguments); + while (i--) result = args[i].call(this, result); + return result; + }; +} + +// Returns a function that will only be executed on and after the Nth call. +function after(times, func) { + return function() { + if (--times < 1) { + return func.apply(this, arguments); + } + }; +} + +// Returns a function that will only be executed up to (but not including) the +// Nth call. +function before(times, func) { + var memo; + return function() { + if (--times > 0) { + memo = func.apply(this, arguments); + } + if (times <= 1) func = null; + return memo; + }; +} + +// Returns a function that will be executed at most one time, no matter how +// often you call it. Useful for lazy initialization. +var once = partial(before, 2); + +// Returns the first key on an object that passes a truth test. +function findKey(obj, predicate, context) { + predicate = cb(predicate, context); + var _keys = keys(obj), key; + for (var i = 0, length = _keys.length; i < length; i++) { + key = _keys[i]; + if (predicate(obj[key], key, obj)) return key; + } +} + +// Internal function to generate `_.findIndex` and `_.findLastIndex`. +function createPredicateIndexFinder(dir) { + return function(array, predicate, context) { + predicate = cb(predicate, context); + var length = getLength(array); + var index = dir > 0 ? 0 : length - 1; + for (; index >= 0 && index < length; index += dir) { + if (predicate(array[index], index, array)) return index; + } + return -1; + }; +} + +// Returns the first index on an array-like that passes a truth test. +var findIndex = createPredicateIndexFinder(1); + +// Returns the last index on an array-like that passes a truth test. +var findLastIndex = createPredicateIndexFinder(-1); + +// Use a comparator function to figure out the smallest index at which +// an object should be inserted so as to maintain order. Uses binary search. +function sortedIndex(array, obj, iteratee, context) { + iteratee = cb(iteratee, context, 1); + var value = iteratee(obj); + var low = 0, high = getLength(array); + while (low < high) { + var mid = Math.floor((low + high) / 2); + if (iteratee(array[mid]) < value) low = mid + 1; else high = mid; + } + return low; +} + +// Internal function to generate the `_.indexOf` and `_.lastIndexOf` functions. +function createIndexFinder(dir, predicateFind, sortedIndex) { + return function(array, item, idx) { + var i = 0, length = getLength(array); + if (typeof idx == 'number') { + if (dir > 0) { + i = idx >= 0 ? idx : Math.max(idx + length, i); + } else { + length = idx >= 0 ? Math.min(idx + 1, length) : idx + length + 1; + } + } else if (sortedIndex && idx && length) { + idx = sortedIndex(array, item); + return array[idx] === item ? idx : -1; + } + if (item !== item) { + idx = predicateFind(slice.call(array, i, length), isNaN$1); + return idx >= 0 ? idx + i : -1; + } + for (idx = dir > 0 ? i : length - 1; idx >= 0 && idx < length; idx += dir) { + if (array[idx] === item) return idx; + } + return -1; + }; +} + +// Return the position of the first occurrence of an item in an array, +// or -1 if the item is not included in the array. +// If the array is large and already in sort order, pass `true` +// for **isSorted** to use binary search. +var indexOf = createIndexFinder(1, findIndex, sortedIndex); + +// Return the position of the last occurrence of an item in an array, +// or -1 if the item is not included in the array. +var lastIndexOf = createIndexFinder(-1, findLastIndex); + +// Return the first value which passes a truth test. +function find(obj, predicate, context) { + var keyFinder = isArrayLike(obj) ? findIndex : findKey; + var key = keyFinder(obj, predicate, context); + if (key !== void 0 && key !== -1) return obj[key]; +} + +// Convenience version of a common use case of `_.find`: getting the first +// object containing specific `key:value` pairs. +function findWhere(obj, attrs) { + return find(obj, matcher(attrs)); +} + +// The cornerstone for collection functions, an `each` +// implementation, aka `forEach`. +// Handles raw objects in addition to array-likes. Treats all +// sparse array-likes as if they were dense. +function each(obj, iteratee, context) { + iteratee = optimizeCb(iteratee, context); + var i, length; + if (isArrayLike(obj)) { + for (i = 0, length = obj.length; i < length; i++) { + iteratee(obj[i], i, obj); + } + } else { + var _keys = keys(obj); + for (i = 0, length = _keys.length; i < length; i++) { + iteratee(obj[_keys[i]], _keys[i], obj); + } + } + return obj; +} + +// Return the results of applying the iteratee to each element. +function map(obj, iteratee, context) { + iteratee = cb(iteratee, context); + var _keys = !isArrayLike(obj) && keys(obj), + length = (_keys || obj).length, + results = Array(length); + for (var index = 0; index < length; index++) { + var currentKey = _keys ? _keys[index] : index; + results[index] = iteratee(obj[currentKey], currentKey, obj); + } + return results; +} + +// Internal helper to create a reducing function, iterating left or right. +function createReduce(dir) { + // Wrap code that reassigns argument variables in a separate function than + // the one that accesses `arguments.length` to avoid a perf hit. (#1991) + var reducer = function(obj, iteratee, memo, initial) { + var _keys = !isArrayLike(obj) && keys(obj), + length = (_keys || obj).length, + index = dir > 0 ? 0 : length - 1; + if (!initial) { + memo = obj[_keys ? _keys[index] : index]; + index += dir; + } + for (; index >= 0 && index < length; index += dir) { + var currentKey = _keys ? _keys[index] : index; + memo = iteratee(memo, obj[currentKey], currentKey, obj); + } + return memo; + }; + + return function(obj, iteratee, memo, context) { + var initial = arguments.length >= 3; + return reducer(obj, optimizeCb(iteratee, context, 4), memo, initial); + }; +} + +// **Reduce** builds up a single result from a list of values, aka `inject`, +// or `foldl`. +var reduce = createReduce(1); + +// The right-associative version of reduce, also known as `foldr`. +var reduceRight = createReduce(-1); + +// Return all the elements that pass a truth test. +function filter(obj, predicate, context) { + var results = []; + predicate = cb(predicate, context); + each(obj, function(value, index, list) { + if (predicate(value, index, list)) results.push(value); + }); + return results; +} + +// Return all the elements for which a truth test fails. +function reject(obj, predicate, context) { + return filter(obj, negate(cb(predicate)), context); +} + +// Determine whether all of the elements pass a truth test. +function every(obj, predicate, context) { + predicate = cb(predicate, context); + var _keys = !isArrayLike(obj) && keys(obj), + length = (_keys || obj).length; + for (var index = 0; index < length; index++) { + var currentKey = _keys ? _keys[index] : index; + if (!predicate(obj[currentKey], currentKey, obj)) return false; + } + return true; +} + +// Determine if at least one element in the object passes a truth test. +function some(obj, predicate, context) { + predicate = cb(predicate, context); + var _keys = !isArrayLike(obj) && keys(obj), + length = (_keys || obj).length; + for (var index = 0; index < length; index++) { + var currentKey = _keys ? _keys[index] : index; + if (predicate(obj[currentKey], currentKey, obj)) return true; + } + return false; +} + +// Determine if the array or object contains a given item (using `===`). +function contains(obj, item, fromIndex, guard) { + if (!isArrayLike(obj)) obj = values(obj); + if (typeof fromIndex != 'number' || guard) fromIndex = 0; + return indexOf(obj, item, fromIndex) >= 0; +} + +// Invoke a method (with arguments) on every item in a collection. +var invoke = restArguments(function(obj, path, args) { + var contextPath, func; + if (isFunction$1(path)) { + func = path; + } else { + path = toPath(path); + contextPath = path.slice(0, -1); + path = path[path.length - 1]; + } + return map(obj, function(context) { + var method = func; + if (!method) { + if (contextPath && contextPath.length) { + context = deepGet(context, contextPath); + } + if (context == null) return void 0; + method = context[path]; + } + return method == null ? method : method.apply(context, args); + }); +}); + +// Convenience version of a common use case of `_.map`: fetching a property. +function pluck(obj, key) { + return map(obj, property(key)); +} + +// Convenience version of a common use case of `_.filter`: selecting only +// objects containing specific `key:value` pairs. +function where(obj, attrs) { + return filter(obj, matcher(attrs)); +} + +// Return the maximum element (or element-based computation). +function max(obj, iteratee, context) { + var result = -Infinity, lastComputed = -Infinity, + value, computed; + if (iteratee == null || (typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null)) { + obj = isArrayLike(obj) ? obj : values(obj); + for (var i = 0, length = obj.length; i < length; i++) { + value = obj[i]; + if (value != null && value > result) { + result = value; + } + } + } else { + iteratee = cb(iteratee, context); + each(obj, function(v, index, list) { + computed = iteratee(v, index, list); + if (computed > lastComputed || (computed === -Infinity && result === -Infinity)) { + result = v; + lastComputed = computed; + } + }); + } + return result; +} + +// Return the minimum element (or element-based computation). +function min(obj, iteratee, context) { + var result = Infinity, lastComputed = Infinity, + value, computed; + if (iteratee == null || (typeof iteratee == 'number' && typeof obj[0] != 'object' && obj != null)) { + obj = isArrayLike(obj) ? obj : values(obj); + for (var i = 0, length = obj.length; i < length; i++) { + value = obj[i]; + if (value != null && value < result) { + result = value; + } + } + } else { + iteratee = cb(iteratee, context); + each(obj, function(v, index, list) { + computed = iteratee(v, index, list); + if (computed < lastComputed || (computed === Infinity && result === Infinity)) { + result = v; + lastComputed = computed; + } + }); + } + return result; +} + +// Safely create a real, live array from anything iterable. +var reStrSymbol = /[^\ud800-\udfff]|[\ud800-\udbff][\udc00-\udfff]|[\ud800-\udfff]/g; +function toArray(obj) { + if (!obj) return []; + if (isArray(obj)) return slice.call(obj); + if (isString(obj)) { + // Keep surrogate pair characters together. + return obj.match(reStrSymbol); + } + if (isArrayLike(obj)) return map(obj, identity); + return values(obj); +} + +// Sample **n** random values from a collection using the modern version of the +// [Fisher-Yates shuffle](https://en.wikipedia.org/wiki/Fisher–Yates_shuffle). +// If **n** is not specified, returns a single random element. +// The internal `guard` argument allows it to work with `_.map`. +function sample(obj, n, guard) { + if (n == null || guard) { + if (!isArrayLike(obj)) obj = values(obj); + return obj[random(obj.length - 1)]; + } + var sample = toArray(obj); + var length = getLength(sample); + n = Math.max(Math.min(n, length), 0); + var last = length - 1; + for (var index = 0; index < n; index++) { + var rand = random(index, last); + var temp = sample[index]; + sample[index] = sample[rand]; + sample[rand] = temp; + } + return sample.slice(0, n); +} + +// Shuffle a collection. +function shuffle(obj) { + return sample(obj, Infinity); +} + +// Sort the object's values by a criterion produced by an iteratee. +function sortBy(obj, iteratee, context) { + var index = 0; + iteratee = cb(iteratee, context); + return pluck(map(obj, function(value, key, list) { + return { + value: value, + index: index++, + criteria: iteratee(value, key, list) + }; + }).sort(function(left, right) { + var a = left.criteria; + var b = right.criteria; + if (a !== b) { + if (a > b || a === void 0) return 1; + if (a < b || b === void 0) return -1; + } + return left.index - right.index; + }), 'value'); +} + +// An internal function used for aggregate "group by" operations. +function group(behavior, partition) { + return function(obj, iteratee, context) { + var result = partition ? [[], []] : {}; + iteratee = cb(iteratee, context); + each(obj, function(value, index) { + var key = iteratee(value, index, obj); + behavior(result, value, key); + }); + return result; + }; +} + +// Groups the object's values by a criterion. Pass either a string attribute +// to group by, or a function that returns the criterion. +var groupBy = group(function(result, value, key) { + if (has$1(result, key)) result[key].push(value); else result[key] = [value]; +}); + +// Indexes the object's values by a criterion, similar to `_.groupBy`, but for +// when you know that your index values will be unique. +var indexBy = group(function(result, value, key) { + result[key] = value; +}); + +// Counts instances of an object that group by a certain criterion. Pass +// either a string attribute to count by, or a function that returns the +// criterion. +var countBy = group(function(result, value, key) { + if (has$1(result, key)) result[key]++; else result[key] = 1; +}); + +// Split a collection into two arrays: one whose elements all pass the given +// truth test, and one whose elements all do not pass the truth test. +var partition = group(function(result, value, pass) { + result[pass ? 0 : 1].push(value); +}, true); + +// Return the number of elements in a collection. +function size(obj) { + if (obj == null) return 0; + return isArrayLike(obj) ? obj.length : keys(obj).length; +} + +// Internal `_.pick` helper function to determine whether `key` is an enumerable +// property name of `obj`. +function keyInObj(value, key, obj) { + return key in obj; +} + +// Return a copy of the object only containing the allowed properties. +var pick = restArguments(function(obj, keys) { + var result = {}, iteratee = keys[0]; + if (obj == null) return result; + if (isFunction$1(iteratee)) { + if (keys.length > 1) iteratee = optimizeCb(iteratee, keys[1]); + keys = allKeys(obj); + } else { + iteratee = keyInObj; + keys = flatten$1(keys, false, false); + obj = Object(obj); + } + for (var i = 0, length = keys.length; i < length; i++) { + var key = keys[i]; + var value = obj[key]; + if (iteratee(value, key, obj)) result[key] = value; + } + return result; +}); + +// Return a copy of the object without the disallowed properties. +var omit = restArguments(function(obj, keys) { + var iteratee = keys[0], context; + if (isFunction$1(iteratee)) { + iteratee = negate(iteratee); + if (keys.length > 1) context = keys[1]; + } else { + keys = map(flatten$1(keys, false, false), String); + iteratee = function(value, key) { + return !contains(keys, key); + }; + } + return pick(obj, iteratee, context); +}); + +// Returns everything but the last entry of the array. Especially useful on +// the arguments object. Passing **n** will return all the values in +// the array, excluding the last N. +function initial(array, n, guard) { + return slice.call(array, 0, Math.max(0, array.length - (n == null || guard ? 1 : n))); +} + +// Get the first element of an array. Passing **n** will return the first N +// values in the array. The **guard** check allows it to work with `_.map`. +function first(array, n, guard) { + if (array == null || array.length < 1) return n == null || guard ? void 0 : []; + if (n == null || guard) return array[0]; + return initial(array, array.length - n); +} + +// Returns everything but the first entry of the `array`. Especially useful on +// the `arguments` object. Passing an **n** will return the rest N values in the +// `array`. +function rest(array, n, guard) { + return slice.call(array, n == null || guard ? 1 : n); +} + +// Get the last element of an array. Passing **n** will return the last N +// values in the array. +function last(array, n, guard) { + if (array == null || array.length < 1) return n == null || guard ? void 0 : []; + if (n == null || guard) return array[array.length - 1]; + return rest(array, Math.max(0, array.length - n)); +} + +// Trim out all falsy values from an array. +function compact(array) { + return filter(array, Boolean); +} + +// Flatten out an array, either recursively (by default), or up to `depth`. +// Passing `true` or `false` as `depth` means `1` or `Infinity`, respectively. +function flatten(array, depth) { + return flatten$1(array, depth, false); +} + +// Take the difference between one array and a number of other arrays. +// Only the elements present in just the first array will remain. +var difference = restArguments(function(array, rest) { + rest = flatten$1(rest, true, true); + return filter(array, function(value){ + return !contains(rest, value); + }); +}); + +// Return a version of the array that does not contain the specified value(s). +var without = restArguments(function(array, otherArrays) { + return difference(array, otherArrays); +}); + +// Produce a duplicate-free version of the array. If the array has already +// been sorted, you have the option of using a faster algorithm. +// The faster algorithm will not work with an iteratee if the iteratee +// is not a one-to-one function, so providing an iteratee will disable +// the faster algorithm. +function uniq(array, isSorted, iteratee, context) { + if (!isBoolean(isSorted)) { + context = iteratee; + iteratee = isSorted; + isSorted = false; + } + if (iteratee != null) iteratee = cb(iteratee, context); + var result = []; + var seen = []; + for (var i = 0, length = getLength(array); i < length; i++) { + var value = array[i], + computed = iteratee ? iteratee(value, i, array) : value; + if (isSorted && !iteratee) { + if (!i || seen !== computed) result.push(value); + seen = computed; + } else if (iteratee) { + if (!contains(seen, computed)) { + seen.push(computed); + result.push(value); + } + } else if (!contains(result, value)) { + result.push(value); + } + } + return result; +} + +// Produce an array that contains the union: each distinct element from all of +// the passed-in arrays. +var union = restArguments(function(arrays) { + return uniq(flatten$1(arrays, true, true)); +}); + +// Produce an array that contains every item shared between all the +// passed-in arrays. +function intersection(array) { + var result = []; + var argsLength = arguments.length; + for (var i = 0, length = getLength(array); i < length; i++) { + var item = array[i]; + if (contains(result, item)) continue; + var j; + for (j = 1; j < argsLength; j++) { + if (!contains(arguments[j], item)) break; + } + if (j === argsLength) result.push(item); + } + return result; +} + +// Complement of zip. Unzip accepts an array of arrays and groups +// each array's elements on shared indices. +function unzip(array) { + var length = (array && max(array, getLength).length) || 0; + var result = Array(length); + + for (var index = 0; index < length; index++) { + result[index] = pluck(array, index); + } + return result; +} + +// Zip together multiple lists into a single array -- elements that share +// an index go together. +var zip = restArguments(unzip); + +// Converts lists into objects. Pass either a single array of `[key, value]` +// pairs, or two parallel arrays of the same length -- one of keys, and one of +// the corresponding values. Passing by pairs is the reverse of `_.pairs`. +function object(list, values) { + var result = {}; + for (var i = 0, length = getLength(list); i < length; i++) { + if (values) { + result[list[i]] = values[i]; + } else { + result[list[i][0]] = list[i][1]; + } + } + return result; +} + +// Generate an integer Array containing an arithmetic progression. A port of +// the native Python `range()` function. See +// [the Python documentation](https://docs.python.org/library/functions.html#range). +function range(start, stop, step) { + if (stop == null) { + stop = start || 0; + start = 0; + } + if (!step) { + step = stop < start ? -1 : 1; + } + + var length = Math.max(Math.ceil((stop - start) / step), 0); + var range = Array(length); + + for (var idx = 0; idx < length; idx++, start += step) { + range[idx] = start; + } + + return range; +} + +// Chunk a single array into multiple arrays, each containing `count` or fewer +// items. +function chunk(array, count) { + if (count == null || count < 1) return []; + var result = []; + var i = 0, length = array.length; + while (i < length) { + result.push(slice.call(array, i, i += count)); + } + return result; +} + +// Helper function to continue chaining intermediate results. +function chainResult(instance, obj) { + return instance._chain ? _$1(obj).chain() : obj; +} + +// Add your own custom functions to the Underscore object. +function mixin(obj) { + each(functions(obj), function(name) { + var func = _$1[name] = obj[name]; + _$1.prototype[name] = function() { + var args = [this._wrapped]; + push.apply(args, arguments); + return chainResult(this, func.apply(_$1, args)); + }; + }); + return _$1; +} + +// Add all mutator `Array` functions to the wrapper. +each(['pop', 'push', 'reverse', 'shift', 'sort', 'splice', 'unshift'], function(name) { + var method = ArrayProto[name]; + _$1.prototype[name] = function() { + var obj = this._wrapped; + if (obj != null) { + method.apply(obj, arguments); + if ((name === 'shift' || name === 'splice') && obj.length === 0) { + delete obj[0]; + } + } + return chainResult(this, obj); + }; +}); + +// Add all accessor `Array` functions to the wrapper. +each(['concat', 'join', 'slice'], function(name) { + var method = ArrayProto[name]; + _$1.prototype[name] = function() { + var obj = this._wrapped; + if (obj != null) obj = method.apply(obj, arguments); + return chainResult(this, obj); + }; +}); + +// Named Exports + +var allExports = { + __proto__: null, + VERSION: VERSION, + restArguments: restArguments, + isObject: isObject, + isNull: isNull, + isUndefined: isUndefined, + isBoolean: isBoolean, + isElement: isElement, + isString: isString, + isNumber: isNumber, + isDate: isDate, + isRegExp: isRegExp, + isError: isError, + isSymbol: isSymbol, + isArrayBuffer: isArrayBuffer, + isDataView: isDataView$1, + isArray: isArray, + isFunction: isFunction$1, + isArguments: isArguments$1, + isFinite: isFinite$1, + isNaN: isNaN$1, + isTypedArray: isTypedArray$1, + isEmpty: isEmpty, + isMatch: isMatch, + isEqual: isEqual, + isMap: isMap, + isWeakMap: isWeakMap, + isSet: isSet, + isWeakSet: isWeakSet, + keys: keys, + allKeys: allKeys, + values: values, + pairs: pairs, + invert: invert, + functions: functions, + methods: functions, + extend: extend, + extendOwn: extendOwn, + assign: extendOwn, + defaults: defaults, + create: create, + clone: clone, + tap: tap, + get: get, + has: has, + mapObject: mapObject, + identity: identity, + constant: constant, + noop: noop, + toPath: toPath$1, + property: property, + propertyOf: propertyOf, + matcher: matcher, + matches: matcher, + times: times, + random: random, + now: now, + escape: _escape, + unescape: _unescape, + templateSettings: templateSettings, + template: template, + result: result, + uniqueId: uniqueId, + chain: chain, + iteratee: iteratee, + partial: partial, + bind: bind, + bindAll: bindAll, + memoize: memoize, + delay: delay, + defer: defer, + throttle: throttle, + debounce: debounce, + wrap: wrap, + negate: negate, + compose: compose, + after: after, + before: before, + once: once, + findKey: findKey, + findIndex: findIndex, + findLastIndex: findLastIndex, + sortedIndex: sortedIndex, + indexOf: indexOf, + lastIndexOf: lastIndexOf, + find: find, + detect: find, + findWhere: findWhere, + each: each, + forEach: each, + map: map, + collect: map, + reduce: reduce, + foldl: reduce, + inject: reduce, + reduceRight: reduceRight, + foldr: reduceRight, + filter: filter, + select: filter, + reject: reject, + every: every, + all: every, + some: some, + any: some, + contains: contains, + includes: contains, + include: contains, + invoke: invoke, + pluck: pluck, + where: where, + max: max, + min: min, + shuffle: shuffle, + sample: sample, + sortBy: sortBy, + groupBy: groupBy, + indexBy: indexBy, + countBy: countBy, + partition: partition, + toArray: toArray, + size: size, + pick: pick, + omit: omit, + first: first, + head: first, + take: first, + initial: initial, + last: last, + rest: rest, + tail: rest, + drop: rest, + compact: compact, + flatten: flatten, + without: without, + uniq: uniq, + unique: uniq, + union: union, + intersection: intersection, + difference: difference, + unzip: unzip, + transpose: unzip, + zip: zip, + object: object, + range: range, + chunk: chunk, + mixin: mixin, + 'default': _$1 +}; + +// Default Export + +// Add all of the Underscore functions to the wrapper object. +var _ = mixin(allExports); +// Legacy Node.js API. +_._ = _; + +exports.VERSION = VERSION; +exports._ = _; +exports._escape = _escape; +exports._unescape = _unescape; +exports.after = after; +exports.allKeys = allKeys; +exports.before = before; +exports.bind = bind; +exports.bindAll = bindAll; +exports.chain = chain; +exports.chunk = chunk; +exports.clone = clone; +exports.compact = compact; +exports.compose = compose; +exports.constant = constant; +exports.contains = contains; +exports.countBy = countBy; +exports.create = create; +exports.debounce = debounce; +exports.defaults = defaults; +exports.defer = defer; +exports.delay = delay; +exports.difference = difference; +exports.each = each; +exports.every = every; +exports.extend = extend; +exports.extendOwn = extendOwn; +exports.filter = filter; +exports.find = find; +exports.findIndex = findIndex; +exports.findKey = findKey; +exports.findLastIndex = findLastIndex; +exports.findWhere = findWhere; +exports.first = first; +exports.flatten = flatten; +exports.functions = functions; +exports.get = get; +exports.groupBy = groupBy; +exports.has = has; +exports.identity = identity; +exports.indexBy = indexBy; +exports.indexOf = indexOf; +exports.initial = initial; +exports.intersection = intersection; +exports.invert = invert; +exports.invoke = invoke; +exports.isArguments = isArguments$1; +exports.isArray = isArray; +exports.isArrayBuffer = isArrayBuffer; +exports.isBoolean = isBoolean; +exports.isDataView = isDataView$1; +exports.isDate = isDate; +exports.isElement = isElement; +exports.isEmpty = isEmpty; +exports.isEqual = isEqual; +exports.isError = isError; +exports.isFinite = isFinite$1; +exports.isFunction = isFunction$1; +exports.isMap = isMap; +exports.isMatch = isMatch; +exports.isNaN = isNaN$1; +exports.isNull = isNull; +exports.isNumber = isNumber; +exports.isObject = isObject; +exports.isRegExp = isRegExp; +exports.isSet = isSet; +exports.isString = isString; +exports.isSymbol = isSymbol; +exports.isTypedArray = isTypedArray$1; +exports.isUndefined = isUndefined; +exports.isWeakMap = isWeakMap; +exports.isWeakSet = isWeakSet; +exports.iteratee = iteratee; +exports.keys = keys; +exports.last = last; +exports.lastIndexOf = lastIndexOf; +exports.map = map; +exports.mapObject = mapObject; +exports.matcher = matcher; +exports.max = max; +exports.memoize = memoize; +exports.min = min; +exports.mixin = mixin; +exports.negate = negate; +exports.noop = noop; +exports.now = now; +exports.object = object; +exports.omit = omit; +exports.once = once; +exports.pairs = pairs; +exports.partial = partial; +exports.partition = partition; +exports.pick = pick; +exports.pluck = pluck; +exports.property = property; +exports.propertyOf = propertyOf; +exports.random = random; +exports.range = range; +exports.reduce = reduce; +exports.reduceRight = reduceRight; +exports.reject = reject; +exports.rest = rest; +exports.restArguments = restArguments; +exports.result = result; +exports.sample = sample; +exports.shuffle = shuffle; +exports.size = size; +exports.some = some; +exports.sortBy = sortBy; +exports.sortedIndex = sortedIndex; +exports.tap = tap; +exports.template = template; +exports.templateSettings = templateSettings; +exports.throttle = throttle; +exports.times = times; +exports.toArray = toArray; +exports.toPath = toPath$1; +exports.union = union; +exports.uniq = uniq; +exports.uniqueId = uniqueId; +exports.unzip = unzip; +exports.values = values; +exports.where = where; +exports.without = without; +exports.wrap = wrap; +exports.zip = zip; +//# sourceMappingURL=underscore-node-f.cjs.map + + +/***/ }), + +/***/ 571: +/***/ ((module, __unused_webpack_exports, __nccwpck_require__) => { + +// Underscore.js 1.13.4 +// https://underscorejs.org +// (c) 2009-2022 Jeremy Ashkenas, Julian Gonggrijp, and DocumentCloud and Investigative Reporters & Editors +// Underscore may be freely distributed under the MIT license. + +var underscoreNodeF = __nccwpck_require__(641); + + + +module.exports = underscoreNodeF._; +//# sourceMappingURL=underscore-node.cjs.map + + +/***/ }), + +/***/ 357: +/***/ ((module) => { + +"use strict"; +module.exports = require("assert");; + +/***/ }), + +/***/ 614: +/***/ ((module) => { + +"use strict"; +module.exports = require("events");; + +/***/ }), + +/***/ 747: +/***/ ((module) => { + +"use strict"; +module.exports = require("fs");; + +/***/ }), + +/***/ 605: +/***/ ((module) => { + +"use strict"; +module.exports = require("http");; + +/***/ }), + +/***/ 211: +/***/ ((module) => { + +"use strict"; +module.exports = require("https");; + +/***/ }), + +/***/ 631: +/***/ ((module) => { + +"use strict"; +module.exports = require("net");; + +/***/ }), + +/***/ 87: +/***/ ((module) => { + +"use strict"; +module.exports = require("os");; + +/***/ }), + +/***/ 622: +/***/ ((module) => { + +"use strict"; +module.exports = require("path");; + +/***/ }), + +/***/ 16: +/***/ ((module) => { + +"use strict"; +module.exports = require("tls");; + +/***/ }), + +/***/ 669: +/***/ ((module) => { + +"use strict"; +module.exports = require("util");; + +/***/ }) + +/******/ }); +/************************************************************************/ +/******/ // The module cache +/******/ var __webpack_module_cache__ = {}; +/******/ +/******/ // The require function +/******/ function __nccwpck_require__(moduleId) { +/******/ // Check if module is in cache +/******/ if(__webpack_module_cache__[moduleId]) { +/******/ return __webpack_module_cache__[moduleId].exports; +/******/ } +/******/ // Create a new module (and put it into the cache) +/******/ var module = __webpack_module_cache__[moduleId] = { +/******/ // no module.id needed +/******/ // no module.loaded needed +/******/ exports: {} +/******/ }; +/******/ +/******/ // Execute the module function +/******/ var threw = true; +/******/ try { +/******/ __webpack_modules__[moduleId].call(module.exports, module, module.exports, __nccwpck_require__); +/******/ threw = false; +/******/ } finally { +/******/ if(threw) delete __webpack_module_cache__[moduleId]; +/******/ } +/******/ +/******/ // Return the exports of the module +/******/ return module.exports; +/******/ } +/******/ +/************************************************************************/ +/******/ /* webpack/runtime/compat get default export */ +/******/ (() => { +/******/ // getDefaultExport function for compatibility with non-harmony modules +/******/ __nccwpck_require__.n = (module) => { +/******/ var getter = module && module.__esModule ? +/******/ () => module['default'] : +/******/ () => module; +/******/ __nccwpck_require__.d(getter, { a: getter }); +/******/ return getter; +/******/ }; +/******/ })(); +/******/ +/******/ /* webpack/runtime/define property getters */ +/******/ (() => { +/******/ // define getter functions for harmony exports +/******/ __nccwpck_require__.d = (exports, definition) => { +/******/ for(var key in definition) { +/******/ if(__nccwpck_require__.o(definition, key) && !__nccwpck_require__.o(exports, key)) { +/******/ Object.defineProperty(exports, key, { enumerable: true, get: definition[key] }); +/******/ } +/******/ } +/******/ }; +/******/ })(); +/******/ +/******/ /* webpack/runtime/hasOwnProperty shorthand */ +/******/ (() => { +/******/ __nccwpck_require__.o = (obj, prop) => Object.prototype.hasOwnProperty.call(obj, prop) +/******/ })(); +/******/ +/******/ /* webpack/runtime/make namespace object */ +/******/ (() => { +/******/ // define __esModule on exports +/******/ __nccwpck_require__.r = (exports) => { +/******/ if(typeof Symbol !== 'undefined' && Symbol.toStringTag) { +/******/ Object.defineProperty(exports, Symbol.toStringTag, { value: 'Module' }); +/******/ } +/******/ Object.defineProperty(exports, '__esModule', { value: true }); +/******/ }; +/******/ })(); +/******/ +/******/ /* webpack/runtime/compat */ +/******/ +/******/ __nccwpck_require__.ab = __dirname + "/";/************************************************************************/ +/******/ // module exports must be returned from runtime so entry inlining is disabled +/******/ // startup +/******/ // Load entry module and return exports +/******/ return __nccwpck_require__(509); +/******/ })() +; diff --git a/.github/actions/javascript/getPullRequestDetails/index.js b/.github/actions/javascript/getPullRequestDetails/index.js index 7105946b2c73..28e0a65db686 100644 --- a/.github/actions/javascript/getPullRequestDetails/index.js +++ b/.github/actions/javascript/getPullRequestDetails/index.js @@ -189,11 +189,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/actions/javascript/getReleaseBody/index.js b/.github/actions/javascript/getReleaseBody/index.js index 84ef8fff3685..460ac29d724e 100644 --- a/.github/actions/javascript/getReleaseBody/index.js +++ b/.github/actions/javascript/getReleaseBody/index.js @@ -131,11 +131,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/actions/javascript/isStagingDeployLocked/index.js b/.github/actions/javascript/isStagingDeployLocked/index.js index 9a44f0418d27..9bcb3f24e7ac 100644 --- a/.github/actions/javascript/isStagingDeployLocked/index.js +++ b/.github/actions/javascript/isStagingDeployLocked/index.js @@ -95,11 +95,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/actions/javascript/markPullRequestsAsDeployed/index.js b/.github/actions/javascript/markPullRequestsAsDeployed/index.js index 22ce69749265..38a45bda5054 100644 --- a/.github/actions/javascript/markPullRequestsAsDeployed/index.js +++ b/.github/actions/javascript/markPullRequestsAsDeployed/index.js @@ -272,11 +272,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/actions/javascript/postTestBuildComment/index.js b/.github/actions/javascript/postTestBuildComment/index.js index 2291b2f3cec2..5da6c7ed667a 100644 --- a/.github/actions/javascript/postTestBuildComment/index.js +++ b/.github/actions/javascript/postTestBuildComment/index.js @@ -139,11 +139,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/actions/javascript/reopenIssueWithComment/index.js b/.github/actions/javascript/reopenIssueWithComment/index.js index 536afba4b408..3efa2664a4c5 100644 --- a/.github/actions/javascript/reopenIssueWithComment/index.js +++ b/.github/actions/javascript/reopenIssueWithComment/index.js @@ -108,11 +108,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/actions/javascript/reviewerChecklist/index.js b/.github/actions/javascript/reviewerChecklist/index.js index abb9deb48b92..fc4ba728220b 100644 --- a/.github/actions/javascript/reviewerChecklist/index.js +++ b/.github/actions/javascript/reviewerChecklist/index.js @@ -174,11 +174,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/actions/javascript/triggerWorkflowAndWait/action.yml b/.github/actions/javascript/triggerWorkflowAndWait/action.yml deleted file mode 100644 index db9e2c0c5d3d..000000000000 --- a/.github/actions/javascript/triggerWorkflowAndWait/action.yml +++ /dev/null @@ -1,16 +0,0 @@ -name: 'Trigger workflow and wait' -description: 'This action triggers a workflow in another repository and waits for the result.' -inputs: - GITHUB_TOKEN: - description: 'Auth token for New Expensify Github; necessary for accessing Octokit.' - required: true - WORKFLOW: - description: 'The reference point. For example, you could use main.yml.' - required: true - INPUTS: - description: 'Inputs to pass to the workflow, must be a JSON string' - required: false - -runs: - using: 'node16' - main: './index.js' diff --git a/.github/actions/javascript/triggerWorkflowAndWait/index.js b/.github/actions/javascript/triggerWorkflowAndWait/index.js index 413dec66a4f4..39bd36fed887 100644 --- a/.github/actions/javascript/triggerWorkflowAndWait/index.js +++ b/.github/actions/javascript/triggerWorkflowAndWait/index.js @@ -273,11 +273,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/actions/javascript/triggerWorkflowAndWait/triggerWorkflowAndWait.js b/.github/actions/javascript/triggerWorkflowAndWait/triggerWorkflowAndWait.js deleted file mode 100644 index 82bfafc32d9e..000000000000 --- a/.github/actions/javascript/triggerWorkflowAndWait/triggerWorkflowAndWait.js +++ /dev/null @@ -1,155 +0,0 @@ -const _ = require('underscore'); -const core = require('@actions/core'); -const CONST = require('../../../libs/CONST'); -const ActionUtils = require('../../../libs/ActionUtils'); -const GithubUtils = require('../../../libs/GithubUtils'); -const {promiseWhile} = require('../../../libs/promiseWhile'); - -/** - * The maximum amount of time (in ms) we'll wait for a new workflow to start after sending the workflow_dispatch event. - * It's ten minutes :) - * @type {number} - */ -const NEW_WORKFLOW_TIMEOUT = 600000; - -/** - * The maximum amount of time (in ms) we'll wait for a workflow to complete before giving up. - * It's two hours :) - * @type {number} - */ -const WORKFLOW_COMPLETION_TIMEOUT = 7200000; - -/** - * URL prefixed to a specific workflow run - * @type {string} - */ -const WORKFLOW_RUN_URL_PREFIX = 'https://github.com/Expensify/App/actions/runs/'; - -const run = function () { - const workflow = core.getInput('WORKFLOW', {required: true}); - const inputs = ActionUtils.getJSONInput('INPUTS', {required: false}, {}); - - console.log('This action has received the following inputs: ', {workflow, inputs}); - - if (_.keys(inputs).length > 10) { - const err = new Error('Inputs to the workflow_dispatch event cannot have more than 10 keys, or GitHub will 🤮'); - console.error(err.message); - core.setFailed(err); - process.exit(1); - } - - // GitHub's createWorkflowDispatch returns a 204 No Content, so we need to: - // 1) Get the last workflow run - // 2) Trigger a new workflow run - // 3) Poll the API until a new one appears - // 4) Then we can poll and wait for that new workflow run to conclude - let previousWorkflowRunID; - let newWorkflowRunID; - let newWorkflowRunURL; - let hasNewWorkflowStarted = false; - let workflowCompleted = false; - return ( - GithubUtils.getLatestWorkflowRunID(workflow) - .then((lastWorkflowRunID) => { - console.log(`Latest ${workflow} workflow run has ID: ${lastWorkflowRunID}`); - previousWorkflowRunID = lastWorkflowRunID; - - console.log(`Dispatching workflow: ${workflow}`); - return GithubUtils.octokit.actions.createWorkflowDispatch({ - owner: CONST.GITHUB_OWNER, - repo: CONST.APP_REPO, - workflow_id: workflow, - ref: 'main', - inputs, - }); - }) - - .catch((err) => { - console.error(`Failed to dispatch workflow ${workflow}`, err); - core.setFailed(err); - process.exit(1); - }) - - // Wait for the new workflow to start - .then(() => { - let waitTimer = -GithubUtils.POLL_RATE; - return promiseWhile( - () => !hasNewWorkflowStarted && waitTimer < NEW_WORKFLOW_TIMEOUT, - _.throttle(() => { - console.log(`\n🤚 Waiting for a new ${workflow} workflow run to begin...`); - return GithubUtils.getLatestWorkflowRunID(workflow) - .then((lastWorkflowRunID) => { - newWorkflowRunID = lastWorkflowRunID; - newWorkflowRunURL = WORKFLOW_RUN_URL_PREFIX + newWorkflowRunID; - hasNewWorkflowStarted = newWorkflowRunID !== previousWorkflowRunID; - - if (!hasNewWorkflowStarted) { - waitTimer += GithubUtils.POLL_RATE; - if (waitTimer < NEW_WORKFLOW_TIMEOUT) { - // eslint-disable-next-line max-len - console.log(`After ${waitTimer / 1000} seconds, there's still no new ${workflow} workflow run 🙁`); - } else { - // eslint-disable-next-line max-len - const err = new Error(`After ${NEW_WORKFLOW_TIMEOUT / 1000} seconds, the ${workflow} workflow did not start.`); - console.error(err); - core.setFailed(err); - process.exit(1); - } - } else { - console.log(`\n🚀 New ${workflow} run ${newWorkflowRunURL} has started`); - } - }) - .catch((err) => { - console.warn('Failed to fetch latest workflow run.', err); - }); - }, GithubUtils.POLL_RATE), - ); - }) - - // Wait for the new workflow run to finish - .then(() => { - let waitTimer = -GithubUtils.POLL_RATE; - return promiseWhile( - () => !workflowCompleted && waitTimer < WORKFLOW_COMPLETION_TIMEOUT, - _.throttle(() => { - console.log(`\n⏳ Waiting for workflow run ${newWorkflowRunURL} to finish...`); - return GithubUtils.octokit.actions - .getWorkflowRun({ - owner: CONST.GITHUB_OWNER, - repo: CONST.APP_REPO, - run_id: newWorkflowRunID, - }) - .then(({data}) => { - workflowCompleted = data.status === 'completed' && data.conclusion !== null; - waitTimer += GithubUtils.POLL_RATE; - if (waitTimer > WORKFLOW_COMPLETION_TIMEOUT) { - // eslint-disable-next-line max-len - const err = new Error(`After ${WORKFLOW_COMPLETION_TIMEOUT / 1000 / 60 / 60} hours, workflow ${newWorkflowRunURL} did not complete.`); - console.error(err); - core.setFailed(err); - process.exit(1); - } - if (workflowCompleted) { - if (data.conclusion === 'success') { - // eslint-disable-next-line max-len - console.log(`\n🎉 ${workflow} run ${newWorkflowRunURL} completed successfully! 🎉`); - } else { - // eslint-disable-next-line max-len - const err = new Error(`🙅‍ ${workflow} run ${newWorkflowRunURL} finished with conclusion ${data.conclusion}`); - console.error(err.message); - core.setFailed(err); - process.exit(1); - } - } - }); - }, GithubUtils.POLL_RATE), - ); - }) - ); -}; - -if (require.main === module) { - run(); -} - -module.exports = run; diff --git a/.github/actions/javascript/verifySignedCommits/index.js b/.github/actions/javascript/verifySignedCommits/index.js index 664c51fefd61..df8ca5b31bad 100644 --- a/.github/actions/javascript/verifySignedCommits/index.js +++ b/.github/actions/javascript/verifySignedCommits/index.js @@ -97,11 +97,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/libs/GitUtils.js b/.github/libs/GitUtils.js index af76465e5b1e..979121bfbed7 100644 --- a/.github/libs/GitUtils.js +++ b/.github/libs/GitUtils.js @@ -2,29 +2,30 @@ const _ = require('underscore'); const {spawn, execSync} = require('child_process'); const CONST = require('./CONST'); const sanitizeStringForJSONParse = require('./sanitizeStringForJSONParse'); +const {getPreviousVersion, SEMANTIC_VERSION_LEVELS} = require('../libs/versionUpdater'); /** * @param {String} tag */ -// eslint-disable-next-line no-unused-vars -function fetchTagIfNeeded(tag) { +function fetchTag(tag) { + const previousPatchVersion = getPreviousVersion(tag, SEMANTIC_VERSION_LEVELS.PATCH); try { - console.log(`Checking if tag ${tag} exists locally`); - const command = `git rev-parse --verify ${tag}`; - console.log(`Running command: ${command}`); - const result = execSync(command).toString(); - console.log(result); - } catch (e) { - console.log(`Tag ${tag} not found locally, attempting to fetch it.`); let command = `git fetch origin tag ${tag} --no-tags`; + + // Exclude commits reachable from the previous patch version (i.e: previous checklist), + // so that we don't have to fetch the full history + // Note that this condition would only ever _not_ be true in the 1.0.0-0 edge case + if (previousPatchVersion !== tag) { + command += ` --shallow-exclude=${previousPatchVersion}`; + } + console.log(`Running command: ${command}`); - let result = execSync(command).toString(); - console.log(result); - console.log('Verifying that the tag is now available...'); - command = `git rev-parse --verify ${tag}`; + execSync(command); + } catch (e) { + // This can happen if the tag was only created locally but does not exist in the remote. In this case, we'll fetch history of the staging branch instead + const command = `git fetch origin staging --no-tags --shallow-exclude=${previousPatchVersion}`; console.log(`Running command: ${command}`); - result = execSync(command).toString(); - console.log(result); + execSync(command); } } @@ -36,10 +37,8 @@ function fetchTagIfNeeded(tag) { * @returns {Promise>>} */ function getCommitHistoryAsJSON(fromTag, toTag) { - // fetchTagIfNeeded(fromTag); - // fetchTagIfNeeded(toTag); - // Note: this is a temporary measure until we can figure out a faster way to fetch only what's needed - execSync('git fetch --all --tags'); + fetchTag(fromTag); + fetchTag(toTag); console.log('Getting pull requests merged between the following tags:', fromTag, toTag); return new Promise((resolve, reject) => { diff --git a/.github/libs/GithubUtils.js b/.github/libs/GithubUtils.js index 2677a8e68fec..ea81dc6e1136 100644 --- a/.github/libs/GithubUtils.js +++ b/.github/libs/GithubUtils.js @@ -32,11 +32,12 @@ class GithubUtils { this.internalOctokit = new Octokit( getOctokitOptions(token, { throttle: { + retryAfterBaseValue: 2000, onRateLimit: (retryAfter, options) => { console.warn(`Request quota exhausted for request ${options.method} ${options.url}`); - // Retry once after hitting a rate limit error, then give up - if (options.request.retryCount <= 1) { + // Retry five times when hitting a rate limit error, then give up + if (options.request.retryCount <= 5) { console.log(`Retrying after ${retryAfter} seconds!`); return true; } diff --git a/.github/libs/versionUpdater.js b/.github/libs/versionUpdater.js index 0926d3352fa0..78e8085621bd 100644 --- a/.github/libs/versionUpdater.js +++ b/.github/libs/versionUpdater.js @@ -92,6 +92,41 @@ const incrementVersion = (version, level) => { return incrementPatch(major, minor, patch); }; +/** + * @param {String} currentVersion + * @param {String} level + * @returns {String} + */ +function getPreviousVersion(currentVersion, level) { + const [major, minor, patch, build] = getVersionNumberFromString(currentVersion); + + if (level === SEMANTIC_VERSION_LEVELS.MAJOR) { + if (major === 1) { + return getVersionStringFromNumber(1, 0, 0, 0); + } + return getVersionStringFromNumber(major - 1, 0, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.MINOR) { + if (minor === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.MAJOR); + } + return getVersionStringFromNumber(major, minor - 1, 0, 0); + } + + if (level === SEMANTIC_VERSION_LEVELS.PATCH) { + if (patch === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.MINOR); + } + return getVersionStringFromNumber(major, minor, patch - 1, 0); + } + + if (build === 0) { + return getPreviousVersion(currentVersion, SEMANTIC_VERSION_LEVELS.PATCH); + } + return getVersionStringFromNumber(major, minor, patch, build - 1); +} + module.exports = { getVersionNumberFromString, getVersionStringFromNumber, @@ -102,4 +137,5 @@ module.exports = { SEMANTIC_VERSION_LEVELS, incrementMinor, incrementPatch, + getPreviousVersion, }; diff --git a/.github/scripts/buildActions.sh b/.github/scripts/buildActions.sh index d4fcbeabfdc6..01364cd0ea29 100755 --- a/.github/scripts/buildActions.sh +++ b/.github/scripts/buildActions.sh @@ -14,13 +14,13 @@ declare -r GITHUB_ACTIONS=( "$ACTIONS_DIR/checkDeployBlockers/checkDeployBlockers.js" "$ACTIONS_DIR/createOrUpdateStagingDeploy/createOrUpdateStagingDeploy.js" "$ACTIONS_DIR/getDeployPullRequestList/getDeployPullRequestList.js" + "$ACTIONS_DIR/getPreviousVersion/getPreviousVersion.js" "$ACTIONS_DIR/getPullRequestDetails/getPullRequestDetails.js" "$ACTIONS_DIR/getReleaseBody/getReleaseBody.js" "$ACTIONS_DIR/isStagingDeployLocked/isStagingDeployLocked.js" "$ACTIONS_DIR/markPullRequestsAsDeployed/markPullRequestsAsDeployed.js" "$ACTIONS_DIR/postTestBuildComment/postTestBuildComment.js" "$ACTIONS_DIR/reopenIssueWithComment/reopenIssueWithComment.js" - "$ACTIONS_DIR/triggerWorkflowAndWait/triggerWorkflowAndWait.js" "$ACTIONS_DIR/verifySignedCommits/verifySignedCommits.js" "$ACTIONS_DIR/authorChecklist/authorChecklist.js" "$ACTIONS_DIR/reviewerChecklist/reviewerChecklist.js" diff --git a/.github/workflows/README.md b/.github/workflows/README.md index d62867de27f3..aa38a7778f31 100644 --- a/.github/workflows/README.md +++ b/.github/workflows/README.md @@ -39,11 +39,35 @@ We've found that the best way to avoid this pitfall is to always wrap any refere **Note:** Action inputs and outputs aren't the only thing that's JSON-encoded! Any data passed between jobs via a `needs` parameter is also JSON-encoded! +## Fast fetch +Due to the large, ever-growing history of this repo, do not do any full-fetches of the repo: + +```yaml +# Bad +- uses: actions/checkout@v3 + with: + fetch-depth: 0 + +# Good +- uses: actions/checkout@v3 +``` + +```sh +# Bad +git fetch origin # This will fetch all history of all branches and tags +git fetch origin main # This will fetch the full history of the main branch, plus all tags + +# Good +git fetch origin main --no-tags --depth=1 # This will just fetch the latest commit from main +git fetch origin tag 1.0.0-0 --no-tags --depth=1 # This will fetch the latest commit from the 1.0.0-0 tag and create a local tag to match +git fetch origin tag 1.0.1-0 --no-tags --shallow-exclude=1.0.0-0 # This will fetch all commits from the 1.0.1-0 tag, except for those that are reachable from the 1.0.0-0 tag. +``` + ## Security Rules 🔐 1. Do **not** use `pull_request_target` trigger unless an external fork needs access to secrets, or a _write_ `GITHUB_TOKEN`. 1. Do **not ever** write a `pull_request_target` trigger with an explicit PR checkout, e.g. using `actions/checkout@v2`. This is [discussed further here](https://securitylab.github.com/research/github-actions-preventing-pwn-requests) 1. **Do use** the `pull_request` trigger as it does not send internal secrets and only grants a _read_ `GITHUB_TOKEN`. -1. If an external action needs access to any secret (`GITHUB_TOKEN` or internal secret), use the commit hash of the workflow to prevent a modification of underlying source code at that version. For example: +1. If an untrusted (i.e: not maintained by GitHub) external action needs access to any secret (`GITHUB_TOKEN` or internal secret), use the commit hash of the workflow to prevent a modification of underlying source code at that version. For example: 1. **Bad:** `hmarr/auto-approve-action@v2.0.0` Relies on the tag 1. **Good:** `hmarr/auto-approve-action@7782c7e2bdf62b4d79bdcded8332808fd2f179cd` Explicit Git hash 1. When creating secrets, use tightly scoped secrets that only allow access to that specific action's requirement @@ -121,24 +145,3 @@ In order to bundle actions with their dependencies into a single Node.js executa - Confusingly, paths in action metadata files (`action.yml`) _must_ use relative paths. - You can't use any dynamic values or environment variables in a `uses` statement - In general, it is a best practice to minimize any side-effects of each action. Using atomic ("dumb") actions that have a clear and simple purpose will promote reuse and make it easier to understand the workflows that use them. - -## Imperative Workflows - -**Edit:** These workflows are still present, but should be considered deprecated. GitHub has since introduced callable workflows, so we should use those going forward. - -We have a unique way of defining certain workflows which can be manually triggered by the `workflow_dispatch` event. See `createNewVersion.yml` for examples. Used in combination with the custom [`triggerWorkflowAndWait` action](https://github.com/Expensify/App/blob/d07dcf4e3e0b3f11bec73726856e6d5f8624704c/.github/actions/triggerWorkflowAndWait/triggerWorkflowAndWait.js), workflows can be synchronously executed like a function from another workflow, like this: - -```yaml -- name: Create new BUILD version - uses: Expensify/App/.github/actions/javascript/triggerWorkflowAndWait@main - with: - GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }} - WORKFLOW: createNewVersion.yml - INPUTS: '{ "SEMVER_LEVEL": "BUILD" }' -``` - -There are several reasons why we created these "imperative workflows" or "subroutines": - -1. It greatly simplifies the handling of race conditions, particularly when used in combination with the [`softprops/turnstyle` action](https://github.com/softprops/turnstyle). -1. It promotes code reuse. A common set of yaml steps defined in a workflow can be extracted into an imperative workflow which can be executed from other workflows in just a few lines. -1. If a workflow is defined to execute in response to the `workflow_dispatch` event, it can be manually started by an authorized actor in the GitHub UI. diff --git a/.github/workflows/cherryPick.yml b/.github/workflows/cherryPick.yml index d4e6a59fa757..d4c17a734b1c 100644 --- a/.github/workflows/cherryPick.yml +++ b/.github/workflows/cherryPick.yml @@ -6,10 +6,6 @@ on: PULL_REQUEST_NUMBER: description: The number of a pull request to CP required: true - NEW_VERSION: - description: The new app version (leave empty if running manually) - required: false - default: '' jobs: validateActor: @@ -29,13 +25,12 @@ jobs: createNewVersion: needs: validateActor - if: ${{ fromJSON(needs.validateActor.outputs.IS_DEPLOYER) && github.event.inputs.NEW_VERSION == '' }} + if: ${{ fromJSON(needs.validateActor.outputs.IS_DEPLOYER) }} uses: Expensify/App/.github/workflows/createNewVersion.yml@main secrets: inherit cherryPick: - needs: [validateActor, createNewVersion] - if: ${{ always() && fromJSON(needs.validateActor.outputs.IS_DEPLOYER) }} + needs: createNewVersion runs-on: ubuntu-latest steps: - name: Checkout staging branch @@ -48,7 +43,24 @@ jobs: with: GPG_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }} - - name: Get merge commit for CP pull request + - name: Get previous app version + id: getPreviousVersion + uses: Expensify/App/.github/actions/javascript/getPreviousVersion@main + with: + SEMVER_LEVEL: 'PATCH' + + - name: Fetch history of relevant refs + run: | + git fetch origin main staging --no-tags --shallow-exclude ${{ steps.getPreviousVersion.outputs.PREVIOUS_VERSION }} + + - name: Get version bump commit + id: getVersionBumpCommit + run: | + git switch main + VERSION_BUMP_COMMIT="$(git log --format='%H' --author='OSBotify' --grep 'Update version to ${{ needs.createNewVersion.outputs.NEW_VERSION }}')" + echo "VERSION_BUMP_SHA=$VERSION_BUMP_COMMIT" >> "$GITHUB_OUTPUT" + + - name: Get merge commit for pull request to CP id: getCPMergeCommit uses: Expensify/App/.github/actions/javascript/getPullRequestDetails@main with: @@ -56,28 +68,10 @@ jobs: USER: ${{ github.actor }} PULL_REQUEST_NUMBER: ${{ github.event.inputs.PULL_REQUEST_NUMBER }} - - name: Save correct NEW_VERSION to env - env: - NEW_VERSION: ${{ github.event.inputs.NEW_VERSION }} - run: | - if [ -z "$NEW_VERSION" ]; then - echo "NEW_VERSION=${{ needs.createNewVersion.outputs.NEW_VERSION }}" >> "$GITHUB_ENV" - echo "New version is ${{ env.NEW_VERSION }}" - else - echo "NEW_VERSION=${{ github.event.inputs.NEW_VERSION }}" >> "$GITHUB_ENV" - echo "New version is ${{ env.NEW_VERSION }}" - fi; - - name: Cherry-pick the version-bump to staging run: | - # Find the commit for the version-bump - git fetch origin main - git switch main - VERSION_BUMP_COMMIT="$(git log --format='%H' --author='OSBotify' --grep 'Update version to ${{ env.NEW_VERSION }}')" - - # Cherry-pick it to staging git switch staging - git cherry-pick -S -x --mainline 1 --strategy=recursive -Xtheirs "$VERSION_BUMP_COMMIT" + git cherry-pick -S -x --mainline 1 --strategy=recursive -Xtheirs ${{ steps.getVersionBumpCommit.outputs.VERSION_BUMP_SHA }} - name: Cherry-pick the merge commit of target PR id: cherryPick diff --git a/.github/workflows/deploy.yml b/.github/workflows/deploy.yml index 65942e19a22c..b3105ee05c2c 100644 --- a/.github/workflows/deploy.yml +++ b/.github/workflows/deploy.yml @@ -28,20 +28,16 @@ jobs: deployProduction: runs-on: ubuntu-latest if: github.ref == 'refs/heads/production' - steps: - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 + - uses: actions/checkout@v3 with: - fetch-depth: 0 + ref: production token: ${{ secrets.OS_BOTIFY_TOKEN }} - uses: Expensify/App/.github/actions/composite/setupGitForOSBotify@main with: GPG_PASSPHRASE: ${{ secrets.LARGE_SECRET_PASSPHRASE }} - - name: Checkout production branch - run: git checkout production - - name: Get current app version run: echo "PRODUCTION_VERSION=$(npm run print-version --silent)" >> "$GITHUB_ENV" diff --git a/.github/workflows/deployBlocker.yml b/.github/workflows/deployBlocker.yml index 30e937722596..8065a5c88cb2 100644 --- a/.github/workflows/deployBlocker.yml +++ b/.github/workflows/deployBlocker.yml @@ -11,9 +11,8 @@ jobs: if: ${{ github.event.label.name == 'DeployBlockerCash' }} steps: - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 + - uses: actions/checkout@v3 with: - fetch-depth: 0 token: ${{ secrets.GITHUB_TOKEN }} - name: Get URL, title, & number of new deploy blocker (issue) diff --git a/.github/workflows/e2ePerformanceTests.yml b/.github/workflows/e2ePerformanceTests.yml index 4e91cd50c94b..fe364b376e3b 100644 --- a/.github/workflows/e2ePerformanceTests.yml +++ b/.github/workflows/e2ePerformanceTests.yml @@ -22,9 +22,7 @@ jobs: outputs: VERSION: ${{ steps.getMostRecentRelease.outputs.VERSION }} steps: - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - with: - fetch-depth: 0 + - uses: actions/checkout@v3 - name: Get most recent release version id: getMostRecentRelease @@ -44,7 +42,9 @@ jobs: - name: Checkout "Baseline" commit (last release) if: ${{ !fromJSON(steps.checkForExistingArtifact.outputs.exists) }} - run: git checkout ${{ steps.getMostRecentRelease.outputs.VERSION }} + run: | + git fetch origin tag ${{ steps.getMostRecentRelease.outputs.VERSION }} --no-tags --depth=1 + git switch --detach ${{ steps.getMostRecentRelease.outputs.VERSION }} - name: Build APK if: ${{ !fromJSON(steps.checkForExistingArtifact.outputs.exists) }} @@ -58,9 +58,7 @@ jobs: outputs: DELTA_REF: ${{ steps.getDeltaRef.outputs.DELTA_REF }} steps: - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - with: - fetch-depth: 0 + - uses: actions/checkout@v3 - name: Get pull request details id: getPullRequestDetails @@ -74,15 +72,21 @@ jobs: if: ${{ fromJSON(steps.getPullRequestDetails.outputs.IS_MERGED) }} id: getMergeCommitShaIfMergedPR run: | - echo "MERGE_COMMIT_SHA=${{ steps.getPullRequestDetails.outputs.MERGE_COMMIT_SHA }}" >> "$GITHUB_OUTPUT" + MERGE_COMMIT_SHA=${{ steps.getPullRequestDetails.outputs.MERGE_COMMIT_SHA }} + git fetch origin "$MERGE_COMMIT_SHA" --no-tags --depth=1 + echo "MERGE_COMMIT_SHA=$MERGE_COMMIT_SHA" >> "$GITHUB_OUTPUT" env: GITHUB_TOKEN: ${{ github.token }} - - name: Unmerged PR - Fetch changes from forked repository if necessary - if: ${{ !fromJSON(steps.getPullRequestDetails.outputs.IS_MERGED) && (steps.getPullRequestDetails.outputs.FORKED_REPO_URL != '') }} + - name: Unmerged PR - Fetch head ref of unmerged PR + if: ${{ !fromJSON(steps.getPullRequestDetails.outputs.IS_MERGED) }} run: | - git remote add pr_remote ${{ steps.getPullRequestDetails.outputs.FORKED_REPO_URL }} - git fetch pr_remote + if [[ ${{ steps.getPullRequestDetails.outputs.FORKED_REPO_URL }} != '' ]]; then + git remote add pr_remote ${{ steps.getPullRequestDetails.outputs.FORKED_REPO_URL }} + git fetch pr_remote ${{ steps.getPullRequestDetails.outputs.HEAD_COMMIT_SHA }} --no-tags --depth=1 + else + git fetch origin ${{ steps.getPullRequestDetails.outputs.HEAD_COMMIT_SHA }} --no-tags --depth=1 + fi - name: Unmerged PR - Set dummy git credentials before merging if: ${{ !fromJSON(steps.getPullRequestDetails.outputs.IS_MERGED) }} @@ -96,7 +100,6 @@ jobs: run: | git merge --no-commit ${{ steps.getPullRequestDetails.outputs.HEAD_COMMIT_SHA }} git checkout ${{ steps.getPullRequestDetails.outputs.HEAD_COMMIT_SHA }} - echo "MERGE_COMMIT_SHA=$(git rev-parse HEAD)" >> "$GITHUB_OUTPUT" env: GITHUB_TOKEN: ${{ github.token }} @@ -119,7 +122,7 @@ jobs: needs: [buildBaseline, buildDelta] name: Run E2E tests in AWS device farm steps: - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 + - uses: actions/checkout@v3 - name: Make zip directory for everything to send to AWS Device Farm run: mkdir zip diff --git a/.github/workflows/lockDeploys.yml b/.github/workflows/lockDeploys.yml index 38764561ed59..a49a5519f690 100644 --- a/.github/workflows/lockDeploys.yml +++ b/.github/workflows/lockDeploys.yml @@ -9,11 +9,9 @@ jobs: if: ${{ github.event.label.name == '🔐 LockCashDeploys 🔐' && contains(github.event.issue.labels.*.name, 'StagingDeployCash') && github.actor != 'OSBotify' }} runs-on: macos-12 steps: - # Version: 2.3.4 - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 + - uses: actions/checkout@v3 with: ref: main - fetch-depth: 0 token: ${{ secrets.OS_BOTIFY_TOKEN }} - name: Wait for staging deploys to finish @@ -24,8 +22,8 @@ jobs: - name: Comment in StagingDeployCash to give Applause the 🟢 to begin QA run: | gh issue comment \ - "$(gh issue list --label StagingDeployCash --json number --jq '.[0].number')" \ - --body ":rocket: All staging deploys are complete, @Expensify/applauseleads please begin QA on version https://github.com/Expensify/App/releases/tag/$(< package.json jq -r .version) :rocket:" + "$(gh issue list --label StagingDeployCash --json number --jq '.[0].number')" \ + --body ":rocket: All staging deploys are complete, @Expensify/applauseleads please begin QA on version https://github.com/Expensify/App/releases/tag/$(< package.json jq -r .version) :rocket:" env: GITHUB_TOKEN: ${{ secrets.OS_BOTIFY_TOKEN }} diff --git a/.github/workflows/platformDeploy.yml b/.github/workflows/platformDeploy.yml index cc6653aa9aa0..e787b26336c5 100644 --- a/.github/workflows/platformDeploy.yml +++ b/.github/workflows/platformDeploy.yml @@ -34,10 +34,7 @@ jobs: if: ${{ fromJSON(needs.validateActor.outputs.IS_DEPLOYER) }} runs-on: ubuntu-latest-xl steps: - # This action checks-out the repository, so the workflow can access it. - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - with: - fetch-depth: 0 + - uses: actions/checkout@v3 - uses: Expensify/App/.github/actions/composite/setupNode@main @@ -108,10 +105,7 @@ jobs: if: ${{ fromJSON(needs.validateActor.outputs.IS_DEPLOYER) }} runs-on: macos-12-xl steps: - # This action checks-out the repository, so the workflow can access it. - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - with: - fetch-depth: 0 + - uses: actions/checkout@v3 - uses: Expensify/App/.github/actions/composite/setupNode@main @@ -148,10 +142,7 @@ jobs: if: ${{ fromJSON(needs.validateActor.outputs.IS_DEPLOYER) }} runs-on: macos-12-xl steps: - # This action checks-out the repository, so the workflow can access it. - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - with: - fetch-depth: 0 + - uses: actions/checkout@v3 - uses: Expensify/App/.github/actions/composite/setupNode@main @@ -165,7 +156,7 @@ jobs: with: timeout_minutes: 10 max_attempts: 5 - command: cd ios && pod install + command: cd ios && bundle exec pod install - name: Decrypt profile run: cd ios && gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" --output chat_expensify_appstore.mobileprovision chat_expensify_appstore.mobileprovision.gpg @@ -237,10 +228,7 @@ jobs: if: ${{ fromJSON(needs.validateActor.outputs.IS_DEPLOYER) }} runs-on: ubuntu-latest-xl steps: - # This action checks-out the repository, so the workflow can access it. - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - with: - fetch-depth: 0 + - uses: actions/checkout@v3 - uses: Expensify/App/.github/actions/composite/setupNode@main @@ -261,10 +249,16 @@ jobs: if: ${{ !fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }} run: npm run build-staging - - name: Build docs + - name: Build storybook docs for production + if: ${{ fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }} run: npm run storybook-build continue-on-error: true + - name: Build storybook docs for staging + if: ${{ !fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }} + run: npm run storybook-build-staging + continue-on-error: true + - name: Deploy production to S3 if: ${{ fromJSON(env.SHOULD_DEPLOY_PRODUCTION) }} run: aws s3 cp --recursive --acl public-read "$GITHUB_WORKSPACE"/dist s3://expensify-cash/ && aws s3 cp --acl public-read --content-type 'application/json' --metadata-directive REPLACE s3://expensify-cash/.well-known/apple-app-site-association s3://expensify-cash/.well-known/apple-app-site-association && aws s3 cp --acl public-read --content-type 'application/json' --metadata-directive REPLACE s3://expensify-cash/.well-known/apple-app-site-association s3://expensify-cash/apple-app-site-association @@ -301,7 +295,7 @@ jobs: if: ${{ success() }} needs: [android, desktop, iOS, web] steps: - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 + - uses: actions/checkout@v3 - name: Set version run: echo "VERSION=$(npm run print-version --silent)" >> "$GITHUB_ENV" @@ -361,10 +355,7 @@ jobs: if: ${{ always() }} needs: [android, desktop, iOS, web] steps: - # This action checks-out the repository, so the workflow can access it. - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - with: - fetch-depth: 0 + - uses: actions/checkout@v3 - uses: Expensify/App/.github/actions/composite/setupNode@main diff --git a/.github/workflows/preDeploy.yml b/.github/workflows/preDeploy.yml index a806be1af7aa..b6e2870cc5c7 100644 --- a/.github/workflows/preDeploy.yml +++ b/.github/workflows/preDeploy.yml @@ -81,7 +81,6 @@ jobs: - uses: actions/checkout@v3 with: ref: main - fetch-depth: 0 token: ${{ secrets.OS_BOTIFY_TOKEN }} - uses: Expensify/App/.github/actions/composite/setupGitForOSBotify@main diff --git a/.github/workflows/reassurePerformanceTests.yml b/.github/workflows/reassurePerformanceTests.yml index 03711bd8967c..ab5e1d06e5a4 100644 --- a/.github/workflows/reassurePerformanceTests.yml +++ b/.github/workflows/reassurePerformanceTests.yml @@ -11,7 +11,7 @@ jobs: runs-on: ubuntu-latest steps: - name: Checkout - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 + uses: actions/checkout@v3 - name: Setup NodeJS uses: Expensify/App/.github/actions/composite/setupNode@main @@ -19,13 +19,13 @@ jobs: - name: Run performance testing script shell: bash run: | - set -e + set -e BASELINE_BRANCH=${BASELINE_BRANCH:="main"} - git fetch origin + git fetch origin "$BASELINE_BRANCH" --no-tags --depth=1 git switch "$BASELINE_BRANCH" npm install --force npx reassure --baseline - git switch --detach - + git switch --force --detach - npm install --force npx reassure --branch diff --git a/.github/workflows/test.yml b/.github/workflows/test.yml index 46718b234e92..fe234bc8373c 100644 --- a/.github/workflows/test.yml +++ b/.github/workflows/test.yml @@ -18,7 +18,7 @@ jobs: chunk: [ 1, 2, 3 ] name: test (job ${{ fromJSON(matrix.chunk) }}) steps: - - uses: actions/checkout@885641592076c27bfb56c028cd5612cdad63e16d + - uses: actions/checkout@v3 - uses: Expensify/App/.github/actions/composite/setupNode@main @@ -41,7 +41,7 @@ jobs: runs-on: ubuntu-latest name: Storybook tests steps: - - uses: actions/checkout@885641592076c27bfb56c028cd5612cdad63e16d + - uses: actions/checkout@v3 - uses: Expensify/App/.github/actions/composite/setupNode@main - name: Storybook run run: npm run storybook -- --smoke-test --ci @@ -51,7 +51,7 @@ jobs: runs-on: ubuntu-latest name: Shell tests steps: - - uses: actions/checkout@885641592076c27bfb56c028cd5612cdad63e16d + - uses: actions/checkout@v3 - uses: Expensify/App/.github/actions/composite/setupNode@main diff --git a/.github/workflows/testBuild.yml b/.github/workflows/testBuild.yml index 246e31178564..e541e2291ae9 100644 --- a/.github/workflows/testBuild.yml +++ b/.github/workflows/testBuild.yml @@ -148,7 +148,7 @@ jobs: with: timeout_minutes: 10 max_attempts: 5 - command: cd ios && pod install + command: cd ios && bundle exec pod install - name: Decrypt profile run: cd ios && gpg --quiet --batch --yes --decrypt --passphrase="$LARGE_SECRET_PASSPHRASE" --output chat_expensify_adhoc.mobileprovision chat_expensify_adhoc.mobileprovision.gpg @@ -187,11 +187,9 @@ jobs: PULL_REQUEST_NUMBER: ${{ github.event.number || github.event.inputs.PULL_REQUEST_NUMBER }} runs-on: macos-12-xl steps: - # This action checks-out the repository, so the workflow can access it. - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 + - uses: actions/checkout@v3 with: ref: ${{ github.event.pull_request.head.sha || needs.getBranchRef.outputs.REF }} - fetch-depth: 0 - name: Create .env.adhoc file based on staging and add PULL_REQUEST_NUMBER env to it run: | @@ -230,9 +228,8 @@ jobs: PULL_REQUEST_NUMBER: ${{ github.event.number || github.event.inputs.PULL_REQUEST_NUMBER }} runs-on: ubuntu-latest-xl steps: - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 + - uses: actions/checkout@v3 with: - fetch-depth: 0 ref: ${{ github.event.pull_request.head.sha || needs.getBranchRef.outputs.REF }} - name: Create .env.adhoc file based on staging and add PULL_REQUEST_NUMBER env to it diff --git a/.github/workflows/validateDocsRoutes.yml b/.github/workflows/validateDocsRoutes.yml index 05a6739bd6ab..717560e19f5f 100644 --- a/.github/workflows/validateDocsRoutes.yml +++ b/.github/workflows/validateDocsRoutes.yml @@ -11,10 +11,7 @@ jobs: if: github.actor != 'OSBotify' runs-on: ubuntu-latest steps: - # This action checks-out the repository, so the workflow can access it. - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - with: - fetch-depth: 0 + - uses: actions/checkout@v3 - uses: Expensify/App/.github/actions/composite/setupNode@main diff --git a/.github/workflows/validateGithubActions.yml b/.github/workflows/validateGithubActions.yml index d731158e646b..f496c5e4b27e 100644 --- a/.github/workflows/validateGithubActions.yml +++ b/.github/workflows/validateGithubActions.yml @@ -12,10 +12,7 @@ jobs: if: github.actor != 'OSBotify' runs-on: ubuntu-latest steps: - # This action checks-out the repository, so the workflow can access it. - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - with: - fetch-depth: 0 + - uses: actions/checkout@v3 - uses: Expensify/App/.github/actions/composite/setupNode@main diff --git a/.github/workflows/verifyPodfile.yml b/.github/workflows/verifyPodfile.yml index 892b7c03c2de..8b715a7047c4 100644 --- a/.github/workflows/verifyPodfile.yml +++ b/.github/workflows/verifyPodfile.yml @@ -14,11 +14,6 @@ jobs: if: github.actor != 'OSBotify' runs-on: macos-latest steps: - # This action checks-out the repository, so the workflow can access it. - - uses: actions/checkout@93ea575cb5d8a053eaa0ac8fa3b40d7e05a33cc8 - with: - fetch-depth: 0 - + - uses: actions/checkout@v3 - uses: Expensify/App/.github/actions/composite/setupNode@main - - run: ./.github/scripts/verifyPodfile.sh diff --git a/.storybook/main.js b/.storybook/main.js index 0f9081d055c8..7d063fd6ffe1 100644 --- a/.storybook/main.js +++ b/.storybook/main.js @@ -5,4 +5,8 @@ module.exports = { core: { builder: 'webpack5', }, + managerHead: (head) => ` + ${head} + ${process.env.ENV === 'staging' ? '' : ''} + `, }; diff --git a/.storybook/webpack.config.js b/.storybook/webpack.config.js index 189851366792..6c39661c76f9 100644 --- a/.storybook/webpack.config.js +++ b/.storybook/webpack.config.js @@ -3,12 +3,24 @@ const path = require('path'); const dotenv = require('dotenv'); const _ = require('underscore'); + +let envFile; +switch (process.env.ENV) { + case 'production': + envFile = '.env.production'; + break; + case 'staging': + envFile = '.env.staging'; + break; + default: + envFile = '.env'; +} + +const env = dotenv.config({path: path.resolve(__dirname, `../${envFile}`)}); const custom = require('../config/webpack/webpack.common')({ - envFile: '.env.production', + envFile, }); -const env = dotenv.config({path: path.resolve(__dirname, '../.env.staging')}).parsed; - module.exports = ({config}) => { config.resolve.alias = { 'react-native-config': 'react-web-config', diff --git a/.well-known/apple-app-site-association b/.well-known/apple-app-site-association index 7568dbb55eb0..8318b394d778 100644 --- a/.well-known/apple-app-site-association +++ b/.well-known/apple-app-site-association @@ -8,6 +8,10 @@ "/": "/r/*", "comment": "Reports" }, + { + "/": "/a/*", + "comment": "Profile Page" + }, { "/": "/settings/*", "comment": "Profile and app settings" diff --git a/README.md b/README.md index 88a3d7d4db60..b453a278b29f 100644 --- a/README.md +++ b/README.md @@ -47,7 +47,10 @@ In order to have more consistent builds, we use a strict `node` and `npm` versio ## Running the iOS app 📱 For an M1 Mac, read this [SO](https://stackoverflow.com/c/expensify/questions/11580) for installing cocoapods. -* To install the iOS dependencies, run: `npm install && cd ios/ && pod install && cd ..` +* Install project gems, including cocoapods, using bundler to ensure everyone uses the same versions. In the project root, run: `bundle install` + * If you get the error `Could not find 'bundler'`, install the bundler gem first: `gem install bundler` and try again. + * If you are using MacOS and get the error `Gem::FilePermissionError` when trying to install the bundler gem, you're likely using system Ruby, which requires administrator permission to modify. To get around this, install another version of Ruby with a version manager like [rbenv](https://github.com/rbenv/rbenv#installation). +* To install the iOS dependencies, run: `npm install && npm run pod-install` * If you are an Expensify employee and want to point the emulator to your local VM, follow [this](https://stackoverflow.com/c/expensify/questions/7699) * To run a on a **Development Simulator**: `npm run ios` * Changes applied to Javascript will be applied automatically, any changes to native code will require a recompile diff --git a/android/app/build.gradle b/android/app/build.gradle index b4d3daa391ca..5b3f24847730 100644 --- a/android/app/build.gradle +++ b/android/app/build.gradle @@ -106,8 +106,8 @@ android { minSdkVersion rootProject.ext.minSdkVersion targetSdkVersion rootProject.ext.targetSdkVersion multiDexEnabled rootProject.ext.multiDexEnabled - versionCode 1001033401 - versionName "1.3.34-1" + versionCode 1001034214 + versionName "1.3.42-14" } splits { diff --git a/android/app/src/main/AndroidManifest.xml b/android/app/src/main/AndroidManifest.xml index 2ad4e0add0a9..b95d68c9c935 100644 --- a/android/app/src/main/AndroidManifest.xml +++ b/android/app/src/main/AndroidManifest.xml @@ -54,6 +54,7 @@ + @@ -65,6 +66,7 @@ + diff --git a/android/app/src/main/res/values/strings.xml b/android/app/src/main/res/values/strings.xml index ea9d58b49ab0..17b007b5b3c0 100644 --- a/android/app/src/main/res/values/strings.xml +++ b/android/app/src/main/res/values/strings.xml @@ -1,3 +1,3 @@ - New Expensify + Expensify Chat diff --git a/assets/animations/PreferencesDJ.json b/assets/animations/PreferencesDJ.json new file mode 100644 index 000000000000..efba5921fffb --- /dev/null +++ b/assets/animations/PreferencesDJ.json @@ -0,0 +1 @@ +{"v":"5.9.6","fr":24,"ip":0,"op":114,"w":375,"h":240,"nm":"Comp 2","ddd":0,"assets":[{"id":"comp_0","nm":"Comp 1","fr":24,"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"ED_preferences-1_030123_NL-kjs-2","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-1.5,245,0],"ix":2,"l":2},"a":{"a":0,"k":[966,543.5,0],"ix":1,"l":2},"s":{"a":0,"k":[62,62,100],"ix":6,"l":2}},"ao":0,"w":1932,"h":1087,"ip":0,"op":114,"st":0,"bm":0}]},{"id":"comp_1","nm":"ED_preferences-1_030123_NL-kjs-2","fr":24,"layers":[{"ddd":0,"ind":1,"ty":3,"nm":"hand 1 PEG","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.578,"y":0.799},"o":{"x":0.167,"y":0.167},"t":0,"s":[692,529.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.703,"y":1},"o":{"x":0.344,"y":0.743},"t":5,"s":[895.213,529.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":13,"s":[967,529.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":18,"s":[970.5,535.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":22,"s":[967,529.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":28,"s":[1017,570.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":33,"s":[1018.5,577,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.659,"y":0.299},"o":{"x":0.297,"y":0},"t":37,"s":[1017,570.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.425,"y":0.222},"t":46,"s":[900.86,570.5,0],"to":[0,0,0],"ti":[0,0,0]},{"t":51,"s":[647,570.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":3,"nm":"hand 1 hand PEG","parent":1,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":14,"s":[-7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":19,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":23,"s":[-7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":29,"s":[-7]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":34,"s":[0]},{"t":38,"s":[-7]}],"ix":10},"p":{"a":0,"k":[257.5,10,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"hand 1 hand Outlines","parent":2,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-148.97,104.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-3.25,-0.02],[-0.05,6.52],[12.01,0.17],[15.89,-13.41]],"o":[[2.86,0.01],[6.09,0.03],[1.42,-12.24],[-4.64,-0.07],[0,0]],"v":[[9.355,10.585],[18.895,10.955],[30.525,3.365],[5.815,-9.985],[-31.945,2.425]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1211.856,458.115],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-2.98,-0.16],[-0.64,9.03],[7.03,0.9],[2.33,-0.06],[0.36,-0.01]],"o":[[1.67,0.06],[8.23,0.46],[0.33,-8.19],[-3.65,-0.47],[-0.46,0.01],[0,0]],"v":[[-13.69,9.965],[-6.41,10.475],[13.36,1.415],[-0.73,-10.465],[-10.27,-10.835],[-11.5,-10.805]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1231.481,479.535],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.29,2.02],[8.06,0.67]],"o":[[1.12,-1.2],[1.18,-10.6],[0,0]],"v":[[6.1,9.42],[8.29,4.64],[-9.47,-9.42]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1234.542,499.49],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-8.23,-3.36],[7.45,-10.28],[-0.89,-3.97],[-3.76,0.11],[-2.46,8.99],[0.18,4.43],[-12.7,-0.71]],"o":[[6.94,10.51],[11.75,4.8],[-2.38,3.29],[0.82,3.67],[9.32,-0.28],[1.16,-4.27],[-0.2,-4.89],[0,0]],"v":[[-32.175,-31.21],[-13.265,-17.69],[-5.755,15.09],[-10.755,25.74],[-1.835,31.1],[17.445,13.51],[18.715,0.42],[32.175,-9.09]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1192.207,540.22],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-23.44,-1.2],[-1.28,5.57],[7.14,1.59],[17.69,1.34],[1.86,0.47]],"o":[[22.9,1.66],[7.28,0.37],[1.86,-8.1],[-5.62,-1.26],[-13.39,-1.01],[0,0]],"v":[[-30.435,9.68],[21.895,13.01],[40.335,5.9],[28.795,-6.85],[-15.345,-11.04],[-42.195,-13.38]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1255.876,521.45],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.17,-0.12],[5.52,1.16]],"o":[[-0.17,0.11],[-6.56,4.38],[0,0]],"v":[[8.87,-4.605],[8.37,-4.265],[-8.87,3.445]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1171.602,464.895],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,6.644],[0.976,3.867],[-6.56,4.38],[0,0],[-4.64,-0.07],[1.42,-12.24],[6.09,0.03],[2.33,-0.06],[-3.25,-0.02],[0.33,-8.19],[8.23,0.46],[0,0],[1.18,-10.6],[1.12,-1.2],[0,0],[-5.62,-1.26],[1.86,-8.1],[7.28,0.37],[22.9,1.66],[0,0],[-0.2,-4.89],[1.16,-4.27],[9.32,-0.28],[0.82,3.67],[-2.38,3.29],[11.75,4.8],[6.94,10.51],[-0.997,3.925]],"o":[[0,0],[-0.468,-6.633],[5.52,1.16],[0,0],[15.89,-13.41],[12.01,0.17],[-0.05,6.52],[-3.65,-0.47],[2.86,0.01],[7.03,0.9],[-0.64,9.03],[0,0],[8.06,0.67],[-0.29,2.02],[0,0],[17.69,1.34],[7.14,1.59],[-1.28,5.57],[-23.44,-1.2],[0,0],[-12.7,-0.71],[0.18,4.43],[-2.46,8.99],[-3.76,0.11],[-0.89,-3.97],[7.45,-10.28],[-8.23,-3.36],[1.13,-2.149],[0.99,-2.969]],"v":[[-65.658,-17.373],[-64.814,-27.683],[-66.32,-40.94],[-49.08,-48.65],[-49.14,-48.74],[-11.38,-61.15],[13.33,-47.8],[1.7,-40.21],[-7.84,-40.58],[1.7,-40.21],[15.79,-28.33],[-3.98,-19.27],[-3.98,-19.21],[13.78,-5.15],[11.59,-0.37],[11.48,1.13],[55.62,5.32],[67.16,18.07],[48.72,25.18],[-3.61,21.85],[-4.67,21.85],[-18.13,31.36],[-19.4,44.45],[-38.68,62.04],[-47.6,56.68],[-42.6,46.03],[-50.11,13.25],[-69.02,-0.27],[-66.789,-8.102]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1229.051,509.279],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":52,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"hand 1 Outlines","parent":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[58.53,64.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[32.979,4.528]],"o":[[31.393,2.084],[0,0]],"v":[[-14.664,-22.282],[-16.729,17.754]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1177.396,490.621],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[8.275,2.595],[1.935,-3.795],[-8.275,3.795]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1096.437,499.525],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[9.98,5.015],[0.83,-5.015],[-9.98,2.965]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1100.342,468.175],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[9.655,5.65],[0.505,-5.65],[-9.655,2.35]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1099.837,479.09],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[9.345,4.715],[1.855,-4.715],[-9.345,2.675]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1098.826,490.195],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-5.085,-2.8],[-0.115,2.8],[5.085,-1.48]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1141.487,468.08],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-8.945,-3.71],[-1.505,3.71],[8.945,-1.92]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1140.477,500.05],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-8.915,-4.615],[-1.125,4.615],[8.915,-3.245]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1142.116,488.435],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-8.915,-4.62],[-1.125,4.62],[8.915,-3.24]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1141.957,476.34],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.44,-5.59],[0.14,-3.85],[0.68,-3.99],[1.15,-3.66]],"o":[[0,0],[0.23,2.87],[-0.12,3.46],[-0.57,3.44],[0,0]],"v":[[0.275,-20.57],[1.545,-11.55],[1.765,-1.38],[0.635,9.87],[-1.905,20.57]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1087.586,482.79],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.17,-6.57],[0.39,-4.27],[0.75,-3.5],[0.88,-2.64]],"o":[[0,0],[0.08,3.36],[-0.28,3.26],[-0.54,2.62],[0,0]],"v":[[1.07,-20.285],[1.96,-9.415],[1.59,2.175],[0.08,12.375],[-2.04,20.285]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1108.422,482.605],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.06,-4.41],[0.4,-4.57],[0.92,-4.2],[0.91,-2.62]],"o":[[0,0],[0.04,3.25],[-0.34,3.88],[-0.59,2.68],[0,0]],"v":[[1.895,-19.705],[2.225,-12.515],[1.785,-0.545],[-0.035,11.725],[-2.265,19.705]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1129.947,484.245],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.2,-3.67],[0.35,-4.8],[1.09,-4.52],[0.7,-2.03]],"o":[[0,0],[0.18,3.18],[-0.29,4.05],[-0.48,2.03],[0,0]],"v":[[1.25,-18.64],[1.8,-12.73],[1.7,-0.49],[-0.28,12.53],[-2.05,18.64]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1150.312,485.75],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.04,0.04],[-53.15,4.6],[-0.82,0.06],[-5.46,0.02],[-0.54,-0.01],[-7.11,-0.5],[-2.96,-0.26],[-0.89,-0.07],[-3.32,-0.35],[-3.951,-0.825]],"o":[[0.04,-0.04],[95.55,-87.23],[0.82,-0.07],[5.54,-0.42],[0.56,0],[7.1,0.01],[2.94,0.19],[0.65,0.06],[2.54,0.2],[4.632,0.863],[0,0]],"v":[[-141.322,59.105],[-141.202,58.995],[66.447,-58.285],[68.898,-58.475],[85.378,-59.105],[87.028,-59.095],[108.298,-58.265],[117.158,-57.575],[119.487,-57.385],[128.727,-56.575],[141.322,-54.44]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1019.344,562.815],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[4.8,0.8],[1.81,0.29],[3.91,0.53],[1.61,0.2],[5.44,0.52],[2.66,0.13],[2.78,0.02],[4.44,-0.25],[22.54,-7.15],[0,0],[0,0]],"o":[[-2.95,-0.1],[-1.5,-0.25],[-2.91,-0.47],[-1.45,-0.2],[-4.19,-0.53],[-2.66,-0.25],[-2.78,-0.15],[-4.45,-0.04],[-23.47,1.28],[-86.74,27.52],[0,0],[0,0]],"v":[[153.23,-73.25],[142.1,-74.7],[137.16,-75.52],[127,-77.03],[122.41,-77.63],[108.01,-79.21],[100.02,-79.79],[91.68,-80.05],[78.34,-79.74],[9.04,-66.22],[-153.23,43.89],[-131.48,80.09]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1009.502,541.59],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.88,-2.64],[0,0],[0.56,0],[0,0],[0,0],[0,0],[0,0],[0.82,-0.07],[0,0],[-0.57,3.44],[0,0],[0,0]],"o":[[0,0],[-0.54,2.62],[0,0],[-0.54,-0.01],[0,0],[0,0],[0,0],[0,0],[-0.82,0.06],[0,0],[1.15,-3.66],[0,0],[0,0],[0,0]],"v":[[11.08,-0.095],[11.41,-0.025],[9.29,7.885],[9.28,8.715],[7.63,8.705],[7.62,8.705],[-8.85,9.335],[-8.93,9.335],[-8.85,9.335],[-11.3,9.525],[-11.41,8.355],[-8.87,-2.345],[-7.61,-2.135],[3.59,-9.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1097.091,495.005],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.75,-3.5],[0,0],[0,0],[0,0],[0,0],[-0.12,3.46],[0,0],[0,0]],"o":[[0,0],[-0.28,3.26],[0,0],[0,0],[0,0],[0,0],[0.68,-3.99],[0,0],[0,0],[0,0]],"v":[[10.375,0.53],[10.895,0.57],[9.385,10.77],[9.055,10.7],[1.565,1.27],[-9.635,8.66],[-10.895,8.45],[-9.765,-2.8],[-8.935,-2.77],[1.225,-10.77]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1099.116,484.21],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.39,-4.27],[0,0],[0,0],[0,0],[0,0],[0.23,2.87],[0,0],[0,0],[0,0]],"o":[[0.08,3.36],[0,0],[0,0],[0,0],[0,0],[0.14,-3.85],[0,0],[0,0],[0,0],[0,0]],"v":[[10.585,-0.78],[10.215,10.81],[9.695,10.77],[0.545,-0.53],[-9.615,7.47],[-10.445,7.44],[-10.665,-2.73],[-9.435,-2.83],[1.375,-10.81],[10.525,-0.78]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1099.797,473.97],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.65,0.06],[2.94,0.19],[0,0],[-0.59,2.68],[0,0]],"o":[[0,0],[-0.89,-0.07],[-2.96,-0.26],[0,0],[0.91,-2.62],[0,0],[0,0]],"v":[[5.665,3.06],[5.525,4.73],[3.195,4.54],[-5.665,3.85],[-5.625,3.25],[-3.395,-4.73],[-1.775,-4.36]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1133.307,500.7],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.91,-0.47],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[3.91,0.53]],"v":[[5.13,-1.65],[5.04,-1.12],[-0.16,3.16],[-5.13,-2.44],[-5.03,-3.16]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1141.532,467.72],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.7,-2.03],[0,0],[2.54,0.2],[0,0]],"o":[[0,0],[-0.48,2.03],[0,0],[-3.32,-0.35],[0,0],[0,0]],"v":[[4.99,-4.055],[5.6,-3.905],[3.83,2.205],[3.64,4.055],[-5.6,3.245],[-5.46,1.575]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1144.431,502.185],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.09,-4.52],[0,0],[0,0],[0,0],[0,0],[-0.34,3.88],[0,0],[0,0]],"o":[[0,0],[-0.29,4.05],[0,0],[0,0],[0,0],[0,0],[0.92,-4.2],[0,0],[0,0],[0,0]],"v":[[10.07,-8.54],[11.05,-8.47],[9.07,4.55],[8.46,4.4],[-1.99,10.03],[-9.43,2.61],[-11.05,2.24],[-9.23,-10.03],[-7.76,-9.91],[0.03,-0.68]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1140.962,493.73],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.35,-4.8],[0,0],[0,0],[0,0],[0,0],[0.04,3.25],[0,0],[0,0],[0,0]],"o":[[0.18,3.18],[0,0],[0,0],[0,0],[0,0],[0.4,-4.57],[0,0],[0,0],[0,0],[0,0]],"v":[[10.065,-9.365],[9.965,2.875],[8.985,2.805],[-1.055,10.665],[-8.845,1.435],[-10.315,1.315],[-9.875,-10.655],[-9.005,-10.665],[-1.215,-1.425],[8.825,-9.285]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1142.047,482.385],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.876,2.281],[2.355,8.766],[4.537,2.448],[3.661,1.45],[0.745,0.157],[4.8,0.8],[0,0],[-0.2,-3.67],[0.35,-4.8],[1.09,-4.52],[0.7,-2.031],[0,0],[-1.808,-1.009]],"o":[[8.344,-3.903],[-1.333,-4.96],[-3.468,-1.871],[-0.736,0.035],[-2.95,-0.099],[0,0],[0,0],[0.18,3.18],[-0.29,4.05],[-0.48,2.03],[0,0],[4.808,0.503],[5.303,0.617]],"v":[[7.343,18.678],[17.233,-3.529],[8.256,-15.114],[-2.71,-19.476],[-4.928,-19.644],[-16.058,-21.093],[-16.098,-20.874],[-15.548,-14.963],[-15.648,-2.723],[-17.628,10.297],[-19.398,16.407],[-19.588,18.257],[-8.306,20.476]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1167.659,487.983],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-1.45,-0.2],[0,0],[0,0],[0,0],[0,0],[-1.5,-0.25],[0,0],[-0.2,-3.67],[0,0],[0,0],[0,0]],"o":[[-0.06,-4.41],[0,0],[1.61,0.2],[0,0],[0,0],[0,0],[0,0],[1.81,0.29],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-9.805,-0.73],[-10.135,-7.92],[-10.065,-8.5],[-5.475,-7.9],[-5.575,-7.18],[-0.605,-1.58],[4.595,-5.86],[4.685,-6.39],[9.625,-5.57],[9.585,-5.35],[10.135,0.56],[8.895,0.64],[-1.145,8.5],[-8.935,-0.74]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1141.976,472.46],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-4.45,-0.04]],"o":[[0,0],[0,0],[-0.44,-5.59],[0,0],[4.44,-0.25],[0,0]],"v":[[6.66,-3.21],[-4.15,4.77],[-5.38,4.87],[-6.65,-4.15],[-6.67,-4.52],[6.67,-4.83]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1094.511,466.37],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.66,-0.25],[-4.19,-0.53],[0,0],[-0.06,-4.41],[0.4,-4.57],[0.92,-4.2],[0.91,-2.62],[0,0],[7.1,0.01],[0,0],[-0.54,2.62],[-0.28,3.26],[0.08,3.36]],"o":[[0,0],[2.66,0.13],[5.44,0.52],[0,0],[0,0],[0.04,3.25],[-0.34,3.88],[-0.59,2.68],[0,0],[-7.11,-0.5],[0,0],[0.88,-2.64],[0.75,-3.5],[0.39,-4.27],[-0.17,-6.57]],"v":[[-9.8,-20.855],[-9.77,-21.375],[-1.78,-20.795],[12.62,-19.215],[12.55,-18.635],[12.88,-11.445],[12.44,0.525],[10.62,12.795],[8.39,20.775],[8.35,21.375],[-12.92,20.545],[-12.91,19.715],[-10.79,11.805],[-9.28,1.605],[-8.91,-9.985]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1119.292,483.175],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.78,-0.15],[0,0],[-0.17,-6.57],[0,0]],"o":[[0,0],[2.78,0.02],[0,0],[0,0],[0,0],[0,0]],"v":[[-4.605,-4.205],[-4.595,-5.825],[3.745,-5.565],[3.715,-5.045],[4.605,5.825],[4.545,5.825]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1105.776,467.365],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-86.74,27.52],[-23.47,1.28],[0,0],[-0.44,-5.59],[0.14,-3.85],[0.68,-3.99],[1.15,-3.66],[0,0],[95.55,-87.23],[0,0]],"o":[[0,0],[22.54,-7.15],[0,0],[0,0],[0.23,2.87],[-0.12,3.46],[-0.57,3.44],[0,0],[-53.15,4.6],[0,0],[0,0]],"v":[[-116.61,43.65],[45.66,-66.46],[114.96,-79.98],[114.98,-79.61],[116.25,-70.59],[116.47,-60.42],[115.34,-49.17],[112.8,-38.47],[112.91,-37.3],[-94.74,79.98],[-94.86,79.85]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.698039215686,0.407843167174,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[972.881,541.83],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":52,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"hand 2 PEG","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"t":43,"s":[2157,373.5,0],"to":[-58.333,0,0],"ti":[50,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[1807,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":66,"s":[1807,353.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":73,"s":[1807,373.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":83,"s":[1841,342,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[1841,363,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0},"t":100,"s":[1841,342,0],"to":[0,0,0],"ti":[0,0,0]},{"t":113,"s":[2151,343,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":3,"nm":"hand 2 finger 1 PEG","parent":5,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":52,"s":[14]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":58,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":73,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[14]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":83,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":100,"s":[0]},{"t":105,"s":[14]}],"ix":10},"p":{"a":0,"k":[-282,13,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":3,"nm":"hand 2 finger 2 PEG","parent":5,"sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":52,"s":[-17]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":58,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":73,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":78,"s":[-17]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":83,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":100,"s":[0]},{"t":105,"s":[-17]}],"ix":10},"p":{"a":0,"k":[-256.5,62,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"hand 2 finger 1 Outlines","parent":6,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-459.47,256.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[6.41,-7.55],[9.29,-3.42],[2.17,-3.62],[-1.85,-2.53],[-3.03,-0.8],[-4.4,1.91],[-5.27,4.94],[-3.54,2.48],[-2.63,-0.64]],"o":[[-9.76,-1.73],[-6.42,7.55],[-3.97,1.46],[-1.61,2.69],[1.85,2.54],[4.63,1.21],[6.62,-2.89],[3.3,-3.09],[2.12,-1.48],[0,0]],"v":[[29.43,-25.94],[4.71,-12.72],[-17.17,6.69],[-27.41,12.34],[-27.58,21.47],[-18.94,26.46],[-5.17,23.99],[11.41,10.57],[21.31,0.55],[28.35,-1.07]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1448.031,346.2],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.27,4.94],[-3.54,2.48],[-2.061,-0.125],[-0.542,8.253],[6.191,-7.292],[9.29,-3.42],[2.17,-3.62],[-1.85,-2.53],[-3.03,-0.8],[-4.4,1.91]],"o":[[3.3,-3.09],[1.739,-1.214],[1.099,-8.198],[-9.345,-1.078],[-6.42,7.55],[-3.97,1.46],[-1.61,2.69],[1.85,2.54],[4.63,1.21],[6.62,-2.89]],"v":[[11.906,10.304],[21.806,0.284],[27.463,-1.533],[28.933,-26.326],[5.206,-12.986],[-16.674,6.424],[-26.914,12.074],[-27.084,21.204],[-18.444,26.194],[-4.674,23.724]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1447.535,346.466],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":43,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"hand 2 finger 2 Outlines","parent":7,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-484.97,207.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-0.04],[3.69,-3.82],[3.8,-0.28],[3.68,4.46],[4.68,1.91],[3.6,-3.54],[-4.37,-2.53],[-1.85,-0.69],[-3.12,-4.15],[-7.28,-2.01],[-6.93,4.21],[-3.43,3.35]],"o":[[0,0.04],[-0.38,4.19],[-2.64,2.73],[-5.77,0.43],[-3.22,-3.89],[-4.68,-1.92],[-3.61,3.54],[1.72,0.99],[4.87,1.8],[4.54,6.04],[7.82,2.17],[4.09,-2.49],[0,0]],"v":[[22.24,-20.04],[22.23,-19.92],[16.09,-8.16],[6.56,-2.36],[-7.22,-11.68],[-18.78,-21.24],[-32.96,-19.3],[-32.09,-6.22],[-26.48,-4.33],[-15.47,6.35],[1.45,20.99],[24.71,16.67],[36.57,6.7]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1472.852,400.81],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.645,4.74],[2.732,1.761],[1.645,0.583],[3.316,-3.433],[3.799,-0.28],[3.681,4.46],[4.679,1.91],[3.6,-3.54],[-4.37,-2.53],[-1.85,-0.69],[-3.12,-4.15],[-7.281,-2.01],[-6.931,4.21],[-3.431,3.35]],"o":[[0.448,-5.443],[-1.569,-2.812],[-1.462,-0.942],[-0.649,3.69],[-2.64,2.73],[-5.771,0.43],[-3.219,-3.89],[-4.681,-1.92],[-3.61,3.54],[1.72,0.99],[4.87,1.8],[4.541,6.04],[7.819,2.17],[4.089,-2.49],[0,0]],"v":[[36.383,6.63],[32.957,-9.192],[26.494,-16.456],[21.79,-18.663],[15.83,-8.16],[6.3,-2.36],[-7.481,-11.68],[-19.04,-21.24],[-33.221,-19.3],[-32.351,-6.22],[-26.741,-4.33],[-15.731,6.35],[1.19,20.99],[24.45,16.67],[36.31,6.7]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1473.112,400.81],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":43,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"hand 2 Outlines","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-791.47,219.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.142,-1.264]],"o":[[-12.659,-1.213],[0,0]],"v":[[5.595,13.028],[7.064,-11.764]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1469.404,331.904],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.432,17.893]],"o":[[-10.537,-1.372],[0,0]],"v":[[8.139,13.629],[-6.707,-13.629]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1501.863,393.331],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.81,-0.51],[-0.73,0.03]],"o":[[1.21,1.45],[0.72,0.2],[0,0]],"v":[[-3.35,-1.74],[1.17,1.47],[3.35,1.71]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.972,379.1],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.55,-4.19],[-2.62,-3.39],[-2.08,-0.57],[-2.07,2.06],[-0.25,0.31],[-0.23,0.36],[0.35,5.13]],"o":[[-1.42,6.16],[0.55,4.2],[1.29,1.69],[2.86,0.78],[0.29,-0.29],[0.27,-0.33],[0,0],[0,0]],"v":[[-9.199,-18.937],[-10.49,2.267],[-6.69,14.387],[-1.64,18.157],[6.45,15.667],[7.26,14.767],[8.01,13.727],[10.69,2.957]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1480.171,362.432],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-8.27,1.65],[-8.07,-2.44],[-5.25,5.81],[-10.57,5.67],[-2.53,1.26],[-12.87,7.78],[-2.12,-12],[49.41,-21.88],[10.7,-0.95],[15.71,3.69],[3.6,1.28],[6.54,4.41],[8.96,12.06],[0.38,0.51],[6.36,4.36],[4.75,0.7]],"o":[[4.07,-7.39],[8.27,-1.64],[1.34,-7.71],[5.25,-5.8],[2.53,-1.2],[59.81,-29.67],[8.47,12],[-12.71,10.24],[-12.71,5.63],[-16.51,1.48],[-3.72,-0.87],[-7.23,-2.55],[-12.45,-8.39],[-0.39,-0.51],[-4.57,-6.21],[-3.97,-2.72],[0,0]],"v":[[-68.435,63.175],[-48.205,49.345],[-23.245,51.375],[-12.565,30.805],[5.955,16.025],[13.545,12.335],[143.605,-68.325],[161.605,-29.155],[22.545,56.255],[-19.805,66.845],[-68.705,64.295],[-79.695,61.085],[-100.405,50.725],[-131.675,18.635],[-132.815,17.105],[-148.275,0.065],[-161.605,-5.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1671.606,412.045],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-8.86,3.08],[-9.21,-1.73],[-4.31,4.37],[-0.3,0.28]],"o":[[3.62,-8.65],[8.86,-3.07],[1.4,-5.98],[0.29,-0.29],[0,0]],"v":[[-28.93,18.145],[-8.53,-0.025],[19.25,-1.345],[28.05,-17.285],[28.93,-18.145]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1621.251,453.815],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-1.41,1.59],[1.41,-1.59]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1566.622,451.83],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-2.63],[2.64,0],[0,2.63],[-2.63,0]],"o":[[0,2.63],[-2.63,0],[0,-2.63],[2.64,0]],"v":[[4.765,0.005],[-0.005,4.765],[-4.765,0.005],[-0.005,-4.765]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.387,446.535],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-2.71,1.79],[-2.41,-0.3],[-3.06,-3.27],[-0.27,-0.3]],"o":[[2.74,-1.75],[2.03,-1.34],[4.44,0.54],[0.25,0.27],[0,0]],"v":[[-13.2,4.64],[-5.12,-0.91],[2.85,-4.34],[12.41,0.86],[13.2,1.72]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1553.182,426],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.74,-0.79],[-0.92,-3.72],[-2.09,-2.21],[-2.94,-1.99],[-7.34,-2.45]],"o":[[-0.76,0.79],[-2.6,2.81],[0.54,2.22],[3.47,3.69],[6.39,4.36],[0,0]],"v":[[-4.955,-21.5],[-13.085,-14.71],[-17.295,-4.53],[-13.025,2.22],[-1.895,11.26],[18.215,21.5]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1578.756,424.51],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.8,6.15],[6.79,3.03],[1.43,0.25]],"o":[[-3.8,-6.15],[-4.05,-6.56],[-1.28,-0.58],[0,0]],"v":[[15.875,18.435],[3.815,-0.505],[-11.815,-17.175],[-15.875,-18.435]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.337,338.695],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-2.93,-5.49],[-0.07,-0.13],[0.48,-5.77],[0,-0.04]],"o":[[6.05,1.47],[0.07,0.13],[2.7,5.14],[0,0.04],[0,0]],"v":[[-9.595,-17.88],[4.885,1.88],[5.095,2.27],[9.115,17.76],[9.105,17.88]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1485.977,363.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[3.68,6.38],[6.13,2.72],[0.01,0.01],[4.16,-2.06],[1.41,-1.04],[0.1,-0.07]],"o":[[-3.69,-6.38],[-3.36,-5.81],[-0.01,-0.01],[-4.25,-1.87],[-1.56,0.77],[-0.09,0.06],[0,0]],"v":[[20.755,17.85],[9.695,-1.28],[-3.535,-15.96],[-3.575,-15.98],[-17.065,-15.67],[-20.465,-13.23],[-20.755,-13.02]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1502.437,333.79],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.45,-0.22],[12.48,-1.18],[4.86,0.25],[7.03,2.12],[10.36,12.56],[0.3,0.37],[11.22,17.58],[4.86,7.61],[4.59,2.42],[3.53,-2.82]],"o":[[-0.44,0.23],[-11.06,5.53],[-4.91,0.47],[-7.33,-0.38],[-15.56,-4.69],[-0.31,-0.36],[-13.16,-16.17],[-4.86,-7.61],[-2.79,-4.38],[-4.59,-2.42],[0,0]],"v":[[93.525,49.355],[92.185,50.035],[56.225,60.185],[41.525,60.515],[19.765,57.475],[-18.385,28.335],[-19.295,27.235],[-54.925,-24.145],[-69.505,-46.985],[-79.875,-58.345],[-93.525,-57.235]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1592.857,374.125],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,0.79],[0,0],[0.3,0.37],[11.22,17.58],[4.86,7.61],[4.59,2.42],[3.53,-2.82],[0,0],[0.01,0.01],[4.16,-2.06],[1.41,-1.04],[0,0],[1.43,0.25],[1.429,-0.129],[0.97,-1.082],[0.227,-3.204],[-0.296,-1.602],[-0.963,-1.19],[-0.038,-2.145],[-1.867,-0.454],[-2.93,-5.49],[0,0],[0.48,-5.77],[0,-0.04],[0.219,-0.826],[-0.632,-3.01],[-1.354,-2.192],[-4.605,-1.032],[0,0],[-3.97,-2.72],[-4.57,-6.21],[-0.39,-0.51],[0,0],[-2.71,1.79],[-2.41,-0.3],[-3.06,-3.27],[0,0],[0.54,2.22],[-2.6,2.81]],"o":[[0,0],[-0.31,-0.36],[-13.16,-16.17],[-4.86,-7.61],[-2.79,-4.38],[-4.59,-2.42],[0,0],[-0.01,-0.01],[-4.25,-1.87],[-1.56,0.77],[0,0],[-1.28,-0.58],[-1.488,-0.264],[-1.266,0.566],[-2.18,2.432],[-0.115,1.624],[0.278,1.511],[1.354,1.673],[1.585,-0.72],[6.05,1.47],[0,0],[2.7,5.14],[0,0.04],[-0.078,0.859],[0.624,2.995],[0.529,2.516],[2.54,4.114],[0,0],[4.75,0.7],[6.36,4.36],[0.38,0.51],[0,0],[2.74,-1.75],[2.03,-1.34],[4.44,0.54],[0,0],[-2.09,-2.21],[-0.92,-3.72],[0.74,-0.79]],"v":[[53.507,30.99],[54.177,30.44],[53.266,29.34],[17.636,-22.04],[3.057,-44.88],[-7.313,-56.24],[-20.964,-55.13],[-21.393,-54.19],[-21.433,-54.21],[-34.923,-53.9],[-38.323,-51.46],[-38.773,-50.5],[-42.833,-51.76],[-47.208,-51.924],[-50.646,-49.605],[-54.062,-40.574],[-53.823,-35.698],[-52.049,-31.909],[-49.059,-26.354],[-43.913,-26.89],[-29.433,-7.13],[-29.224,-6.74],[-25.203,8.75],[-25.214,8.87],[-25.677,11.391],[-24.622,20.526],[-21.861,27.672],[-10.703,35.329],[-10.293,34.94],[3.036,40.09],[18.497,57.13],[19.636,58.66],[19.687,58.62],[27.766,53.07],[35.737,49.64],[45.297,54.84],[45.437,54.71],[41.167,47.96],[45.377,37.78]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1520.295,372.02],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.96,12.06],[0,0],[-2.71,1.79],[-2.41,-0.3],[-3.06,-3.27],[0,0],[0.54,2.22],[-2.6,2.81],[-0.76,0.79],[0,0],[-15.56,-4.69],[-7.33,-0.38],[-4.91,0.47],[0,0],[1.4,-5.98],[8.86,-3.07],[3.62,-8.65],[0,0],[6.54,4.41]],"o":[[0,0],[2.74,-1.75],[2.03,-1.34],[4.44,0.54],[0,0],[-2.09,-2.21],[-0.92,-3.72],[0.74,-0.79],[0,0],[10.36,12.56],[7.03,2.12],[4.86,0.25],[0,0],[-4.31,4.37],[-9.21,-1.73],[-8.86,3.08],[0,0],[-7.23,-2.55],[-12.45,-8.39]],"v":[[-54.685,-7.115],[-54.635,-7.155],[-46.555,-12.705],[-38.585,-16.135],[-29.025,-10.935],[-28.885,-11.065],[-33.155,-17.815],[-28.945,-27.995],[-20.815,-34.785],[-20.145,-35.335],[18.005,-6.195],[39.765,-3.155],[54.465,-3.485],[54.685,-1.265],[45.885,14.675],[18.105,15.995],[-2.295,34.165],[-2.705,35.335],[-23.415,24.975]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,-2.63],[-2.63,0],[0,2.63],[2.64,0]],"o":[[0,2.63],[2.64,0],[0,-2.63],[-2.63,0]],"v":[[-27.995,8.745],[-23.235,13.505],[-18.465,8.745],[-23.235,3.975]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1594.616,437.795],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":4,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.63,0],[0,-2.63],[2.64,0],[0,2.63]],"o":[[2.64,0],[0,2.63],[-2.63,0],[0,-2.63]],"v":[[-0.005,-4.765],[4.765,0.005],[-0.005,4.765],[-4.765,0.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.386,446.535],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[49.41,-21.88],[10.7,-0.95],[15.71,3.69],[0,0],[-8.27,1.65],[-8.07,-2.44],[-5.25,5.81],[-10.57,5.67],[-2.53,1.26],[-12.87,7.78],[-2.12,-12]],"o":[[-12.71,5.63],[-16.51,1.48],[0,0],[4.07,-7.39],[8.27,-1.64],[1.34,-7.71],[5.25,-5.8],[2.53,-1.2],[59.81,-29.67],[8.47,12],[-12.71,10.24]],"v":[[-23.905,56.255],[-66.255,66.845],[-115.155,64.295],[-114.885,63.175],[-94.655,49.345],[-69.695,51.375],[-59.015,30.805],[-40.495,16.025],[-32.905,12.335],[97.155,-68.325],[115.155,-29.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1718.057,412.045],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-11.06,5.53],[0,0],[2.53,-1.2],[5.25,-5.8],[1.34,-7.71],[8.27,-1.64],[4.07,-7.39],[0,0],[3.6,1.28],[0,0],[-8.86,3.08],[-9.21,-1.73],[-4.31,4.37]],"o":[[12.48,-1.18],[0,0],[-2.53,1.26],[-10.57,5.67],[-5.25,5.81],[-8.07,-2.44],[-8.27,1.65],[0,0],[-3.72,-0.87],[0,0],[3.62,-8.65],[8.86,-3.07],[1.4,-5.98],[0,0]],"v":[[10.55,-15.94],[46.51,-26.09],[46.62,-25.87],[39.03,-22.18],[20.51,-7.4],[9.83,13.17],[-15.13,11.14],[-35.36,24.97],[-35.63,26.09],[-46.62,22.88],[-46.21,21.71],[-25.81,3.54],[1.97,2.22],[10.77,-13.72]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.819607902976,0.501960784314,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1638.531,450.25],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.27,-0.33],[0.29,-0.29],[2.86,0.78],[1.29,1.69],[0.55,4.2],[-1.42,6.16],[0,0],[-2.63,-0.64],[-2.93,-5.49],[-0.07,-0.13]],"o":[[0.35,5.13],[-0.23,0.36],[-0.25,0.31],[-2.07,2.06],[-2.08,-0.57],[-2.62,-3.39],[-0.55,-4.19],[0,0],[2.12,-1.48],[6.05,1.47],[0.07,0.13],[0,0]],"v":[[10.935,2.46],[8.255,13.23],[7.505,14.27],[6.695,15.17],[-1.395,17.66],[-6.445,13.89],[-10.245,1.77],[-9.865,-16.04],[-10.585,-16.18],[-3.545,-17.8],[10.935,1.96],[11.145,2.35]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1479.927,362.93],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.72,0.2],[1.21,1.45],[0,0],[-0.23,0.36],[0.35,5.13],[0,0],[0.48,-5.77],[0,-0.04],[0,0]],"o":[[-1.81,-0.51],[0,0],[0.27,-0.33],[0,0],[0,0],[2.7,5.14],[0,0.04],[0,0],[-0.73,0.03]],"v":[[0.64,7.485],[-3.88,4.275],[-4.07,4.115],[-3.32,3.075],[-0.64,-7.695],[-0.43,-7.805],[3.59,7.685],[3.58,7.805],[2.82,7.725]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.313725490196,0.933333393172,0.964705942191,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1491.501,373.085],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false}],"ip":43,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":11,"ty":3,"nm":"hand bottom PEG","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.578],"y":[0.733]},"o":{"x":[0.182],"y":[0.103]},"t":27,"s":[-26]},{"i":{"x":[0.703],"y":[1]},"o":{"x":[0.344],"y":[0.743]},"t":32,"s":[-8.295]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":40,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":46,"s":[-6]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":52,"s":[3]},{"i":{"x":[0.659],"y":[0.273]},"o":{"x":[0.297],"y":[0]},"t":59,"s":[-6]},{"i":{"x":[0.815],"y":[0.903]},"o":{"x":[0.425],"y":[0.258]},"t":67,"s":[-13.259]},{"t":71,"s":[-26]}],"ix":10},"p":{"a":1,"k":[{"i":{"x":0.578,"y":0.738},"o":{"x":0.167,"y":0.167},"t":27,"s":[1532,1088.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.703,"y":1},"o":{"x":0.344,"y":0.766},"t":32,"s":[1442.287,897.835,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":40,"s":[1412,808.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":46,"s":[1430,849.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":52,"s":[1406,779.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.659,"y":0.25},"o":{"x":0.297,"y":0},"t":59,"s":[1430,849.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.425,"y":0.253},"t":67,"s":[1459.02,936.242,0],"to":[0,0,0],"ti":[0,0,0]},{"t":71,"s":[1532,1088.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"hand bottom Outlines","parent":11,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-396.47,-215.39,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[-12.35,12.35],[0,0]],"v":[[16.06,-9.525],[-16.06,9.525]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1403.031,794.715],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-13.06,13.76]],"o":[[0,0],[0,0]],"v":[[-16.59,9.88],[16.59,-9.88]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1397.562,785.54],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-4.06,-9.705],[4.06,0.175],[-4.06,9.705]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1390.682,711.245],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.41,-0.02],[0,0],[0,0],[0,0],[-8.35,0.14],[-3.02,0.56]],"o":[[-3.25,0.2],[-8.08,0.09],[0,0],[0,0],[0,0],[3,-0.05],[0,0]],"v":[[11.645,-10.625],[3.165,-10.315],[-8.475,-10.875],[-1.065,0.065],[-12.355,9.535],[3.185,10.735],[12.355,9.885]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1383.447,711.005],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.5,-7.97],[0,-2.02],[2.14,-3.54],[3.26,0],[0.77,0.26],[0,9.47],[-5.63,1.5],[-0.65,0]],"o":[[0.34,1.84],[0,5.41],[-2.14,3.55],[-0.82,0],[-5.39,-1.82],[0,-9.74],[0.62,-0.17],[5.31,0]],"v":[[11.295,-5.825],[11.825,-0.005],[8.355,13.845],[-0.005,19.585],[-2.385,19.185],[-11.825,-0.005],[-1.905,-19.325],[-0.005,-19.585]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1361.386,706.305],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-21.53,1.06]],"o":[[0,0],[0,0]],"v":[[-17.825,-2.645],[17.825,1.585]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1379.036,682.655],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.09,-0.03],[-21.94,0.67]],"o":[[0,0],[1.5,0.55],[0,0]],"v":[[-18.53,-2.63],[-18.39,-2.58],[18.53,1.96]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1379.741,674.52],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[6.7,-3.18],[4.94,-32.12],[-0.34,-3.99],[-1.51,-5.55],[1.27,-8.26],[0.43,-2.72],[0.26,-2.15]],"o":[[0.7,-1.41],[-22.83,10.81],[-0.61,3.96],[0.49,5.73],[2.47,9.09],[-0.39,2.56],[-0.31,2.01],[0,0]],"v":[[27.175,-75.56],[17.295,-79.44],[-27.175,10.91],[-27.535,24.1],[-23.645,43.38],[-23.155,68.49],[-24.425,76.38],[-25.295,82.62]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1384.506,603.45],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-12.26,17.16],[-3.35,2.54],[-0.34,0.21],[-3.88,-7.06]],"o":[[4.94,-20.5],[1.59,-2.23],[0.36,-0.27],[3.53,-2.15],[0,0]],"v":[[-25.075,35.31],[0.725,-19.78],[9.555,-29.64],[10.605,-30.36],[25.075,-28.25]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1402.136,557.55],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-9.01,14.93],[-5.36,4.69],[-0.64,0.43],[-2.13,0.34],[-1.27,-2.52],[1.41,-2.48]],"o":[[5.69,-16.48],[3.68,-6.1],[0.5,-0.44],[2.07,-1.39],[2.79,-0.45],[1.83,3.61],[0,0]],"v":[[-25.81,34.275],[-4.92,-12.645],[8.14,-29.585],[9.87,-30.895],[16.72,-33.825],[23.98,-30.655],[23.31,-23.935]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1417.662,560.655],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-15.16,17.5],[-0.55,0.54],[-4.48,-2.15],[0.64,-3.94],[2.16,-3.36],[6,-15.12],[-1.49,0.97],[-4.78,1.03],[-5.85,-1.1],[-0.4,-3.3],[4.6,-0.27],[2.71,-4.8],[8.48,-10.49],[3.75,-4.87],[1.24,-4.78],[0.39,-2.63],[0.1,-5.1],[-0.08,-2.75],[-0.03,-0.57],[-0.38,-3.11],[-8.83,-17.28],[-1.77,-3.13],[-15.92,-22.21],[23.89,-1.45],[23.36,41.45],[1.54,2.96],[0.72,22.05]],"o":[[6,-18.35],[0.49,-0.57],[3.66,-3.68],[3.59,1.72],[-0.64,3.94],[-8.23,12.78],[-0.65,1.66],[7.06,-4.59],[5.83,-1.25],[5.65,1.06],[0.91,7.3],[-10.94,0.64],[-6.51,11.5],[-3.87,4.78],[-2.45,3.18],[-0.64,2.44],[-0.81,5.36],[-0.08,3.34],[0.02,0.57],[0.13,3.15],[2.32,19.11],[1.64,3.21],[19.25,33.97],[0,0],[-9.43,-8.73],[-1.64,-2.91],[-12.14,-23.17],[0,0]],"v":[[-10.06,-111.405],[19.13,-171.775],[20.7,-173.455],[33.74,-178.035],[38.29,-168.225],[33.11,-157.005],[12.53,-118.515],[8.64,-106.105],[25.23,-112.815],[42.17,-112.815],[51.4,-103.515],[43.45,-93.625],[13.94,-86.695],[-3.38,-55.525],[-15.71,-45.755],[-21.15,-33.525],[-22.68,-25.875],[-23.94,-9.835],[-23.9,-0.605],[-23.83,1.105],[-23.06,10.485],[-5.25,65.235],[-0.13,74.745],[61.47,160.325],[29.58,180.185],[-34.88,94.135],[-39.65,85.335],[-61.47,15.715]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1420.332,710.235],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.5,-7.97],[0,-2.02],[2.14,-3.54],[3.26,0],[0.77,0.26],[0,9.47],[-5.63,1.5],[-0.65,0]],"o":[[0.34,1.84],[0,5.41],[-2.14,3.55],[-0.82,0],[-5.39,-1.82],[0,-9.74],[0.62,-0.17],[5.31,0]],"v":[[11.295,-5.825],[11.825,-0.005],[8.355,13.845],[-0.005,19.585],[-2.385,19.185],[-11.825,-0.005],[-1.905,-19.325],[-0.005,-19.585]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.949019667682,0.698039215686,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1361.386,706.305],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,5.41],[0.34,1.84],[0,0]],"o":[[0,0],[0,0],[2.14,-3.54],[0,-2.02],[0,0],[0,0]],"v":[[6.32,0.735],[-4.97,10.205],[-6.32,9.815],[-2.85,-4.035],[-3.38,-9.855],[-1.09,-10.205]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1376.062,710.335],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-8.08,0.09],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[-8.35,0.14],[0,0],[0,0]],"v":[[-7.945,-10.875],[3.695,-10.315],[3.705,-9.465],[11.825,0.415],[3.705,9.945],[3.715,10.735],[-11.825,9.535],[-0.535,0.065]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.894117706897,0.737254901961,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1382.917,711.005],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.38,-3.11],[0,0],[3,-0.05],[0,0],[0,0],[0,0]],"o":[[0,0],[-3.02,0.56],[0,0],[0,0],[0,0],[0.13,3.15]],"v":[[5.325,4.18],[3.855,4.35],[-5.315,5.2],[-5.325,4.41],[2.795,-5.12],[4.555,-5.2]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1391.947,716.54],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-21.53,1.06],[0,0],[0.1,-5.1],[0,0],[2.41,-0.02],[0,0],[0,0],[5.31,0],[0.62,-0.17],[0,0],[-0.31,2.01],[0,0]],"o":[[0,0],[-0.81,5.36],[0,0],[-3.25,0.2],[-8.08,0.09],[0,0],[-1.5,-7.97],[-0.65,0],[0,0],[0.26,-2.15],[0,0],[0,0]],"v":[[18.43,-6.065],[19.22,-5.945],[17.96,10.095],[16.66,10.075],[8.18,10.385],[-3.46,9.825],[-5.75,10.175],[-17.05,-3.585],[-18.95,-3.325],[-19.22,-4.235],[-18.35,-10.475],[-17.22,-10.295]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976470648074,0.709803921569,0.996078491211,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1378.432,690.305],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[2.16,-3.36],[6,-15.12],[-1.49,0.97],[-4.78,1.03],[-5.85,-1.1],[-0.4,-3.3],[4.6,-0.27],[2.71,-4.8],[8.48,-10.49],[3.75,-4.87],[1.24,-4.78],[0,0],[1.5,0.55],[2.47,9.09],[0.49,5.73],[-0.61,3.96],[-22.83,10.81],[0.7,-1.41],[0,0],[-0.34,0.21],[-3.88,-7.06],[0,0],[-2.13,0.34],[-1.27,-2.52],[1.41,-2.48],[0,0],[-4.48,-2.15],[0.64,-3.94]],"o":[[-8.23,12.78],[-0.65,1.66],[7.06,-4.59],[5.83,-1.25],[5.65,1.06],[0.91,7.3],[-10.94,0.64],[-6.51,11.5],[-3.87,4.78],[-2.45,3.18],[0,0],[-21.94,0.67],[1.27,-8.26],[-1.51,-5.55],[-0.34,-3.99],[4.94,-32.12],[6.7,-3.18],[0,0],[0.36,-0.27],[3.53,-2.15],[0,0],[2.07,-1.39],[2.79,-0.45],[1.83,3.61],[0,0],[3.66,-3.68],[3.59,1.72],[-0.64,3.94]],"v":[[38.805,-45.76],[18.225,-7.27],[14.335,5.14],[30.925,-1.57],[47.865,-1.57],[57.095,7.73],[49.145,17.62],[19.635,24.55],[2.315,55.72],[-10.015,65.49],[-15.455,77.72],[-16.365,77.49],[-53.285,72.95],[-53.775,47.84],[-57.665,28.56],[-57.305,15.37],[-12.835,-74.98],[-2.955,-71.1],[-2.945,-71.08],[-1.895,-71.8],[12.575,-69.69],[12.895,-69.23],[19.745,-72.16],[27.005,-68.99],[26.335,-62.27],[26.395,-62.21],[39.435,-66.79],[43.985,-56.98]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976470648074,0.709803921569,0.996078491211,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1414.636,598.99],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.39,-2.63],[0,0],[0,0],[0,0],[-0.39,2.56],[-21.94,0.67],[0,0]],"o":[[0,0],[-21.53,1.06],[0,0],[0.43,-2.72],[1.5,0.55],[0,0],[-0.64,2.44]],"v":[[18.02,5.74],[17.23,5.62],[-18.42,1.39],[-19.55,1.21],[-18.28,-6.68],[18.64,-2.14],[19.55,-1.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1379.632,678.62],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.25,0.2],[0,0],[-0.08,-2.75],[-0.03,-0.57],[0,0],[0,0],[0,0]],"o":[[0,0],[-0.08,3.34],[0.02,0.57],[0,0],[0,0],[0,0],[2.41,-0.02]],"v":[[3.535,-5.52],[4.835,-5.5],[4.875,3.73],[4.945,5.44],[3.185,5.52],[-4.935,-4.36],[-4.945,-5.21]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1391.556,705.9],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0.72,22.05],[0,0],[-0.82,0],[-2.14,3.55],[0,0],[-8.35,0.14],[-3.02,0.56],[0,0],[-8.83,-17.28]],"o":[[-13.06,13.76],[0,0],[-12.14,-23.17],[0,0],[0.77,0.26],[3.26,0],[0,0],[0,0],[3,-0.05],[0,0],[2.32,19.11],[0,0]],"v":[[27.18,17.8],[-6,37.56],[-6.29,37.71],[-28.11,-31.91],[-27.97,-32.37],[-25.59,-31.97],[-17.23,-37.71],[-15.88,-37.32],[-0.34,-36.12],[8.83,-36.97],[10.3,-37.14],[28.11,17.61]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976470648074,0.709803921569,0.996078491211,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1386.972,757.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[23.89,-1.45],[23.36,41.45],[0,0],[-12.35,12.35],[0,0],[-15.92,-22.21]],"o":[[-9.43,-8.73],[0,0],[0,0],[0,0],[19.25,33.97],[0,0]],"v":[[16.285,52.72],[-48.175,-33.33],[-46.655,-33.46],[-14.535,-52.51],[-13.425,-52.72],[48.175,32.86]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976470648074,0.709803921569,0.996078491211,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1433.626,837.7],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-13.06,13.76],[0,0],[-1.77,-3.13],[0,0],[0,0],[0,0],[1.54,2.96]],"o":[[0,0],[0,0],[1.64,3.21],[0,0],[-12.35,12.35],[0,0],[-1.64,-2.91],[0,0]],"v":[[-19.47,5.5],[13.71,-14.26],[14.64,-14.45],[19.76,-4.94],[18.65,-4.73],[-13.47,14.32],[-14.99,14.45],[-19.76,5.65]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.996078491211,0.839215746113,0.027450982262,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1400.442,789.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false}],"ip":27,"op":72,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":13,"ty":3,"nm":"slider 1 PEG","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[1434.75,378.5,0],"to":[0,-3.417,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":66,"s":[1434.75,358,0],"to":[0,0,0],"ti":[0,-3.417,0]},{"t":73,"s":[1434.75,378.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"slider 1 Outlines","parent":13,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-419.22,214.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-4.23,2.735],[-9.41,2.735],[-9.41,-2.735],[-4.23,-2.735],[4.24,-2.735],[9.41,-2.735],[9.41,2.735],[4.24,2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1434.562,378.395],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2.59,2.735],[-2.59,2.735],[-2.59,-2.735],[2.59,-2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1427.742,378.395],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,2.735],[-4.235,2.735],[-4.235,-2.735],[4.235,-2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1434.567,378.395],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2.585,2.735],[-2.585,2.735],[-2.585,-2.735],[2.585,-2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1441.387,378.395],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":15,"ty":3,"nm":"slider 2 PEG","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":83,"s":[1466.75,346,0],"to":[0,3.583,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":92,"s":[1466.75,367.5,0],"to":[0,0,0],"ti":[0,3.583,0]},{"t":100,"s":[1466.75,346,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"slider 2 Outlines","parent":15,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-451.22,247.11,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-4.235,2.735],[-9.415,2.735],[-9.415,-2.735],[-4.235,-2.735],[4.235,-2.735],[9.415,-2.735],[9.415,2.735],[4.235,2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1466.326,346.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2.59,2.735],[-2.59,2.735],[-2.59,-2.735],[2.59,-2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1459.502,346.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,2.735],[-4.235,2.735],[-4.235,-2.735],[4.235,-2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1466.327,346.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2.59,2.735],[-2.59,2.735],[-2.59,-2.735],[2.59,-2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1473.152,346.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":17,"ty":3,"nm":"needle pole PEG","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[1588,459.5,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":0,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":7,"s":[100,102.143,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":14,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":21,"s":[100,102.143,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":28,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":35,"s":[100,102.143,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":42,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":50,"s":[100,102.143,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":58,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":65,"s":[100,102.143,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":72,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":79,"s":[100,102.143,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":86,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":93,"s":[100,102.143,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":100,"s":[100,100,100]},{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.333,0.333,0.333],"y":[0,0,0]},"t":107,"s":[100,102.143,100]},{"t":114,"s":[100,100,100]}],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":18,"ty":3,"nm":"needle needle PEG","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":0,"s":[1516,591.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":7,"s":[1516,593.648,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":14,"s":[1516,591.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":21,"s":[1516,593.648,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":28,"s":[1516,591.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":35,"s":[1516,593.648,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":42,"s":[1516,591.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":50,"s":[1516,593.648,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":58,"s":[1516,591.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":65,"s":[1516,593.648,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":72,"s":[1516,591.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":79,"s":[1516,593.648,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":86,"s":[1516,591.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":93,"s":[1516,593.648,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":100,"s":[1516,591.5,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":107,"s":[1516,593.648,0],"to":[0,0,0],"ti":[0,0,0]},{"t":114,"s":[1516,591.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"needle pole Outlines","parent":17,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-572.47,133.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.78,2.41],[0,0],[4.29,2.06],[0,0],[1.35,-4.27],[1.06,-3.33],[1.63,-4.62],[4.94,-4],[0,0],[-3.13,-4.52],[0,0],[-6.47,5.18],[-2.94,8.47],[-8.18,25.39]],"o":[[1.48,-4.62],[0,0],[-4.29,-2.06],[0,0],[-0.75,2.41],[-7.73,24.5],[-2.24,6.35],[-4.94,4],[0,0],[3.17,4.58],[0,0],[6.48,-5.18],[2.14,-6.15],[1.05,-3.27]],"v":[[36.305,-55.59],[38.685,-63],[37.095,-70.35],[30.215,-65.23],[28.055,-58.39],[25.315,-49.71],[1.625,24.77],[-6.495,37.47],[-34.025,58.3],[-38.255,67.83],[-28.375,66.77],[-2.615,46.65],[7.975,31.83],[33.535,-46.99]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1550.996,526.83],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.11,0.09]],"o":[[-0.11,-0.08],[0,0]],"v":[[0.165,0.125],[-0.165,-0.125]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1579.217,468.565],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-7.73,24.5],[-0.75,2.41],[0,0],[-4.29,-2.06],[0,0],[1.48,-4.62],[1.05,-3.27],[2.14,-6.15],[6.48,-5.18],[0,0],[3.17,4.58],[0,0],[-4.94,4],[-2.24,6.35]],"o":[[1.06,-3.33],[1.35,-4.27],[0,0],[4.29,2.06],[0,0],[-0.78,2.41],[-8.18,25.39],[-2.94,8.47],[-6.47,5.18],[0,0],[-3.13,-4.52],[0,0],[4.94,-4],[1.63,-4.62]],"v":[[25.315,-49.71],[28.055,-58.39],[30.215,-65.23],[37.095,-70.35],[38.685,-63],[36.305,-55.59],[33.535,-46.99],[7.975,31.83],[-2.615,46.65],[-28.375,66.77],[-38.255,67.83],[-34.025,58.3],[-6.495,37.47],[1.625,24.77]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1550.996,526.83],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":20,"ty":4,"nm":"needle needle Outlines","parent":18,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-500.47,1.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-5.117,-9],[-0.53,9],[5.118,-9]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.470588265213,0.019607843137,0.019607843137,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0.470588265213,0.019607843137,0.019607843137,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1517.504,601.538],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"needle circle Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[965.53,543.11,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-5.273,-0.643]],"o":[[1.776,0.983],[0,0]],"v":[[-4.565,-1.51],[4.565,1.51]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1580.876,478.629],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-4.351,0.049]],"o":[[3.34,2.443],[0,0]],"v":[[-5.096,-1.52],[5.096,1.471]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1584.147,469.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.11,0.09],[0,4.89],[-8.28,0],[0,-8.28],[8.28,0]],"o":[[-0.11,-0.08],[-3.62,-2.73],[0,-8.28],[8.28,0],[0,8.28],[0,0]],"v":[[-8.71,12.21],[-9.04,11.96],[-15,0],[0,-15],[15,0],[0,15]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1588.092,456.48],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.04,0.02],[0,8.91],[-13.26,0],[0,-13.25],[13.25,0],[0.92,0.11]],"o":[[-0.04,-0.02],[-7.19,-4.15],[0,-13.25],[13.25,0],[0,13.26],[-0.96,0],[0,0]],"v":[[-11.84,20.89],[-11.96,20.82],[-24,0],[0,-24],[24,0],[0,24],[-2.83,23.84]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1588.271,456.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.28,0],[0,-8.28],[8.28,0],[0,0],[0,0],[-2.65,-6.16],[0,0],[1.35,-4.27],[0,4.89]],"o":[[8.28,0],[0,8.28],[0,0],[1.48,-4.62],[0,0],[-4.29,-2.06],[0,0],[-3.62,-2.73],[0,-8.28]],"v":[[0,-15],[15,0],[0,15],[-9.04,11.96],[-5.33,0.43],[0,0],[-6.88,5.12],[-9.04,11.96],[-15,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1588.092,456.48],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-13.26,0],[0,-13.25],[13.25,0],[0.92,0.11],[1.986,1.264],[-0.78,2.41],[0,0],[0,8.28],[8.28,0],[0,-8.28],[-3.62,-2.73],[1.06,-3.33],[0,8.91]],"o":[[13.25,0],[0,13.26],[-0.96,0],[-4.707,-0.602],[-0.728,-5.64],[0,0],[8.28,0],[0,-8.28],[-8.28,0],[0,4.89],[-0.75,2.41],[-7.19,-4.15],[0,-13.25]],"v":[[0,-24],[24,0],[0,24],[-2.83,23.84],[-11.96,20.82],[-9.22,12.14],[-0.18,15.18],[14.82,0.18],[-0.18,-14.82],[-15.18,0.18],[-9.22,12.14],[-11.96,20.82],[-24,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1588.272,456.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":22,"ty":3,"nm":"record PEG","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":40,"s":[147.316]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":46,"s":[121.56]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":52,"s":[177.599]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":59,"s":[148.193]},{"t":114,"s":[360]}],"ix":10},"p":{"a":0,"k":[1489,547.5,0],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":23,"ty":4,"nm":"record Outlines","parent":22,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-473.47,45.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-20.255],[8.034,-8.635]],"o":[[17.667,7.201],[0,12.725],[0,0]],"v":[[-15.059,-38.87],[15.059,5.934],[2.11,38.87]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.443137284821,0.164705882353,0.462745127958,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1522.341,541.402],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,19.63],[-7.566,8.535]],"o":[[-16.802,-7.579],[0,-12.303],[0,0]],"v":[[14.249,38.088],[-14.249,-6.019],[-2.089,-38.088]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.443137284821,0.164705882353,0.462745127958,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1454.925,553.354],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,27.34],[-14.891,10.373]],"o":[[-25.591,-5.784],[0,-19.523],[0,0]],"v":[[22.351,51.572],[-22.35,-4.428],[2.286,-51.571]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.443137284821,0.164705882353,0.462745127958,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1453.977,551.764],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-27.889],[14.123,-10.459]],"o":[[26.365,5.195],[0,18.924],[0,0]],"v":[[-23.125,-51.248],[23.125,5.08],[-0.154,51.248]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.443137284821,0.164705882353,0.462745127958,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.325,542.256],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-27.543],[5.862,-10.61]],"o":[[22.3,12.777],[0,12.98],[0,0]],"v":[[-18.661,-50.072],[18.661,14.282],[9.464,50.072]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.443137284821,0.164705882353,0.462745127958,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1544.494,533.053],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,26.696],[-7.905,11.788]],"o":[[-21.172,-13.048],[0,-15.26],[0,0]],"v":[[17.642,52.186],[-17.643,-10.956],[-5.126,-52.186]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.443137284821,0.164705882353,0.462745127958,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1432.563,558.292],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,36.23],[-15.514,14.862]],"o":[[-32.665,-10.675],[0,-23.181],[0,0]],"v":[[28.132,68.296],[-28.132,-9.328],[-2.958,-68.296]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.443137284821,0.164705882353,0.462745127958,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1435.524,556.664],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-37.624],[12.707,-14.394]],"o":[[34.623,9.462],[0,20.71],[0,0]],"v":[[-30.036,-66.39],[30.036,12.377],[9.619,66.39]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.443137284821,0.164705882353,0.462745127958,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":2,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.649,534.959],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-20.57],[20.56,0],[0,20.56],[-20.57,0]],"o":[[0,20.56],[-20.57,0],[0,-20.57],[20.56,0]],"v":[[37.235,0.005],[0.005,37.235],[-37.235,0.005],[0.005,-37.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.037,547.335],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1490.802,553.63],[1490.802,556.45]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":3,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1486.982,553.39],[1486.982,556.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":3,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.545,-2.115],[1.635,0.355],[-1.635,2.115]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":3,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1486.346,539.485],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-2.115,-3.055],[2.115,3.055]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1499.156,546.335],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1.59,-2.825],[1.52,-2.695],[-1.59,2.825]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1478.862,546.335],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-1.59,0],[0,-2.54],[2.53,0],[0.72,1.59]],"o":[[0.83,-1.22],[2.53,0],[0,2.53],[-1.86,0],[0,0]],"v":[[-4.01,-2.565],[-0.2,-4.585],[4.38,0.005],[-0.2,4.585],[-4.38,1.895]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":3,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.771,539.865],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.6,0],[0.82,1.82],[0,0],[0,0],[0,0],[3.89,-0.44]],"o":[[-5.29,0],[0,0],[0,0],[0,0],[-0.36,0.99],[-0.49,0.06]],"v":[[0.435,1.765],[-7.145,-1.765],[0.375,-1.765],[2.025,-1.765],[7.145,-1.765],[2.065,1.675]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.776,555.105],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[1467.452,549.51],[1468.371,549.51],[1477.271,549.51],[1489.151,549.51],[1501.271,549.51],[1508.861,549.51]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1480.572,529.04],[1480.651,529.04],[1495.391,529.04]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.28,-0.23],[2.67,-1.2],[3.3,-0.11],[0.26,0],[1.95,0.87],[0,0]],"o":[[0,0],[-0.77,0.66],[-2.24,1.01],[-0.26,0.02],[-3.01,0],[-3.94,-1.73],[0,0]],"v":[[14.055,-2.71],[13.635,-2.34],[8.355,0.94],[-0.035,2.92],[-0.815,2.94],[-8.245,1.42],[-14.055,-2.94]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.626,542.22],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-8.31,0.27],[-0.22,0],[0,0]],"o":[[0,0],[0.22,-0.02],[8.7,0],[0,0]],"v":[[-13.5,2.705],[0.11,-2.925],[0.78,-2.945],[13.5,2.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.422,536.395],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-1.175,-21.88],[-8.505,-9.65],[-14.455,0.28],[-14.635,0.56],[-20.785,10.82],[-27.415,21.88],[0.055,21.88],[27.415,21.88],[20.045,10.6],[13.615,0.76],[6.645,-9.92]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.156,538.69],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-17.41,0.6],[-0.38,0],[0,-17.93],[2.05,-4.26],[12.89,0],[5.24,10.89],[0,5.04]],"o":[[0.38,-0.01],[17.93,0],[0,5.04],[-5.25,10.89],[-12.89,0],[-2.05,-4.26],[0,-17.55]],"v":[[-1.14,-32.45],[0,-32.47],[32.47,0],[29.27,14.07],[0,32.47],[-29.27,14.07],[-32.47,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.042,547.16],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.94,-1.73],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.005,-0.74],[2.895,4.78],[2.895,5.13],[-6.005,5.13],[0.145,-5.13],[0.195,-5.1]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1474.377,544.38],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,5.04],[-17.41,0.6],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[-2.05,-4.26],[0,-17.55],[0,0],[0,0]],"v":[[8.375,-8.93],[2.425,1],[2.245,1.28],[-3.905,11.54],[-10.535,22.6],[-12.505,23.26],[-15.705,9.19],[15.625,-23.26],[15.705,-21.16]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.286274509804,0.133333333333,0.356862745098,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1472.277,537.97],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.95,0.87],[0,0],[0,0],[0,0],[0,0],[-8.31,0.27],[0,0],[0.83,-1.22],[0,0],[0,0],[0,0],[0,0],[-1.86,0],[0,0],[0.26,0]],"o":[[-3.94,-1.73],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.59,0],[0,0],[0,0],[0,0],[0,0],[0.72,1.59],[0,0],[-0.26,0.02],[-3.01,0]],"v":[[-1.175,4.325],[-6.985,-0.035],[-7.035,-0.065],[-6.855,-0.345],[-6.635,-0.215],[6.975,-5.845],[7.015,-4.035],[3.205,-2.015],[3.245,-1.945],[6.425,0.525],[3.155,2.285],[2.835,2.445],[7.015,5.135],[7.035,5.825],[6.255,5.845]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1481.557,539.315],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.29,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.82,1.82]],"v":[[13.735,1.83],[13.735,5.53],[-13.735,5.53],[-7.105,-5.53],[1.795,-5.53],[13.675,-5.53],[13.675,-1.7],[6.155,-1.7]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1475.477,555.04],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.6,0],[0.82,1.82],[0,0],[0,0],[0,0]],"o":[[0,0],[-0.49,0.06],[-5.29,0],[0,0],[0,0],[0,0],[0,0]],"v":[[4.565,1.345],[4.605,1.675],[2.975,1.765],[-4.605,-1.765],[2.915,-1.765],[4.565,-1.765],[4.565,-1.475]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1486.236,555.105],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.59,0],[0,-2.54],[2.53,0],[0.72,1.59],[0,0],[0,0],[0,0],[0,0]],"o":[[2.53,0],[0,2.53],[-1.86,0],[0,0],[0,0],[0,0],[0,0],[0.83,-1.22]],"v":[[-0.2,-4.585],[4.38,0.005],[-0.2,4.585],[-4.38,1.895],[-4.06,1.735],[-0.79,-0.025],[-3.97,-2.495],[-4.01,-2.565]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.771,539.865],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[7.575,5.845],[7.165,6.115],[-7.575,6.115],[-0.245,-6.115]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.227,522.925],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.89,-0.44],[0,0],[0,0]],"o":[[0,0],[-0.36,0.99],[0,0],[0,0],[0,0]],"v":[[-2.56,-1.72],[2.56,-1.72],[-2.52,1.72],[-2.56,1.39],[-2.56,-1.43]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.362,555.06],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-3.01,0],[-0.26,0.02],[-2.24,1.01],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[1.95,0.87],[0.26,0],[3.3,-0.11],[0,0],[0,0]],"v":[[12,3.055],[12,3.175],[-0.12,3.175],[-12,3.175],[-12,2.825],[-8.89,-2.695],[-1.46,-1.175],[-0.68,-1.195],[7.71,-3.175],[7.77,-3.055]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.272,546.335],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.67,-1.2],[3.3,-0.11],[0,0],[0,2.53],[2.53,0],[0,0],[-0.22,0]],"o":[[0,0],[-0.77,0.66],[-2.24,1.01],[0,0],[2.53,0],[0,-2.54],[0,0],[0.22,-0.02],[8.7,0]],"v":[[6.525,0.045],[6.865,0.585],[1.585,3.865],[-6.805,5.845],[-6.825,5.155],[-2.245,0.575],[-6.825,-4.015],[-6.865,-5.825],[-6.195,-5.845]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.980392216701,0.941176530427,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1495.396,539.295],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0.28,-0.23],[0,0],[8.7,0],[0.22,-0.02],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[-0.22,0],[-8.31,0.27],[0,0],[0,0],[0,0],[0,0]],"v":[[7.065,-5.555],[14.035,5.125],[13.945,5.185],[13.525,5.555],[13.185,5.015],[0.465,-0.875],[-0.205,-0.855],[-13.815,4.775],[-14.035,4.645],[-8.085,-5.285],[6.655,-5.285]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.736,534.325],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.77,0.66],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[2.67,-1.2],[0.28,-0.23],[0,0]],"v":[[-0.32,-5.03],[6.11,4.81],[5.77,5.03],[-1.82,5.03],[-1.82,4.91],[-6.05,-1.2],[-6.11,-1.32],[-0.83,-4.6],[-0.41,-4.97]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.092,544.48],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-5.25,10.89],[0,5.04],[17.93,0],[0.38,-0.01],[0,-17.55],[-2.05,-4.26],[-12.89,0]],"o":[[2.05,-4.26],[0,-17.93],[-0.38,0],[-17.41,0.6],[0,5.04],[5.24,10.89],[12.89,0]],"v":[[29.275,13.895],[32.475,-0.175],[0.005,-32.645],[-1.135,-32.625],[-32.465,-0.175],[-29.265,13.895],[0.005,32.295]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[-20.57,0],[0,-20.57],[20.56,0],[0,20.56]],"o":[[20.56,0],[0,20.56],[-20.57,0],[0,-20.57]],"v":[[0.005,-37.235],[37.235,0.005],[0.005,37.235],[-37.235,0.005]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.036,547.335],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":4,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-0.49,0.06],[-0.36,0.99],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0.6,0],[3.89,-0.44],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.34,-5.64],[13.71,5.64],[-13.65,5.64],[-13.65,1.94],[-12.02,1.85],[-6.94,-1.59],[-12.06,-1.59],[-13.71,-1.59],[-13.71,-5.42],[-1.59,-5.42],[6,-5.42]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1502.862,554.93],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[12.89,0],[5.24,10.89],[0,0],[0,0]],"o":[[0,0],[-5.25,10.89],[-12.89,0],[0,0],[0,0],[0,0]],"v":[[27.53,-9.53],[29.27,-8.87],[0,9.53],[-29.27,-8.87],[-27.3,-9.53],[0.17,-9.53]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.286274509804,0.133333333333,0.356862745098,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.042,570.1],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-17.93],[2.05,-4.26],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.38,0]],"o":[[0,5.04],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.38,-0.01],[17.93,0]],"v":[[16.805,9.2],[13.605,23.27],[11.865,22.61],[4.495,11.33],[-1.935,1.49],[-8.905,-9.19],[-16.725,-21.15],[-16.805,-23.25],[-15.665,-23.27]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.286274509804,0.133333333333,0.356862745098,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.707,537.96],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-51.314],[51.314,0],[0,51.314],[-51.314,0]],"o":[[0,51.314],[-51.314,0],[0,-51.314],[51.314,0]],"v":[[92.912,0],[0,92.912],[-92.912,0],[0,-92.912]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.038,547.335],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":3,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":24,"ty":4,"nm":"record base Outlines","parent":22,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-473.47,45.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-97.005,-39.1],[-96.765,-39],[-0.035,-0.02],[-0.015,-0.01],[-0.015,0],[-0.005,0],[0.005,0],[0.015,0],[0.025,0.01],[0.065,0.02],[97.005,39.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.884,546.987],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-39.1,97.005],[-0.01,0.025],[-0.01,0.015],[0,0.015],[0,0.005],[0,-0.005],[0,-0.015],[0.01,-0.015],[0.01,-0.035],[38.98,-96.715],[39.1,-97.005]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.879,546.992],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-48.12,20.47],[48.1,-20.47],[48.11,-20.47],[48.12,-20.47]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1440.759,567.467],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-48.11,20.47],[-48.1,20.46],[48.11,-20.47]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1537.009,526.517],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20.47,48.12],[-20.46,-48.1],[-20.47,-48.1],[-20.47,-48.11],[-20.47,-48.12]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1509.359,595.107],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20.47,48.115],[20.47,48.105],[20.46,48.105],[20.45,48.065],[-20.29,-47.685],[-20.47,-48.115]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1468.409,498.862],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-52.285,0.45],[-52.215,0.45],[52.265,-0.45],[52.275,-0.45],[52.285,-0.45]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1436.583,547.437],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-52.285,0.45],[52.285,-0.45]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1541.184,546.537],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.45,52.285],[-0.45,-52.275],[-0.45,-52.285]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.339,599.292],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1488.889,546.997],[1488.879,546.997]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.45,52.28],[0.45,52.25],[-0.45,-51.82],[-0.45,-52.28]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.429,494.687],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-36.65,37.29],[36.65,-37.28],[36.65,-37.29]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1452.219,584.287],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-36.655,37.295],[-36.655,37.285],[-36.635,37.275],[36.535,-37.175],[36.655,-37.295]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.544,509.692],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[37.29,36.65],[-37.27,-36.63],[-37.28,-36.64],[-37.29,-36.65]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1526.179,583.647],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[37.28,36.645],[-36.97,-36.345],[-37.28,-36.645]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1451.569,510.322],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-43.665,-28.735],[-43.375,-28.545],[43.665,28.735]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1445.184,518.232],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-43.675,-28.74],[43.675,28.74]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.574,575.747],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-28.74,43.67],[28.74,-43.67]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1460.129,590.687],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-28.745,43.68],[28.605,-43.46],[28.745,-43.68]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1517.634,503.297],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-51.205,10.56],[51.205,-10.55],[51.205,-10.56]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1437.654,557.547],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-51.205,10.555],[51.205,-10.555]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.114,536.422],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[10.56,51.2],[-10.55,-51.17],[-10.56,-51.2]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1499.449,598.217],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[10.56,51.19],[-10.47,-50.73],[-10.56,-51.19]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1478.319,495.747],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-51.335,-9.89],[-51.165,-9.86],[51.315,9.88],[51.335,9.89]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1437.514,537.097],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-51.335,-9.885],[51.335,9.885]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.244,556.882],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-9.885,51.34],[9.885,-51.31],[9.885,-51.34]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1478.994,598.347],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-9.885,51.335],[9.805,-50.935],[9.885,-51.335]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1498.774,495.622],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-43.295,29.31],[43.245,-29.28],[43.295,-29.31]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1445.574,576.317],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-43.29,29.31],[-43.29,29.3],[-43.28,29.3],[43.26,-29.29],[43.29,-29.31]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.199,517.667],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[29.305,43.29],[-29.305,-43.29]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1518.214,590.307],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[29.315,43.295],[29.305,43.295],[29.305,43.285],[-29.065,-42.925],[-29.315,-43.295]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1459.564,503.682],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-50.11,-14.865],[-49.9,-14.805],[50.11,14.865]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1438.719,532.112],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1488.889,546.997],[1488.909,546.997]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-50.1,-14.865],[50.1,14.865]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1539.049,561.872],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-14.87,50.125],[14.86,-50.115],[14.87,-50.125]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1474.009,597.132],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-14.87,50.12],[14.77,-49.77],[14.87,-50.12]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.759,496.837],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-45.955,24.93],[45.955,-24.93]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1442.904,571.927],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1488.889,546.977],[1488.909,546.977]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-45.95,24.925],[45.95,-24.925]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1534.869,522.042],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":2,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[24.925,45.96],[-24.925,-45.96]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1513.824,592.967],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 40","np":2,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[24.925,45.955],[-24.705,-45.555],[-24.925,-45.955]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1463.944,501.012],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 41","np":2,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-52,5.4],[-51.98,5.4],[52,-5.4]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1436.849,552.387],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 42","np":2,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-52.005,5.4],[52.005,-5.4]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.904,541.587],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 43","np":2,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[5.395,52],[-5.395,-52]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1494.284,599.017],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 44","np":2,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[5.395,51.99],[-5.345,-51.52],[-5.395,-51.99]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1483.484,494.947],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 45","np":2,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-32.955,40.585],[32.955,-40.585]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1455.914,587.602],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 46","np":2,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-32.95,40.585],[32.81,-40.415],[32.95,-40.585]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1521.859,506.382],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 47","np":2,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[40.585,32.95],[-40.585,-32.95]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1529.494,579.967],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 48","np":2,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[40.58,32.95],[-40.28,-32.7],[-40.58,-32.95]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1448.269,514.017],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 49","np":2,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-46.19,-24.475],[-45.92,-24.335],[46.19,24.475]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1442.659,522.492],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 50","np":2,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-46.195,-24.48],[46.195,24.48]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1535.104,571.477],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 51","np":2,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-24.48,46.195],[24.48,-46.195]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1464.389,593.212],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 52","np":2,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-24.48,46.2],[24.35,-45.95],[24.48,-46.2]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1513.369,500.777],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 53","np":2,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-49.975,15.355],[49.975,-15.355]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1438.884,562.352],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 54","np":2,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1488.869,546.997],[1488.869,546.987]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 55","np":2,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-49.975,15.355],[49.975,-15.355]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.884,531.622],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 56","np":2,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[15.35,49.96],[-15.35,-49.96]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.249,597.007],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 57","np":2,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1488.889,547.007],[1488.879,547.007]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 58","np":2,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[15.35,49.955],[-15.21,-49.515],[-15.35,-49.955]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1473.509,496.972],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 59","np":2,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-52.03,-4.98],[-51.9,-4.97],[52.03,4.98]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1436.799,541.997],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 60","np":2,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-52.05,-4.985],[52.05,4.985]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.949,551.972],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 61","np":2,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-4.985,52.03],[4.985,-52.03]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1483.894,599.067],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 62","np":2,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-4.985,52.03],[4.945,-51.59],[4.985,-52.03]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.864,494.907],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 63","np":2,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-40.325,33.28],[40.285,-33.24],[40.325,-33.28]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1448.534,580.277],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 64","np":2,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-40.32,33.275],[40.24,-33.205],[40.32,-33.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1529.229,513.692],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 65","np":2,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[33.27,40.32],[-33.27,-40.32]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1522.179,587.337],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 66","np":2,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[33.275,40.325],[-32.995,-39.985],[-33.275,-40.325]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1455.594,506.642],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 67","np":2,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.04,-3.35],[0,-0.49],[0.29,-3.1],[0.61,-3.23],[0.96,-3.28],[1.22,-3.07],[1.7,-3.21],[1.83,-2.77],[2.21,-2.72],[2.32,-2.38],[2.81,-2.33],[2.76,-1.87],[3.04,-1.65],[3.07,-1.31],[3.52,-1.08],[3.28,-0.66],[3.53,-0.35],[3.36,-0.02],[0.24,0],[3.36,0.33],[3.23,0.64],[3.28,0.99],[3.07,1.25],[3.2,1.73],[2.76,1.85],[2.7,2.22],[2.35,2.33],[2.3,2.83],[1.85,2.75],[1.62,3.03],[1.27,3.06],[1.04,3.5],[0.64,3.27],[0.33,3.5],[0.01,3.34],[0,0],[-0.35,3.46],[-0.64,3.21],[-0.99,3.25],[-1.25,3.04],[-1.71,3.18],[-1.82,2.73],[-2.2,2.68],[-2.32,2.34],[-2.79,2.3],[-2.73,1.85],[-3,1.62],[-3.04,1.28],[-3.48,1.06],[-3.24,0.66],[-3.48,0.36],[-3.32,0.03],[-0.36,0],[-3.2,-0.31],[-3.2,-0.62],[-3.25,-0.96],[-3.04,-1.21],[-3.19,-1.68],[-2.75,-1.8],[-2.7,-2.19],[-2.36,-2.31],[-2.32,-2.79],[-1.87,-2.73],[-1.65,-3],[-1.31,-3.04],[-1.09,-3.49],[-0.68,-3.27],[-0.37,-3.5]],"o":[[0.02,0.49],[0,3.18],[-0.29,3.34],[-0.63,3.41],[-0.92,3.2],[-1.35,3.4],[-1.54,2.95],[-1.91,2.94],[-2.08,2.59],[-2.55,2.61],[-2.56,2.12],[-2.84,1.94],[-2.91,1.59],[-3.35,1.43],[-3.16,0.97],[-3.41,0.7],[-3.27,0.33],[-0.24,0.01],[-3.45,0],[-3.34,-0.32],[-3.41,-0.65],[-3.2,-0.96],[-3.39,-1.38],[-2.93,-1.56],[-2.92,-1.93],[-2.57,-2.11],[-2.59,-2.57],[-2.1,-2.56],[-1.9,-2.84],[-1.57,-2.91],[-1.41,-3.34],[-0.96,-3.15],[-0.69,-3.38],[-0.32,-3.26],[0,0],[0,-3.56],[0.32,-3.32],[0.65,-3.37],[0.94,-3.17],[1.36,-3.37],[1.56,-2.91],[1.92,-2.9],[2.09,-2.55],[2.54,-2.58],[2.54,-2.08],[2.82,-1.9],[2.88,-1.57],[3.31,-1.41],[3.12,-0.96],[3.37,-0.7],[3.24,-0.34],[0.36,-0.01],[3.29,0],[3.31,0.29],[3.38,0.62],[3.18,0.92],[3.38,1.35],[2.93,1.53],[2.91,1.9],[2.57,2.05],[2.6,2.52],[2.12,2.53],[1.93,2.81],[1.59,2.89],[1.45,3.32],[0.99,3.14],[0.73,3.38],[0.36,3.27]],"v":[[104.685,-1.475],[104.705,-0.005],[104.275,9.425],[102.925,19.285],[100.535,29.315],[97.305,38.725],[92.725,48.655],[87.665,57.245],[81.485,65.745],[74.865,73.195],[66.815,80.615],[58.845,86.605],[50.025,91.995],[41.055,96.345],[30.735,100.115],[21.075,102.575],[10.665,104.165],[0.725,104.695],[-0.005,104.705],[-10.225,104.205],[-20.085,102.765],[-30.115,100.305],[-39.525,96.985],[-49.415,92.325],[-57.955,87.205],[-66.395,80.965],[-73.775,74.295],[-81.115,66.195],[-87.035,58.225],[-92.325,49.405],[-96.595,40.445],[-100.275,30.175],[-102.675,20.555],[-104.205,10.225],[-104.705,0.325],[-104.705,-0.005],[-104.175,-10.535],[-102.725,-20.325],[-100.255,-30.255],[-96.955,-39.575],[-92.335,-49.405],[-87.265,-57.875],[-81.085,-66.245],[-74.475,-73.585],[-66.475,-80.905],[-58.575,-86.805],[-49.835,-92.105],[-40.955,-96.385],[-30.775,-100.105],[-21.225,-102.545],[-10.935,-104.135],[-1.095,-104.695],[-0.005,-104.705],[9.735,-104.245],[19.505,-102.875],[29.455,-100.495],[38.785,-97.285],[48.645,-92.735],[57.165,-87.725],[65.595,-81.595],[73.005,-75.045],[80.395,-67.075],[86.385,-59.185],[91.765,-50.455],[96.125,-41.555],[99.925,-31.345],[102.435,-21.735],[104.085,-11.405]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.074,547.562],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 68","np":2,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.85,2.75],[0,0]],"o":[[0,0],[0,0],[-2.1,-2.56],[0,0],[0,0]],"v":[[43.39,-33.36],[-37.22,33.16],[-37.47,33.36],[-43.39,25.39],[-43.15,25.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1445.429,580.397],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 69","np":2,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.99,3.25]],"o":[[0,0],[0.65,-3.37],[0,0]],"v":[[51.24,14.835],[-51.24,-4.905],[-48.77,-14.835]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1437.589,532.142],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 70","np":2,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.64,3.21]],"o":[[0,0],[0.32,-3.32],[0,0]],"v":[[51.965,9.87],[-51.965,-0.08],[-50.515,-9.87]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1436.864,537.107],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 71","np":2,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-0.35,3.46],[0,0]],"o":[[0,0],[0,0],[0,-3.56],[0,0],[0,0]],"v":[[52.24,4.53],[-52.24,5.43],[-52.24,5.1],[-51.71,-5.43],[52.22,4.52]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1436.609,542.457],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 72","np":2,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.01,3.34]],"o":[[0,0],[-0.32,-3.26],[0,0]],"v":[[52.24,-5.4],[-51.74,5.4],[-52.24,-4.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1436.609,552.387],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 73","np":2,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.82,2.73]],"o":[[0,0],[1.56,-2.91],[0,0]],"v":[[46.055,28.64],[-46.055,-20.17],[-40.985,-28.64]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1442.794,518.327],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 74","np":2,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-1.71,3.18]],"o":[[0,0],[1.36,-3.37],[0,0]],"v":[[48.365,24.405],[-48.365,-14.575],[-43.745,-24.405]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1440.484,522.562],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 75","np":2,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.2,2.68],[0,0],[0,0]],"o":[[0,0],[0,0],[1.92,-2.9]],"v":[[-37.34,-32.825],[43.52,32.825],[-43.52,-24.455]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1445.329,514.142],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 76","np":2,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.32,2.34],[0,0],[0,0]],"o":[[0,0],[0,0],[2.09,-2.55]],"v":[[-33.82,-36.495],[40.43,36.495],[-40.43,-29.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1448.419,510.472],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 77","np":2,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0.64,3.27],[0,0]],"o":[[0,0],[0,0],[-0.96,-3.15],[0,0],[0,0]],"v":[[51.23,-15.37],[-48.72,15.34],[-48.83,15.37],[-51.23,5.75],[-51.18,5.74]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1437.629,562.367],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 78","np":2,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.04,3.5],[0,0]],"o":[[0,0],[0,0],[-1.41,-3.34],[0,0],[0,0]],"v":[[50.03,-20.505],[-46.19,20.435],[-46.35,20.505],[-50.03,10.235],[-49.92,10.205]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1438.829,567.502],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 79","np":2,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[1.27,3.06],[0,0]],"o":[[0,0],[0,0],[-1.57,-2.91],[0,0],[0,0]],"v":[[48.19,-24.985],[-43.72,24.875],[-43.92,24.985],[-48.19,16.025],[-48.03,15.955]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1440.669,571.982],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 80","np":2,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.48,1.06],[0,0],[0,0]],"o":[[0,0],[0,0],[3.31,-1.41]],"v":[[-10.19,-49.735],[20.37,49.735],[-20.37,-46.015]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1468.489,497.192],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 81","np":2,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[1.62,3.03],[0,0]],"o":[[0,0],[0,0],[0,0],[-1.9,-2.84],[0,0],[0,0]],"v":[[46.055,-29.395],[46.015,-29.355],[-40.525,29.235],[-40.765,29.395],[-46.055,20.575],[-45.855,20.465]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1442.804,576.392],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 82","np":2,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0.33,3.5],[0,0]],"o":[[0,0],[0,0],[0,0],[-0.69,-3.38],[0,0],[0,0]],"v":[[51.995,-10.565],[51.995,-10.555],[-50.415,10.555],[-50.465,10.565],[-51.995,0.235],[51.985,-10.565]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1436.864,557.552],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 83","np":2,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[2.7,2.22],[0,0]],"o":[[0,0],[0,0],[-2.92,-1.93],[0,0],[0,0]],"v":[[33.095,-43.875],[-24.385,43.465],[-24.655,43.875],[-33.095,37.635],[-32.815,37.295]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1455.774,590.892],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 84","np":2,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[2.76,1.85],[0,0]],"o":[[0,0],[0,0],[-2.93,-1.56],[0,0],[0,0]],"v":[[28.875,-46.435],[-20.085,45.955],[-20.335,46.435],[-28.875,41.315],[-28.605,40.905]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1459.994,593.452],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 85","np":2,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[2.3,2.83],[0,0],[0,0]],"o":[[0,0],[0,0],[-2.59,-2.57],[0,0],[0,0],[0,0]],"v":[[40.455,-37.425],[-32.845,37.145],[-33.115,37.425],[-40.455,29.325],[-40.205,29.125],[40.405,-37.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1448.414,584.432],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 86","np":2,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-2.73,1.85]],"o":[[0,0],[2.54,-2.08],[0,0]],"v":[[33.135,43.105],[-33.135,-37.205],[-25.235,-43.105]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1455.734,503.862],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 87","np":2,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[3.2,1.73],[0,0]],"o":[[0,0],[0,0],[-3.39,-1.38],[0,0],[0,0]],"v":[[24.605,-48.765],[-14.485,48.215],[-14.715,48.765],[-24.605,44.105],[-24.355,43.625]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1464.264,595.781],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 88","np":2,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[2.35,2.33],[0,0]],"o":[[0,0],[0,0],[0,0],[-2.57,-2.11],[0,0],[0,0]],"v":[[36.785,-40.76],[36.785,-40.75],[-29.125,40.42],[-29.405,40.76],[-36.785,34.09],[-36.515,33.81]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1452.084,587.767],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 89","np":2,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3,1.62],[0,0],[0,0]],"o":[[0,0],[0,0],[2.82,-1.9]],"v":[[-20.445,-45.755],[29.185,45.755],[-29.185,-40.455]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1459.684,501.212],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 90","np":2,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[-3.04,1.28]],"o":[[0,0],[0,0],[2.88,-1.57],[0,0]],"v":[[24.805,47.855],[24.815,47.895],[-24.815,-43.615],[-15.935,-47.895]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1464.053,499.072],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 91","np":2,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[3.07,1.25],[0,0]],"o":[[0,0],[0,0],[-3.2,-0.96],[0,0],[0,0]],"v":[[19.66,-50.425],[-10.07,49.815],[-10.25,50.425],[-19.66,47.105],[-19.43,46.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1469.209,597.442],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 92","np":2,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.25,3.04],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0.94,-3.17],[0,0],[0,0]],"v":[[50.025,19.49],[50.025,19.5],[50.015,19.5],[50.005,19.5],[49.985,19.49],[-50.025,-10.18],[-46.725,-19.5],[50.005,19.48]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1438.844,527.487],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 93","np":2,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[-2.79,2.3]],"o":[[0,0],[0,0],[0,0],[2.54,-2.58],[0,0]],"v":[[37.135,40.15],[37.135,40.16],[37.115,40.15],[-37.135,-32.84],[-29.135,-40.16]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1451.734,506.817],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 94","np":2,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[3.23,0.64],[0,0]],"o":[[0,0],[0,0],[-3.34,-0.32],[0,0],[0,0]],"v":[[9.945,-52.365],[-0.025,51.695],[-0.085,52.365],[-9.945,50.925],[-9.825,50.285]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1478.934,599.402],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 95","np":2,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[3.28,0.99],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-3.41,-0.65],[0,0],[0,0]],"v":[[14.95,-51.65],[14.96,-51.66],[14.96,-51.63],[-4.81,51.02],[-4.93,51.66],[-14.96,49.2],[-14.78,48.59]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1473.919,598.667],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 96","np":2,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.48,0.36],[0,0],[0,0]],"o":[[0,0],[0,0],[3.37,-0.7]],"v":[[-0.225,-51.755],[10.515,51.755],[-10.515,-50.165]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1478.364,495.182],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 97","np":2,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[-3.24,0.66]],"o":[[0,0],[0,0],[0,0],[0,0],[3.12,-0.96],[0,0]],"v":[[15.29,50.945],[15.29,50.975],[15.28,50.975],[15.27,50.935],[-15.29,-48.535],[-5.74,-50.975]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1473.589,495.992],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 98","np":2,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.32,0.03],[0,0],[0,0]],"o":[[0,0],[0,0],[3.24,-0.34]],"v":[[4.47,-52.035],[5.37,52.035],[-5.37,-51.475]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1483.509,494.902],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 99","np":2,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.24,0],[3.36,0.33],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[-0.24,0.01],[-3.45,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[5.465,51.94],[5.475,52.62],[4.745,52.63],[-5.475,52.13],[-5.415,51.46],[4.555,-52.6],[4.555,-52.63],[4.565,-52.63],[4.565,-52.62]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1484.324,599.637],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 100","np":2,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.2,-0.31],[0,0],[0,0],[-0.36,0]],"o":[[0,0],[0,0],[0.36,-0.01],[3.29,0]],"v":[[5.415,-51.58],[-4.515,52.04],[-5.415,-52.03],[-4.325,-52.04]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.394,494.897],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 101","np":2,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.36,-0.02],[0,0],[0,0]],"o":[[0,0],[-3.27,0.33],[0,0],[0,0],[0,0]],"v":[[5.365,51.38],[5.425,52.09],[-4.515,52.62],[-4.525,51.94],[-5.425,-52.62]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1494.313,599.637],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 102","np":2,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.2,-0.62],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[3.31,0.29]],"v":[[9.85,-50.46],[-9.84,51.81],[-9.84,51.83],[-9.85,51.83],[-9.85,51.82],[-9.85,51.79],[0.08,-51.83]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1498.729,495.147],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 103","np":2,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.53,-0.35],[0,0],[0,0],[0,0]],"o":[[0,0],[-3.41,0.7],[0,0],[0,0],[0,0],[0,0]],"v":[[10.49,50.045],[10.63,50.765],[0.22,52.355],[0.16,51.645],[-10.63,-52.355],[-10.62,-52.325]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1499.519,599.372],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 104","np":2,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.25,-0.96],[0,0],[0,0]],"o":[[0,0],[0,0],[3.38,0.62]],"v":[[14.82,-48.755],[-14.82,51.135],[4.87,-51.135]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.709,495.822],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 105","np":2,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.28,-0.66],[0,0],[0,0]],"o":[[0,0],[-3.16,0.97],[0,0],[0,0],[0,0]],"v":[[15.245,48.375],[15.455,49.085],[5.795,51.545],[5.655,50.825],[-15.455,-51.545]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.354,598.592],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 106","np":2,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.04,-1.21],[0,0],[0,0]],"o":[[0,0],[0,0],[3.18,0.92]],"v":[[19.485,-46.735],[-19.485,49.945],[10.155,-49.945]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1508.374,497.012],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 107","np":2,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.52,-1.08],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[-3.35,1.43],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[20.32,45.885],[20.62,46.565],[10.3,50.335],[10.09,49.625],[-20.61,-50.295],[-20.62,-50.325],[-20.62,-50.335],[-20.61,-50.335]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1509.509,597.342],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 108","np":2,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.19,-1.68],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[3.38,1.35]],"v":[[24.415,-43.8],[-24.415,48.35],[-24.415,48.33],[14.555,-48.35]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1513.304,498.627],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 109","np":2,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.07,-1.31],[0,0],[0,0]],"o":[[0,0],[-2.91,1.59],[0,0],[0,0],[0,0]],"v":[[24.75,43.47],[25.1,44.1],[16.13,48.45],[15.83,47.77],[-25.1,-48.45]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1513.999,595.457],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 110","np":2,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.75,-1.8],[0,0],[0,0]],"o":[[0,0],[0,0],[2.93,1.53]],"v":[[28.675,-41.065],[-28.675,46.075],[20.155,-46.075]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1517.564,500.902],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 111","np":2,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[3.04,-1.65],[0,0],[0,0],[0,0]],"o":[[0,0],[-2.84,1.94],[0,0],[0,0],[0,0],[0,0]],"v":[[29.11,40.315],[29.51,40.885],[20.69,46.275],[20.34,45.645],[-29.51,-46.275],[-29.5,-46.265]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1518.409,593.282],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 112","np":2,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.7,-2.19],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[2.91,1.9]],"v":[[32.89,-37.44],[-32.87,43.56],[-32.89,43.57],[24.46,-43.57]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1521.779,503.407],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 113","np":2,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.76,-1.87],[0,0],[0,0]],"o":[[0,0],[-2.56,2.12],[0,0],[0,0],[0,0]],"v":[[33.05,37.065],[33.49,37.585],[25.52,43.575],[25.12,43.005],[-33.49,-43.575]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1522.399,590.592],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 114","np":2,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.36,-2.31],[0,0],[0,0]],"o":[[0,0],[0,0],[2.57,2.05]],"v":[[36.585,-33.95],[-36.585,40.5],[29.175,-40.5]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.494,506.467],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 115","np":2,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[2.81,-2.33],[0,0],[0,0],[0,0]],"o":[[-2.55,2.61],[0,0],[0,0],[0,0],[0,0]],"v":[[37.515,33.16],[29.465,40.58],[29.025,40.06],[-37.515,-40.58],[37.045,32.7]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1526.424,587.597],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 116","np":2,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.32,-2.79],[0,0],[0,0]],"o":[[0,0],[0,0],[2.6,2.52]],"v":[[40.28,-29.255],[-40.28,37.225],[32.89,-37.225]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1529.189,509.742],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 117","np":2,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.32,-2.38],[0,0],[0,0]],"o":[[0,0],[-2.08,2.59],[0,0],[0,0],[0,0]],"v":[[40.345,29.03],[40.825,29.42],[34.205,36.87],[33.735,36.41],[-40.825,-36.87]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1529.734,583.887],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 118","np":2,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.87,-2.73],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[2.12,2.53]],"v":[[43.275,-25.35],[-43.265,33.24],[-43.275,33.24],[37.285,-33.24]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.184,513.727],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 119","np":2,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[2.21,-2.72],[0,0],[0,0],[0,0]],"o":[[0,0],[-1.91,2.94],[0,0],[0,0],[0,0],[0,0]],"v":[[43.43,24.33],[43.92,24.65],[37.74,33.15],[37.26,32.76],[-43.91,-33.14],[-43.92,-33.15]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.819,580.157],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 120","np":2,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.65,-3],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[1.93,2.81]],"v":[[45.96,-20.565],[45.94,-20.555],[-45.96,29.295],[40.58,-29.295]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1534.879,517.672],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 121","np":2,"cix":2,"bm":0,"ix":121,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.83,-2.77],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[-1.54,2.95],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[45.955,20.055],[46.455,20.315],[41.395,28.905],[40.905,28.585],[-46.445,-28.895],[-46.455,-28.905],[-46.435,-28.905]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1535.344,575.902],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 122","np":2,"cix":2,"bm":0,"ix":122,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.31,-3.04],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[1.59,2.89]],"v":[[48.145,-16.035],[48.065,-15.995],[-48.145,24.935],[-48.145,24.925],[-48.135,24.925],[43.765,-24.925],[43.785,-24.935]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1537.054,522.042],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 123","np":2,"cix":2,"bm":0,"ix":123,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.7,-3.21],[0,0],[0,0],[0,0]],"o":[[0,0],[-1.35,3.4],[0,0],[0,0],[0,0],[0,0]],"v":[[48.245,14.48],[48.735,14.68],[44.155,24.61],[43.655,24.35],[-48.735,-24.61],[-48.695,-24.6]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1537.644,571.607],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 124","np":2,"cix":2,"bm":0,"ix":124,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.09,-3.49],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[1.45,3.32]],"v":[[50.045,-10.275],[49.905,-10.225],[-50.045,20.485],[46.165,-20.445],[46.245,-20.485]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.954,526.492],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 125","np":2,"cix":2,"bm":0,"ix":125,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.22,-3.07],[0,0],[0,0]],"o":[[0,0],[-0.92,3.2],[0,0],[0,0],[0,0]],"v":[[49.87,10.09],[50.33,10.23],[47.1,19.64],[46.61,19.44],[-50.33,-19.64]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1539.279,566.647],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 126","np":2,"cix":2,"bm":0,"ix":126,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.68,-3.27],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0.99,3.14]],"v":[[51.3,-5.77],[51.11,-5.73],[-51.3,15.38],[48.65,-15.33],[48.79,-15.38]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.209,531.597],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 127","np":2,"cix":2,"bm":0,"ix":127,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.96,-3.28],[0,0],[0,0],[0,0]],"o":[[0,0],[-0.63,3.41],[0,0],[0,0],[0,0],[0,0]],"v":[[51.125,4.83],[51.545,4.91],[49.155,14.94],[48.695,14.8],[-51.505,-14.93],[-51.545,-14.94]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.454,561.937],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 128","np":2,"cix":2,"bm":0,"ix":128,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.37,-3.5],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0.73,3.38]],"v":[[52.13,-0.25],[51.88,-0.22],[-52.13,10.58],[-52.12,10.57],[50.29,-10.54],[50.48,-10.58]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1541.029,536.407],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 129","np":2,"cix":2,"bm":0,"ix":129,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.61,-3.23],[0,0],[0,0],[0,0]],"o":[[0,0],[-0.29,3.34],[0,0],[0,0],[0,0],[0,0]],"v":[[51.875,0.04],[52.225,0.07],[50.875,9.93],[50.455,9.85],[-52.215,-9.92],[-52.225,-9.93]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1541.124,556.917],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 130","np":2,"cix":2,"bm":0,"ix":130,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.04,-3.35],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0.36,3.27]],"v":[[52.43,4.515],[52.14,4.515],[-52.43,5.415],[51.58,-5.385],[51.83,-5.415]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1541.329,541.572],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 131","np":2,"cix":2,"bm":0,"ix":131,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-0.49],[0.29,-3.1],[0,0],[0,0],[0,0]],"o":[[0.02,0.49],[0,3.18],[0,0],[0,0],[0,0],[0,0]],"v":[[52.42,-5.45],[52.44,-3.98],[52.01,5.45],[51.66,5.42],[-52.44,-4.55],[52.13,-5.45]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1541.339,551.537],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 132","np":2,"cix":2,"bm":0,"ix":132,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":25,"ty":3,"nm":"button 1 PEG","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":17,"s":[1297.5,535.5,0],"to":[0,0.417,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19,"s":[1297.5,538,0],"to":[0,0,0],"ti":[0,0.417,0]},{"t":23,"s":[1297.5,535.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":26,"ty":4,"nm":"button 1 Outlines 2","parent":25,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-281.97,57.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,13.91],[15.06,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91],[15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,535.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,535.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":18,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":27,"ty":4,"nm":"button 1 lit Outlines 2","parent":25,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-281.97,57.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,13.91],[15.06,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91],[15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,535.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976470648074,0.709803921569,0.996078491211,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,535.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":18,"op":23,"st":-388,"ct":1,"bm":0},{"ddd":0,"ind":28,"ty":4,"nm":"button 1 Outlines","parent":25,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-281.97,57.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,13.91],[15.06,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91],[15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,535.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,535.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":23,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":29,"ty":4,"nm":"button 1 ul Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[965.53,543.11,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,8.85],[15.06,11.15],[-15.06,11.15],[-15.06,8.85],[-15.06,8.32],[-15.06,-11.15],[15.06,-11.15]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,540.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-11.15],[15.06,8.85],[14.59,11.15],[-15.06,11.15],[-15.06,8.32],[-15.06,-11.15]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,540.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":30,"ty":3,"nm":"button 2 PEG","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":32,"s":[1344,580.5,0],"to":[0,0.583,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34,"s":[1344,584,0],"to":[0,0,0],"ti":[0,0.583,0]},{"t":38,"s":[1344,580.5,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":31,"ty":4,"nm":"button 2 Outlines 2","parent":30,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-328.47,12.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,13.91],[15.06,13.91],[-15.06,13.91],[-15.06,-5.592],[-15.06,-13.91],[15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,580.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,580.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":33,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":32,"ty":4,"nm":"button 2 lit Outlines 2","parent":30,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-328.47,12.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,13.91],[15.06,13.91],[-15.06,13.91],[-15.06,-5.592],[-15.06,-13.91],[15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,580.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.976470648074,0.709803921569,0.996078491211,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,580.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":33,"op":38,"st":-290,"ct":1,"bm":0},{"ddd":0,"ind":33,"ty":4,"nm":"button 2 Outlines","parent":30,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-328.47,12.61,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,13.91],[15.06,13.91],[-15.06,13.91],[-15.06,-5.592],[-15.06,-13.91],[15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,580.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,580.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":38,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":34,"ty":4,"nm":"button 2 ul Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[965.53,543.11,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,8.85],[15.06,11.15],[-15.06,11.15],[-15.06,8.85],[-15.06,8.32],[-15.06,-11.15],[15.06,-11.15]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,585.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-11.15],[15.06,8.85],[14.59,11.15],[-15.06,11.15],[-15.06,8.32],[-15.06,-11.15]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,585.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":35,"ty":4,"nm":"screen ol Outlines","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[965.53,543.11,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[5.43,0],[0,0],[0,5.44],[0,0],[0,0],[-5.43,0],[0,0],[0,-5.43]],"o":[[0,0],[0,5.44],[0,0],[-5.43,0],[0,0],[0,0],[0,-5.43],[0,0],[5.43,0],[0,0]],"v":[[80.825,-15.53],[80.825,18],[70.945,27.88],[-70.945,27.88],[-80.825,18],[-80.825,16.94],[-80.825,-18],[-70.945,-27.88],[70.945,-27.88],[80.825,-18]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.856,424.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[9.9,0],[0,0],[0,9.9],[0,0],[-9.9,0],[0,0],[0,-9.9],[0,0]],"o":[[0,0],[-9.9,0],[0,0],[0,-9.9],[0,0],[9.9,0],[0,0],[0,9.9]],"v":[[71.29,37.06],[-71.29,37.06],[-89.29,19.06],[-89.29,-19.06],[-71.29,-37.06],[71.29,-37.06],[89.29,-19.06],[89.29,19.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,424.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,5.44],[0,0],[0,0],[5.43,0],[0,0],[0,-5.43],[0,0],[0,0],[-5.43,0],[0,0]],"o":[[0,0],[0,0],[0,-5.43],[0,0],[-5.43,0],[0,0],[0,0],[0,5.44],[0,0],[5.43,0]],"v":[[81.53,18],[81.53,-15.53],[81.53,-18],[71.65,-27.88],[-70.24,-27.88],[-80.12,-18],[-80.12,16.94],[-80.12,18],[-70.24,27.88],[71.65,27.88]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,-9.9],[0,0],[9.9,0],[0,0],[0,9.9],[0,0],[-9.9,0],[0,0]],"o":[[0,0],[0,9.9],[0,0],[-9.9,0],[0,0],[0,-9.9],[0,0],[9.9,0]],"v":[[89.29,-19.06],[89.29,19.06],[71.29,37.06],[-71.29,37.06],[-89.29,19.06],[-89.29,-19.06],[-71.29,-37.06],[71.29,-37.06]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,424.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":4,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":36,"ty":3,"nm":"wave PEG","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[1379,424.77,0],"to":[-24.167,0,0],"ti":[24.167,0,0]},{"t":114,"s":[1234,424.77,0]}],"ix":2,"l":2},"a":{"a":0,"k":[50,50,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"ip":0,"op":114,"st":0,"bm":0},{"ddd":0,"ind":37,"ty":4,"nm":"Shape Layer 1","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[966,543.5,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[170.5,74],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[331.25,-118],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":38,"ty":4,"nm":"wave Outlines","parent":36,"tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-363.47,168.34,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.29,0.02],[0,0]],"o":[[-0.32,0],[-8.15,-0.45],[0,0]],"v":[[4.535,3.53],[3.615,3.5],[-3.225,-3.53]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1475.867,438.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.29,0.02],[0,0],[0,0],[-8.12,0],[0,0],[0,0]],"o":[[0.32,0],[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0]],"v":[[-11.65,16.055],[-10.73,16.025],[-3.88,8.995],[-3.88,-5.115],[3.53,-16.055],[11.29,-5.115],[11.29,8.995]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.211,425.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.29,0.02],[0,0]],"o":[[-0.32,0],[-8.15,-0.45],[0,0]],"v":[[4.535,3.53],[3.615,3.5],[-3.225,-3.53]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.867,438.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.29,0.02],[0,0],[0,0],[-4.98,2.29],[-4.59,0.36]],"o":[[0.32,0],[8.16,-0.45],[0,0],[0,0],[0,0],[0,0]],"v":[[-7.885,16.235],[-6.965,16.205],[-0.115,9.175],[-0.115,-4.935],[4.345,-15.285],[7.885,-16.235]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1515.447,425.595],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.29,0.02],[0,0]],"o":[[-0.32,0],[-8.15,-0.45],[0,0]],"v":[[4.535,3.53],[3.615,3.5],[-3.225,-3.53]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1417.867,438.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.29,0.02],[0,0],[0,0],[-8.12,0],[0,0],[0,0]],"o":[[0.32,0],[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0]],"v":[[-11.65,16.055],[-10.73,16.025],[-3.88,8.995],[-3.88,-5.115],[3.53,-16.055],[11.29,-5.115],[11.29,8.995]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1432.211,425.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.29,0.02],[0,0]],"o":[[-0.32,0],[-8.15,-0.45],[0,0]],"v":[[4.535,3.53],[3.615,3.5],[-3.225,-3.53]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1446.867,438.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.29,0.02],[0,0],[0,0],[-8.12,0],[0,0],[0,0]],"o":[[0.32,0],[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0]],"v":[[-11.65,16.055],[-10.73,16.025],[-3.88,8.995],[-3.88,-5.115],[3.53,-16.055],[11.29,-5.115],[11.29,8.995]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1461.211,425.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.3,0.02],[0.24,0.03]],"o":[[-0.33,0],[-0.26,-0.01],[0,0]],"v":[[0.845,0.045],[-0.105,0.015],[-0.845,-0.045]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1363.557,441.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[8.12,0],[0,0],[0,0]],"v":[[-4.06,-12.705],[3.11,-1.405],[3.11,12.705]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1382.392,422.065],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.29,0.02],[0,0]],"o":[[-0.32,0],[-8.15,-0.45],[0,0]],"v":[[4.535,3.53],[3.615,3.5],[-3.225,-3.53]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1388.867,438.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.29,0.02],[0,0],[0,0],[-8.12,0],[0,0],[0,0]],"o":[[0.32,0],[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0]],"v":[[-11.65,16.055],[-10.73,16.025],[-3.88,8.995],[-3.88,-5.115],[3.53,-16.055],[11.29,-5.115],[11.29,8.995]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1403.211,425.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.29,0.02],[0,0]],"o":[[-0.32,0],[-8.15,-0.45],[0,0]],"v":[[4.535,3.53],[3.615,3.5],[-3.225,-3.53]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1330.867,438.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.29,0.02],[0,0],[0,0],[-8.12,0],[0,0],[0,0]],"o":[[0.32,0],[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0]],"v":[[-11.65,16.055],[-10.73,16.025],[-3.88,8.995],[-3.88,-5.115],[3.53,-16.055],[11.29,-5.115],[11.29,8.995]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1345.211,425.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.29,0.02],[0,0]],"o":[[-0.32,0],[-8.15,-0.45],[0,0]],"v":[[4.535,3.53],[3.615,3.5],[-3.225,-3.53]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1359.867,438.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.29,0.02],[0,0],[0,0],[-4.98,2.29],[-4.59,0.36]],"o":[[0.32,0],[8.16,-0.45],[0,0],[0,0],[0,0],[0,0]],"v":[[-7.885,16.235],[-6.965,16.205],[-0.115,9.175],[-0.115,-4.935],[4.345,-15.285],[7.885,-16.235]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1370.447,425.595],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.29,0.02],[0,0]],"o":[[-0.32,0],[-8.15,-0.45],[0,0]],"v":[[4.535,3.53],[3.615,3.5],[-3.225,-3.53]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1272.867,438.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.29,0.02],[0,0],[0,0],[-8.12,0],[0,0],[0,0]],"o":[[0.32,0],[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0]],"v":[[-11.65,16.055],[-10.73,16.025],[-3.88,8.995],[-3.88,-5.115],[3.53,-16.055],[11.29,-5.115],[11.29,8.995]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1287.211,425.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.29,0.02],[0,0]],"o":[[-0.32,0],[-8.15,-0.45],[0,0]],"v":[[4.535,3.53],[3.615,3.5],[-3.225,-3.53]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1301.867,438.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.29,0.02],[0,0],[0,0],[-8.12,0],[0,0],[0,0]],"o":[[0.32,0],[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0]],"v":[[-11.65,16.055],[-10.73,16.025],[-3.88,8.995],[-3.88,-5.115],[3.53,-16.055],[11.29,-5.115],[11.29,8.995]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1316.211,425.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.3,0.02],[0.24,0.03]],"o":[[-0.33,0],[-0.26,-0.01],[0,0]],"v":[[0.845,0.045],[-0.105,0.015],[-0.845,-0.045]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1218.557,441.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.28,0.02],[0,0],[0,0],[-8.12,0],[0,0],[0,0]],"o":[[0.31,0],[8.2,-0.44],[0,0],[0,0],[8.12,0],[0,0],[0,0]],"v":[[-11.65,16.055],[-10.76,16.025],[-3.88,8.995],[-3.88,-5.115],[3.53,-16.055],[11.29,-5.115],[11.29,8.995]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1229.211,425.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.29,0.02],[0,0]],"o":[[-0.32,0],[-8.15,-0.45],[0,0]],"v":[[4.535,3.53],[3.615,3.5],[-3.225,-3.53]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1243.867,438.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":2,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.29,0.02],[0,0],[0,0],[-8.12,0],[0,0],[0,0]],"o":[[0.32,0],[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0]],"v":[[-11.65,16.055],[-10.73,16.025],[-3.88,8.995],[-3.88,-5.115],[3.53,-16.055],[11.29,-5.115],[11.29,8.995]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.03137254902,0.321568627451,0.223529426724,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1258.211,425.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":2,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":39,"ty":4,"nm":"Shape Layer 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[966,543,0],"ix":2,"l":2},"a":{"a":0,"k":[0,0,0],"ix":1,"l":2},"s":{"a":0,"k":[100,101,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[168.5,56],"ix":2},"p":{"a":0,"k":[0,0],"ix":3},"r":{"a":0,"k":0,"ix":4},"nm":"Rectangle Path 1","mn":"ADBE Vector Shape - Rect","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":4,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.180392156863,0.133333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[331.75,-117.5],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Rectangle 1","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0},{"ddd":0,"ind":40,"ty":4,"nm":"main Outlines 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[965.53,543.11,0],"ix":2,"l":2},"a":{"a":0,"k":[965.53,543.11,0],"ix":1,"l":2},"s":{"a":0,"k":[100,100,100],"ix":6,"l":2}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1358.742,504.77],[1329.092,504.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,12.76],[15.06,15.06],[-15.06,15.06],[-15.06,12.76],[-15.06,12.23],[-15.06,-15.06],[15.06,-15.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,492.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1358.742,549.77],[1329.092,549.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,12.76],[15.06,15.06],[-15.06,15.06],[-15.06,12.76],[-15.06,12.23],[-15.06,-15.06],[15.06,-15.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,537.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1311.742,594.77],[1282.092,594.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,12.76],[15.06,15.06],[-15.06,15.06],[-15.06,12.76],[-15.06,12.23],[-15.06,-15.06],[15.06,-15.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,582.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1311.742,504.77],[1282.092,504.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,12.76],[15.06,15.06],[-15.06,15.06],[-15.06,12.76],[-15.06,12.23],[-15.06,-15.06],[15.06,-15.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,492.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1264.742,594.77],[1235.092,594.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,12.76],[15.06,15.06],[-15.06,15.06],[-15.06,12.76],[-15.06,12.23],[-15.06,-15.06],[15.06,-15.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1250.151,582.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1264.742,504.77],[1235.092,504.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,12.76],[15.06,15.06],[-15.06,15.06],[-15.06,12.76],[-15.06,12.23],[-15.06,-15.06],[15.06,-15.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1250.151,492.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1264.742,549.77],[1235.092,549.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,12.76],[15.06,15.06],[-15.06,15.06],[-15.06,12.76],[-15.06,12.23],[-15.06,-15.06],[15.06,-15.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1250.151,537.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[70.59,67.765],[-70.59,67.765],[-70.59,-67.765],[70.59,-67.765]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.152,537.245],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 15","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1250.151,490.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 16","np":2,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1250.151,535.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 17","np":2,"cix":2,"bm":0,"ix":17,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1250.151,580.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 18","np":2,"cix":2,"bm":0,"ix":18,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,490.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 19","np":2,"cix":2,"bm":0,"ix":19,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,580.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 20","np":2,"cix":2,"bm":0,"ix":20,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,490.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-13.91],[15.06,13.91],[14.59,13.91],[-15.06,13.91],[-15.06,13.38],[-15.06,-13.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1344.151,535.86],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 22","np":2,"cix":2,"bm":0,"ix":22,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-31.94,-30.175],[-31.94,-32.475],[-31.94,-60.295],[-62.06,-60.295],[-62.06,-33.005],[-62.06,-32.475],[-62.06,-30.175]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-31.94,14.825],[-31.94,12.525],[-31.94,-15.295],[-62.06,-15.295],[-62.06,11.995],[-62.06,12.525],[-62.06,14.825]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-31.94,59.825],[-31.94,57.525],[-31.94,29.705],[-62.06,29.705],[-62.06,56.995],[-62.06,57.525],[-62.06,59.825]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,-30.175],[15.06,-32.475],[15.06,-60.295],[-15.06,-60.295],[-15.06,-33.005],[-15.06,-32.475],[-15.06,-30.175]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,14.825],[15.06,12.525],[15.06,-15.295],[-15.06,-15.295],[-15.06,11.995],[-15.06,12.525],[-15.06,14.825]],"c":true},"ix":2},"nm":"Path 5","mn":"ADBE Vector Shape - Group","hd":false},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[15.06,59.825],[15.06,57.525],[15.06,29.705],[-15.06,29.705],[-15.06,56.995],[-15.06,57.525],[-15.06,59.825]],"c":true},"ix":2},"nm":"Path 6","mn":"ADBE Vector Shape - Group","hd":false},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[62.06,-30.175],[62.06,-32.475],[62.06,-60.295],[31.94,-60.295],[31.94,-33.005],[31.94,-32.475],[31.94,-30.175]],"c":true},"ix":2},"nm":"Path 7","mn":"ADBE Vector Shape - Group","hd":false},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[62.06,14.825],[62.06,12.525],[62.06,-15.295],[31.94,-15.295],[31.94,11.995],[31.94,12.525],[31.94,14.825]],"c":true},"ix":2},"nm":"Path 8","mn":"ADBE Vector Shape - Group","hd":false},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[62.06,59.825],[62.06,57.525],[62.06,29.705],[31.94,29.705],[31.94,56.995],[31.94,57.525],[31.94,59.825]],"c":true},"ix":2},"nm":"Path 9","mn":"ADBE Vector Shape - Group","hd":false},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[70.59,67.765],[-70.59,67.765],[-70.59,-67.765],[70.59,-67.765]],"c":true},"ix":2},"nm":"Path 10","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.443137284821,0.164705882353,0.462745127958,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,537.245],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 23","np":12,"cix":2,"bm":0,"ix":23,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-9.412,-2.736],[9.412,-2.736],[9.412,2.735],[-9.412,2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1605.21,587.745],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 24","np":3,"cix":2,"bm":0,"ix":24,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.235,-42.355],[4.235,-42.355],[4.235,42.355],[-4.235,42.355]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1605.207,586.245],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 25","np":2,"cix":2,"bm":0,"ix":25,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10.825,2.96],[-10.825,2.96],[-10.825,-2.96],[10.825,-2.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1580.737,637.43],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 26","np":2,"cix":2,"bm":0,"ix":26,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10.825,2.96],[-10.825,2.96],[-10.825,-2.96],[10.825,-2.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1580.737,625.44],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 27","np":2,"cix":2,"bm":0,"ix":27,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-4.08],[4.09,0],[0,4.09],[-4.08,0]],"o":[[0,4.09],[-4.08,0],[0,-4.08],[4.09,0]],"v":[[7.4,-0.005],[0,7.395],[-7.4,-0.005],[0,-7.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1580.872,654.555],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 28","np":2,"cix":2,"bm":0,"ix":28,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-4.08],[4.08,0],[0,4.09],[-4.09,0]],"o":[[0,4.09],[-4.09,0],[0,-4.08],[4.08,0]],"v":[[7.395,-0.005],[0.005,7.395],[-7.395,-0.005],[0.005,-7.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1558.487,654.555],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 29","np":2,"cix":2,"bm":0,"ix":29,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[42.355,6.12],[-42.355,6.12],[-42.355,-6.12],[42.355,-6.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1348.737,653.42],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 30","np":2,"cix":2,"bm":0,"ix":30,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[42.355,6.12],[-42.355,6.12],[-42.355,-6.12],[42.355,-6.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1348.737,622.42],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 31","np":2,"cix":2,"bm":0,"ix":31,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-8.58],[8.58,0],[0,8.58],[-8.58,0]],"o":[[0,8.58],[-8.58,0],[0,-8.58],[8.58,0]],"v":[[15.53,0],[0,15.53],[-15.53,0],[0,-15.53]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1262.562,637.95],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 32","np":2,"cix":2,"bm":0,"ix":32,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-8.58],[8.58,0],[0,8.58],[-8.58,0]],"o":[[0,8.58],[-8.58,0],[0,-8.58],[8.58,0]],"v":[[15.53,0],[0,15.53],[-15.53,0],[0,-15.53]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1215.562,637.95],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 33","np":2,"cix":2,"bm":0,"ix":33,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.58,0],[0,-8.58],[8.58,0],[0,8.58]],"o":[[8.58,0],[0,8.58],[-8.58,0],[0,-8.58]],"v":[[0,-15.53],[15.53,0],[0,15.53],[-15.53,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1215.562,637.95],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 34","np":2,"cix":2,"bm":0,"ix":34,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.58,0],[0,-8.58],[8.58,0],[0,8.58]],"o":[[8.58,0],[0,8.58],[-8.58,0],[0,-8.58]],"v":[[0,-15.53],[15.53,0],[0,15.53],[-15.53,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1262.562,637.95],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 35","np":2,"cix":2,"bm":0,"ix":35,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[42.355,6.12],[-42.355,6.12],[-42.355,-6.12],[42.355,-6.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1348.737,622.42],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 36","np":2,"cix":2,"bm":0,"ix":36,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[42.355,6.12],[-42.355,6.12],[-42.355,-6.12],[42.355,-6.12]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1348.737,653.42],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 37","np":2,"cix":2,"bm":0,"ix":37,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.09,0],[0,-4.08],[4.08,0],[0,4.09]],"o":[[4.08,0],[0,4.09],[-4.09,0],[0,-4.08]],"v":[[0.005,-7.395],[7.395,-0.005],[0.005,7.395],[-7.395,-0.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1558.487,654.555],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 38","np":2,"cix":2,"bm":0,"ix":38,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-4.08,0],[0,-4.08],[4.09,0],[0,4.09]],"o":[[4.09,0],[0,4.09],[-4.08,0],[0,-4.08]],"v":[[0,-7.395],[7.4,-0.005],[0,7.395],[-7.4,-0.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1580.872,654.555],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 39","np":2,"cix":2,"bm":0,"ix":39,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10.825,2.96],[-10.825,2.96],[-10.825,-2.96],[10.825,-2.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1580.737,625.44],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 40","np":2,"cix":2,"bm":0,"ix":40,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10.825,2.96],[-10.825,2.96],[-10.825,-2.96],[10.825,-2.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1580.737,637.43],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 41","np":2,"cix":2,"bm":0,"ix":41,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,42.355],[-4.235,42.355],[-4.235,-42.355],[4.235,-42.355]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1605.207,586.245],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 42","np":2,"cix":2,"bm":0,"ix":42,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1195.442,597.07],[1209.211,597.07]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 43","np":2,"cix":2,"bm":0,"ix":43,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1195.442,578.47],[1209.211,578.47]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 44","np":2,"cix":2,"bm":0,"ix":44,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1195.442,559.87],[1209.211,559.87]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 45","np":2,"cix":2,"bm":0,"ix":45,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1195.442,541.27],[1209.211,541.27]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 46","np":2,"cix":2,"bm":0,"ix":46,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1195.442,522.67],[1209.211,522.67]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 47","np":2,"cix":2,"bm":0,"ix":47,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1195.442,504.07],[1209.211,504.07]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 48","np":2,"cix":2,"bm":0,"ix":48,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.06,5.075],[-7.06,5.075],[-7.06,3.725],[-7.06,-5.075],[7.06,-5.075]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,593.345],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 49","np":2,"cix":2,"bm":0,"ix":49,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.06,5.07],[-7.06,5.07],[-7.06,3.67],[-7.06,-5.07],[7.06,-5.07]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,574.8],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 50","np":2,"cix":2,"bm":0,"ix":50,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.06,5.075],[-7.06,5.075],[-7.06,3.615],[-7.06,-5.075],[7.06,-5.075]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,556.255],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 51","np":2,"cix":2,"bm":0,"ix":51,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.06,5.075],[-7.06,5.075],[-7.06,3.565],[-7.06,-5.075],[7.06,-5.075]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,537.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 52","np":2,"cix":2,"bm":0,"ix":52,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.06,5.07],[-7.06,5.07],[-7.06,3.51],[-7.06,-5.07],[7.06,-5.07]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,519.16],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 53","np":2,"cix":2,"bm":0,"ix":53,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.06,3.455],[7.06,5.075],[-7.06,5.075],[-7.06,3.455],[-7.06,-5.075],[7.06,-5.075]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,500.615],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 54","np":2,"cix":2,"bm":0,"ix":54,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13.235,58.94],[-13.235,58.94],[-13.235,-58.94],[13.235,-58.94]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.677,546.54],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 55","np":2,"cix":2,"bm":0,"ix":55,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[7.06,-4.265],[7.06,4.265],[6.71,4.265],[-7.06,4.265],[-7.06,-4.265]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,499.805],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 56","np":2,"cix":2,"bm":0,"ix":56,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-7.06,3.51],[-7.06,-5.07],[7.06,-5.07],[7.06,5.07],[-7.06,5.07]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,519.16],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 57","np":2,"cix":2,"bm":0,"ix":57,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-7.06,3.565],[-7.06,-5.075],[7.06,-5.075],[7.06,5.075],[-7.06,5.075]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,537.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 58","np":2,"cix":2,"bm":0,"ix":58,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-7.06,3.615],[-7.06,-5.075],[7.06,-5.075],[7.06,5.075],[-7.06,5.075]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,556.255],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 59","np":2,"cix":2,"bm":0,"ix":59,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-7.06,3.67],[-7.06,-5.07],[7.06,-5.07],[7.06,5.07],[-7.06,5.07]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,574.8],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 60","np":2,"cix":2,"bm":0,"ix":60,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-7.06,3.725],[-7.06,-5.075],[7.06,-5.075],[7.06,5.075],[-7.06,5.075]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.501,593.345],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 61","np":2,"cix":2,"bm":0,"ix":61,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.885,-40.85],[6.885,-42.47],[6.885,-51],[-7.235,-51],[-7.235,-42.47],[-7.235,-40.85]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.885,-22.31],[6.885,-32.45],[-7.235,-32.45],[-7.235,-23.87],[-7.235,-22.31]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.885,-3.76],[6.885,-13.91],[-7.235,-13.91],[-7.235,-5.27],[-7.235,-3.76]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.885,14.79],[6.885,4.64],[-7.235,4.64],[-7.235,13.33],[-7.235,14.79]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.885,33.33],[6.885,23.19],[-7.235,23.19],[-7.235,31.93],[-7.235,33.33]],"c":true},"ix":2},"nm":"Path 5","mn":"ADBE Vector Shape - Group","hd":false},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[6.885,51.88],[6.885,41.73],[-7.235,41.73],[-7.235,50.53],[-7.235,51.88]],"c":true},"ix":2},"nm":"Path 6","mn":"ADBE Vector Shape - Group","hd":false},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13.235,58.94],[-13.235,58.94],[-13.235,-58.94],[13.235,-58.94]],"c":true},"ix":2},"nm":"Path 7","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.443137284821,0.164705882353,0.462745127958,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1202.677,546.54],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 62","np":9,"cix":2,"bm":0,"ix":62,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[5.43,0],[0,0],[0,5.44],[0,0],[0,0],[-5.43,0],[0,0],[0,-5.43]],"o":[[0,0],[0,5.44],[0,0],[-5.43,0],[0,0],[0,0],[0,-5.43],[0,0],[5.43,0],[0,0]],"v":[[80.825,-15.53],[80.825,18],[70.945,27.88],[-70.945,27.88],[-80.825,18],[-80.825,16.94],[-80.825,-18],[-70.945,-27.88],[70.945,-27.88],[80.825,-18]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.856,424.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 63","np":2,"cix":2,"bm":0,"ix":63,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[9.9,0],[0,0],[0,9.9],[0,0],[-9.9,0],[0,0],[0,-9.9],[0,0]],"o":[[0,0],[-9.9,0],[0,0],[0,-9.9],[0,0],[9.9,0],[0,0],[0,9.9]],"v":[[71.29,37.06],[-71.29,37.06],[-89.29,19.06],[-89.29,-19.06],[-71.29,-37.06],[71.29,-37.06],[89.29,-19.06],[89.29,19.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,424.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 64","np":2,"cix":2,"bm":0,"ix":64,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[8.2,-0.44],[0.31,0],[0,0],[0,0],[-5.43,0],[0,0],[0,-5.43],[0,0],[0,0],[0,0],[0,0],[0,0],[8.16,-0.45],[0,0],[0,0],[0,0],[8.12,0],[0,0],[0,0],[8.16,-0.45],[0,0],[0,0],[0,0],[8.12,0],[0,0],[0,0],[8.16,-0.45],[0,0],[0,0],[0,0],[8.12,0],[0,0],[0,0],[8.16,-0.45],[0,0],[0,0],[0,0],[8.12,0],[0,0],[0,0],[8.16,-0.45],[0,0],[0,0],[0,0],[8.12,0],[0,0],[0,0]],"o":[[-0.28,0.02],[0,0],[0,0],[0,-5.43],[0,0],[5.43,0],[0,0],[0,0],[-4.59,0.36],[-4.98,2.29],[0,0],[0,0],[-8.15,-0.45],[0,0],[0,0],[0,0],[-8.12,0],[0,0],[0,0],[-8.15,-0.45],[0,0],[0,0],[0,0],[-8.12,0],[0,0],[0,0],[-8.15,-0.45],[0,0],[0,0],[0,0],[-8.12,0],[0,0],[0,0],[-8.15,-0.45],[0,0],[0,0],[0,0],[-8.12,0],[0,0],[0,0],[-8.15,-0.45],[0,0],[0,0],[0,0],[-8.12,0],[0,0],[0,0]],"v":[[-79.405,22.38],[-80.295,22.41],[-80.825,22.41],[-80.825,-12.53],[-70.945,-22.41],[70.945,-22.41],[80.825,-12.53],[80.825,-10.06],[80.475,-10.06],[76.935,-9.11],[72.475,1.24],[72.475,15.35],[65.625,22.38],[58.785,15.35],[58.645,15.35],[58.645,1.24],[50.885,-9.7],[43.475,1.24],[43.475,15.35],[36.625,22.38],[29.785,15.35],[29.645,15.35],[29.645,1.24],[21.885,-9.7],[14.475,1.24],[14.475,15.35],[7.625,22.38],[0.785,15.35],[0.645,15.35],[0.645,1.24],[-7.115,-9.7],[-14.525,1.24],[-14.525,15.35],[-21.375,22.38],[-28.215,15.35],[-28.355,15.35],[-28.355,1.24],[-36.115,-9.7],[-43.525,1.24],[-43.525,15.35],[-50.375,22.38],[-57.215,15.35],[-57.355,15.35],[-57.355,1.24],[-65.115,-9.7],[-72.525,1.24],[-72.525,15.35]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.180392156863,0.133333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.856,419.42],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 65","np":2,"cix":2,"bm":0,"ix":65,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-8.15,-0.45],[0,0],[0,0],[-8.12,0],[0,0],[0,0],[0,0],[-8.15,-0.45],[0,0],[0,0],[-8.12,0],[0,0],[0,0],[0,0],[-8.15,-0.45],[0,0],[0,0],[-4.98,2.29],[-4.59,0.36],[0,0],[0,0],[5.43,0],[0,0],[0,5.44],[0,0],[0,0],[-0.28,0.02],[0,0],[0,0],[-8.12,0],[0,0],[0,0],[0,0],[-8.15,-0.45],[0,0],[0,0],[-8.12,0],[0,0],[0,0],[0,0],[-8.15,-0.45],[0,0],[0,0],[-8.12,0],[0,0],[0,0],[0,0]],"o":[[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0],[0,0],[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0],[0,0],[8.16,-0.45],[0,0],[0,0],[0,0],[0,0],[0,0],[0,5.44],[0,0],[-5.43,0],[0,0],[0,0],[0.31,0],[8.2,-0.44],[0,0],[0,0],[8.12,0],[0,0],[0,0],[0,0],[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0],[0,0],[8.16,-0.45],[0,0],[0,0],[8.12,0],[0,0],[0,0],[0,0]],"v":[[7.625,10.735],[14.475,3.705],[14.475,-10.405],[21.885,-21.345],[29.645,-10.405],[29.645,3.705],[29.785,3.705],[36.625,10.735],[43.475,3.705],[43.475,-10.405],[50.885,-21.345],[58.645,-10.405],[58.645,3.705],[58.785,3.705],[65.625,10.735],[72.475,3.705],[72.475,-10.405],[76.935,-20.755],[80.475,-21.705],[80.825,-21.705],[80.825,11.825],[70.945,21.705],[-70.945,21.705],[-80.825,11.825],[-80.825,10.765],[-80.295,10.765],[-79.405,10.735],[-72.525,3.705],[-72.525,-10.405],[-65.115,-21.345],[-57.355,-10.405],[-57.355,3.705],[-57.215,3.705],[-50.375,10.735],[-43.525,3.705],[-43.525,-10.405],[-36.115,-21.345],[-28.355,-10.405],[-28.355,3.705],[-28.215,3.705],[-21.375,10.735],[-14.525,3.705],[-14.525,-10.405],[-7.115,-21.345],[0.645,-10.405],[0.645,3.705],[0.785,3.705]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.180392156863,0.133333333333,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.856,431.065],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 66","np":2,"cix":2,"bm":0,"ix":66,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,5.44],[0,0],[0,0],[5.43,0],[0,0],[0,-5.43],[0,0],[0,0],[-5.43,0],[0,0]],"o":[[0,0],[0,0],[0,-5.43],[0,0],[-5.43,0],[0,0],[0,0],[0,5.44],[0,0],[5.43,0]],"v":[[81.53,18],[81.53,-15.53],[81.53,-18],[71.65,-27.88],[-70.24,-27.88],[-80.12,-18],[-80.12,16.94],[-80.12,18],[-70.24,27.88],[71.65,27.88]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,-9.9],[0,0],[9.9,0],[0,0],[0,9.9],[0,0],[-9.9,0],[0,0]],"o":[[0,0],[0,9.9],[0,0],[-9.9,0],[0,0],[0,-9.9],[0,0],[9.9,0]],"v":[[89.29,-19.06],[89.29,19.06],[71.29,37.06],[-71.29,37.06],[-89.29,19.06],[-89.29,-19.06],[-71.29,-37.06],[71.29,-37.06]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1297.151,424.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 67","np":4,"cix":2,"bm":0,"ix":67,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.2,0],[0,0],[0,13.2],[0,0],[-13.2,0],[0,0],[0,-13.2],[0,0]],"o":[[0,0],[-13.2,0],[0,0],[0,-13.2],[0,0],[13.2,0],[0,0],[0,13.2]],"v":[[198.71,123.175],[-198.71,123.175],[-222.71,99.175],[-222.71,-99.175],[-198.71,-123.175],[198.71,-123.175],[222.71,-99.175],[222.71,99.175]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1396.622,547.715],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 68","np":2,"cix":2,"bm":0,"ix":68,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-13.2],[0,0],[13.2,0],[0,0],[0,13.2],[0,0],[-13.2,0],[0,0]],"o":[[0,0],[0,13.2],[0,0],[-13.2,0],[0,0],[0,-13.2],[0,0],[13.2,0]],"v":[[222.71,-99.175],[222.71,99.175],[198.71,123.175],[-198.71,123.175],[-222.71,99.175],[-222.71,-99.175],[-198.71,-123.175],[198.71,-123.175]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.286274509804,0.133333333333,0.356862745098,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1396.622,547.715],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 69","np":2,"cix":2,"bm":0,"ix":69,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1],[0.36,-0.83],[0.48,-0.53],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.96],[-0.32,0.78],[-0.73,0.68],[-0.79,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.33],[-0.65,-0.64],[-0.35,-0.83],[0,-0.9],[0.36,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.66,0.61],[0.38,0.85]],"v":[[6.885,0.005],[6.325,2.725],[5.175,4.535],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.945],[-6.335,2.715],[-6.885,0.005],[-6.395,-2.535],[-4.725,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.745,-4.975],[6.295,-2.795]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,435.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 70","np":2,"cix":2,"bm":0,"ix":70,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.87,0.815],[1.77,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.802,438.995],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 71","np":2,"cix":2,"bm":0,"ix":71,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.655],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.327,431.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 72","np":2,"cix":2,"bm":0,"ix":72,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.635,-1.455],[0.955,2.185],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1564.347,426.945],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 73","np":2,"cix":2,"bm":0,"ix":73,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.95],[-0.77,-1.76],[0.82,1.89],[0.85,1.95]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.572,443.51],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 74","np":2,"cix":2,"bm":0,"ix":74,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.422,432.105],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 75","np":2,"cix":2,"bm":0,"ix":75,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.775],[1.58,0.655],[1.88,0.775]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.322,439.105],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 76","np":2,"cix":2,"bm":0,"ix":76,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.39],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.372,426.82],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 77","np":2,"cix":2,"bm":0,"ix":77,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.1],[0.73,-1.77],[-0.79,1.91],[-0.87,2.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1564.421,443.59],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 78","np":2,"cix":2,"bm":0,"ix":78,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.855],[-1.435,1.485],[1.325,-1.375],[1.785,-1.855]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1561.787,441.825],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 79","np":2,"cix":2,"bm":0,"ix":79,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.61],[1.025,-1.06],[1.555,-1.61]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1574.396,428.72],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 80","np":2,"cix":2,"bm":0,"ix":80,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.655],[-1.1,-1.055],[1.72,1.655]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1561.401,428.795],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 81","np":2,"cix":2,"bm":0,"ix":81,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.48,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1574.462,441.375],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 82","np":2,"cix":2,"bm":0,"ix":82,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1556.212,435.51],[1557.042,435.51],[1561.021,435.51],[1561.712,435.51]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 83","np":2,"cix":2,"bm":0,"ix":83,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1574.942,435.51],[1578.771,435.51],[1579.211,435.51]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 84","np":2,"cix":2,"bm":0,"ix":84,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1567.902,423.8],[1567.902,424.64],[1567.902,428.49]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 85","np":2,"cix":2,"bm":0,"ix":85,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1567.902,442.04],[1567.902,442.39],[1567.902,446.37],[1567.902,446.48]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 86","np":2,"cix":2,"bm":0,"ix":86,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.82,-0.89],[1.36,-0.61],[1.6,0],[1.31,0.56],[0.94,0.92],[0.57,1.33],[0,1.53],[-0.51,1.25],[-1.06,1.05],[-1.28,0.52],[-1.48,0],[-1.25,-0.51],[-0.99,-0.95],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.13],[-0.98,1.09],[-1.37,0.63],[-1.52,0],[-1.23,-0.52],[-1.03,-0.99],[-0.57,-1.32],[0,-1.43],[0.56,-1.4],[0.97,-0.95],[1.29,-0.55],[1.43,0],[1.3,0.51],[1.02,0.99],[0.6,1.34]],"v":[[10.865,0.005],[9.995,4.255],[8.035,7.305],[4.485,9.895],[-0.005,10.865],[-4.275,9.995],[-7.555,7.805],[-9.975,4.305],[-10.865,0.005],[-10.075,-4.055],[-7.605,-7.765],[-4.195,-10.015],[-0.005,-10.865],[4.045,-10.075],[7.515,-7.845],[9.935,-4.385]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,435.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 87","np":2,"cix":2,"bm":0,"ix":87,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.35,-0.83],[0.48,-0.54],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.82]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.62],[0.38,0.85]],"v":[[6.885,-0.005],[6.335,2.715],[5.175,4.525],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.935],[-6.335,2.715],[-6.885,-0.005],[-6.395,-2.545],[-4.735,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.755,-4.975],[6.295,-2.795]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,407.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 88","np":2,"cix":2,"bm":0,"ix":88,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.86,0.815],[1.77,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.802,411.065],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 89","np":2,"cix":2,"bm":0,"ix":89,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.327,403.845],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 90","np":2,"cix":2,"bm":0,"ix":90,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.645,-1.465],[0.955,2.185],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1564.347,399.015],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 91","np":2,"cix":2,"bm":0,"ix":91,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.945],[-0.77,-1.755],[0.83,1.885],[0.85,1.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.572,415.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 92","np":2,"cix":2,"bm":0,"ix":92,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.422,404.165],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 93","np":2,"cix":2,"bm":0,"ix":93,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.78],[1.58,0.66],[1.88,0.78]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.322,411.17],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 94","np":2,"cix":2,"bm":0,"ix":94,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.4],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.372,398.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 95","np":2,"cix":2,"bm":0,"ix":95,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.105],[0.73,-1.765],[-0.79,1.905],[-0.87,2.105]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1564.421,415.655],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 96","np":2,"cix":2,"bm":0,"ix":96,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.86],[-1.435,1.49],[1.325,-1.38],[1.785,-1.86]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1561.787,413.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 97","np":2,"cix":2,"bm":0,"ix":97,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.615],[1.015,-1.055],[1.555,-1.615]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1574.396,400.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 98","np":2,"cix":2,"bm":0,"ix":98,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.655],[-1.1,-1.055],[1.72,1.655]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1561.401,400.865],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 99","np":2,"cix":2,"bm":0,"ix":99,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.49,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1574.462,413.435],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 100","np":2,"cix":2,"bm":0,"ix":100,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1556.212,407.57],[1557.042,407.57],[1561.021,407.57],[1561.712,407.57]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 101","np":2,"cix":2,"bm":0,"ix":101,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1574.942,407.57],[1578.771,407.57],[1579.211,407.57]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 102","np":2,"cix":2,"bm":0,"ix":102,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1567.902,395.87],[1567.902,396.71],[1567.902,400.55]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 103","np":2,"cix":2,"bm":0,"ix":103,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1567.902,414.11],[1567.902,414.46],[1567.902,418.44],[1567.902,418.55]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 104","np":2,"cix":2,"bm":0,"ix":104,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.81,-0.89],[1.36,-0.61],[1.61,0],[1.31,0.57],[0.94,0.92],[0.56,1.32],[0,1.53],[-0.51,1.25],[-1.06,1.04],[-1.28,0.53],[-1.49,0],[-1.25,-0.5],[-0.99,-0.96],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.12],[-0.98,1.09],[-1.37,0.63],[-1.52,0],[-1.23,-0.52],[-1.02,-0.99],[-0.58,-1.32],[0,-1.44],[0.56,-1.4],[0.97,-0.95],[1.29,-0.54],[1.43,0],[1.3,0.52],[1.03,0.97],[0.6,1.34]],"v":[[10.865,-0.005],[9.995,4.255],[8.045,7.295],[4.495,9.885],[-0.005,10.865],[-4.275,9.985],[-7.555,7.805],[-9.965,4.305],[-10.865,-0.005],[-10.075,-4.065],[-7.605,-7.765],[-4.205,-10.025],[-0.005,-10.865],[4.045,-10.085],[7.505,-7.845],[9.935,-4.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,407.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 105","np":2,"cix":2,"bm":0,"ix":105,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.36,-0.83],[0.48,-0.53],[0.88,-0.4],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.96],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.42],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85]],"v":[[6.885,0],[6.325,2.72],[5.175,4.53],[2.895,6.24],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.335,2.71],[-6.885,0],[-6.395,-2.54],[-4.735,-4.99],[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,379.64],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 106","np":2,"cix":2,"bm":0,"ix":106,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.87,0.815],[1.77,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.802,383.125],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 107","np":2,"cix":2,"bm":0,"ix":107,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.327,375.915],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 108","np":2,"cix":2,"bm":0,"ix":108,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.27],[-0.645,-1.46],[0.955,2.18],[0.995,2.27]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1564.347,371.08],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 109","np":2,"cix":2,"bm":0,"ix":109,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.95],[-0.77,-1.76],[0.82,1.89],[0.85,1.95]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.572,387.64],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 110","np":2,"cix":2,"bm":0,"ix":110,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.422,376.235],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 111","np":2,"cix":2,"bm":0,"ix":111,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.775],[1.58,0.655],[1.88,0.775]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.322,383.235],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 112","np":2,"cix":2,"bm":0,"ix":112,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.39],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.372,370.95],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 113","np":2,"cix":2,"bm":0,"ix":113,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.1],[0.73,-1.76],[-0.79,1.9],[-0.87,2.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1564.421,387.72],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 114","np":2,"cix":2,"bm":0,"ix":114,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.855],[-1.435,1.485],[1.325,-1.375],[1.785,-1.855]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1561.787,385.955],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 115","np":2,"cix":2,"bm":0,"ix":115,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.615],[1.015,-1.055],[1.555,-1.615]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1574.396,372.855],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 116","np":2,"cix":2,"bm":0,"ix":116,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.66],[-1.09,-1.05],[1.72,1.66]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1561.401,372.93],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 117","np":2,"cix":2,"bm":0,"ix":117,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.48,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1574.462,385.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 118","np":2,"cix":2,"bm":0,"ix":118,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1556.212,379.64],[1557.042,379.64],[1561.021,379.64],[1561.712,379.64]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 119","np":2,"cix":2,"bm":0,"ix":119,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1574.942,379.64],[1578.771,379.64],[1579.211,379.64]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 120","np":2,"cix":2,"bm":0,"ix":120,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1567.902,367.94],[1567.902,368.77],[1567.902,372.62]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 121","np":2,"cix":2,"bm":0,"ix":121,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1567.902,386.18],[1567.902,386.53],[1567.902,390.5],[1567.902,390.61]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 122","np":2,"cix":2,"bm":0,"ix":122,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.82,-0.89],[1.36,-0.61],[1.6,0],[1.31,0.57],[0.94,0.92],[0.57,1.33],[0,1.53],[-0.51,1.25],[-1.07,1.03],[-1.27,0.53],[-1.49,0],[-1.25,-0.51],[-0.99,-0.96],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.13],[-0.98,1.09],[-1.37,0.62],[-1.52,0],[-1.23,-0.52],[-1.03,-0.99],[-0.57,-1.32],[0,-1.43],[0.56,-1.41],[0.97,-0.96],[1.29,-0.55],[1.43,0],[1.3,0.52],[1.03,0.97],[0.6,1.34]],"v":[[10.865,0.005],[9.995,4.255],[8.035,7.305],[4.485,9.895],[-0.005,10.865],[-4.275,9.985],[-7.555,7.805],[-9.975,4.305],[-10.865,0.005],[-10.075,-4.055],[-7.595,-7.755],[-4.205,-10.015],[-0.005,-10.865],[4.045,-10.075],[7.505,-7.835],[9.935,-4.385]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,379.635],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 123","np":2,"cix":2,"bm":0,"ix":123,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.36,-0.83],[0.48,-0.54],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.78],[-0.73,0.67],[-0.79,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.67],[-0.61,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.36,-0.83],[0,-0.89],[0.36,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.66,0.61],[0.38,0.85]],"v":[[6.885,-0.005],[6.325,2.715],[5.165,4.535],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.935],[-6.325,2.715],[-6.885,-0.005],[-6.395,-2.535],[-4.725,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.745,-4.975],[6.295,-2.795]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,351.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 124","np":2,"cix":2,"bm":0,"ix":124,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.86,0.815],[1.78,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.802,355.195],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 125","np":2,"cix":2,"bm":0,"ix":125,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.327,347.975],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 126","np":2,"cix":2,"bm":0,"ix":126,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.635,-1.455],[0.955,2.185],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1564.347,343.145],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 127","np":2,"cix":2,"bm":0,"ix":127,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.945],[-0.77,-1.755],[0.83,1.895],[0.85,1.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.572,359.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 128","np":2,"cix":2,"bm":0,"ix":128,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.03],[-1.59,-0.66],[2.09,0.87],[2.48,1.03]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.422,348.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 129","np":2,"cix":2,"bm":0,"ix":129,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.78],[1.58,0.66],[1.88,0.78]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.322,355.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 130","np":2,"cix":2,"bm":0,"ix":130,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.39],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.372,343.02],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 131","np":2,"cix":2,"bm":0,"ix":131,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.105],[0.73,-1.765],[-0.79,1.915],[-0.87,2.105]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1564.421,359.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 132","np":2,"cix":2,"bm":0,"ix":132,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.86],[-1.435,1.49],[1.325,-1.38],[1.785,-1.86]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1561.787,358.02],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 133","np":2,"cix":2,"bm":0,"ix":133,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.61],[1.025,-1.06],[1.555,-1.61]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1574.396,344.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 134","np":2,"cix":2,"bm":0,"ix":134,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.655],[-1.1,-1.055],[1.72,1.655]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1561.401,344.995],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 135","np":2,"cix":2,"bm":0,"ix":135,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.49],[-1.39,-1.33],[1.49,1.43],[1.55,1.49]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1574.462,357.57],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 136","np":2,"cix":2,"bm":0,"ix":136,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1556.212,351.7],[1557.042,351.7],[1561.021,351.7],[1561.712,351.7]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 137","np":2,"cix":2,"bm":0,"ix":137,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1574.942,351.7],[1578.771,351.7],[1579.211,351.7]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 138","np":2,"cix":2,"bm":0,"ix":138,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1567.902,340],[1567.902,340.84],[1567.902,344.69]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 139","np":2,"cix":2,"bm":0,"ix":139,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1567.902,358.24],[1567.902,358.59],[1567.902,362.57],[1567.902,362.68]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 140","np":2,"cix":2,"bm":0,"ix":140,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.81,-0.89],[1.36,-0.62],[1.61,0],[1.31,0.56],[0.94,0.92],[0.56,1.33],[0,1.53],[-0.51,1.25],[-1.06,1.04],[-1.28,0.52],[-1.48,0],[-1.25,-0.51],[-0.99,-0.95],[-0.57,-1.3]],"o":[[0,1.51],[-0.48,1.12],[-0.98,1.09],[-1.37,0.62],[-1.52,0],[-1.23,-0.52],[-1.02,-0.98],[-0.58,-1.32],[0,-1.43],[0.56,-1.4],[0.97,-0.95],[1.29,-0.55],[1.43,0],[1.3,0.51],[1.02,0.98],[0.6,1.34]],"v":[[10.865,-0.005],[9.995,4.255],[8.045,7.295],[4.495,9.895],[-0.005,10.865],[-4.275,9.995],[-7.555,7.805],[-9.965,4.305],[-10.865,-0.005],[-10.075,-4.065],[-7.605,-7.765],[-4.195,-10.015],[-0.005,-10.865],[4.045,-10.075],[7.515,-7.845],[9.935,-4.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,351.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 141","np":2,"cix":2,"bm":0,"ix":141,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.36,-0.83],[0.48,-0.53],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.36,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85]],"v":[[6.885,0],[6.325,2.72],[5.175,4.53],[2.895,6.25],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.325,2.72],[-6.885,0],[-6.395,-2.54],[-4.735,-4.99],[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,323.77],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 142","np":2,"cix":2,"bm":0,"ix":142,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.08],[-1.87,0.81],[1.78,-0.77],[2.48,-1.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.802,327.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 143","np":2,"cix":2,"bm":0,"ix":143,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.327,320.045],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 144","np":2,"cix":2,"bm":0,"ix":144,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.645,-1.465],[0.955,2.175],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1564.347,315.215],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 145","np":2,"cix":2,"bm":0,"ix":145,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.945],[-0.77,-1.755],[0.83,1.885],[0.85,1.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.572,331.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 146","np":2,"cix":2,"bm":0,"ix":146,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.422,320.365],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 147","np":2,"cix":2,"bm":0,"ix":147,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.78],[1.58,0.66],[1.88,0.78]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.322,327.37],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 148","np":2,"cix":2,"bm":0,"ix":148,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.075],[0.58,-1.395],[-0.86,2.075]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1571.372,315.085],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 149","np":2,"cix":2,"bm":0,"ix":149,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.1],[0.73,-1.76],[-0.79,1.91],[-0.87,2.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1564.421,331.85],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 150","np":2,"cix":2,"bm":0,"ix":150,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.86],[-1.435,1.49],[1.325,-1.38],[1.785,-1.86]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1561.787,330.09],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 151","np":2,"cix":2,"bm":0,"ix":151,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.615],[1.015,-1.055],[1.555,-1.615]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1574.396,316.985],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 152","np":2,"cix":2,"bm":0,"ix":152,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.66],[-1.09,-1.05],[1.72,1.66]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1561.401,317.06],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 153","np":2,"cix":2,"bm":0,"ix":153,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.49,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1574.462,329.635],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 154","np":2,"cix":2,"bm":0,"ix":154,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1556.212,323.77],[1557.042,323.77],[1561.021,323.77],[1561.712,323.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 155","np":2,"cix":2,"bm":0,"ix":155,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1574.942,323.77],[1578.771,323.77],[1579.211,323.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 156","np":2,"cix":2,"bm":0,"ix":156,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1567.902,312.07],[1567.902,312.91],[1567.902,316.75]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 157","np":2,"cix":2,"bm":0,"ix":157,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1567.902,330.31],[1567.902,330.66],[1567.902,334.64],[1567.902,334.74]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 158","np":2,"cix":2,"bm":0,"ix":158,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.81,-0.89],[1.36,-0.61],[1.61,0],[1.31,0.57],[0.94,0.92],[0.57,1.33],[0,1.53],[-0.51,1.25],[-1.07,1.03],[-1.27,0.53],[-1.49,0],[-1.25,-0.5],[-0.99,-0.96],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.12],[-0.98,1.09],[-1.37,0.63],[-1.52,0],[-1.23,-0.52],[-1.03,-0.99],[-0.57,-1.32],[0,-1.44],[0.56,-1.41],[0.97,-0.96],[1.29,-0.54],[1.43,0],[1.3,0.52],[1.03,0.97],[0.6,1.34]],"v":[[10.865,-0.005],[9.995,4.255],[8.045,7.295],[4.495,9.885],[-0.005,10.865],[-4.275,9.985],[-7.555,7.805],[-9.975,4.295],[-10.865,-0.005],[-10.075,-4.065],[-7.595,-7.765],[-4.205,-10.025],[-0.005,-10.865],[4.045,-10.085],[7.505,-7.845],[9.935,-4.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,323.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 159","np":2,"cix":2,"bm":0,"ix":159,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1],[0.36,-0.83],[0.48,-0.53],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.96],[-0.32,0.78],[-0.73,0.68],[-0.79,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.33],[-0.65,-0.64],[-0.35,-0.83],[0,-0.9],[0.36,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.66,0.61],[0.38,0.85]],"v":[[6.885,0.005],[6.325,2.725],[5.175,4.535],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.945],[-6.335,2.715],[-6.885,0.005],[-6.395,-2.535],[-4.725,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.745,-4.975],[6.295,-2.795]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,435.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 160","np":2,"cix":2,"bm":0,"ix":160,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.87,0.815],[1.77,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1524.302,438.995],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 161","np":2,"cix":2,"bm":0,"ix":161,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.655],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.827,431.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 162","np":2,"cix":2,"bm":0,"ix":162,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.635,-1.455],[0.955,2.185],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1528.847,426.945],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 163","np":2,"cix":2,"bm":0,"ix":163,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.95],[-0.77,-1.76],[0.82,1.89],[0.85,1.95]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1536.072,443.51],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 164","np":2,"cix":2,"bm":0,"ix":164,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.922,432.105],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 165","np":2,"cix":2,"bm":0,"ix":165,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.775],[1.58,0.655],[1.88,0.775]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.822,439.105],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 166","np":2,"cix":2,"bm":0,"ix":166,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.39],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1535.872,426.82],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 167","np":2,"cix":2,"bm":0,"ix":167,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.1],[0.73,-1.77],[-0.79,1.91],[-0.87,2.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1528.921,443.59],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 168","np":2,"cix":2,"bm":0,"ix":168,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.855],[-1.435,1.485],[1.325,-1.375],[1.785,-1.855]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1526.287,441.825],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 169","np":2,"cix":2,"bm":0,"ix":169,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.61],[1.025,-1.06],[1.555,-1.61]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.896,428.72],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 170","np":2,"cix":2,"bm":0,"ix":170,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.655],[-1.1,-1.055],[1.72,1.655]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.901,428.795],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 171","np":2,"cix":2,"bm":0,"ix":171,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.48,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.962,441.375],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 172","np":2,"cix":2,"bm":0,"ix":172,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1520.712,435.51],[1521.542,435.51],[1525.521,435.51],[1526.212,435.51]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 173","np":2,"cix":2,"bm":0,"ix":173,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1539.442,435.51],[1543.271,435.51],[1543.711,435.51]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 174","np":2,"cix":2,"bm":0,"ix":174,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1532.402,423.8],[1532.402,424.64],[1532.402,428.49]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 175","np":2,"cix":2,"bm":0,"ix":175,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1532.402,442.04],[1532.402,442.39],[1532.402,446.37],[1532.402,446.48]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 176","np":2,"cix":2,"bm":0,"ix":176,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.82,-0.89],[1.36,-0.61],[1.6,0],[1.31,0.56],[0.94,0.92],[0.57,1.33],[0,1.53],[-0.51,1.25],[-1.06,1.05],[-1.28,0.52],[-1.48,0],[-1.25,-0.51],[-0.99,-0.95],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.13],[-0.98,1.09],[-1.37,0.63],[-1.52,0],[-1.23,-0.52],[-1.03,-0.99],[-0.57,-1.32],[0,-1.43],[0.56,-1.4],[0.97,-0.95],[1.29,-0.55],[1.43,0],[1.3,0.51],[1.02,0.99],[0.6,1.34]],"v":[[10.865,0.005],[9.995,4.255],[8.035,7.305],[4.485,9.895],[-0.005,10.865],[-4.275,9.995],[-7.555,7.805],[-9.975,4.305],[-10.865,0.005],[-10.075,-4.055],[-7.605,-7.765],[-4.195,-10.015],[-0.005,-10.865],[4.045,-10.075],[7.515,-7.845],[9.935,-4.385]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,435.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 177","np":2,"cix":2,"bm":0,"ix":177,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.35,-0.83],[0.48,-0.54],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.82]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.62],[0.38,0.85]],"v":[[6.885,-0.005],[6.335,2.715],[5.175,4.525],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.935],[-6.335,2.715],[-6.885,-0.005],[-6.395,-2.545],[-4.735,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.755,-4.975],[6.295,-2.795]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,407.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 178","np":2,"cix":2,"bm":0,"ix":178,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.86,0.815],[1.77,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1524.302,411.065],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 179","np":2,"cix":2,"bm":0,"ix":179,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.827,403.845],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 180","np":2,"cix":2,"bm":0,"ix":180,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.645,-1.465],[0.955,2.185],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1528.847,399.015],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 181","np":2,"cix":2,"bm":0,"ix":181,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.945],[-0.77,-1.755],[0.83,1.885],[0.85,1.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1536.072,415.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 182","np":2,"cix":2,"bm":0,"ix":182,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.922,404.165],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 183","np":2,"cix":2,"bm":0,"ix":183,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.78],[1.58,0.66],[1.88,0.78]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.822,411.17],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 184","np":2,"cix":2,"bm":0,"ix":184,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.4],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1535.872,398.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 185","np":2,"cix":2,"bm":0,"ix":185,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.105],[0.73,-1.765],[-0.79,1.905],[-0.87,2.105]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1528.921,415.655],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 186","np":2,"cix":2,"bm":0,"ix":186,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.86],[-1.435,1.49],[1.325,-1.38],[1.785,-1.86]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1526.287,413.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 187","np":2,"cix":2,"bm":0,"ix":187,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.615],[1.015,-1.055],[1.555,-1.615]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.896,400.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 188","np":2,"cix":2,"bm":0,"ix":188,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.655],[-1.1,-1.055],[1.72,1.655]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.901,400.865],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 189","np":2,"cix":2,"bm":0,"ix":189,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.49,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.962,413.435],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 190","np":2,"cix":2,"bm":0,"ix":190,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1520.712,407.57],[1521.542,407.57],[1525.521,407.57],[1526.212,407.57]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 191","np":2,"cix":2,"bm":0,"ix":191,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1539.442,407.57],[1543.271,407.57],[1543.711,407.57]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 192","np":2,"cix":2,"bm":0,"ix":192,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1532.402,395.87],[1532.402,396.71],[1532.402,400.55]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 193","np":2,"cix":2,"bm":0,"ix":193,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1532.402,414.11],[1532.402,414.46],[1532.402,418.44],[1532.402,418.55]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 194","np":2,"cix":2,"bm":0,"ix":194,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.81,-0.89],[1.36,-0.61],[1.61,0],[1.31,0.57],[0.94,0.92],[0.56,1.32],[0,1.53],[-0.51,1.25],[-1.06,1.04],[-1.28,0.53],[-1.49,0],[-1.25,-0.5],[-0.99,-0.96],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.12],[-0.98,1.09],[-1.37,0.63],[-1.52,0],[-1.23,-0.52],[-1.02,-0.99],[-0.58,-1.32],[0,-1.44],[0.56,-1.4],[0.97,-0.95],[1.29,-0.54],[1.43,0],[1.3,0.52],[1.03,0.97],[0.6,1.34]],"v":[[10.865,-0.005],[9.995,4.255],[8.045,7.295],[4.495,9.885],[-0.005,10.865],[-4.275,9.985],[-7.555,7.805],[-9.965,4.305],[-10.865,-0.005],[-10.075,-4.065],[-7.605,-7.765],[-4.205,-10.025],[-0.005,-10.865],[4.045,-10.085],[7.505,-7.845],[9.935,-4.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,407.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 195","np":2,"cix":2,"bm":0,"ix":195,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.36,-0.83],[0.48,-0.53],[0.88,-0.4],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.96],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.42],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85]],"v":[[6.885,0],[6.325,2.72],[5.175,4.53],[2.895,6.24],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.335,2.71],[-6.885,0],[-6.395,-2.54],[-4.735,-4.99],[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,379.64],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 196","np":2,"cix":2,"bm":0,"ix":196,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.87,0.815],[1.77,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1524.302,383.125],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 197","np":2,"cix":2,"bm":0,"ix":197,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.827,375.915],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 198","np":2,"cix":2,"bm":0,"ix":198,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.27],[-0.645,-1.46],[0.955,2.18],[0.995,2.27]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1528.847,371.08],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 199","np":2,"cix":2,"bm":0,"ix":199,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.95],[-0.77,-1.76],[0.82,1.89],[0.85,1.95]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1536.072,387.64],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 200","np":2,"cix":2,"bm":0,"ix":200,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.922,376.235],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 201","np":2,"cix":2,"bm":0,"ix":201,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.775],[1.58,0.655],[1.88,0.775]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.822,383.235],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 202","np":2,"cix":2,"bm":0,"ix":202,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.39],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1535.872,370.95],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 203","np":2,"cix":2,"bm":0,"ix":203,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.1],[0.73,-1.76],[-0.79,1.9],[-0.87,2.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1528.921,387.72],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 204","np":2,"cix":2,"bm":0,"ix":204,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.855],[-1.435,1.485],[1.325,-1.375],[1.785,-1.855]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1526.287,385.955],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 205","np":2,"cix":2,"bm":0,"ix":205,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.615],[1.015,-1.055],[1.555,-1.615]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.896,372.855],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 206","np":2,"cix":2,"bm":0,"ix":206,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.66],[-1.09,-1.05],[1.72,1.66]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.901,372.93],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 207","np":2,"cix":2,"bm":0,"ix":207,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.48,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.962,385.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 208","np":2,"cix":2,"bm":0,"ix":208,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1520.712,379.64],[1521.542,379.64],[1525.521,379.64],[1526.212,379.64]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 209","np":2,"cix":2,"bm":0,"ix":209,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1539.442,379.64],[1543.271,379.64],[1543.711,379.64]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 210","np":2,"cix":2,"bm":0,"ix":210,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1532.402,367.94],[1532.402,368.77],[1532.402,372.62]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 211","np":2,"cix":2,"bm":0,"ix":211,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1532.402,386.18],[1532.402,386.53],[1532.402,390.5],[1532.402,390.61]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 212","np":2,"cix":2,"bm":0,"ix":212,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.82,-0.89],[1.36,-0.61],[1.6,0],[1.31,0.57],[0.94,0.92],[0.57,1.33],[0,1.53],[-0.51,1.25],[-1.07,1.03],[-1.27,0.53],[-1.49,0],[-1.25,-0.51],[-0.99,-0.96],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.13],[-0.98,1.09],[-1.37,0.62],[-1.52,0],[-1.23,-0.52],[-1.03,-0.99],[-0.57,-1.32],[0,-1.43],[0.56,-1.41],[0.97,-0.96],[1.29,-0.55],[1.43,0],[1.3,0.52],[1.03,0.97],[0.6,1.34]],"v":[[10.865,0.005],[9.995,4.255],[8.035,7.305],[4.485,9.895],[-0.005,10.865],[-4.275,9.985],[-7.555,7.805],[-9.975,4.305],[-10.865,0.005],[-10.075,-4.055],[-7.595,-7.755],[-4.205,-10.015],[-0.005,-10.865],[4.045,-10.075],[7.505,-7.835],[9.935,-4.385]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,379.635],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 213","np":2,"cix":2,"bm":0,"ix":213,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.36,-0.83],[0.48,-0.54],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.78],[-0.73,0.67],[-0.79,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.67],[-0.61,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.36,-0.83],[0,-0.89],[0.36,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.66,0.61],[0.38,0.85]],"v":[[6.885,-0.005],[6.325,2.715],[5.165,4.535],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.935],[-6.325,2.715],[-6.885,-0.005],[-6.395,-2.535],[-4.725,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.745,-4.975],[6.295,-2.795]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,351.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 214","np":2,"cix":2,"bm":0,"ix":214,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.86,0.815],[1.78,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1524.302,355.195],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 215","np":2,"cix":2,"bm":0,"ix":215,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.827,347.975],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 216","np":2,"cix":2,"bm":0,"ix":216,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.635,-1.455],[0.955,2.185],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1528.847,343.145],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 217","np":2,"cix":2,"bm":0,"ix":217,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.945],[-0.77,-1.755],[0.83,1.895],[0.85,1.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1536.072,359.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 218","np":2,"cix":2,"bm":0,"ix":218,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.03],[-1.59,-0.66],[2.09,0.87],[2.48,1.03]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.922,348.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 219","np":2,"cix":2,"bm":0,"ix":219,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.78],[1.58,0.66],[1.88,0.78]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.822,355.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 220","np":2,"cix":2,"bm":0,"ix":220,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.39],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1535.872,343.02],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 221","np":2,"cix":2,"bm":0,"ix":221,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.105],[0.73,-1.765],[-0.79,1.915],[-0.87,2.105]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1528.921,359.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 222","np":2,"cix":2,"bm":0,"ix":222,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.86],[-1.435,1.49],[1.325,-1.38],[1.785,-1.86]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1526.287,358.02],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 223","np":2,"cix":2,"bm":0,"ix":223,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.61],[1.025,-1.06],[1.555,-1.61]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.896,344.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 224","np":2,"cix":2,"bm":0,"ix":224,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.655],[-1.1,-1.055],[1.72,1.655]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.901,344.995],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 225","np":2,"cix":2,"bm":0,"ix":225,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.49],[-1.39,-1.33],[1.49,1.43],[1.55,1.49]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.962,357.57],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 226","np":2,"cix":2,"bm":0,"ix":226,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1520.712,351.7],[1521.542,351.7],[1525.521,351.7],[1526.212,351.7]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 227","np":2,"cix":2,"bm":0,"ix":227,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1539.442,351.7],[1543.271,351.7],[1543.711,351.7]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 228","np":2,"cix":2,"bm":0,"ix":228,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1532.402,340],[1532.402,340.84],[1532.402,344.69]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 229","np":2,"cix":2,"bm":0,"ix":229,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1532.402,358.24],[1532.402,358.59],[1532.402,362.57],[1532.402,362.68]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 230","np":2,"cix":2,"bm":0,"ix":230,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.81,-0.89],[1.36,-0.62],[1.61,0],[1.31,0.56],[0.94,0.92],[0.56,1.33],[0,1.53],[-0.51,1.25],[-1.06,1.04],[-1.28,0.52],[-1.48,0],[-1.25,-0.51],[-0.99,-0.95],[-0.57,-1.3]],"o":[[0,1.51],[-0.48,1.12],[-0.98,1.09],[-1.37,0.62],[-1.52,0],[-1.23,-0.52],[-1.02,-0.98],[-0.58,-1.32],[0,-1.43],[0.56,-1.4],[0.97,-0.95],[1.29,-0.55],[1.43,0],[1.3,0.51],[1.02,0.98],[0.6,1.34]],"v":[[10.865,-0.005],[9.995,4.255],[8.045,7.295],[4.495,9.895],[-0.005,10.865],[-4.275,9.995],[-7.555,7.805],[-9.965,4.305],[-10.865,-0.005],[-10.075,-4.065],[-7.605,-7.765],[-4.195,-10.015],[-0.005,-10.865],[4.045,-10.075],[7.515,-7.845],[9.935,-4.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,351.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 231","np":2,"cix":2,"bm":0,"ix":231,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.36,-0.83],[0.48,-0.53],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.36,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85]],"v":[[6.885,0],[6.325,2.72],[5.175,4.53],[2.895,6.25],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.325,2.72],[-6.885,0],[-6.395,-2.54],[-4.735,-4.99],[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,323.77],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 232","np":2,"cix":2,"bm":0,"ix":232,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.08],[-1.87,0.81],[1.78,-0.77],[2.48,-1.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1524.302,327.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 233","np":2,"cix":2,"bm":0,"ix":233,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.827,320.045],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 234","np":2,"cix":2,"bm":0,"ix":234,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.645,-1.465],[0.955,2.175],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1528.847,315.215],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 235","np":2,"cix":2,"bm":0,"ix":235,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.945],[-0.77,-1.755],[0.83,1.885],[0.85,1.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1536.072,331.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 236","np":2,"cix":2,"bm":0,"ix":236,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.922,320.365],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 237","np":2,"cix":2,"bm":0,"ix":237,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.78],[1.58,0.66],[1.88,0.78]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.822,327.37],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 238","np":2,"cix":2,"bm":0,"ix":238,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.075],[0.58,-1.395],[-0.86,2.075]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1535.872,315.085],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 239","np":2,"cix":2,"bm":0,"ix":239,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.1],[0.73,-1.76],[-0.79,1.91],[-0.87,2.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1528.921,331.85],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 240","np":2,"cix":2,"bm":0,"ix":240,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.86],[-1.435,1.49],[1.325,-1.38],[1.785,-1.86]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1526.287,330.09],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 241","np":2,"cix":2,"bm":0,"ix":241,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.615],[1.015,-1.055],[1.555,-1.615]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.896,316.985],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 242","np":2,"cix":2,"bm":0,"ix":242,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.66],[-1.09,-1.05],[1.72,1.66]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.901,317.06],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 243","np":2,"cix":2,"bm":0,"ix":243,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.49,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1538.962,329.635],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 244","np":2,"cix":2,"bm":0,"ix":244,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1520.712,323.77],[1521.542,323.77],[1525.521,323.77],[1526.212,323.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 245","np":2,"cix":2,"bm":0,"ix":245,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1539.442,323.77],[1543.271,323.77],[1543.711,323.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 246","np":2,"cix":2,"bm":0,"ix":246,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1532.402,312.07],[1532.402,312.91],[1532.402,316.75]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 247","np":2,"cix":2,"bm":0,"ix":247,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1532.402,330.31],[1532.402,330.66],[1532.402,334.64],[1532.402,334.74]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 248","np":2,"cix":2,"bm":0,"ix":248,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.81,-0.89],[1.36,-0.61],[1.61,0],[1.31,0.57],[0.94,0.92],[0.57,1.33],[0,1.53],[-0.51,1.25],[-1.07,1.03],[-1.27,0.53],[-1.49,0],[-1.25,-0.5],[-0.99,-0.96],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.12],[-0.98,1.09],[-1.37,0.63],[-1.52,0],[-1.23,-0.52],[-1.03,-0.99],[-0.57,-1.32],[0,-1.44],[0.56,-1.41],[0.97,-0.96],[1.29,-0.54],[1.43,0],[1.3,0.52],[1.03,0.97],[0.6,1.34]],"v":[[10.865,-0.005],[9.995,4.255],[8.045,7.295],[4.495,9.885],[-0.005,10.865],[-4.275,9.985],[-7.555,7.805],[-9.975,4.295],[-10.865,-0.005],[-10.075,-4.065],[-7.595,-7.765],[-4.205,-10.025],[-0.005,-10.865],[4.045,-10.085],[7.505,-7.845],[9.935,-4.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,323.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 249","np":2,"cix":2,"bm":0,"ix":249,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1],[0.36,-0.83],[0.48,-0.53],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.96],[-0.32,0.78],[-0.73,0.68],[-0.79,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.33],[-0.65,-0.64],[-0.35,-0.83],[0,-0.9],[0.36,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.66,0.61],[0.38,0.85]],"v":[[6.885,0.005],[6.325,2.725],[5.175,4.535],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.945],[-6.335,2.715],[-6.885,0.005],[-6.395,-2.535],[-4.725,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.745,-4.975],[6.295,-2.795]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,435.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 250","np":2,"cix":2,"bm":0,"ix":250,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.87,0.815],[1.77,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.802,438.995],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 251","np":2,"cix":2,"bm":0,"ix":251,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.655],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.327,431.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 252","np":2,"cix":2,"bm":0,"ix":252,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.635,-1.455],[0.955,2.185],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.347,426.945],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 253","np":2,"cix":2,"bm":0,"ix":253,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.95],[-0.77,-1.76],[0.82,1.89],[0.85,1.95]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1500.572,443.51],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 254","np":2,"cix":2,"bm":0,"ix":254,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.422,432.105],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 255","np":2,"cix":2,"bm":0,"ix":255,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.775],[1.58,0.655],[1.88,0.775]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.322,439.105],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 256","np":2,"cix":2,"bm":0,"ix":256,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.39],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1500.372,426.82],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 257","np":2,"cix":2,"bm":0,"ix":257,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.1],[0.73,-1.77],[-0.79,1.91],[-0.87,2.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.421,443.59],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 258","np":2,"cix":2,"bm":0,"ix":258,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.855],[-1.435,1.485],[1.325,-1.375],[1.785,-1.855]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.787,441.825],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 259","np":2,"cix":2,"bm":0,"ix":259,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.61],[1.025,-1.06],[1.555,-1.61]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.396,428.72],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 260","np":2,"cix":2,"bm":0,"ix":260,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.655],[-1.1,-1.055],[1.72,1.655]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.401,428.795],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 261","np":2,"cix":2,"bm":0,"ix":261,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.48,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.462,441.375],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 262","np":2,"cix":2,"bm":0,"ix":262,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1485.212,435.51],[1486.042,435.51],[1490.021,435.51],[1490.712,435.51]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 263","np":2,"cix":2,"bm":0,"ix":263,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1503.942,435.51],[1507.771,435.51],[1508.211,435.51]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 264","np":2,"cix":2,"bm":0,"ix":264,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1496.902,423.8],[1496.902,424.64],[1496.902,428.49]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 265","np":2,"cix":2,"bm":0,"ix":265,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1496.902,442.04],[1496.902,442.39],[1496.902,446.37],[1496.902,446.48]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 266","np":2,"cix":2,"bm":0,"ix":266,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.82,-0.89],[1.36,-0.61],[1.6,0],[1.31,0.56],[0.94,0.92],[0.57,1.33],[0,1.53],[-0.51,1.25],[-1.06,1.05],[-1.28,0.52],[-1.48,0],[-1.25,-0.51],[-0.99,-0.95],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.13],[-0.98,1.09],[-1.37,0.63],[-1.52,0],[-1.23,-0.52],[-1.03,-0.99],[-0.57,-1.32],[0,-1.43],[0.56,-1.4],[0.97,-0.95],[1.29,-0.55],[1.43,0],[1.3,0.51],[1.02,0.99],[0.6,1.34]],"v":[[10.865,0.005],[9.995,4.255],[8.035,7.305],[4.485,9.895],[-0.005,10.865],[-4.275,9.995],[-7.555,7.805],[-9.975,4.305],[-10.865,0.005],[-10.075,-4.055],[-7.605,-7.765],[-4.195,-10.015],[-0.005,-10.865],[4.045,-10.075],[7.515,-7.845],[9.935,-4.385]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,435.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 267","np":2,"cix":2,"bm":0,"ix":267,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.35,-0.83],[0.48,-0.54],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.82]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.62],[0.38,0.85]],"v":[[6.885,-0.005],[6.335,2.715],[5.175,4.525],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.935],[-6.335,2.715],[-6.885,-0.005],[-6.395,-2.545],[-4.735,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.755,-4.975],[6.295,-2.795]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,407.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 268","np":2,"cix":2,"bm":0,"ix":268,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.86,0.815],[1.77,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.802,411.065],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 269","np":2,"cix":2,"bm":0,"ix":269,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.327,403.845],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 270","np":2,"cix":2,"bm":0,"ix":270,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.645,-1.465],[0.955,2.185],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.347,399.015],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 271","np":2,"cix":2,"bm":0,"ix":271,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.945],[-0.77,-1.755],[0.83,1.885],[0.85,1.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1500.572,415.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 272","np":2,"cix":2,"bm":0,"ix":272,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.422,404.165],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 273","np":2,"cix":2,"bm":0,"ix":273,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.78],[1.58,0.66],[1.88,0.78]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.322,411.17],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 274","np":2,"cix":2,"bm":0,"ix":274,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.4],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1500.372,398.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 275","np":2,"cix":2,"bm":0,"ix":275,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.105],[0.73,-1.765],[-0.79,1.905],[-0.87,2.105]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.421,415.655],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 276","np":2,"cix":2,"bm":0,"ix":276,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.86],[-1.435,1.49],[1.325,-1.38],[1.785,-1.86]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.787,413.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 277","np":2,"cix":2,"bm":0,"ix":277,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.615],[1.015,-1.055],[1.555,-1.615]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.396,400.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 278","np":2,"cix":2,"bm":0,"ix":278,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.655],[-1.1,-1.055],[1.72,1.655]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.401,400.865],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 279","np":2,"cix":2,"bm":0,"ix":279,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.49,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.462,413.435],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 280","np":2,"cix":2,"bm":0,"ix":280,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1485.212,407.57],[1486.042,407.57],[1490.021,407.57],[1490.712,407.57]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 281","np":2,"cix":2,"bm":0,"ix":281,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1503.942,407.57],[1507.771,407.57],[1508.211,407.57]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 282","np":2,"cix":2,"bm":0,"ix":282,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1496.902,395.87],[1496.902,396.71],[1496.902,400.55]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 283","np":2,"cix":2,"bm":0,"ix":283,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1496.902,414.11],[1496.902,414.46],[1496.902,418.44],[1496.902,418.55]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 284","np":2,"cix":2,"bm":0,"ix":284,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.81,-0.89],[1.36,-0.61],[1.61,0],[1.31,0.57],[0.94,0.92],[0.56,1.32],[0,1.53],[-0.51,1.25],[-1.06,1.04],[-1.28,0.53],[-1.49,0],[-1.25,-0.5],[-0.99,-0.96],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.12],[-0.98,1.09],[-1.37,0.63],[-1.52,0],[-1.23,-0.52],[-1.02,-0.99],[-0.58,-1.32],[0,-1.44],[0.56,-1.4],[0.97,-0.95],[1.29,-0.54],[1.43,0],[1.3,0.52],[1.03,0.97],[0.6,1.34]],"v":[[10.865,-0.005],[9.995,4.255],[8.045,7.295],[4.495,9.885],[-0.005,10.865],[-4.275,9.985],[-7.555,7.805],[-9.965,4.305],[-10.865,-0.005],[-10.075,-4.065],[-7.605,-7.765],[-4.205,-10.025],[-0.005,-10.865],[4.045,-10.085],[7.505,-7.845],[9.935,-4.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,407.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 285","np":2,"cix":2,"bm":0,"ix":285,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.36,-0.83],[0.48,-0.53],[0.88,-0.4],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.96],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.42],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85]],"v":[[6.885,0],[6.325,2.72],[5.175,4.53],[2.895,6.24],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.335,2.71],[-6.885,0],[-6.395,-2.54],[-4.735,-4.99],[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,379.64],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 286","np":2,"cix":2,"bm":0,"ix":286,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.87,0.815],[1.77,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.802,383.125],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 287","np":2,"cix":2,"bm":0,"ix":287,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.327,375.915],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 288","np":2,"cix":2,"bm":0,"ix":288,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.27],[-0.645,-1.46],[0.955,2.18],[0.995,2.27]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.347,371.08],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 289","np":2,"cix":2,"bm":0,"ix":289,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.95],[-0.77,-1.76],[0.82,1.89],[0.85,1.95]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1500.572,387.64],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 290","np":2,"cix":2,"bm":0,"ix":290,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.422,376.235],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 291","np":2,"cix":2,"bm":0,"ix":291,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.775],[1.58,0.655],[1.88,0.775]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.322,383.235],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 292","np":2,"cix":2,"bm":0,"ix":292,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.39],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1500.372,370.95],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 293","np":2,"cix":2,"bm":0,"ix":293,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.1],[0.73,-1.76],[-0.79,1.9],[-0.87,2.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.421,387.72],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 294","np":2,"cix":2,"bm":0,"ix":294,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.855],[-1.435,1.485],[1.325,-1.375],[1.785,-1.855]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.787,385.955],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 295","np":2,"cix":2,"bm":0,"ix":295,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.615],[1.015,-1.055],[1.555,-1.615]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.396,372.855],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 296","np":2,"cix":2,"bm":0,"ix":296,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.66],[-1.09,-1.05],[1.72,1.66]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.401,372.93],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 297","np":2,"cix":2,"bm":0,"ix":297,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.48,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.462,385.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 298","np":2,"cix":2,"bm":0,"ix":298,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1485.212,379.64],[1486.042,379.64],[1490.021,379.64],[1490.712,379.64]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 299","np":2,"cix":2,"bm":0,"ix":299,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1503.942,379.64],[1507.771,379.64],[1508.211,379.64]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 300","np":2,"cix":2,"bm":0,"ix":300,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1496.902,367.94],[1496.902,368.77],[1496.902,372.62]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 301","np":2,"cix":2,"bm":0,"ix":301,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1496.902,386.18],[1496.902,386.53],[1496.902,390.5],[1496.902,390.61]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 302","np":2,"cix":2,"bm":0,"ix":302,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.82,-0.89],[1.36,-0.61],[1.6,0],[1.31,0.57],[0.94,0.92],[0.57,1.33],[0,1.53],[-0.51,1.25],[-1.07,1.03],[-1.27,0.53],[-1.49,0],[-1.25,-0.51],[-0.99,-0.96],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.13],[-0.98,1.09],[-1.37,0.62],[-1.52,0],[-1.23,-0.52],[-1.03,-0.99],[-0.57,-1.32],[0,-1.43],[0.56,-1.41],[0.97,-0.96],[1.29,-0.55],[1.43,0],[1.3,0.52],[1.03,0.97],[0.6,1.34]],"v":[[10.865,0.005],[9.995,4.255],[8.035,7.305],[4.485,9.895],[-0.005,10.865],[-4.275,9.985],[-7.555,7.805],[-9.975,4.305],[-10.865,0.005],[-10.075,-4.055],[-7.595,-7.755],[-4.205,-10.015],[-0.005,-10.865],[4.045,-10.075],[7.505,-7.835],[9.935,-4.385]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,379.635],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 303","np":2,"cix":2,"bm":0,"ix":303,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.36,-0.83],[0.48,-0.54],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.78],[-0.73,0.67],[-0.79,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.67],[-0.61,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.36,-0.83],[0,-0.89],[0.36,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.66,0.61],[0.38,0.85]],"v":[[6.885,-0.005],[6.325,2.715],[5.165,4.535],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.935],[-6.325,2.715],[-6.885,-0.005],[-6.395,-2.535],[-4.725,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.745,-4.975],[6.295,-2.795]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,351.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 304","np":2,"cix":2,"bm":0,"ix":304,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.085],[-1.86,0.815],[1.78,-0.775],[2.48,-1.085]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.802,355.195],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 305","np":2,"cix":2,"bm":0,"ix":305,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.327,347.975],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 306","np":2,"cix":2,"bm":0,"ix":306,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.635,-1.455],[0.955,2.185],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.347,343.145],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 307","np":2,"cix":2,"bm":0,"ix":307,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.945],[-0.77,-1.755],[0.83,1.895],[0.85,1.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1500.572,359.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 308","np":2,"cix":2,"bm":0,"ix":308,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.03],[-1.59,-0.66],[2.09,0.87],[2.48,1.03]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.422,348.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 309","np":2,"cix":2,"bm":0,"ix":309,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.78],[1.58,0.66],[1.88,0.78]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.322,355.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 310","np":2,"cix":2,"bm":0,"ix":310,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.08],[0.58,-1.39],[-0.86,2.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1500.372,343.02],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 311","np":2,"cix":2,"bm":0,"ix":311,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.105],[0.73,-1.765],[-0.79,1.915],[-0.87,2.105]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.421,359.785],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 312","np":2,"cix":2,"bm":0,"ix":312,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.86],[-1.435,1.49],[1.325,-1.38],[1.785,-1.86]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.787,358.02],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 313","np":2,"cix":2,"bm":0,"ix":313,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.61],[1.025,-1.06],[1.555,-1.61]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.396,344.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 314","np":2,"cix":2,"bm":0,"ix":314,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.655],[-1.1,-1.055],[1.72,1.655]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.401,344.995],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 315","np":2,"cix":2,"bm":0,"ix":315,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.49],[-1.39,-1.33],[1.49,1.43],[1.55,1.49]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.462,357.57],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 316","np":2,"cix":2,"bm":0,"ix":316,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1485.212,351.7],[1486.042,351.7],[1490.021,351.7],[1490.712,351.7]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 317","np":2,"cix":2,"bm":0,"ix":317,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1503.942,351.7],[1507.771,351.7],[1508.211,351.7]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 318","np":2,"cix":2,"bm":0,"ix":318,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1496.902,340],[1496.902,340.84],[1496.902,344.69]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 319","np":2,"cix":2,"bm":0,"ix":319,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1496.902,358.24],[1496.902,358.59],[1496.902,362.57],[1496.902,362.68]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 320","np":2,"cix":2,"bm":0,"ix":320,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.81,-0.89],[1.36,-0.62],[1.61,0],[1.31,0.56],[0.94,0.92],[0.56,1.33],[0,1.53],[-0.51,1.25],[-1.06,1.04],[-1.28,0.52],[-1.48,0],[-1.25,-0.51],[-0.99,-0.95],[-0.57,-1.3]],"o":[[0,1.51],[-0.48,1.12],[-0.98,1.09],[-1.37,0.62],[-1.52,0],[-1.23,-0.52],[-1.02,-0.98],[-0.58,-1.32],[0,-1.43],[0.56,-1.4],[0.97,-0.95],[1.29,-0.55],[1.43,0],[1.3,0.51],[1.02,0.98],[0.6,1.34]],"v":[[10.865,-0.005],[9.995,4.255],[8.045,7.295],[4.495,9.895],[-0.005,10.865],[-4.275,9.995],[-7.555,7.805],[-9.965,4.305],[-10.865,-0.005],[-10.075,-4.065],[-7.605,-7.765],[-4.195,-10.015],[-0.005,-10.865],[4.045,-10.075],[7.515,-7.845],[9.935,-4.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,351.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 321","np":2,"cix":2,"bm":0,"ix":321,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-0.99],[0.36,-0.83],[0.48,-0.53],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83]],"o":[[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.36,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85]],"v":[[6.885,0],[6.325,2.72],[5.175,4.53],[2.895,6.25],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.325,2.72],[-6.885,0],[-6.395,-2.54],[-4.735,-4.99],[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,323.77],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 322","np":2,"cix":2,"bm":0,"ix":322,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,1.08],[-1.87,0.81],[1.78,-0.77],[2.48,-1.08]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.802,327.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 323","np":2,"cix":2,"bm":0,"ix":323,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-2.075,0.905],[1.515,-0.665],[2.075,-0.905]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.327,320.045],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 324","np":2,"cix":2,"bm":0,"ix":324,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.995,-2.275],[-0.645,-1.465],[0.955,2.175],[0.995,2.275]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.347,315.215],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 325","np":2,"cix":2,"bm":0,"ix":325,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-0.85,-1.945],[-0.77,-1.755],[0.83,1.885],[0.85,1.945]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1500.572,331.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 326","np":2,"cix":2,"bm":0,"ix":326,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-2.48,-1.025],[-1.59,-0.655],[2.09,0.865],[2.48,1.025]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.422,320.365],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 327","np":2,"cix":2,"bm":0,"ix":327,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.88,-0.78],[1.58,0.66],[1.88,0.78]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.322,327.37],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 328","np":2,"cix":2,"bm":0,"ix":328,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[0.86,-2.075],[0.58,-1.395],[-0.86,2.075]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1500.372,315.085],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 329","np":2,"cix":2,"bm":0,"ix":329,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[0.87,-2.1],[0.73,-1.76],[-0.79,1.91],[-0.87,2.1]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1493.421,331.85],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 330","np":2,"cix":2,"bm":0,"ix":330,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.785,1.86],[-1.435,1.49],[1.325,-1.38],[1.785,-1.86]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.787,330.09],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 331","np":2,"cix":2,"bm":0,"ix":331,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.555,1.615],[1.015,-1.055],[1.555,-1.615]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.396,316.985],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 332","np":2,"cix":2,"bm":0,"ix":332,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-1.72,-1.66],[-1.09,-1.05],[1.72,1.66]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1490.401,317.06],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 333","np":2,"cix":2,"bm":0,"ix":333,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-1.55,-1.495],[-1.38,-1.335],[1.49,1.435],[1.55,1.495]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1503.462,329.635],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 334","np":2,"cix":2,"bm":0,"ix":334,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1485.212,323.77],[1486.042,323.77],[1490.021,323.77],[1490.712,323.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 335","np":2,"cix":2,"bm":0,"ix":335,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1503.942,323.77],[1507.771,323.77],[1508.211,323.77]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 336","np":2,"cix":2,"bm":0,"ix":336,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[1496.902,312.07],[1496.902,312.91],[1496.902,316.75]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 337","np":2,"cix":2,"bm":0,"ix":337,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[1496.902,330.31],[1496.902,330.66],[1496.902,334.64],[1496.902,334.74]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 338","np":2,"cix":2,"bm":0,"ix":338,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0.56,-1.31],[0.81,-0.89],[1.36,-0.61],[1.61,0],[1.31,0.57],[0.94,0.92],[0.57,1.33],[0,1.53],[-0.51,1.25],[-1.07,1.03],[-1.27,0.53],[-1.49,0],[-1.25,-0.5],[-0.99,-0.96],[-0.57,-1.31]],"o":[[0,1.51],[-0.48,1.12],[-0.98,1.09],[-1.37,0.63],[-1.52,0],[-1.23,-0.52],[-1.03,-0.99],[-0.57,-1.32],[0,-1.44],[0.56,-1.41],[0.97,-0.96],[1.29,-0.54],[1.43,0],[1.3,0.52],[1.03,0.97],[0.6,1.34]],"v":[[10.865,-0.005],[9.995,4.255],[8.045,7.295],[4.495,9.885],[-0.005,10.865],[-4.275,9.985],[-7.555,7.805],[-9.975,4.295],[-10.865,-0.005],[-10.075,-4.065],[-7.595,-7.765],[-4.205,-10.025],[-0.005,-10.865],[4.045,-10.085],[7.505,-7.845],[9.935,-4.395]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,323.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 339","np":2,"cix":2,"bm":0,"ix":339,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,-35.295],[4.235,35.295],[-4.235,35.295],[-4.235,-35.295]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1466.326,378.655],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 340","np":2,"cix":2,"bm":0,"ix":340,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.235,15.06],[-4.235,-15.06],[4.235,-15.06],[4.235,15.06]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1466.327,328.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 341","np":2,"cix":2,"bm":0,"ix":341,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,-19.145],[4.235,19.145],[-4.235,19.145],[-4.235,-19.145]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1434.566,394.805],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 342","np":2,"cix":2,"bm":0,"ix":342,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.235,31.21],[-4.235,-31.21],[4.235,-31.21],[4.235,31.21]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1434.567,344.45],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 343","np":2,"cix":2,"bm":0,"ix":343,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-4.235,2.735],[-9.415,2.735],[-9.415,-2.735],[-4.235,-2.735],[4.235,-2.735],[9.415,-2.735],[9.415,2.735],[4.235,2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1402.796,333.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 344","np":2,"cix":2,"bm":0,"ix":344,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,-39.06],[4.235,39.06],[-4.235,39.06],[-4.235,-39.06]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1402.797,374.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 345","np":2,"cix":2,"bm":0,"ix":345,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.235,8.56],[-4.235,-8.56],[4.235,-8.56],[4.235,8.56]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1402.797,321.8],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 346","np":2,"cix":2,"bm":0,"ix":346,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[7.18,0],[0,0],[0,7.18],[0,0],[-7.18,0],[0,0],[0,-7.18],[0,0]],"o":[[0,0],[-7.18,0],[0,0],[0,-7.18],[0,0],[7.18,0],[0,0],[0,7.18]],"v":[[92.475,78.35],[-92.475,78.35],[-105.525,65.29],[-105.525,-65.3],[-92.475,-78.35],[92.475,-78.35],[105.525,-65.3],[105.525,65.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1485.386,379.07],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 347","np":2,"cix":2,"bm":0,"ix":347,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[12.31,0],[0,0],[0,12.32],[0,0],[-12.31,0],[0,0],[0,-12.32],[0,0]],"o":[[0,0],[-12.31,0],[0,0],[0,-12.32],[0,0],[12.31,0],[0,0],[0,12.32]],"v":[[92.295,85.41],[-92.295,85.41],[-114.685,63.02],[-114.685,-63.02],[-92.295,-85.41],[92.295,-85.41],[114.685,-63.02],[114.685,63.02]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1485.586,378.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 348","np":2,"cix":2,"bm":0,"ix":348,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2.59,2.735],[-2.59,2.735],[-2.59,-2.735],[2.59,-2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1395.972,333.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 349","np":2,"cix":2,"bm":0,"ix":349,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,8.56],[-4.235,8.56],[-4.235,-8.56],[4.235,-8.56]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1402.797,321.8],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 350","np":2,"cix":2,"bm":0,"ix":350,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,2.735],[-4.235,2.735],[-4.235,-2.735],[4.235,-2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1402.797,333.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 351","np":2,"cix":2,"bm":0,"ix":351,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,39.06],[-4.235,39.06],[-4.235,-39.06],[4.235,-39.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1402.797,374.89],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 352","np":2,"cix":2,"bm":0,"ix":352,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[2.59,2.735],[-2.59,2.735],[-2.59,-2.735],[2.59,-2.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1409.622,333.095],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 353","np":2,"cix":2,"bm":0,"ix":353,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,31.21],[-4.235,31.21],[-4.235,-31.21],[4.235,-31.21]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1434.567,344.45],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 354","np":2,"cix":2,"bm":0,"ix":354,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,19.145],[-4.235,19.145],[-4.235,-19.145],[4.235,-19.145]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1434.567,394.805],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 355","np":2,"cix":2,"bm":0,"ix":355,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,15.06],[-4.235,15.06],[-4.235,-15.06],[4.235,-15.06]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1466.327,328.3],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 356","np":2,"cix":2,"bm":0,"ix":356,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[4.235,35.295],[-4.235,35.295],[-4.235,-35.295],[4.235,-35.295]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.443137284821,0.003921568627,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1466.327,378.655],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 357","np":2,"cix":2,"bm":0,"ix":357,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.9],[0,0]],"o":[[0,0],[-0.32,0.79],[0,0],[0,-1.44]],"v":[[-1.445,-2.03],[2.235,-0.51],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.276,405.54],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 358","np":2,"cix":2,"bm":0,"ix":358,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.9],[0,0]],"o":[[0,0],[-0.32,0.79],[0,0],[0,-1.43]],"v":[[-1.445,-2.03],[2.235,-0.51],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.276,377.61],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 359","np":2,"cix":2,"bm":0,"ix":359,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.89],[0,0]],"o":[[0,0],[-0.32,0.78],[0,0],[0,-1.43]],"v":[[-1.445,-2.03],[2.235,-0.5],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.276,349.67],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 360","np":2,"cix":2,"bm":0,"ix":360,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.9],[0,0]],"o":[[0,0],[-0.32,0.79],[0,0],[0,-1.44]],"v":[[-1.445,-2.03],[2.235,-0.51],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.276,321.74],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 361","np":2,"cix":2,"bm":0,"ix":361,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.35,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.58,-1.32],[0,0],[0,0.97]],"v":[[2.265,0.565],[-1.365,2.155],[-2.265,-2.155],[1.715,-2.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.307,409.725],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 362","np":2,"cix":2,"bm":0,"ix":362,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.35,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.57,-1.32],[0,0],[0,0.96]],"v":[[2.265,0.56],[-1.375,2.15],[-2.265,-2.15],[1.715,-2.15]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.307,381.79],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 363","np":2,"cix":2,"bm":0,"ix":363,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.36,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.58,-1.32],[0,0],[0,0.97]],"v":[[2.27,0.565],[-1.37,2.155],[-2.27,-2.155],[1.71,-2.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.312,353.855],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 364","np":2,"cix":2,"bm":0,"ix":364,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.36,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.57,-1.32],[0,0],[0,0.97]],"v":[[2.27,0.57],[-1.38,2.15],[-2.27,-2.15],[1.71,-2.15]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1488.312,325.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 365","np":2,"cix":2,"bm":0,"ix":365,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.57,1.33]],"o":[[0.36,0.84],[0,0],[-1.03,-0.99],[0,0]],"v":[[1.05,-2.545],[2.59,-0.315],[-0.17,2.545],[-2.59,-0.955]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.521,384.895],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 366","np":2,"cix":2,"bm":0,"ix":366,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.57,1.33]],"o":[[0.36,0.84],[0,0],[-1.03,-0.99],[0,0]],"v":[[1.06,-2.545],[2.59,-0.325],[-0.17,2.545],[-2.59,-0.965]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.521,329.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 367","np":2,"cix":2,"bm":0,"ix":367,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.56,1.33]],"o":[[0.36,0.84],[0,0],[-1.02,-0.98],[0,0]],"v":[[1.055,-2.545],[2.585,-0.325],[-0.175,2.545],[-2.585,-0.955]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.526,356.965],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 368","np":2,"cix":2,"bm":0,"ix":368,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.56,1.32]],"o":[[0.36,0.84],[0,0],[-1.02,-0.99],[0,0]],"v":[[1.045,-2.545],[2.585,-0.325],[-0.175,2.545],[-2.585,-0.955]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.526,412.835],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 369","np":2,"cix":2,"bm":0,"ix":369,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.37,-0.94],[0,0],[-1.06,1.04]],"o":[[0,0],[-0.72,0.68],[0,0],[0.56,-1.4],[0,0]],"v":[[2.62,0.1],[2.67,0.16],[1.01,2.61],[-2.67,1.09],[-0.2,-2.61]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.501,402.42],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 370","np":2,"cix":2,"bm":0,"ix":370,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.37,-0.94],[0,0],[-1.07,1.03]],"o":[[0,0],[-0.72,0.68],[0,0],[0.56,-1.41],[0,0]],"v":[[2.62,0.1],[2.67,0.16],[1.01,2.61],[-2.67,1.09],[-0.19,-2.61]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.501,374.49],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 371","np":2,"cix":2,"bm":0,"ix":371,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.37,-0.94],[0,0],[-1.07,1.03]],"o":[[0,0],[-0.72,0.68],[0,0],[0.56,-1.41],[0,0]],"v":[[2.62,0.1],[2.67,0.16],[1.01,2.61],[-2.67,1.09],[-0.19,-2.61]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.501,318.62],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 372","np":2,"cix":2,"bm":0,"ix":372,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.36,-0.94],[0,0],[-1.06,1.04],[0,0]],"o":[[-0.73,0.67],[0,0],[0.56,-1.4],[0,0],[0,0]],"v":[[2.675,0.155],[1.005,2.615],[-2.675,1.085],[-0.205,-2.615],[2.615,0.095]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1489.506,346.555],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 373","np":2,"cix":2,"bm":0,"ix":373,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.145],[0.88,2.525],[-2.4,0.345],[0.36,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1491.752,415.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 374","np":2,"cix":2,"bm":0,"ix":374,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.14],[0.88,2.52],[-2.4,0.34],[0.36,-2.52]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1491.752,387.1],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 375","np":2,"cix":2,"bm":0,"ix":375,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.15],[0.88,2.53],[-2.4,0.34],[0.36,-2.53]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1491.752,359.17],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 376","np":2,"cix":2,"bm":0,"ix":376,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.145],[0.88,2.525],[-2.4,0.345],[0.36,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1491.752,331.235],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 377","np":2,"cix":2,"bm":0,"ix":377,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.27,0.53],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.8,0.32],[0,0],[0,0],[0.97,-0.96]],"v":[[0.895,-2.515],[2.495,1.125],[0.365,2.515],[0.315,2.455],[-2.495,-0.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1491.807,316.265],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 378","np":2,"cix":2,"bm":0,"ix":378,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.28,0.53],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.8,0.32],[0,0],[0,0],[0.97,-0.95]],"v":[[0.9,-2.515],[2.5,1.135],[0.37,2.515],[0.32,2.455],[-2.5,-0.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1491.802,400.065],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 379","np":2,"cix":2,"bm":0,"ix":379,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.27,0.53],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.8,0.32],[0,0],[0,0],[0.97,-0.96]],"v":[[0.895,-2.515],[2.495,1.125],[0.365,2.515],[0.315,2.455],[-2.495,-0.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1491.807,372.135],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 380","np":2,"cix":2,"bm":0,"ix":380,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.28,0.52],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.79,0.32],[0,0],[0,0],[0.97,-0.95]],"v":[[0.91,-2.51],[2.5,1.13],[0.38,2.51],[0.32,2.45],[-2.5,-0.26]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1491.802,344.2],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 381","np":2,"cix":2,"bm":0,"ix":381,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.49,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.54],[0,0]],"v":[[2.1,1.6],[2.1,1.73],[-0.5,2.24],[-2.1,-1.4],[2.1,-2.24]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1494.802,315.15],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 382","np":2,"cix":2,"bm":0,"ix":382,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.57],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.705],[2.135,2.275],[-2.135,1.395],[-0.615,-2.275]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1494.767,332.365],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 383","np":2,"cix":2,"bm":0,"ix":383,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.48,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.55],[0,0]],"v":[[2.095,1.605],[2.095,1.735],[-0.505,2.245],[-2.095,-1.395],[2.095,-2.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1494.807,343.085],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 384","np":2,"cix":2,"bm":0,"ix":384,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.56],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.705],[2.135,2.275],[-2.135,1.405],[-0.615,-2.275]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1494.767,360.295],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 385","np":2,"cix":2,"bm":0,"ix":385,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.49,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.55],[0,0]],"v":[[2.1,1.605],[2.1,1.735],[-0.5,2.245],[-2.1,-1.395],[2.1,-2.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1494.802,371.015],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 386","np":2,"cix":2,"bm":0,"ix":386,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.57],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.7],[2.135,2.27],[-2.135,1.39],[-0.615,-2.27]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1494.767,388.23],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 387","np":2,"cix":2,"bm":0,"ix":387,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.49,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.54],[0,0]],"v":[[2.1,1.595],[2.1,1.735],[-0.5,2.245],[-2.1,-1.405],[2.1,-2.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1494.802,398.955],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 388","np":2,"cix":2,"bm":0,"ix":388,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.57],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.705],[2.135,2.275],[-2.135,1.395],[-0.615,-2.275]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1494.767,416.165],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 389","np":2,"cix":2,"bm":0,"ix":389,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.51],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.445],[0.585,2.025],[0.505,2.235],[-2.025,1.745],[-2.025,1.615],[-2.025,-2.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1498.927,371.005],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 390","np":2,"cix":2,"bm":0,"ix":390,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.51],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.445],[0.585,2.025],[0.505,2.235],[-2.025,1.745],[-2.025,1.615],[-2.025,-2.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1498.927,343.075],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 391","np":2,"cix":2,"bm":0,"ix":391,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.5],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.45],[0.585,2.02],[0.505,2.23],[-2.025,1.74],[-2.025,1.61],[-2.025,-2.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1498.927,315.14],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 392","np":2,"cix":2,"bm":0,"ix":392,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.5],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.455],[0.585,2.025],[0.505,2.235],[-2.025,1.745],[-2.025,1.605],[-2.025,-2.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1498.927,398.945],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 393","np":2,"cix":2,"bm":0,"ix":393,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.42],[0,0],[1.6,0],[0,0]],"o":[[0,0],[-1.37,0.62],[0,0],[1.04,0]],"v":[[0.655,-2.31],[2.245,1.34],[-2.245,2.31],[-2.245,-1.66]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1499.146,388.19],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 394","np":2,"cix":2,"bm":0,"ix":394,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.41],[0,0],[1.61,0],[0,0]],"o":[[0,0],[-1.37,0.63],[0,0],[1.04,0]],"v":[[0.65,-2.31],[2.25,1.33],[-2.25,2.31],[-2.25,-1.67]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1499.151,416.13],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 395","np":2,"cix":2,"bm":0,"ix":395,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.41],[0,0],[1.61,0],[0,0]],"o":[[0,0],[-1.37,0.63],[0,0],[1.04,0]],"v":[[0.65,-2.31],[2.25,1.33],[-2.25,2.31],[-2.25,-1.67]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1499.151,332.33],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 396","np":2,"cix":2,"bm":0,"ix":396,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.41],[0,0],[1.61,0],[0,0]],"o":[[0,0],[-1.37,0.62],[0,0],[1.04,0]],"v":[[0.65,-2.31],[2.25,1.34],[-2.25,2.31],[-2.25,-1.67]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1499.151,360.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 397","np":2,"cix":2,"bm":0,"ix":397,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.82],[0,-0.99],[0.35,-0.83],[0.48,-0.54]],"o":[[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.62],[0.38,0.85],[0,0.97],[-0.29,0.66],[-0.62,0.72]],"v":[[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.935],[-6.335,2.715],[-6.885,-0.005],[-6.395,-2.545],[-4.735,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.755,-4.975],[6.295,-2.795],[6.885,-0.005],[6.335,2.715],[5.175,4.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,407.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 398","np":2,"cix":2,"bm":0,"ix":398,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83],[0,-0.99],[0.36,-0.83],[0.48,-0.53],[0.88,-0.4],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.96],[-0.32,0.79],[-0.72,0.68]],"o":[[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85],[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.42],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59]],"v":[[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79],[6.885,0],[6.325,2.72],[5.175,4.53],[2.895,6.24],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.335,2.71],[-6.885,0],[-6.395,-2.54],[-4.735,-4.99]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,379.64],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 399","np":2,"cix":2,"bm":0,"ix":399,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.36,0.84],[0,0.97],[-0.32,0.78],[-0.73,0.67],[-0.79,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.83],[0,-0.99],[0.36,-0.83],[0.48,-0.54],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57]],"o":[[-0.36,-0.83],[0,-0.89],[0.36,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.66,0.61],[0.38,0.85],[0,0.97],[-0.29,0.67],[-0.61,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63]],"v":[[-6.325,2.715],[-6.885,-0.005],[-6.395,-2.535],[-4.725,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.745,-4.975],[6.295,-2.795],[6.885,-0.005],[6.325,2.715],[5.165,4.535],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.935]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,351.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 400","np":2,"cix":2,"bm":0,"ix":400,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0.97],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83],[0,-0.99],[0.36,-0.83],[0.48,-0.53],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84]],"o":[[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85],[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.36,-0.83]],"v":[[-6.885,0],[-6.395,-2.54],[-4.735,-4.99],[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79],[6.885,0],[6.325,2.72],[5.175,4.53],[2.895,6.25],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.325,2.72]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1496.906,323.77],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 401","np":2,"cix":2,"bm":0,"ix":401,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.96],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.61],[0,0],[0,0],[1.3,0.52]],"v":[[2.49,-0.315],[-0.08,2.355],[-0.26,2.555],[-2.49,1.135],[-2.41,0.925],[-0.97,-2.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1501.922,400.045],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 402","np":2,"cix":2,"bm":0,"ix":402,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.96],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.62],[0,0],[0,0],[1.3,0.52]],"v":[[2.49,-0.315],[-0.08,2.355],[-0.26,2.555],[-2.49,1.125],[-2.41,0.915],[-0.97,-2.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1501.922,372.115],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 403","np":2,"cix":2,"bm":0,"ix":403,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.96],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.62],[0,0],[0,0],[1.3,0.52]],"v":[[2.49,-0.315],[-0.08,2.355],[-0.26,2.555],[-2.49,1.125],[-2.41,0.915],[-0.97,-2.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1501.922,316.245],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 404","np":2,"cix":2,"bm":0,"ix":404,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.95],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.61],[0,0],[0,0],[1.3,0.51]],"v":[[2.495,-0.32],[-0.085,2.35],[-0.275,2.55],[-2.495,1.13],[-2.415,0.92],[-0.975,-2.55]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1501.927,344.18],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 405","np":2,"cix":2,"bm":0,"ix":405,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.62,0.72],[0,0],[1.36,-0.61],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.4]],"v":[[-0.29,-2.68],[2.57,0.09],[-0.98,2.68],[-2.57,-0.97]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1502.372,386.85],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 406","np":2,"cix":2,"bm":0,"ix":406,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.62,0.72],[0,0],[1.36,-0.61],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.41]],"v":[[-0.295,-2.68],[2.575,0.09],[-0.975,2.68],[-2.575,-0.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1502.376,414.78],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 407","np":2,"cix":2,"bm":0,"ix":407,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.61,0.72],[0,0],[1.36,-0.62],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.41]],"v":[[-0.305,-2.68],[2.575,0.08],[-0.975,2.68],[-2.575,-0.97]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1502.376,358.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 408","np":2,"cix":2,"bm":0,"ix":408,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.62,0.72],[0,0],[1.36,-0.61],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.41]],"v":[[-0.295,-2.68],[2.575,0.09],[-0.975,2.68],[-2.575,-0.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1502.376,330.98],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 409","np":2,"cix":2,"bm":0,"ix":409,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.31],[0,0],[0,0],[0.65,0.62],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.82],[0,0],[0,0],[1.03,0.97]],"v":[[2.59,0.925],[-1,2.495],[-1.05,2.525],[-2.59,0.345],[-2.41,0.145],[0.16,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.251,402.255],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 410","np":2,"cix":2,"bm":0,"ix":410,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.31],[0,0],[0,0],[0.65,0.61],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.83],[0,0],[0,0],[1.03,0.97]],"v":[[2.59,0.925],[-1,2.495],[-1.05,2.525],[-2.59,0.345],[-2.41,0.145],[0.16,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.251,374.325],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 411","np":2,"cix":2,"bm":0,"ix":411,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.3],[0,0],[0,0],[0.66,0.61],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.83],[0,0],[0,0],[1.02,0.98]],"v":[[2.595,0.925],[-0.995,2.495],[-1.045,2.525],[-2.595,0.345],[-2.405,0.145],[0.175,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.247,346.385],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 412","np":2,"cix":2,"bm":0,"ix":412,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.31],[0,0],[0,0],[0.65,0.61],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.83],[0,0],[0,0],[1.03,0.97]],"v":[[2.59,0.925],[-1,2.495],[-1.05,2.525],[-2.59,0.345],[-2.41,0.145],[0.16,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.251,318.455],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 413","np":2,"cix":2,"bm":0,"ix":413,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.81,-0.89],[0,0],[-0.29,0.66]],"o":[[0,0],[-0.48,1.12],[0,0],[0.48,-0.53],[0,0]],"v":[[-1.05,-2.19],[2.41,-0.75],[0.46,2.29],[-2.41,-0.48],[-1.26,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.491,328.78],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 414","np":2,"cix":2,"bm":0,"ix":414,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.81,-0.89],[0,0],[-0.29,0.67]],"o":[[0,0],[-0.48,1.12],[0,0],[0.48,-0.54],[0,0]],"v":[[-1.045,-2.19],[2.415,-0.75],[0.465,2.29],[-2.415,-0.47],[-1.255,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.486,356.71],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 415","np":2,"cix":2,"bm":0,"ix":415,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.81,-0.89],[0,0],[-0.29,0.66]],"o":[[0,0],[-0.48,1.12],[0,0],[0.48,-0.54],[0,0]],"v":[[-1.05,-2.19],[2.41,-0.75],[0.46,2.29],[-2.41,-0.48],[-1.25,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.491,412.58],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 416","np":2,"cix":2,"bm":0,"ix":416,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.82,-0.89],[0,0],[-0.29,0.66]],"o":[[0,0],[-0.48,1.13],[0,0],[0.48,-0.53],[0,0]],"v":[[-1.05,-2.19],[2.41,-0.76],[0.45,2.29],[-2.41,-0.48],[-1.26,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1504.491,384.65],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 417","np":2,"cix":2,"bm":0,"ix":417,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.35,-0.83],[0,0]],"v":[[-1.565,-2.13],[2.265,-2.13],[1.395,2.13],[-2.065,0.69],[-2.265,0.59],[-1.715,-2.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.506,409.7],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 418","np":2,"cix":2,"bm":0,"ix":418,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.487,405.375],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 419","np":2,"cix":2,"bm":0,"ix":419,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.36,-0.83],[0,0]],"v":[[-1.56,-2.125],[2.27,-2.125],[1.4,2.125],[-2.06,0.695],[-2.27,0.595],[-1.71,-2.125]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.501,381.765],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 420","np":2,"cix":2,"bm":0,"ix":420,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.487,377.445],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 421","np":2,"cix":2,"bm":0,"ix":421,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.36,-0.83],[0,0]],"v":[[-1.56,-2.13],[2.27,-2.13],[1.4,2.13],[-2.06,0.69],[-2.27,0.59],[-1.71,-2.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.501,353.83],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 422","np":2,"cix":2,"bm":0,"ix":422,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.487,349.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 423","np":2,"cix":2,"bm":0,"ix":423,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.36,-0.83],[0,0]],"v":[[-1.56,-2.13],[2.27,-2.13],[1.4,2.13],[-2.06,0.69],[-2.27,0.59],[-1.71,-2.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.501,325.9],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 424","np":2,"cix":2,"bm":0,"ix":424,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1505.487,321.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 425","np":2,"cix":2,"bm":0,"ix":425,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.9],[0,0]],"o":[[0,0],[-0.32,0.79],[0,0],[0,-1.44]],"v":[[-1.445,-2.03],[2.235,-0.51],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.776,405.54],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 426","np":2,"cix":2,"bm":0,"ix":426,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.9],[0,0]],"o":[[0,0],[-0.32,0.79],[0,0],[0,-1.43]],"v":[[-1.445,-2.03],[2.235,-0.51],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.776,377.61],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 427","np":2,"cix":2,"bm":0,"ix":427,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.89],[0,0]],"o":[[0,0],[-0.32,0.78],[0,0],[0,-1.43]],"v":[[-1.445,-2.03],[2.235,-0.5],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.776,349.67],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 428","np":2,"cix":2,"bm":0,"ix":428,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.9],[0,0]],"o":[[0,0],[-0.32,0.79],[0,0],[0,-1.44]],"v":[[-1.445,-2.03],[2.235,-0.51],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.776,321.74],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 429","np":2,"cix":2,"bm":0,"ix":429,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.35,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.58,-1.32],[0,0],[0,0.97]],"v":[[2.265,0.565],[-1.365,2.155],[-2.265,-2.155],[1.715,-2.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.807,409.725],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 430","np":2,"cix":2,"bm":0,"ix":430,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.35,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.57,-1.32],[0,0],[0,0.96]],"v":[[2.265,0.56],[-1.375,2.15],[-2.265,-2.15],[1.715,-2.15]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.807,381.79],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 431","np":2,"cix":2,"bm":0,"ix":431,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.36,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.58,-1.32],[0,0],[0,0.97]],"v":[[2.27,0.565],[-1.37,2.155],[-2.27,-2.155],[1.71,-2.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.812,353.855],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 432","np":2,"cix":2,"bm":0,"ix":432,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.36,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.57,-1.32],[0,0],[0,0.97]],"v":[[2.27,0.57],[-1.38,2.15],[-2.27,-2.15],[1.71,-2.15]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1523.812,325.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 433","np":2,"cix":2,"bm":0,"ix":433,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.57,1.33]],"o":[[0.36,0.84],[0,0],[-1.03,-0.99],[0,0]],"v":[[1.05,-2.545],[2.59,-0.315],[-0.17,2.545],[-2.59,-0.955]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.021,384.895],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 434","np":2,"cix":2,"bm":0,"ix":434,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.57,1.33]],"o":[[0.36,0.84],[0,0],[-1.03,-0.99],[0,0]],"v":[[1.06,-2.545],[2.59,-0.325],[-0.17,2.545],[-2.59,-0.965]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.021,329.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 435","np":2,"cix":2,"bm":0,"ix":435,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.56,1.33]],"o":[[0.36,0.84],[0,0],[-1.02,-0.98],[0,0]],"v":[[1.055,-2.545],[2.585,-0.325],[-0.175,2.545],[-2.585,-0.955]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.026,356.965],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 436","np":2,"cix":2,"bm":0,"ix":436,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.56,1.32]],"o":[[0.36,0.84],[0,0],[-1.02,-0.99],[0,0]],"v":[[1.045,-2.545],[2.585,-0.325],[-0.175,2.545],[-2.585,-0.955]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.026,412.835],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 437","np":2,"cix":2,"bm":0,"ix":437,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.37,-0.94],[0,0],[-1.06,1.04]],"o":[[0,0],[-0.72,0.68],[0,0],[0.56,-1.4],[0,0]],"v":[[2.62,0.1],[2.67,0.16],[1.01,2.61],[-2.67,1.09],[-0.2,-2.61]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.001,402.42],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 438","np":2,"cix":2,"bm":0,"ix":438,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.37,-0.94],[0,0],[-1.07,1.03]],"o":[[0,0],[-0.72,0.68],[0,0],[0.56,-1.41],[0,0]],"v":[[2.62,0.1],[2.67,0.16],[1.01,2.61],[-2.67,1.09],[-0.19,-2.61]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.001,374.49],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 439","np":2,"cix":2,"bm":0,"ix":439,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.37,-0.94],[0,0],[-1.07,1.03]],"o":[[0,0],[-0.72,0.68],[0,0],[0.56,-1.41],[0,0]],"v":[[2.62,0.1],[2.67,0.16],[1.01,2.61],[-2.67,1.09],[-0.19,-2.61]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.001,318.62],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 440","np":2,"cix":2,"bm":0,"ix":440,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.36,-0.94],[0,0],[-1.06,1.04],[0,0]],"o":[[-0.73,0.67],[0,0],[0.56,-1.4],[0,0],[0,0]],"v":[[2.675,0.155],[1.005,2.615],[-2.675,1.085],[-0.205,-2.615],[2.615,0.095]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1525.006,346.555],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 441","np":2,"cix":2,"bm":0,"ix":441,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.145],[0.88,2.525],[-2.4,0.345],[0.36,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1527.252,415.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 442","np":2,"cix":2,"bm":0,"ix":442,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.14],[0.88,2.52],[-2.4,0.34],[0.36,-2.52]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1527.252,387.1],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 443","np":2,"cix":2,"bm":0,"ix":443,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.15],[0.88,2.53],[-2.4,0.34],[0.36,-2.53]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1527.252,359.17],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 444","np":2,"cix":2,"bm":0,"ix":444,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.145],[0.88,2.525],[-2.4,0.345],[0.36,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1527.252,331.235],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 445","np":2,"cix":2,"bm":0,"ix":445,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.27,0.53],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.8,0.32],[0,0],[0,0],[0.97,-0.96]],"v":[[0.895,-2.515],[2.495,1.125],[0.365,2.515],[0.315,2.455],[-2.495,-0.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1527.307,316.265],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 446","np":2,"cix":2,"bm":0,"ix":446,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.28,0.53],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.8,0.32],[0,0],[0,0],[0.97,-0.95]],"v":[[0.9,-2.515],[2.5,1.135],[0.37,2.515],[0.32,2.455],[-2.5,-0.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1527.302,400.065],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 447","np":2,"cix":2,"bm":0,"ix":447,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.27,0.53],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.8,0.32],[0,0],[0,0],[0.97,-0.96]],"v":[[0.895,-2.515],[2.495,1.125],[0.365,2.515],[0.315,2.455],[-2.495,-0.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1527.307,372.135],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 448","np":2,"cix":2,"bm":0,"ix":448,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.28,0.52],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.79,0.32],[0,0],[0,0],[0.97,-0.95]],"v":[[0.91,-2.51],[2.5,1.13],[0.38,2.51],[0.32,2.45],[-2.5,-0.26]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1527.302,344.2],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 449","np":2,"cix":2,"bm":0,"ix":449,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.49,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.54],[0,0]],"v":[[2.1,1.6],[2.1,1.73],[-0.5,2.24],[-2.1,-1.4],[2.1,-2.24]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1530.302,315.15],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 450","np":2,"cix":2,"bm":0,"ix":450,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.57],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.705],[2.135,2.275],[-2.135,1.395],[-0.615,-2.275]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1530.267,332.365],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 451","np":2,"cix":2,"bm":0,"ix":451,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.48,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.55],[0,0]],"v":[[2.095,1.605],[2.095,1.735],[-0.505,2.245],[-2.095,-1.395],[2.095,-2.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1530.307,343.085],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 452","np":2,"cix":2,"bm":0,"ix":452,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.56],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.705],[2.135,2.275],[-2.135,1.405],[-0.615,-2.275]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1530.267,360.295],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 453","np":2,"cix":2,"bm":0,"ix":453,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.49,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.55],[0,0]],"v":[[2.1,1.605],[2.1,1.735],[-0.5,2.245],[-2.1,-1.395],[2.1,-2.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1530.302,371.015],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 454","np":2,"cix":2,"bm":0,"ix":454,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.57],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.7],[2.135,2.27],[-2.135,1.39],[-0.615,-2.27]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1530.267,388.23],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 455","np":2,"cix":2,"bm":0,"ix":455,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.49,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.54],[0,0]],"v":[[2.1,1.595],[2.1,1.735],[-0.5,2.245],[-2.1,-1.405],[2.1,-2.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1530.302,398.955],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 456","np":2,"cix":2,"bm":0,"ix":456,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.57],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.705],[2.135,2.275],[-2.135,1.395],[-0.615,-2.275]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1530.267,416.165],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 457","np":2,"cix":2,"bm":0,"ix":457,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.51],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.445],[0.585,2.025],[0.505,2.235],[-2.025,1.745],[-2.025,1.615],[-2.025,-2.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1534.427,371.005],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 458","np":2,"cix":2,"bm":0,"ix":458,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.51],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.445],[0.585,2.025],[0.505,2.235],[-2.025,1.745],[-2.025,1.615],[-2.025,-2.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1534.427,343.075],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 459","np":2,"cix":2,"bm":0,"ix":459,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.5],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.45],[0.585,2.02],[0.505,2.23],[-2.025,1.74],[-2.025,1.61],[-2.025,-2.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1534.427,315.14],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 460","np":2,"cix":2,"bm":0,"ix":460,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.5],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.455],[0.585,2.025],[0.505,2.235],[-2.025,1.745],[-2.025,1.605],[-2.025,-2.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1534.427,398.945],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 461","np":2,"cix":2,"bm":0,"ix":461,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.42],[0,0],[1.6,0],[0,0]],"o":[[0,0],[-1.37,0.62],[0,0],[1.04,0]],"v":[[0.655,-2.31],[2.245,1.34],[-2.245,2.31],[-2.245,-1.66]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1534.646,388.19],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 462","np":2,"cix":2,"bm":0,"ix":462,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.41],[0,0],[1.61,0],[0,0]],"o":[[0,0],[-1.37,0.63],[0,0],[1.04,0]],"v":[[0.65,-2.31],[2.25,1.33],[-2.25,2.31],[-2.25,-1.67]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1534.651,416.13],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 463","np":2,"cix":2,"bm":0,"ix":463,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.41],[0,0],[1.61,0],[0,0]],"o":[[0,0],[-1.37,0.63],[0,0],[1.04,0]],"v":[[0.65,-2.31],[2.25,1.33],[-2.25,2.31],[-2.25,-1.67]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1534.651,332.33],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 464","np":2,"cix":2,"bm":0,"ix":464,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.41],[0,0],[1.61,0],[0,0]],"o":[[0,0],[-1.37,0.62],[0,0],[1.04,0]],"v":[[0.65,-2.31],[2.25,1.34],[-2.25,2.31],[-2.25,-1.67]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1534.651,360.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 465","np":2,"cix":2,"bm":0,"ix":465,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0.97],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.82],[0,-0.99],[0.35,-0.83],[0.48,-0.54],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84]],"o":[[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.62],[0.38,0.85],[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83]],"v":[[-6.885,-0.005],[-6.395,-2.545],[-4.735,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.755,-4.975],[6.295,-2.795],[6.885,-0.005],[6.335,2.715],[5.175,4.525],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.935],[-6.335,2.715]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,407.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 466","np":2,"cix":2,"bm":0,"ix":466,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.88,-0.4],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.96],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83],[0,-0.99],[0.36,-0.83],[0.48,-0.53]],"o":[[-0.88,0.42],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85],[0,0.97],[-0.29,0.66],[-0.62,0.72]],"v":[[2.895,6.24],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.335,2.71],[-6.885,0],[-6.395,-2.54],[-4.735,-4.99],[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79],[6.885,0],[6.325,2.72],[5.175,4.53]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,379.64],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 467","np":2,"cix":2,"bm":0,"ix":467,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.78],[-0.73,0.67],[-0.79,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.83],[0,-0.99],[0.36,-0.83],[0.48,-0.54],[0.88,-0.41],[1.04,0],[0.84,0.37]],"o":[[-0.65,-0.63],[-0.36,-0.83],[0,-0.89],[0.36,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.66,0.61],[0.38,0.85],[0,0.97],[-0.29,0.67],[-0.61,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34]],"v":[[-4.795,4.935],[-6.325,2.715],[-6.885,-0.005],[-6.395,-2.535],[-4.725,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.745,-4.975],[6.295,-2.795],[6.885,-0.005],[6.325,2.715],[5.165,4.535],[2.895,6.245],[-0.005,6.885],[-2.755,6.315]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,351.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 468","np":2,"cix":2,"bm":0,"ix":468,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83],[0,-0.99],[0.36,-0.83],[0.48,-0.53]],"o":[[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.36,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85],[0,0.97],[-0.29,0.66],[-0.62,0.72]],"v":[[2.895,6.25],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.325,2.72],[-6.885,0],[-6.395,-2.54],[-4.735,-4.99],[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79],[6.885,0],[6.325,2.72],[5.175,4.53]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1532.406,323.77],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 469","np":2,"cix":2,"bm":0,"ix":469,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.96],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.61],[0,0],[0,0],[1.3,0.52]],"v":[[2.49,-0.315],[-0.08,2.355],[-0.26,2.555],[-2.49,1.135],[-2.41,0.925],[-0.97,-2.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1537.422,400.045],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 470","np":2,"cix":2,"bm":0,"ix":470,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.96],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.62],[0,0],[0,0],[1.3,0.52]],"v":[[2.49,-0.315],[-0.08,2.355],[-0.26,2.555],[-2.49,1.125],[-2.41,0.915],[-0.97,-2.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1537.422,372.115],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 471","np":2,"cix":2,"bm":0,"ix":471,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.96],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.62],[0,0],[0,0],[1.3,0.52]],"v":[[2.49,-0.315],[-0.08,2.355],[-0.26,2.555],[-2.49,1.125],[-2.41,0.915],[-0.97,-2.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1537.422,316.245],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 472","np":2,"cix":2,"bm":0,"ix":472,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.95],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.61],[0,0],[0,0],[1.3,0.51]],"v":[[2.495,-0.32],[-0.085,2.35],[-0.275,2.55],[-2.495,1.13],[-2.415,0.92],[-0.975,-2.55]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1537.427,344.18],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 473","np":2,"cix":2,"bm":0,"ix":473,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.62,0.72],[0,0],[1.36,-0.61],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.4]],"v":[[-0.29,-2.68],[2.57,0.09],[-0.98,2.68],[-2.57,-0.97]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1537.872,386.85],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 474","np":2,"cix":2,"bm":0,"ix":474,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.62,0.72],[0,0],[1.36,-0.61],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.41]],"v":[[-0.295,-2.68],[2.575,0.09],[-0.975,2.68],[-2.575,-0.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1537.876,414.78],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 475","np":2,"cix":2,"bm":0,"ix":475,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.61,0.72],[0,0],[1.36,-0.62],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.41]],"v":[[-0.305,-2.68],[2.575,0.08],[-0.975,2.68],[-2.575,-0.97]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1537.876,358.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 476","np":2,"cix":2,"bm":0,"ix":476,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.62,0.72],[0,0],[1.36,-0.61],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.41]],"v":[[-0.295,-2.68],[2.575,0.09],[-0.975,2.68],[-2.575,-0.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1537.876,330.98],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 477","np":2,"cix":2,"bm":0,"ix":477,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.31],[0,0],[0,0],[0.65,0.62],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.82],[0,0],[0,0],[1.03,0.97]],"v":[[2.59,0.925],[-1,2.495],[-1.05,2.525],[-2.59,0.345],[-2.41,0.145],[0.16,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1539.751,402.255],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 478","np":2,"cix":2,"bm":0,"ix":478,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.31],[0,0],[0,0],[0.65,0.61],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.83],[0,0],[0,0],[1.03,0.97]],"v":[[2.59,0.925],[-1,2.495],[-1.05,2.525],[-2.59,0.345],[-2.41,0.145],[0.16,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1539.751,374.325],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 479","np":2,"cix":2,"bm":0,"ix":479,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.3],[0,0],[0,0],[0.66,0.61],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.83],[0,0],[0,0],[1.02,0.98]],"v":[[2.595,0.925],[-0.995,2.495],[-1.045,2.525],[-2.595,0.345],[-2.405,0.145],[0.175,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1539.747,346.385],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 480","np":2,"cix":2,"bm":0,"ix":480,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.31],[0,0],[0,0],[0.65,0.61],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.83],[0,0],[0,0],[1.03,0.97]],"v":[[2.59,0.925],[-1,2.495],[-1.05,2.525],[-2.59,0.345],[-2.41,0.145],[0.16,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1539.751,318.455],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 481","np":2,"cix":2,"bm":0,"ix":481,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.81,-0.89],[0,0],[-0.29,0.66]],"o":[[0,0],[-0.48,1.12],[0,0],[0.48,-0.53],[0,0]],"v":[[-1.05,-2.19],[2.41,-0.75],[0.46,2.29],[-2.41,-0.48],[-1.26,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1539.991,328.78],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 482","np":2,"cix":2,"bm":0,"ix":482,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.81,-0.89],[0,0],[-0.29,0.67]],"o":[[0,0],[-0.48,1.12],[0,0],[0.48,-0.54],[0,0]],"v":[[-1.045,-2.19],[2.415,-0.75],[0.465,2.29],[-2.415,-0.47],[-1.255,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1539.986,356.71],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 483","np":2,"cix":2,"bm":0,"ix":483,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.81,-0.89],[0,0],[-0.29,0.66]],"o":[[0,0],[-0.48,1.12],[0,0],[0.48,-0.54],[0,0]],"v":[[-1.05,-2.19],[2.41,-0.75],[0.46,2.29],[-2.41,-0.48],[-1.25,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1539.991,412.58],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 484","np":2,"cix":2,"bm":0,"ix":484,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.82,-0.89],[0,0],[-0.29,0.66]],"o":[[0,0],[-0.48,1.13],[0,0],[0.48,-0.53],[0,0]],"v":[[-1.05,-2.19],[2.41,-0.76],[0.45,2.29],[-2.41,-0.48],[-1.26,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1539.991,384.65],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 485","np":2,"cix":2,"bm":0,"ix":485,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.35,-0.83],[0,0]],"v":[[-1.565,-2.13],[2.265,-2.13],[1.395,2.13],[-2.065,0.69],[-2.265,0.59],[-1.715,-2.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1541.006,409.7],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 486","np":2,"cix":2,"bm":0,"ix":486,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.987,405.375],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 487","np":2,"cix":2,"bm":0,"ix":487,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.36,-0.83],[0,0]],"v":[[-1.56,-2.125],[2.27,-2.125],[1.4,2.125],[-2.06,0.695],[-2.27,0.595],[-1.71,-2.125]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1541.001,381.765],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 488","np":2,"cix":2,"bm":0,"ix":488,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.987,377.445],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 489","np":2,"cix":2,"bm":0,"ix":489,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.36,-0.83],[0,0]],"v":[[-1.56,-2.13],[2.27,-2.13],[1.4,2.13],[-2.06,0.69],[-2.27,0.59],[-1.71,-2.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1541.001,353.83],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 490","np":2,"cix":2,"bm":0,"ix":490,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.987,349.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 491","np":2,"cix":2,"bm":0,"ix":491,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.36,-0.83],[0,0]],"v":[[-1.56,-2.13],[2.27,-2.13],[1.4,2.13],[-2.06,0.69],[-2.27,0.59],[-1.71,-2.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1541.001,325.9],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 492","np":2,"cix":2,"bm":0,"ix":492,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1540.987,321.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 493","np":2,"cix":2,"bm":0,"ix":493,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.9],[0,0]],"o":[[0,0],[-0.32,0.79],[0,0],[0,-1.44]],"v":[[-1.445,-2.03],[2.235,-0.51],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.276,405.54],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 494","np":2,"cix":2,"bm":0,"ix":494,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.9],[0,0]],"o":[[0,0],[-0.32,0.79],[0,0],[0,-1.43]],"v":[[-1.445,-2.03],[2.235,-0.51],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.276,377.61],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 495","np":2,"cix":2,"bm":0,"ix":495,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.89],[0,0]],"o":[[0,0],[-0.32,0.78],[0,0],[0,-1.43]],"v":[[-1.445,-2.03],[2.235,-0.5],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.276,349.67],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 496","np":2,"cix":2,"bm":0,"ix":496,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.51,1.25],[0,0],[0,-0.9],[0,0]],"o":[[0,0],[-0.32,0.79],[0,0],[0,-1.44]],"v":[[-1.445,-2.03],[2.235,-0.51],[1.745,2.03],[-2.235,2.03]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.276,321.74],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 497","np":2,"cix":2,"bm":0,"ix":497,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.35,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.58,-1.32],[0,0],[0,0.97]],"v":[[2.265,0.565],[-1.365,2.155],[-2.265,-2.155],[1.715,-2.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.307,409.725],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 498","np":2,"cix":2,"bm":0,"ix":498,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.35,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.57,-1.32],[0,0],[0,0.96]],"v":[[2.265,0.56],[-1.375,2.15],[-2.265,-2.15],[1.715,-2.15]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.307,381.79],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 499","np":2,"cix":2,"bm":0,"ix":499,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.36,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.58,-1.32],[0,0],[0,0.97]],"v":[[2.27,0.565],[-1.37,2.155],[-2.27,-2.155],[1.71,-2.155]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.312,353.855],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 500","np":2,"cix":2,"bm":0,"ix":500,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.36,-0.83],[0,0],[0,1.53],[0,0]],"o":[[0,0],[-0.57,-1.32],[0,0],[0,0.97]],"v":[[2.27,0.57],[-1.38,2.15],[-2.27,-2.15],[1.71,-2.15]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1559.312,325.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 501","np":2,"cix":2,"bm":0,"ix":501,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.57,1.33]],"o":[[0.36,0.84],[0,0],[-1.03,-0.99],[0,0]],"v":[[1.05,-2.545],[2.59,-0.315],[-0.17,2.545],[-2.59,-0.955]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1560.521,384.895],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 502","np":2,"cix":2,"bm":0,"ix":502,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.57,1.33]],"o":[[0.36,0.84],[0,0],[-1.03,-0.99],[0,0]],"v":[[1.06,-2.545],[2.59,-0.325],[-0.17,2.545],[-2.59,-0.965]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1560.521,329.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 503","np":2,"cix":2,"bm":0,"ix":503,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.56,1.33]],"o":[[0.36,0.84],[0,0],[-1.02,-0.98],[0,0]],"v":[[1.055,-2.545],[2.585,-0.325],[-0.175,2.545],[-2.585,-0.955]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1560.526,356.965],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 504","np":2,"cix":2,"bm":0,"ix":504,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[-0.65,-0.63],[0,0],[0.56,1.32]],"o":[[0.36,0.84],[0,0],[-1.02,-0.99],[0,0]],"v":[[1.045,-2.545],[2.585,-0.325],[-0.175,2.545],[-2.585,-0.955]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1560.526,412.835],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 505","np":2,"cix":2,"bm":0,"ix":505,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.37,-0.94],[0,0],[-1.06,1.04]],"o":[[0,0],[-0.72,0.68],[0,0],[0.56,-1.4],[0,0]],"v":[[2.62,0.1],[2.67,0.16],[1.01,2.61],[-2.67,1.09],[-0.2,-2.61]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1560.501,402.42],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 506","np":2,"cix":2,"bm":0,"ix":506,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.37,-0.94],[0,0],[-1.07,1.03]],"o":[[0,0],[-0.72,0.68],[0,0],[0.56,-1.41],[0,0]],"v":[[2.62,0.1],[2.67,0.16],[1.01,2.61],[-2.67,1.09],[-0.19,-2.61]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1560.501,374.49],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 507","np":2,"cix":2,"bm":0,"ix":507,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.37,-0.94],[0,0],[-1.07,1.03]],"o":[[0,0],[-0.72,0.68],[0,0],[0.56,-1.41],[0,0]],"v":[[2.62,0.1],[2.67,0.16],[1.01,2.61],[-2.67,1.09],[-0.19,-2.61]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1560.501,318.62],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 508","np":2,"cix":2,"bm":0,"ix":508,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.36,-0.94],[0,0],[-1.06,1.04],[0,0]],"o":[[-0.73,0.67],[0,0],[0.56,-1.4],[0,0],[0,0]],"v":[[2.675,0.155],[1.005,2.615],[-2.675,1.085],[-0.205,-2.615],[2.615,0.095]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1560.506,346.555],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 509","np":2,"cix":2,"bm":0,"ix":509,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.145],[0.88,2.525],[-2.4,0.345],[0.36,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1562.752,415.035],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 510","np":2,"cix":2,"bm":0,"ix":510,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.14],[0.88,2.52],[-2.4,0.34],[0.36,-2.52]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1562.752,387.1],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 511","np":2,"cix":2,"bm":0,"ix":511,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.15],[0.88,2.53],[-2.4,0.34],[0.36,-2.53]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1562.752,359.17],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 512","np":2,"cix":2,"bm":0,"ix":512,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.76,-0.34],[0,0],[0.94,0.92],[0,0]],"o":[[0,0],[-1.23,-0.52],[0,0],[0.58,0.57]],"v":[[2.4,-1.145],[0.88,2.525],[-2.4,0.345],[0.36,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1562.752,331.235],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 513","np":2,"cix":2,"bm":0,"ix":513,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.27,0.53],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.8,0.32],[0,0],[0,0],[0.97,-0.96]],"v":[[0.895,-2.515],[2.495,1.125],[0.365,2.515],[0.315,2.455],[-2.495,-0.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1562.807,316.265],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 514","np":2,"cix":2,"bm":0,"ix":514,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.28,0.53],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.8,0.32],[0,0],[0,0],[0.97,-0.95]],"v":[[0.9,-2.515],[2.5,1.135],[0.37,2.515],[0.32,2.455],[-2.5,-0.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1562.802,400.065],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 515","np":2,"cix":2,"bm":0,"ix":515,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.27,0.53],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.8,0.32],[0,0],[0,0],[0.97,-0.96]],"v":[[0.895,-2.515],[2.495,1.125],[0.365,2.515],[0.315,2.455],[-2.495,-0.255]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1562.807,372.135],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 516","np":2,"cix":2,"bm":0,"ix":516,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.28,0.52],[0,0],[0.61,-0.59],[0,0],[0,0]],"o":[[0,0],[-0.79,0.32],[0,0],[0,0],[0.97,-0.95]],"v":[[0.91,-2.51],[2.5,1.13],[0.38,2.51],[0.32,2.45],[-2.5,-0.26]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1562.802,344.2],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 517","np":2,"cix":2,"bm":0,"ix":517,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.49,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.54],[0,0]],"v":[[2.1,1.6],[2.1,1.73],[-0.5,2.24],[-2.1,-1.4],[2.1,-2.24]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1565.802,315.15],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 518","np":2,"cix":2,"bm":0,"ix":518,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.57],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.705],[2.135,2.275],[-2.135,1.395],[-0.615,-2.275]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1565.767,332.365],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 519","np":2,"cix":2,"bm":0,"ix":519,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.48,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.55],[0,0]],"v":[[2.095,1.605],[2.095,1.735],[-0.505,2.245],[-2.095,-1.395],[2.095,-2.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1565.807,343.085],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 520","np":2,"cix":2,"bm":0,"ix":520,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.56],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.705],[2.135,2.275],[-2.135,1.405],[-0.615,-2.275]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1565.767,360.295],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 521","np":2,"cix":2,"bm":0,"ix":521,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.49,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.55],[0,0]],"v":[[2.1,1.605],[2.1,1.735],[-0.5,2.245],[-2.1,-1.395],[2.1,-2.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1565.802,371.015],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 522","np":2,"cix":2,"bm":0,"ix":522,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.57],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.7],[2.135,2.27],[-2.135,1.39],[-0.615,-2.27]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1565.767,388.23],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 523","np":2,"cix":2,"bm":0,"ix":523,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.8,-0.33],[0,0],[-1.49,0]],"o":[[0,0],[-0.92,0],[0,0],[1.29,-0.54],[0,0]],"v":[[2.1,1.595],[2.1,1.735],[-0.5,2.245],[-2.1,-1.405],[2.1,-2.245]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1565.802,398.955],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 524","np":2,"cix":2,"bm":0,"ix":524,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.98,0],[0,0],[1.31,0.57],[0,0]],"o":[[0,0],[-1.52,0],[0,0],[0.84,0.37]],"v":[[2.135,-1.705],[2.135,2.275],[-2.135,1.395],[-0.615,-2.275]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1565.767,416.165],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 525","np":2,"cix":2,"bm":0,"ix":525,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.51],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.445],[0.585,2.025],[0.505,2.235],[-2.025,1.745],[-2.025,1.615],[-2.025,-2.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1569.927,371.005],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 526","np":2,"cix":2,"bm":0,"ix":526,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.51],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.445],[0.585,2.025],[0.505,2.235],[-2.025,1.745],[-2.025,1.615],[-2.025,-2.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1569.927,343.075],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 527","np":2,"cix":2,"bm":0,"ix":527,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.5],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.45],[0.585,2.02],[0.505,2.23],[-2.025,1.74],[-2.025,1.61],[-2.025,-2.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1569.927,315.14],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 528","np":2,"cix":2,"bm":0,"ix":528,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-1.25,-0.5],[0,0],[0,0],[0.89,0],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.78,-0.32],[0,0],[0,0],[1.43,0]],"v":[[2.025,-1.455],[0.585,2.025],[0.505,2.235],[-2.025,1.745],[-2.025,1.605],[-2.025,-2.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1569.927,398.945],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 529","np":2,"cix":2,"bm":0,"ix":529,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.42],[0,0],[1.6,0],[0,0]],"o":[[0,0],[-1.37,0.62],[0,0],[1.04,0]],"v":[[0.655,-2.31],[2.245,1.34],[-2.245,2.31],[-2.245,-1.66]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1570.146,388.19],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 530","np":2,"cix":2,"bm":0,"ix":530,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.41],[0,0],[1.61,0],[0,0]],"o":[[0,0],[-1.37,0.63],[0,0],[1.04,0]],"v":[[0.65,-2.31],[2.25,1.33],[-2.25,2.31],[-2.25,-1.67]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1570.151,416.13],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 531","np":2,"cix":2,"bm":0,"ix":531,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.41],[0,0],[1.61,0],[0,0]],"o":[[0,0],[-1.37,0.63],[0,0],[1.04,0]],"v":[[0.65,-2.31],[2.25,1.33],[-2.25,2.31],[-2.25,-1.67]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1570.151,332.33],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 532","np":2,"cix":2,"bm":0,"ix":532,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.88,0.41],[0,0],[1.61,0],[0,0]],"o":[[0,0],[-1.37,0.62],[0,0],[1.04,0]],"v":[[0.65,-2.31],[2.25,1.34],[-2.25,2.31],[-2.25,-1.67]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1570.151,360.26],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 533","np":2,"cix":2,"bm":0,"ix":533,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.82],[0,-0.99],[0.35,-0.83],[0.48,-0.54],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97]],"o":[[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.62],[0.38,0.85],[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83],[0,-0.9]],"v":[[-6.395,-2.545],[-4.735,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.755,-4.975],[6.295,-2.795],[6.885,-0.005],[6.335,2.715],[5.175,4.525],[2.895,6.245],[-0.005,6.885],[-2.755,6.315],[-4.795,4.935],[-6.335,2.715],[-6.885,-0.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,407.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 534","np":2,"cix":2,"bm":0,"ix":534,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83],[0,-0.99],[0.36,-0.83],[0.48,-0.53],[0.88,-0.4],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.96],[-0.32,0.79],[-0.72,0.68]],"o":[[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85],[0,0.97],[-0.29,0.66],[-0.62,0.72],[-0.88,0.42],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.35,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59]],"v":[[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79],[6.885,0],[6.325,2.72],[5.175,4.53],[2.895,6.24],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.335,2.71],[-6.885,0],[-6.395,-2.54],[-4.735,-4.99]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,379.64],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 535","np":2,"cix":2,"bm":0,"ix":535,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.78],[-0.73,0.67],[-0.79,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.61],[-0.37,-0.83],[0,-0.99],[0.36,-0.83],[0.48,-0.54],[0.88,-0.41],[1.04,0]],"o":[[-0.76,-0.34],[-0.65,-0.63],[-0.36,-0.83],[0,-0.89],[0.36,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.66,0.61],[0.38,0.85],[0,0.97],[-0.29,0.67],[-0.61,0.72],[-0.88,0.41],[-0.98,0]],"v":[[-2.755,6.315],[-4.795,4.935],[-6.325,2.715],[-6.885,-0.005],[-6.395,-2.535],[-4.725,-4.995],[-2.605,-6.375],[-0.005,-6.885],[2.525,-6.395],[4.745,-4.975],[6.295,-2.795],[6.885,-0.005],[6.325,2.715],[5.165,4.535],[2.895,6.245],[-0.005,6.885]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,351.705],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 536","np":2,"cix":2,"bm":0,"ix":536,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0.48,-0.53],[0.88,-0.41],[1.04,0],[0.84,0.37],[0.58,0.57],[0.36,0.84],[0,0.97],[-0.32,0.79],[-0.72,0.68],[-0.8,0.32],[-0.92,0],[-0.78,-0.32],[-0.63,-0.62],[-0.37,-0.83],[0,-0.99],[0.36,-0.83]],"o":[[-0.62,0.72],[-0.88,0.41],[-0.98,0],[-0.76,-0.34],[-0.65,-0.63],[-0.36,-0.83],[0,-0.9],[0.37,-0.94],[0.61,-0.59],[0.8,-0.33],[0.89,0],[0.84,0.32],[0.65,0.61],[0.38,0.85],[0,0.97],[-0.29,0.66]],"v":[[5.175,4.53],[2.895,6.25],[-0.005,6.89],[-2.755,6.32],[-4.795,4.94],[-6.325,2.72],[-6.885,0],[-6.395,-2.54],[-4.735,-4.99],[-2.605,-6.38],[-0.005,-6.89],[2.525,-6.4],[4.755,-4.97],[6.295,-2.79],[6.885,0],[6.325,2.72]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.949019667682,0.341176470588,0.188235309077,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1567.906,323.77],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 537","np":2,"cix":2,"bm":0,"ix":537,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.96],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.61],[0,0],[0,0],[1.3,0.52]],"v":[[2.49,-0.315],[-0.08,2.355],[-0.26,2.555],[-2.49,1.135],[-2.41,0.925],[-0.97,-2.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1572.922,400.045],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 538","np":2,"cix":2,"bm":0,"ix":538,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.96],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.62],[0,0],[0,0],[1.3,0.52]],"v":[[2.49,-0.315],[-0.08,2.355],[-0.26,2.555],[-2.49,1.125],[-2.41,0.915],[-0.97,-2.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1572.922,372.115],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 539","np":2,"cix":2,"bm":0,"ix":539,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.96],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.62],[0,0],[0,0],[1.3,0.52]],"v":[[2.49,-0.315],[-0.08,2.355],[-0.26,2.555],[-2.49,1.125],[-2.41,0.915],[-0.97,-2.555]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1572.922,316.245],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 540","np":2,"cix":2,"bm":0,"ix":540,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.99,-0.95],[0,0],[0,0],[0.84,0.32],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.63,-0.61],[0,0],[0,0],[1.3,0.51]],"v":[[2.495,-0.32],[-0.085,2.35],[-0.275,2.55],[-2.495,1.13],[-2.415,0.92],[-0.975,-2.55]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1572.927,344.18],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 541","np":2,"cix":2,"bm":0,"ix":541,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.62,0.72],[0,0],[1.36,-0.61],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.4]],"v":[[-0.29,-2.68],[2.57,0.09],[-0.98,2.68],[-2.57,-0.97]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1573.372,386.85],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 542","np":2,"cix":2,"bm":0,"ix":542,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.62,0.72],[0,0],[1.36,-0.61],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.41]],"v":[[-0.295,-2.68],[2.575,0.09],[-0.975,2.68],[-2.575,-0.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1573.376,414.78],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 543","np":2,"cix":2,"bm":0,"ix":543,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.61,0.72],[0,0],[1.36,-0.62],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.41]],"v":[[-0.305,-2.68],[2.575,0.08],[-0.975,2.68],[-2.575,-0.97]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1573.376,358.92],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 544","np":2,"cix":2,"bm":0,"ix":544,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.62,0.72],[0,0],[1.36,-0.61],[0,0]],"o":[[0,0],[-0.98,1.09],[0,0],[0.88,-0.41]],"v":[[-0.295,-2.68],[2.575,0.09],[-0.975,2.68],[-2.575,-0.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1573.376,330.98],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 545","np":2,"cix":2,"bm":0,"ix":545,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.31],[0,0],[0,0],[0.65,0.62],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.82],[0,0],[0,0],[1.03,0.97]],"v":[[2.59,0.925],[-1,2.495],[-1.05,2.525],[-2.59,0.345],[-2.41,0.145],[0.16,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1575.251,402.255],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 546","np":2,"cix":2,"bm":0,"ix":546,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.31],[0,0],[0,0],[0.65,0.61],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.83],[0,0],[0,0],[1.03,0.97]],"v":[[2.59,0.925],[-1,2.495],[-1.05,2.525],[-2.59,0.345],[-2.41,0.145],[0.16,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1575.251,374.325],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 547","np":2,"cix":2,"bm":0,"ix":547,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.3],[0,0],[0,0],[0.66,0.61],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.83],[0,0],[0,0],[1.02,0.98]],"v":[[2.595,0.925],[-0.995,2.495],[-1.045,2.525],[-2.595,0.345],[-2.405,0.145],[0.175,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1575.247,346.385],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 548","np":2,"cix":2,"bm":0,"ix":548,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.57,-1.31],[0,0],[0,0],[0.65,0.61],[0,0],[0,0]],"o":[[0,0],[0,0],[-0.37,-0.83],[0,0],[0,0],[1.03,0.97]],"v":[[2.59,0.925],[-1,2.495],[-1.05,2.525],[-2.59,0.345],[-2.41,0.145],[0.16,-2.525]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1575.251,318.455],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 549","np":2,"cix":2,"bm":0,"ix":549,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.81,-0.89],[0,0],[-0.29,0.66]],"o":[[0,0],[-0.48,1.12],[0,0],[0.48,-0.53],[0,0]],"v":[[-1.05,-2.19],[2.41,-0.75],[0.46,2.29],[-2.41,-0.48],[-1.26,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1575.491,328.78],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 550","np":2,"cix":2,"bm":0,"ix":550,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.81,-0.89],[0,0],[-0.29,0.67]],"o":[[0,0],[-0.48,1.12],[0,0],[0.48,-0.54],[0,0]],"v":[[-1.045,-2.19],[2.415,-0.75],[0.465,2.29],[-2.415,-0.47],[-1.255,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1575.486,356.71],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 551","np":2,"cix":2,"bm":0,"ix":551,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.81,-0.89],[0,0],[-0.29,0.66]],"o":[[0,0],[-0.48,1.12],[0,0],[0.48,-0.54],[0,0]],"v":[[-1.05,-2.19],[2.41,-0.75],[0.46,2.29],[-2.41,-0.48],[-1.25,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1575.491,412.58],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 552","np":2,"cix":2,"bm":0,"ix":552,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.82,-0.89],[0,0],[-0.29,0.66]],"o":[[0,0],[-0.48,1.13],[0,0],[0.48,-0.53],[0,0]],"v":[[-1.05,-2.19],[2.41,-0.76],[0.45,2.29],[-2.41,-0.48],[-1.26,-2.29]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1575.491,384.65],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 553","np":2,"cix":2,"bm":0,"ix":553,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.35,-0.83],[0,0]],"v":[[-1.565,-2.13],[2.265,-2.13],[1.395,2.13],[-2.065,0.69],[-2.265,0.59],[-1.715,-2.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.506,409.7],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 554","np":2,"cix":2,"bm":0,"ix":554,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.487,405.375],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 555","np":2,"cix":2,"bm":0,"ix":555,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.36,-0.83],[0,0]],"v":[[-1.56,-2.125],[2.27,-2.125],[1.4,2.125],[-2.06,0.695],[-2.27,0.595],[-1.71,-2.125]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.501,381.765],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 556","np":2,"cix":2,"bm":0,"ix":556,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.487,377.445],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 557","np":2,"cix":2,"bm":0,"ix":557,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.36,-0.83],[0,0]],"v":[[-1.56,-2.13],[2.27,-2.13],[1.4,2.13],[-2.06,0.69],[-2.27,0.59],[-1.71,-2.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.501,353.83],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 558","np":2,"cix":2,"bm":0,"ix":558,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.487,349.505],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 559","np":2,"cix":2,"bm":0,"ix":559,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0.56,-1.31],[0,0],[0,0],[0,0.97]],"o":[[0,0],[0,1.51],[0,0],[0,0],[0.36,-0.83],[0,0]],"v":[[-1.56,-2.13],[2.27,-2.13],[1.4,2.13],[-2.06,0.69],[-2.27,0.59],[-1.71,-2.13]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.913725550034,0.427451010311,0.949019667682,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.501,325.9],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 560","np":2,"cix":2,"bm":0,"ix":560,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.56],[0,0],[0,0],[0.38,0.85],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-0.99],[0,0],[0,0],[0.6,1.34]],"v":[[2.285,2.195],[-1.545,2.195],[-1.695,2.195],[-2.285,-0.595],[-2.235,-0.625],[1.355,-2.195]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.560784313725,0.188235309077,0.074509803922,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1576.487,321.575],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 561","np":2,"cix":2,"bm":0,"ix":561,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-73.175,-43.24],[-73.175,-48.71],[-78.355,-48.71],[-78.355,-65.83],[-86.825,-65.83],[-86.825,-48.71],[-92.005,-48.71],[-92.005,-43.24],[-86.825,-43.24],[-86.825,34.88],[-78.355,34.88],[-78.355,-43.24]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-46.585,2.06],[-46.585,-3.41],[-46.585,-65.83],[-55.055,-65.83],[-55.055,-3.41],[-55.055,2.06],[-55.055,34.88],[-46.585,34.88]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-14.825,-30.24],[-14.825,-35.71],[-14.825,-65.83],[-23.295,-65.83],[-23.295,-35.71],[-23.295,-30.24],[-23.295,34.88],[-14.825,34.88]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":0,"k":{"i":[[0,-7.18],[0,0],[7.18,0],[0,0],[0,7.18],[0,0],[-7.18,0],[0,0]],"o":[[0,0],[0,7.18],[0,0],[-7.18,0],[0,0],[0,-7.18],[0,0],[7.18,0]],"v":[[105.525,-65.3],[105.525,65.29],[92.475,78.35],[-92.475,78.35],[-105.525,65.29],[-105.525,-65.3],[-92.475,-78.35],[92.475,-78.35]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[-0.48,1.13],[0,1.51],[0.6,1.34],[1.03,0.97],[1.3,0.52],[1.43,0],[1.29,-0.55],[0.97,-0.96],[0.56,-1.41],[0,-1.43],[-0.57,-1.32],[-1.03,-0.99],[-1.23,-0.52],[-1.52,0],[-1.37,0.62],[-0.98,1.09]],"o":[[0.56,-1.31],[0,-1.56],[-0.57,-1.31],[-0.99,-0.96],[-1.25,-0.51],[-1.49,0],[-1.27,0.53],[-1.07,1.03],[-0.51,1.25],[0,1.53],[0.57,1.33],[0.94,0.92],[1.31,0.57],[1.6,0],[1.36,-0.61],[0.82,-0.89]],"v":[[92.515,4.82],[93.385,0.57],[92.455,-3.82],[90.025,-7.27],[86.565,-9.51],[82.515,-10.3],[78.315,-9.45],[74.925,-7.19],[72.445,-3.49],[71.655,0.57],[72.545,4.87],[74.965,8.37],[78.245,10.55],[82.515,11.43],[87.005,10.46],[90.555,7.87]],"c":true},"ix":2},"nm":"Path 5","mn":"ADBE Vector Shape - Group","hd":false},{"ind":5,"ty":"sh","ix":6,"ks":{"a":0,"k":{"i":[[0.6,1.34],[1.03,0.97],[1.3,0.52],[1.43,0],[1.29,-0.55],[0.97,-0.96],[0.56,-1.41],[0,-1.43],[-0.57,-1.32],[-1.03,-0.99],[-1.23,-0.52],[-1.52,0],[-1.37,0.62],[-0.98,1.09],[-0.48,1.13],[0,1.51]],"o":[[-0.57,-1.31],[-0.99,-0.96],[-1.25,-0.51],[-1.49,0],[-1.27,0.53],[-1.07,1.03],[-0.51,1.25],[0,1.53],[0.57,1.33],[0.94,0.92],[1.31,0.57],[1.6,0],[1.36,-0.61],[0.82,-0.89],[0.56,-1.31],[0,-1.56]],"v":[[56.955,-3.82],[54.525,-7.27],[51.065,-9.51],[47.015,-10.3],[42.815,-9.45],[39.425,-7.19],[36.945,-3.49],[36.155,0.57],[37.045,4.87],[39.465,8.37],[42.745,10.55],[47.015,11.43],[51.505,10.46],[55.055,7.87],[57.015,4.82],[57.885,0.57]],"c":true},"ix":2},"nm":"Path 6","mn":"ADBE Vector Shape - Group","hd":false},{"ind":6,"ty":"sh","ix":7,"ks":{"a":0,"k":{"i":[[-0.58,-1.32],[-1.02,-0.99],[-1.23,-0.52],[-1.52,0],[-1.37,0.63],[-0.98,1.09],[-0.48,1.12],[0,1.51],[0.6,1.34],[1.03,0.97],[1.3,0.52],[1.43,0],[1.29,-0.54],[0.97,-0.95],[0.56,-1.4],[0,-1.44]],"o":[[0.56,1.32],[0.94,0.92],[1.31,0.57],[1.61,0],[1.36,-0.61],[0.81,-0.89],[0.56,-1.31],[0,-1.56],[-0.57,-1.31],[-0.99,-0.96],[-1.25,-0.5],[-1.49,0],[-1.28,0.53],[-1.06,1.04],[-0.51,1.25],[0,1.53]],"v":[[72.555,32.81],[74.965,36.31],[78.245,38.49],[82.515,39.37],[87.015,38.39],[90.565,35.8],[92.515,32.76],[93.385,28.5],[92.455,24.11],[90.025,20.66],[86.565,18.42],[82.515,17.64],[78.315,18.48],[74.915,20.74],[72.445,24.44],[71.655,28.5]],"c":true},"ix":2},"nm":"Path 7","mn":"ADBE Vector Shape - Group","hd":false},{"ind":7,"ty":"sh","ix":8,"ks":{"a":0,"k":{"i":[[1.03,0.97],[1.3,0.52],[1.43,0],[1.29,-0.54],[0.97,-0.96],[0.56,-1.41],[0,-1.44],[-0.57,-1.32],[-1.03,-0.99],[-1.23,-0.52],[-1.52,0],[-1.37,0.63],[-0.98,1.09],[-0.48,1.12],[0,1.51],[0.6,1.34]],"o":[[-0.99,-0.96],[-1.25,-0.5],[-1.49,0],[-1.27,0.53],[-1.07,1.03],[-0.51,1.25],[0,1.53],[0.57,1.33],[0.94,0.92],[1.31,0.57],[1.61,0],[1.36,-0.61],[0.81,-0.89],[0.56,-1.31],[0,-1.56],[-0.57,-1.31]],"v":[[54.525,-63.14],[51.065,-65.38],[47.015,-66.16],[42.815,-65.32],[39.425,-63.06],[36.945,-59.36],[36.155,-55.3],[37.045,-51],[39.465,-47.49],[42.745,-45.31],[47.015,-44.43],[51.515,-45.41],[55.065,-48],[57.015,-51.04],[57.885,-55.3],[56.955,-59.69]],"c":true},"ix":2},"nm":"Path 8","mn":"ADBE Vector Shape - Group","hd":false},{"ind":8,"ty":"sh","ix":9,"ks":{"a":0,"k":{"i":[[-0.98,1.09],[-0.48,1.12],[0,1.51],[0.6,1.34],[1.03,0.97],[1.3,0.52],[1.43,0],[1.29,-0.54],[0.97,-0.96],[0.56,-1.41],[0,-1.44],[-0.57,-1.32],[-1.03,-0.99],[-1.23,-0.52],[-1.52,0],[-1.37,0.63]],"o":[[0.81,-0.89],[0.56,-1.31],[0,-1.56],[-0.57,-1.31],[-0.99,-0.96],[-1.25,-0.5],[-1.49,0],[-1.27,0.53],[-1.07,1.03],[-0.51,1.25],[0,1.53],[0.57,1.33],[0.94,0.92],[1.31,0.57],[1.61,0],[1.36,-0.61]],"v":[[19.565,-48],[21.515,-51.04],[22.385,-55.3],[21.455,-59.69],[19.025,-63.14],[15.565,-65.38],[11.515,-66.16],[7.315,-65.32],[3.925,-63.06],[1.445,-59.36],[0.655,-55.3],[1.545,-51],[3.965,-47.49],[7.245,-45.31],[11.515,-44.43],[16.015,-45.41]],"c":true},"ix":2},"nm":"Path 9","mn":"ADBE Vector Shape - Group","hd":false},{"ind":9,"ty":"sh","ix":10,"ks":{"a":0,"k":{"i":[[-1.23,-0.52],[-1.52,0],[-1.37,0.63],[-0.98,1.09],[-0.48,1.12],[0,1.51],[0.6,1.34],[1.03,0.97],[1.3,0.52],[1.43,0],[1.29,-0.54],[0.97,-0.95],[0.56,-1.4],[0,-1.44],[-0.58,-1.32],[-1.02,-0.99]],"o":[[1.31,0.57],[1.61,0],[1.36,-0.61],[0.81,-0.89],[0.56,-1.31],[0,-1.56],[-0.57,-1.31],[-0.99,-0.96],[-1.25,-0.5],[-1.49,0],[-1.28,0.53],[-1.06,1.04],[-0.51,1.25],[0,1.53],[0.56,1.32],[0.94,0.92]],"v":[[42.745,38.49],[47.015,39.37],[51.515,38.39],[55.065,35.8],[57.015,32.76],[57.885,28.5],[56.955,24.11],[54.525,20.66],[51.065,18.42],[47.015,17.64],[42.815,18.48],[39.415,20.74],[36.945,24.44],[36.155,28.5],[37.055,32.81],[39.465,36.31]],"c":true},"ix":2},"nm":"Path 10","mn":"ADBE Vector Shape - Group","hd":false},{"ind":10,"ty":"sh","ix":11,"ks":{"a":0,"k":{"i":[[0.6,1.34],[1.03,0.97],[1.3,0.52],[1.43,0],[1.29,-0.55],[0.97,-0.96],[0.56,-1.41],[0,-1.43],[-0.57,-1.32],[-1.03,-0.99],[-1.23,-0.52],[-1.52,0],[-1.37,0.62],[-0.98,1.09],[-0.48,1.13],[0,1.51]],"o":[[-0.57,-1.31],[-0.99,-0.96],[-1.25,-0.51],[-1.49,0],[-1.27,0.53],[-1.07,1.03],[-0.51,1.25],[0,1.53],[0.57,1.33],[0.94,0.92],[1.31,0.57],[1.6,0],[1.36,-0.61],[0.82,-0.89],[0.56,-1.31],[0,-1.56]],"v":[[21.455,-3.82],[19.025,-7.27],[15.565,-9.51],[11.515,-10.3],[7.315,-9.45],[3.925,-7.19],[1.445,-3.49],[0.655,0.57],[1.545,4.87],[3.965,8.37],[7.245,10.55],[11.515,11.43],[16.005,10.46],[19.555,7.87],[21.515,4.82],[22.385,0.57]],"c":true},"ix":2},"nm":"Path 11","mn":"ADBE Vector Shape - Group","hd":false},{"ind":11,"ty":"sh","ix":12,"ks":{"a":0,"k":{"i":[[1.03,0.97],[1.3,0.52],[1.43,0],[1.29,-0.54],[0.97,-0.96],[0.56,-1.41],[0,-1.44],[-0.57,-1.32],[-1.03,-0.99],[-1.23,-0.52],[-1.52,0],[-1.37,0.63],[-0.98,1.09],[-0.48,1.12],[0,1.51],[0.6,1.34]],"o":[[-0.99,-0.96],[-1.25,-0.5],[-1.49,0],[-1.27,0.53],[-1.07,1.03],[-0.51,1.25],[0,1.53],[0.57,1.33],[0.94,0.92],[1.31,0.57],[1.61,0],[1.36,-0.61],[0.81,-0.89],[0.56,-1.31],[0,-1.56],[-0.57,-1.31]],"v":[[90.025,-63.14],[86.565,-65.38],[82.515,-66.16],[78.315,-65.32],[74.925,-63.06],[72.445,-59.36],[71.655,-55.3],[72.545,-51],[74.965,-47.49],[78.245,-45.31],[82.515,-44.43],[87.015,-45.41],[90.565,-48],[92.515,-51.04],[93.385,-55.3],[92.455,-59.69]],"c":true},"ix":2},"nm":"Path 12","mn":"ADBE Vector Shape - Group","hd":false},{"ind":12,"ty":"sh","ix":13,"ks":{"a":0,"k":{"i":[[0,1.51],[0.6,1.34],[1.02,0.98],[1.3,0.51],[1.43,0],[1.29,-0.55],[0.97,-0.95],[0.56,-1.4],[0,-1.43],[-0.58,-1.32],[-1.02,-0.98],[-1.23,-0.52],[-1.52,0],[-1.37,0.62],[-0.98,1.09],[-0.48,1.12]],"o":[[0,-1.56],[-0.57,-1.3],[-0.99,-0.95],[-1.25,-0.51],[-1.48,0],[-1.28,0.52],[-1.06,1.04],[-0.51,1.25],[0,1.53],[0.56,1.33],[0.94,0.92],[1.31,0.56],[1.61,0],[1.36,-0.62],[0.81,-0.89],[0.56,-1.31]],"v":[[93.385,-27.37],[92.455,-31.76],[90.035,-35.21],[86.565,-37.44],[82.515,-38.23],[78.325,-37.38],[74.915,-35.13],[72.445,-31.43],[71.655,-27.37],[72.555,-23.06],[74.965,-19.56],[78.245,-17.37],[82.515,-16.5],[87.015,-17.47],[90.565,-20.07],[92.515,-23.11]],"c":true},"ix":2},"nm":"Path 13","mn":"ADBE Vector Shape - Group","hd":false},{"ind":13,"ty":"sh","ix":14,"ks":{"a":0,"k":{"i":[[0.56,-1.4],[0,-1.43],[-0.57,-1.32],[-1.03,-0.99],[-1.23,-0.52],[-1.52,0],[-1.37,0.63],[-0.98,1.09],[-0.48,1.13],[0,1.51],[0.6,1.34],[1.02,0.99],[1.3,0.51],[1.43,0],[1.29,-0.55],[0.97,-0.95]],"o":[[-0.51,1.25],[0,1.53],[0.57,1.33],[0.94,0.92],[1.31,0.56],[1.6,0],[1.36,-0.61],[0.82,-0.89],[0.56,-1.31],[0,-1.56],[-0.57,-1.31],[-0.99,-0.95],[-1.25,-0.51],[-1.48,0],[-1.28,0.52],[-1.06,1.05]],"v":[[1.445,52.38],[0.655,56.44],[1.545,60.74],[3.965,64.24],[7.245,66.43],[11.515,67.3],[16.005,66.33],[19.555,63.74],[21.515,60.69],[22.385,56.44],[21.455,52.05],[19.035,48.59],[15.565,46.36],[11.515,45.57],[7.325,46.42],[3.915,48.67]],"c":true},"ix":2},"nm":"Path 14","mn":"ADBE Vector Shape - Group","hd":false},{"ind":14,"ty":"sh","ix":15,"ks":{"a":0,"k":{"i":[[0,1.51],[0.6,1.34],[1.02,0.98],[1.3,0.51],[1.43,0],[1.29,-0.55],[0.97,-0.95],[0.56,-1.4],[0,-1.43],[-0.58,-1.32],[-1.02,-0.98],[-1.23,-0.52],[-1.52,0],[-1.37,0.62],[-0.98,1.09],[-0.48,1.12]],"o":[[0,-1.56],[-0.57,-1.3],[-0.99,-0.95],[-1.25,-0.51],[-1.48,0],[-1.28,0.52],[-1.06,1.04],[-0.51,1.25],[0,1.53],[0.56,1.33],[0.94,0.92],[1.31,0.56],[1.61,0],[1.36,-0.62],[0.81,-0.89],[0.56,-1.31]],"v":[[57.885,-27.37],[56.955,-31.76],[54.535,-35.21],[51.065,-37.44],[47.015,-38.23],[42.825,-37.38],[39.415,-35.13],[36.945,-31.43],[36.155,-27.37],[37.055,-23.06],[39.465,-19.56],[42.745,-17.37],[47.015,-16.5],[51.515,-17.47],[55.065,-20.07],[57.015,-23.11]],"c":true},"ix":2},"nm":"Path 15","mn":"ADBE Vector Shape - Group","hd":false},{"ind":15,"ty":"sh","ix":16,"ks":{"a":0,"k":{"i":[[1.03,0.97],[1.3,0.52],[1.43,0],[1.29,-0.54],[0.97,-0.95],[0.56,-1.4],[0,-1.44],[-0.58,-1.32],[-1.02,-0.99],[-1.23,-0.52],[-1.52,0],[-1.37,0.63],[-0.98,1.09],[-0.48,1.12],[0,1.51],[0.6,1.34]],"o":[[-0.99,-0.96],[-1.25,-0.5],[-1.49,0],[-1.28,0.53],[-1.06,1.04],[-0.51,1.25],[0,1.53],[0.56,1.32],[0.94,0.92],[1.31,0.57],[1.61,0],[1.36,-0.61],[0.81,-0.89],[0.56,-1.31],[0,-1.56],[-0.57,-1.31]],"v":[[19.025,20.66],[15.565,18.42],[11.515,17.64],[7.315,18.48],[3.915,20.74],[1.445,24.44],[0.655,28.5],[1.555,32.81],[3.965,36.31],[7.245,38.49],[11.515,39.37],[16.015,38.39],[19.565,35.8],[21.515,32.76],[22.385,28.5],[21.455,24.11]],"c":true},"ix":2},"nm":"Path 16","mn":"ADBE Vector Shape - Group","hd":false},{"ind":16,"ty":"sh","ix":17,"ks":{"a":0,"k":{"i":[[-1.23,-0.52],[-1.52,0],[-1.37,0.63],[-0.98,1.09],[-0.48,1.13],[0,1.51],[0.6,1.34],[1.02,0.99],[1.3,0.51],[1.43,0],[1.29,-0.55],[0.97,-0.95],[0.56,-1.4],[0,-1.43],[-0.57,-1.32],[-1.03,-0.99]],"o":[[1.31,0.56],[1.6,0],[1.36,-0.61],[0.82,-0.89],[0.56,-1.31],[0,-1.56],[-0.57,-1.31],[-0.99,-0.95],[-1.25,-0.51],[-1.48,0],[-1.28,0.52],[-1.06,1.05],[-0.51,1.25],[0,1.53],[0.57,1.33],[0.94,0.92]],"v":[[78.245,66.43],[82.515,67.3],[87.005,66.33],[90.555,63.74],[92.515,60.69],[93.385,56.44],[92.455,52.05],[90.035,48.59],[86.565,46.36],[82.515,45.57],[78.325,46.42],[74.915,48.67],[72.445,52.38],[71.655,56.44],[72.545,60.74],[74.965,64.24]],"c":true},"ix":2},"nm":"Path 17","mn":"ADBE Vector Shape - Group","hd":false},{"ind":17,"ty":"sh","ix":18,"ks":{"a":0,"k":{"i":[[0.97,-0.95],[0.56,-1.4],[0,-1.43],[-0.57,-1.32],[-1.03,-0.99],[-1.23,-0.52],[-1.52,0],[-1.37,0.63],[-0.98,1.09],[-0.48,1.13],[0,1.51],[0.6,1.34],[1.02,0.99],[1.3,0.51],[1.43,0],[1.29,-0.55]],"o":[[-1.06,1.05],[-0.51,1.25],[0,1.53],[0.57,1.33],[0.94,0.92],[1.31,0.56],[1.6,0],[1.36,-0.61],[0.82,-0.89],[0.56,-1.31],[0,-1.56],[-0.57,-1.31],[-0.99,-0.95],[-1.25,-0.51],[-1.48,0],[-1.28,0.52]],"v":[[39.415,48.67],[36.945,52.38],[36.155,56.44],[37.045,60.74],[39.465,64.24],[42.745,66.43],[47.015,67.3],[51.505,66.33],[55.055,63.74],[57.015,60.69],[57.885,56.44],[56.955,52.05],[54.535,48.59],[51.065,46.36],[47.015,45.57],[42.825,46.42]],"c":true},"ix":2},"nm":"Path 18","mn":"ADBE Vector Shape - Group","hd":false},{"ind":18,"ty":"sh","ix":19,"ks":{"a":0,"k":{"i":[[-0.58,-1.32],[-1.02,-0.98],[-1.23,-0.52],[-1.52,0],[-1.37,0.62],[-0.98,1.09],[-0.48,1.12],[0,1.51],[0.6,1.34],[1.02,0.98],[1.3,0.51],[1.43,0],[1.29,-0.55],[0.97,-0.95],[0.56,-1.4],[0,-1.43]],"o":[[0.56,1.33],[0.94,0.92],[1.31,0.56],[1.61,0],[1.36,-0.62],[0.81,-0.89],[0.56,-1.31],[0,-1.56],[-0.57,-1.3],[-0.99,-0.95],[-1.25,-0.51],[-1.48,0],[-1.28,0.52],[-1.06,1.04],[-0.51,1.25],[0,1.53]],"v":[[1.555,-23.06],[3.965,-19.56],[7.245,-17.37],[11.515,-16.5],[16.015,-17.47],[19.565,-20.07],[21.515,-23.11],[22.385,-27.37],[21.455,-31.76],[19.035,-35.21],[15.565,-37.44],[11.515,-38.23],[7.325,-37.38],[3.915,-35.13],[1.445,-31.43],[0.655,-27.37]],"c":true},"ix":2},"nm":"Path 19","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.443137284821,0.164705882353,0.462745127958,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1485.386,379.07],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 562","np":21,"cix":2,"bm":0,"ix":562,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,7.18],[0,0],[7.18,0],[0,0],[0,-7.18],[0,0],[-7.18,0],[0,0]],"o":[[0,0],[0,-7.18],[0,0],[-7.18,0],[0,0],[0,7.18],[0,0],[7.18,0]],"v":[[105.325,66.35],[105.325,-64.24],[92.275,-77.29],[-92.675,-77.29],[-105.725,-64.24],[-105.725,66.35],[-92.675,79.41],[92.275,79.41]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,-12.32],[0,0],[12.31,0],[0,0],[0,12.32],[0,0],[-12.31,0],[0,0]],"o":[[0,0],[0,12.32],[0,0],[-12.31,0],[0,0],[0,-12.32],[0,0],[12.31,0]],"v":[[114.685,-63.02],[114.685,63.02],[92.295,85.41],[-92.295,85.41],[-114.685,63.02],[-114.685,-63.02],[-92.295,-85.41],[92.295,-85.41]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"mm","mm":1,"nm":"Merge Paths 1","mn":"ADBE Vector Filter - Merge","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1485.587,378.01],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 563","np":4,"cix":2,"bm":0,"ix":563,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-13.41],[0,0]],"o":[[8.82,0],[0,0],[0,0]],"v":[[-10.765,-14.47],[10.765,1.06],[10.765,14.47]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1230.386,344.07],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 564","np":2,"cix":2,"bm":0,"ix":564,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,-13.41],[0,0]],"o":[[8.82,0],[0,0],[0,0]],"v":[[-10.765,-14.47],[10.765,1.06],[10.765,14.47]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1252.386,344.07],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 565","np":2,"cix":2,"bm":0,"ix":565,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,19.05],[0,0],[-12.71,0],[0,0]],"o":[[-6.7,0],[0,0],[0,-8.83],[0,0],[0,0]],"v":[[7.765,54.715],[-8.825,36.715],[-8.825,-39.875],[7.065,-55.765],[8.825,-55.765]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1165.796,427.005],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 566","np":2,"cix":2,"bm":0,"ix":566,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,-6.36],[8.82,0],[0,11.65]],"o":[[0,0],[12.36,0],[0,7.06],[-9.18,0],[0,0]],"v":[[-12,-12.885],[-0.71,-12.885],[12,0.535],[1.06,12.885],[-12,-1.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1186.622,384.125],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 567","np":2,"cix":2,"bm":0,"ix":567,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-10.58,0],[0,0],[0,0],[0,0],[0,-13.41],[0,0]],"o":[[0,0],[0.71,-34.59],[0,0],[0,0],[0,0],[8.82,0],[0,0],[0,0]],"v":[[-55.765,20.82],[-55.765,15.53],[-18.005,-20.82],[-10.765,-20.82],[11.235,-20.82],[34.235,-20.82],[55.765,-5.29],[55.765,8.12]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1230.386,350.42],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 568","np":2,"cix":2,"bm":0,"ix":568,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.21,0],[0,3.2],[0,0],[-3.2,0],[-1.06,-1.05],[0,-1.6],[0,0]],"o":[[-3.2,0],[0,0],[0,-3.2],[1.6,0],[1.06,1.05],[0,0],[0,3.2]],"v":[[-0.005,18.175],[-5.825,12.355],[-5.825,-12.355],[-0.005,-18.175],[4.115,-16.465],[5.825,-12.355],[5.825,12.355]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1286.447,377.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 569","np":2,"cix":2,"bm":0,"ix":569,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.21,0],[0,3.2],[0,0],[-3.2,0],[-1.06,-1.05],[0,-1.6],[0,0]],"o":[[-3.2,0],[0,0],[0,-3.2],[1.6,0],[1.06,1.05],[0,0],[0,3.2]],"v":[[-0.005,18.175],[-5.825,12.355],[-5.825,-12.355],[-0.005,-18.175],[4.115,-16.465],[5.825,-12.355],[5.825,12.355]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1263.447,377.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 570","np":2,"cix":2,"bm":0,"ix":570,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.21,0],[0,3.2],[0,0],[-3.2,0],[-1.06,-1.05],[0,-1.6],[0,0]],"o":[[-3.2,0],[0,0],[0,-3.2],[1.6,0],[1.06,1.05],[0,0],[0,3.2]],"v":[[-0.005,18.175],[-5.825,12.355],[-5.825,-12.355],[-0.005,-18.175],[4.115,-16.465],[5.825,-12.355],[5.825,12.355]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1240.447,377.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 571","np":2,"cix":2,"bm":0,"ix":571,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.6],[0,0],[3.21,0],[0,3.2],[0,0],[-3.2,0],[-1.06,-1.05]],"o":[[0,0],[0,3.2],[-3.2,0],[0,0],[0,-3.2],[1.6,0],[1.06,1.05]],"v":[[5.825,-12.355],[5.825,12.355],[-0.005,18.175],[-5.825,12.355],[-5.825,-12.355],[-0.005,-18.175],[4.115,-16.465]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1240.447,377.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 572","np":2,"cix":2,"bm":0,"ix":572,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.6],[0,0],[3.21,0],[0,3.2],[0,0],[-3.2,0],[-1.06,-1.05]],"o":[[0,0],[0,3.2],[-3.2,0],[0,0],[0,-3.2],[1.6,0],[1.06,1.05]],"v":[[5.825,-12.355],[5.825,12.355],[-0.005,18.175],[-5.825,12.355],[-5.825,-12.355],[-0.005,-18.175],[4.115,-16.465]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1263.447,377.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 573","np":2,"cix":2,"bm":0,"ix":573,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-1.6],[0,0],[3.21,0],[0,3.2],[0,0],[-3.2,0],[-1.06,-1.05]],"o":[[0,0],[0,3.2],[-3.2,0],[0,0],[0,-3.2],[1.6,0],[1.06,1.05]],"v":[[5.825,-12.355],[5.825,12.355],[-0.005,18.175],[-5.825,12.355],[-5.825,-12.355],[-0.005,-18.175],[4.115,-16.465]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.811764765721,0.298039215686,0.850980451995,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1286.447,377.775],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 574","np":2,"cix":2,"bm":0,"ix":574,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.2,0],[0,0],[0,13.2],[0,0],[-13.2,0],[0,0],[0,-13.2],[0,0]],"o":[[0,0],[-13.2,0],[0,0],[0,-13.2],[0,0],[13.2,0],[0,0],[0,13.2]],"v":[[198.71,123.175],[-198.71,123.175],[-222.71,99.175],[-222.71,-99.175],[-198.71,-123.175],[198.71,-123.175],[222.71,-99.175],[222.71,99.175]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":1,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[1396.622,557.715],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 575","np":2,"cix":2,"bm":0,"ix":575,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,-13.2],[0,0],[13.2,0],[0,0],[0,13.2],[0,0],[-13.2,0],[0,0]],"o":[[0,0],[0,13.2],[0,0],[-13.2,0],[0,0],[0,-13.2],[0,0],[13.2,0]],"v":[[222.71,-99.175],[222.71,99.175],[198.71,123.175],[-198.71,123.175],[-222.71,99.175],[-222.71,-99.175],[-198.71,-123.175],[198.71,-123.175]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.129411764706,0.250980392157,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1396.622,557.715],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 576","np":2,"cix":2,"bm":0,"ix":576,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":114,"st":0,"ct":1,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Comp 1","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[187.5,112,0],"ix":2,"l":2},"a":{"a":0,"k":[262.5,200,0],"ix":1,"l":2},"s":{"a":0,"k":[72,72,100],"ix":6,"l":2}},"ao":0,"w":525,"h":400,"ip":0,"op":114,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/assets/emojis.js b/assets/emojis/common.js similarity index 60% rename from assets/emojis.js rename to assets/emojis/common.js index 30d2839f3b86..e8a8b15c2dd5 100644 --- a/assets/emojis.js +++ b/assets/emojis/common.js @@ -1,58 +1,13 @@ -import Smiley from './images/emoji.svg'; -import AnimalsAndNature from './images/emojiCategoryIcons/plant.svg'; -import FoodAndDrink from './images/emojiCategoryIcons/hamburger.svg'; -import TravelAndPlaces from './images/emojiCategoryIcons/plane.svg'; -import Activities from './images/emojiCategoryIcons/soccer-ball.svg'; -import Objects from './images/emojiCategoryIcons/light-bulb.svg'; -import Symbols from './images/emojiCategoryIcons/peace-sign.svg'; -import Flags from './images/emojiCategoryIcons/flag.svg'; +import Smiley from '../images/emoji.svg'; +import AnimalsAndNature from '../images/emojiCategoryIcons/plant.svg'; +import FoodAndDrink from '../images/emojiCategoryIcons/hamburger.svg'; +import TravelAndPlaces from '../images/emojiCategoryIcons/plane.svg'; +import Activities from '../images/emojiCategoryIcons/soccer-ball.svg'; +import Objects from '../images/emojiCategoryIcons/light-bulb.svg'; +import Symbols from '../images/emojiCategoryIcons/peace-sign.svg'; +import Flags from '../images/emojiCategoryIcons/flag.svg'; +import FrequentlyUsed from '../images/history.svg'; -/* - * This list is generated from the code here https://github.com/github/gemoji/blob/master/db/emoji.json - * Each code is then converted to hex by replacing the "U+" with "0x" - * Each hex is then converted to a string using this function (each section is defined as "emojis" in this function) - * const emojiData = require('./gemoji.json'); - * const { getEmojiUnicode } = require('./EmojiUtils'); - * const emojisGroupedByCategory = _.groupBy(emojiData, 'category'); - * const skinTones = ['1f3fb', '1f3fc', '1f3fd', '1f3fe', '1f3ff']; - * const emojisList = [] - * for(let category in emojisGroupedByCategory) { - * let categoryName = category.replace(' & ', 'And'); - * categoryName = categoryName.charAt(0).toLowerCase() + categoryName.slice(1); - * emojisList.push({ - * code: categoryName, - * header: true - * }); - * - * const emojisPerCategory = emojisGroupedByCategory[category]; - * for(let i = 0; i < emojisPerCategory.length; i++) { - * const emoji = emojisPerCategory[i]; - * let keywords = [...emoji.tags , ...emoji.aliases]; - * if(oldEmojiMap[emoji.emoji]) { // old Emoji Map is old assets/emojis.js data - * keywords = keywords.concat(oldEmojiMap[emoji.emoji].keywords); - * } - * const emojiRow = { - * code: emoji.emoji, - * keywords: _.uniq(keywords) - * }; - * - * if (emoji.skin_tones) { - * emojiRow.types = skinTones.map(skinTone => { - * const emojiUnicode = trimEmojiUnicode(getEmojiUnicode(emoji.emoji)).split(' ').map(p => parseInt(p, 16)); - * if(emojiUnicode.length > 0) { - * emojiUnicode.splice(1, 0, parseInt(skinTone, 16)); - * } else { - * emojiUnicode.push(parseInt(skinTone, 16)); - * } - * return String.fromCodePoint(...emojiUnicode); - * }); - * } - * emojisList.push(emojiRow); - * } - * }; - */ - -// BEFORE YOU EDIT THIS, PLEASE SEE WARNINGS IN EmojiPickerMenu.js const skinTones = [ { code: '🖐', @@ -82,9415 +37,7593 @@ const skinTones = [ const emojis = [ { - code: 'smileysAndEmotion', header: true, icon: Smiley, + code: 'smileysAndEmotion', }, { name: 'grinning', code: '😀', - keywords: ['smile', 'happy', 'grinning', 'face', 'grin'], }, { name: 'smiley', code: '😃', - keywords: ['happy', 'joy', 'haha', 'smiley', 'face', 'mouth', 'open', 'smile'], }, { name: 'smile', code: '😄', - keywords: ['happy', 'joy', 'laugh', 'pleased', 'smile', 'eye', 'face', 'mouth', 'open'], }, { name: 'grin', code: '😁', - keywords: ['grin', 'eye', 'face', 'smile'], }, { name: 'laughing', code: '😆', - keywords: ['happy', 'haha', 'laughing', 'satisfied', 'face', 'laugh', 'mouth', 'open', 'smile'], }, { name: 'sweat_smile', code: '😅', - keywords: ['hot', 'sweat_smile', 'cold', 'face', 'open', 'smile', 'sweat'], }, { name: 'rofl', code: '🤣', - keywords: ['lol', 'laughing', 'rofl', 'face', 'floor', 'laugh', 'rolling'], }, { name: 'joy', code: '😂', - keywords: ['tears', 'joy', 'face', 'laugh', 'tear'], }, { name: 'slightly_smiling_face', code: '🙂', - keywords: ['slightly_smiling_face', 'face', 'smile'], }, { name: 'upside_down_face', code: '🙃', - keywords: ['upside_down_face', 'face', 'upside-down'], }, { name: 'wink', code: '😉', - keywords: ['flirt', 'wink', 'face'], }, { name: 'blush', code: '😊', - keywords: ['proud', 'blush', 'eye', 'face', 'smile'], }, { name: 'innocent', code: '😇', - keywords: ['angel', 'innocent', 'face', 'fairy tale', 'fantasy', 'halo', 'smile'], }, { name: 'smiling_face_with_three_hearts', code: '🥰', - keywords: ['love', 'smiling_face_with_three_hearts'], }, { name: 'heart_eyes', code: '😍', - keywords: ['love', 'crush', 'heart_eyes', 'eye', 'face', 'heart', 'smile'], }, { name: 'star_struck', code: '🤩', - keywords: ['eyes', 'star_struck'], }, { name: 'kissing_heart', code: '😘', - keywords: ['flirt', 'kissing_heart', 'face', 'heart', 'kiss'], }, { name: 'kissing', code: '😗', - keywords: ['kissing', 'face', 'kiss'], }, { name: 'relaxed', code: '☺️', - keywords: ['blush', 'pleased', 'relaxed'], }, { name: 'kissing_closed_eyes', code: '😚', - keywords: ['kissing_closed_eyes', 'closed', 'eye', 'face', 'kiss'], }, { name: 'kissing_smiling_eyes', code: '😙', - keywords: ['kissing_smiling_eyes', 'eye', 'face', 'kiss', 'smile'], }, { name: 'smiling_face_with_tear', code: '🥲', - keywords: ['smiling_face_with_tear'], }, { name: 'yum', code: '😋', - keywords: ['tongue', 'lick', 'yum', 'delicious', 'face', 'savouring', 'smile', 'um'], }, { name: 'stuck_out_tongue', code: '😛', - keywords: ['stuck_out_tongue', 'face', 'tongue'], }, { name: 'stuck_out_tongue_winking_eye', code: '😜', - keywords: ['prank', 'silly', 'stuck_out_tongue_winking_eye', 'eye', 'face', 'joke', 'tongue', 'wink'], }, { name: 'zany_face', code: '🤪', - keywords: ['goofy', 'wacky', 'zany_face'], }, { name: 'stuck_out_tongue_closed_eyes', code: '😝', - keywords: ['prank', 'stuck_out_tongue_closed_eyes', 'eye', 'face', 'horrible', 'taste', 'tongue'], }, { name: 'money_mouth_face', code: '🤑', - keywords: ['rich', 'money_mouth_face', 'face', 'money', 'mouth'], }, { name: 'hugs', code: '🤗', - keywords: ['hugs', 'face', 'hug', 'hugging'], }, { name: 'hand_over_mouth', code: '🤭', - keywords: ['quiet', 'whoops', 'hand_over_mouth'], }, { name: 'shushing_face', code: '🤫', - keywords: ['silence', 'quiet', 'shushing_face'], }, { name: 'thinking', code: '🤔', - keywords: ['thinking', 'face'], }, { name: 'zipper_mouth_face', code: '🤐', - keywords: ['silence', 'hush', 'zipper_mouth_face', 'face', 'mouth', 'zipper'], }, { name: 'raised_eyebrow', code: '🤨', - keywords: ['suspicious', 'raised_eyebrow'], }, { name: 'neutral_face', code: '😐', - keywords: ['meh', 'neutral_face', 'deadpan', 'face', 'neutral'], }, { name: 'expressionless', code: '😑', - keywords: ['expressionless', 'face', 'inexpressive', 'unexpressive'], }, { name: 'no_mouth', code: '😶', - keywords: ['mute', 'silence', 'no_mouth', 'face', 'mouth', 'quiet', 'silent'], }, { name: 'face_in_clouds', code: '😶‍🌫️', - keywords: ['face_in_clouds'], }, { name: 'smirk', code: '😏', - keywords: ['smug', 'smirk', 'face'], }, { name: 'unamused', code: '😒', - keywords: ['meh', 'unamused', 'face', 'unhappy'], }, { name: 'roll_eyes', code: '🙄', - keywords: ['roll_eyes', 'eyes', 'face', 'rolling'], }, { name: 'grimacing', code: '😬', - keywords: ['grimacing', 'face', 'grimace'], }, { name: 'face_exhaling', code: '😮‍💨', - keywords: ['face_exhaling'], }, { name: 'lying_face', code: '🤥', - keywords: ['liar', 'lying_face', 'face', 'lie', 'pinocchio'], }, { name: 'relieved', code: '😌', - keywords: ['whew', 'relieved', 'face'], }, { name: 'pensive', code: '😔', - keywords: ['pensive', 'dejected', 'face'], }, { name: 'sleepy', code: '😪', - keywords: ['tired', 'sleepy', 'face', 'sleep'], }, { name: 'drooling_face', code: '🤤', - keywords: ['drooling_face', 'drooling', 'face'], }, { name: 'sleeping', code: '😴', - keywords: ['zzz', 'sleeping', 'face', 'sleep'], }, { name: 'mask', code: '😷', - keywords: ['sick', 'ill', 'mask', 'cold', 'doctor', 'face', 'medicine'], }, { name: 'face_with_thermometer', code: '🤒', - keywords: ['sick', 'face_with_thermometer', 'face', 'ill', 'thermometer'], }, { name: 'face_with_head_bandage', code: '🤕', - keywords: ['hurt', 'face_with_head_bandage', 'bandage', 'face', 'injury'], }, { name: 'nauseated_face', code: '🤢', - keywords: ['sick', 'barf', 'disgusted', 'nauseated_face', 'face', 'nauseated', 'vomit'], }, { name: 'vomiting_face', code: '🤮', - keywords: ['barf', 'sick', 'vomiting_face'], }, { name: 'sneezing_face', code: '🤧', - keywords: ['achoo', 'sick', 'sneezing_face', 'face', 'gesundheit', 'sneeze'], }, { name: 'hot_face', code: '🥵', - keywords: ['heat', 'sweating', 'hot_face'], }, { name: 'cold_face', code: '🥶', - keywords: ['freezing', 'ice', 'cold_face'], }, { name: 'woozy_face', code: '🥴', - keywords: ['groggy', 'woozy_face'], }, { name: 'dizzy_face', code: '😵', - keywords: ['dizzy_face', 'dizzy', 'face'], }, { name: 'face_with_spiral_eyes', code: '😵‍💫', - keywords: ['face_with_spiral_eyes'], }, { name: 'exploding_head', code: '🤯', - keywords: ['mind', 'blown', 'exploding_head'], }, { name: 'cowboy_hat_face', code: '🤠', - keywords: ['cowboy_hat_face', 'cowboy', 'cowgirl', 'face', 'hat'], }, { name: 'partying_face', code: '🥳', - keywords: ['celebration', 'birthday', 'partying_face'], }, { name: 'disguised_face', code: '🥸', - keywords: ['disguised_face'], }, { name: 'sunglasses', code: '😎', - keywords: ['cool', 'sunglasses', 'bright', 'eye', 'eyewear', 'face', 'glasses', 'smile', 'sun', 'weather'], }, { name: 'nerd_face', code: '🤓', - keywords: ['geek', 'glasses', 'nerd_face', 'face', 'nerd'], }, { name: 'monocle_face', code: '🧐', - keywords: ['monocle_face'], }, { name: 'confused', code: '😕', - keywords: ['confused', 'face'], }, { name: 'worried', code: '😟', - keywords: ['nervous', 'worried', 'face'], }, { name: 'slightly_frowning_face', code: '🙁', - keywords: ['slightly_frowning_face', 'face', 'frown'], }, { name: 'frowning_face', code: '☹️', - keywords: ['frowning_face'], }, { name: 'open_mouth', code: '😮', - keywords: ['surprise', 'impressed', 'wow', 'open_mouth', 'face', 'mouth', 'open', 'sympathy'], }, { name: 'hushed', code: '😯', - keywords: ['silence', 'speechless', 'hushed', 'face', 'stunned', 'surprised'], }, { name: 'astonished', code: '😲', - keywords: ['amazed', 'gasp', 'astonished', 'face', 'shocked', 'totally'], }, { name: 'flushed', code: '😳', - keywords: ['flushed', 'dazed', 'face'], }, { name: 'pleading_face', code: '🥺', - keywords: ['puppy', 'eyes', 'pleading_face'], }, { name: 'frowning', code: '😦', - keywords: ['frowning', 'face', 'frown', 'mouth', 'open'], }, { name: 'anguished', code: '😧', - keywords: ['stunned', 'anguished', 'face'], }, { name: 'fearful', code: '😨', - keywords: ['scared', 'shocked', 'oops', 'fearful', 'face', 'fear'], }, { name: 'cold_sweat', code: '😰', - keywords: ['nervous', 'cold_sweat', 'blue', 'cold', 'face', 'mouth', 'open', 'rushed', 'sweat'], }, { name: 'disappointed_relieved', code: '😥', - keywords: ['phew', 'sweat', 'nervous', 'disappointed_relieved', 'disappointed', 'face', 'relieved', 'whew'], }, { name: 'cry', code: '😢', - keywords: ['sad', 'tear', 'cry', 'face'], }, { name: 'sob', code: '😭', - keywords: ['sad', 'cry', 'bawling', 'sob', 'face', 'tear'], }, { name: 'scream', code: '😱', - keywords: ['horror', 'shocked', 'scream', 'face', 'fear', 'fearful', 'munch', 'scared'], }, { name: 'confounded', code: '😖', - keywords: ['confounded', 'face'], }, { name: 'persevere', code: '😣', - keywords: ['struggling', 'persevere', 'face'], }, { name: 'disappointed', code: '😞', - keywords: ['sad', 'disappointed', 'face'], }, { name: 'sweat', code: '😓', - keywords: ['sweat', 'cold', 'face'], }, { name: 'weary', code: '😩', - keywords: ['tired', 'weary', 'face'], }, { name: 'tired_face', code: '😫', - keywords: ['upset', 'whine', 'tired_face', 'face', 'tired'], }, { name: 'yawning_face', code: '🥱', - keywords: ['yawning_face'], }, { name: 'triumph', code: '😤', - keywords: ['smug', 'triumph', 'face', 'won'], }, { name: 'rage', code: '😡', - keywords: ['angry', 'rage', 'pout', 'face', 'mad', 'pouting', 'red'], }, { name: 'angry', code: '😠', - keywords: ['mad', 'annoyed', 'angry', 'face'], }, { name: 'cursing_face', code: '🤬', - keywords: ['foul', 'cursing_face'], }, { name: 'smiling_imp', code: '😈', - keywords: ['devil', 'evil', 'horns', 'smiling_imp', 'face', 'fairy tale', 'fantasy', 'smile'], }, { name: 'imp', code: '👿', - keywords: ['angry', 'devil', 'evil', 'horns', 'imp', 'demon', 'face', 'fairy tale', 'fantasy'], }, { name: 'skull', code: '💀', - keywords: ['dead', 'danger', 'poison', 'skull', 'body', 'death', 'face', 'fairy tale', 'monster'], }, { name: 'skull_and_crossbones', code: '☠️', - keywords: ['danger', 'pirate', 'skull_and_crossbones', 'body', 'crossbones', 'death', 'face', 'monster', 'skull'], }, { name: 'hankey', code: '💩', - keywords: ['crap', 'hankey', 'poop', 'shit', 'comic', 'dung', 'face', 'monster', 'poo'], }, { name: 'clown_face', code: '🤡', - keywords: ['clown_face', 'clown', 'face'], }, { name: 'japanese_ogre', code: '👹', - keywords: ['monster', 'japanese_ogre', 'creature', 'face', 'fairy tale', 'fantasy', 'japanese', 'ogre'], }, { name: 'japanese_goblin', code: '👺', - keywords: ['japanese_goblin', 'creature', 'face', 'fairy tale', 'fantasy', 'goblin', 'japanese', 'monster'], }, { name: 'ghost', code: '👻', - keywords: ['halloween', 'ghost', 'creature', 'face', 'fairy tale', 'fantasy', 'monster'], }, { name: 'alien', code: '👽', - keywords: ['ufo', 'alien', 'creature', 'extraterrestrial', 'face', 'fairy tale', 'fantasy', 'monster', 'space'], }, { name: 'space_invader', code: '👾', - keywords: ['game', 'retro', 'space_invader', 'alien', 'creature', 'extraterrestrial', 'face', 'fairy tale', 'fantasy', 'monster', 'space', 'ufo'], }, { name: 'robot', code: '🤖', - keywords: ['robot', 'face', 'monster'], }, { name: 'smiley_cat', code: '😺', - keywords: ['smiley_cat', 'cat', 'face', 'mouth', 'open', 'smile'], }, { name: 'smile_cat', code: '😸', - keywords: ['smile_cat', 'cat', 'eye', 'face', 'grin', 'smile'], }, { name: 'joy_cat', code: '😹', - keywords: ['joy_cat', 'cat', 'face', 'joy', 'tear'], }, { name: 'heart_eyes_cat', code: '😻', - keywords: ['heart_eyes_cat', 'cat', 'eye', 'face', 'heart', 'love', 'smile'], }, { name: 'smirk_cat', code: '😼', - keywords: ['smirk_cat', 'cat', 'face', 'ironic', 'smile', 'wry'], }, { name: 'kissing_cat', code: '😽', - keywords: ['kissing_cat', 'cat', 'eye', 'face', 'kiss'], }, { name: 'scream_cat', code: '🙀', - keywords: ['horror', 'scream_cat', 'cat', 'face', 'oh', 'surprised', 'weary'], }, { name: 'crying_cat_face', code: '😿', - keywords: ['sad', 'tear', 'crying_cat_face', 'cat', 'cry', 'face'], }, { name: 'pouting_cat', code: '😾', - keywords: ['pouting_cat', 'cat', 'face', 'pouting'], }, { name: 'see_no_evil', code: '🙈', - keywords: ['monkey', 'blind', 'ignore', 'see_no_evil', 'evil', 'face', 'forbidden', 'gesture', 'no', 'not', 'prohibited', 'see'], }, { name: 'hear_no_evil', code: '🙉', - keywords: ['monkey', 'deaf', 'hear_no_evil', 'evil', 'face', 'forbidden', 'gesture', 'hear', 'no', 'not', 'prohibited'], }, { name: 'speak_no_evil', code: '🙊', - keywords: ['monkey', 'mute', 'hush', 'speak_no_evil', 'evil', 'face', 'forbidden', 'gesture', 'no', 'not', 'prohibited', 'speak'], }, { name: 'kiss', code: '💋', - keywords: ['lipstick', 'kiss', 'heart', 'lips', 'mark', 'romance'], }, { name: 'love_letter', code: '💌', - keywords: ['email', 'envelope', 'love_letter', 'heart', 'letter', 'love', 'mail', 'romance'], }, { name: 'cupid', code: '💘', - keywords: ['love', 'heart', 'cupid', 'arrow', 'romance'], }, { name: 'gift_heart', code: '💝', - keywords: ['chocolates', 'gift_heart', 'heart', 'ribbon', 'valentine'], }, { name: 'sparkling_heart', code: '💖', - keywords: ['sparkling_heart', 'excited', 'heart', 'sparkle'], }, { name: 'heartpulse', code: '💗', - keywords: ['heartpulse', 'excited', 'growing', 'heart', 'nervous'], }, { name: 'heartbeat', code: '💓', - keywords: ['heartbeat', 'beating', 'heart', 'pulsating'], }, { name: 'revolving_hearts', code: '💞', - keywords: ['revolving_hearts', 'heart', 'revolving'], }, { name: 'two_hearts', code: '💕', - keywords: ['two_hearts', 'heart', 'love'], }, { name: 'heart_decoration', code: '💟', - keywords: ['heart_decoration', 'heart'], }, { name: 'heavy_heart_exclamation', code: '❣️', - keywords: ['heavy_heart_exclamation', 'exclamation', 'heart', 'mark', 'punctuation'], }, { name: 'broken_heart', code: '💔', - keywords: ['broken_heart', 'break', 'broken', 'heart'], }, { name: 'heart_on_fire', code: '❤️‍🔥', - keywords: ['heart_on_fire'], }, { name: 'mending_heart', code: '❤️‍🩹', - keywords: ['mending_heart'], }, { name: 'heart', code: '❤️', - keywords: ['love', 'heart'], }, { name: 'orange_heart', code: '🧡', - keywords: ['orange_heart'], }, { name: 'yellow_heart', code: '💛', - keywords: ['yellow_heart', 'heart', 'yellow'], }, { name: 'green_heart', code: '💚', - keywords: ['green_heart', 'green', 'heart'], }, { name: 'blue_heart', code: '💙', - keywords: ['blue_heart', 'blue', 'heart'], }, { name: 'purple_heart', code: '💜', - keywords: ['purple_heart', 'heart', 'purple'], }, { name: 'brown_heart', code: '🤎', - keywords: ['brown_heart'], }, { name: 'black_heart', code: '🖤', - keywords: ['black_heart', 'black', 'evil', 'heart', 'wicked'], }, { name: 'white_heart', code: '🤍', - keywords: ['white_heart'], }, { name: '100', code: '💯', - keywords: ['score', 'perfect', '100', 'full', 'hundred'], }, { name: 'anger', code: '💢', - keywords: ['angry', 'anger', 'comic', 'mad'], }, { name: 'boom', code: '💥', - keywords: ['explode', 'boom', 'collision', 'comic'], }, { name: 'dizzy', code: '💫', - keywords: ['star', 'dizzy', 'comic'], }, { name: 'sweat_drops', code: '💦', - keywords: ['water', 'workout', 'sweat_drops', 'comic', 'splashing', 'sweat'], }, { name: 'dash', code: '💨', - keywords: ['wind', 'blow', 'fast', 'dash', 'comic', 'running'], }, { name: 'hole', code: '🕳️', - keywords: ['hole'], }, { name: 'bomb', code: '💣', - keywords: ['boom', 'bomb', 'comic'], }, { name: 'speech_balloon', code: '💬', - keywords: ['comment', 'speech_balloon', 'balloon', 'bubble', 'comic', 'dialog', 'speech'], }, { name: 'eye_speech_bubble', code: '👁️‍🗨️', - keywords: ['eye_speech_bubble'], }, { name: 'left_speech_bubble', code: '🗨️', - keywords: ['left_speech_bubble'], }, { name: 'right_anger_bubble', code: '🗯️', - keywords: ['right_anger_bubble'], }, { name: 'thought_balloon', code: '💭', - keywords: ['thinking', 'thought_balloon', 'balloon', 'bubble', 'comic', 'thought'], }, { name: 'zzz', code: '💤', - keywords: ['sleeping', 'zzz', 'comic', 'sleep'], }, { name: 'wave', code: '👋', - keywords: ['goodbye', 'wave', 'body', 'hand', 'waving'], types: ['👋🏿', '👋🏾', '👋🏽', '👋🏼', '👋🏻'], }, { name: 'raised_back_of_hand', code: '🤚', - keywords: ['raised_back_of_hand', 'backhand', 'raised'], types: ['🤚🏿', '🤚🏾', '🤚🏽', '🤚🏼', '🤚🏻'], }, { name: 'raised_hand_with_fingers_splayed', code: '🖐️', - keywords: ['raised_hand_with_fingers_splayed'], types: ['🖐🏿', '🖐🏾', '🖐🏽', '🖐🏼', '🖐🏻'], }, { name: 'hand', code: '✋', - keywords: ['highfive', 'stop', 'hand', 'raised_hand', 'body'], types: ['✋🏿', '✋🏾', '✋🏽', '✋🏼', '✋🏻'], }, { name: 'vulcan_salute', code: '🖖', - keywords: ['prosper', 'spock', 'vulcan_salute', 'body', 'finger', 'hand', 'vulcan'], types: ['🖖🏿', '🖖🏾', '🖖🏽', '🖖🏼', '🖖🏻'], }, { name: 'ok_hand', code: '👌', - keywords: ['ok_hand', 'body', 'hand', 'ok'], types: ['👌🏿', '👌🏾', '👌🏽', '👌🏼', '👌🏻'], }, { name: 'pinched_fingers', code: '🤌', - keywords: ['pinched_fingers'], types: ['🤌🏿', '🤌🏾', '🤌🏽', '🤌🏼', '🤌🏻'], }, { name: 'pinching_hand', code: '🤏', - keywords: ['pinching_hand'], types: ['🤏🏿', '🤏🏾', '🤏🏽', '🤏🏼', '🤏🏻'], }, { name: 'v', code: '✌️', - keywords: ['victory', 'peace', 'v'], types: ['✌🏿', '✌🏾', '✌🏽', '✌🏼', '✌🏻'], }, { name: 'crossed_fingers', code: '🤞', - keywords: ['luck', 'hopeful', 'crossed_fingers', 'cross', 'finger', 'hand'], types: ['🤞🏿', '🤞🏾', '🤞🏽', '🤞🏼', '🤞🏻'], }, { name: 'love_you_gesture', code: '🤟', - keywords: ['love_you_gesture'], types: ['🤟🏿', '🤟🏾', '🤟🏽', '🤟🏼', '🤟🏻'], }, { name: 'metal', code: '🤘', - keywords: ['metal', 'body', 'finger', 'hand', 'horns', 'rock-on'], types: ['🤘🏿', '🤘🏾', '🤘🏽', '🤘🏼', '🤘🏻'], }, { name: 'call_me_hand', code: '🤙', - keywords: ['call_me_hand', 'call', 'hand', 'shaka'], types: ['🤙🏿', '🤙🏾', '🤙🏽', '🤙🏼', '🤙🏻'], }, { name: 'point_left', code: '👈', - keywords: ['point_left', 'backhand', 'body', 'finger', 'hand', 'index', 'point'], types: ['👈🏿', '👈🏾', '👈🏽', '👈🏼', '👈🏻'], }, { name: 'point_right', code: '👉', - keywords: ['point_right', 'backhand', 'body', 'finger', 'hand', 'index', 'point'], types: ['👉🏿', '👉🏾', '👉🏽', '👉🏼', '👉🏻'], }, { name: 'point_up_2', code: '👆', - keywords: ['point_up_2', 'backhand', 'body', 'finger', 'hand', 'index', 'point', 'up'], types: ['👆🏿', '👆🏾', '👆🏽', '👆🏼', '👆🏻'], }, { name: 'middle_finger', code: '🖕', - keywords: ['middle_finger', 'fu', 'body', 'finger', 'hand', 'middle finger'], types: ['🖕🏿', '🖕🏾', '🖕🏽', '🖕🏼', '🖕🏻'], }, { name: 'point_down', code: '👇', - keywords: ['point_down', 'backhand', 'body', 'down', 'finger', 'hand', 'index', 'point'], types: ['👇🏿', '👇🏾', '👇🏽', '👇🏼', '👇🏻'], }, { name: 'point_up', code: '☝️', - keywords: ['point_up'], types: ['☝🏿', '☝🏾', '☝🏽', '☝🏼', '☝🏻'], }, { name: '+1', code: '👍', - keywords: ['approve', 'ok', '+1', 'thumbsup', 'body', 'hand', 'thumb', 'thumbs up', 'up'], types: ['👍🏿', '👍🏾', '👍🏽', '👍🏼', '👍🏻'], }, { name: '-1', code: '👎', - keywords: ['disapprove', 'bury', '-1', 'thumbsdown', 'body', 'down', 'hand', 'thumb', 'thumbs down'], types: ['👎🏿', '👎🏾', '👎🏽', '👎🏼', '👎🏻'], }, { name: 'fist_raised', code: '✊', - keywords: ['power', 'fist_raised', 'fist', 'body', 'clenched', 'hand', 'punch'], types: ['✊🏿', '✊🏾', '✊🏽', '✊🏼', '✊🏻'], }, { name: 'fist_oncoming', code: '👊', - keywords: ['attack', 'fist_oncoming', 'facepunch', 'punch', 'body', 'clenched', 'fist', 'hand'], types: ['👊🏿', '👊🏾', '👊🏽', '👊🏼', '👊🏻'], }, { name: 'fist_left', code: '🤛', - keywords: ['fist_left', 'fist', 'leftwards'], types: ['🤛🏿', '🤛🏾', '🤛🏽', '🤛🏼', '🤛🏻'], }, { name: 'fist_right', code: '🤜', - keywords: ['fist_right', 'fist', 'rightwards'], types: ['🤜🏿', '🤜🏾', '🤜🏽', '🤜🏼', '🤜🏻'], }, { name: 'clap', code: '👏', - keywords: ['praise', 'applause', 'clap', 'body', 'hand'], types: ['👏🏿', '👏🏾', '👏🏽', '👏🏼', '👏🏻'], }, { name: 'raised_hands', code: '🙌', - keywords: ['hooray', 'raised_hands', 'body', 'celebration', 'gesture', 'hand', 'raised'], types: ['🙌🏿', '🙌🏾', '🙌🏽', '🙌🏼', '🙌🏻'], }, { name: 'open_hands', code: '👐', - keywords: ['open_hands', 'body', 'hand', 'open'], types: ['👐🏿', '👐🏾', '👐🏽', '👐🏼', '👐🏻'], }, { name: 'palms_up_together', code: '🤲', - keywords: ['palms_up_together'], types: ['🤲🏿', '🤲🏾', '🤲🏽', '🤲🏼', '🤲🏻'], }, { name: 'handshake', code: '🤝', - keywords: ['deal', 'handshake', 'agreement', 'hand', 'meeting', 'shake'], types: ['🤝🏿', '🤝🏾', '🤝🏽', '🤝🏼', '🤝🏻'], }, { name: 'pray', code: '🙏', - keywords: ['please', 'hope', 'wish', 'pray', 'ask', 'body', 'bow', 'folded', 'gesture', 'hand', 'thanks'], types: ['🙏🏿', '🙏🏾', '🙏🏽', '🙏🏼', '🙏🏻'], }, { name: 'writing_hand', code: '✍️', - keywords: ['writing_hand'], types: ['✍🏿', '✍🏾', '✍🏽', '✍🏼', '✍🏻'], }, { name: 'nail_care', code: '💅', - keywords: ['beauty', 'manicure', 'nail_care', 'body', 'care', 'cosmetics', 'nail', 'polish'], types: ['💅🏿', '💅🏾', '💅🏽', '💅🏼', '💅🏻'], }, { name: 'selfie', code: '🤳', - keywords: ['selfie', 'camera', 'phone'], types: ['🤳🏿', '🤳🏾', '🤳🏽', '🤳🏼', '🤳🏻'], }, { name: 'muscle', code: '💪', - keywords: ['flex', 'bicep', 'strong', 'workout', 'muscle', 'biceps', 'body', 'comic'], types: ['💪🏿', '💪🏾', '💪🏽', '💪🏼', '💪🏻'], }, { name: 'mechanical_arm', code: '🦾', - keywords: ['mechanical_arm'], }, { name: 'mechanical_leg', code: '🦿', - keywords: ['mechanical_leg'], }, { name: 'leg', code: '🦵', - keywords: ['leg'], types: ['🦵🏿', '🦵🏾', '🦵🏽', '🦵🏼', '🦵🏻'], }, { name: 'foot', code: '🦶', - keywords: ['foot'], types: ['🦶🏿', '🦶🏾', '🦶🏽', '🦶🏼', '🦶🏻'], }, { name: 'ear', code: '👂', - keywords: ['hear', 'sound', 'listen', 'ear', 'body'], types: ['👂🏿', '👂🏾', '👂🏽', '👂🏼', '👂🏻'], }, { name: 'ear_with_hearing_aid', code: '🦻', - keywords: ['ear_with_hearing_aid'], types: ['🦻🏿', '🦻🏾', '🦻🏽', '🦻🏼', '🦻🏻'], }, { name: 'nose', code: '👃', - keywords: ['smell', 'nose', 'body'], types: ['👃🏿', '👃🏾', '👃🏽', '👃🏼', '👃🏻'], }, { name: 'brain', code: '🧠', - keywords: ['brain'], }, { name: 'anatomical_heart', code: '🫀', - keywords: ['anatomical_heart'], }, { name: 'lungs', code: '🫁', - keywords: ['lungs'], }, { name: 'tooth', code: '🦷', - keywords: ['tooth'], }, { name: 'bone', code: '🦴', - keywords: ['bone'], }, { name: 'eyes', code: '👀', - keywords: ['look', 'see', 'watch', 'eyes', 'body', 'eye', 'face'], }, { name: 'eye', code: '👁️', - keywords: ['eye'], }, { name: 'tongue', code: '👅', - keywords: ['taste', 'tongue', 'body'], }, { name: 'lips', code: '👄', - keywords: ['kiss', 'lips', 'body', 'mouth'], }, { name: 'baby', code: '👶', - keywords: ['child', 'newborn', 'baby'], types: ['👶🏿', '👶🏾', '👶🏽', '👶🏼', '👶🏻'], }, { name: 'child', code: '🧒', - keywords: ['child'], types: ['🧒🏿', '🧒🏾', '🧒🏽', '🧒🏼', '🧒🏻'], }, { name: 'boy', code: '👦', - keywords: ['child', 'boy'], types: ['👦🏿', '👦🏾', '👦🏽', '👦🏼', '👦🏻'], }, { name: 'girl', code: '👧', - keywords: ['child', 'girl', 'maiden', 'virgin', 'virgo', 'zodiac'], types: ['👧🏿', '👧🏾', '👧🏽', '👧🏼', '👧🏻'], }, { name: 'adult', code: '🧑', - keywords: ['adult'], types: ['🧑🏿', '🧑🏾', '🧑🏽', '🧑🏼', '🧑🏻'], }, { name: 'blond_haired_person', code: '👱', - keywords: ['blond_haired_person', 'blond'], types: ['👱🏿', '👱🏾', '👱🏽', '👱🏼', '👱🏻'], }, { name: 'man', code: '👨', - keywords: ['mustache', 'father', 'dad', 'man'], types: ['👨🏿', '👨🏾', '👨🏽', '👨🏼', '👨🏻'], }, { name: 'bearded_person', code: '🧔', - keywords: ['bearded_person'], types: ['🧔🏿', '🧔🏾', '🧔🏽', '🧔🏼', '🧔🏻'], }, { name: 'man_beard', code: '🧔‍♂️', - keywords: ['man_beard'], types: ['🧔🏿‍♂️', '🧔🏾‍♂️', '🧔🏽‍♂️', '🧔🏼‍♂️', '🧔🏻‍♂️'], }, { name: 'woman_beard', code: '🧔‍♀️', - keywords: ['woman_beard'], types: ['🧔🏿‍♀️', '🧔🏾‍♀️', '🧔🏽‍♀️', '🧔🏼‍♀️', '🧔🏻‍♀️'], }, { name: 'red_haired_man', code: '👨‍🦰', - keywords: ['red_haired_man'], types: ['👨🏿‍🦰', '👨🏾‍🦰', '👨🏽‍🦰', '👨🏼‍🦰', '👨🏻‍🦰'], }, { name: 'curly_haired_man', code: '👨‍🦱', - keywords: ['curly_haired_man'], types: ['👨🏿‍🦱', '👨🏾‍🦱', '👨🏽‍🦱', '👨🏼‍🦱', '👨🏻‍🦱'], }, { name: 'white_haired_man', code: '👨‍🦳', - keywords: ['white_haired_man'], types: ['👨🏿‍🦳', '👨🏾‍🦳', '👨🏽‍🦳', '👨🏼‍🦳', '👨🏻‍🦳'], }, { name: 'bald_man', code: '👨‍🦲', - keywords: ['bald_man'], types: ['👨🏿‍🦲', '👨🏾‍🦲', '👨🏽‍🦲', '👨🏼‍🦲', '👨🏻‍🦲'], }, { name: 'woman', code: '👩', - keywords: ['girls', 'woman'], types: ['👩🏿', '👩🏾', '👩🏽', '👩🏼', '👩🏻'], }, { name: 'red_haired_woman', code: '👩‍🦰', - keywords: ['red_haired_woman'], types: ['👩🏿‍🦰', '👩🏾‍🦰', '👩🏽‍🦰', '👩🏼‍🦰', '👩🏻‍🦰'], }, { name: 'person_red_hair', code: '🧑‍🦰', - keywords: ['person_red_hair'], types: ['🧑🏿‍🦰', '🧑🏾‍🦰', '🧑🏽‍🦰', '🧑🏼‍🦰', '🧑🏻‍🦰'], }, { name: 'curly_haired_woman', code: '👩‍🦱', - keywords: ['curly_haired_woman'], types: ['👩🏿‍🦱', '👩🏾‍🦱', '👩🏽‍🦱', '👩🏼‍🦱', '👩🏻‍🦱'], }, { name: 'person_curly_hair', code: '🧑‍🦱', - keywords: ['person_curly_hair'], types: ['🧑🏿‍🦱', '🧑🏾‍🦱', '🧑🏽‍🦱', '🧑🏼‍🦱', '🧑🏻‍🦱'], }, { name: 'white_haired_woman', code: '👩‍🦳', - keywords: ['white_haired_woman'], types: ['👩🏿‍🦳', '👩🏾‍🦳', '👩🏽‍🦳', '👩🏼‍🦳', '👩🏻‍🦳'], }, { name: 'person_white_hair', code: '🧑‍🦳', - keywords: ['person_white_hair'], types: ['🧑🏿‍🦳', '🧑🏾‍🦳', '🧑🏽‍🦳', '🧑🏼‍🦳', '🧑🏻‍🦳'], }, { name: 'bald_woman', code: '👩‍🦲', - keywords: ['bald_woman'], types: ['👩🏿‍🦲', '👩🏾‍🦲', '👩🏽‍🦲', '👩🏼‍🦲', '👩🏻‍🦲'], }, { name: 'person_bald', code: '🧑‍🦲', - keywords: ['person_bald'], types: ['🧑🏿‍🦲', '🧑🏾‍🦲', '🧑🏽‍🦲', '🧑🏼‍🦲', '🧑🏻‍🦲'], }, { name: 'blond_haired_woman', code: '👱‍♀️', - keywords: ['blond_haired_woman', 'blonde_woman'], types: ['👱🏿‍♀️', '👱🏾‍♀️', '👱🏽‍♀️', '👱🏼‍♀️', '👱🏻‍♀️'], }, { name: 'blond_haired_man', code: '👱‍♂️', - keywords: ['blond_haired_man'], types: ['👱🏿‍♂️', '👱🏾‍♂️', '👱🏽‍♂️', '👱🏼‍♂️', '👱🏻‍♂️'], }, { name: 'older_adult', code: '🧓', - keywords: ['older_adult'], types: ['🧓🏿', '🧓🏾', '🧓🏽', '🧓🏼', '🧓🏻'], }, { name: 'older_man', code: '👴', - keywords: ['older_man', 'man', 'old'], types: ['👴🏿', '👴🏾', '👴🏽', '👴🏼', '👴🏻'], }, { name: 'older_woman', code: '👵', - keywords: ['older_woman', 'old', 'woman'], types: ['👵🏿', '👵🏾', '👵🏽', '👵🏼', '👵🏻'], }, { name: 'frowning_person', code: '🙍', - keywords: ['frowning_person', 'frown', 'gesture'], types: ['🙍🏿', '🙍🏾', '🙍🏽', '🙍🏼', '🙍🏻'], }, { name: 'frowning_man', code: '🙍‍♂️', - keywords: ['frowning_man'], types: ['🙍🏿‍♂️', '🙍🏾‍♂️', '🙍🏽‍♂️', '🙍🏼‍♂️', '🙍🏻‍♂️'], }, { name: 'frowning_woman', code: '🙍‍♀️', - keywords: ['frowning_woman'], types: ['🙍🏿‍♀️', '🙍🏾‍♀️', '🙍🏽‍♀️', '🙍🏼‍♀️', '🙍🏻‍♀️'], }, { name: 'pouting_face', code: '🙎', - keywords: ['pouting_face', 'gesture', 'pouting'], types: ['🙎🏿', '🙎🏾', '🙎🏽', '🙎🏼', '🙎🏻'], }, { name: 'pouting_man', code: '🙎‍♂️', - keywords: ['pouting_man'], types: ['🙎🏿‍♂️', '🙎🏾‍♂️', '🙎🏽‍♂️', '🙎🏼‍♂️', '🙎🏻‍♂️'], }, { name: 'pouting_woman', code: '🙎‍♀️', - keywords: ['pouting_woman'], types: ['🙎🏿‍♀️', '🙎🏾‍♀️', '🙎🏽‍♀️', '🙎🏼‍♀️', '🙎🏻‍♀️'], }, { name: 'no_good', code: '🙅', - keywords: ['stop', 'halt', 'denied', 'no_good', 'forbidden', 'gesture', 'hand', 'no', 'not', 'prohibited'], types: ['🙅🏿', '🙅🏾', '🙅🏽', '🙅🏼', '🙅🏻'], }, { name: 'no_good_man', code: '🙅‍♂️', - keywords: ['stop', 'halt', 'denied', 'no_good_man', 'ng_man'], types: ['🙅🏿‍♂️', '🙅🏾‍♂️', '🙅🏽‍♂️', '🙅🏼‍♂️', '🙅🏻‍♂️'], }, { name: 'no_good_woman', code: '🙅‍♀️', - keywords: ['stop', 'halt', 'denied', 'no_good_woman', 'ng_woman'], types: ['🙅🏿‍♀️', '🙅🏾‍♀️', '🙅🏽‍♀️', '🙅🏼‍♀️', '🙅🏻‍♀️'], }, { name: 'ok_person', code: '🙆', - keywords: ['ok_person', 'gesture', 'hand', 'ok'], types: ['🙆🏿', '🙆🏾', '🙆🏽', '🙆🏼', '🙆🏻'], }, { name: 'ok_man', code: '🙆‍♂️', - keywords: ['ok_man'], types: ['🙆🏿‍♂️', '🙆🏾‍♂️', '🙆🏽‍♂️', '🙆🏼‍♂️', '🙆🏻‍♂️'], }, { name: 'ok_woman', code: '🙆‍♀️', - keywords: ['ok_woman'], types: ['🙆🏿‍♀️', '🙆🏾‍♀️', '🙆🏽‍♀️', '🙆🏼‍♀️', '🙆🏻‍♀️'], }, { name: 'tipping_hand_person', code: '💁', - keywords: ['tipping_hand_person', 'information_desk_person', 'hand', 'help', 'information', 'sassy'], types: ['💁🏿', '💁🏾', '💁🏽', '💁🏼', '💁🏻'], }, { name: 'tipping_hand_man', code: '💁‍♂️', - keywords: ['information', 'tipping_hand_man', 'sassy_man'], types: ['💁🏿‍♂️', '💁🏾‍♂️', '💁🏽‍♂️', '💁🏼‍♂️', '💁🏻‍♂️'], }, { name: 'tipping_hand_woman', code: '💁‍♀️', - keywords: ['information', 'tipping_hand_woman', 'sassy_woman'], types: ['💁🏿‍♀️', '💁🏾‍♀️', '💁🏽‍♀️', '💁🏼‍♀️', '💁🏻‍♀️'], }, { name: 'raising_hand', code: '🙋', - keywords: ['raising_hand', 'gesture', 'hand', 'happy', 'raised'], types: ['🙋🏿', '🙋🏾', '🙋🏽', '🙋🏼', '🙋🏻'], }, { name: 'raising_hand_man', code: '🙋‍♂️', - keywords: ['raising_hand_man'], types: ['🙋🏿‍♂️', '🙋🏾‍♂️', '🙋🏽‍♂️', '🙋🏼‍♂️', '🙋🏻‍♂️'], }, { name: 'raising_hand_woman', code: '🙋‍♀️', - keywords: ['raising_hand_woman'], types: ['🙋🏿‍♀️', '🙋🏾‍♀️', '🙋🏽‍♀️', '🙋🏼‍♀️', '🙋🏻‍♀️'], }, { name: 'deaf_person', code: '🧏', - keywords: ['deaf_person'], types: ['🧏🏿', '🧏🏾', '🧏🏽', '🧏🏼', '🧏🏻'], }, { name: 'deaf_man', code: '🧏‍♂️', - keywords: ['deaf_man'], types: ['🧏🏿‍♂️', '🧏🏾‍♂️', '🧏🏽‍♂️', '🧏🏼‍♂️', '🧏🏻‍♂️'], }, { name: 'deaf_woman', code: '🧏‍♀️', - keywords: ['deaf_woman'], types: ['🧏🏿‍♀️', '🧏🏾‍♀️', '🧏🏽‍♀️', '🧏🏼‍♀️', '🧏🏻‍♀️'], }, { name: 'bow', code: '🙇', - keywords: ['respect', 'thanks', 'bow', 'apology', 'gesture', 'sorry'], types: ['🙇🏿', '🙇🏾', '🙇🏽', '🙇🏼', '🙇🏻'], }, { name: 'bowing_man', code: '🙇‍♂️', - keywords: ['respect', 'thanks', 'bowing_man'], types: ['🙇🏿‍♂️', '🙇🏾‍♂️', '🙇🏽‍♂️', '🙇🏼‍♂️', '🙇🏻‍♂️'], }, { name: 'bowing_woman', code: '🙇‍♀️', - keywords: ['respect', 'thanks', 'bowing_woman'], types: ['🙇🏿‍♀️', '🙇🏾‍♀️', '🙇🏽‍♀️', '🙇🏼‍♀️', '🙇🏻‍♀️'], }, { name: 'facepalm', code: '🤦', - keywords: ['facepalm', 'disbelief', 'exasperation', 'face', 'palm'], types: ['🤦🏿', '🤦🏾', '🤦🏽', '🤦🏼', '🤦🏻'], }, { name: 'man_facepalming', code: '🤦‍♂️', - keywords: ['man_facepalming'], types: ['🤦🏿‍♂️', '🤦🏾‍♂️', '🤦🏽‍♂️', '🤦🏼‍♂️', '🤦🏻‍♂️'], }, { name: 'woman_facepalming', code: '🤦‍♀️', - keywords: ['woman_facepalming'], types: ['🤦🏿‍♀️', '🤦🏾‍♀️', '🤦🏽‍♀️', '🤦🏼‍♀️', '🤦🏻‍♀️'], }, { name: 'shrug', code: '🤷', - keywords: ['shrug', 'doubt', 'ignorance', 'indifference'], types: ['🤷🏿', '🤷🏾', '🤷🏽', '🤷🏼', '🤷🏻'], }, { name: 'man_shrugging', code: '🤷‍♂️', - keywords: ['man_shrugging'], types: ['🤷🏿‍♂️', '🤷🏾‍♂️', '🤷🏽‍♂️', '🤷🏼‍♂️', '🤷🏻‍♂️'], }, { name: 'woman_shrugging', code: '🤷‍♀️', - keywords: ['woman_shrugging'], types: ['🤷🏿‍♀️', '🤷🏾‍♀️', '🤷🏽‍♀️', '🤷🏼‍♀️', '🤷🏻‍♀️'], }, { name: 'health_worker', code: '🧑‍⚕️', - keywords: ['health_worker'], types: ['🧑🏿‍⚕️', '🧑🏾‍⚕️', '🧑🏽‍⚕️', '🧑🏼‍⚕️', '🧑🏻‍⚕️'], }, { name: 'man_health_worker', code: '👨‍⚕️', - keywords: ['doctor', 'nurse', 'man_health_worker'], types: ['👨🏿‍⚕️', '👨🏾‍⚕️', '👨🏽‍⚕️', '👨🏼‍⚕️', '👨🏻‍⚕️'], }, { name: 'woman_health_worker', code: '👩‍⚕️', - keywords: ['doctor', 'nurse', 'woman_health_worker'], types: ['👩🏿‍⚕️', '👩🏾‍⚕️', '👩🏽‍⚕️', '👩🏼‍⚕️', '👩🏻‍⚕️'], }, { name: 'student', code: '🧑‍🎓', - keywords: ['student'], types: ['🧑🏿‍🎓', '🧑🏾‍🎓', '🧑🏽‍🎓', '🧑🏼‍🎓', '🧑🏻‍🎓'], }, { name: 'man_student', code: '👨‍🎓', - keywords: ['graduation', 'man_student'], types: ['👨🏿‍🎓', '👨🏾‍🎓', '👨🏽‍🎓', '👨🏼‍🎓', '👨🏻‍🎓'], }, { name: 'woman_student', code: '👩‍🎓', - keywords: ['graduation', 'woman_student'], types: ['👩🏿‍🎓', '👩🏾‍🎓', '👩🏽‍🎓', '👩🏼‍🎓', '👩🏻‍🎓'], }, { name: 'teacher', code: '🧑‍🏫', - keywords: ['teacher'], types: ['🧑🏿‍🏫', '🧑🏾‍🏫', '🧑🏽‍🏫', '🧑🏼‍🏫', '🧑🏻‍🏫'], }, { name: 'man_teacher', code: '👨‍🏫', - keywords: ['school', 'professor', 'man_teacher'], types: ['👨🏿‍🏫', '👨🏾‍🏫', '👨🏽‍🏫', '👨🏼‍🏫', '👨🏻‍🏫'], }, { name: 'woman_teacher', code: '👩‍🏫', - keywords: ['school', 'professor', 'woman_teacher'], types: ['👩🏿‍🏫', '👩🏾‍🏫', '👩🏽‍🏫', '👩🏼‍🏫', '👩🏻‍🏫'], }, { name: 'judge', code: '🧑‍⚖️', - keywords: ['judge'], types: ['🧑🏿‍⚖️', '🧑🏾‍⚖️', '🧑🏽‍⚖️', '🧑🏼‍⚖️', '🧑🏻‍⚖️'], }, { name: 'man_judge', code: '👨‍⚖️', - keywords: ['justice', 'man_judge'], types: ['👨🏿‍⚖️', '👨🏾‍⚖️', '👨🏽‍⚖️', '👨🏼‍⚖️', '👨🏻‍⚖️'], }, { name: 'woman_judge', code: '👩‍⚖️', - keywords: ['justice', 'woman_judge'], types: ['👩🏿‍⚖️', '👩🏾‍⚖️', '👩🏽‍⚖️', '👩🏼‍⚖️', '👩🏻‍⚖️'], }, { name: 'farmer', code: '🧑‍🌾', - keywords: ['farmer'], types: ['🧑🏿‍🌾', '🧑🏾‍🌾', '🧑🏽‍🌾', '🧑🏼‍🌾', '🧑🏻‍🌾'], }, { name: 'man_farmer', code: '👨‍🌾', - keywords: ['man_farmer'], types: ['👨🏿‍🌾', '👨🏾‍🌾', '👨🏽‍🌾', '👨🏼‍🌾', '👨🏻‍🌾'], }, { name: 'woman_farmer', code: '👩‍🌾', - keywords: ['woman_farmer'], types: ['👩🏿‍🌾', '👩🏾‍🌾', '👩🏽‍🌾', '👩🏼‍🌾', '👩🏻‍🌾'], }, { name: 'cook', code: '🧑‍🍳', - keywords: ['cook'], types: ['🧑🏿‍🍳', '🧑🏾‍🍳', '🧑🏽‍🍳', '🧑🏼‍🍳', '🧑🏻‍🍳'], }, { name: 'man_cook', code: '👨‍🍳', - keywords: ['chef', 'man_cook'], types: ['👨🏿‍🍳', '👨🏾‍🍳', '👨🏽‍🍳', '👨🏼‍🍳', '👨🏻‍🍳'], }, { name: 'woman_cook', code: '👩‍🍳', - keywords: ['chef', 'woman_cook'], types: ['👩🏿‍🍳', '👩🏾‍🍳', '👩🏽‍🍳', '👩🏼‍🍳', '👩🏻‍🍳'], }, { name: 'mechanic', code: '🧑‍🔧', - keywords: ['mechanic'], types: ['🧑🏿‍🔧', '🧑🏾‍🔧', '🧑🏽‍🔧', '🧑🏼‍🔧', '🧑🏻‍🔧'], }, { name: 'man_mechanic', code: '👨‍🔧', - keywords: ['man_mechanic'], types: ['👨🏿‍🔧', '👨🏾‍🔧', '👨🏽‍🔧', '👨🏼‍🔧', '👨🏻‍🔧'], }, { name: 'woman_mechanic', code: '👩‍🔧', - keywords: ['woman_mechanic'], types: ['👩🏿‍🔧', '👩🏾‍🔧', '👩🏽‍🔧', '👩🏼‍🔧', '👩🏻‍🔧'], }, { name: 'factory_worker', code: '🧑‍🏭', - keywords: ['factory_worker'], types: ['🧑🏿‍🏭', '🧑🏾‍🏭', '🧑🏽‍🏭', '🧑🏼‍🏭', '🧑🏻‍🏭'], }, { name: 'man_factory_worker', code: '👨‍🏭', - keywords: ['man_factory_worker'], types: ['👨🏿‍🏭', '👨🏾‍🏭', '👨🏽‍🏭', '👨🏼‍🏭', '👨🏻‍🏭'], }, { name: 'woman_factory_worker', code: '👩‍🏭', - keywords: ['woman_factory_worker'], types: ['👩🏿‍🏭', '👩🏾‍🏭', '👩🏽‍🏭', '👩🏼‍🏭', '👩🏻‍🏭'], }, { name: 'office_worker', code: '🧑‍💼', - keywords: ['office_worker'], types: ['🧑🏿‍💼', '🧑🏾‍💼', '🧑🏽‍💼', '🧑🏼‍💼', '🧑🏻‍💼'], }, { name: 'man_office_worker', code: '👨‍💼', - keywords: ['business', 'man_office_worker'], types: ['👨🏿‍💼', '👨🏾‍💼', '👨🏽‍💼', '👨🏼‍💼', '👨🏻‍💼'], }, { name: 'woman_office_worker', code: '👩‍💼', - keywords: ['business', 'woman_office_worker'], types: ['👩🏿‍💼', '👩🏾‍💼', '👩🏽‍💼', '👩🏼‍💼', '👩🏻‍💼'], }, { name: 'scientist', code: '🧑‍🔬', - keywords: ['scientist'], types: ['🧑🏿‍🔬', '🧑🏾‍🔬', '🧑🏽‍🔬', '🧑🏼‍🔬', '🧑🏻‍🔬'], }, { name: 'man_scientist', code: '👨‍🔬', - keywords: ['research', 'man_scientist'], types: ['👨🏿‍🔬', '👨🏾‍🔬', '👨🏽‍🔬', '👨🏼‍🔬', '👨🏻‍🔬'], }, { name: 'woman_scientist', code: '👩‍🔬', - keywords: ['research', 'woman_scientist'], types: ['👩🏿‍🔬', '👩🏾‍🔬', '👩🏽‍🔬', '👩🏼‍🔬', '👩🏻‍🔬'], }, { name: 'technologist', code: '🧑‍💻', - keywords: ['technologist'], types: ['🧑🏿‍💻', '🧑🏾‍💻', '🧑🏽‍💻', '🧑🏼‍💻', '🧑🏻‍💻'], }, { name: 'man_technologist', code: '👨‍💻', - keywords: ['coder', 'man_technologist'], types: ['👨🏿‍💻', '👨🏾‍💻', '👨🏽‍💻', '👨🏼‍💻', '👨🏻‍💻'], }, { name: 'woman_technologist', code: '👩‍💻', - keywords: ['coder', 'woman_technologist'], types: ['👩🏿‍💻', '👩🏾‍💻', '👩🏽‍💻', '👩🏼‍💻', '👩🏻‍💻'], }, { name: 'singer', code: '🧑‍🎤', - keywords: ['singer'], types: ['🧑🏿‍🎤', '🧑🏾‍🎤', '🧑🏽‍🎤', '🧑🏼‍🎤', '🧑🏻‍🎤'], }, { name: 'man_singer', code: '👨‍🎤', - keywords: ['rockstar', 'man_singer'], types: ['👨🏿‍🎤', '👨🏾‍🎤', '👨🏽‍🎤', '👨🏼‍🎤', '👨🏻‍🎤'], }, { name: 'woman_singer', code: '👩‍🎤', - keywords: ['rockstar', 'woman_singer'], types: ['👩🏿‍🎤', '👩🏾‍🎤', '👩🏽‍🎤', '👩🏼‍🎤', '👩🏻‍🎤'], }, { name: 'artist', code: '🧑‍🎨', - keywords: ['artist'], types: ['🧑🏿‍🎨', '🧑🏾‍🎨', '🧑🏽‍🎨', '🧑🏼‍🎨', '🧑🏻‍🎨'], }, { name: 'man_artist', code: '👨‍🎨', - keywords: ['painter', 'man_artist'], types: ['👨🏿‍🎨', '👨🏾‍🎨', '👨🏽‍🎨', '👨🏼‍🎨', '👨🏻‍🎨'], }, { name: 'woman_artist', code: '👩‍🎨', - keywords: ['painter', 'woman_artist'], types: ['👩🏿‍🎨', '👩🏾‍🎨', '👩🏽‍🎨', '👩🏼‍🎨', '👩🏻‍🎨'], }, { name: 'pilot', code: '🧑‍✈️', - keywords: ['pilot'], types: ['🧑🏿‍✈️', '🧑🏾‍✈️', '🧑🏽‍✈️', '🧑🏼‍✈️', '🧑🏻‍✈️'], }, { name: 'man_pilot', code: '👨‍✈️', - keywords: ['man_pilot'], types: ['👨🏿‍✈️', '👨🏾‍✈️', '👨🏽‍✈️', '👨🏼‍✈️', '👨🏻‍✈️'], }, { name: 'woman_pilot', code: '👩‍✈️', - keywords: ['woman_pilot'], types: ['👩🏿‍✈️', '👩🏾‍✈️', '👩🏽‍✈️', '👩🏼‍✈️', '👩🏻‍✈️'], }, { name: 'astronaut', code: '🧑‍🚀', - keywords: ['astronaut'], types: ['🧑🏿‍🚀', '🧑🏾‍🚀', '🧑🏽‍🚀', '🧑🏼‍🚀', '🧑🏻‍🚀'], }, { name: 'man_astronaut', code: '👨‍🚀', - keywords: ['space', 'man_astronaut'], types: ['👨🏿‍🚀', '👨🏾‍🚀', '👨🏽‍🚀', '👨🏼‍🚀', '👨🏻‍🚀'], }, { name: 'woman_astronaut', code: '👩‍🚀', - keywords: ['space', 'woman_astronaut'], types: ['👩🏿‍🚀', '👩🏾‍🚀', '👩🏽‍🚀', '👩🏼‍🚀', '👩🏻‍🚀'], }, { name: 'firefighter', code: '🧑‍🚒', - keywords: ['firefighter'], types: ['🧑🏿‍🚒', '🧑🏾‍🚒', '🧑🏽‍🚒', '🧑🏼‍🚒', '🧑🏻‍🚒'], }, { name: 'man_firefighter', code: '👨‍🚒', - keywords: ['man_firefighter'], types: ['👨🏿‍🚒', '👨🏾‍🚒', '👨🏽‍🚒', '👨🏼‍🚒', '👨🏻‍🚒'], }, { name: 'woman_firefighter', code: '👩‍🚒', - keywords: ['woman_firefighter'], types: ['👩🏿‍🚒', '👩🏾‍🚒', '👩🏽‍🚒', '👩🏼‍🚒', '👩🏻‍🚒'], }, { name: 'police_officer', code: '👮', - keywords: ['law', 'police_officer', 'cop', 'officer', 'police'], types: ['👮🏿', '👮🏾', '👮🏽', '👮🏼', '👮🏻'], }, { name: 'policeman', code: '👮‍♂️', - keywords: ['law', 'cop', 'policeman'], types: ['👮🏿‍♂️', '👮🏾‍♂️', '👮🏽‍♂️', '👮🏼‍♂️', '👮🏻‍♂️'], }, { name: 'policewoman', code: '👮‍♀️', - keywords: ['law', 'cop', 'policewoman'], types: ['👮🏿‍♀️', '👮🏾‍♀️', '👮🏽‍♀️', '👮🏼‍♀️', '👮🏻‍♀️'], }, { name: 'detective', code: '🕵️', - keywords: ['sleuth', 'detective'], types: ['🕵🏿', '🕵🏾', '🕵🏽', '🕵🏼', '🕵🏻'], }, { name: 'male_detective', code: '🕵️‍♂️', - keywords: ['sleuth', 'male_detective'], types: ['🕵🏿‍♂️', '🕵🏾‍♂️', '🕵🏽‍♂️', '🕵🏼‍♂️', '🕵🏻‍♂️'], }, { name: 'female_detective', code: '🕵️‍♀️', - keywords: ['sleuth', 'female_detective'], types: ['🕵🏿‍♀️', '🕵🏾‍♀️', '🕵🏽‍♀️', '🕵🏼‍♀️', '🕵🏻‍♀️'], }, { name: 'guard', code: '💂', - keywords: ['guard', 'guardsman'], types: ['💂🏿', '💂🏾', '💂🏽', '💂🏼', '💂🏻'], }, { name: 'guardsman', code: '💂‍♂️', - keywords: ['guardsman'], types: ['💂🏿‍♂️', '💂🏾‍♂️', '💂🏽‍♂️', '💂🏼‍♂️', '💂🏻‍♂️'], }, { name: 'guardswoman', code: '💂‍♀️', - keywords: ['guardswoman'], types: ['💂🏿‍♀️', '💂🏾‍♀️', '💂🏽‍♀️', '💂🏼‍♀️', '💂🏻‍♀️'], }, { name: 'ninja', code: '🥷', - keywords: ['ninja'], types: ['🥷🏿', '🥷🏾', '🥷🏽', '🥷🏼', '🥷🏻'], }, { name: 'construction_worker', code: '👷', - keywords: ['helmet', 'construction_worker', 'construction', 'hat', 'worker'], types: ['👷🏿', '👷🏾', '👷🏽', '👷🏼', '👷🏻'], }, { name: 'construction_worker_man', code: '👷‍♂️', - keywords: ['helmet', 'construction_worker_man'], types: ['👷🏿‍♂️', '👷🏾‍♂️', '👷🏽‍♂️', '👷🏼‍♂️', '👷🏻‍♂️'], }, { name: 'construction_worker_woman', code: '👷‍♀️', - keywords: ['helmet', 'construction_worker_woman'], types: ['👷🏿‍♀️', '👷🏾‍♀️', '👷🏽‍♀️', '👷🏼‍♀️', '👷🏻‍♀️'], }, { name: 'prince', code: '🤴', - keywords: ['crown', 'royal', 'prince'], types: ['🤴🏿', '🤴🏾', '🤴🏽', '🤴🏼', '🤴🏻'], }, { name: 'princess', code: '👸', - keywords: ['crown', 'royal', 'princess', 'fairy tale', 'fantasy'], types: ['👸🏿', '👸🏾', '👸🏽', '👸🏼', '👸🏻'], }, { name: 'person_with_turban', code: '👳', - keywords: ['person_with_turban', 'man', 'turban'], types: ['👳🏿', '👳🏾', '👳🏽', '👳🏼', '👳🏻'], }, { name: 'man_with_turban', code: '👳‍♂️', - keywords: ['man_with_turban'], types: ['👳🏿‍♂️', '👳🏾‍♂️', '👳🏽‍♂️', '👳🏼‍♂️', '👳🏻‍♂️'], }, { name: 'woman_with_turban', code: '👳‍♀️', - keywords: ['woman_with_turban'], types: ['👳🏿‍♀️', '👳🏾‍♀️', '👳🏽‍♀️', '👳🏼‍♀️', '👳🏻‍♀️'], }, { name: 'man_with_gua_pi_mao', code: '👲', - keywords: ['man_with_gua_pi_mao', 'gua pi mao', 'hat', 'man'], types: ['👲🏿', '👲🏾', '👲🏽', '👲🏼', '👲🏻'], }, { name: 'woman_with_headscarf', code: '🧕', - keywords: ['hijab', 'woman_with_headscarf'], types: ['🧕🏿', '🧕🏾', '🧕🏽', '🧕🏼', '🧕🏻'], }, { name: 'person_in_tuxedo', code: '🤵', - keywords: ['groom', 'marriage', 'wedding', 'person_in_tuxedo', 'man', 'tuxedo'], types: ['🤵🏿', '🤵🏾', '🤵🏽', '🤵🏼', '🤵🏻'], }, { name: 'man_in_tuxedo', code: '🤵‍♂️', - keywords: ['man_in_tuxedo'], types: ['🤵🏿‍♂️', '🤵🏾‍♂️', '🤵🏽‍♂️', '🤵🏼‍♂️', '🤵🏻‍♂️'], }, { name: 'woman_in_tuxedo', code: '🤵‍♀️', - keywords: ['woman_in_tuxedo'], types: ['🤵🏿‍♀️', '🤵🏾‍♀️', '🤵🏽‍♀️', '🤵🏼‍♀️', '🤵🏻‍♀️'], }, { name: 'person_with_veil', code: '👰', - keywords: ['marriage', 'wedding', 'person_with_veil', 'bride', 'veil'], types: ['👰🏿', '👰🏾', '👰🏽', '👰🏼', '👰🏻'], }, { name: 'man_with_veil', code: '👰‍♂️', - keywords: ['man_with_veil'], types: ['👰🏿‍♂️', '👰🏾‍♂️', '👰🏽‍♂️', '👰🏼‍♂️', '👰🏻‍♂️'], }, { name: 'woman_with_veil', code: '👰‍♀️', - keywords: ['woman_with_veil', 'bride_with_veil'], types: ['👰🏿‍♀️', '👰🏾‍♀️', '👰🏽‍♀️', '👰🏼‍♀️', '👰🏻‍♀️'], }, { name: 'pregnant_woman', code: '🤰', - keywords: ['pregnant_woman', 'pregnant', 'woman'], types: ['🤰🏿', '🤰🏾', '🤰🏽', '🤰🏼', '🤰🏻'], }, { name: 'breast_feeding', code: '🤱', - keywords: ['nursing', 'breast_feeding'], types: ['🤱🏿', '🤱🏾', '🤱🏽', '🤱🏼', '🤱🏻'], }, { name: 'woman_feeding_baby', code: '👩‍🍼', - keywords: ['woman_feeding_baby'], types: ['👩🏿‍🍼', '👩🏾‍🍼', '👩🏽‍🍼', '👩🏼‍🍼', '👩🏻‍🍼'], }, { name: 'man_feeding_baby', code: '👨‍🍼', - keywords: ['man_feeding_baby'], types: ['👨🏿‍🍼', '👨🏾‍🍼', '👨🏽‍🍼', '👨🏼‍🍼', '👨🏻‍🍼'], }, { name: 'person_feeding_baby', code: '🧑‍🍼', - keywords: ['person_feeding_baby'], types: ['🧑🏿‍🍼', '🧑🏾‍🍼', '🧑🏽‍🍼', '🧑🏼‍🍼', '🧑🏻‍🍼'], }, { name: 'angel', code: '👼', - keywords: ['angel', 'baby', 'face', 'fairy tale', 'fantasy'], types: ['👼🏿', '👼🏾', '👼🏽', '👼🏼', '👼🏻'], }, { name: 'santa', code: '🎅', - keywords: ['christmas', 'santa', 'activity', 'celebration', 'fairy tale', 'fantasy', 'father'], types: ['🎅🏿', '🎅🏾', '🎅🏽', '🎅🏼', '🎅🏻'], }, { name: 'mrs_claus', code: '🤶', - keywords: ['santa', 'mrs_claus', 'christmas', 'mother', 'mrs. claus'], types: ['🤶🏿', '🤶🏾', '🤶🏽', '🤶🏼', '🤶🏻'], }, { name: 'mx_claus', code: '🧑‍🎄', - keywords: ['mx_claus'], types: ['🧑🏿‍🎄', '🧑🏾‍🎄', '🧑🏽‍🎄', '🧑🏼‍🎄', '🧑🏻‍🎄'], }, { name: 'superhero', code: '🦸', - keywords: ['superhero'], types: ['🦸🏿', '🦸🏾', '🦸🏽', '🦸🏼', '🦸🏻'], }, { name: 'superhero_man', code: '🦸‍♂️', - keywords: ['superhero_man'], types: ['🦸🏿‍♂️', '🦸🏾‍♂️', '🦸🏽‍♂️', '🦸🏼‍♂️', '🦸🏻‍♂️'], }, { name: 'superhero_woman', code: '🦸‍♀️', - keywords: ['superhero_woman'], types: ['🦸🏿‍♀️', '🦸🏾‍♀️', '🦸🏽‍♀️', '🦸🏼‍♀️', '🦸🏻‍♀️'], }, { name: 'supervillain', code: '🦹', - keywords: ['supervillain'], types: ['🦹🏿', '🦹🏾', '🦹🏽', '🦹🏼', '🦹🏻'], }, { name: 'supervillain_man', code: '🦹‍♂️', - keywords: ['supervillain_man'], types: ['🦹🏿‍♂️', '🦹🏾‍♂️', '🦹🏽‍♂️', '🦹🏼‍♂️', '🦹🏻‍♂️'], }, { name: 'supervillain_woman', code: '🦹‍♀️', - keywords: ['supervillain_woman'], types: ['🦹🏿‍♀️', '🦹🏾‍♀️', '🦹🏽‍♀️', '🦹🏼‍♀️', '🦹🏻‍♀️'], }, { name: 'mage', code: '🧙', - keywords: ['wizard', 'mage'], types: ['🧙🏿', '🧙🏾', '🧙🏽', '🧙🏼', '🧙🏻'], }, { name: 'mage_man', code: '🧙‍♂️', - keywords: ['wizard', 'mage_man'], types: ['🧙🏿‍♂️', '🧙🏾‍♂️', '🧙🏽‍♂️', '🧙🏼‍♂️', '🧙🏻‍♂️'], }, { name: 'mage_woman', code: '🧙‍♀️', - keywords: ['wizard', 'mage_woman'], types: ['🧙🏿‍♀️', '🧙🏾‍♀️', '🧙🏽‍♀️', '🧙🏼‍♀️', '🧙🏻‍♀️'], }, { name: 'fairy', code: '🧚', - keywords: ['fairy'], types: ['🧚🏿', '🧚🏾', '🧚🏽', '🧚🏼', '🧚🏻'], }, { name: 'fairy_man', code: '🧚‍♂️', - keywords: ['fairy_man'], types: ['🧚🏿‍♂️', '🧚🏾‍♂️', '🧚🏽‍♂️', '🧚🏼‍♂️', '🧚🏻‍♂️'], }, { name: 'fairy_woman', code: '🧚‍♀️', - keywords: ['fairy_woman'], types: ['🧚🏿‍♀️', '🧚🏾‍♀️', '🧚🏽‍♀️', '🧚🏼‍♀️', '🧚🏻‍♀️'], }, { name: 'vampire', code: '🧛', - keywords: ['vampire'], types: ['🧛🏿', '🧛🏾', '🧛🏽', '🧛🏼', '🧛🏻'], }, { name: 'vampire_man', code: '🧛‍♂️', - keywords: ['vampire_man'], types: ['🧛🏿‍♂️', '🧛🏾‍♂️', '🧛🏽‍♂️', '🧛🏼‍♂️', '🧛🏻‍♂️'], }, { name: 'vampire_woman', code: '🧛‍♀️', - keywords: ['vampire_woman'], types: ['🧛🏿‍♀️', '🧛🏾‍♀️', '🧛🏽‍♀️', '🧛🏼‍♀️', '🧛🏻‍♀️'], }, { name: 'merperson', code: '🧜', - keywords: ['merperson'], types: ['🧜🏿', '🧜🏾', '🧜🏽', '🧜🏼', '🧜🏻'], }, { name: 'merman', code: '🧜‍♂️', - keywords: ['merman'], types: ['🧜🏿‍♂️', '🧜🏾‍♂️', '🧜🏽‍♂️', '🧜🏼‍♂️', '🧜🏻‍♂️'], }, { name: 'mermaid', code: '🧜‍♀️', - keywords: ['mermaid'], types: ['🧜🏿‍♀️', '🧜🏾‍♀️', '🧜🏽‍♀️', '🧜🏼‍♀️', '🧜🏻‍♀️'], }, { name: 'elf', code: '🧝', - keywords: ['elf'], types: ['🧝🏿', '🧝🏾', '🧝🏽', '🧝🏼', '🧝🏻'], }, { name: 'elf_man', code: '🧝‍♂️', - keywords: ['elf_man'], types: ['🧝🏿‍♂️', '🧝🏾‍♂️', '🧝🏽‍♂️', '🧝🏼‍♂️', '🧝🏻‍♂️'], }, { name: 'elf_woman', code: '🧝‍♀️', - keywords: ['elf_woman'], types: ['🧝🏿‍♀️', '🧝🏾‍♀️', '🧝🏽‍♀️', '🧝🏼‍♀️', '🧝🏻‍♀️'], }, { name: 'genie', code: '🧞', - keywords: ['genie'], }, { name: 'genie_man', code: '🧞‍♂️', - keywords: ['genie_man'], }, { name: 'genie_woman', code: '🧞‍♀️', - keywords: ['genie_woman'], }, { name: 'zombie', code: '🧟', - keywords: ['zombie'], }, { name: 'zombie_man', code: '🧟‍♂️', - keywords: ['zombie_man'], }, { name: 'zombie_woman', code: '🧟‍♀️', - keywords: ['zombie_woman'], }, { name: 'massage', code: '💆', - keywords: ['spa', 'massage', 'salon'], types: ['💆🏿', '💆🏾', '💆🏽', '💆🏼', '💆🏻'], }, { name: 'massage_man', code: '💆‍♂️', - keywords: ['spa', 'massage_man'], types: ['💆🏿‍♂️', '💆🏾‍♂️', '💆🏽‍♂️', '💆🏼‍♂️', '💆🏻‍♂️'], }, { name: 'massage_woman', code: '💆‍♀️', - keywords: ['spa', 'massage_woman'], types: ['💆🏿‍♀️', '💆🏾‍♀️', '💆🏽‍♀️', '💆🏼‍♀️', '💆🏻‍♀️'], }, { name: 'haircut', code: '💇', - keywords: ['beauty', 'haircut', 'barber', 'parlor'], types: ['💇🏿', '💇🏾', '💇🏽', '💇🏼', '💇🏻'], }, { name: 'haircut_man', code: '💇‍♂️', - keywords: ['haircut_man'], types: ['💇🏿‍♂️', '💇🏾‍♂️', '💇🏽‍♂️', '💇🏼‍♂️', '💇🏻‍♂️'], }, { name: 'haircut_woman', code: '💇‍♀️', - keywords: ['haircut_woman'], types: ['💇🏿‍♀️', '💇🏾‍♀️', '💇🏽‍♀️', '💇🏼‍♀️', '💇🏻‍♀️'], }, { name: 'walking', code: '🚶', - keywords: ['walking', 'hike', 'pedestrian', 'walk'], types: ['🚶🏿', '🚶🏾', '🚶🏽', '🚶🏼', '🚶🏻'], }, { name: 'walking_man', code: '🚶‍♂️', - keywords: ['walking_man'], types: ['🚶🏿‍♂️', '🚶🏾‍♂️', '🚶🏽‍♂️', '🚶🏼‍♂️', '🚶🏻‍♂️'], }, { name: 'walking_woman', code: '🚶‍♀️', - keywords: ['walking_woman'], types: ['🚶🏿‍♀️', '🚶🏾‍♀️', '🚶🏽‍♀️', '🚶🏼‍♀️', '🚶🏻‍♀️'], }, { name: 'standing_person', code: '🧍', - keywords: ['standing_person'], types: ['🧍🏿', '🧍🏾', '🧍🏽', '🧍🏼', '🧍🏻'], }, { name: 'standing_man', code: '🧍‍♂️', - keywords: ['standing_man'], types: ['🧍🏿‍♂️', '🧍🏾‍♂️', '🧍🏽‍♂️', '🧍🏼‍♂️', '🧍🏻‍♂️'], }, { name: 'standing_woman', code: '🧍‍♀️', - keywords: ['standing_woman'], types: ['🧍🏿‍♀️', '🧍🏾‍♀️', '🧍🏽‍♀️', '🧍🏼‍♀️', '🧍🏻‍♀️'], }, { name: 'kneeling_person', code: '🧎', - keywords: ['kneeling_person'], types: ['🧎🏿', '🧎🏾', '🧎🏽', '🧎🏼', '🧎🏻'], }, { name: 'kneeling_man', code: '🧎‍♂️', - keywords: ['kneeling_man'], types: ['🧎🏿‍♂️', '🧎🏾‍♂️', '🧎🏽‍♂️', '🧎🏼‍♂️', '🧎🏻‍♂️'], }, { name: 'kneeling_woman', code: '🧎‍♀️', - keywords: ['kneeling_woman'], types: ['🧎🏿‍♀️', '🧎🏾‍♀️', '🧎🏽‍♀️', '🧎🏼‍♀️', '🧎🏻‍♀️'], }, { name: 'person_with_probing_cane', code: '🧑‍🦯', - keywords: ['person_with_probing_cane'], types: ['🧑🏿‍🦯', '🧑🏾‍🦯', '🧑🏽‍🦯', '🧑🏼‍🦯', '🧑🏻‍🦯'], }, { name: 'man_with_probing_cane', code: '👨‍🦯', - keywords: ['man_with_probing_cane'], types: ['👨🏿‍🦯', '👨🏾‍🦯', '👨🏽‍🦯', '👨🏼‍🦯', '👨🏻‍🦯'], }, { name: 'woman_with_probing_cane', code: '👩‍🦯', - keywords: ['woman_with_probing_cane'], types: ['👩🏿‍🦯', '👩🏾‍🦯', '👩🏽‍🦯', '👩🏼‍🦯', '👩🏻‍🦯'], }, { name: 'person_in_motorized_wheelchair', code: '🧑‍🦼', - keywords: ['person_in_motorized_wheelchair'], types: ['🧑🏿‍🦼', '🧑🏾‍🦼', '🧑🏽‍🦼', '🧑🏼‍🦼', '🧑🏻‍🦼'], }, { name: 'man_in_motorized_wheelchair', code: '👨‍🦼', - keywords: ['man_in_motorized_wheelchair'], types: ['👨🏿‍🦼', '👨🏾‍🦼', '👨🏽‍🦼', '👨🏼‍🦼', '👨🏻‍🦼'], }, { name: 'woman_in_motorized_wheelchair', code: '👩‍🦼', - keywords: ['woman_in_motorized_wheelchair'], types: ['👩🏿‍🦼', '👩🏾‍🦼', '👩🏽‍🦼', '👩🏼‍🦼', '👩🏻‍🦼'], }, { name: 'person_in_manual_wheelchair', code: '🧑‍🦽', - keywords: ['person_in_manual_wheelchair'], types: ['🧑🏿‍🦽', '🧑🏾‍🦽', '🧑🏽‍🦽', '🧑🏼‍🦽', '🧑🏻‍🦽'], }, { name: 'man_in_manual_wheelchair', code: '👨‍🦽', - keywords: ['man_in_manual_wheelchair'], types: ['👨🏿‍🦽', '👨🏾‍🦽', '👨🏽‍🦽', '👨🏼‍🦽', '👨🏻‍🦽'], }, { name: 'woman_in_manual_wheelchair', code: '👩‍🦽', - keywords: ['woman_in_manual_wheelchair'], types: ['👩🏿‍🦽', '👩🏾‍🦽', '👩🏽‍🦽', '👩🏼‍🦽', '👩🏻‍🦽'], }, { name: 'runner', code: '🏃', - keywords: ['exercise', 'workout', 'marathon', 'runner', 'running'], types: ['🏃🏿', '🏃🏾', '🏃🏽', '🏃🏼', '🏃🏻'], }, { name: 'running_man', code: '🏃‍♂️', - keywords: ['exercise', 'workout', 'marathon', 'running_man'], types: ['🏃🏿‍♂️', '🏃🏾‍♂️', '🏃🏽‍♂️', '🏃🏼‍♂️', '🏃🏻‍♂️'], }, { name: 'running_woman', code: '🏃‍♀️', - keywords: ['exercise', 'workout', 'marathon', 'running_woman'], types: ['🏃🏿‍♀️', '🏃🏾‍♀️', '🏃🏽‍♀️', '🏃🏼‍♀️', '🏃🏻‍♀️'], }, { name: 'woman_dancing', code: '💃', - keywords: ['dress', 'woman_dancing', 'dancer'], types: ['💃🏿', '💃🏾', '💃🏽', '💃🏼', '💃🏻'], }, { name: 'man_dancing', code: '🕺', - keywords: ['dancer', 'man_dancing', 'dance', 'man'], types: ['🕺🏿', '🕺🏾', '🕺🏽', '🕺🏼', '🕺🏻'], }, { name: 'business_suit_levitating', code: '🕴️', - keywords: ['business_suit_levitating'], types: ['🕴🏿', '🕴🏾', '🕴🏽', '🕴🏼', '🕴🏻'], }, { name: 'dancers', code: '👯', - keywords: ['bunny', 'dancers', 'dancer', 'ear', 'girl', 'woman'], }, { name: 'dancing_men', code: '👯‍♂️', - keywords: ['bunny', 'dancing_men'], }, { name: 'dancing_women', code: '👯‍♀️', - keywords: ['bunny', 'dancing_women'], }, { name: 'sauna_person', code: '🧖', - keywords: ['steamy', 'sauna_person'], types: ['🧖🏿', '🧖🏾', '🧖🏽', '🧖🏼', '🧖🏻'], }, { name: 'sauna_man', code: '🧖‍♂️', - keywords: ['steamy', 'sauna_man'], types: ['🧖🏿‍♂️', '🧖🏾‍♂️', '🧖🏽‍♂️', '🧖🏼‍♂️', '🧖🏻‍♂️'], }, { name: 'sauna_woman', code: '🧖‍♀️', - keywords: ['steamy', 'sauna_woman'], types: ['🧖🏿‍♀️', '🧖🏾‍♀️', '🧖🏽‍♀️', '🧖🏼‍♀️', '🧖🏻‍♀️'], }, { name: 'climbing', code: '🧗', - keywords: ['bouldering', 'climbing'], types: ['🧗🏿', '🧗🏾', '🧗🏽', '🧗🏼', '🧗🏻'], }, { name: 'climbing_man', code: '🧗‍♂️', - keywords: ['bouldering', 'climbing_man'], types: ['🧗🏿‍♂️', '🧗🏾‍♂️', '🧗🏽‍♂️', '🧗🏼‍♂️', '🧗🏻‍♂️'], }, { name: 'climbing_woman', code: '🧗‍♀️', - keywords: ['bouldering', 'climbing_woman'], types: ['🧗🏿‍♀️', '🧗🏾‍♀️', '🧗🏽‍♀️', '🧗🏼‍♀️', '🧗🏻‍♀️'], }, { name: 'person_fencing', code: '🤺', - keywords: ['person_fencing', 'fencer', 'fencing', 'sword'], }, { name: 'horse_racing', code: '🏇', - keywords: ['horse_racing', 'horse', 'jockey', 'racehorse', 'racing'], types: ['🏇🏿', '🏇🏾', '🏇🏽', '🏇🏼', '🏇🏻'], }, { name: 'skier', code: '⛷️', - keywords: ['skier'], }, { name: 'snowboarder', code: '🏂', - keywords: ['snowboarder', 'ski', 'snow', 'snowboard'], types: ['🏂🏿', '🏂🏾', '🏂🏽', '🏂🏼', '🏂🏻'], }, { name: 'golfing', code: '🏌️', - keywords: ['golfing'], types: ['🏌🏿', '🏌🏾', '🏌🏽', '🏌🏼', '🏌🏻'], }, { name: 'golfing_man', code: '🏌️‍♂️', - keywords: ['golfing_man'], types: ['🏌🏿‍♂️', '🏌🏾‍♂️', '🏌🏽‍♂️', '🏌🏼‍♂️', '🏌🏻‍♂️'], }, { name: 'golfing_woman', code: '🏌️‍♀️', - keywords: ['golfing_woman'], types: ['🏌🏿‍♀️', '🏌🏾‍♀️', '🏌🏽‍♀️', '🏌🏼‍♀️', '🏌🏻‍♀️'], }, { name: 'surfer', code: '🏄', - keywords: ['surfer', 'surfing'], types: ['🏄🏿', '🏄🏾', '🏄🏽', '🏄🏼', '🏄🏻'], }, { name: 'surfing_man', code: '🏄‍♂️', - keywords: ['surfing_man'], types: ['🏄🏿‍♂️', '🏄🏾‍♂️', '🏄🏽‍♂️', '🏄🏼‍♂️', '🏄🏻‍♂️'], }, { name: 'surfing_woman', code: '🏄‍♀️', - keywords: ['surfing_woman'], types: ['🏄🏿‍♀️', '🏄🏾‍♀️', '🏄🏽‍♀️', '🏄🏼‍♀️', '🏄🏻‍♀️'], }, { name: 'rowboat', code: '🚣', - keywords: ['rowboat', 'boat', 'vehicle'], types: ['🚣🏿', '🚣🏾', '🚣🏽', '🚣🏼', '🚣🏻'], }, { name: 'rowing_man', code: '🚣‍♂️', - keywords: ['rowing_man'], types: ['🚣🏿‍♂️', '🚣🏾‍♂️', '🚣🏽‍♂️', '🚣🏼‍♂️', '🚣🏻‍♂️'], }, { name: 'rowing_woman', code: '🚣‍♀️', - keywords: ['rowing_woman'], types: ['🚣🏿‍♀️', '🚣🏾‍♀️', '🚣🏽‍♀️', '🚣🏼‍♀️', '🚣🏻‍♀️'], }, { name: 'swimmer', code: '🏊', - keywords: ['swimmer', 'swim'], types: ['🏊🏿', '🏊🏾', '🏊🏽', '🏊🏼', '🏊🏻'], }, { name: 'swimming_man', code: '🏊‍♂️', - keywords: ['swimming_man'], types: ['🏊🏿‍♂️', '🏊🏾‍♂️', '🏊🏽‍♂️', '🏊🏼‍♂️', '🏊🏻‍♂️'], }, { name: 'swimming_woman', code: '🏊‍♀️', - keywords: ['swimming_woman'], types: ['🏊🏿‍♀️', '🏊🏾‍♀️', '🏊🏽‍♀️', '🏊🏼‍♀️', '🏊🏻‍♀️'], }, { name: 'bouncing_ball_person', code: '⛹️', - keywords: ['basketball', 'bouncing_ball_person'], types: ['⛹🏿', '⛹🏾', '⛹🏽', '⛹🏼', '⛹🏻'], }, { name: 'bouncing_ball_man', code: '⛹️‍♂️', - keywords: ['bouncing_ball_man', 'basketball_man'], types: ['⛹🏿‍♂️', '⛹🏾‍♂️', '⛹🏽‍♂️', '⛹🏼‍♂️', '⛹🏻‍♂️'], }, { name: 'bouncing_ball_woman', code: '⛹️‍♀️', - keywords: ['bouncing_ball_woman', 'basketball_woman'], types: ['⛹🏿‍♀️', '⛹🏾‍♀️', '⛹🏽‍♀️', '⛹🏼‍♀️', '⛹🏻‍♀️'], }, { name: 'weight_lifting', code: '🏋️', - keywords: ['gym', 'workout', 'weight_lifting'], types: ['🏋🏿', '🏋🏾', '🏋🏽', '🏋🏼', '🏋🏻'], }, { name: 'weight_lifting_man', code: '🏋️‍♂️', - keywords: ['gym', 'workout', 'weight_lifting_man'], types: ['🏋🏿‍♂️', '🏋🏾‍♂️', '🏋🏽‍♂️', '🏋🏼‍♂️', '🏋🏻‍♂️'], }, { name: 'weight_lifting_woman', code: '🏋️‍♀️', - keywords: ['gym', 'workout', 'weight_lifting_woman'], types: ['🏋🏿‍♀️', '🏋🏾‍♀️', '🏋🏽‍♀️', '🏋🏼‍♀️', '🏋🏻‍♀️'], }, { name: 'bicyclist', code: '🚴', - keywords: ['bicyclist', 'bicycle', 'bike', 'cyclist'], types: ['🚴🏿', '🚴🏾', '🚴🏽', '🚴🏼', '🚴🏻'], }, { name: 'biking_man', code: '🚴‍♂️', - keywords: ['biking_man'], types: ['🚴🏿‍♂️', '🚴🏾‍♂️', '🚴🏽‍♂️', '🚴🏼‍♂️', '🚴🏻‍♂️'], }, { name: 'biking_woman', code: '🚴‍♀️', - keywords: ['biking_woman'], types: ['🚴🏿‍♀️', '🚴🏾‍♀️', '🚴🏽‍♀️', '🚴🏼‍♀️', '🚴🏻‍♀️'], }, { name: 'mountain_bicyclist', code: '🚵', - keywords: ['mountain_bicyclist', 'bicycle', 'bicyclist', 'bike', 'cyclist', 'mountain'], types: ['🚵🏿', '🚵🏾', '🚵🏽', '🚵🏼', '🚵🏻'], }, { name: 'mountain_biking_man', code: '🚵‍♂️', - keywords: ['mountain_biking_man'], types: ['🚵🏿‍♂️', '🚵🏾‍♂️', '🚵🏽‍♂️', '🚵🏼‍♂️', '🚵🏻‍♂️'], }, { name: 'mountain_biking_woman', code: '🚵‍♀️', - keywords: ['mountain_biking_woman'], types: ['🚵🏿‍♀️', '🚵🏾‍♀️', '🚵🏽‍♀️', '🚵🏼‍♀️', '🚵🏻‍♀️'], }, { name: 'cartwheeling', code: '🤸', - keywords: ['cartwheeling', 'cartwheel', 'gymnastics'], types: ['🤸🏿', '🤸🏾', '🤸🏽', '🤸🏼', '🤸🏻'], }, { name: 'man_cartwheeling', code: '🤸‍♂️', - keywords: ['man_cartwheeling'], types: ['🤸🏿‍♂️', '🤸🏾‍♂️', '🤸🏽‍♂️', '🤸🏼‍♂️', '🤸🏻‍♂️'], }, { name: 'woman_cartwheeling', code: '🤸‍♀️', - keywords: ['woman_cartwheeling'], types: ['🤸🏿‍♀️', '🤸🏾‍♀️', '🤸🏽‍♀️', '🤸🏼‍♀️', '🤸🏻‍♀️'], }, { name: 'wrestling', code: '🤼', - keywords: ['wrestling', 'wrestle', 'wrestler'], }, { name: 'men_wrestling', code: '🤼‍♂️', - keywords: ['men_wrestling'], }, { name: 'women_wrestling', code: '🤼‍♀️', - keywords: ['women_wrestling'], }, { name: 'water_polo', code: '🤽', - keywords: ['water_polo', 'polo', 'water'], types: ['🤽🏿', '🤽🏾', '🤽🏽', '🤽🏼', '🤽🏻'], }, { name: 'man_playing_water_polo', code: '🤽‍♂️', - keywords: ['man_playing_water_polo'], types: ['🤽🏿‍♂️', '🤽🏾‍♂️', '🤽🏽‍♂️', '🤽🏼‍♂️', '🤽🏻‍♂️'], }, { name: 'woman_playing_water_polo', code: '🤽‍♀️', - keywords: ['woman_playing_water_polo'], types: ['🤽🏿‍♀️', '🤽🏾‍♀️', '🤽🏽‍♀️', '🤽🏼‍♀️', '🤽🏻‍♀️'], }, { name: 'handball_person', code: '🤾', - keywords: ['handball_person', 'ball', 'handball'], types: ['🤾🏿', '🤾🏾', '🤾🏽', '🤾🏼', '🤾🏻'], }, { name: 'man_playing_handball', code: '🤾‍♂️', - keywords: ['man_playing_handball'], types: ['🤾🏿‍♂️', '🤾🏾‍♂️', '🤾🏽‍♂️', '🤾🏼‍♂️', '🤾🏻‍♂️'], }, { name: 'woman_playing_handball', code: '🤾‍♀️', - keywords: ['woman_playing_handball'], types: ['🤾🏿‍♀️', '🤾🏾‍♀️', '🤾🏽‍♀️', '🤾🏼‍♀️', '🤾🏻‍♀️'], }, { name: 'juggling_person', code: '🤹', - keywords: ['juggling_person', 'balance', 'juggle', 'multitask', 'skill'], types: ['🤹🏿', '🤹🏾', '🤹🏽', '🤹🏼', '🤹🏻'], }, { name: 'man_juggling', code: '🤹‍♂️', - keywords: ['man_juggling'], types: ['🤹🏿‍♂️', '🤹🏾‍♂️', '🤹🏽‍♂️', '🤹🏼‍♂️', '🤹🏻‍♂️'], }, { name: 'woman_juggling', code: '🤹‍♀️', - keywords: ['woman_juggling'], types: ['🤹🏿‍♀️', '🤹🏾‍♀️', '🤹🏽‍♀️', '🤹🏼‍♀️', '🤹🏻‍♀️'], }, { name: 'lotus_position', code: '🧘', - keywords: ['meditation', 'lotus_position'], types: ['🧘🏿', '🧘🏾', '🧘🏽', '🧘🏼', '🧘🏻'], }, { name: 'lotus_position_man', code: '🧘‍♂️', - keywords: ['meditation', 'lotus_position_man'], types: ['🧘🏿‍♂️', '🧘🏾‍♂️', '🧘🏽‍♂️', '🧘🏼‍♂️', '🧘🏻‍♂️'], }, { name: 'lotus_position_woman', code: '🧘‍♀️', - keywords: ['meditation', 'lotus_position_woman'], types: ['🧘🏿‍♀️', '🧘🏾‍♀️', '🧘🏽‍♀️', '🧘🏼‍♀️', '🧘🏻‍♀️'], }, { name: 'bath', code: '🛀', - keywords: ['shower', 'bath', 'bathtub'], types: ['🛀🏿', '🛀🏾', '🛀🏽', '🛀🏼', '🛀🏻'], }, { name: 'sleeping_bed', code: '🛌', - keywords: ['sleeping_bed', 'hotel', 'sleep'], types: ['🛌🏿', '🛌🏾', '🛌🏽', '🛌🏼', '🛌🏻'], }, { name: 'people_holding_hands', code: '🧑‍🤝‍🧑', - keywords: ['couple', 'date', 'people_holding_hands'], types: ['🧑🏿‍🤝‍🧑🏿', '🧑🏿‍🤝‍🧑🏾', '🧑🏿‍🤝‍🧑🏽', '🧑🏿‍🤝‍🧑🏼', '🧑🏿‍🤝‍🧑🏻', '🧑🏾‍🤝‍🧑🏿', '🧑🏾‍🤝‍🧑🏾', '🧑🏾‍🤝‍🧑🏽', '🧑🏾‍🤝‍🧑🏼', '🧑🏾‍🤝‍🧑🏻', '🧑🏽‍🤝‍🧑🏿', '🧑🏽‍🤝‍🧑🏾', '🧑🏽‍🤝‍🧑🏽', '🧑🏽‍🤝‍🧑🏼', '🧑🏽‍🤝‍🧑🏻', '🧑🏼‍🤝‍🧑🏿', '🧑🏼‍🤝‍🧑🏾', '🧑🏼‍🤝‍🧑🏽', '🧑🏼‍🤝‍🧑🏼', '🧑🏼‍🤝‍🧑🏻', '🧑🏻‍🤝‍🧑🏿', '🧑🏻‍🤝‍🧑🏾', '🧑🏻‍🤝‍🧑🏽', '🧑🏻‍🤝‍🧑🏼', '🧑🏻‍🤝‍🧑🏻'], }, { name: 'two_women_holding_hands', code: '👭', - keywords: ['couple', 'date', 'two_women_holding_hands', 'hand', 'hold', 'woman'], types: ['👩🏿‍🤝‍👩🏾', '👩🏿‍🤝‍👩🏽', '👩🏿‍🤝‍👩🏼', '👩🏿‍🤝‍👩🏻', '👩🏾‍🤝‍👩🏿', '👩🏾‍🤝‍👩🏽', '👩🏾‍🤝‍👩🏼', '👩🏾‍🤝‍👩🏻', '👩🏽‍🤝‍👩🏿', '👩🏽‍🤝‍👩🏾', '👩🏽‍🤝‍👩🏼', '👩🏽‍🤝‍👩🏻', '👩🏼‍🤝‍👩🏿', '👩🏼‍🤝‍👩🏾', '👩🏼‍🤝‍👩🏽', '👩🏼‍🤝‍👩🏻', '👩🏻‍🤝‍👩🏿', '👩🏻‍🤝‍👩🏾', '👩🏻‍🤝‍👩🏽', '👩🏻‍🤝‍👩🏼', '👭🏿', '👭🏾', '👭🏽', '👭🏼', '👭🏻'], }, { name: 'couple', code: '👫', - keywords: ['date', 'couple', 'hand', 'hold', 'man', 'woman'], types: ['👩🏿‍🤝‍👨🏾', '👩🏿‍🤝‍👨🏽', '👩🏿‍🤝‍👨🏼', '👩🏿‍🤝‍👨🏻', '👩🏾‍🤝‍👨🏿', '👩🏾‍🤝‍👨🏽', '👩🏾‍🤝‍👨🏼', '👩🏾‍🤝‍👨🏻', '👩🏽‍🤝‍👨🏿', '👩🏽‍🤝‍👨🏾', '👩🏽‍🤝‍👨🏼', '👩🏽‍🤝‍👨🏻', '👩🏼‍🤝‍👨🏿', '👩🏼‍🤝‍👨🏾', '👩🏼‍🤝‍👨🏽', '👩🏼‍🤝‍👨🏻', '👩🏻‍🤝‍👨🏿', '👩🏻‍🤝‍👨🏾', '👩🏻‍🤝‍👨🏽', '👩🏻‍🤝‍👨🏼', '👫🏿', '👫🏾', '👫🏽', '👫🏼', '👫🏻'], }, { name: 'two_men_holding_hands', code: '👬', - keywords: ['couple', 'date', 'two_men_holding_hands', 'gemini', 'hand', 'hold', 'man', 'twins', 'zodiac'], types: ['👨🏿‍🤝‍👨🏾', '👨🏿‍🤝‍👨🏽', '👨🏿‍🤝‍👨🏼', '👨🏿‍🤝‍👨🏻', '👨🏾‍🤝‍👨🏿', '👨🏾‍🤝‍👨🏽', '👨🏾‍🤝‍👨🏼', '👨🏾‍🤝‍👨🏻', '👨🏽‍🤝‍👨🏿', '👨🏽‍🤝‍👨🏾', '👨🏽‍🤝‍👨🏼', '👨🏽‍🤝‍👨🏻', '👨🏼‍🤝‍👨🏿', '👨🏼‍🤝‍👨🏾', '👨🏼‍🤝‍👨🏽', '👨🏼‍🤝‍👨🏻', '👨🏻‍🤝‍👨🏿', '👨🏻‍🤝‍👨🏾', '👨🏻‍🤝‍👨🏽', '👨🏻‍🤝‍👨🏼', '👬🏿', '👬🏾', '👬🏽', '👬🏼', '👬🏻'], }, { name: 'couplekiss', code: '💏', - keywords: ['couplekiss', 'couple', 'kiss', 'romance'], types: ['🧑🏿‍❤️‍💋‍🧑🏾', '🧑🏿‍❤️‍💋‍🧑🏽', '🧑🏿‍❤️‍💋‍🧑🏼', '🧑🏿‍❤️‍💋‍🧑🏻', '🧑🏾‍❤️‍💋‍🧑🏿', '🧑🏾‍❤️‍💋‍🧑🏽', '🧑🏾‍❤️‍💋‍🧑🏼', '🧑🏾‍❤️‍💋‍🧑🏻', '🧑🏽‍❤️‍💋‍🧑🏿', '🧑🏽‍❤️‍💋‍🧑🏾', '🧑🏽‍❤️‍💋‍🧑🏼', '🧑🏽‍❤️‍💋‍🧑🏻', '🧑🏼‍❤️‍💋‍🧑🏿', '🧑🏼‍❤️‍💋‍🧑🏾', '🧑🏼‍❤️‍💋‍🧑🏽', '🧑🏼‍❤️‍💋‍🧑🏻', '🧑🏻‍❤️‍💋‍🧑🏿', '🧑🏻‍❤️‍💋‍🧑🏾', '🧑🏻‍❤️‍💋‍🧑🏽', '🧑🏻‍❤️‍💋‍🧑🏼', '💏🏿', '💏🏾', '💏🏽', '💏🏼', '💏🏻'], }, { name: 'couplekiss_man_woman', code: '👩‍❤️‍💋‍👨', - keywords: ['couplekiss_man_woman'], types: ['👩🏿‍❤️‍💋‍👨🏿', '👩🏿‍❤️‍💋‍👨🏾', '👩🏿‍❤️‍💋‍👨🏽', '👩🏿‍❤️‍💋‍👨🏼', '👩🏿‍❤️‍💋‍👨🏻', '👩🏾‍❤️‍💋‍👨🏿', '👩🏾‍❤️‍💋‍👨🏾', '👩🏾‍❤️‍💋‍👨🏽', '👩🏾‍❤️‍💋‍👨🏼', '👩🏾‍❤️‍💋‍👨🏻', '👩🏽‍❤️‍💋‍👨🏿', '👩🏽‍❤️‍💋‍👨🏾', '👩🏽‍❤️‍💋‍👨🏽', '👩🏽‍❤️‍💋‍👨🏼', '👩🏽‍❤️‍💋‍👨🏻', '👩🏼‍❤️‍💋‍👨🏿', '👩🏼‍❤️‍💋‍👨🏾', '👩🏼‍❤️‍💋‍👨🏽', '👩🏼‍❤️‍💋‍👨🏼', '👩🏼‍❤️‍💋‍👨🏻', '👩🏻‍❤️‍💋‍👨🏿', '👩🏻‍❤️‍💋‍👨🏾', '👩🏻‍❤️‍💋‍👨🏽', '👩🏻‍❤️‍💋‍👨🏼', '👩🏻‍❤️‍💋‍👨🏻'], }, { name: 'couplekiss_man_man', code: '👨‍❤️‍💋‍👨', - keywords: ['couplekiss_man_man'], types: ['👨🏿‍❤️‍💋‍👨🏿', '👨🏿‍❤️‍💋‍👨🏾', '👨🏿‍❤️‍💋‍👨🏽', '👨🏿‍❤️‍💋‍👨🏼', '👨🏿‍❤️‍💋‍👨🏻', '👨🏾‍❤️‍💋‍👨🏿', '👨🏾‍❤️‍💋‍👨🏾', '👨🏾‍❤️‍💋‍👨🏽', '👨🏾‍❤️‍💋‍👨🏼', '👨🏾‍❤️‍💋‍👨🏻', '👨🏽‍❤️‍💋‍👨🏿', '👨🏽‍❤️‍💋‍👨🏾', '👨🏽‍❤️‍💋‍👨🏽', '👨🏽‍❤️‍💋‍👨🏼', '👨🏽‍❤️‍💋‍👨🏻', '👨🏼‍❤️‍💋‍👨🏿', '👨🏼‍❤️‍💋‍👨🏾', '👨🏼‍❤️‍💋‍👨🏽', '👨🏼‍❤️‍💋‍👨🏼', '👨🏼‍❤️‍💋‍👨🏻', '👨🏻‍❤️‍💋‍👨🏿', '👨🏻‍❤️‍💋‍👨🏾', '👨🏻‍❤️‍💋‍👨🏽', '👨🏻‍❤️‍💋‍👨🏼', '👨🏻‍❤️‍💋‍👨🏻'], }, { name: 'couplekiss_woman_woman', code: '👩‍❤️‍💋‍👩', - keywords: ['couplekiss_woman_woman'], types: ['👩🏿‍❤️‍💋‍👩🏿', '👩🏿‍❤️‍💋‍👩🏾', '👩🏿‍❤️‍💋‍👩🏽', '👩🏿‍❤️‍💋‍👩🏼', '👩🏿‍❤️‍💋‍👩🏻', '👩🏾‍❤️‍💋‍👩🏿', '👩🏾‍❤️‍💋‍👩🏾', '👩🏾‍❤️‍💋‍👩🏽', '👩🏾‍❤️‍💋‍👩🏼', '👩🏾‍❤️‍💋‍👩🏻', '👩🏽‍❤️‍💋‍👩🏿', '👩🏽‍❤️‍💋‍👩🏾', '👩🏽‍❤️‍💋‍👩🏽', '👩🏽‍❤️‍💋‍👩🏼', '👩🏽‍❤️‍💋‍👩🏻', '👩🏼‍❤️‍💋‍👩🏿', '👩🏼‍❤️‍💋‍👩🏾', '👩🏼‍❤️‍💋‍👩🏽', '👩🏼‍❤️‍💋‍👩🏼', '👩🏼‍❤️‍💋‍👩🏻', '👩🏻‍❤️‍💋‍👩🏿', '👩🏻‍❤️‍💋‍👩🏾', '👩🏻‍❤️‍💋‍👩🏽', '👩🏻‍❤️‍💋‍👩🏼', '👩🏻‍❤️‍💋‍👩🏻'], }, { name: 'couple_with_heart', code: '💑', - keywords: ['couple_with_heart', 'couple', 'heart', 'love', 'romance'], types: ['🧑🏿‍❤️‍🧑🏾', '🧑🏿‍❤️‍🧑🏽', '🧑🏿‍❤️‍🧑🏼', '🧑🏿‍❤️‍🧑🏻', '🧑🏾‍❤️‍🧑🏿', '🧑🏾‍❤️‍🧑🏽', '🧑🏾‍❤️‍🧑🏼', '🧑🏾‍❤️‍🧑🏻', '🧑🏽‍❤️‍🧑🏿', '🧑🏽‍❤️‍🧑🏾', '🧑🏽‍❤️‍🧑🏼', '🧑🏽‍❤️‍🧑🏻', '🧑🏼‍❤️‍🧑🏿', '🧑🏼‍❤️‍🧑🏾', '🧑🏼‍❤️‍🧑🏽', '🧑🏼‍❤️‍🧑🏻', '🧑🏻‍❤️‍🧑🏿', '🧑🏻‍❤️‍🧑🏾', '🧑🏻‍❤️‍🧑🏽', '🧑🏻‍❤️‍🧑🏼', '💑🏿', '💑🏾', '💑🏽', '💑🏼', '💑🏻'], }, { name: 'couple_with_heart_woman_man', code: '👩‍❤️‍👨', - keywords: ['couple_with_heart_woman_man'], types: ['👩🏿‍❤️‍👨🏿', '👩🏿‍❤️‍👨🏾', '👩🏿‍❤️‍👨🏽', '👩🏿‍❤️‍👨🏼', '👩🏿‍❤️‍👨🏻', '👩🏾‍❤️‍👨🏿', '👩🏾‍❤️‍👨🏾', '👩🏾‍❤️‍👨🏽', '👩🏾‍❤️‍👨🏼', '👩🏾‍❤️‍👨🏻', '👩🏽‍❤️‍👨🏿', '👩🏽‍❤️‍👨🏾', '👩🏽‍❤️‍👨🏽', '👩🏽‍❤️‍👨🏼', '👩🏽‍❤️‍👨🏻', '👩🏼‍❤️‍👨🏿', '👩🏼‍❤️‍👨🏾', '👩🏼‍❤️‍👨🏽', '👩🏼‍❤️‍👨🏼', '👩🏼‍❤️‍👨🏻', '👩🏻‍❤️‍👨🏿', '👩🏻‍❤️‍👨🏾', '👩🏻‍❤️‍👨🏽', '👩🏻‍❤️‍👨🏼', '👩🏻‍❤️‍👨🏻'], }, { name: 'couple_with_heart_man_man', code: '👨‍❤️‍👨', - keywords: ['couple_with_heart_man_man'], types: ['👨🏿‍❤️‍👨🏿', '👨🏿‍❤️‍👨🏾', '👨🏿‍❤️‍👨🏽', '👨🏿‍❤️‍👨🏼', '👨🏿‍❤️‍👨🏻', '👨🏾‍❤️‍👨🏿', '👨🏾‍❤️‍👨🏾', '👨🏾‍❤️‍👨🏽', '👨🏾‍❤️‍👨🏼', '👨🏾‍❤️‍👨🏻', '👨🏽‍❤️‍👨🏿', '👨🏽‍❤️‍👨🏾', '👨🏽‍❤️‍👨🏽', '👨🏽‍❤️‍👨🏼', '👨🏽‍❤️‍👨🏻', '👨🏼‍❤️‍👨🏿', '👨🏼‍❤️‍👨🏾', '👨🏼‍❤️‍👨🏽', '👨🏼‍❤️‍👨🏼', '👨🏼‍❤️‍👨🏻', '👨🏻‍❤️‍👨🏿', '👨🏻‍❤️‍👨🏾', '👨🏻‍❤️‍👨🏽', '👨🏻‍❤️‍👨🏼', '👨🏻‍❤️‍👨🏻'], }, { name: 'couple_with_heart_woman_woman', code: '👩‍❤️‍👩', - keywords: ['couple_with_heart_woman_woman'], types: ['👩🏿‍❤️‍👩🏿', '👩🏿‍❤️‍👩🏾', '👩🏿‍❤️‍👩🏽', '👩🏿‍❤️‍👩🏼', '👩🏿‍❤️‍👩🏻', '👩🏾‍❤️‍👩🏿', '👩🏾‍❤️‍👩🏾', '👩🏾‍❤️‍👩🏽', '👩🏾‍❤️‍👩🏼', '👩🏾‍❤️‍👩🏻', '👩🏽‍❤️‍👩🏿', '👩🏽‍❤️‍👩🏾', '👩🏽‍❤️‍👩🏽', '👩🏽‍❤️‍👩🏼', '👩🏽‍❤️‍👩🏻', '👩🏼‍❤️‍👩🏿', '👩🏼‍❤️‍👩🏾', '👩🏼‍❤️‍👩🏽', '👩🏼‍❤️‍👩🏼', '👩🏼‍❤️‍👩🏻', '👩🏻‍❤️‍👩🏿', '👩🏻‍❤️‍👩🏾', '👩🏻‍❤️‍👩🏽', '👩🏻‍❤️‍👩🏼', '👩🏻‍❤️‍👩🏻'], }, { name: 'family', code: '👪', - keywords: ['home', 'parents', 'child', 'family', 'father', 'mother'], }, { name: 'family_man_woman_boy', code: '👨‍👩‍👦', - keywords: ['family_man_woman_boy', 'boy', 'family', 'man', 'woman'], }, { name: 'family_man_woman_girl', code: '👨‍👩‍👧', - keywords: ['family_man_woman_girl', 'family', 'girl', 'man', 'woman'], }, { name: 'family_man_woman_girl_boy', code: '👨‍👩‍👧‍👦', - keywords: ['family_man_woman_girl_boy', 'boy', 'family', 'girl', 'man', 'woman'], }, { name: 'family_man_woman_boy_boy', code: '👨‍👩‍👦‍👦', - keywords: ['family_man_woman_boy_boy', 'boy', 'family', 'man', 'woman'], }, { name: 'family_man_woman_girl_girl', code: '👨‍👩‍👧‍👧', - keywords: ['family_man_woman_girl_girl', 'family', 'girl', 'man', 'woman'], }, { name: 'family_man_man_boy', code: '👨‍👨‍👦', - keywords: ['family_man_man_boy', 'boy', 'family', 'man'], }, { name: 'family_man_man_girl', code: '👨‍👨‍👧', - keywords: ['family_man_man_girl', 'family', 'girl', 'man'], }, { name: 'family_man_man_girl_boy', code: '👨‍👨‍👧‍👦', - keywords: ['family_man_man_girl_boy', 'boy', 'family', 'girl', 'man'], }, { name: 'family_man_man_boy_boy', code: '👨‍👨‍👦‍👦', - keywords: ['family_man_man_boy_boy', 'boy', 'family', 'man'], }, { name: 'family_man_man_girl_girl', code: '👨‍👨‍👧‍👧', - keywords: ['family_man_man_girl_girl', 'family', 'girl', 'man'], }, { name: 'family_woman_woman_boy', code: '👩‍👩‍👦', - keywords: ['family_woman_woman_boy', 'boy', 'family', 'woman'], }, { name: 'family_woman_woman_girl', code: '👩‍👩‍👧', - keywords: ['family_woman_woman_girl', 'family', 'girl', 'woman'], }, { name: 'family_woman_woman_girl_boy', code: '👩‍👩‍👧‍👦', - keywords: ['family_woman_woman_girl_boy', 'boy', 'family', 'girl', 'woman'], }, { name: 'family_woman_woman_boy_boy', code: '👩‍👩‍👦‍👦', - keywords: ['family_woman_woman_boy_boy', 'boy', 'family', 'woman'], }, { name: 'family_woman_woman_girl_girl', code: '👩‍👩‍👧‍👧', - keywords: ['family_woman_woman_girl_girl', 'family', 'girl', 'woman'], }, { name: 'family_man_boy', code: '👨‍👦', - keywords: ['family_man_boy'], }, { name: 'family_man_boy_boy', code: '👨‍👦‍👦', - keywords: ['family_man_boy_boy'], }, { name: 'family_man_girl', code: '👨‍👧', - keywords: ['family_man_girl'], }, { name: 'family_man_girl_boy', code: '👨‍👧‍👦', - keywords: ['family_man_girl_boy'], }, { name: 'family_man_girl_girl', code: '👨‍👧‍👧', - keywords: ['family_man_girl_girl'], }, { name: 'family_woman_boy', code: '👩‍👦', - keywords: ['family_woman_boy'], }, { name: 'family_woman_boy_boy', code: '👩‍👦‍👦', - keywords: ['family_woman_boy_boy'], }, { name: 'family_woman_girl', code: '👩‍👧', - keywords: ['family_woman_girl'], }, { name: 'family_woman_girl_boy', code: '👩‍👧‍👦', - keywords: ['family_woman_girl_boy'], }, { name: 'family_woman_girl_girl', code: '👩‍👧‍👧', - keywords: ['family_woman_girl_girl'], }, { name: 'speaking_head', code: '🗣️', - keywords: ['speaking_head'], }, { name: 'bust_in_silhouette', code: '👤', - keywords: ['user', 'bust_in_silhouette', 'bust', 'silhouette'], }, { name: 'busts_in_silhouette', code: '👥', - keywords: ['users', 'group', 'team', 'busts_in_silhouette', 'bust', 'silhouette'], }, { name: 'people_hugging', code: '🫂', - keywords: ['people_hugging'], }, { name: 'footprints', code: '👣', - keywords: ['feet', 'tracks', 'footprints', 'body', 'clothing', 'footprint', 'print'], }, { - code: 'animalsAndNature', header: true, icon: AnimalsAndNature, + code: 'animalsAndNature', }, { name: 'monkey_face', code: '🐵', - keywords: ['monkey_face', 'face', 'monkey'], }, { name: 'monkey', code: '🐒', - keywords: ['monkey'], }, { name: 'gorilla', code: '🦍', - keywords: ['gorilla'], }, { name: 'orangutan', code: '🦧', - keywords: ['orangutan'], }, { name: 'dog', code: '🐶', - keywords: ['pet', 'dog', 'face'], }, { name: 'dog2', code: '🐕', - keywords: ['dog2', 'dog', 'pet'], }, { name: 'guide_dog', code: '🦮', - keywords: ['guide_dog'], }, { name: 'service_dog', code: '🐕‍🦺', - keywords: ['service_dog'], }, { name: 'poodle', code: '🐩', - keywords: ['dog', 'poodle'], }, { name: 'wolf', code: '🐺', - keywords: ['wolf', 'face'], }, { name: 'fox_face', code: '🦊', - keywords: ['fox_face', 'face', 'fox'], }, { name: 'raccoon', code: '🦝', - keywords: ['raccoon'], }, { name: 'cat', code: '🐱', - keywords: ['pet', 'cat', 'face'], }, { name: 'cat2', code: '🐈', - keywords: ['cat2', 'cat', 'pet'], }, { name: 'black_cat', code: '🐈‍⬛', - keywords: ['black_cat'], }, { name: 'lion', code: '🦁', - keywords: ['lion', 'face', 'leo', 'zodiac'], }, { name: 'tiger', code: '🐯', - keywords: ['tiger', 'face'], }, { name: 'tiger2', code: '🐅', - keywords: ['tiger2', 'tiger'], }, { name: 'leopard', code: '🐆', - keywords: ['leopard'], }, { name: 'horse', code: '🐴', - keywords: ['horse', 'face'], }, { name: 'racehorse', code: '🐎', - keywords: ['speed', 'racehorse', 'horse', 'racing'], }, { name: 'unicorn', code: '🦄', - keywords: ['unicorn', 'face'], }, { name: 'zebra', code: '🦓', - keywords: ['zebra'], }, { name: 'deer', code: '🦌', - keywords: ['deer'], }, { name: 'bison', code: '🦬', - keywords: ['bison'], }, { name: 'cow', code: '🐮', - keywords: ['cow', 'face'], }, { name: 'ox', code: '🐂', - keywords: ['ox', 'bull', 'taurus', 'zodiac'], }, { name: 'water_buffalo', code: '🐃', - keywords: ['water_buffalo', 'buffalo', 'water'], }, { name: 'cow2', code: '🐄', - keywords: ['cow2', 'cow'], }, { name: 'pig', code: '🐷', - keywords: ['pig', 'face'], }, { name: 'pig2', code: '🐖', - keywords: ['pig2', 'pig', 'sow'], }, { name: 'boar', code: '🐗', - keywords: ['boar', 'pig'], }, { name: 'pig_nose', code: '🐽', - keywords: ['pig_nose', 'face', 'nose', 'pig'], }, { name: 'ram', code: '🐏', - keywords: ['ram', 'aries', 'sheep', 'zodiac'], }, { name: 'sheep', code: '🐑', - keywords: ['sheep', 'ewe'], }, { name: 'goat', code: '🐐', - keywords: ['goat', 'capricorn', 'zodiac'], }, { name: 'dromedary_camel', code: '🐪', - keywords: ['desert', 'dromedary_camel', 'camel', 'dromedary', 'hump'], }, { name: 'camel', code: '🐫', - keywords: ['camel', 'bactrian', 'hump'], }, { name: 'llama', code: '🦙', - keywords: ['llama'], }, { name: 'giraffe', code: '🦒', - keywords: ['giraffe'], }, { name: 'elephant', code: '🐘', - keywords: ['elephant'], }, { name: 'mammoth', code: '🦣', - keywords: ['mammoth'], }, { name: 'rhinoceros', code: '🦏', - keywords: ['rhinoceros'], }, { name: 'hippopotamus', code: '🦛', - keywords: ['hippopotamus'], }, { name: 'mouse', code: '🐭', - keywords: ['mouse', 'face'], }, { name: 'mouse2', code: '🐁', - keywords: ['mouse2', 'mouse'], }, { name: 'rat', code: '🐀', - keywords: ['rat'], }, { name: 'hamster', code: '🐹', - keywords: ['pet', 'hamster', 'face'], }, { name: 'rabbit', code: '🐰', - keywords: ['bunny', 'rabbit', 'face', 'pet'], }, { name: 'rabbit2', code: '🐇', - keywords: ['rabbit2', 'bunny', 'pet', 'rabbit'], }, { name: 'chipmunk', code: '🐿️', - keywords: ['chipmunk'], }, { name: 'beaver', code: '🦫', - keywords: ['beaver'], }, { name: 'hedgehog', code: '🦔', - keywords: ['hedgehog'], }, { name: 'bat', code: '🦇', - keywords: ['bat', 'vampire'], }, { name: 'bear', code: '🐻', - keywords: ['bear', 'face'], }, { name: 'polar_bear', code: '🐻‍❄️', - keywords: ['polar_bear'], }, { name: 'koala', code: '🐨', - keywords: ['koala', 'bear'], }, { name: 'panda_face', code: '🐼', - keywords: ['panda_face', 'face', 'panda'], }, { name: 'sloth', code: '🦥', - keywords: ['sloth'], }, { name: 'otter', code: '🦦', - keywords: ['otter'], }, { name: 'skunk', code: '🦨', - keywords: ['skunk'], }, { name: 'kangaroo', code: '🦘', - keywords: ['kangaroo'], }, { name: 'badger', code: '🦡', - keywords: ['badger'], }, { name: 'feet', code: '🐾', - keywords: ['feet', 'paw_prints', 'paw', 'print'], }, { name: 'turkey', code: '🦃', - keywords: ['thanksgiving', 'turkey'], }, { name: 'chicken', code: '🐔', - keywords: ['chicken'], }, { name: 'rooster', code: '🐓', - keywords: ['rooster'], }, { name: 'hatching_chick', code: '🐣', - keywords: ['hatching_chick', 'baby', 'chick', 'hatching'], }, { name: 'baby_chick', code: '🐤', - keywords: ['baby_chick', 'baby', 'chick'], }, { name: 'hatched_chick', code: '🐥', - keywords: ['hatched_chick', 'baby', 'chick'], }, { name: 'bird', code: '🐦', - keywords: ['bird'], }, { name: 'penguin', code: '🐧', - keywords: ['penguin'], }, { name: 'dove', code: '🕊️', - keywords: ['peace', 'dove'], }, { name: 'eagle', code: '🦅', - keywords: ['eagle', 'bird'], }, { name: 'duck', code: '🦆', - keywords: ['duck', 'bird'], }, { name: 'swan', code: '🦢', - keywords: ['swan'], }, { name: 'owl', code: '🦉', - keywords: ['owl', 'bird', 'wise'], }, { name: 'dodo', code: '🦤', - keywords: ['dodo'], }, { name: 'feather', code: '🪶', - keywords: ['feather'], }, { name: 'flamingo', code: '🦩', - keywords: ['flamingo'], }, { name: 'peacock', code: '🦚', - keywords: ['peacock'], }, { name: 'parrot', code: '🦜', - keywords: ['parrot'], }, { name: 'frog', code: '🐸', - keywords: ['frog', 'face'], }, { name: 'crocodile', code: '🐊', - keywords: ['crocodile'], }, { name: 'turtle', code: '🐢', - keywords: ['slow', 'turtle'], }, { name: 'lizard', code: '🦎', - keywords: ['lizard', 'reptile'], }, { name: 'snake', code: '🐍', - keywords: ['snake', 'bearer', 'ophiuchus', 'serpent', 'zodiac'], }, { name: 'dragon_face', code: '🐲', - keywords: ['dragon_face', 'dragon', 'face', 'fairy tale'], }, { name: 'dragon', code: '🐉', - keywords: ['dragon', 'fairy tale'], }, { name: 'sauropod', code: '🦕', - keywords: ['dinosaur', 'sauropod'], }, { name: 't-rex', code: '🦖', - keywords: ['dinosaur', 't-rex'], }, { name: 'whale', code: '🐳', - keywords: ['sea', 'whale', 'face', 'spouting'], }, { name: 'whale2', code: '🐋', - keywords: ['whale2', 'whale'], }, { name: 'dolphin', code: '🐬', - keywords: ['dolphin', 'flipper'], }, { name: 'seal', code: '🦭', - keywords: ['seal'], }, { name: 'fish', code: '🐟', - keywords: ['fish', 'pisces', 'zodiac'], }, { name: 'tropical_fish', code: '🐠', - keywords: ['tropical_fish', 'fish', 'tropical'], }, { name: 'blowfish', code: '🐡', - keywords: ['blowfish', 'fish'], }, { name: 'shark', code: '🦈', - keywords: ['shark', 'fish'], }, { name: 'octopus', code: '🐙', - keywords: ['octopus'], }, { name: 'shell', code: '🐚', - keywords: ['sea', 'beach', 'shell', 'spiral'], }, { name: 'snail', code: '🐌', - keywords: ['slow', 'snail'], }, { name: 'butterfly', code: '🦋', - keywords: ['butterfly', 'insect', 'pretty'], }, { name: 'bug', code: '🐛', - keywords: ['bug', 'insect'], }, { name: 'ant', code: '🐜', - keywords: ['ant', 'insect'], }, { name: 'bee', code: '🐝', - keywords: ['bee', 'honeybee', 'insect'], }, { name: 'beetle', code: '🪲', - keywords: ['beetle'], }, { name: 'lady_beetle', code: '🐞', - keywords: ['bug', 'lady_beetle', 'beetle', 'insect', 'lady beetle', 'ladybird', 'ladybug'], }, { name: 'cricket', code: '🦗', - keywords: ['cricket'], }, { name: 'cockroach', code: '🪳', - keywords: ['cockroach'], }, { name: 'spider', code: '🕷️', - keywords: ['spider'], }, { name: 'spider_web', code: '🕸️', - keywords: ['spider_web'], }, { name: 'scorpion', code: '🦂', - keywords: ['scorpion', 'scorpio', 'scorpius', 'zodiac'], }, { name: 'mosquito', code: '🦟', - keywords: ['mosquito'], }, { name: 'fly', code: '🪰', - keywords: ['fly'], }, { name: 'worm', code: '🪱', - keywords: ['worm'], }, { name: 'microbe', code: '🦠', - keywords: ['germ', 'microbe'], }, { name: 'bouquet', code: '💐', - keywords: ['flowers', 'bouquet', 'flower', 'plant', 'romance'], }, { name: 'cherry_blossom', code: '🌸', - keywords: ['flower', 'spring', 'cherry_blossom', 'blossom', 'cherry', 'plant'], }, { name: 'white_flower', code: '💮', - keywords: ['white_flower', 'flower'], }, { name: 'rosette', code: '🏵️', - keywords: ['rosette'], }, { name: 'rose', code: '🌹', - keywords: ['flower', 'rose', 'plant'], }, { name: 'wilted_flower', code: '🥀', - keywords: ['wilted_flower', 'flower', 'wilted'], }, { name: 'hibiscus', code: '🌺', - keywords: ['hibiscus', 'flower', 'plant'], }, { name: 'sunflower', code: '🌻', - keywords: ['sunflower', 'flower', 'plant', 'sun'], }, { name: 'blossom', code: '🌼', - keywords: ['blossom', 'flower', 'plant'], }, { name: 'tulip', code: '🌷', - keywords: ['flower', 'tulip', 'plant'], }, { name: 'seedling', code: '🌱', - keywords: ['plant', 'seedling', 'young'], }, { name: 'potted_plant', code: '🪴', - keywords: ['potted_plant'], }, { name: 'evergreen_tree', code: '🌲', - keywords: ['wood', 'evergreen_tree', 'evergreen', 'plant', 'tree'], }, { name: 'deciduous_tree', code: '🌳', - keywords: ['wood', 'deciduous_tree', 'deciduous', 'plant', 'shedding', 'tree'], }, { name: 'palm_tree', code: '🌴', - keywords: ['palm_tree', 'palm', 'plant', 'tree'], }, { name: 'cactus', code: '🌵', - keywords: ['cactus', 'plant'], }, { name: 'ear_of_rice', code: '🌾', - keywords: ['ear_of_rice', 'ear', 'plant', 'rice'], }, { name: 'herb', code: '🌿', - keywords: ['herb', 'leaf', 'plant'], }, { name: 'shamrock', code: '☘️', - keywords: ['shamrock', 'plant'], }, { name: 'four_leaf_clover', code: '🍀', - keywords: ['luck', 'four_leaf_clover', '4', 'clover', 'four', 'leaf', 'plant'], }, { name: 'maple_leaf', code: '🍁', - keywords: ['canada', 'maple_leaf', 'falling', 'leaf', 'maple', 'plant'], }, { name: 'fallen_leaf', code: '🍂', - keywords: ['autumn', 'fallen_leaf', 'falling', 'leaf', 'plant'], }, { name: 'leaves', code: '🍃', - keywords: ['leaf', 'leaves', 'blow', 'flutter', 'plant', 'wind'], }, { - code: 'foodAndDrink', header: true, icon: FoodAndDrink, + code: 'foodAndDrink', }, { name: 'grapes', code: '🍇', - keywords: ['grapes', 'fruit', 'grape', 'plant'], }, { name: 'melon', code: '🍈', - keywords: ['melon', 'fruit', 'plant'], }, { name: 'watermelon', code: '🍉', - keywords: ['watermelon', 'fruit', 'plant'], }, { name: 'tangerine', code: '🍊', - keywords: ['tangerine', 'orange', 'mandarin', 'fruit', 'plant'], }, { name: 'lemon', code: '🍋', - keywords: ['lemon', 'citrus', 'fruit', 'plant'], }, { name: 'banana', code: '🍌', - keywords: ['fruit', 'banana', 'plant'], }, { name: 'pineapple', code: '🍍', - keywords: ['pineapple', 'fruit', 'plant'], }, { name: 'mango', code: '🥭', - keywords: ['mango'], }, { name: 'apple', code: '🍎', - keywords: ['apple', 'fruit', 'plant', 'red'], }, { name: 'green_apple', code: '🍏', - keywords: ['fruit', 'green_apple', 'apple', 'green', 'plant'], }, { name: 'pear', code: '🍐', - keywords: ['pear', 'fruit', 'plant'], }, { name: 'peach', code: '🍑', - keywords: ['peach', 'fruit', 'plant'], }, { name: 'cherries', code: '🍒', - keywords: ['fruit', 'cherries', 'cherry', 'plant'], }, { name: 'strawberry', code: '🍓', - keywords: ['fruit', 'strawberry', 'berry', 'plant'], }, { name: 'blueberries', code: '🫐', - keywords: ['blueberries'], }, { name: 'kiwi_fruit', code: '🥝', - keywords: ['kiwi_fruit', 'fruit', 'kiwi'], }, { name: 'tomato', code: '🍅', - keywords: ['tomato', 'plant', 'vegetable'], }, { name: 'olive', code: '🫒', - keywords: ['olive'], }, { name: 'coconut', code: '🥥', - keywords: ['coconut'], }, { name: 'avocado', code: '🥑', - keywords: ['avocado', 'fruit'], }, { name: 'eggplant', code: '🍆', - keywords: ['aubergine', 'eggplant', 'plant', 'vegetable'], }, { name: 'potato', code: '🥔', - keywords: ['potato', 'vegetable'], }, { name: 'carrot', code: '🥕', - keywords: ['carrot', 'vegetable'], }, { name: 'corn', code: '🌽', - keywords: ['corn', 'ear', 'maize', 'maze', 'plant'], }, { name: 'hot_pepper', code: '🌶️', - keywords: ['spicy', 'hot_pepper'], }, { name: 'bell_pepper', code: '🫑', - keywords: ['bell_pepper'], }, { name: 'cucumber', code: '🥒', - keywords: ['cucumber', 'pickle', 'vegetable'], }, { name: 'leafy_green', code: '🥬', - keywords: ['leafy_green'], }, { name: 'broccoli', code: '🥦', - keywords: ['broccoli'], }, { name: 'garlic', code: '🧄', - keywords: ['garlic'], }, { name: 'onion', code: '🧅', - keywords: ['onion'], }, { name: 'mushroom', code: '🍄', - keywords: ['mushroom', 'plant'], }, { name: 'peanuts', code: '🥜', - keywords: ['peanuts', 'nut', 'peanut', 'vegetable'], }, { name: 'chestnut', code: '🌰', - keywords: ['chestnut', 'plant'], }, { name: 'bread', code: '🍞', - keywords: ['toast', 'bread', 'loaf'], }, { name: 'croissant', code: '🥐', - keywords: ['croissant', 'bread', 'crescent roll', 'french'], }, { name: 'baguette_bread', code: '🥖', - keywords: ['baguette_bread', 'baguette', 'bread', 'french'], }, { name: 'flatbread', code: '🫓', - keywords: ['flatbread'], }, { name: 'pretzel', code: '🥨', - keywords: ['pretzel'], }, { name: 'bagel', code: '🥯', - keywords: ['bagel'], }, { name: 'pancakes', code: '🥞', - keywords: ['pancakes', 'crêpe', 'hotcake', 'pancake'], }, { name: 'waffle', code: '🧇', - keywords: ['waffle'], }, { name: 'cheese', code: '🧀', - keywords: ['cheese'], }, { name: 'meat_on_bone', code: '🍖', - keywords: ['meat_on_bone', 'bone', 'meat'], }, { name: 'poultry_leg', code: '🍗', - keywords: ['meat', 'chicken', 'poultry_leg', 'bone', 'leg', 'poultry'], }, { name: 'cut_of_meat', code: '🥩', - keywords: ['cut_of_meat'], }, { name: 'bacon', code: '🥓', - keywords: ['bacon', 'meat'], }, { name: 'hamburger', code: '🍔', - keywords: ['burger', 'hamburger'], }, { name: 'fries', code: '🍟', - keywords: ['fries', 'french'], }, { name: 'pizza', code: '🍕', - keywords: ['pizza', 'cheese', 'slice'], }, { name: 'hotdog', code: '🌭', - keywords: ['hotdog', 'frankfurter', 'hot dog', 'sausage'], }, { name: 'sandwich', code: '🥪', - keywords: ['sandwich'], }, { name: 'taco', code: '🌮', - keywords: ['taco', 'mexican'], }, { name: 'burrito', code: '🌯', - keywords: ['burrito', 'mexican'], }, { name: 'tamale', code: '🫔', - keywords: ['tamale'], }, { name: 'stuffed_flatbread', code: '🥙', - keywords: ['stuffed_flatbread', 'falafel', 'flatbread', 'gyro', 'kebab', 'stuffed'], }, { name: 'falafel', code: '🧆', - keywords: ['falafel'], }, { name: 'egg', code: '🥚', - keywords: ['egg'], }, { name: 'fried_egg', code: '🍳', - keywords: ['breakfast', 'fried_egg', 'cooking', 'egg', 'frying', 'pan'], }, { name: 'shallow_pan_of_food', code: '🥘', - keywords: ['paella', 'curry', 'shallow_pan_of_food', 'casserole', 'pan', 'shallow'], }, { name: 'stew', code: '🍲', - keywords: ['stew', 'pot'], }, { name: 'fondue', code: '🫕', - keywords: ['fondue'], }, { name: 'bowl_with_spoon', code: '🥣', - keywords: ['bowl_with_spoon'], }, { name: 'green_salad', code: '🥗', - keywords: ['green_salad', 'green', 'salad'], }, { name: 'popcorn', code: '🍿', - keywords: ['popcorn'], }, { name: 'butter', code: '🧈', - keywords: ['butter'], }, { name: 'salt', code: '🧂', - keywords: ['salt'], }, { name: 'canned_food', code: '🥫', - keywords: ['canned_food'], }, { name: 'bento', code: '🍱', - keywords: ['bento', 'box'], }, { name: 'rice_cracker', code: '🍘', - keywords: ['rice_cracker', 'cracker', 'rice'], }, { name: 'rice_ball', code: '🍙', - keywords: ['rice_ball', 'ball', 'japanese', 'rice'], }, { name: 'rice', code: '🍚', - keywords: ['rice', 'cooked'], }, { name: 'curry', code: '🍛', - keywords: ['curry', 'rice'], }, { name: 'ramen', code: '🍜', - keywords: ['noodle', 'ramen', 'bowl', 'steaming'], }, { name: 'spaghetti', code: '🍝', - keywords: ['pasta', 'spaghetti'], }, { name: 'sweet_potato', code: '🍠', - keywords: ['sweet_potato', 'potato', 'roasted', 'sweet'], }, { name: 'oden', code: '🍢', - keywords: ['oden', 'kebab', 'seafood', 'skewer', 'stick'], }, { name: 'sushi', code: '🍣', - keywords: ['sushi'], }, { name: 'fried_shrimp', code: '🍤', - keywords: ['tempura', 'fried_shrimp', 'fried', 'prawn', 'shrimp'], }, { name: 'fish_cake', code: '🍥', - keywords: ['fish_cake', 'cake', 'fish', 'pastry', 'swirl'], }, { name: 'moon_cake', code: '🥮', - keywords: ['moon_cake'], }, { name: 'dango', code: '🍡', - keywords: ['dango', 'dessert', 'japanese', 'skewer', 'stick', 'sweet'], }, { name: 'dumpling', code: '🥟', - keywords: ['dumpling'], }, { name: 'fortune_cookie', code: '🥠', - keywords: ['fortune_cookie'], }, { name: 'takeout_box', code: '🥡', - keywords: ['takeout_box'], }, { name: 'crab', code: '🦀', - keywords: ['crab', 'cancer', 'zodiac'], }, { name: 'lobster', code: '🦞', - keywords: ['lobster'], }, { name: 'shrimp', code: '🦐', - keywords: ['shrimp', 'shellfish', 'small'], }, { name: 'squid', code: '🦑', - keywords: ['squid', 'molusc'], }, { name: 'oyster', code: '🦪', - keywords: ['oyster'], }, { name: 'icecream', code: '🍦', - keywords: ['icecream', 'cream', 'dessert', 'ice', 'soft', 'sweet'], }, { name: 'shaved_ice', code: '🍧', - keywords: ['shaved_ice', 'dessert', 'ice', 'shaved', 'sweet'], }, { name: 'ice_cream', code: '🍨', - keywords: ['ice_cream', 'cream', 'dessert', 'ice', 'sweet'], }, { name: 'doughnut', code: '🍩', - keywords: ['doughnut', 'dessert', 'donut', 'sweet'], }, { name: 'cookie', code: '🍪', - keywords: ['cookie', 'dessert', 'sweet'], }, { name: 'birthday', code: '🎂', - keywords: ['party', 'birthday', 'cake', 'celebration', 'dessert', 'pastry', 'sweet'], }, { name: 'cake', code: '🍰', - keywords: ['dessert', 'cake', 'pastry', 'shortcake', 'slice', 'sweet'], }, { name: 'cupcake', code: '🧁', - keywords: ['cupcake'], }, { name: 'pie', code: '🥧', - keywords: ['pie'], }, { name: 'chocolate_bar', code: '🍫', - keywords: ['chocolate_bar', 'bar', 'chocolate', 'dessert', 'sweet'], }, { name: 'candy', code: '🍬', - keywords: ['sweet', 'candy', 'dessert'], }, { name: 'lollipop', code: '🍭', - keywords: ['lollipop', 'candy', 'dessert', 'sweet'], }, { name: 'custard', code: '🍮', - keywords: ['custard', 'dessert', 'pudding', 'sweet'], }, { name: 'honey_pot', code: '🍯', - keywords: ['honey_pot', 'honey', 'honeypot', 'pot', 'sweet'], }, { name: 'baby_bottle', code: '🍼', - keywords: ['milk', 'baby_bottle', 'baby', 'bottle', 'drink'], }, { name: 'milk_glass', code: '🥛', - keywords: ['milk_glass', 'drink', 'glass', 'milk'], }, { name: 'coffee', code: '☕', - keywords: ['cafe', 'espresso', 'coffee', 'beverage', 'drink', 'hot', 'steaming', 'tea'], }, { name: 'teapot', code: '🫖', - keywords: ['teapot'], }, { name: 'tea', code: '🍵', - keywords: ['green', 'breakfast', 'tea', 'beverage', 'cup', 'drink', 'teacup'], }, { name: 'sake', code: '🍶', - keywords: ['sake', 'bar', 'beverage', 'bottle', 'cup', 'drink'], }, { name: 'champagne', code: '🍾', - keywords: ['bottle', 'bubbly', 'celebration', 'champagne', 'bar', 'cork', 'drink', 'popping'], }, { name: 'wine_glass', code: '🍷', - keywords: ['wine_glass', 'bar', 'beverage', 'drink', 'glass', 'wine'], }, { name: 'cocktail', code: '🍸', - keywords: ['drink', 'cocktail', 'bar', 'glass'], }, { name: 'tropical_drink', code: '🍹', - keywords: ['summer', 'vacation', 'tropical_drink', 'bar', 'drink', 'tropical'], }, { name: 'beer', code: '🍺', - keywords: ['drink', 'beer', 'bar', 'mug'], }, { name: 'beers', code: '🍻', - keywords: ['drinks', 'beers', 'bar', 'beer', 'clink', 'drink', 'mug'], }, { name: 'clinking_glasses', code: '🥂', - keywords: ['cheers', 'toast', 'clinking_glasses', 'celebrate', 'clink', 'drink', 'glass'], }, { name: 'tumbler_glass', code: '🥃', - keywords: ['whisky', 'tumbler_glass', 'glass', 'liquor', 'shot', 'tumbler'], }, { name: 'cup_with_straw', code: '🥤', - keywords: ['cup_with_straw'], }, { name: 'bubble_tea', code: '🧋', - keywords: ['bubble_tea'], }, { name: 'beverage_box', code: '🧃', - keywords: ['beverage_box'], }, { name: 'mate', code: '🧉', - keywords: ['mate'], }, { name: 'ice_cube', code: '🧊', - keywords: ['ice_cube'], }, { name: 'chopsticks', code: '🥢', - keywords: ['chopsticks'], }, { name: 'plate_with_cutlery', code: '🍽️', - keywords: ['dining', 'dinner', 'plate_with_cutlery'], }, { name: 'fork_and_knife', code: '🍴', - keywords: ['cutlery', 'fork_and_knife', 'cooking', 'fork', 'knife'], }, { name: 'spoon', code: '🥄', - keywords: ['spoon', 'tableware'], }, { name: 'hocho', code: '🔪', - keywords: ['cut', 'chop', 'hocho', 'knife', 'cooking', 'tool', 'weapon'], }, { name: 'amphora', code: '🏺', - keywords: ['amphora', 'aquarius', 'cooking', 'drink', 'jug', 'tool', 'weapon', 'zodiac'], }, { - code: 'travelAndPlaces', header: true, icon: TravelAndPlaces, + code: 'travelAndPlaces', }, { name: 'earth_africa', code: '🌍', - keywords: ['globe', 'world', 'international', 'earth_africa', 'africa', 'earth', 'europe'], }, { name: 'earth_americas', code: '🌎', - keywords: ['globe', 'world', 'international', 'earth_americas', 'americas', 'earth'], }, { name: 'earth_asia', code: '🌏', - keywords: ['globe', 'world', 'international', 'earth_asia', 'asia', 'australia', 'earth'], }, { name: 'globe_with_meridians', code: '🌐', - keywords: ['world', 'global', 'international', 'globe_with_meridians', 'earth', 'globe', 'meridians'], }, { name: 'world_map', code: '🗺️', - keywords: ['travel', 'world_map'], }, { name: 'japan', code: '🗾', - keywords: ['japan', 'map'], }, { name: 'compass', code: '🧭', - keywords: ['compass'], }, { name: 'mountain_snow', code: '🏔️', - keywords: ['mountain_snow'], }, { name: 'mountain', code: '⛰️', - keywords: ['mountain'], }, { name: 'volcano', code: '🌋', - keywords: ['volcano', 'eruption', 'mountain', 'weather'], }, { name: 'mount_fuji', code: '🗻', - keywords: ['mount_fuji', 'fuji', 'mountain'], }, { name: 'camping', code: '🏕️', - keywords: ['camping'], }, { name: 'beach_umbrella', code: '🏖️', - keywords: ['beach_umbrella'], }, { name: 'desert', code: '🏜️', - keywords: ['desert'], }, { name: 'desert_island', code: '🏝️', - keywords: ['desert_island'], }, { name: 'national_park', code: '🏞️', - keywords: ['national_park'], }, { name: 'stadium', code: '🏟️', - keywords: ['stadium'], }, { name: 'classical_building', code: '🏛️', - keywords: ['classical_building'], }, { name: 'building_construction', code: '🏗️', - keywords: ['building_construction'], }, { name: 'bricks', code: '🧱', - keywords: ['bricks'], }, { name: 'rock', code: '🪨', - keywords: ['rock'], }, { name: 'wood', code: '🪵', - keywords: ['wood'], }, { name: 'hut', code: '🛖', - keywords: ['hut'], }, { name: 'houses', code: '🏘️', - keywords: ['houses'], }, { name: 'derelict_house', code: '🏚️', - keywords: ['derelict_house'], }, { name: 'house', code: '🏠', - keywords: ['house', 'building', 'home'], }, { name: 'house_with_garden', code: '🏡', - keywords: ['house_with_garden', 'building', 'garden', 'home', 'house'], }, { name: 'office', code: '🏢', - keywords: ['office', 'building'], }, { name: 'post_office', code: '🏣', - keywords: ['post_office', 'building', 'japanese', 'post'], }, { name: 'european_post_office', code: '🏤', - keywords: ['european_post_office', 'building', 'european', 'post'], }, { name: 'hospital', code: '🏥', - keywords: ['hospital', 'building', 'doctor', 'medicine'], }, { name: 'bank', code: '🏦', - keywords: ['bank', 'building'], }, { name: 'hotel', code: '🏨', - keywords: ['hotel', 'building'], }, { name: 'love_hotel', code: '🏩', - keywords: ['love_hotel', 'building', 'hotel', 'love'], }, { name: 'convenience_store', code: '🏪', - keywords: ['convenience_store', 'building', 'convenience', 'store'], }, { name: 'school', code: '🏫', - keywords: ['school', 'building'], }, { name: 'department_store', code: '🏬', - keywords: ['department_store', 'building', 'department', 'store'], }, { name: 'factory', code: '🏭', - keywords: ['factory', 'building'], }, { name: 'japanese_castle', code: '🏯', - keywords: ['japanese_castle', 'building', 'castle', 'japanese'], }, { name: 'european_castle', code: '🏰', - keywords: ['european_castle', 'building', 'castle', 'european'], }, { name: 'wedding', code: '💒', - keywords: ['marriage', 'wedding', 'activity', 'chapel', 'romance'], }, { name: 'tokyo_tower', code: '🗼', - keywords: ['tokyo_tower', 'tokyo', 'tower'], }, { name: 'statue_of_liberty', code: '🗽', - keywords: ['statue_of_liberty', 'liberty', 'statue'], }, { name: 'church', code: '⛪', - keywords: ['church', 'building', 'christian', 'cross', 'religion'], }, { name: 'mosque', code: '🕌', - keywords: ['mosque', 'islam', 'muslim', 'religion'], }, { name: 'hindu_temple', code: '🛕', - keywords: ['hindu_temple'], }, { name: 'synagogue', code: '🕍', - keywords: ['synagogue', 'jew', 'jewish', 'religion', 'temple'], }, { name: 'shinto_shrine', code: '⛩️', - keywords: ['shinto_shrine'], }, { name: 'kaaba', code: '🕋', - keywords: ['kaaba', 'islam', 'muslim', 'religion'], }, { name: 'fountain', code: '⛲', - keywords: ['fountain'], }, { name: 'tent', code: '⛺', - keywords: ['camping', 'tent'], }, { name: 'foggy', code: '🌁', - keywords: ['karl', 'foggy', 'fog', 'weather'], }, { name: 'night_with_stars', code: '🌃', - keywords: ['night_with_stars', 'night', 'star', 'weather'], }, { name: 'cityscape', code: '🏙️', - keywords: ['skyline', 'cityscape'], }, { name: 'sunrise_over_mountains', code: '🌄', - keywords: ['sunrise_over_mountains', 'morning', 'mountain', 'sun', 'sunrise', 'weather'], }, { name: 'sunrise', code: '🌅', - keywords: ['sunrise', 'morning', 'sun', 'weather'], }, { name: 'city_sunset', code: '🌆', - keywords: ['city_sunset', 'building', 'city', 'dusk', 'evening', 'landscape', 'sun', 'sunset', 'weather'], }, { name: 'city_sunrise', code: '🌇', - keywords: ['city_sunrise', 'building', 'dusk', 'sun', 'sunset', 'weather'], }, { name: 'bridge_at_night', code: '🌉', - keywords: ['bridge_at_night', 'bridge', 'night', 'weather'], }, { name: 'hotsprings', code: '♨️', - keywords: ['hotsprings', 'hot', 'springs', 'steaming'], }, { name: 'carousel_horse', code: '🎠', - keywords: ['carousel_horse', 'activity', 'carousel', 'entertainment', 'horse'], }, { name: 'ferris_wheel', code: '🎡', - keywords: ['ferris_wheel', 'activity', 'amusement park', 'entertainment', 'ferris', 'wheel'], }, { name: 'roller_coaster', code: '🎢', - keywords: ['roller_coaster', 'activity', 'amusement park', 'coaster', 'entertainment', 'roller'], }, { name: 'barber', code: '💈', - keywords: ['barber', 'haircut', 'pole'], }, { name: 'circus_tent', code: '🎪', - keywords: ['circus_tent', 'activity', 'circus', 'entertainment', 'tent'], }, { name: 'steam_locomotive', code: '🚂', - keywords: ['train', 'steam_locomotive', 'engine', 'locomotive', 'railway', 'steam', 'vehicle'], }, { name: 'railway_car', code: '🚃', - keywords: ['railway_car', 'car', 'electric', 'railway', 'train', 'tram', 'trolleybus', 'vehicle'], }, { name: 'bullettrain_side', code: '🚄', - keywords: ['train', 'bullettrain_side', 'railway', 'shinkansen', 'speed', 'vehicle'], }, { name: 'bullettrain_front', code: '🚅', - keywords: ['train', 'bullettrain_front', 'bullet', 'railway', 'shinkansen', 'speed', 'vehicle'], }, { name: 'train2', code: '🚆', - keywords: ['train2', 'railway', 'train', 'vehicle'], }, { name: 'metro', code: '🚇', - keywords: ['metro', 'subway', 'vehicle'], }, { name: 'light_rail', code: '🚈', - keywords: ['light_rail', 'railway', 'vehicle'], }, { name: 'station', code: '🚉', - keywords: ['station', 'railway', 'train', 'vehicle'], }, { name: 'tram', code: '🚊', - keywords: ['tram', 'trolleybus', 'vehicle'], }, { name: 'monorail', code: '🚝', - keywords: ['monorail', 'vehicle'], }, { name: 'mountain_railway', code: '🚞', - keywords: ['mountain_railway', 'car', 'mountain', 'railway', 'vehicle'], }, { name: 'train', code: '🚋', - keywords: ['train', 'car', 'tram', 'trolleybus', 'vehicle'], }, { name: 'bus', code: '🚌', - keywords: ['bus', 'vehicle'], }, { name: 'oncoming_bus', code: '🚍', - keywords: ['oncoming_bus', 'bus', 'oncoming', 'vehicle'], }, { name: 'trolleybus', code: '🚎', - keywords: ['trolleybus', 'bus', 'tram', 'trolley', 'vehicle'], }, { name: 'minibus', code: '🚐', - keywords: ['minibus', 'bus', 'vehicle'], }, { name: 'ambulance', code: '🚑', - keywords: ['ambulance', 'vehicle'], }, { name: 'fire_engine', code: '🚒', - keywords: ['fire_engine', 'engine', 'fire', 'truck', 'vehicle'], }, { name: 'police_car', code: '🚓', - keywords: ['police_car', 'car', 'patrol', 'police', 'vehicle'], }, { name: 'oncoming_police_car', code: '🚔', - keywords: ['oncoming_police_car', 'car', 'oncoming', 'police', 'vehicle'], }, { name: 'taxi', code: '🚕', - keywords: ['taxi', 'vehicle'], }, { name: 'oncoming_taxi', code: '🚖', - keywords: ['oncoming_taxi', 'oncoming', 'taxi', 'vehicle'], }, { name: 'car', code: '🚗', - keywords: ['car', 'red_car', 'automobile', 'vehicle'], }, { name: 'oncoming_automobile', code: '🚘', - keywords: ['oncoming_automobile', 'automobile', 'car', 'oncoming', 'vehicle'], }, { name: 'blue_car', code: '🚙', - keywords: ['blue_car', 'recreational', 'rv', 'vehicle'], }, { name: 'pickup_truck', code: '🛻', - keywords: ['pickup_truck'], }, { name: 'truck', code: '🚚', - keywords: ['truck', 'delivery', 'vehicle'], }, { name: 'articulated_lorry', code: '🚛', - keywords: ['articulated_lorry', 'lorry', 'semi', 'truck', 'vehicle'], }, { name: 'tractor', code: '🚜', - keywords: ['tractor', 'vehicle'], }, { name: 'racing_car', code: '🏎️', - keywords: ['racing_car'], }, { name: 'motorcycle', code: '🏍️', - keywords: ['motorcycle'], }, { name: 'motor_scooter', code: '🛵', - keywords: ['motor_scooter', 'motor', 'scooter'], }, { name: 'manual_wheelchair', code: '🦽', - keywords: ['manual_wheelchair'], }, { name: 'motorized_wheelchair', code: '🦼', - keywords: ['motorized_wheelchair'], }, { name: 'auto_rickshaw', code: '🛺', - keywords: ['auto_rickshaw'], }, { name: 'bike', code: '🚲', - keywords: ['bicycle', 'bike', 'vehicle'], }, { name: 'kick_scooter', code: '🛴', - keywords: ['kick_scooter', 'kick', 'scooter'], }, { name: 'skateboard', code: '🛹', - keywords: ['skateboard'], }, { name: 'roller_skate', code: '🛼', - keywords: ['roller_skate'], }, { name: 'busstop', code: '🚏', - keywords: ['busstop', 'bus', 'stop'], }, { name: 'motorway', code: '🛣️', - keywords: ['motorway'], }, { name: 'railway_track', code: '🛤️', - keywords: ['railway_track'], }, { name: 'oil_drum', code: '🛢️', - keywords: ['oil_drum'], }, { name: 'fuelpump', code: '⛽', - keywords: ['fuelpump', 'fuel', 'gas', 'pump', 'station'], }, { name: 'rotating_light', code: '🚨', - keywords: ['911', 'emergency', 'rotating_light', 'beacon', 'car', 'light', 'police', 'revolving', 'vehicle'], }, { name: 'traffic_light', code: '🚥', - keywords: ['traffic_light', 'light', 'signal', 'traffic'], }, { name: 'vertical_traffic_light', code: '🚦', - keywords: ['semaphore', 'vertical_traffic_light', 'light', 'signal', 'traffic'], }, { name: 'stop_sign', code: '🛑', - keywords: ['stop_sign', 'octagonal', 'stop'], }, { name: 'construction', code: '🚧', - keywords: ['wip', 'construction', 'barrier'], }, { name: 'anchor', code: '⚓', - keywords: ['ship', 'anchor', 'tool'], }, { name: 'boat', code: '⛵', - keywords: ['boat', 'sailboat', 'resort', 'sea', 'vehicle', 'yacht'], }, { name: 'canoe', code: '🛶', - keywords: ['canoe', 'boat'], }, { name: 'speedboat', code: '🚤', - keywords: ['ship', 'speedboat', 'boat', 'vehicle'], }, { name: 'passenger_ship', code: '🛳️', - keywords: ['cruise', 'passenger_ship'], }, { name: 'ferry', code: '⛴️', - keywords: ['ferry'], }, { name: 'motor_boat', code: '🛥️', - keywords: ['motor_boat'], }, { name: 'ship', code: '🚢', - keywords: ['ship', 'vehicle'], }, { name: 'airplane', code: '✈️', - keywords: ['flight', 'airplane', 'vehicle'], }, { name: 'small_airplane', code: '🛩️', - keywords: ['flight', 'small_airplane'], }, { name: 'flight_departure', code: '🛫', - keywords: ['flight_departure', 'airplane', 'check-in', 'departure', 'departures', 'vehicle'], }, { name: 'flight_arrival', code: '🛬', - keywords: ['flight_arrival', 'airplane', 'arrivals', 'arriving', 'landing', 'vehicle'], }, { name: 'parachute', code: '🪂', - keywords: ['parachute'], }, { name: 'seat', code: '💺', - keywords: ['seat', 'chair'], }, { name: 'helicopter', code: '🚁', - keywords: ['helicopter', 'vehicle'], }, { name: 'suspension_railway', code: '🚟', - keywords: ['suspension_railway', 'railway', 'suspension', 'vehicle'], }, { name: 'mountain_cableway', code: '🚠', - keywords: ['mountain_cableway', 'cable', 'gondola', 'mountain', 'vehicle'], }, { name: 'aerial_tramway', code: '🚡', - keywords: ['aerial_tramway', 'aerial', 'cable', 'car', 'gondola', 'ropeway', 'tramway', 'vehicle'], }, { name: 'artificial_satellite', code: '🛰️', - keywords: ['orbit', 'space', 'artificial_satellite'], }, { name: 'rocket', code: '🚀', - keywords: ['ship', 'launch', 'rocket', 'space', 'vehicle'], }, { name: 'flying_saucer', code: '🛸', - keywords: ['ufo', 'flying_saucer'], }, { name: 'bellhop_bell', code: '🛎️', - keywords: ['bellhop_bell'], }, { name: 'luggage', code: '🧳', - keywords: ['luggage'], }, { name: 'hourglass', code: '⌛', - keywords: ['time', 'hourglass', 'sand', 'timer'], }, { name: 'hourglass_flowing_sand', code: '⏳', - keywords: ['time', 'hourglass_flowing_sand', 'hourglass', 'sand', 'timer'], }, { name: 'watch', code: '⌚', - keywords: ['time', 'watch', 'clock'], }, { name: 'alarm_clock', code: '⏰', - keywords: ['morning', 'alarm_clock', 'alarm', 'clock'], }, { name: 'stopwatch', code: '⏱️', - keywords: ['stopwatch'], }, { name: 'timer_clock', code: '⏲️', - keywords: ['timer_clock'], }, { name: 'mantelpiece_clock', code: '🕰️', - keywords: ['mantelpiece_clock'], }, { name: 'clock12', code: '🕛', - keywords: ['clock12', '00', '12', '12:00', 'clock', 'o’clock', 'twelve'], }, { name: 'clock1230', code: '🕧', - keywords: ['clock1230', '12', '12:30', '30', 'clock', 'thirty', 'twelve'], }, { name: 'clock1', code: '🕐', - keywords: ['clock1', '00', '1', '1:00', 'clock', 'o’clock', 'one'], }, { name: 'clock130', code: '🕜', - keywords: ['clock130', '1', '1:30', '30', 'clock', 'one', 'thirty'], }, { name: 'clock2', code: '🕑', - keywords: ['clock2', '00', '2', '2:00', 'clock', 'o’clock', 'two'], }, { name: 'clock230', code: '🕝', - keywords: ['clock230', '2', '2:30', '30', 'clock', 'thirty', 'two'], }, { name: 'clock3', code: '🕒', - keywords: ['clock3', '00', '3', '3:00', 'clock', 'o’clock', 'three'], }, { name: 'clock330', code: '🕞', - keywords: ['clock330', '3', '3:30', '30', 'clock', 'thirty', 'three'], }, { name: 'clock4', code: '🕓', - keywords: ['clock4', '00', '4', '4:00', 'clock', 'four', 'o’clock'], }, { name: 'clock430', code: '🕟', - keywords: ['clock430', '30', '4', '4:30', 'clock', 'four', 'thirty'], }, { name: 'clock5', code: '🕔', - keywords: ['clock5', '00', '5', '5:00', 'clock', 'five', 'o’clock'], }, { name: 'clock530', code: '🕠', - keywords: ['clock530', '30', '5', '5:30', 'clock', 'five', 'thirty'], }, { name: 'clock6', code: '🕕', - keywords: ['clock6', '00', '6', '6:00', 'clock', 'o’clock', 'six'], }, { name: 'clock630', code: '🕡', - keywords: ['clock630', '30', '6', '6:30', 'clock', 'six', 'thirty'], }, { name: 'clock7', code: '🕖', - keywords: ['clock7', '00', '7', '7:00', 'clock', 'o’clock', 'seven'], }, { name: 'clock730', code: '🕢', - keywords: ['clock730', '30', '7', '7:30', 'clock', 'seven', 'thirty'], }, { name: 'clock8', code: '🕗', - keywords: ['clock8', '00', '8', '8:00', 'clock', 'eight', 'o’clock'], }, { name: 'clock830', code: '🕣', - keywords: ['clock830', '30', '8', '8:30', 'clock', 'eight', 'thirty'], }, { name: 'clock9', code: '🕘', - keywords: ['clock9', '00', '9', '9:00', 'clock', 'nine', 'o’clock'], }, { name: 'clock930', code: '🕤', - keywords: ['clock930', '30', '9', '9:30', 'clock', 'nine', 'thirty'], }, { name: 'clock10', code: '🕙', - keywords: ['clock10', '00', '10', '10:00', 'clock', 'o’clock', 'ten'], }, { name: 'clock1030', code: '🕥', - keywords: ['clock1030', '10', '10:30', '30', 'clock', 'ten', 'thirty'], }, { name: 'clock11', code: '🕚', - keywords: ['clock11', '00', '11', '11:00', 'clock', 'eleven', 'o’clock'], }, { name: 'clock1130', code: '🕦', - keywords: ['clock1130', '11', '11:30', '30', 'clock', 'eleven', 'thirty'], }, { name: 'new_moon', code: '🌑', - keywords: ['new_moon', 'dark', 'moon', 'space', 'weather'], }, { name: 'waxing_crescent_moon', code: '🌒', - keywords: ['waxing_crescent_moon', 'crescent', 'moon', 'space', 'waxing', 'weather'], }, { name: 'first_quarter_moon', code: '🌓', - keywords: ['first_quarter_moon', 'moon', 'quarter', 'space', 'weather'], }, { name: 'moon', code: '🌔', - keywords: ['moon', 'waxing_gibbous_moon', 'gibbous', 'space', 'waxing', 'weather'], }, { name: 'full_moon', code: '🌕', - keywords: ['full_moon', 'full', 'moon', 'space', 'weather'], }, { name: 'waning_gibbous_moon', code: '🌖', - keywords: ['waning_gibbous_moon', 'gibbous', 'moon', 'space', 'waning', 'weather'], }, { name: 'last_quarter_moon', code: '🌗', - keywords: ['last_quarter_moon', 'moon', 'quarter', 'space', 'weather'], }, { name: 'waning_crescent_moon', code: '🌘', - keywords: ['waning_crescent_moon', 'crescent', 'moon', 'space', 'waning', 'weather'], }, { name: 'crescent_moon', code: '🌙', - keywords: ['night', 'crescent_moon', 'crescent', 'moon', 'space', 'weather'], }, { name: 'new_moon_with_face', code: '🌚', - keywords: ['new_moon_with_face', 'face', 'moon', 'space', 'weather'], }, { name: 'first_quarter_moon_with_face', code: '🌛', - keywords: ['first_quarter_moon_with_face', 'face', 'moon', 'quarter', 'space', 'weather'], }, { name: 'last_quarter_moon_with_face', code: '🌜', - keywords: ['last_quarter_moon_with_face', 'face', 'moon', 'quarter', 'space', 'weather'], }, { name: 'thermometer', code: '🌡️', - keywords: ['thermometer'], }, { name: 'sunny', code: '☀️', - keywords: ['weather', 'sunny', 'bright', 'rays', 'space', 'sun'], }, { name: 'full_moon_with_face', code: '🌝', - keywords: ['full_moon_with_face', 'bright', 'face', 'full', 'moon', 'space', 'weather'], }, { name: 'sun_with_face', code: '🌞', - keywords: ['summer', 'sun_with_face', 'bright', 'face', 'space', 'sun', 'weather'], }, { name: 'ringed_planet', code: '🪐', - keywords: ['ringed_planet'], }, { name: 'star', code: '⭐', - keywords: ['star'], }, { name: 'star2', code: '🌟', - keywords: ['star2', 'glittery', 'glow', 'shining', 'sparkle', 'star'], }, { name: 'stars', code: '🌠', - keywords: ['stars', 'activity', 'falling', 'shooting', 'space', 'star'], }, { name: 'milky_way', code: '🌌', - keywords: ['milky_way', 'milky way', 'space', 'weather'], }, { name: 'cloud', code: '☁️', - keywords: ['cloud', 'weather'], }, { name: 'partly_sunny', code: '⛅', - keywords: ['weather', 'cloud', 'partly_sunny', 'sun'], }, { name: 'cloud_with_lightning_and_rain', code: '⛈️', - keywords: ['cloud_with_lightning_and_rain'], }, { name: 'sun_behind_small_cloud', code: '🌤️', - keywords: ['sun_behind_small_cloud'], }, { name: 'sun_behind_large_cloud', code: '🌥️', - keywords: ['sun_behind_large_cloud'], }, { name: 'sun_behind_rain_cloud', code: '🌦️', - keywords: ['sun_behind_rain_cloud'], }, { name: 'cloud_with_rain', code: '🌧️', - keywords: ['cloud_with_rain'], }, { name: 'cloud_with_snow', code: '🌨️', - keywords: ['cloud_with_snow'], }, { name: 'cloud_with_lightning', code: '🌩️', - keywords: ['cloud_with_lightning'], }, { name: 'tornado', code: '🌪️', - keywords: ['tornado'], }, { name: 'fog', code: '🌫️', - keywords: ['fog'], }, { name: 'wind_face', code: '🌬️', - keywords: ['wind_face'], }, { name: 'cyclone', code: '🌀', - keywords: ['swirl', 'cyclone', 'dizzy', 'twister', 'typhoon', 'weather'], }, { name: 'rainbow', code: '🌈', - keywords: ['rainbow', 'rain', 'weather'], }, { name: 'closed_umbrella', code: '🌂', - keywords: ['weather', 'rain', 'closed_umbrella', 'clothing', 'umbrella'], }, { name: 'open_umbrella', code: '☂️', - keywords: ['open_umbrella', 'clothing', 'rain', 'umbrella', 'weather'], }, { name: 'umbrella', code: '☔', - keywords: ['rain', 'weather', 'umbrella', 'clothing', 'drop'], }, { name: 'parasol_on_ground', code: '⛱️', - keywords: ['beach_umbrella', 'parasol_on_ground'], }, { name: 'zap', code: '⚡', - keywords: ['lightning', 'thunder', 'zap', 'danger', 'electric', 'electricity', 'voltage'], }, { name: 'snowflake', code: '❄️', - keywords: ['winter', 'cold', 'weather', 'snowflake', 'snow'], }, { name: 'snowman_with_snow', code: '☃️', - keywords: ['winter', 'christmas', 'snowman_with_snow', 'cold', 'snow', 'snowman', 'weather'], }, { name: 'snowman', code: '⛄', - keywords: ['winter', 'snowman', 'cold', 'snow', 'weather'], }, { name: 'comet', code: '☄️', - keywords: ['comet', 'space'], }, { name: 'fire', code: '🔥', - keywords: ['burn', 'fire', 'flame', 'tool'], }, { name: 'droplet', code: '💧', - keywords: ['water', 'droplet', 'cold', 'comic', 'drop', 'sweat', 'weather'], }, { name: 'ocean', code: '🌊', - keywords: ['sea', 'ocean', 'water', 'wave', 'weather'], }, { - code: 'activities', header: true, icon: Activities, + code: 'activities', }, { name: 'jack_o_lantern', code: '🎃', - keywords: ['halloween', 'jack_o_lantern', 'activity', 'celebration', 'entertainment', 'jack', 'lantern'], }, { name: 'christmas_tree', code: '🎄', - keywords: ['christmas_tree', 'activity', 'celebration', 'christmas', 'entertainment', 'tree'], }, { name: 'fireworks', code: '🎆', - keywords: ['festival', 'celebration', 'fireworks', 'activity', 'entertainment'], }, { name: 'sparkler', code: '🎇', - keywords: ['sparkler', 'activity', 'celebration', 'entertainment', 'fireworks', 'sparkle'], }, { name: 'firecracker', code: '🧨', - keywords: ['firecracker'], }, { name: 'sparkles', code: '✨', - keywords: ['shiny', 'sparkles', 'entertainment', 'sparkle', 'star'], }, { name: 'balloon', code: '🎈', - keywords: ['party', 'birthday', 'balloon', 'activity', 'celebration', 'entertainment'], }, { name: 'tada', code: '🎉', - keywords: ['hooray', 'party', 'tada', 'activity', 'celebration', 'entertainment', 'popper'], }, { name: 'confetti_ball', code: '🎊', - keywords: ['confetti_ball', 'activity', 'ball', 'celebration', 'confetti', 'entertainment'], }, { name: 'tanabata_tree', code: '🎋', - keywords: ['tanabata_tree', 'activity', 'banner', 'celebration', 'entertainment', 'japanese', 'tree'], }, { name: 'bamboo', code: '🎍', - keywords: ['bamboo', 'activity', 'celebration', 'japanese', 'pine', 'plant'], }, { name: 'dolls', code: '🎎', - keywords: ['dolls', 'activity', 'celebration', 'doll', 'entertainment', 'festival', 'japanese'], }, { name: 'flags', code: '🎏', - keywords: ['flags', 'activity', 'carp', 'celebration', 'entertainment', 'flag', 'streamer'], }, { name: 'wind_chime', code: '🎐', - keywords: ['wind_chime', 'activity', 'bell', 'celebration', 'chime', 'entertainment', 'wind'], }, { name: 'rice_scene', code: '🎑', - keywords: ['rice_scene', 'activity', 'celebration', 'ceremony', 'entertainment', 'moon'], }, { name: 'red_envelope', code: '🧧', - keywords: ['red_envelope'], }, { name: 'ribbon', code: '🎀', - keywords: ['ribbon', 'celebration'], }, { name: 'gift', code: '🎁', - keywords: ['present', 'birthday', 'christmas', 'gift', 'box', 'celebration', 'entertainment', 'wrapped'], }, { name: 'reminder_ribbon', code: '🎗️', - keywords: ['reminder_ribbon'], }, { name: 'tickets', code: '🎟️', - keywords: ['tickets'], }, { name: 'ticket', code: '🎫', - keywords: ['ticket', 'activity', 'admission', 'entertainment'], }, { name: 'medal_military', code: '🎖️', - keywords: ['medal_military'], }, { name: 'trophy', code: '🏆', - keywords: ['award', 'contest', 'winner', 'trophy', 'prize'], }, { name: 'medal_sports', code: '🏅', - keywords: ['gold', 'winner', 'medal_sports', 'medal'], }, { name: '1st_place_medal', code: '🥇', - keywords: ['gold', '1st_place_medal', 'first', 'medal'], }, { name: '2nd_place_medal', code: '🥈', - keywords: ['silver', '2nd_place_medal', 'medal', 'second'], }, { name: '3rd_place_medal', code: '🥉', - keywords: ['bronze', '3rd_place_medal', 'medal', 'third'], }, { name: 'soccer', code: '⚽', - keywords: ['sports', 'soccer', 'ball'], }, { name: 'baseball', code: '⚾', - keywords: ['sports', 'baseball', 'ball'], }, { name: 'softball', code: '🥎', - keywords: ['softball'], }, { name: 'basketball', code: '🏀', - keywords: ['sports', 'basketball', 'ball', 'hoop'], }, { name: 'volleyball', code: '🏐', - keywords: ['volleyball', 'ball', 'game'], }, { name: 'football', code: '🏈', - keywords: ['sports', 'football', 'american', 'ball'], }, { name: 'rugby_football', code: '🏉', - keywords: ['rugby_football', 'ball', 'football', 'rugby'], }, { name: 'tennis', code: '🎾', - keywords: ['sports', 'tennis', 'ball', 'racquet'], }, { name: 'flying_disc', code: '🥏', - keywords: ['flying_disc'], }, { name: 'bowling', code: '🎳', - keywords: ['bowling', 'ball', 'game'], }, { name: 'cricket_game', code: '🏏', - keywords: ['cricket_game', 'ball', 'bat', 'cricket', 'game'], }, { name: 'field_hockey', code: '🏑', - keywords: ['field_hockey', 'ball', 'field', 'game', 'hockey', 'stick'], }, { name: 'ice_hockey', code: '🏒', - keywords: ['ice_hockey', 'game', 'hockey', 'ice', 'puck', 'stick'], }, { name: 'lacrosse', code: '🥍', - keywords: ['lacrosse'], }, { name: 'ping_pong', code: '🏓', - keywords: ['ping_pong', 'ball', 'bat', 'game', 'paddle', 'table tennis'], }, { name: 'badminton', code: '🏸', - keywords: ['badminton', 'birdie', 'game', 'racquet', 'shuttlecock'], }, { name: 'boxing_glove', code: '🥊', - keywords: ['boxing_glove', 'boxing', 'glove'], }, { name: 'martial_arts_uniform', code: '🥋', - keywords: ['martial_arts_uniform', 'judo', 'karate', 'martial arts', 'taekwondo', 'uniform'], }, { name: 'goal_net', code: '🥅', - keywords: ['goal_net', 'goal', 'net'], }, { name: 'golf', code: '⛳', - keywords: ['golf', 'flag', 'hole'], }, { name: 'ice_skate', code: '⛸️', - keywords: ['skating', 'ice_skate'], }, { name: 'fishing_pole_and_fish', code: '🎣', - keywords: ['fishing_pole_and_fish', 'entertainment', 'fish', 'pole'], }, { name: 'diving_mask', code: '🤿', - keywords: ['diving_mask'], }, { name: 'running_shirt_with_sash', code: '🎽', - keywords: ['marathon', 'running_shirt_with_sash', 'running', 'sash', 'shirt'], }, { name: 'ski', code: '🎿', - keywords: ['ski', 'snow'], }, { name: 'sled', code: '🛷', - keywords: ['sled'], }, { name: 'curling_stone', code: '🥌', - keywords: ['curling_stone'], }, { name: 'dart', code: '🎯', - keywords: ['target', 'dart', 'activity', 'bull', 'bullseye', 'entertainment', 'eye', 'game', 'hit'], }, { name: 'yo_yo', code: '🪀', - keywords: ['yo_yo'], }, { name: 'kite', code: '🪁', - keywords: ['kite'], }, { name: '8ball', code: '🎱', - keywords: ['pool', 'billiards', '8ball', '8', '8 ball', 'ball', 'billiard', 'eight', 'game'], }, { name: 'crystal_ball', code: '🔮', - keywords: ['fortune', 'crystal_ball', 'ball', 'crystal', 'fairy tale', 'fantasy', 'tool'], }, { name: 'magic_wand', code: '🪄', - keywords: ['magic_wand'], }, { name: 'nazar_amulet', code: '🧿', - keywords: ['nazar_amulet'], }, { name: 'video_game', code: '🎮', - keywords: ['play', 'controller', 'console', 'video_game', 'entertainment', 'game', 'video game'], }, { name: 'joystick', code: '🕹️', - keywords: ['joystick'], }, { name: 'slot_machine', code: '🎰', - keywords: ['slot_machine', 'activity', 'game', 'slot'], }, { name: 'game_die', code: '🎲', - keywords: ['dice', 'gambling', 'game_die', 'die', 'entertainment', 'game'], }, { name: 'jigsaw', code: '🧩', - keywords: ['jigsaw'], }, { name: 'teddy_bear', code: '🧸', - keywords: ['teddy_bear'], }, { name: 'pinata', code: '🪅', - keywords: ['pinata'], }, { name: 'nesting_dolls', code: '🪆', - keywords: ['nesting_dolls'], }, { name: 'spades', code: '♠️', - keywords: ['spades', 'card', 'game', 'spade', 'suit'], }, { name: 'hearts', code: '♥️', - keywords: ['hearts', 'card', 'game', 'heart', 'suit'], }, { name: 'diamonds', code: '♦️', - keywords: ['diamonds', 'card', 'diamond', 'game', 'suit'], }, { name: 'clubs', code: '♣️', - keywords: ['clubs', 'card', 'club', 'game', 'suit'], }, { name: 'chess_pawn', code: '♟️', - keywords: ['chess_pawn'], }, { name: 'black_joker', code: '🃏', - keywords: ['black_joker', 'card', 'entertainment', 'game', 'joker', 'playing'], }, { name: 'mahjong', code: '🀄', - keywords: ['mahjong', 'game', 'red'], }, { name: 'flower_playing_cards', code: '🎴', - keywords: ['flower_playing_cards', 'activity', 'card', 'entertainment', 'flower', 'game', 'japanese', 'playing'], }, { name: 'performing_arts', code: '🎭', - keywords: ['theater', 'drama', 'performing_arts', 'activity', 'art', 'entertainment', 'mask', 'performing', 'theatre'], }, { name: 'framed_picture', code: '🖼️', - keywords: ['framed_picture'], }, { name: 'art', code: '🎨', - keywords: ['design', 'paint', 'art', 'activity', 'entertainment', 'museum', 'painting', 'palette'], }, { name: 'thread', code: '🧵', - keywords: ['thread'], }, { name: 'sewing_needle', code: '🪡', - keywords: ['sewing_needle'], }, { name: 'yarn', code: '🧶', - keywords: ['yarn'], }, { name: 'knot', code: '🪢', - keywords: ['knot'], }, { - code: 'objects', header: true, icon: Objects, + code: 'objects', }, { name: 'eyeglasses', code: '👓', - keywords: ['glasses', 'eyeglasses', 'clothing', 'eye', 'eyewear'], }, { name: 'dark_sunglasses', code: '🕶️', - keywords: ['dark_sunglasses'], }, { name: 'goggles', code: '🥽', - keywords: ['goggles'], }, { name: 'lab_coat', code: '🥼', - keywords: ['lab_coat'], }, { name: 'safety_vest', code: '🦺', - keywords: ['safety_vest'], }, { name: 'necktie', code: '👔', - keywords: ['shirt', 'formal', 'necktie', 'clothing'], }, { name: 'shirt', code: '👕', - keywords: ['shirt', 'tshirt', 'clothing'], }, { name: 'jeans', code: '👖', - keywords: ['pants', 'jeans', 'clothing', 'trousers'], }, { name: 'scarf', code: '🧣', - keywords: ['scarf'], }, { name: 'gloves', code: '🧤', - keywords: ['gloves'], }, { name: 'coat', code: '🧥', - keywords: ['coat'], }, { name: 'socks', code: '🧦', - keywords: ['socks'], }, { name: 'dress', code: '👗', - keywords: ['dress', 'clothing'], }, { name: 'kimono', code: '👘', - keywords: ['kimono', 'clothing'], }, { name: 'sari', code: '🥻', - keywords: ['sari'], }, { name: 'one_piece_swimsuit', code: '🩱', - keywords: ['one_piece_swimsuit'], }, { name: 'swim_brief', code: '🩲', - keywords: ['swim_brief'], }, { name: 'shorts', code: '🩳', - keywords: ['shorts'], }, { name: 'bikini', code: '👙', - keywords: ['beach', 'bikini', 'clothing', 'swim'], }, { name: 'womans_clothes', code: '👚', - keywords: ['womans_clothes', 'clothing', 'woman'], }, { name: 'purse', code: '👛', - keywords: ['purse', 'clothing', 'coin'], }, { name: 'handbag', code: '👜', - keywords: ['bag', 'handbag', 'clothing'], }, { name: 'pouch', code: '👝', - keywords: ['bag', 'pouch', 'clothing'], }, { name: 'shopping', code: '🛍️', - keywords: ['bags', 'shopping'], }, { name: 'school_satchel', code: '🎒', - keywords: ['school_satchel', 'activity', 'bag', 'satchel', 'school'], }, { name: 'thong_sandal', code: '🩴', - keywords: ['thong_sandal'], }, { name: 'mans_shoe', code: '👞', - keywords: ['mans_shoe', 'shoe', 'clothing', 'man'], }, { name: 'athletic_shoe', code: '👟', - keywords: ['sneaker', 'sport', 'running', 'athletic_shoe', 'athletic', 'clothing', 'shoe'], }, { name: 'hiking_boot', code: '🥾', - keywords: ['hiking_boot'], }, { name: 'flat_shoe', code: '🥿', - keywords: ['flat_shoe'], }, { name: 'high_heel', code: '👠', - keywords: ['shoe', 'high_heel', 'clothing', 'heel', 'woman'], }, { name: 'sandal', code: '👡', - keywords: ['shoe', 'sandal', 'clothing', 'woman'], }, { name: 'ballet_shoes', code: '🩰', - keywords: ['ballet_shoes'], }, { name: 'boot', code: '👢', - keywords: ['boot', 'clothing', 'shoe', 'woman'], }, { name: 'crown', code: '👑', - keywords: ['king', 'queen', 'royal', 'crown', 'clothing'], }, { name: 'womans_hat', code: '👒', - keywords: ['womans_hat', 'clothing', 'hat', 'woman'], }, { name: 'tophat', code: '🎩', - keywords: ['hat', 'classy', 'tophat', 'activity', 'clothing', 'entertainment', 'top'], }, { name: 'mortar_board', code: '🎓', - keywords: ['education', 'college', 'university', 'graduation', 'mortar_board', 'activity', 'cap', 'celebration', 'clothing', 'hat'], }, { name: 'billed_cap', code: '🧢', - keywords: ['billed_cap'], }, { name: 'military_helmet', code: '🪖', - keywords: ['military_helmet'], }, { name: 'rescue_worker_helmet', code: '⛑️', - keywords: ['rescue_worker_helmet'], }, { name: 'prayer_beads', code: '📿', - keywords: ['prayer_beads', 'beads', 'clothing', 'necklace', 'prayer', 'religion'], }, { name: 'lipstick', code: '💄', - keywords: ['makeup', 'lipstick', 'cosmetics'], }, { name: 'ring', code: '💍', - keywords: ['wedding', 'marriage', 'engaged', 'ring', 'diamond', 'romance'], }, { name: 'gem', code: '💎', - keywords: ['diamond', 'gem', 'jewel', 'romance'], }, { name: 'mute', code: '🔇', - keywords: ['sound', 'volume', 'mute', 'quiet', 'silent', 'speaker'], }, { name: 'speaker', code: '🔈', - keywords: ['speaker', 'volume'], }, { name: 'sound', code: '🔉', - keywords: ['volume', 'sound', 'low', 'speaker', 'wave'], }, { name: 'loud_sound', code: '🔊', - keywords: ['volume', 'loud_sound', '3', 'entertainment', 'high', 'loud', 'speaker', 'three'], }, { name: 'loudspeaker', code: '📢', - keywords: ['announcement', 'loudspeaker', 'communication', 'loud', 'public address'], }, { name: 'mega', code: '📣', - keywords: ['mega', 'cheering', 'communication', 'megaphone'], }, { name: 'postal_horn', code: '📯', - keywords: ['postal_horn', 'communication', 'entertainment', 'horn', 'post', 'postal'], }, { name: 'bell', code: '🔔', - keywords: ['sound', 'notification', 'bell'], }, { name: 'no_bell', code: '🔕', - keywords: ['volume', 'off', 'no_bell', 'bell', 'forbidden', 'mute', 'no', 'not', 'prohibited', 'quiet', 'silent'], }, { name: 'musical_score', code: '🎼', - keywords: ['musical_score', 'activity', 'entertainment', 'music', 'score'], }, { name: 'musical_note', code: '🎵', - keywords: ['musical_note', 'activity', 'entertainment', 'music', 'note'], }, { name: 'notes', code: '🎶', - keywords: ['music', 'notes', 'activity', 'entertainment', 'note'], }, { name: 'studio_microphone', code: '🎙️', - keywords: ['podcast', 'studio_microphone'], }, { name: 'level_slider', code: '🎚️', - keywords: ['level_slider'], }, { name: 'control_knobs', code: '🎛️', - keywords: ['control_knobs'], }, { name: 'microphone', code: '🎤', - keywords: ['sing', 'microphone', 'activity', 'entertainment', 'karaoke', 'mic'], }, { name: 'headphones', code: '🎧', - keywords: ['music', 'earphones', 'headphones', 'activity', 'earbud', 'entertainment', 'headphone'], }, { name: 'radio', code: '📻', - keywords: ['podcast', 'radio', 'entertainment', 'video'], }, { name: 'saxophone', code: '🎷', - keywords: ['saxophone', 'activity', 'entertainment', 'instrument', 'music', 'sax'], }, { name: 'accordion', code: '🪗', - keywords: ['accordion'], }, { name: 'guitar', code: '🎸', - keywords: ['rock', 'guitar', 'activity', 'entertainment', 'instrument', 'music'], }, { name: 'musical_keyboard', code: '🎹', - keywords: ['piano', 'musical_keyboard', 'activity', 'entertainment', 'instrument', 'keyboard', 'music'], }, { name: 'trumpet', code: '🎺', - keywords: ['trumpet', 'activity', 'entertainment', 'instrument', 'music'], }, { name: 'violin', code: '🎻', - keywords: ['violin', 'activity', 'entertainment', 'instrument', 'music'], }, { name: 'banjo', code: '🪕', - keywords: ['banjo'], }, { name: 'drum', code: '🥁', - keywords: ['drum', 'drumsticks', 'music'], }, { name: 'long_drum', code: '🪘', - keywords: ['long_drum'], }, { name: 'iphone', code: '📱', - keywords: ['smartphone', 'mobile', 'iphone', 'cell', 'communication', 'phone', 'telephone'], }, { name: 'calling', code: '📲', - keywords: ['call', 'incoming', 'calling', 'arrow', 'cell', 'communication', 'mobile', 'phone', 'receive', 'telephone'], }, { name: 'phone', code: '☎️', - keywords: ['phone', 'telephone'], }, { name: 'telephone_receiver', code: '📞', - keywords: ['phone', 'call', 'telephone_receiver', 'communication', 'receiver', 'telephone'], }, { name: 'pager', code: '📟', - keywords: ['pager', 'communication'], }, { name: 'fax', code: '📠', - keywords: ['fax', 'communication'], }, { name: 'battery', code: '🔋', - keywords: ['power', 'battery'], }, { name: 'electric_plug', code: '🔌', - keywords: ['electric_plug', 'electric', 'electricity', 'plug'], }, { name: 'computer', code: '💻', - keywords: ['desktop', 'screen', 'computer', 'pc', 'personal'], }, { name: 'desktop_computer', code: '🖥️', - keywords: ['desktop_computer'], }, { name: 'printer', code: '🖨️', - keywords: ['printer'], }, { name: 'keyboard', code: '⌨️', - keywords: ['keyboard', 'computer'], }, { name: 'computer_mouse', code: '🖱️', - keywords: ['computer_mouse'], }, { name: 'trackball', code: '🖲️', - keywords: ['trackball'], }, { name: 'minidisc', code: '💽', - keywords: ['minidisc', 'computer', 'disk', 'entertainment', 'minidisk', 'optical'], }, { name: 'floppy_disk', code: '💾', - keywords: ['save', 'floppy_disk', 'computer', 'disk', 'floppy'], }, { name: 'cd', code: '💿', - keywords: ['cd', 'blu-ray', 'computer', 'disk', 'dvd', 'optical'], }, { name: 'dvd', code: '📀', - keywords: ['dvd', 'blu-ray', 'cd', 'computer', 'disk', 'entertainment', 'optical'], }, { name: 'abacus', code: '🧮', - keywords: ['abacus'], }, { name: 'movie_camera', code: '🎥', - keywords: ['film', 'video', 'movie_camera', 'activity', 'camera', 'cinema', 'entertainment', 'movie'], }, { name: 'film_strip', code: '🎞️', - keywords: ['film_strip'], }, { name: 'film_projector', code: '📽️', - keywords: ['film_projector'], }, { name: 'clapper', code: '🎬', - keywords: ['film', 'clapper', 'activity', 'entertainment', 'movie'], }, { name: 'tv', code: '📺', - keywords: ['tv', 'entertainment', 'television', 'video'], }, { name: 'camera', code: '📷', - keywords: ['photo', 'camera', 'entertainment', 'video'], }, { name: 'camera_flash', code: '📸', - keywords: ['photo', 'camera_flash', 'camera', 'flash', 'video'], }, { name: 'video_camera', code: '📹', - keywords: ['video_camera', 'camera', 'entertainment', 'video'], }, { name: 'vhs', code: '📼', - keywords: ['vhs', 'entertainment', 'tape', 'video', 'videocassette'], }, { name: 'mag', code: '🔍', - keywords: ['search', 'zoom', 'mag', 'glass', 'magnifying', 'tool'], }, { name: 'mag_right', code: '🔎', - keywords: ['mag_right', 'glass', 'magnifying', 'search', 'tool'], }, { name: 'candle', code: '🕯️', - keywords: ['candle'], }, { name: 'bulb', code: '💡', - keywords: ['idea', 'light', 'bulb', 'comic', 'electric'], }, { name: 'flashlight', code: '🔦', - keywords: ['flashlight', 'electric', 'light', 'tool', 'torch'], }, { name: 'izakaya_lantern', code: '🏮', - keywords: ['izakaya_lantern', 'lantern', 'bar', 'japanese', 'light', 'red'], }, { name: 'diya_lamp', code: '🪔', - keywords: ['diya_lamp'], }, { name: 'notebook_with_decorative_cover', code: '📔', - keywords: ['notebook_with_decorative_cover', 'book', 'cover', 'decorated', 'notebook'], }, { name: 'closed_book', code: '📕', - keywords: ['closed_book', 'book', 'closed'], }, { name: 'book', code: '📖', - keywords: ['book', 'open_book', 'open'], }, { name: 'green_book', code: '📗', - keywords: ['green_book', 'book', 'green'], }, { name: 'blue_book', code: '📘', - keywords: ['blue_book', 'blue', 'book'], }, { name: 'orange_book', code: '📙', - keywords: ['orange_book', 'book', 'orange'], }, { name: 'books', code: '📚', - keywords: ['library', 'books', 'book'], }, { name: 'notebook', code: '📓', - keywords: ['notebook'], }, { name: 'ledger', code: '📒', - keywords: ['ledger', 'notebook'], }, { name: 'page_with_curl', code: '📃', - keywords: ['page_with_curl', 'curl', 'document', 'page'], }, { name: 'scroll', code: '📜', - keywords: ['document', 'scroll', 'paper'], }, { name: 'page_facing_up', code: '📄', - keywords: ['document', 'page_facing_up', 'page'], }, { name: 'newspaper', code: '📰', - keywords: ['press', 'newspaper', 'communication', 'news', 'paper'], }, { name: 'newspaper_roll', code: '🗞️', - keywords: ['press', 'newspaper_roll'], }, { name: 'bookmark_tabs', code: '📑', - keywords: ['bookmark_tabs', 'bookmark', 'mark', 'marker', 'tabs'], }, { name: 'bookmark', code: '🔖', - keywords: ['bookmark', 'mark'], }, { name: 'label', code: '🏷️', - keywords: ['tag', 'label'], }, { name: 'moneybag', code: '💰', - keywords: ['dollar', 'cream', 'moneybag', 'bag', 'money'], }, { name: 'coin', code: '🪙', - keywords: ['coin'], }, { name: 'yen', code: '💴', - keywords: ['yen', 'bank', 'banknote', 'bill', 'currency', 'money', 'note'], }, { name: 'dollar', code: '💵', - keywords: ['money', 'dollar', 'bank', 'banknote', 'bill', 'currency', 'note'], }, { name: 'euro', code: '💶', - keywords: ['euro', 'bank', 'banknote', 'bill', 'currency', 'money', 'note'], }, { name: 'pound', code: '💷', - keywords: ['pound', 'bank', 'banknote', 'bill', 'currency', 'money', 'note'], }, { name: 'money_with_wings', code: '💸', - keywords: ['dollar', 'money_with_wings', 'bank', 'banknote', 'bill', 'fly', 'money', 'note', 'wings'], }, { name: 'credit_card', code: '💳', - keywords: ['subscription', 'credit_card', 'bank', 'card', 'credit', 'money'], }, { name: 'receipt', code: '🧾', - keywords: ['receipt'], }, { name: 'chart', code: '💹', - keywords: ['chart', 'bank', 'currency', 'graph', 'growth', 'market', 'money', 'rise', 'trend', 'upward', 'yen'], }, { name: 'envelope', code: '✉️', - keywords: ['letter', 'email', 'envelope', 'e-mail'], }, { name: 'email', code: '📧', - keywords: ['email', 'e-mail', 'communication', 'letter', 'mail'], }, { name: 'incoming_envelope', code: '📨', - keywords: ['incoming_envelope', 'communication', 'e-mail', 'email', 'envelope', 'incoming', 'letter', 'mail', 'receive'], }, { name: 'envelope_with_arrow', code: '📩', - keywords: ['envelope_with_arrow', 'arrow', 'communication', 'down', 'e-mail', 'email', 'envelope', 'letter', 'mail', 'outgoing', 'sent'], }, { name: 'outbox_tray', code: '📤', - keywords: ['outbox_tray', 'box', 'communication', 'letter', 'mail', 'outbox', 'sent', 'tray'], }, { name: 'inbox_tray', code: '📥', - keywords: ['inbox_tray', 'box', 'communication', 'inbox', 'letter', 'mail', 'receive', 'tray'], }, { name: 'package', code: '📦', - keywords: ['shipping', 'package', 'box', 'communication', 'parcel'], }, { name: 'mailbox', code: '📫', - keywords: ['mailbox', 'closed', 'communication', 'flag', 'mail', 'postbox'], }, { name: 'mailbox_closed', code: '📪', - keywords: ['mailbox_closed', 'closed', 'communication', 'flag', 'lowered', 'mail', 'mailbox', 'postbox'], }, { name: 'mailbox_with_mail', code: '📬', - keywords: ['mailbox_with_mail', 'communication', 'flag', 'mail', 'mailbox', 'open', 'postbox'], }, { name: 'mailbox_with_no_mail', code: '📭', - keywords: ['mailbox_with_no_mail', 'communication', 'flag', 'lowered', 'mail', 'mailbox', 'open', 'postbox'], }, { name: 'postbox', code: '📮', - keywords: ['postbox', 'communication', 'mail', 'mailbox'], }, { name: 'ballot_box', code: '🗳️', - keywords: ['ballot_box'], }, { name: 'pencil2', code: '✏️', - keywords: ['pencil2'], }, { name: 'black_nib', code: '✒️', - keywords: ['black_nib', 'nib', 'pen'], }, { name: 'fountain_pen', code: '🖋️', - keywords: ['fountain_pen'], }, { name: 'pen', code: '🖊️', - keywords: ['pen'], }, { name: 'paintbrush', code: '🖌️', - keywords: ['paintbrush'], }, { name: 'crayon', code: '🖍️', - keywords: ['crayon'], }, { name: 'memo', code: '📝', - keywords: ['document', 'note', 'memo', 'pencil', 'communication'], }, { name: 'briefcase', code: '💼', - keywords: ['business', 'briefcase'], }, { name: 'file_folder', code: '📁', - keywords: ['directory', 'file_folder', 'file', 'folder'], }, { name: 'open_file_folder', code: '📂', - keywords: ['open_file_folder', 'file', 'folder', 'open'], }, { name: 'card_index_dividers', code: '🗂️', - keywords: ['card_index_dividers'], }, { name: 'date', code: '📅', - keywords: ['calendar', 'schedule', 'date'], }, { name: 'calendar', code: '📆', - keywords: ['schedule', 'calendar'], }, { name: 'spiral_notepad', code: '🗒️', - keywords: ['spiral_notepad'], }, { name: 'spiral_calendar', code: '🗓️', - keywords: ['spiral_calendar'], }, { name: 'card_index', code: '📇', - keywords: ['card_index', 'card', 'index', 'rolodex'], }, { name: 'chart_with_upwards_trend', code: '📈', - keywords: ['graph', 'metrics', 'chart_with_upwards_trend', 'chart', 'growth', 'trend', 'upward'], }, { name: 'chart_with_downwards_trend', code: '📉', - keywords: ['graph', 'metrics', 'chart_with_downwards_trend', 'chart', 'down', 'trend'], }, { name: 'bar_chart', code: '📊', - keywords: ['stats', 'metrics', 'bar_chart', 'bar', 'chart', 'graph'], }, { name: 'clipboard', code: '📋', - keywords: ['clipboard'], }, { name: 'pushpin', code: '📌', - keywords: ['location', 'pushpin', 'pin'], }, { name: 'round_pushpin', code: '📍', - keywords: ['location', 'round_pushpin', 'pin', 'pushpin'], }, { name: 'paperclip', code: '📎', - keywords: ['paperclip'], }, { name: 'paperclips', code: '🖇️', - keywords: ['paperclips'], }, { name: 'straight_ruler', code: '📏', - keywords: ['straight_ruler', 'ruler', 'straight edge'], }, { name: 'triangular_ruler', code: '📐', - keywords: ['triangular_ruler', 'ruler', 'set', 'triangle'], }, { name: 'scissors', code: '✂️', - keywords: ['cut', 'scissors', 'tool'], }, { name: 'card_file_box', code: '🗃️', - keywords: ['card_file_box'], }, { name: 'file_cabinet', code: '🗄️', - keywords: ['file_cabinet'], }, { name: 'wastebasket', code: '🗑️', - keywords: ['trash', 'wastebasket'], }, { name: 'lock', code: '🔒', - keywords: ['security', 'private', 'lock', 'closed'], }, { name: 'unlock', code: '🔓', - keywords: ['security', 'unlock', 'lock', 'open'], }, { name: 'lock_with_ink_pen', code: '🔏', - keywords: ['lock_with_ink_pen', 'ink', 'lock', 'nib', 'pen', 'privacy'], }, { name: 'closed_lock_with_key', code: '🔐', - keywords: ['security', 'closed_lock_with_key', 'closed', 'key', 'lock', 'secure'], }, { name: 'key', code: '🔑', - keywords: ['lock', 'password', 'key'], }, { name: 'old_key', code: '🗝️', - keywords: ['old_key'], }, { name: 'hammer', code: '🔨', - keywords: ['tool', 'hammer'], }, { name: 'axe', code: '🪓', - keywords: ['axe'], }, { name: 'pick', code: '⛏️', - keywords: ['pick'], }, { name: 'hammer_and_pick', code: '⚒️', - keywords: ['hammer_and_pick', 'hammer', 'pick', 'tool'], }, { name: 'hammer_and_wrench', code: '🛠️', - keywords: ['hammer_and_wrench'], }, { name: 'dagger', code: '🗡️', - keywords: ['dagger'], }, { name: 'crossed_swords', code: '⚔️', - keywords: ['crossed_swords', 'crossed', 'swords', 'weapon'], }, { name: 'gun', code: '🔫', - keywords: ['shoot', 'weapon', 'gun', 'handgun', 'pistol', 'revolver', 'tool'], }, { name: 'boomerang', code: '🪃', - keywords: ['boomerang'], }, { name: 'bow_and_arrow', code: '🏹', - keywords: ['archery', 'bow_and_arrow', 'archer', 'arrow', 'bow', 'sagittarius', 'tool', 'weapon', 'zodiac'], }, { name: 'shield', code: '🛡️', - keywords: ['shield'], }, { name: 'carpentry_saw', code: '🪚', - keywords: ['carpentry_saw'], }, { name: 'wrench', code: '🔧', - keywords: ['tool', 'wrench'], }, { name: 'screwdriver', code: '🪛', - keywords: ['screwdriver'], }, { name: 'nut_and_bolt', code: '🔩', - keywords: ['nut_and_bolt', 'bolt', 'nut', 'tool'], }, { name: 'gear', code: '⚙️', - keywords: ['gear', 'tool'], }, { name: 'clamp', code: '🗜️', - keywords: ['clamp'], }, { name: 'balance_scale', code: '⚖️', - keywords: ['balance_scale', 'balance', 'justice', 'libra', 'scales', 'tool', 'weight', 'zodiac'], }, { name: 'probing_cane', code: '🦯', - keywords: ['probing_cane'], }, { name: 'link', code: '🔗', - keywords: ['link'], }, { name: 'chains', code: '⛓️', - keywords: ['chains'], }, { name: 'hook', code: '🪝', - keywords: ['hook'], }, { name: 'toolbox', code: '🧰', - keywords: ['toolbox'], }, { name: 'magnet', code: '🧲', - keywords: ['magnet'], }, { name: 'ladder', code: '🪜', - keywords: ['ladder'], }, { name: 'alembic', code: '⚗️', - keywords: ['alembic', 'chemistry', 'tool'], }, { name: 'test_tube', code: '🧪', - keywords: ['test_tube'], }, { name: 'petri_dish', code: '🧫', - keywords: ['petri_dish'], }, { name: 'dna', code: '🧬', - keywords: ['dna'], }, { name: 'microscope', code: '🔬', - keywords: ['science', 'laboratory', 'investigate', 'microscope', 'tool'], }, { name: 'telescope', code: '🔭', - keywords: ['telescope', 'tool'], }, { name: 'satellite', code: '📡', - keywords: ['signal', 'satellite', 'antenna', 'communication', 'dish'], }, { name: 'syringe', code: '💉', - keywords: ['health', 'hospital', 'needle', 'syringe', 'doctor', 'medicine', 'shot', 'sick', 'tool'], }, { name: 'drop_of_blood', code: '🩸', - keywords: ['drop_of_blood'], }, { name: 'pill', code: '💊', - keywords: ['health', 'medicine', 'pill', 'doctor', 'sick'], }, { name: 'adhesive_bandage', code: '🩹', - keywords: ['adhesive_bandage'], }, { name: 'stethoscope', code: '🩺', - keywords: ['stethoscope'], }, { name: 'door', code: '🚪', - keywords: ['door'], }, { name: 'elevator', code: '🛗', - keywords: ['elevator'], }, { name: 'mirror', code: '🪞', - keywords: ['mirror'], }, { name: 'window', code: '🪟', - keywords: ['window'], }, { name: 'bed', code: '🛏️', - keywords: ['bed'], }, { name: 'couch_and_lamp', code: '🛋️', - keywords: ['couch_and_lamp'], }, { name: 'chair', code: '🪑', - keywords: ['chair'], }, { name: 'toilet', code: '🚽', - keywords: ['wc', 'toilet'], }, { name: 'plunger', code: '🪠', - keywords: ['plunger'], }, { name: 'shower', code: '🚿', - keywords: ['bath', 'shower', 'water'], }, { name: 'bathtub', code: '🛁', - keywords: ['bathtub', 'bath'], }, { name: 'mouse_trap', code: '🪤', - keywords: ['mouse_trap'], }, { name: 'razor', code: '🪒', - keywords: ['razor'], }, { name: 'lotion_bottle', code: '🧴', - keywords: ['lotion_bottle'], }, { name: 'safety_pin', code: '🧷', - keywords: ['safety_pin'], }, { name: 'broom', code: '🧹', - keywords: ['broom'], }, { name: 'basket', code: '🧺', - keywords: ['basket'], }, { name: 'roll_of_paper', code: '🧻', - keywords: ['toilet', 'roll_of_paper'], }, { name: 'bucket', code: '🪣', - keywords: ['bucket'], }, { name: 'soap', code: '🧼', - keywords: ['soap'], }, { name: 'toothbrush', code: '🪥', - keywords: ['toothbrush'], }, { name: 'sponge', code: '🧽', - keywords: ['sponge'], }, { name: 'fire_extinguisher', code: '🧯', - keywords: ['fire_extinguisher'], }, { name: 'shopping_cart', code: '🛒', - keywords: ['shopping_cart', 'cart', 'shopping', 'trolley'], }, { name: 'smoking', code: '🚬', - keywords: ['cigarette', 'smoking', 'activity'], }, { name: 'coffin', code: '⚰️', - keywords: ['funeral', 'coffin'], }, { name: 'headstone', code: '🪦', - keywords: ['headstone'], }, { name: 'funeral_urn', code: '⚱️', - keywords: ['funeral_urn'], }, { name: 'moyai', code: '🗿', - keywords: ['stone', 'moyai', 'face', 'statue'], }, { name: 'placard', code: '🪧', - keywords: ['placard'], }, { - code: 'symbols', header: true, icon: Symbols, + code: 'symbols', }, { name: 'atm', code: '🏧', - keywords: ['atm', 'automated', 'bank', 'teller'], }, { name: 'put_litter_in_its_place', code: '🚮', - keywords: ['put_litter_in_its_place', 'litter', 'litterbox'], }, { name: 'potable_water', code: '🚰', - keywords: ['potable_water', 'drink', 'potable', 'water'], }, { name: 'wheelchair', code: '♿', - keywords: ['accessibility', 'wheelchair', 'access'], }, { name: 'mens', code: '🚹', - keywords: ['mens', 'lavatory', 'man', 'restroom', 'wc'], }, { name: 'womens', code: '🚺', - keywords: ['womens', 'lavatory', 'restroom', 'wc', 'woman'], }, { name: 'restroom', code: '🚻', - keywords: ['toilet', 'restroom', 'lavatory', 'wc'], }, { name: 'baby_symbol', code: '🚼', - keywords: ['baby_symbol', 'baby', 'changing'], }, { name: 'wc', code: '🚾', - keywords: ['toilet', 'restroom', 'wc', 'closet', 'lavatory', 'water'], }, { name: 'passport_control', code: '🛂', - keywords: ['passport_control', 'control', 'passport'], }, { name: 'customs', code: '🛃', - keywords: ['customs'], }, { name: 'baggage_claim', code: '🛄', - keywords: ['airport', 'baggage_claim', 'baggage', 'claim'], }, { name: 'left_luggage', code: '🛅', - keywords: ['left_luggage', 'baggage', 'left luggage', 'locker', 'luggage'], }, { name: 'warning', code: '⚠️', - keywords: ['wip', 'warning'], }, { name: 'children_crossing', code: '🚸', - keywords: ['children_crossing', 'child', 'crossing', 'pedestrian', 'traffic'], }, { name: 'no_entry', code: '⛔', - keywords: ['limit', 'no_entry', 'entry', 'forbidden', 'no', 'not', 'prohibited', 'traffic'], }, { name: 'no_entry_sign', code: '🚫', - keywords: ['block', 'forbidden', 'no_entry_sign', 'entry', 'no', 'not', 'prohibited'], }, { name: 'no_bicycles', code: '🚳', - keywords: ['no_bicycles', 'bicycle', 'bike', 'forbidden', 'no', 'not', 'prohibited', 'vehicle'], }, { name: 'no_smoking', code: '🚭', - keywords: ['no_smoking', 'forbidden', 'no', 'not', 'prohibited', 'smoking'], }, { name: 'do_not_litter', code: '🚯', - keywords: ['do_not_litter', 'forbidden', 'litter', 'no', 'not', 'prohibited'], }, { name: 'non-potable_water', code: '🚱', - keywords: ['non-potable_water', 'drink', 'forbidden', 'no', 'not', 'potable', 'prohibited', 'water'], }, { name: 'no_pedestrians', code: '🚷', - keywords: ['no_pedestrians', 'forbidden', 'no', 'not', 'pedestrian', 'prohibited'], }, { name: 'no_mobile_phones', code: '📵', - keywords: ['no_mobile_phones', 'cell', 'communication', 'forbidden', 'mobile', 'no', 'not', 'phone', 'prohibited', 'telephone'], }, { name: 'underage', code: '🔞', - keywords: ['underage', '18', 'age restriction', 'eighteen', 'forbidden', 'no', 'not', 'prohibited'], }, { name: 'radioactive', code: '☢️', - keywords: ['radioactive'], }, { name: 'biohazard', code: '☣️', - keywords: ['biohazard'], }, { name: 'arrow_up', code: '⬆️', - keywords: ['arrow_up'], }, { name: 'arrow_upper_right', code: '↗️', - keywords: ['arrow_upper_right', 'arrow', 'direction', 'intercardinal', 'northeast'], }, { name: 'arrow_right', code: '➡️', - keywords: ['arrow_right'], }, { name: 'arrow_lower_right', code: '↘️', - keywords: ['arrow_lower_right', 'arrow', 'direction', 'intercardinal', 'southeast'], }, { name: 'arrow_down', code: '⬇️', - keywords: ['arrow_down'], }, { name: 'arrow_lower_left', code: '↙️', - keywords: ['arrow_lower_left', 'arrow', 'direction', 'intercardinal', 'southwest'], }, { name: 'arrow_left', code: '⬅️', - keywords: ['arrow_left'], }, { name: 'arrow_upper_left', code: '↖️', - keywords: ['arrow_upper_left', 'arrow', 'direction', 'intercardinal', 'northwest'], }, { name: 'arrow_up_down', code: '↕️', - keywords: ['arrow_up_down', 'arrow'], }, { name: 'left_right_arrow', code: '↔️', - keywords: ['left_right_arrow', 'arrow'], }, { name: 'leftwards_arrow_with_hook', code: '↩️', - keywords: ['return', 'leftwards_arrow_with_hook'], }, { name: 'arrow_right_hook', code: '↪️', - keywords: ['arrow_right_hook'], }, { name: 'arrow_heading_up', code: '⤴️', - keywords: ['arrow_heading_up', 'arrow', 'up'], }, { name: 'arrow_heading_down', code: '⤵️', - keywords: ['arrow_heading_down', 'arrow', 'down'], }, { name: 'arrows_clockwise', code: '🔃', - keywords: ['arrows_clockwise', 'arrow', 'clockwise', 'reload'], }, { name: 'arrows_counterclockwise', code: '🔄', - keywords: ['sync', 'arrows_counterclockwise', 'anticlockwise', 'arrow', 'counterclockwise', 'withershins'], }, { name: 'back', code: '🔙', - keywords: ['back', 'arrow'], }, { name: 'end', code: '🔚', - keywords: ['end', 'arrow'], }, { name: 'on', code: '🔛', - keywords: ['on', 'arrow', 'mark'], }, { name: 'soon', code: '🔜', - keywords: ['soon', 'arrow'], }, { name: 'top', code: '🔝', - keywords: ['top', 'arrow', 'up'], }, { name: 'place_of_worship', code: '🛐', - keywords: ['place_of_worship', 'religion', 'worship'], }, { name: 'atom_symbol', code: '⚛️', - keywords: ['atom_symbol'], }, { name: 'om', code: '🕉️', - keywords: ['om'], }, { name: 'star_of_david', code: '✡️', - keywords: ['star_of_david', 'david', 'jew', 'jewish', 'religion', 'star'], }, { name: 'wheel_of_dharma', code: '☸️', - keywords: ['wheel_of_dharma', 'buddhist', 'dharma', 'religion', 'wheel'], }, { name: 'yin_yang', code: '☯️', - keywords: ['yin_yang'], }, { name: 'latin_cross', code: '✝️', - keywords: ['latin_cross'], }, { name: 'orthodox_cross', code: '☦️', - keywords: ['orthodox_cross', 'christian', 'cross', 'religion'], }, { name: 'star_and_crescent', code: '☪️', - keywords: ['star_and_crescent'], }, { name: 'peace_symbol', code: '☮️', - keywords: ['peace_symbol'], }, { name: 'menorah', code: '🕎', - keywords: ['menorah', 'candelabrum', 'candlestick', 'religion'], }, { name: 'six_pointed_star', code: '🔯', - keywords: ['six_pointed_star', 'fortune', 'star'], }, { name: 'aries', code: '♈', - keywords: ['aries', 'ram', 'zodiac'], }, { name: 'taurus', code: '♉', - keywords: ['taurus', 'bull', 'ox', 'zodiac'], }, { name: 'gemini', code: '♊', - keywords: ['gemini', 'twins', 'zodiac'], }, { name: 'cancer', code: '♋', - keywords: ['cancer', 'crab', 'zodiac'], }, { name: 'leo', code: '♌', - keywords: ['leo', 'lion', 'zodiac'], }, { name: 'virgo', code: '♍', - keywords: ['virgo', 'maiden', 'virgin', 'zodiac'], }, { name: 'libra', code: '♎', - keywords: ['libra', 'balance', 'justice', 'scales', 'zodiac'], }, { name: 'scorpius', code: '♏', - keywords: ['scorpius', 'scorpio', 'scorpion', 'zodiac'], }, { name: 'sagittarius', code: '♐', - keywords: ['sagittarius', 'archer', 'zodiac'], }, { name: 'capricorn', code: '♑', - keywords: ['capricorn', 'goat', 'zodiac'], }, { name: 'aquarius', code: '♒', - keywords: ['aquarius', 'bearer', 'water', 'zodiac'], }, { name: 'pisces', code: '♓', - keywords: ['pisces', 'fish', 'zodiac'], }, { name: 'ophiuchus', code: '⛎', - keywords: ['ophiuchus', 'bearer', 'serpent', 'snake', 'zodiac'], }, { name: 'twisted_rightwards_arrows', code: '🔀', - keywords: ['shuffle', 'twisted_rightwards_arrows', 'arrow', 'crossed'], }, { name: 'repeat', code: '🔁', - keywords: ['loop', 'repeat', 'arrow', 'clockwise'], }, { name: 'repeat_one', code: '🔂', - keywords: ['repeat_one', 'arrow', 'clockwise', 'once'], }, { name: 'arrow_forward', code: '▶️', - keywords: ['arrow_forward'], }, { name: 'fast_forward', code: '⏩', - keywords: ['fast_forward', 'arrow', 'double', 'fast', 'forward'], }, { name: 'next_track_button', code: '⏭️', - keywords: ['next_track_button'], }, { name: 'play_or_pause_button', code: '⏯️', - keywords: ['play_or_pause_button'], }, { name: 'arrow_backward', code: '◀️', - keywords: ['arrow_backward'], }, { name: 'rewind', code: '⏪', - keywords: ['rewind', 'arrow', 'double'], }, { name: 'previous_track_button', code: '⏮️', - keywords: ['previous_track_button'], }, { name: 'arrow_up_small', code: '🔼', - keywords: ['arrow_up_small', 'arrow', 'button', 'red'], }, { name: 'arrow_double_up', code: '⏫', - keywords: ['arrow_double_up', 'arrow', 'double'], }, { name: 'arrow_down_small', code: '🔽', - keywords: ['arrow_down_small', 'arrow', 'button', 'down', 'red'], }, { name: 'arrow_double_down', code: '⏬', - keywords: ['arrow_double_down', 'arrow', 'double', 'down'], }, { name: 'pause_button', code: '⏸️', - keywords: ['pause_button'], }, { name: 'stop_button', code: '⏹️', - keywords: ['stop_button'], }, { name: 'record_button', code: '⏺️', - keywords: ['record_button'], }, { name: 'eject_button', code: '⏏️', - keywords: ['eject_button'], }, { name: 'cinema', code: '🎦', - keywords: ['film', 'movie', 'cinema', 'activity', 'camera', 'entertainment'], }, { name: 'low_brightness', code: '🔅', - keywords: ['low_brightness', 'brightness', 'dim', 'low'], }, { name: 'high_brightness', code: '🔆', - keywords: ['high_brightness', 'bright', 'brightness'], }, { name: 'signal_strength', code: '📶', - keywords: ['wifi', 'signal_strength', 'antenna', 'bar', 'cell', 'communication', 'mobile', 'phone', 'signal', 'telephone'], }, { name: 'vibration_mode', code: '📳', - keywords: ['vibration_mode', 'cell', 'communication', 'mobile', 'mode', 'phone', 'telephone', 'vibration'], }, { name: 'mobile_phone_off', code: '📴', - keywords: ['mute', 'off', 'mobile_phone_off', 'cell', 'communication', 'mobile', 'phone', 'telephone'], }, { name: 'female_sign', code: '♀️', - keywords: ['female_sign'], }, { name: 'male_sign', code: '♂️', - keywords: ['male_sign'], }, { name: 'transgender_symbol', code: '⚧️', - keywords: ['transgender_symbol'], }, { name: 'heavy_multiplication_x', code: '✖️', - keywords: ['heavy_multiplication_x', 'cancel', 'multiplication', 'multiply', 'x'], }, { name: 'heavy_plus_sign', code: '➕', - keywords: ['heavy_plus_sign', 'math', 'plus'], }, { name: 'heavy_minus_sign', code: '➖', - keywords: ['heavy_minus_sign', 'math', 'minus'], }, { name: 'heavy_division_sign', code: '➗', - keywords: ['heavy_division_sign', 'division', 'math'], }, { name: 'infinity', code: '♾️', - keywords: ['infinity'], }, { name: 'bangbang', code: '‼️', - keywords: ['bangbang'], }, { name: 'interrobang', code: '⁉️', - keywords: ['interrobang', 'exclamation', 'mark', 'punctuation', 'question'], }, { name: 'question', code: '❓', - keywords: ['confused', 'question', 'mark', 'punctuation'], }, { name: 'grey_question', code: '❔', - keywords: ['grey_question', 'mark', 'outlined', 'punctuation', 'question'], }, { name: 'grey_exclamation', code: '❕', - keywords: ['grey_exclamation', 'exclamation', 'mark', 'outlined', 'punctuation'], }, { name: 'exclamation', code: '❗', - keywords: ['bang', 'exclamation', 'heavy_exclamation_mark', 'mark', 'punctuation'], }, { name: 'wavy_dash', code: '〰️', - keywords: ['wavy_dash', 'dash', 'punctuation', 'wavy'], }, { name: 'currency_exchange', code: '💱', - keywords: ['currency_exchange', 'bank', 'currency', 'exchange', 'money'], }, { name: 'heavy_dollar_sign', code: '💲', - keywords: ['heavy_dollar_sign', 'currency', 'dollar', 'money'], }, { name: 'medical_symbol', code: '⚕️', - keywords: ['medical_symbol'], }, { name: 'recycle', code: '♻️', - keywords: ['environment', 'green', 'recycle'], }, { name: 'fleur_de_lis', code: '⚜️', - keywords: ['fleur_de_lis'], }, { name: 'trident', code: '🔱', - keywords: ['trident', 'anchor', 'emblem', 'ship', 'tool'], }, { name: 'name_badge', code: '📛', - keywords: ['name_badge', 'badge', 'name'], }, { name: 'beginner', code: '🔰', - keywords: ['beginner', 'chevron', 'green', 'japanese', 'leaf', 'tool', 'yellow'], }, { name: 'o', code: '⭕', - keywords: ['o', 'circle'], }, { name: 'white_check_mark', code: '✅', - keywords: ['white_check_mark', 'check', 'mark'], }, { name: 'ballot_box_with_check', code: '☑️', - keywords: ['ballot_box_with_check', 'ballot', 'box', 'check'], }, { name: 'heavy_check_mark', code: '✔️', - keywords: ['heavy_check_mark', 'check', 'mark'], }, { name: 'x', code: '❌', - keywords: ['x', 'cancel', 'mark', 'multiplication', 'multiply'], }, { name: 'negative_squared_cross_mark', code: '❎', - keywords: ['negative_squared_cross_mark', 'mark', 'square'], }, { name: 'curly_loop', code: '➰', - keywords: ['curly_loop', 'curl', 'loop'], }, { name: 'loop', code: '➿', - keywords: ['loop', 'curl', 'double'], }, { name: 'part_alternation_mark', code: '〽️', - keywords: ['part_alternation_mark'], }, { name: 'eight_spoked_asterisk', code: '✳️', - keywords: ['eight_spoked_asterisk', 'asterisk'], }, { name: 'eight_pointed_black_star', code: '✴️', - keywords: ['eight_pointed_black_star', 'star'], }, { name: 'sparkle', code: '❇️', - keywords: ['sparkle'], }, { name: 'copyright', code: '©️', - keywords: ['copyright'], }, { name: 'registered', code: '®️', - keywords: ['registered'], }, { name: 'tm', code: '™️', - keywords: ['trademark', 'tm', 'mark'], }, { name: 'hash', code: '#️⃣', - keywords: ['number', 'hash', 'keycap', 'pound'], }, { name: 'asterisk', code: '*️⃣', - keywords: ['asterisk', 'keycap', 'star'], }, { name: 'zero', code: '0️⃣', - keywords: ['zero', '0', 'keycap'], }, { name: 'one', code: '1️⃣', - keywords: ['one', '1', 'keycap'], }, { name: 'two', code: '2️⃣', - keywords: ['two', '2', 'keycap'], }, { name: 'three', code: '3️⃣', - keywords: ['three', '3', 'keycap'], }, { name: 'four', code: '4️⃣', - keywords: ['four', '4', 'keycap'], }, { name: 'five', code: '5️⃣', - keywords: ['five', '5', 'keycap'], }, { name: 'six', code: '6️⃣', - keywords: ['six', '6', 'keycap'], }, { name: 'seven', code: '7️⃣', - keywords: ['seven', '7', 'keycap'], }, { name: 'eight', code: '8️⃣', - keywords: ['eight', '8', 'keycap'], }, { name: 'nine', code: '9️⃣', - keywords: ['nine', '9', 'keycap'], }, { name: 'keycap_ten', code: '🔟', - keywords: ['keycap_ten', '10', 'keycap', 'ten'], }, { name: 'capital_abcd', code: '🔠', - keywords: ['letters', 'capital_abcd', 'input', 'latin', 'uppercase'], }, { name: 'abcd', code: '🔡', - keywords: ['abcd', 'input', 'latin', 'letters', 'lowercase'], }, { name: '1234', code: '🔢', - keywords: ['numbers', '1234', 'input'], }, { name: 'symbols', code: '🔣', - keywords: ['symbols', 'input'], }, { name: 'abc', code: '🔤', - keywords: ['alphabet', 'abc', 'input', 'latin', 'letters'], }, { name: 'a', code: '🅰️', - keywords: ['a'], }, { name: 'ab', code: '🆎', - keywords: ['ab', 'blood'], }, { name: 'b', code: '🅱️', - keywords: ['b'], }, { name: 'cl', code: '🆑', - keywords: ['cl'], }, { name: 'cool', code: '🆒', - keywords: ['cool'], }, { name: 'free', code: '🆓', - keywords: ['free'], }, { name: 'information_source', code: 'ℹ️', - keywords: ['information_source', 'i', 'information'], }, { name: 'id', code: '🆔', - keywords: ['id', 'identity'], }, { name: 'm', code: 'Ⓜ️', - keywords: ['m'], }, { name: 'new', code: '🆕', - keywords: ['fresh', 'new'], }, { name: 'ng', code: '🆖', - keywords: ['ng'], }, { name: 'o2', code: '🅾️', - keywords: ['o2'], }, { name: 'ok', code: '🆗', - keywords: ['yes', 'ok'], }, { name: 'parking', code: '🅿️', - keywords: ['parking'], }, { name: 'sos', code: '🆘', - keywords: ['help', 'emergency', 'sos'], }, { name: 'up', code: '🆙', - keywords: ['up', 'mark'], }, { name: 'vs', code: '🆚', - keywords: ['vs', 'versus'], }, { name: 'koko', code: '🈁', - keywords: ['koko', 'japanese'], }, { name: 'sa', code: '🈂️', - keywords: ['sa'], }, { name: 'u6708', code: '🈷️', - keywords: ['u6708'], }, { name: 'u6709', code: '🈶', - keywords: ['u6709', 'japanese'], }, { name: 'u6307', code: '🈯', - keywords: ['u6307', 'japanese'], }, { name: 'ideograph_advantage', code: '🉐', - keywords: ['ideograph_advantage', 'japanese'], }, { name: 'u5272', code: '🈹', - keywords: ['u5272', 'japanese'], }, { name: 'u7121', code: '🈚', - keywords: ['u7121', 'japanese'], }, { name: 'u7981', code: '🈲', - keywords: ['u7981', 'japanese'], }, { name: 'accept', code: '🉑', - keywords: ['accept', 'chinese'], }, { name: 'u7533', code: '🈸', - keywords: ['u7533', 'chinese'], }, { name: 'u5408', code: '🈴', - keywords: ['u5408', 'chinese'], }, { name: 'u7a7a', code: '🈳', - keywords: ['u7a7a', 'chinese'], }, { name: 'congratulations', code: '㊗️', - keywords: ['congratulations', 'chinese', 'congratulation', 'ideograph'], }, { name: 'secret', code: '㊙️', - keywords: ['secret', 'chinese', 'ideograph'], }, { name: 'u55b6', code: '🈺', - keywords: ['u55b6', 'chinese'], }, { name: 'u6e80', code: '🈵', - keywords: ['u6e80', 'chinese'], }, { name: 'red_circle', code: '🔴', - keywords: ['red_circle', 'circle', 'geometric', 'red'], }, { name: 'orange_circle', code: '🟠', - keywords: ['orange_circle'], }, { name: 'yellow_circle', code: '🟡', - keywords: ['yellow_circle'], }, { name: 'green_circle', code: '🟢', - keywords: ['green_circle'], }, { name: 'large_blue_circle', code: '🔵', - keywords: ['large_blue_circle', 'blue', 'circle', 'geometric'], }, { name: 'purple_circle', code: '🟣', - keywords: ['purple_circle'], }, { name: 'brown_circle', code: '🟤', - keywords: ['brown_circle'], }, { name: 'black_circle', code: '⚫', - keywords: ['black_circle', 'circle', 'geometric'], }, { name: 'white_circle', code: '⚪', - keywords: ['white_circle', 'circle', 'geometric'], }, { name: 'red_square', code: '🟥', - keywords: ['red_square'], }, { name: 'orange_square', code: '🟧', - keywords: ['orange_square'], }, { name: 'yellow_square', code: '🟨', - keywords: ['yellow_square'], }, { name: 'green_square', code: '🟩', - keywords: ['green_square'], }, { name: 'blue_square', code: '🟦', - keywords: ['blue_square'], }, { name: 'purple_square', code: '🟪', - keywords: ['purple_square'], }, { name: 'brown_square', code: '🟫', - keywords: ['brown_square'], }, { name: 'black_large_square', code: '⬛', - keywords: ['black_large_square', 'geometric', 'square'], }, { name: 'white_large_square', code: '⬜', - keywords: ['white_large_square', 'geometric', 'square'], }, { name: 'black_medium_square', code: '◼️', - keywords: ['black_medium_square'], }, { name: 'white_medium_square', code: '◻️', - keywords: ['white_medium_square'], }, { name: 'black_medium_small_square', code: '◾', - keywords: ['black_medium_small_square', 'geometric', 'square'], }, { name: 'white_medium_small_square', code: '◽', - keywords: ['white_medium_small_square', 'geometric', 'square'], }, { name: 'black_small_square', code: '▪️', - keywords: ['black_small_square'], }, { name: 'white_small_square', code: '▫️', - keywords: ['white_small_square'], }, { name: 'large_orange_diamond', code: '🔶', - keywords: ['large_orange_diamond', 'diamond', 'geometric', 'orange'], }, { name: 'large_blue_diamond', code: '🔷', - keywords: ['large_blue_diamond', 'blue', 'diamond', 'geometric'], }, { name: 'small_orange_diamond', code: '🔸', - keywords: ['small_orange_diamond', 'diamond', 'geometric', 'orange'], }, { name: 'small_blue_diamond', code: '🔹', - keywords: ['small_blue_diamond', 'blue', 'diamond', 'geometric'], }, { name: 'small_red_triangle', code: '🔺', - keywords: ['small_red_triangle', 'geometric', 'red'], }, { name: 'small_red_triangle_down', code: '🔻', - keywords: ['small_red_triangle_down', 'down', 'geometric', 'red'], }, { name: 'diamond_shape_with_a_dot_inside', code: '💠', - keywords: ['diamond_shape_with_a_dot_inside', 'comic', 'diamond', 'geometric', 'inside'], }, { name: 'radio_button', code: '🔘', - keywords: ['radio_button', 'button', 'geometric', 'radio'], }, { name: 'white_square_button', code: '🔳', - keywords: ['white_square_button', 'button', 'geometric', 'outlined', 'square'], }, { name: 'black_square_button', code: '🔲', - keywords: ['black_square_button', 'button', 'geometric', 'square'], }, { - code: 'flags', header: true, icon: Flags, + code: 'flags', }, { name: 'checkered_flag', code: '🏁', - keywords: ['milestone', 'finish', 'checkered_flag', 'checkered', 'chequered', 'flag', 'racing'], }, { name: 'triangular_flag_on_post', code: '🚩', - keywords: ['triangular_flag_on_post', 'flag', 'post'], }, { name: 'crossed_flags', code: '🎌', - keywords: ['crossed_flags', 'activity', 'celebration', 'cross', 'crossed', 'flag', 'japanese'], }, { name: 'black_flag', code: '🏴', - keywords: ['black_flag', 'flag', 'waving'], }, { name: 'white_flag', code: '🏳️', - keywords: ['white_flag'], }, { name: 'rainbow_flag', code: '🏳️‍🌈', - keywords: ['pride', 'rainbow_flag'], }, { name: 'transgender_flag', code: '🏳️‍⚧️', - keywords: ['transgender_flag'], }, { name: 'pirate_flag', code: '🏴‍☠️', - keywords: ['pirate_flag'], }, { name: 'ascension_island', code: '🇦🇨', - keywords: ['ascension_island', 'ascension', 'flag', 'island'], }, { name: 'andorra', code: '🇦🇩', - keywords: ['andorra', 'flag'], }, { name: 'united_arab_emirates', code: '🇦🇪', - keywords: ['united_arab_emirates', 'emirates', 'flag', 'uae', 'united'], }, { name: 'afghanistan', code: '🇦🇫', - keywords: ['afghanistan', 'flag'], }, { name: 'antigua_barbuda', code: '🇦🇬', - keywords: ['antigua_barbuda', 'antigua', 'barbuda', 'flag'], }, { name: 'anguilla', code: '🇦🇮', - keywords: ['anguilla', 'flag'], }, { name: 'albania', code: '🇦🇱', - keywords: ['albania', 'flag'], }, { name: 'armenia', code: '🇦🇲', - keywords: ['armenia', 'flag'], }, { name: 'angola', code: '🇦🇴', - keywords: ['angola', 'flag'], }, { name: 'antarctica', code: '🇦🇶', - keywords: ['antarctica', 'flag'], }, { name: 'argentina', code: '🇦🇷', - keywords: ['argentina', 'flag'], }, { name: 'american_samoa', code: '🇦🇸', - keywords: ['american_samoa', 'american', 'flag', 'samoa'], }, { name: 'austria', code: '🇦🇹', - keywords: ['austria', 'flag'], }, { name: 'australia', code: '🇦🇺', - keywords: ['australia', 'flag'], }, { name: 'aruba', code: '🇦🇼', - keywords: ['aruba', 'flag'], }, { name: 'aland_islands', code: '🇦🇽', - keywords: ['aland_islands', 'åland', 'flag'], }, { name: 'azerbaijan', code: '🇦🇿', - keywords: ['azerbaijan', 'flag'], }, { name: 'bosnia_herzegovina', code: '🇧🇦', - keywords: ['bosnia_herzegovina', 'bosnia', 'flag', 'herzegovina'], }, { name: 'barbados', code: '🇧🇧', - keywords: ['barbados', 'flag'], }, { name: 'bangladesh', code: '🇧🇩', - keywords: ['bangladesh', 'flag'], }, { name: 'belgium', code: '🇧🇪', - keywords: ['belgium', 'flag'], }, { name: 'burkina_faso', code: '🇧🇫', - keywords: ['burkina_faso', 'burkina faso', 'flag'], }, { name: 'bulgaria', code: '🇧🇬', - keywords: ['bulgaria', 'flag'], }, { name: 'bahrain', code: '🇧🇭', - keywords: ['bahrain', 'flag'], }, { name: 'burundi', code: '🇧🇮', - keywords: ['burundi', 'flag'], }, { name: 'benin', code: '🇧🇯', - keywords: ['benin', 'flag'], }, { name: 'st_barthelemy', code: '🇧🇱', - keywords: ['st_barthelemy', 'barthelemy', 'barthélemy', 'flag', 'saint'], }, { name: 'bermuda', code: '🇧🇲', - keywords: ['bermuda', 'flag'], }, { name: 'brunei', code: '🇧🇳', - keywords: ['brunei', 'darussalam', 'flag'], }, { name: 'bolivia', code: '🇧🇴', - keywords: ['bolivia', 'flag'], }, { name: 'caribbean_netherlands', code: '🇧🇶', - keywords: ['caribbean_netherlands', 'bonaire', 'caribbean', 'eustatius', 'flag', 'netherlands', 'saba', 'sint'], }, { name: 'brazil', code: '🇧🇷', - keywords: ['brazil', 'flag'], }, { name: 'bahamas', code: '🇧🇸', - keywords: ['bahamas', 'flag'], }, { name: 'bhutan', code: '🇧🇹', - keywords: ['bhutan', 'flag'], }, { name: 'bouvet_island', code: '🇧🇻', - keywords: ['bouvet_island', 'bouvet', 'flag', 'island'], }, { name: 'botswana', code: '🇧🇼', - keywords: ['botswana', 'flag'], }, { name: 'belarus', code: '🇧🇾', - keywords: ['belarus', 'flag'], }, { name: 'belize', code: '🇧🇿', - keywords: ['belize', 'flag'], }, { name: 'canada', code: '🇨🇦', - keywords: ['canada', 'flag'], }, { name: 'cocos_islands', code: '🇨🇨', - keywords: ['keeling', 'cocos_islands', 'cocos', 'flag', 'island'], }, { name: 'congo_kinshasa', code: '🇨🇩', - keywords: ['congo_kinshasa', 'congo', 'congo-kinshasa', 'democratic republic of congo', 'drc', 'flag', 'kinshasa', 'republic'], }, { name: 'central_african_republic', code: '🇨🇫', - keywords: ['central_african_republic', 'central african republic', 'flag', 'republic'], }, { name: 'congo_brazzaville', code: '🇨🇬', - keywords: ['congo_brazzaville', 'brazzaville', 'congo', 'congo republic', 'congo-brazzaville', 'flag', 'republic', 'republic of the congo'], }, { name: 'switzerland', code: '🇨🇭', - keywords: ['switzerland', 'flag'], }, { name: 'cote_divoire', code: '🇨🇮', - keywords: ['ivory', 'cote_divoire', 'cote ivoire', 'côte ivoire', 'flag', 'ivory coast'], }, { name: 'cook_islands', code: '🇨🇰', - keywords: ['cook_islands', 'cook', 'flag', 'island'], }, { name: 'chile', code: '🇨🇱', - keywords: ['chile', 'flag'], }, { name: 'cameroon', code: '🇨🇲', - keywords: ['cameroon', 'flag'], }, { name: 'cn', code: '🇨🇳', - keywords: ['china', 'cn', 'flag'], }, { name: 'colombia', code: '🇨🇴', - keywords: ['colombia', 'flag'], }, { name: 'clipperton_island', code: '🇨🇵', - keywords: ['clipperton_island', 'clipperton', 'flag', 'island'], }, { name: 'costa_rica', code: '🇨🇷', - keywords: ['costa_rica', 'costa rica', 'flag'], }, { name: 'cuba', code: '🇨🇺', - keywords: ['cuba', 'flag'], }, { name: 'cape_verde', code: '🇨🇻', - keywords: ['cape_verde', 'cabo', 'cape', 'flag', 'verde'], }, { name: 'curacao', code: '🇨🇼', - keywords: ['curacao', 'antilles', 'curaçao', 'flag'], }, { name: 'christmas_island', code: '🇨🇽', - keywords: ['christmas_island', 'christmas', 'flag', 'island'], }, { name: 'cyprus', code: '🇨🇾', - keywords: ['cyprus', 'flag'], }, { name: 'czech_republic', code: '🇨🇿', - keywords: ['czech_republic', 'czech republic', 'flag'], }, { name: 'de', code: '🇩🇪', - keywords: ['flag', 'germany', 'de'], }, { name: 'diego_garcia', code: '🇩🇬', - keywords: ['diego_garcia', 'diego garcia', 'flag'], }, { name: 'djibouti', code: '🇩🇯', - keywords: ['djibouti', 'flag'], }, { name: 'denmark', code: '🇩🇰', - keywords: ['denmark', 'flag'], }, { name: 'dominica', code: '🇩🇲', - keywords: ['dominica', 'flag'], }, { name: 'dominican_republic', code: '🇩🇴', - keywords: ['dominican_republic', 'dominican republic', 'flag'], }, { name: 'algeria', code: '🇩🇿', - keywords: ['algeria', 'flag'], }, { name: 'ceuta_melilla', code: '🇪🇦', - keywords: ['ceuta_melilla', 'ceuta', 'flag', 'melilla'], }, { name: 'ecuador', code: '🇪🇨', - keywords: ['ecuador', 'flag'], }, { name: 'estonia', code: '🇪🇪', - keywords: ['estonia', 'flag'], }, { name: 'egypt', code: '🇪🇬', - keywords: ['egypt', 'flag'], }, { name: 'western_sahara', code: '🇪🇭', - keywords: ['western_sahara', 'flag', 'sahara', 'west', 'western sahara'], }, { name: 'eritrea', code: '🇪🇷', - keywords: ['eritrea', 'flag'], }, { name: 'es', code: '🇪🇸', - keywords: ['spain', 'es', 'flag'], }, { name: 'ethiopia', code: '🇪🇹', - keywords: ['ethiopia', 'flag'], }, { name: 'eu', code: '🇪🇺', - keywords: ['eu', 'european_union', 'european union', 'flag'], }, { name: 'finland', code: '🇫🇮', - keywords: ['finland', 'flag'], }, { name: 'fiji', code: '🇫🇯', - keywords: ['fiji', 'flag'], }, { name: 'falkland_islands', code: '🇫🇰', - keywords: ['falkland_islands', 'falkland', 'falklands', 'flag', 'island', 'islas', 'malvinas'], }, { name: 'micronesia', code: '🇫🇲', - keywords: ['micronesia', 'flag'], }, { name: 'faroe_islands', code: '🇫🇴', - keywords: ['faroe_islands', 'faroe', 'flag', 'island'], }, { name: 'fr', code: '🇫🇷', - keywords: ['france', 'french', 'fr', 'flag'], }, { name: 'gabon', code: '🇬🇦', - keywords: ['gabon', 'flag'], }, { name: 'gb', code: '🇬🇧', - keywords: [ - 'flag', - 'british', - 'gb', - 'uk', - 'britain', - 'cornwall', - 'england', - 'great britain', - 'ireland', - 'northern ireland', - 'scotland', - 'union jack', - 'united', - 'united kingdom', - 'wales', - ], }, { name: 'grenada', code: '🇬🇩', - keywords: ['grenada', 'flag'], }, { name: 'georgia', code: '🇬🇪', - keywords: ['georgia', 'flag'], }, { name: 'french_guiana', code: '🇬🇫', - keywords: ['french_guiana', 'flag', 'french', 'guiana'], }, { name: 'guernsey', code: '🇬🇬', - keywords: ['guernsey', 'flag'], }, { name: 'ghana', code: '🇬🇭', - keywords: ['ghana', 'flag'], }, { name: 'gibraltar', code: '🇬🇮', - keywords: ['gibraltar', 'flag'], }, { name: 'greenland', code: '🇬🇱', - keywords: ['greenland', 'flag'], }, { name: 'gambia', code: '🇬🇲', - keywords: ['gambia', 'flag'], }, { name: 'guinea', code: '🇬🇳', - keywords: ['guinea', 'flag'], }, { name: 'guadeloupe', code: '🇬🇵', - keywords: ['guadeloupe', 'flag'], }, { name: 'equatorial_guinea', code: '🇬🇶', - keywords: ['equatorial_guinea', 'equatorial guinea', 'flag', 'guinea'], }, { name: 'greece', code: '🇬🇷', - keywords: ['greece', 'flag'], }, { name: 'south_georgia_south_sandwich_islands', code: '🇬🇸', - keywords: ['south_georgia_south_sandwich_islands', 'flag', 'georgia', 'island', 'south', 'south georgia', 'south sandwich'], }, { name: 'guatemala', code: '🇬🇹', - keywords: ['guatemala', 'flag'], }, { name: 'guam', code: '🇬🇺', - keywords: ['guam', 'flag'], }, { name: 'guinea_bissau', code: '🇬🇼', - keywords: ['guinea_bissau', 'bissau', 'flag', 'guinea'], }, { name: 'guyana', code: '🇬🇾', - keywords: ['guyana', 'flag'], }, { name: 'hong_kong', code: '🇭🇰', - keywords: ['hong_kong', 'china', 'flag', 'hong kong'], }, { name: 'heard_mcdonald_islands', code: '🇭🇲', - keywords: ['heard_mcdonald_islands', 'flag', 'heard', 'island', 'mcdonald'], }, { name: 'honduras', code: '🇭🇳', - keywords: ['honduras', 'flag'], }, { name: 'croatia', code: '🇭🇷', - keywords: ['croatia', 'flag'], }, { name: 'haiti', code: '🇭🇹', - keywords: ['haiti', 'flag'], }, { name: 'hungary', code: '🇭🇺', - keywords: ['hungary', 'flag'], }, { name: 'canary_islands', code: '🇮🇨', - keywords: ['canary_islands', 'canary', 'flag', 'island'], }, { name: 'indonesia', code: '🇮🇩', - keywords: ['indonesia', 'flag'], }, { name: 'ireland', code: '🇮🇪', - keywords: ['ireland', 'flag'], }, { name: 'israel', code: '🇮🇱', - keywords: ['israel', 'flag'], }, { name: 'isle_of_man', code: '🇮🇲', - keywords: ['isle_of_man', 'flag', 'isle of man'], }, { name: 'india', code: '🇮🇳', - keywords: ['india', 'flag'], }, { name: 'british_indian_ocean_territory', code: '🇮🇴', - keywords: ['british_indian_ocean_territory', 'british', 'chagos', 'flag', 'indian ocean', 'island'], }, { name: 'iraq', code: '🇮🇶', - keywords: ['iraq', 'flag'], }, { name: 'iran', code: '🇮🇷', - keywords: ['iran', 'flag'], }, { name: 'iceland', code: '🇮🇸', - keywords: ['iceland', 'flag'], }, { name: 'it', code: '🇮🇹', - keywords: ['italy', 'it', 'flag'], }, { name: 'jersey', code: '🇯🇪', - keywords: ['jersey', 'flag'], }, { name: 'jamaica', code: '🇯🇲', - keywords: ['jamaica', 'flag'], }, { name: 'jordan', code: '🇯🇴', - keywords: ['jordan', 'flag'], }, { name: 'jp', code: '🇯🇵', - keywords: ['japan', 'jp', 'flag'], }, { name: 'kenya', code: '🇰🇪', - keywords: ['kenya', 'flag'], }, { name: 'kyrgyzstan', code: '🇰🇬', - keywords: ['kyrgyzstan', 'flag'], }, { name: 'cambodia', code: '🇰🇭', - keywords: ['cambodia', 'flag'], }, { name: 'kiribati', code: '🇰🇮', - keywords: ['kiribati', 'flag'], }, { name: 'comoros', code: '🇰🇲', - keywords: ['comoros', 'flag'], }, { name: 'st_kitts_nevis', code: '🇰🇳', - keywords: ['st_kitts_nevis', 'flag', 'kitts', 'nevis', 'saint'], }, { name: 'north_korea', code: '🇰🇵', - keywords: ['north_korea', 'flag', 'korea', 'north', 'north korea'], }, { name: 'kr', code: '🇰🇷', - keywords: ['korea', 'kr', 'flag', 'south', 'south korea'], }, { name: 'kuwait', code: '🇰🇼', - keywords: ['kuwait', 'flag'], }, { name: 'cayman_islands', code: '🇰🇾', - keywords: ['cayman_islands', 'cayman', 'flag', 'island'], }, { name: 'kazakhstan', code: '🇰🇿', - keywords: ['kazakhstan', 'flag'], }, { name: 'laos', code: '🇱🇦', - keywords: ['laos', 'flag'], }, { name: 'lebanon', code: '🇱🇧', - keywords: ['lebanon', 'flag'], }, { name: 'st_lucia', code: '🇱🇨', - keywords: ['st_lucia', 'flag', 'lucia', 'saint'], }, { name: 'liechtenstein', code: '🇱🇮', - keywords: ['liechtenstein', 'flag'], }, { name: 'sri_lanka', code: '🇱🇰', - keywords: ['sri_lanka', 'flag', 'sri lanka'], }, { name: 'liberia', code: '🇱🇷', - keywords: ['liberia', 'flag'], }, { name: 'lesotho', code: '🇱🇸', - keywords: ['lesotho', 'flag'], }, { name: 'lithuania', code: '🇱🇹', - keywords: ['lithuania', 'flag'], }, { name: 'luxembourg', code: '🇱🇺', - keywords: ['luxembourg', 'flag'], }, { name: 'latvia', code: '🇱🇻', - keywords: ['latvia', 'flag'], }, { name: 'libya', code: '🇱🇾', - keywords: ['libya', 'flag'], }, { name: 'morocco', code: '🇲🇦', - keywords: ['morocco', 'flag'], }, { name: 'monaco', code: '🇲🇨', - keywords: ['monaco', 'flag'], }, { name: 'moldova', code: '🇲🇩', - keywords: ['moldova', 'flag'], }, { name: 'montenegro', code: '🇲🇪', - keywords: ['montenegro', 'flag'], }, { name: 'st_martin', code: '🇲🇫', - keywords: ['st_martin', 'flag', 'french', 'martin', 'saint'], }, { name: 'madagascar', code: '🇲🇬', - keywords: ['madagascar', 'flag'], }, { name: 'marshall_islands', code: '🇲🇭', - keywords: ['marshall_islands', 'flag', 'island', 'marshall'], }, { name: 'macedonia', code: '🇲🇰', - keywords: ['macedonia', 'flag'], }, { name: 'mali', code: '🇲🇱', - keywords: ['mali', 'flag'], }, { name: 'myanmar', code: '🇲🇲', - keywords: ['burma', 'myanmar', 'flag'], }, { name: 'mongolia', code: '🇲🇳', - keywords: ['mongolia', 'flag'], }, { name: 'macau', code: '🇲🇴', - keywords: ['macau', 'china', 'flag', 'macao'], }, { name: 'northern_mariana_islands', code: '🇲🇵', - keywords: ['northern_mariana_islands', 'flag', 'island', 'mariana', 'north', 'northern mariana'], }, { name: 'martinique', code: '🇲🇶', - keywords: ['martinique', 'flag'], }, { name: 'mauritania', code: '🇲🇷', - keywords: ['mauritania', 'flag'], }, { name: 'montserrat', code: '🇲🇸', - keywords: ['montserrat', 'flag'], }, { name: 'malta', code: '🇲🇹', - keywords: ['malta', 'flag'], }, { name: 'mauritius', code: '🇲🇺', - keywords: ['mauritius', 'flag'], }, { name: 'maldives', code: '🇲🇻', - keywords: ['maldives', 'flag'], }, { name: 'malawi', code: '🇲🇼', - keywords: ['malawi', 'flag'], }, { name: 'mexico', code: '🇲🇽', - keywords: ['mexico', 'flag'], }, { name: 'malaysia', code: '🇲🇾', - keywords: ['malaysia', 'flag'], }, { name: 'mozambique', code: '🇲🇿', - keywords: ['mozambique', 'flag'], }, { name: 'namibia', code: '🇳🇦', - keywords: ['namibia', 'flag'], }, { name: 'new_caledonia', code: '🇳🇨', - keywords: ['new_caledonia', 'flag', 'new', 'new caledonia'], }, { name: 'niger', code: '🇳🇪', - keywords: ['niger', 'flag'], }, { name: 'norfolk_island', code: '🇳🇫', - keywords: ['norfolk_island', 'flag', 'island', 'norfolk'], }, { name: 'nigeria', code: '🇳🇬', - keywords: ['nigeria', 'flag'], }, { name: 'nicaragua', code: '🇳🇮', - keywords: ['nicaragua', 'flag'], }, { name: 'netherlands', code: '🇳🇱', - keywords: ['netherlands', 'flag'], }, { name: 'norway', code: '🇳🇴', - keywords: ['norway', 'flag'], }, { name: 'nepal', code: '🇳🇵', - keywords: ['nepal', 'flag'], }, { name: 'nauru', code: '🇳🇷', - keywords: ['nauru', 'flag'], }, { name: 'niue', code: '🇳🇺', - keywords: ['niue', 'flag'], }, { name: 'new_zealand', code: '🇳🇿', - keywords: ['new_zealand', 'flag', 'new', 'new zealand'], }, { name: 'oman', code: '🇴🇲', - keywords: ['oman', 'flag'], }, { name: 'panama', code: '🇵🇦', - keywords: ['panama', 'flag'], }, { name: 'peru', code: '🇵🇪', - keywords: ['peru', 'flag'], }, { name: 'french_polynesia', code: '🇵🇫', - keywords: ['french_polynesia', 'flag', 'french', 'polynesia'], }, { name: 'papua_new_guinea', code: '🇵🇬', - keywords: ['papua_new_guinea', 'flag', 'guinea', 'new', 'papua new guinea'], }, { name: 'philippines', code: '🇵🇭', - keywords: ['philippines', 'flag'], }, { name: 'pakistan', code: '🇵🇰', - keywords: ['pakistan', 'flag'], }, { name: 'poland', code: '🇵🇱', - keywords: ['poland', 'flag'], }, { name: 'st_pierre_miquelon', code: '🇵🇲', - keywords: ['st_pierre_miquelon', 'flag', 'miquelon', 'pierre', 'saint'], }, { name: 'pitcairn_islands', code: '🇵🇳', - keywords: ['pitcairn_islands', 'flag', 'island', 'pitcairn'], }, { name: 'puerto_rico', code: '🇵🇷', - keywords: ['puerto_rico', 'flag', 'puerto rico'], }, { name: 'palestinian_territories', code: '🇵🇸', - keywords: ['palestinian_territories', 'flag', 'palestine'], }, { name: 'portugal', code: '🇵🇹', - keywords: ['portugal', 'flag'], }, { name: 'palau', code: '🇵🇼', - keywords: ['palau', 'flag'], }, { name: 'paraguay', code: '🇵🇾', - keywords: ['paraguay', 'flag'], }, { name: 'qatar', code: '🇶🇦', - keywords: ['qatar', 'flag'], }, { name: 'reunion', code: '🇷🇪', - keywords: ['reunion', 'flag', 'réunion'], }, { name: 'romania', code: '🇷🇴', - keywords: ['romania', 'flag'], }, { name: 'serbia', code: '🇷🇸', - keywords: ['serbia', 'flag'], }, { name: 'ru', code: '🇷🇺', - keywords: ['russia', 'ru', 'flag'], }, { name: 'rwanda', code: '🇷🇼', - keywords: ['rwanda', 'flag'], }, { name: 'saudi_arabia', code: '🇸🇦', - keywords: ['saudi_arabia', 'flag', 'saudi arabia'], }, { name: 'solomon_islands', code: '🇸🇧', - keywords: ['solomon_islands', 'flag', 'island', 'solomon'], }, { name: 'seychelles', code: '🇸🇨', - keywords: ['seychelles', 'flag'], }, { name: 'sudan', code: '🇸🇩', - keywords: ['sudan', 'flag'], }, { name: 'sweden', code: '🇸🇪', - keywords: ['sweden', 'flag'], }, { name: 'singapore', code: '🇸🇬', - keywords: ['singapore', 'flag'], }, { name: 'st_helena', code: '🇸🇭', - keywords: ['st_helena', 'flag', 'helena', 'saint'], }, { name: 'slovenia', code: '🇸🇮', - keywords: ['slovenia', 'flag'], }, { name: 'svalbard_jan_mayen', code: '🇸🇯', - keywords: ['svalbard_jan_mayen', 'flag', 'jan mayen', 'svalbard'], }, { name: 'slovakia', code: '🇸🇰', - keywords: ['slovakia', 'flag'], }, { name: 'sierra_leone', code: '🇸🇱', - keywords: ['sierra_leone', 'flag', 'sierra leone'], }, { name: 'san_marino', code: '🇸🇲', - keywords: ['san_marino', 'flag', 'san marino'], }, { name: 'senegal', code: '🇸🇳', - keywords: ['senegal', 'flag'], }, { name: 'somalia', code: '🇸🇴', - keywords: ['somalia', 'flag'], }, { name: 'suriname', code: '🇸🇷', - keywords: ['suriname', 'flag'], }, { name: 'south_sudan', code: '🇸🇸', - keywords: ['south_sudan', 'flag', 'south', 'south sudan', 'sudan'], }, { name: 'sao_tome_principe', code: '🇸🇹', - keywords: ['sao_tome_principe', 'flag', 'principe', 'príncipe', 'sao tome', 'são tomé'], }, { name: 'el_salvador', code: '🇸🇻', - keywords: ['el_salvador', 'el salvador', 'flag'], }, { name: 'sint_maarten', code: '🇸🇽', - keywords: ['sint_maarten', 'flag', 'maarten', 'sint'], }, { name: 'syria', code: '🇸🇾', - keywords: ['syria', 'flag'], }, { name: 'swaziland', code: '🇸🇿', - keywords: ['swaziland', 'flag'], }, { name: 'tristan_da_cunha', code: '🇹🇦', - keywords: ['tristan_da_cunha', 'flag', 'tristan da cunha'], }, { name: 'turks_caicos_islands', code: '🇹🇨', - keywords: ['turks_caicos_islands', 'caicos', 'flag', 'island', 'turks'], }, { name: 'chad', code: '🇹🇩', - keywords: ['chad', 'flag'], }, { name: 'french_southern_territories', code: '🇹🇫', - keywords: ['french_southern_territories', 'antarctic', 'flag', 'french'], }, { name: 'togo', code: '🇹🇬', - keywords: ['togo', 'flag'], }, { name: 'thailand', code: '🇹🇭', - keywords: ['thailand', 'flag'], }, { name: 'tajikistan', code: '🇹🇯', - keywords: ['tajikistan', 'flag'], }, { name: 'tokelau', code: '🇹🇰', - keywords: ['tokelau', 'flag'], }, { name: 'timor_leste', code: '🇹🇱', - keywords: ['timor_leste', 'east', 'east timor', 'flag', 'timor-leste'], }, { name: 'turkmenistan', code: '🇹🇲', - keywords: ['turkmenistan', 'flag'], }, { name: 'tunisia', code: '🇹🇳', - keywords: ['tunisia', 'flag'], }, { name: 'tonga', code: '🇹🇴', - keywords: ['tonga', 'flag'], }, { name: 'tr', code: '🇹🇷', - keywords: ['turkey', 'tr', 'flag'], }, { name: 'trinidad_tobago', code: '🇹🇹', - keywords: ['trinidad_tobago', 'flag', 'tobago', 'trinidad'], }, { name: 'tuvalu', code: '🇹🇻', - keywords: ['tuvalu', 'flag'], }, { name: 'taiwan', code: '🇹🇼', - keywords: ['taiwan', 'china', 'flag'], }, { name: 'tanzania', code: '🇹🇿', - keywords: ['tanzania', 'flag'], }, { name: 'ukraine', code: '🇺🇦', - keywords: ['ukraine', 'flag'], }, { name: 'uganda', code: '🇺🇬', - keywords: ['uganda', 'flag'], }, { name: 'us_outlying_islands', code: '🇺🇲', - keywords: ['us_outlying_islands', 'america', 'flag', 'island', 'minor outlying', 'united', 'united states', 'us', 'usa'], }, { name: 'united_nations', code: '🇺🇳', - keywords: ['united_nations', 'flag'], }, { name: 'us', code: '🇺🇸', - keywords: ['flag', 'united', 'america', 'us', 'stars and stripes', 'united states'], }, { name: 'uruguay', code: '🇺🇾', - keywords: ['uruguay', 'flag'], }, { name: 'uzbekistan', code: '🇺🇿', - keywords: ['uzbekistan', 'flag'], }, { name: 'vatican_city', code: '🇻🇦', - keywords: ['vatican_city', 'flag', 'vatican'], }, { name: 'st_vincent_grenadines', code: '🇻🇨', - keywords: ['st_vincent_grenadines', 'flag', 'grenadines', 'saint', 'vincent'], }, { name: 'venezuela', code: '🇻🇪', - keywords: ['venezuela', 'flag'], }, { name: 'british_virgin_islands', code: '🇻🇬', - keywords: ['british_virgin_islands', 'british', 'flag', 'island', 'virgin'], }, { name: 'us_virgin_islands', code: '🇻🇮', - keywords: ['us_virgin_islands', 'america', 'american', 'flag', 'island', 'united', 'united states', 'us', 'usa', 'virgin'], }, { name: 'vietnam', code: '🇻🇳', - keywords: ['vietnam', 'flag', 'viet nam'], }, { name: 'vanuatu', code: '🇻🇺', - keywords: ['vanuatu', 'flag'], }, { name: 'wallis_futuna', code: '🇼🇫', - keywords: ['wallis_futuna', 'flag', 'futuna', 'wallis'], }, { name: 'samoa', code: '🇼🇸', - keywords: ['samoa', 'flag'], }, { name: 'kosovo', code: '🇽🇰', - keywords: ['kosovo', 'flag'], }, { name: 'yemen', code: '🇾🇪', - keywords: ['yemen', 'flag'], }, { name: 'mayotte', code: '🇾🇹', - keywords: ['mayotte', 'flag'], }, { name: 'south_africa', code: '🇿🇦', - keywords: ['south_africa', 'flag', 'south', 'south africa'], }, { name: 'zambia', code: '🇿🇲', - keywords: ['zambia', 'flag'], }, { name: 'zimbabwe', code: '🇿🇼', - keywords: ['zimbabwe', 'flag'], }, { name: 'england', code: '🏴󠁧󠁢󠁥󠁮󠁧󠁿', - keywords: ['england', 'flag'], }, { name: 'scotland', code: '🏴󠁧󠁢󠁳󠁣󠁴󠁿', - keywords: ['scotland', 'flag'], }, { name: 'wales', code: '🏴󠁧󠁢󠁷󠁬󠁳󠁿', - keywords: ['wales', 'flag'], }, ]; -export {skinTones}; +const categoryFrequentlyUsed = { + header: true, + code: 'frequentlyUsed', + icon: FrequentlyUsed, +}; + +export {skinTones, categoryFrequentlyUsed}; export default emojis; diff --git a/assets/emojis/en.js b/assets/emojis/en.js new file mode 100644 index 000000000000..f32a91afe03c --- /dev/null +++ b/assets/emojis/en.js @@ -0,0 +1,5440 @@ +const enEmojis = { + '😀': { + keywords: ['smile', 'happy', 'face', 'grin'], + }, + '😃': { + keywords: ['happy', 'joy', 'haha', 'face', 'mouth', 'open', 'smile'], + }, + '😄': { + keywords: ['happy', 'joy', 'laugh', 'pleased', 'eye', 'face', 'mouth', 'open'], + }, + '😁': { + keywords: ['eye', 'face', 'smile'], + }, + '😆': { + keywords: ['happy', 'haha', 'satisfied', 'face', 'laugh', 'mouth', 'open', 'smile'], + }, + '😅': { + keywords: ['hot', 'cold', 'face', 'open', 'smile', 'sweat'], + }, + '🤣': { + keywords: ['lol', 'laughing', 'face', 'floor', 'laugh', 'rolling'], + }, + '😂': { + keywords: ['tears', 'face', 'laugh', 'tear'], + }, + '🙂': { + keywords: ['face', 'smile'], + }, + '🙃': { + keywords: ['face', 'upside-down'], + }, + '😉': { + keywords: ['flirt', 'face'], + }, + '😊': { + keywords: ['proud', 'eye', 'face', 'smile'], + }, + '😇': { + keywords: ['angel', 'face', 'fairy tale', 'fantasy', 'halo', 'smile'], + }, + '🥰': { + keywords: ['love'], + }, + '😍': { + keywords: ['love', 'crush', 'eye', 'face', 'heart', 'smile'], + }, + '🤩': { + keywords: ['eyes'], + }, + '😘': { + keywords: ['flirt', 'face', 'heart', 'kiss'], + }, + '😗': { + keywords: ['face', 'kiss'], + }, + '☺️': { + keywords: ['blush', 'pleased'], + }, + '😚': { + keywords: ['closed', 'eye', 'face', 'kiss'], + }, + '😙': { + keywords: ['eye', 'face', 'kiss', 'smile'], + }, + '🥲': { + keywords: [], + }, + '😋': { + keywords: ['tongue', 'lick', 'delicious', 'face', 'savouring', 'smile', 'um'], + }, + '😛': { + keywords: ['face', 'tongue'], + }, + '😜': { + keywords: ['prank', 'silly', 'eye', 'face', 'joke', 'tongue', 'wink'], + }, + '🤪': { + keywords: ['goofy', 'wacky'], + }, + '😝': { + keywords: ['prank', 'eye', 'face', 'horrible', 'taste', 'tongue'], + }, + '🤑': { + keywords: ['rich', 'face', 'money', 'mouth'], + }, + '🤗': { + keywords: ['face', 'hug', 'hugging'], + }, + '🤭': { + keywords: ['quiet', 'whoops'], + }, + '🤫': { + keywords: ['silence', 'quiet'], + }, + '🤔': { + keywords: ['face'], + }, + '🤐': { + keywords: ['silence', 'hush', 'face', 'mouth', 'zipper'], + }, + '🤨': { + keywords: ['suspicious'], + }, + '😐': { + keywords: ['meh', 'deadpan', 'face', 'neutral'], + }, + '😑': { + keywords: ['face', 'inexpressive', 'unexpressive'], + }, + '😶': { + keywords: ['mute', 'silence', 'face', 'mouth', 'quiet', 'silent'], + }, + '😶‍🌫️': { + keywords: [], + }, + '😏': { + keywords: ['smug', 'face'], + }, + '😒': { + keywords: ['meh', 'face', 'unhappy'], + }, + '🙄': { + keywords: ['eyes', 'face', 'rolling'], + }, + '😬': { + keywords: ['face', 'grimace'], + }, + '😮‍💨': { + keywords: [], + }, + '🤥': { + keywords: ['liar', 'face', 'lie', 'pinocchio'], + }, + '😌': { + keywords: ['whew', 'face'], + }, + '😔': { + keywords: ['dejected', 'face'], + }, + '😪': { + keywords: ['tired', 'face', 'sleep'], + }, + '🤤': { + keywords: ['drooling', 'face'], + }, + '😴': { + keywords: ['zzz', 'face', 'sleep'], + }, + '😷': { + keywords: ['sick', 'ill', 'cold', 'doctor', 'face', 'medicine'], + }, + '🤒': { + keywords: ['sick', 'face', 'ill', 'thermometer'], + }, + '🤕': { + keywords: ['hurt', 'bandage', 'face', 'injury'], + }, + '🤢': { + keywords: ['sick', 'barf', 'disgusted', 'face', 'nauseated', 'vomit'], + }, + '🤮': { + keywords: ['barf', 'sick'], + }, + '🤧': { + keywords: ['achoo', 'sick', 'face', 'gesundheit', 'sneeze'], + }, + '🥵': { + keywords: ['heat', 'sweating'], + }, + '🥶': { + keywords: ['freezing', 'ice'], + }, + '🥴': { + keywords: ['groggy'], + }, + '😵': { + keywords: ['dizzy', 'face'], + }, + '😵‍💫': { + keywords: [], + }, + '🤯': { + keywords: ['mind', 'blown'], + }, + '🤠': { + keywords: ['cowboy', 'cowgirl', 'face', 'hat'], + }, + '🥳': { + keywords: ['celebration', 'birthday'], + }, + '🥸': { + keywords: [], + }, + '😎': { + keywords: ['cool', 'bright', 'eye', 'eyewear', 'face', 'glasses', 'smile', 'sun', 'weather'], + }, + '🤓': { + keywords: ['geek', 'glasses', 'face', 'nerd'], + }, + '🧐': { + keywords: [], + }, + '😕': { + keywords: ['face'], + }, + '😟': { + keywords: ['nervous', 'face'], + }, + '🙁': { + keywords: ['face', 'frown'], + }, + '☹️': { + keywords: [], + }, + '😮': { + keywords: ['surprise', 'impressed', 'wow', 'face', 'mouth', 'open', 'sympathy'], + }, + '😯': { + keywords: ['silence', 'speechless', 'face', 'stunned', 'surprised'], + }, + '😲': { + keywords: ['amazed', 'gasp', 'face', 'shocked', 'totally'], + }, + '😳': { + keywords: ['dazed', 'face'], + }, + '🥺': { + keywords: ['puppy', 'eyes'], + }, + '😦': { + keywords: ['face', 'frown', 'mouth', 'open'], + }, + '😧': { + keywords: ['stunned', 'face'], + }, + '😨': { + keywords: ['scared', 'shocked', 'oops', 'face', 'fear'], + }, + '😰': { + keywords: ['nervous', 'blue', 'cold', 'face', 'mouth', 'open', 'rushed', 'sweat'], + }, + '😥': { + keywords: ['phew', 'sweat', 'nervous', 'disappointed', 'face', 'relieved', 'whew'], + }, + '😢': { + keywords: ['sad', 'tear', 'face'], + }, + '😭': { + keywords: ['sad', 'cry', 'bawling', 'face', 'tear'], + }, + '😱': { + keywords: ['horror', 'shocked', 'face', 'fear', 'fearful', 'munch', 'scared'], + }, + '😖': { + keywords: ['face'], + }, + '😣': { + keywords: ['struggling', 'face'], + }, + '😞': { + keywords: ['sad', 'face'], + }, + '😓': { + keywords: ['cold', 'face'], + }, + '😩': { + keywords: ['tired', 'face'], + }, + '😫': { + keywords: ['upset', 'whine', 'face', 'tired'], + }, + '🥱': { + keywords: [], + }, + '😤': { + keywords: ['smug', 'face', 'won'], + }, + '😡': { + keywords: ['angry', 'pout', 'face', 'mad', 'pouting', 'red'], + }, + '😠': { + keywords: ['mad', 'annoyed', 'face'], + }, + '🤬': { + keywords: ['foul'], + }, + '😈': { + keywords: ['devil', 'evil', 'horns', 'face', 'fairy tale', 'fantasy', 'smile'], + }, + '👿': { + keywords: ['angry', 'devil', 'evil', 'horns', 'demon', 'face', 'fairy tale', 'fantasy'], + }, + '💀': { + keywords: ['dead', 'danger', 'poison', 'body', 'death', 'face', 'fairy tale', 'monster'], + }, + '☠️': { + keywords: ['danger', 'pirate', 'body', 'crossbones', 'death', 'face', 'monster', 'skull'], + }, + '💩': { + keywords: ['crap', 'poop', 'shit', 'comic', 'dung', 'face', 'monster', 'poo'], + }, + '🤡': { + keywords: ['clown', 'face'], + }, + '👹': { + keywords: ['monster', 'creature', 'face', 'fairy tale', 'fantasy', 'japanese', 'ogre'], + }, + '👺': { + keywords: ['creature', 'face', 'fairy tale', 'fantasy', 'goblin', 'japanese', 'monster'], + }, + '👻': { + keywords: ['halloween', 'creature', 'face', 'fairy tale', 'fantasy', 'monster'], + }, + '👽': { + keywords: ['ufo', 'creature', 'extraterrestrial', 'face', 'fairy tale', 'fantasy', 'monster', 'space'], + }, + '👾': { + keywords: ['game', 'retro', 'alien', 'creature', 'extraterrestrial', 'face', 'fairy tale', 'fantasy', 'monster', 'space', 'ufo'], + }, + '🤖': { + keywords: ['face', 'monster'], + }, + '😺': { + keywords: ['cat', 'face', 'mouth', 'open', 'smile'], + }, + '😸': { + keywords: ['cat', 'eye', 'face', 'grin', 'smile'], + }, + '😹': { + keywords: ['cat', 'face', 'joy', 'tear'], + }, + '😻': { + keywords: ['cat', 'eye', 'face', 'heart', 'love', 'smile'], + }, + '😼': { + keywords: ['cat', 'face', 'ironic', 'smile', 'wry'], + }, + '😽': { + keywords: ['cat', 'eye', 'face', 'kiss'], + }, + '🙀': { + keywords: ['horror', 'cat', 'face', 'oh', 'surprised', 'weary'], + }, + '😿': { + keywords: ['sad', 'tear', 'cat', 'cry', 'face'], + }, + '😾': { + keywords: ['cat', 'face', 'pouting'], + }, + '🙈': { + keywords: ['monkey', 'blind', 'ignore', 'evil', 'face', 'forbidden', 'gesture', 'no', 'not', 'prohibited', 'see'], + }, + '🙉': { + keywords: ['monkey', 'deaf', 'evil', 'face', 'forbidden', 'gesture', 'hear', 'no', 'not', 'prohibited'], + }, + '🙊': { + keywords: ['monkey', 'mute', 'hush', 'evil', 'face', 'forbidden', 'gesture', 'no', 'not', 'prohibited', 'speak'], + }, + '💋': { + keywords: ['lipstick', 'heart', 'lips', 'mark', 'romance'], + }, + '💌': { + keywords: ['email', 'envelope', 'heart', 'letter', 'love', 'mail', 'romance'], + }, + '💘': { + keywords: ['love', 'heart', 'arrow', 'romance'], + }, + '💝': { + keywords: ['chocolates', 'heart', 'ribbon', 'valentine'], + }, + '💖': { + keywords: ['excited', 'heart', 'sparkle'], + }, + '💗': { + keywords: ['excited', 'growing', 'heart', 'nervous'], + }, + '💓': { + keywords: ['beating', 'heart', 'pulsating'], + }, + '💞': { + keywords: ['heart', 'revolving'], + }, + '💕': { + keywords: ['heart', 'love'], + }, + '💟': { + keywords: ['heart'], + }, + '❣️': { + keywords: ['exclamation', 'heart', 'mark', 'punctuation'], + }, + '💔': { + keywords: ['break', 'broken', 'heart'], + }, + '❤️‍🔥': { + keywords: [], + }, + '❤️‍🩹': { + keywords: [], + }, + '❤️': { + keywords: ['love'], + }, + '🧡': { + keywords: [], + }, + '💛': { + keywords: ['heart', 'yellow'], + }, + '💚': { + keywords: ['green', 'heart'], + }, + '💙': { + keywords: ['blue', 'heart'], + }, + '💜': { + keywords: ['heart', 'purple'], + }, + '🤎': { + keywords: [], + }, + '🖤': { + keywords: ['black', 'evil', 'heart', 'wicked'], + }, + '🤍': { + keywords: [], + }, + '💯': { + keywords: ['score', 'perfect', 'full', 'hundred'], + }, + '💢': { + keywords: ['angry', 'comic', 'mad'], + }, + '💥': { + keywords: ['explode', 'collision', 'comic'], + }, + '💫': { + keywords: ['star', 'comic'], + }, + '💦': { + keywords: ['water', 'workout', 'comic', 'splashing', 'sweat'], + }, + '💨': { + keywords: ['wind', 'blow', 'fast', 'comic', 'running'], + }, + '🕳️': { + keywords: [], + }, + '💣': { + keywords: ['boom', 'comic'], + }, + '💬': { + keywords: ['comment', 'balloon', 'bubble', 'comic', 'dialog', 'speech'], + }, + '👁️‍🗨️': { + keywords: [], + }, + '🗨️': { + keywords: [], + }, + '🗯️': { + keywords: [], + }, + '💭': { + keywords: ['thinking', 'balloon', 'bubble', 'comic', 'thought'], + }, + '💤': { + keywords: ['sleeping', 'comic', 'sleep'], + }, + '👋': { + keywords: ['goodbye', 'body', 'hand', 'waving'], + }, + '🤚': { + keywords: ['backhand', 'raised'], + }, + '🖐️': { + keywords: [], + }, + '✋': { + keywords: ['highfive', 'stop', 'raised_hand', 'body'], + }, + '🖖': { + keywords: ['prosper', 'spock', 'body', 'finger', 'hand', 'vulcan'], + }, + '👌': { + keywords: ['body', 'hand', 'ok'], + }, + '🤌': { + keywords: [], + }, + '🤏': { + keywords: [], + }, + '✌️': { + keywords: ['victory', 'peace'], + }, + '🤞': { + keywords: ['luck', 'hopeful', 'cross', 'finger', 'hand'], + }, + '🤟': { + keywords: [], + }, + '🤘': { + keywords: ['body', 'finger', 'hand', 'horns', 'rock-on'], + }, + '🤙': { + keywords: ['call', 'hand', 'shaka'], + }, + '👈': { + keywords: ['backhand', 'body', 'finger', 'hand', 'index', 'point'], + }, + '👉': { + keywords: ['backhand', 'body', 'finger', 'hand', 'index', 'point'], + }, + '👆': { + keywords: ['backhand', 'body', 'finger', 'hand', 'index', 'point', 'up'], + }, + '🖕': { + keywords: ['fu', 'body', 'finger', 'hand', 'middle finger'], + }, + '👇': { + keywords: ['backhand', 'body', 'down', 'finger', 'hand', 'index', 'point'], + }, + '☝️': { + keywords: [], + }, + '👍': { + keywords: ['approve', 'ok', 'thumbsup', 'body', 'hand', 'thumb', 'thumbs up', 'up'], + }, + '👎': { + keywords: ['disapprove', 'bury', 'thumbsdown', 'body', 'down', 'hand', 'thumb', 'thumbs down'], + }, + '✊': { + keywords: ['power', 'fist', 'body', 'clenched', 'hand', 'punch'], + }, + '👊': { + keywords: ['attack', 'facepunch', 'punch', 'body', 'clenched', 'fist', 'hand'], + }, + '🤛': { + keywords: ['fist', 'leftwards'], + }, + '🤜': { + keywords: ['fist', 'rightwards'], + }, + '👏': { + keywords: ['praise', 'applause', 'body', 'hand'], + }, + '🙌': { + keywords: ['hooray', 'body', 'celebration', 'gesture', 'hand', 'raised'], + }, + '👐': { + keywords: ['body', 'hand', 'open'], + }, + '🤲': { + keywords: [], + }, + '🤝': { + keywords: ['deal', 'agreement', 'hand', 'meeting', 'shake'], + }, + '🙏': { + keywords: ['please', 'hope', 'wish', 'ask', 'body', 'bow', 'folded', 'gesture', 'hand', 'thanks'], + }, + '✍️': { + keywords: [], + }, + '💅': { + keywords: ['beauty', 'manicure', 'body', 'care', 'cosmetics', 'nail', 'polish'], + }, + '🤳': { + keywords: ['camera', 'phone'], + }, + '💪': { + keywords: ['flex', 'bicep', 'strong', 'workout', 'biceps', 'body', 'comic'], + }, + '🦾': { + keywords: [], + }, + '🦿': { + keywords: [], + }, + '🦵': { + keywords: [], + }, + '🦶': { + keywords: [], + }, + '👂': { + keywords: ['hear', 'sound', 'listen', 'body'], + }, + '🦻': { + keywords: [], + }, + '👃': { + keywords: ['smell', 'body'], + }, + '🧠': { + keywords: [], + }, + '🫀': { + keywords: [], + }, + '🫁': { + keywords: [], + }, + '🦷': { + keywords: [], + }, + '🦴': { + keywords: [], + }, + '👀': { + keywords: ['look', 'see', 'watch', 'body', 'eye', 'face'], + }, + '👁️': { + keywords: [], + }, + '👅': { + keywords: ['taste', 'body'], + }, + '👄': { + keywords: ['kiss', 'body', 'mouth'], + }, + '👶': { + keywords: ['child', 'newborn'], + }, + '🧒': { + keywords: [], + }, + '👦': { + keywords: ['child'], + }, + '👧': { + keywords: ['child', 'maiden', 'virgin', 'virgo', 'zodiac'], + }, + '🧑': { + keywords: [], + }, + '👱': { + keywords: ['blond'], + }, + '👨': { + keywords: ['mustache', 'father', 'dad'], + }, + '🧔': { + keywords: [], + }, + '🧔‍♂️': { + keywords: [], + }, + '🧔‍♀️': { + keywords: [], + }, + '👨‍🦰': { + keywords: [], + }, + '👨‍🦱': { + keywords: [], + }, + '👨‍🦳': { + keywords: [], + }, + '👨‍🦲': { + keywords: [], + }, + '👩': { + keywords: ['girls'], + }, + '👩‍🦰': { + keywords: [], + }, + '🧑‍🦰': { + keywords: [], + }, + '👩‍🦱': { + keywords: [], + }, + '🧑‍🦱': { + keywords: [], + }, + '👩‍🦳': { + keywords: [], + }, + '🧑‍🦳': { + keywords: [], + }, + '👩‍🦲': { + keywords: [], + }, + '🧑‍🦲': { + keywords: [], + }, + '👱‍♀️': { + keywords: ['blonde_woman'], + }, + '👱‍♂️': { + keywords: [], + }, + '🧓': { + keywords: [], + }, + '👴': { + keywords: ['man', 'old'], + }, + '👵': { + keywords: ['old', 'woman'], + }, + '🙍': { + keywords: ['frown', 'gesture'], + }, + '🙍‍♂️': { + keywords: [], + }, + '🙍‍♀️': { + keywords: [], + }, + '🙎': { + keywords: ['gesture', 'pouting'], + }, + '🙎‍♂️': { + keywords: [], + }, + '🙎‍♀️': { + keywords: [], + }, + '🙅': { + keywords: ['stop', 'halt', 'denied', 'forbidden', 'gesture', 'hand', 'no', 'not', 'prohibited'], + }, + '🙅‍♂️': { + keywords: ['stop', 'halt', 'denied', 'ng_man'], + }, + '🙅‍♀️': { + keywords: ['stop', 'halt', 'denied', 'ng_woman'], + }, + '🙆': { + keywords: ['gesture', 'hand', 'ok'], + }, + '🙆‍♂️': { + keywords: [], + }, + '🙆‍♀️': { + keywords: [], + }, + '💁': { + keywords: ['information_desk_person', 'hand', 'help', 'information', 'sassy'], + }, + '💁‍♂️': { + keywords: ['information', 'sassy_man'], + }, + '💁‍♀️': { + keywords: ['information', 'sassy_woman'], + }, + '🙋': { + keywords: ['gesture', 'hand', 'happy', 'raised'], + }, + '🙋‍♂️': { + keywords: [], + }, + '🙋‍♀️': { + keywords: [], + }, + '🧏': { + keywords: [], + }, + '🧏‍♂️': { + keywords: [], + }, + '🧏‍♀️': { + keywords: [], + }, + '🙇': { + keywords: ['respect', 'thanks', 'apology', 'gesture', 'sorry'], + }, + '🙇‍♂️': { + keywords: ['respect', 'thanks'], + }, + '🙇‍♀️': { + keywords: ['respect', 'thanks'], + }, + '🤦': { + keywords: ['disbelief', 'exasperation', 'face', 'palm'], + }, + '🤦‍♂️': { + keywords: [], + }, + '🤦‍♀️': { + keywords: [], + }, + '🤷': { + keywords: ['doubt', 'ignorance', 'indifference'], + }, + '🤷‍♂️': { + keywords: [], + }, + '🤷‍♀️': { + keywords: [], + }, + '🧑‍⚕️': { + keywords: [], + }, + '👨‍⚕️': { + keywords: ['doctor', 'nurse'], + }, + '👩‍⚕️': { + keywords: ['doctor', 'nurse'], + }, + '🧑‍🎓': { + keywords: [], + }, + '👨‍🎓': { + keywords: ['graduation'], + }, + '👩‍🎓': { + keywords: ['graduation'], + }, + '🧑‍🏫': { + keywords: [], + }, + '👨‍🏫': { + keywords: ['school', 'professor'], + }, + '👩‍🏫': { + keywords: ['school', 'professor'], + }, + '🧑‍⚖️': { + keywords: [], + }, + '👨‍⚖️': { + keywords: ['justice'], + }, + '👩‍⚖️': { + keywords: ['justice'], + }, + '🧑‍🌾': { + keywords: [], + }, + '👨‍🌾': { + keywords: [], + }, + '👩‍🌾': { + keywords: [], + }, + '🧑‍🍳': { + keywords: [], + }, + '👨‍🍳': { + keywords: ['chef'], + }, + '👩‍🍳': { + keywords: ['chef'], + }, + '🧑‍🔧': { + keywords: [], + }, + '👨‍🔧': { + keywords: [], + }, + '👩‍🔧': { + keywords: [], + }, + '🧑‍🏭': { + keywords: [], + }, + '👨‍🏭': { + keywords: [], + }, + '👩‍🏭': { + keywords: [], + }, + '🧑‍💼': { + keywords: [], + }, + '👨‍💼': { + keywords: ['business'], + }, + '👩‍💼': { + keywords: ['business'], + }, + '🧑‍🔬': { + keywords: [], + }, + '👨‍🔬': { + keywords: ['research'], + }, + '👩‍🔬': { + keywords: ['research'], + }, + '🧑‍💻': { + keywords: [], + }, + '👨‍💻': { + keywords: ['coder'], + }, + '👩‍💻': { + keywords: ['coder'], + }, + '🧑‍🎤': { + keywords: [], + }, + '👨‍🎤': { + keywords: ['rockstar'], + }, + '👩‍🎤': { + keywords: ['rockstar'], + }, + '🧑‍🎨': { + keywords: [], + }, + '👨‍🎨': { + keywords: ['painter'], + }, + '👩‍🎨': { + keywords: ['painter'], + }, + '🧑‍✈️': { + keywords: [], + }, + '👨‍✈️': { + keywords: [], + }, + '👩‍✈️': { + keywords: [], + }, + '🧑‍🚀': { + keywords: [], + }, + '👨‍🚀': { + keywords: ['space'], + }, + '👩‍🚀': { + keywords: ['space'], + }, + '🧑‍🚒': { + keywords: [], + }, + '👨‍🚒': { + keywords: [], + }, + '👩‍🚒': { + keywords: [], + }, + '👮': { + keywords: ['law', 'cop', 'officer', 'police'], + }, + '👮‍♂️': { + keywords: ['law', 'cop'], + }, + '👮‍♀️': { + keywords: ['law', 'cop'], + }, + '🕵️': { + keywords: ['sleuth'], + }, + '🕵️‍♂️': { + keywords: ['sleuth'], + }, + '🕵️‍♀️': { + keywords: ['sleuth'], + }, + '💂': { + keywords: ['guardsman'], + }, + '💂‍♂️': { + keywords: [], + }, + '💂‍♀️': { + keywords: [], + }, + '🥷': { + keywords: [], + }, + '👷': { + keywords: ['helmet', 'construction', 'hat', 'worker'], + }, + '👷‍♂️': { + keywords: ['helmet'], + }, + '👷‍♀️': { + keywords: ['helmet'], + }, + '🤴': { + keywords: ['crown', 'royal'], + }, + '👸': { + keywords: ['crown', 'royal', 'fairy tale', 'fantasy'], + }, + '👳': { + keywords: ['man', 'turban'], + }, + '👳‍♂️': { + keywords: [], + }, + '👳‍♀️': { + keywords: [], + }, + '👲': { + keywords: ['gua pi mao', 'hat', 'man'], + }, + '🧕': { + keywords: ['hijab'], + }, + '🤵': { + keywords: ['groom', 'marriage', 'wedding', 'man', 'tuxedo'], + }, + '🤵‍♂️': { + keywords: [], + }, + '🤵‍♀️': { + keywords: [], + }, + '👰': { + keywords: ['marriage', 'wedding', 'bride', 'veil'], + }, + '👰‍♂️': { + keywords: [], + }, + '👰‍♀️': { + keywords: ['bride_with_veil'], + }, + '🤰': { + keywords: ['pregnant', 'woman'], + }, + '🤱': { + keywords: ['nursing'], + }, + '👩‍🍼': { + keywords: [], + }, + '👨‍🍼': { + keywords: [], + }, + '🧑‍🍼': { + keywords: [], + }, + '👼': { + keywords: ['baby', 'face', 'fairy tale', 'fantasy'], + }, + '🎅': { + keywords: ['christmas', 'activity', 'celebration', 'fairy tale', 'fantasy', 'father'], + }, + '🤶': { + keywords: ['santa', 'christmas', 'mother', 'mrs. claus'], + }, + '🧑‍🎄': { + keywords: [], + }, + '🦸': { + keywords: [], + }, + '🦸‍♂️': { + keywords: [], + }, + '🦸‍♀️': { + keywords: [], + }, + '🦹': { + keywords: [], + }, + '🦹‍♂️': { + keywords: [], + }, + '🦹‍♀️': { + keywords: [], + }, + '🧙': { + keywords: ['wizard'], + }, + '🧙‍♂️': { + keywords: ['wizard'], + }, + '🧙‍♀️': { + keywords: ['wizard'], + }, + '🧚': { + keywords: [], + }, + '🧚‍♂️': { + keywords: [], + }, + '🧚‍♀️': { + keywords: [], + }, + '🧛': { + keywords: [], + }, + '🧛‍♂️': { + keywords: [], + }, + '🧛‍♀️': { + keywords: [], + }, + '🧜': { + keywords: [], + }, + '🧜‍♂️': { + keywords: [], + }, + '🧜‍♀️': { + keywords: [], + }, + '🧝': { + keywords: [], + }, + '🧝‍♂️': { + keywords: [], + }, + '🧝‍♀️': { + keywords: [], + }, + '🧞': { + keywords: [], + }, + '🧞‍♂️': { + keywords: [], + }, + '🧞‍♀️': { + keywords: [], + }, + '🧟': { + keywords: [], + }, + '🧟‍♂️': { + keywords: [], + }, + '🧟‍♀️': { + keywords: [], + }, + '💆': { + keywords: ['spa', 'salon'], + }, + '💆‍♂️': { + keywords: ['spa'], + }, + '💆‍♀️': { + keywords: ['spa'], + }, + '💇': { + keywords: ['beauty', 'barber', 'parlor'], + }, + '💇‍♂️': { + keywords: [], + }, + '💇‍♀️': { + keywords: [], + }, + '🚶': { + keywords: ['hike', 'pedestrian', 'walk'], + }, + '🚶‍♂️': { + keywords: [], + }, + '🚶‍♀️': { + keywords: [], + }, + '🧍': { + keywords: [], + }, + '🧍‍♂️': { + keywords: [], + }, + '🧍‍♀️': { + keywords: [], + }, + '🧎': { + keywords: [], + }, + '🧎‍♂️': { + keywords: [], + }, + '🧎‍♀️': { + keywords: [], + }, + '🧑‍🦯': { + keywords: [], + }, + '👨‍🦯': { + keywords: [], + }, + '👩‍🦯': { + keywords: [], + }, + '🧑‍🦼': { + keywords: [], + }, + '👨‍🦼': { + keywords: [], + }, + '👩‍🦼': { + keywords: [], + }, + '🧑‍🦽': { + keywords: [], + }, + '👨‍🦽': { + keywords: [], + }, + '👩‍🦽': { + keywords: [], + }, + '🏃': { + keywords: ['exercise', 'workout', 'marathon', 'running'], + }, + '🏃‍♂️': { + keywords: ['exercise', 'workout', 'marathon'], + }, + '🏃‍♀️': { + keywords: ['exercise', 'workout', 'marathon'], + }, + '💃': { + keywords: ['dress', 'dancer'], + }, + '🕺': { + keywords: ['dancer', 'dance', 'man'], + }, + '🕴️': { + keywords: [], + }, + '👯': { + keywords: ['bunny', 'dancer', 'ear', 'girl', 'woman'], + }, + '👯‍♂️': { + keywords: ['bunny'], + }, + '👯‍♀️': { + keywords: ['bunny'], + }, + '🧖': { + keywords: ['steamy'], + }, + '🧖‍♂️': { + keywords: ['steamy'], + }, + '🧖‍♀️': { + keywords: ['steamy'], + }, + '🧗': { + keywords: ['bouldering'], + }, + '🧗‍♂️': { + keywords: ['bouldering'], + }, + '🧗‍♀️': { + keywords: ['bouldering'], + }, + '🤺': { + keywords: ['fencer', 'fencing', 'sword'], + }, + '🏇': { + keywords: ['horse', 'jockey', 'racehorse', 'racing'], + }, + '⛷️': { + keywords: [], + }, + '🏂': { + keywords: ['ski', 'snow', 'snowboard'], + }, + '🏌️': { + keywords: [], + }, + '🏌️‍♂️': { + keywords: [], + }, + '🏌️‍♀️': { + keywords: [], + }, + '🏄': { + keywords: ['surfing'], + }, + '🏄‍♂️': { + keywords: [], + }, + '🏄‍♀️': { + keywords: [], + }, + '🚣': { + keywords: ['boat', 'vehicle'], + }, + '🚣‍♂️': { + keywords: [], + }, + '🚣‍♀️': { + keywords: [], + }, + '🏊': { + keywords: ['swim'], + }, + '🏊‍♂️': { + keywords: [], + }, + '🏊‍♀️': { + keywords: [], + }, + '⛹️': { + keywords: ['basketball'], + }, + '⛹️‍♂️': { + keywords: ['basketball_man'], + }, + '⛹️‍♀️': { + keywords: ['basketball_woman'], + }, + '🏋️': { + keywords: ['gym', 'workout'], + }, + '🏋️‍♂️': { + keywords: ['gym', 'workout'], + }, + '🏋️‍♀️': { + keywords: ['gym', 'workout'], + }, + '🚴': { + keywords: ['bicycle', 'bike', 'cyclist'], + }, + '🚴‍♂️': { + keywords: [], + }, + '🚴‍♀️': { + keywords: [], + }, + '🚵': { + keywords: ['bicycle', 'bicyclist', 'bike', 'cyclist', 'mountain'], + }, + '🚵‍♂️': { + keywords: [], + }, + '🚵‍♀️': { + keywords: [], + }, + '🤸': { + keywords: ['cartwheel', 'gymnastics'], + }, + '🤸‍♂️': { + keywords: [], + }, + '🤸‍♀️': { + keywords: [], + }, + '🤼': { + keywords: ['wrestle', 'wrestler'], + }, + '🤼‍♂️': { + keywords: [], + }, + '🤼‍♀️': { + keywords: [], + }, + '🤽': { + keywords: ['polo', 'water'], + }, + '🤽‍♂️': { + keywords: [], + }, + '🤽‍♀️': { + keywords: [], + }, + '🤾': { + keywords: ['ball', 'handball'], + }, + '🤾‍♂️': { + keywords: [], + }, + '🤾‍♀️': { + keywords: [], + }, + '🤹': { + keywords: ['balance', 'juggle', 'multitask', 'skill'], + }, + '🤹‍♂️': { + keywords: [], + }, + '🤹‍♀️': { + keywords: [], + }, + '🧘': { + keywords: ['meditation'], + }, + '🧘‍♂️': { + keywords: ['meditation'], + }, + '🧘‍♀️': { + keywords: ['meditation'], + }, + '🛀': { + keywords: ['shower', 'bathtub'], + }, + '🛌': { + keywords: ['hotel', 'sleep'], + }, + '🧑‍🤝‍🧑': { + keywords: ['couple', 'date'], + }, + '👭': { + keywords: ['couple', 'date', 'hand', 'hold', 'woman'], + }, + '👫': { + keywords: ['date', 'hand', 'hold', 'man', 'woman'], + }, + '👬': { + keywords: ['couple', 'date', 'gemini', 'hand', 'hold', 'man', 'twins', 'zodiac'], + }, + '💏': { + keywords: ['couple', 'kiss', 'romance'], + }, + '👩‍❤️‍💋‍👨': { + keywords: [], + }, + '👨‍❤️‍💋‍👨': { + keywords: [], + }, + '👩‍❤️‍💋‍👩': { + keywords: [], + }, + '💑': { + keywords: ['couple', 'heart', 'love', 'romance'], + }, + '👩‍❤️‍👨': { + keywords: [], + }, + '👨‍❤️‍👨': { + keywords: [], + }, + '👩‍❤️‍👩': { + keywords: [], + }, + '👪': { + keywords: ['home', 'parents', 'child', 'father', 'mother'], + }, + '👨‍👩‍👦': { + keywords: ['boy', 'family', 'man', 'woman'], + }, + '👨‍👩‍👧': { + keywords: ['family', 'girl', 'man', 'woman'], + }, + '👨‍👩‍👧‍👦': { + keywords: ['boy', 'family', 'girl', 'man', 'woman'], + }, + '👨‍👩‍👦‍👦': { + keywords: ['boy', 'family', 'man', 'woman'], + }, + '👨‍👩‍👧‍👧': { + keywords: ['family', 'girl', 'man', 'woman'], + }, + '👨‍👨‍👦': { + keywords: ['boy', 'family', 'man'], + }, + '👨‍👨‍👧': { + keywords: ['family', 'girl', 'man'], + }, + '👨‍👨‍👧‍👦': { + keywords: ['boy', 'family', 'girl', 'man'], + }, + '👨‍👨‍👦‍👦': { + keywords: ['boy', 'family', 'man'], + }, + '👨‍👨‍👧‍👧': { + keywords: ['family', 'girl', 'man'], + }, + '👩‍👩‍👦': { + keywords: ['boy', 'family', 'woman'], + }, + '👩‍👩‍👧': { + keywords: ['family', 'girl', 'woman'], + }, + '👩‍👩‍👧‍👦': { + keywords: ['boy', 'family', 'girl', 'woman'], + }, + '👩‍👩‍👦‍👦': { + keywords: ['boy', 'family', 'woman'], + }, + '👩‍👩‍👧‍👧': { + keywords: ['family', 'girl', 'woman'], + }, + '👨‍👦': { + keywords: [], + }, + '👨‍👦‍👦': { + keywords: [], + }, + '👨‍👧': { + keywords: [], + }, + '👨‍👧‍👦': { + keywords: [], + }, + '👨‍👧‍👧': { + keywords: [], + }, + '👩‍👦': { + keywords: [], + }, + '👩‍👦‍👦': { + keywords: [], + }, + '👩‍👧': { + keywords: [], + }, + '👩‍👧‍👦': { + keywords: [], + }, + '👩‍👧‍👧': { + keywords: [], + }, + '🗣️': { + keywords: [], + }, + '👤': { + keywords: ['user', 'bust', 'silhouette'], + }, + '👥': { + keywords: ['users', 'group', 'team', 'bust', 'silhouette'], + }, + '🫂': { + keywords: [], + }, + '👣': { + keywords: ['feet', 'tracks', 'body', 'clothing', 'footprint', 'print'], + }, + '🐵': { + keywords: ['face', 'monkey'], + }, + '🐒': { + keywords: [], + }, + '🦍': { + keywords: [], + }, + '🦧': { + keywords: [], + }, + '🐶': { + keywords: ['pet', 'face'], + }, + '🐕': { + keywords: ['dog', 'pet'], + }, + '🦮': { + keywords: [], + }, + '🐕‍🦺': { + keywords: [], + }, + '🐩': { + keywords: ['dog'], + }, + '🐺': { + keywords: ['face'], + }, + '🦊': { + keywords: ['face', 'fox'], + }, + '🦝': { + keywords: [], + }, + '🐱': { + keywords: ['pet', 'face'], + }, + '🐈': { + keywords: ['cat', 'pet'], + }, + '🐈‍⬛': { + keywords: [], + }, + '🦁': { + keywords: ['face', 'leo', 'zodiac'], + }, + '🐯': { + keywords: ['face'], + }, + '🐅': { + keywords: ['tiger'], + }, + '🐆': { + keywords: [], + }, + '🐴': { + keywords: ['face'], + }, + '🐎': { + keywords: ['speed', 'horse', 'racing'], + }, + '🦄': { + keywords: ['face'], + }, + '🦓': { + keywords: [], + }, + '🦌': { + keywords: [], + }, + '🦬': { + keywords: [], + }, + '🐮': { + keywords: ['face'], + }, + '🐂': { + keywords: ['bull', 'taurus', 'zodiac'], + }, + '🐃': { + keywords: ['buffalo', 'water'], + }, + '🐄': { + keywords: ['cow'], + }, + '🐷': { + keywords: ['face'], + }, + '🐖': { + keywords: ['pig', 'sow'], + }, + '🐗': { + keywords: ['pig'], + }, + '🐽': { + keywords: ['face', 'nose', 'pig'], + }, + '🐏': { + keywords: ['aries', 'sheep', 'zodiac'], + }, + '🐑': { + keywords: ['ewe'], + }, + '🐐': { + keywords: ['capricorn', 'zodiac'], + }, + '🐪': { + keywords: ['desert', 'camel', 'dromedary', 'hump'], + }, + '🐫': { + keywords: ['bactrian', 'hump'], + }, + '🦙': { + keywords: [], + }, + '🦒': { + keywords: [], + }, + '🐘': { + keywords: [], + }, + '🦣': { + keywords: [], + }, + '🦏': { + keywords: [], + }, + '🦛': { + keywords: [], + }, + '🐭': { + keywords: ['face'], + }, + '🐁': { + keywords: ['mouse'], + }, + '🐀': { + keywords: [], + }, + '🐹': { + keywords: ['pet', 'face'], + }, + '🐰': { + keywords: ['bunny', 'face', 'pet'], + }, + '🐇': { + keywords: ['bunny', 'pet', 'rabbit'], + }, + '🐿️': { + keywords: [], + }, + '🦫': { + keywords: [], + }, + '🦔': { + keywords: [], + }, + '🦇': { + keywords: ['vampire'], + }, + '🐻': { + keywords: ['face'], + }, + '🐻‍❄️': { + keywords: [], + }, + '🐨': { + keywords: ['bear'], + }, + '🐼': { + keywords: ['face', 'panda'], + }, + '🦥': { + keywords: [], + }, + '🦦': { + keywords: [], + }, + '🦨': { + keywords: [], + }, + '🦘': { + keywords: [], + }, + '🦡': { + keywords: [], + }, + '🐾': { + keywords: ['paw_prints', 'paw', 'print'], + }, + '🦃': { + keywords: ['thanksgiving'], + }, + '🐔': { + keywords: [], + }, + '🐓': { + keywords: [], + }, + '🐣': { + keywords: ['baby', 'chick', 'hatching'], + }, + '🐤': { + keywords: ['baby', 'chick'], + }, + '🐥': { + keywords: ['baby', 'chick'], + }, + '🐦': { + keywords: [], + }, + '🐧': { + keywords: [], + }, + '🕊️': { + keywords: ['peace'], + }, + '🦅': { + keywords: ['bird'], + }, + '🦆': { + keywords: ['bird'], + }, + '🦢': { + keywords: [], + }, + '🦉': { + keywords: ['bird', 'wise'], + }, + '🦤': { + keywords: [], + }, + '🪶': { + keywords: [], + }, + '🦩': { + keywords: [], + }, + '🦚': { + keywords: [], + }, + '🦜': { + keywords: [], + }, + '🐸': { + keywords: ['face'], + }, + '🐊': { + keywords: [], + }, + '🐢': { + keywords: ['slow'], + }, + '🦎': { + keywords: ['reptile'], + }, + '🐍': { + keywords: ['bearer', 'ophiuchus', 'serpent', 'zodiac'], + }, + '🐲': { + keywords: ['dragon', 'face', 'fairy tale'], + }, + '🐉': { + keywords: ['fairy tale'], + }, + '🦕': { + keywords: ['dinosaur'], + }, + '🦖': { + keywords: ['dinosaur'], + }, + '🐳': { + keywords: ['sea', 'face', 'spouting'], + }, + '🐋': { + keywords: ['whale'], + }, + '🐬': { + keywords: ['flipper'], + }, + '🦭': { + keywords: [], + }, + '🐟': { + keywords: ['pisces', 'zodiac'], + }, + '🐠': { + keywords: ['fish', 'tropical'], + }, + '🐡': { + keywords: ['fish'], + }, + '🦈': { + keywords: ['fish'], + }, + '🐙': { + keywords: [], + }, + '🐚': { + keywords: ['sea', 'beach', 'spiral'], + }, + '🐌': { + keywords: ['slow'], + }, + '🦋': { + keywords: ['insect', 'pretty'], + }, + '🐛': { + keywords: ['insect'], + }, + '🐜': { + keywords: ['insect'], + }, + '🐝': { + keywords: ['honeybee', 'insect'], + }, + '🪲': { + keywords: [], + }, + '🐞': { + keywords: ['bug', 'beetle', 'insect', 'lady beetle', 'ladybird', 'ladybug'], + }, + '🦗': { + keywords: [], + }, + '🪳': { + keywords: [], + }, + '🕷️': { + keywords: [], + }, + '🕸️': { + keywords: [], + }, + '🦂': { + keywords: ['scorpio', 'scorpius', 'zodiac'], + }, + '🦟': { + keywords: [], + }, + '🪰': { + keywords: [], + }, + '🪱': { + keywords: [], + }, + '🦠': { + keywords: ['germ'], + }, + '💐': { + keywords: ['flowers', 'flower', 'plant', 'romance'], + }, + '🌸': { + keywords: ['flower', 'spring', 'blossom', 'cherry', 'plant'], + }, + '💮': { + keywords: ['flower'], + }, + '🏵️': { + keywords: [], + }, + '🌹': { + keywords: ['flower', 'plant'], + }, + '🥀': { + keywords: ['flower', 'wilted'], + }, + '🌺': { + keywords: ['flower', 'plant'], + }, + '🌻': { + keywords: ['flower', 'plant', 'sun'], + }, + '🌼': { + keywords: ['flower', 'plant'], + }, + '🌷': { + keywords: ['flower', 'plant'], + }, + '🌱': { + keywords: ['plant', 'young'], + }, + '🪴': { + keywords: [], + }, + '🌲': { + keywords: ['wood', 'evergreen', 'plant', 'tree'], + }, + '🌳': { + keywords: ['wood', 'deciduous', 'plant', 'shedding', 'tree'], + }, + '🌴': { + keywords: ['palm', 'plant', 'tree'], + }, + '🌵': { + keywords: ['plant'], + }, + '🌾': { + keywords: ['ear', 'plant', 'rice'], + }, + '🌿': { + keywords: ['leaf', 'plant'], + }, + '☘️': { + keywords: ['plant'], + }, + '🍀': { + keywords: ['luck', '4', 'clover', 'four', 'leaf', 'plant'], + }, + '🍁': { + keywords: ['canada', 'falling', 'leaf', 'maple', 'plant'], + }, + '🍂': { + keywords: ['autumn', 'falling', 'leaf', 'plant'], + }, + '🍃': { + keywords: ['leaf', 'blow', 'flutter', 'plant', 'wind'], + }, + '🍇': { + keywords: ['fruit', 'grape', 'plant'], + }, + '🍈': { + keywords: ['fruit', 'plant'], + }, + '🍉': { + keywords: ['fruit', 'plant'], + }, + '🍊': { + keywords: ['orange', 'mandarin', 'fruit', 'plant'], + }, + '🍋': { + keywords: ['citrus', 'fruit', 'plant'], + }, + '🍌': { + keywords: ['fruit', 'plant'], + }, + '🍍': { + keywords: ['fruit', 'plant'], + }, + '🥭': { + keywords: [], + }, + '🍎': { + keywords: ['fruit', 'plant', 'red'], + }, + '🍏': { + keywords: ['fruit', 'apple', 'green', 'plant'], + }, + '🍐': { + keywords: ['fruit', 'plant'], + }, + '🍑': { + keywords: ['fruit', 'plant'], + }, + '🍒': { + keywords: ['fruit', 'cherry', 'plant'], + }, + '🍓': { + keywords: ['fruit', 'berry', 'plant'], + }, + '🫐': { + keywords: [], + }, + '🥝': { + keywords: ['fruit', 'kiwi'], + }, + '🍅': { + keywords: ['plant', 'vegetable'], + }, + '🫒': { + keywords: [], + }, + '🥥': { + keywords: [], + }, + '🥑': { + keywords: ['fruit'], + }, + '🍆': { + keywords: ['aubergine', 'plant', 'vegetable'], + }, + '🥔': { + keywords: ['vegetable'], + }, + '🥕': { + keywords: ['vegetable'], + }, + '🌽': { + keywords: ['ear', 'maize', 'maze', 'plant'], + }, + '🌶️': { + keywords: ['spicy'], + }, + '🫑': { + keywords: [], + }, + '🥒': { + keywords: ['pickle', 'vegetable'], + }, + '🥬': { + keywords: [], + }, + '🥦': { + keywords: [], + }, + '🧄': { + keywords: [], + }, + '🧅': { + keywords: [], + }, + '🍄': { + keywords: ['plant'], + }, + '🥜': { + keywords: ['nut', 'peanut', 'vegetable'], + }, + '🌰': { + keywords: ['plant'], + }, + '🍞': { + keywords: ['toast', 'loaf'], + }, + '🥐': { + keywords: ['bread', 'crescent roll', 'french'], + }, + '🥖': { + keywords: ['baguette', 'bread', 'french'], + }, + '🫓': { + keywords: [], + }, + '🥨': { + keywords: [], + }, + '🥯': { + keywords: [], + }, + '🥞': { + keywords: ['crêpe', 'hotcake', 'pancake'], + }, + '🧇': { + keywords: [], + }, + '🧀': { + keywords: [], + }, + '🍖': { + keywords: ['bone', 'meat'], + }, + '🍗': { + keywords: ['meat', 'chicken', 'bone', 'leg', 'poultry'], + }, + '🥩': { + keywords: [], + }, + '🥓': { + keywords: ['meat'], + }, + '🍔': { + keywords: ['burger'], + }, + '🍟': { + keywords: ['french'], + }, + '🍕': { + keywords: ['cheese', 'slice'], + }, + '🌭': { + keywords: ['frankfurter', 'hot dog', 'sausage'], + }, + '🥪': { + keywords: [], + }, + '🌮': { + keywords: ['mexican'], + }, + '🌯': { + keywords: ['mexican'], + }, + '🫔': { + keywords: [], + }, + '🥙': { + keywords: ['falafel', 'flatbread', 'gyro', 'kebab', 'stuffed'], + }, + '🧆': { + keywords: [], + }, + '🥚': { + keywords: [], + }, + '🍳': { + keywords: ['breakfast', 'cooking', 'egg', 'frying', 'pan'], + }, + '🥘': { + keywords: ['paella', 'curry', 'casserole', 'pan', 'shallow'], + }, + '🍲': { + keywords: ['pot'], + }, + '🫕': { + keywords: [], + }, + '🥣': { + keywords: [], + }, + '🥗': { + keywords: ['green', 'salad'], + }, + '🍿': { + keywords: [], + }, + '🧈': { + keywords: [], + }, + '🧂': { + keywords: [], + }, + '🥫': { + keywords: [], + }, + '🍱': { + keywords: ['box'], + }, + '🍘': { + keywords: ['cracker', 'rice'], + }, + '🍙': { + keywords: ['ball', 'japanese', 'rice'], + }, + '🍚': { + keywords: ['cooked'], + }, + '🍛': { + keywords: ['rice'], + }, + '🍜': { + keywords: ['noodle', 'bowl', 'steaming'], + }, + '🍝': { + keywords: ['pasta'], + }, + '🍠': { + keywords: ['potato', 'roasted', 'sweet'], + }, + '🍢': { + keywords: ['kebab', 'seafood', 'skewer', 'stick'], + }, + '🍣': { + keywords: [], + }, + '🍤': { + keywords: ['tempura', 'fried', 'prawn', 'shrimp'], + }, + '🍥': { + keywords: ['cake', 'fish', 'pastry', 'swirl'], + }, + '🥮': { + keywords: [], + }, + '🍡': { + keywords: ['dessert', 'japanese', 'skewer', 'stick', 'sweet'], + }, + '🥟': { + keywords: [], + }, + '🥠': { + keywords: [], + }, + '🥡': { + keywords: [], + }, + '🦀': { + keywords: ['cancer', 'zodiac'], + }, + '🦞': { + keywords: [], + }, + '🦐': { + keywords: ['shellfish', 'small'], + }, + '🦑': { + keywords: ['molusc'], + }, + '🦪': { + keywords: [], + }, + '🍦': { + keywords: ['cream', 'dessert', 'ice', 'soft', 'sweet'], + }, + '🍧': { + keywords: ['dessert', 'ice', 'shaved', 'sweet'], + }, + '🍨': { + keywords: ['cream', 'dessert', 'ice', 'sweet'], + }, + '🍩': { + keywords: ['dessert', 'donut', 'sweet'], + }, + '🍪': { + keywords: ['dessert', 'sweet'], + }, + '🎂': { + keywords: ['party', 'cake', 'celebration', 'dessert', 'pastry', 'sweet'], + }, + '🍰': { + keywords: ['dessert', 'pastry', 'shortcake', 'slice', 'sweet'], + }, + '🧁': { + keywords: [], + }, + '🥧': { + keywords: [], + }, + '🍫': { + keywords: ['bar', 'chocolate', 'dessert', 'sweet'], + }, + '🍬': { + keywords: ['sweet', 'dessert'], + }, + '🍭': { + keywords: ['candy', 'dessert', 'sweet'], + }, + '🍮': { + keywords: ['dessert', 'pudding', 'sweet'], + }, + '🍯': { + keywords: ['honey', 'honeypot', 'pot', 'sweet'], + }, + '🍼': { + keywords: ['milk', 'baby', 'bottle', 'drink'], + }, + '🥛': { + keywords: ['drink', 'glass', 'milk'], + }, + '☕': { + keywords: ['cafe', 'espresso', 'beverage', 'drink', 'hot', 'steaming', 'tea'], + }, + '🫖': { + keywords: [], + }, + '🍵': { + keywords: ['green', 'breakfast', 'beverage', 'cup', 'drink', 'teacup'], + }, + '🍶': { + keywords: ['bar', 'beverage', 'bottle', 'cup', 'drink'], + }, + '🍾': { + keywords: ['bottle', 'bubbly', 'celebration', 'bar', 'cork', 'drink', 'popping'], + }, + '🍷': { + keywords: ['bar', 'beverage', 'drink', 'glass', 'wine'], + }, + '🍸': { + keywords: ['drink', 'bar', 'glass'], + }, + '🍹': { + keywords: ['summer', 'vacation', 'bar', 'drink', 'tropical'], + }, + '🍺': { + keywords: ['drink', 'bar', 'mug'], + }, + '🍻': { + keywords: ['drinks', 'bar', 'beer', 'clink', 'drink', 'mug'], + }, + '🥂': { + keywords: ['cheers', 'toast', 'celebrate', 'clink', 'drink', 'glass'], + }, + '🥃': { + keywords: ['whisky', 'glass', 'liquor', 'shot', 'tumbler'], + }, + '🥤': { + keywords: [], + }, + '🧋': { + keywords: [], + }, + '🧃': { + keywords: [], + }, + '🧉': { + keywords: [], + }, + '🧊': { + keywords: [], + }, + '🥢': { + keywords: [], + }, + '🍽️': { + keywords: ['dining', 'dinner'], + }, + '🍴': { + keywords: ['cutlery', 'cooking', 'fork', 'knife'], + }, + '🥄': { + keywords: ['tableware'], + }, + '🔪': { + keywords: ['cut', 'chop', 'knife', 'cooking', 'tool', 'weapon'], + }, + '🏺': { + keywords: ['aquarius', 'cooking', 'drink', 'jug', 'tool', 'weapon', 'zodiac'], + }, + '🌍': { + keywords: ['globe', 'world', 'international', 'africa', 'earth', 'europe'], + }, + '🌎': { + keywords: ['globe', 'world', 'international', 'americas', 'earth'], + }, + '🌏': { + keywords: ['globe', 'world', 'international', 'asia', 'australia', 'earth'], + }, + '🌐': { + keywords: ['world', 'global', 'international', 'earth', 'globe', 'meridians'], + }, + '🗺️': { + keywords: ['travel'], + }, + '🗾': { + keywords: ['map'], + }, + '🧭': { + keywords: [], + }, + '🏔️': { + keywords: [], + }, + '⛰️': { + keywords: [], + }, + '🌋': { + keywords: ['eruption', 'mountain', 'weather'], + }, + '🗻': { + keywords: ['fuji', 'mountain'], + }, + '🏕️': { + keywords: [], + }, + '🏖️': { + keywords: [], + }, + '🏜️': { + keywords: [], + }, + '🏝️': { + keywords: [], + }, + '🏞️': { + keywords: [], + }, + '🏟️': { + keywords: [], + }, + '🏛️': { + keywords: [], + }, + '🏗️': { + keywords: [], + }, + '🧱': { + keywords: [], + }, + '🪨': { + keywords: [], + }, + '🪵': { + keywords: [], + }, + '🛖': { + keywords: [], + }, + '🏘️': { + keywords: [], + }, + '🏚️': { + keywords: [], + }, + '🏠': { + keywords: ['building', 'home'], + }, + '🏡': { + keywords: ['building', 'garden', 'home', 'house'], + }, + '🏢': { + keywords: ['building'], + }, + '🏣': { + keywords: ['building', 'japanese', 'post'], + }, + '🏤': { + keywords: ['building', 'european', 'post'], + }, + '🏥': { + keywords: ['building', 'doctor', 'medicine'], + }, + '🏦': { + keywords: ['building'], + }, + '🏨': { + keywords: ['building'], + }, + '🏩': { + keywords: ['building', 'hotel', 'love'], + }, + '🏪': { + keywords: ['building', 'convenience', 'store'], + }, + '🏫': { + keywords: ['building'], + }, + '🏬': { + keywords: ['building', 'department', 'store'], + }, + '🏭': { + keywords: ['building'], + }, + '🏯': { + keywords: ['building', 'castle', 'japanese'], + }, + '🏰': { + keywords: ['building', 'castle', 'european'], + }, + '💒': { + keywords: ['marriage', 'activity', 'chapel', 'romance'], + }, + '🗼': { + keywords: ['tokyo', 'tower'], + }, + '🗽': { + keywords: ['liberty', 'statue'], + }, + '⛪': { + keywords: ['building', 'christian', 'cross', 'religion'], + }, + '🕌': { + keywords: ['islam', 'muslim', 'religion'], + }, + '🛕': { + keywords: [], + }, + '🕍': { + keywords: ['jew', 'jewish', 'religion', 'temple'], + }, + '⛩️': { + keywords: [], + }, + '🕋': { + keywords: ['islam', 'muslim', 'religion'], + }, + '⛲': { + keywords: [], + }, + '⛺': { + keywords: ['camping'], + }, + '🌁': { + keywords: ['karl', 'fog', 'weather'], + }, + '🌃': { + keywords: ['night', 'star', 'weather'], + }, + '🏙️': { + keywords: ['skyline'], + }, + '🌄': { + keywords: ['morning', 'mountain', 'sun', 'sunrise', 'weather'], + }, + '🌅': { + keywords: ['morning', 'sun', 'weather'], + }, + '🌆': { + keywords: ['building', 'city', 'dusk', 'evening', 'landscape', 'sun', 'sunset', 'weather'], + }, + '🌇': { + keywords: ['building', 'dusk', 'sun', 'sunset', 'weather'], + }, + '🌉': { + keywords: ['bridge', 'night', 'weather'], + }, + '♨️': { + keywords: ['hot', 'springs', 'steaming'], + }, + '🎠': { + keywords: ['activity', 'carousel', 'entertainment', 'horse'], + }, + '🎡': { + keywords: ['activity', 'amusement park', 'entertainment', 'ferris', 'wheel'], + }, + '🎢': { + keywords: ['activity', 'amusement park', 'coaster', 'entertainment', 'roller'], + }, + '💈': { + keywords: ['haircut', 'pole'], + }, + '🎪': { + keywords: ['activity', 'circus', 'entertainment', 'tent'], + }, + '🚂': { + keywords: ['train', 'engine', 'locomotive', 'railway', 'steam', 'vehicle'], + }, + '🚃': { + keywords: ['car', 'electric', 'railway', 'train', 'tram', 'trolleybus', 'vehicle'], + }, + '🚄': { + keywords: ['train', 'railway', 'shinkansen', 'speed', 'vehicle'], + }, + '🚅': { + keywords: ['train', 'bullet', 'railway', 'shinkansen', 'speed', 'vehicle'], + }, + '🚆': { + keywords: ['railway', 'train', 'vehicle'], + }, + '🚇': { + keywords: ['subway', 'vehicle'], + }, + '🚈': { + keywords: ['railway', 'vehicle'], + }, + '🚉': { + keywords: ['railway', 'train', 'vehicle'], + }, + '🚊': { + keywords: ['trolleybus', 'vehicle'], + }, + '🚝': { + keywords: ['vehicle'], + }, + '🚞': { + keywords: ['car', 'mountain', 'railway', 'vehicle'], + }, + '🚋': { + keywords: ['car', 'tram', 'trolleybus', 'vehicle'], + }, + '🚌': { + keywords: ['vehicle'], + }, + '🚍': { + keywords: ['bus', 'oncoming', 'vehicle'], + }, + '🚎': { + keywords: ['bus', 'tram', 'trolley', 'vehicle'], + }, + '🚐': { + keywords: ['bus', 'vehicle'], + }, + '🚑': { + keywords: ['vehicle'], + }, + '🚒': { + keywords: ['engine', 'fire', 'truck', 'vehicle'], + }, + '🚓': { + keywords: ['car', 'patrol', 'police', 'vehicle'], + }, + '🚔': { + keywords: ['car', 'oncoming', 'police', 'vehicle'], + }, + '🚕': { + keywords: ['vehicle'], + }, + '🚖': { + keywords: ['oncoming', 'taxi', 'vehicle'], + }, + '🚗': { + keywords: ['red_car', 'automobile', 'vehicle'], + }, + '🚘': { + keywords: ['automobile', 'car', 'oncoming', 'vehicle'], + }, + '🚙': { + keywords: ['recreational', 'rv', 'vehicle'], + }, + '🛻': { + keywords: [], + }, + '🚚': { + keywords: ['delivery', 'vehicle'], + }, + '🚛': { + keywords: ['lorry', 'semi', 'truck', 'vehicle'], + }, + '🚜': { + keywords: ['vehicle'], + }, + '🏎️': { + keywords: [], + }, + '🏍️': { + keywords: [], + }, + '🛵': { + keywords: ['motor', 'scooter'], + }, + '🦽': { + keywords: [], + }, + '🦼': { + keywords: [], + }, + '🛺': { + keywords: [], + }, + '🚲': { + keywords: ['bicycle', 'vehicle'], + }, + '🛴': { + keywords: ['kick', 'scooter'], + }, + '🛹': { + keywords: [], + }, + '🛼': { + keywords: [], + }, + '🚏': { + keywords: ['bus', 'stop'], + }, + '🛣️': { + keywords: [], + }, + '🛤️': { + keywords: [], + }, + '🛢️': { + keywords: [], + }, + '⛽': { + keywords: ['fuel', 'gas', 'pump', 'station'], + }, + '🚨': { + keywords: ['911', 'emergency', 'beacon', 'car', 'light', 'police', 'revolving', 'vehicle'], + }, + '🚥': { + keywords: ['light', 'signal', 'traffic'], + }, + '🚦': { + keywords: ['semaphore', 'light', 'signal', 'traffic'], + }, + '🛑': { + keywords: ['octagonal', 'stop'], + }, + '🚧': { + keywords: ['wip', 'barrier'], + }, + '⚓': { + keywords: ['ship', 'tool'], + }, + '⛵': { + keywords: ['sailboat', 'resort', 'sea', 'vehicle', 'yacht'], + }, + '🛶': { + keywords: ['boat'], + }, + '🚤': { + keywords: ['ship', 'boat', 'vehicle'], + }, + '🛳️': { + keywords: ['cruise'], + }, + '⛴️': { + keywords: [], + }, + '🛥️': { + keywords: [], + }, + '🚢': { + keywords: ['vehicle'], + }, + '✈️': { + keywords: ['flight', 'vehicle'], + }, + '🛩️': { + keywords: ['flight'], + }, + '🛫': { + keywords: ['airplane', 'check-in', 'departure', 'departures', 'vehicle'], + }, + '🛬': { + keywords: ['airplane', 'arrivals', 'arriving', 'landing', 'vehicle'], + }, + '🪂': { + keywords: [], + }, + '💺': { + keywords: ['chair'], + }, + '🚁': { + keywords: ['vehicle'], + }, + '🚟': { + keywords: ['railway', 'suspension', 'vehicle'], + }, + '🚠': { + keywords: ['cable', 'gondola', 'mountain', 'vehicle'], + }, + '🚡': { + keywords: ['aerial', 'cable', 'car', 'gondola', 'ropeway', 'tramway', 'vehicle'], + }, + '🛰️': { + keywords: ['orbit', 'space'], + }, + '🚀': { + keywords: ['ship', 'launch', 'space', 'vehicle'], + }, + '🛸': { + keywords: ['ufo'], + }, + '🛎️': { + keywords: [], + }, + '🧳': { + keywords: [], + }, + '⌛': { + keywords: ['time', 'sand', 'timer'], + }, + '⏳': { + keywords: ['time', 'hourglass', 'sand', 'timer'], + }, + '⌚': { + keywords: ['time', 'clock'], + }, + '⏰': { + keywords: ['morning', 'alarm', 'clock'], + }, + '⏱️': { + keywords: [], + }, + '⏲️': { + keywords: [], + }, + '🕰️': { + keywords: [], + }, + '🕛': { + keywords: ['00', '12', '12:00', 'clock', 'o’clock', 'twelve'], + }, + '🕧': { + keywords: ['12', '12:30', '30', 'clock', 'thirty', 'twelve'], + }, + '🕐': { + keywords: ['00', '1', '1:00', 'clock', 'o’clock', 'one'], + }, + '🕜': { + keywords: ['1', '1:30', '30', 'clock', 'one', 'thirty'], + }, + '🕑': { + keywords: ['00', '2', '2:00', 'clock', 'o’clock', 'two'], + }, + '🕝': { + keywords: ['2', '2:30', '30', 'clock', 'thirty', 'two'], + }, + '🕒': { + keywords: ['00', '3', '3:00', 'clock', 'o’clock', 'three'], + }, + '🕞': { + keywords: ['3', '3:30', '30', 'clock', 'thirty', 'three'], + }, + '🕓': { + keywords: ['00', '4', '4:00', 'clock', 'four', 'o’clock'], + }, + '🕟': { + keywords: ['30', '4', '4:30', 'clock', 'four', 'thirty'], + }, + '🕔': { + keywords: ['00', '5', '5:00', 'clock', 'five', 'o’clock'], + }, + '🕠': { + keywords: ['30', '5', '5:30', 'clock', 'five', 'thirty'], + }, + '🕕': { + keywords: ['00', '6', '6:00', 'clock', 'o’clock', 'six'], + }, + '🕡': { + keywords: ['30', '6', '6:30', 'clock', 'six', 'thirty'], + }, + '🕖': { + keywords: ['00', '7', '7:00', 'clock', 'o’clock', 'seven'], + }, + '🕢': { + keywords: ['30', '7', '7:30', 'clock', 'seven', 'thirty'], + }, + '🕗': { + keywords: ['00', '8', '8:00', 'clock', 'eight', 'o’clock'], + }, + '🕣': { + keywords: ['30', '8', '8:30', 'clock', 'eight', 'thirty'], + }, + '🕘': { + keywords: ['00', '9', '9:00', 'clock', 'nine', 'o’clock'], + }, + '🕤': { + keywords: ['30', '9', '9:30', 'clock', 'nine', 'thirty'], + }, + '🕙': { + keywords: ['00', '10', '10:00', 'clock', 'o’clock', 'ten'], + }, + '🕥': { + keywords: ['10', '10:30', '30', 'clock', 'ten', 'thirty'], + }, + '🕚': { + keywords: ['00', '11', '11:00', 'clock', 'eleven', 'o’clock'], + }, + '🕦': { + keywords: ['11', '11:30', '30', 'clock', 'eleven', 'thirty'], + }, + '🌑': { + keywords: ['dark', 'moon', 'space', 'weather'], + }, + '🌒': { + keywords: ['crescent', 'moon', 'space', 'waxing', 'weather'], + }, + '🌓': { + keywords: ['moon', 'quarter', 'space', 'weather'], + }, + '🌔': { + keywords: ['waxing_gibbous_moon', 'gibbous', 'space', 'waxing', 'weather'], + }, + '🌕': { + keywords: ['full', 'moon', 'space', 'weather'], + }, + '🌖': { + keywords: ['gibbous', 'moon', 'space', 'waning', 'weather'], + }, + '🌗': { + keywords: ['moon', 'quarter', 'space', 'weather'], + }, + '🌘': { + keywords: ['crescent', 'moon', 'space', 'waning', 'weather'], + }, + '🌙': { + keywords: ['night', 'crescent', 'moon', 'space', 'weather'], + }, + '🌚': { + keywords: ['face', 'moon', 'space', 'weather'], + }, + '🌛': { + keywords: ['face', 'moon', 'quarter', 'space', 'weather'], + }, + '🌜': { + keywords: ['face', 'moon', 'quarter', 'space', 'weather'], + }, + '🌡️': { + keywords: [], + }, + '☀️': { + keywords: ['weather', 'bright', 'rays', 'space', 'sun'], + }, + '🌝': { + keywords: ['bright', 'face', 'full', 'moon', 'space', 'weather'], + }, + '🌞': { + keywords: ['summer', 'bright', 'face', 'space', 'sun', 'weather'], + }, + '🪐': { + keywords: [], + }, + '⭐': { + keywords: [], + }, + '🌟': { + keywords: ['glittery', 'glow', 'shining', 'sparkle', 'star'], + }, + '🌠': { + keywords: ['activity', 'falling', 'shooting', 'space', 'star'], + }, + '🌌': { + keywords: ['milky way', 'space', 'weather'], + }, + '☁️': { + keywords: ['weather'], + }, + '⛅': { + keywords: ['weather', 'cloud', 'sun'], + }, + '⛈️': { + keywords: [], + }, + '🌤️': { + keywords: [], + }, + '🌥️': { + keywords: [], + }, + '🌦️': { + keywords: [], + }, + '🌧️': { + keywords: [], + }, + '🌨️': { + keywords: [], + }, + '🌩️': { + keywords: [], + }, + '🌪️': { + keywords: [], + }, + '🌫️': { + keywords: [], + }, + '🌬️': { + keywords: [], + }, + '🌀': { + keywords: ['swirl', 'dizzy', 'twister', 'typhoon', 'weather'], + }, + '🌈': { + keywords: ['rain', 'weather'], + }, + '🌂': { + keywords: ['weather', 'rain', 'clothing', 'umbrella'], + }, + '☂️': { + keywords: ['clothing', 'rain', 'umbrella', 'weather'], + }, + '☔': { + keywords: ['rain', 'weather', 'clothing', 'drop'], + }, + '⛱️': { + keywords: ['beach_umbrella'], + }, + '⚡': { + keywords: ['lightning', 'thunder', 'danger', 'electric', 'electricity', 'voltage'], + }, + '❄️': { + keywords: ['winter', 'cold', 'weather', 'snow'], + }, + '☃️': { + keywords: ['winter', 'christmas', 'cold', 'snow', 'snowman', 'weather'], + }, + '⛄': { + keywords: ['winter', 'cold', 'snow', 'weather'], + }, + '☄️': { + keywords: ['space'], + }, + '🔥': { + keywords: ['burn', 'flame', 'tool'], + }, + '💧': { + keywords: ['water', 'cold', 'comic', 'drop', 'sweat', 'weather'], + }, + '🌊': { + keywords: ['sea', 'water', 'wave', 'weather'], + }, + '🎃': { + keywords: ['halloween', 'activity', 'celebration', 'entertainment', 'jack', 'lantern'], + }, + '🎄': { + keywords: ['activity', 'celebration', 'christmas', 'entertainment', 'tree'], + }, + '🎆': { + keywords: ['festival', 'celebration', 'activity', 'entertainment'], + }, + '🎇': { + keywords: ['activity', 'celebration', 'entertainment', 'fireworks', 'sparkle'], + }, + '🧨': { + keywords: [], + }, + '✨': { + keywords: ['shiny', 'entertainment', 'sparkle', 'star'], + }, + '🎈': { + keywords: ['party', 'birthday', 'activity', 'celebration', 'entertainment'], + }, + '🎉': { + keywords: ['hooray', 'party', 'activity', 'celebration', 'entertainment', 'popper'], + }, + '🎊': { + keywords: ['activity', 'ball', 'celebration', 'confetti', 'entertainment'], + }, + '🎋': { + keywords: ['activity', 'banner', 'celebration', 'entertainment', 'japanese', 'tree'], + }, + '🎍': { + keywords: ['activity', 'celebration', 'japanese', 'pine', 'plant'], + }, + '🎎': { + keywords: ['activity', 'celebration', 'doll', 'entertainment', 'festival', 'japanese'], + }, + '🎏': { + keywords: ['activity', 'carp', 'celebration', 'entertainment', 'flag', 'streamer'], + }, + '🎐': { + keywords: ['activity', 'bell', 'celebration', 'chime', 'entertainment', 'wind'], + }, + '🎑': { + keywords: ['activity', 'celebration', 'ceremony', 'entertainment', 'moon'], + }, + '🧧': { + keywords: [], + }, + '🎀': { + keywords: ['celebration'], + }, + '🎁': { + keywords: ['present', 'birthday', 'christmas', 'box', 'celebration', 'entertainment', 'wrapped'], + }, + '🎗️': { + keywords: [], + }, + '🎟️': { + keywords: [], + }, + '🎫': { + keywords: ['activity', 'admission', 'entertainment'], + }, + '🎖️': { + keywords: [], + }, + '🏆': { + keywords: ['award', 'contest', 'winner', 'prize'], + }, + '🏅': { + keywords: ['gold', 'winner', 'medal'], + }, + '🥇': { + keywords: ['gold', 'first', 'medal'], + }, + '🥈': { + keywords: ['silver', 'medal', 'second'], + }, + '🥉': { + keywords: ['bronze', 'medal', 'third'], + }, + '⚽': { + keywords: ['sports', 'ball'], + }, + '⚾': { + keywords: ['sports', 'ball'], + }, + '🥎': { + keywords: [], + }, + '🏀': { + keywords: ['sports', 'ball', 'hoop'], + }, + '🏐': { + keywords: ['ball', 'game'], + }, + '🏈': { + keywords: ['sports', 'american', 'ball'], + }, + '🏉': { + keywords: ['ball', 'football', 'rugby'], + }, + '🎾': { + keywords: ['sports', 'ball', 'racquet'], + }, + '🥏': { + keywords: [], + }, + '🎳': { + keywords: ['ball', 'game'], + }, + '🏏': { + keywords: ['ball', 'bat', 'cricket', 'game'], + }, + '🏑': { + keywords: ['ball', 'field', 'game', 'hockey', 'stick'], + }, + '🏒': { + keywords: ['game', 'hockey', 'ice', 'puck', 'stick'], + }, + '🥍': { + keywords: [], + }, + '🏓': { + keywords: ['ball', 'bat', 'game', 'paddle', 'table tennis'], + }, + '🏸': { + keywords: ['birdie', 'game', 'racquet', 'shuttlecock'], + }, + '🥊': { + keywords: ['boxing', 'glove'], + }, + '🥋': { + keywords: ['judo', 'karate', 'martial arts', 'taekwondo', 'uniform'], + }, + '🥅': { + keywords: ['goal', 'net'], + }, + '⛳': { + keywords: ['flag', 'hole'], + }, + '⛸️': { + keywords: ['skating'], + }, + '🎣': { + keywords: ['entertainment', 'fish', 'pole'], + }, + '🤿': { + keywords: [], + }, + '🎽': { + keywords: ['marathon', 'running', 'sash', 'shirt'], + }, + '🎿': { + keywords: ['snow'], + }, + '🛷': { + keywords: [], + }, + '🥌': { + keywords: [], + }, + '🎯': { + keywords: ['target', 'activity', 'bull', 'bullseye', 'entertainment', 'eye', 'game', 'hit'], + }, + '🪀': { + keywords: [], + }, + '🪁': { + keywords: [], + }, + '🎱': { + keywords: ['pool', 'billiards', '8', '8 ball', 'ball', 'billiard', 'eight', 'game'], + }, + '🔮': { + keywords: ['fortune', 'ball', 'crystal', 'fairy tale', 'fantasy', 'tool'], + }, + '🪄': { + keywords: [], + }, + '🧿': { + keywords: [], + }, + '🎮': { + keywords: ['play', 'controller', 'console', 'entertainment', 'game', 'video game'], + }, + '🕹️': { + keywords: [], + }, + '🎰': { + keywords: ['activity', 'game', 'slot'], + }, + '🎲': { + keywords: ['dice', 'gambling', 'die', 'entertainment', 'game'], + }, + '🧩': { + keywords: [], + }, + '🧸': { + keywords: [], + }, + '🪅': { + keywords: [], + }, + '🪆': { + keywords: [], + }, + '♠️': { + keywords: ['card', 'game', 'spade', 'suit'], + }, + '♥️': { + keywords: ['card', 'game', 'heart', 'suit'], + }, + '♦️': { + keywords: ['card', 'diamond', 'game', 'suit'], + }, + '♣️': { + keywords: ['card', 'club', 'game', 'suit'], + }, + '♟️': { + keywords: [], + }, + '🃏': { + keywords: ['card', 'entertainment', 'game', 'joker', 'playing'], + }, + '🀄': { + keywords: ['game', 'red'], + }, + '🎴': { + keywords: ['activity', 'card', 'entertainment', 'flower', 'game', 'japanese', 'playing'], + }, + '🎭': { + keywords: ['theater', 'drama', 'activity', 'art', 'entertainment', 'mask', 'performing', 'theatre'], + }, + '🖼️': { + keywords: [], + }, + '🎨': { + keywords: ['design', 'paint', 'activity', 'entertainment', 'museum', 'painting', 'palette'], + }, + '🧵': { + keywords: [], + }, + '🪡': { + keywords: [], + }, + '🧶': { + keywords: [], + }, + '🪢': { + keywords: [], + }, + '👓': { + keywords: ['glasses', 'clothing', 'eye', 'eyewear'], + }, + '🕶️': { + keywords: [], + }, + '🥽': { + keywords: [], + }, + '🥼': { + keywords: [], + }, + '🦺': { + keywords: [], + }, + '👔': { + keywords: ['shirt', 'formal', 'clothing'], + }, + '👕': { + keywords: ['tshirt', 'clothing'], + }, + '👖': { + keywords: ['pants', 'clothing', 'trousers'], + }, + '🧣': { + keywords: [], + }, + '🧤': { + keywords: [], + }, + '🧥': { + keywords: [], + }, + '🧦': { + keywords: [], + }, + '👗': { + keywords: ['clothing'], + }, + '👘': { + keywords: ['clothing'], + }, + '🥻': { + keywords: [], + }, + '🩱': { + keywords: [], + }, + '🩲': { + keywords: [], + }, + '🩳': { + keywords: [], + }, + '👙': { + keywords: ['beach', 'clothing', 'swim'], + }, + '👚': { + keywords: ['clothing', 'woman'], + }, + '👛': { + keywords: ['clothing', 'coin'], + }, + '👜': { + keywords: ['bag', 'clothing'], + }, + '👝': { + keywords: ['bag', 'clothing'], + }, + '🛍️': { + keywords: ['bags'], + }, + '🎒': { + keywords: ['activity', 'bag', 'satchel', 'school'], + }, + '🩴': { + keywords: [], + }, + '👞': { + keywords: ['shoe', 'clothing', 'man'], + }, + '👟': { + keywords: ['sneaker', 'sport', 'running', 'athletic', 'clothing', 'shoe'], + }, + '🥾': { + keywords: [], + }, + '🥿': { + keywords: [], + }, + '👠': { + keywords: ['shoe', 'clothing', 'heel', 'woman'], + }, + '👡': { + keywords: ['shoe', 'clothing', 'woman'], + }, + '🩰': { + keywords: [], + }, + '👢': { + keywords: ['clothing', 'shoe', 'woman'], + }, + '👑': { + keywords: ['king', 'queen', 'royal', 'clothing'], + }, + '👒': { + keywords: ['clothing', 'hat', 'woman'], + }, + '🎩': { + keywords: ['hat', 'classy', 'activity', 'clothing', 'entertainment', 'top'], + }, + '🎓': { + keywords: ['education', 'college', 'university', 'graduation', 'activity', 'cap', 'celebration', 'clothing', 'hat'], + }, + '🧢': { + keywords: [], + }, + '🪖': { + keywords: [], + }, + '⛑️': { + keywords: [], + }, + '📿': { + keywords: ['beads', 'clothing', 'necklace', 'prayer', 'religion'], + }, + '💄': { + keywords: ['makeup', 'cosmetics'], + }, + '💍': { + keywords: ['wedding', 'marriage', 'engaged', 'diamond', 'romance'], + }, + '💎': { + keywords: ['diamond', 'jewel', 'romance'], + }, + '🔇': { + keywords: ['sound', 'volume', 'quiet', 'silent', 'speaker'], + }, + '🔈': { + keywords: ['volume'], + }, + '🔉': { + keywords: ['volume', 'low', 'speaker', 'wave'], + }, + '🔊': { + keywords: ['volume', '3', 'entertainment', 'high', 'loud', 'speaker', 'three'], + }, + '📢': { + keywords: ['announcement', 'communication', 'loud', 'public address'], + }, + '📣': { + keywords: ['cheering', 'communication', 'megaphone'], + }, + '📯': { + keywords: ['communication', 'entertainment', 'horn', 'post', 'postal'], + }, + '🔔': { + keywords: ['sound', 'notification'], + }, + '🔕': { + keywords: ['volume', 'off', 'bell', 'forbidden', 'mute', 'no', 'not', 'prohibited', 'quiet', 'silent'], + }, + '🎼': { + keywords: ['activity', 'entertainment', 'music', 'score'], + }, + '🎵': { + keywords: ['activity', 'entertainment', 'music', 'note'], + }, + '🎶': { + keywords: ['music', 'activity', 'entertainment', 'note'], + }, + '🎙️': { + keywords: ['podcast'], + }, + '🎚️': { + keywords: [], + }, + '🎛️': { + keywords: [], + }, + '🎤': { + keywords: ['sing', 'activity', 'entertainment', 'karaoke', 'mic'], + }, + '🎧': { + keywords: ['music', 'earphones', 'activity', 'earbud', 'entertainment', 'headphone'], + }, + '📻': { + keywords: ['podcast', 'entertainment', 'video'], + }, + '🎷': { + keywords: ['activity', 'entertainment', 'instrument', 'music', 'sax'], + }, + '🪗': { + keywords: [], + }, + '🎸': { + keywords: ['rock', 'activity', 'entertainment', 'instrument', 'music'], + }, + '🎹': { + keywords: ['piano', 'activity', 'entertainment', 'instrument', 'keyboard', 'music'], + }, + '🎺': { + keywords: ['activity', 'entertainment', 'instrument', 'music'], + }, + '🎻': { + keywords: ['activity', 'entertainment', 'instrument', 'music'], + }, + '🪕': { + keywords: [], + }, + '🥁': { + keywords: ['drumsticks', 'music'], + }, + '🪘': { + keywords: [], + }, + '📱': { + keywords: ['smartphone', 'mobile', 'cell', 'communication', 'phone', 'telephone'], + }, + '📲': { + keywords: ['call', 'incoming', 'arrow', 'cell', 'communication', 'mobile', 'phone', 'receive', 'telephone'], + }, + '☎️': { + keywords: ['telephone'], + }, + '📞': { + keywords: ['phone', 'call', 'communication', 'receiver', 'telephone'], + }, + '📟': { + keywords: ['communication'], + }, + '📠': { + keywords: ['communication'], + }, + '🔋': { + keywords: ['power'], + }, + '🔌': { + keywords: ['electric', 'electricity', 'plug'], + }, + '💻': { + keywords: ['desktop', 'screen', 'pc', 'personal'], + }, + '🖥️': { + keywords: [], + }, + '🖨️': { + keywords: [], + }, + '⌨️': { + keywords: ['computer'], + }, + '🖱️': { + keywords: [], + }, + '🖲️': { + keywords: [], + }, + '💽': { + keywords: ['computer', 'disk', 'entertainment', 'minidisk', 'optical'], + }, + '💾': { + keywords: ['save', 'computer', 'disk', 'floppy'], + }, + '💿': { + keywords: ['blu-ray', 'computer', 'disk', 'dvd', 'optical'], + }, + '📀': { + keywords: ['blu-ray', 'cd', 'computer', 'disk', 'entertainment', 'optical'], + }, + '🧮': { + keywords: [], + }, + '🎥': { + keywords: ['film', 'video', 'activity', 'camera', 'cinema', 'entertainment', 'movie'], + }, + '🎞️': { + keywords: [], + }, + '📽️': { + keywords: [], + }, + '🎬': { + keywords: ['film', 'activity', 'entertainment', 'movie'], + }, + '📺': { + keywords: ['entertainment', 'television', 'video'], + }, + '📷': { + keywords: ['photo', 'entertainment', 'video'], + }, + '📸': { + keywords: ['photo', 'camera', 'flash', 'video'], + }, + '📹': { + keywords: ['camera', 'entertainment', 'video'], + }, + '📼': { + keywords: ['entertainment', 'tape', 'video', 'videocassette'], + }, + '🔍': { + keywords: ['search', 'zoom', 'glass', 'magnifying', 'tool'], + }, + '🔎': { + keywords: ['glass', 'magnifying', 'search', 'tool'], + }, + '🕯️': { + keywords: [], + }, + '💡': { + keywords: ['idea', 'light', 'comic', 'electric'], + }, + '🔦': { + keywords: ['electric', 'light', 'tool', 'torch'], + }, + '🏮': { + keywords: ['lantern', 'bar', 'japanese', 'light', 'red'], + }, + '🪔': { + keywords: [], + }, + '📔': { + keywords: ['book', 'cover', 'decorated', 'notebook'], + }, + '📕': { + keywords: ['book', 'closed'], + }, + '📖': { + keywords: ['open_book', 'open'], + }, + '📗': { + keywords: ['book', 'green'], + }, + '📘': { + keywords: ['blue', 'book'], + }, + '📙': { + keywords: ['book', 'orange'], + }, + '📚': { + keywords: ['library', 'book'], + }, + '📓': { + keywords: [], + }, + '📒': { + keywords: ['notebook'], + }, + '📃': { + keywords: ['curl', 'document', 'page'], + }, + '📜': { + keywords: ['document', 'paper'], + }, + '📄': { + keywords: ['document', 'page'], + }, + '📰': { + keywords: ['press', 'communication', 'news', 'paper'], + }, + '🗞️': { + keywords: ['press'], + }, + '📑': { + keywords: ['bookmark', 'mark', 'marker', 'tabs'], + }, + '🔖': { + keywords: ['mark'], + }, + '🏷️': { + keywords: ['tag'], + }, + '💰': { + keywords: ['dollar', 'cream', 'bag', 'money'], + }, + '🪙': { + keywords: [], + }, + '💴': { + keywords: ['bank', 'banknote', 'bill', 'currency', 'money', 'note'], + }, + '💵': { + keywords: ['money', 'bank', 'banknote', 'bill', 'currency', 'note'], + }, + '💶': { + keywords: ['bank', 'banknote', 'bill', 'currency', 'money', 'note'], + }, + '💷': { + keywords: ['bank', 'banknote', 'bill', 'currency', 'money', 'note'], + }, + '💸': { + keywords: ['dollar', 'bank', 'banknote', 'bill', 'fly', 'money', 'note', 'wings'], + }, + '💳': { + keywords: ['subscription', 'bank', 'card', 'credit', 'money'], + }, + '🧾': { + keywords: [], + }, + '💹': { + keywords: ['bank', 'currency', 'graph', 'growth', 'market', 'money', 'rise', 'trend', 'upward', 'yen'], + }, + '✉️': { + keywords: ['letter', 'email', 'e-mail'], + }, + '📧': { + keywords: ['e-mail', 'communication', 'letter', 'mail'], + }, + '📨': { + keywords: ['communication', 'e-mail', 'email', 'envelope', 'incoming', 'letter', 'mail', 'receive'], + }, + '📩': { + keywords: ['arrow', 'communication', 'down', 'e-mail', 'email', 'envelope', 'letter', 'mail', 'outgoing', 'sent'], + }, + '📤': { + keywords: ['box', 'communication', 'letter', 'mail', 'outbox', 'sent', 'tray'], + }, + '📥': { + keywords: ['box', 'communication', 'inbox', 'letter', 'mail', 'receive', 'tray'], + }, + '📦': { + keywords: ['shipping', 'box', 'communication', 'parcel'], + }, + '📫': { + keywords: ['closed', 'communication', 'flag', 'mail', 'postbox'], + }, + '📪': { + keywords: ['closed', 'communication', 'flag', 'lowered', 'mail', 'mailbox', 'postbox'], + }, + '📬': { + keywords: ['communication', 'flag', 'mail', 'mailbox', 'open', 'postbox'], + }, + '📭': { + keywords: ['communication', 'flag', 'lowered', 'mail', 'mailbox', 'open', 'postbox'], + }, + '📮': { + keywords: ['communication', 'mail', 'mailbox'], + }, + '🗳️': { + keywords: [], + }, + '✏️': { + keywords: [], + }, + '✒️': { + keywords: ['nib', 'pen'], + }, + '🖋️': { + keywords: [], + }, + '🖊️': { + keywords: [], + }, + '🖌️': { + keywords: [], + }, + '🖍️': { + keywords: [], + }, + '📝': { + keywords: ['document', 'note', 'pencil', 'communication'], + }, + '💼': { + keywords: ['business'], + }, + '📁': { + keywords: ['directory', 'file', 'folder'], + }, + '📂': { + keywords: ['file', 'folder', 'open'], + }, + '🗂️': { + keywords: [], + }, + '📅': { + keywords: ['calendar', 'schedule'], + }, + '📆': { + keywords: ['schedule'], + }, + '🗒️': { + keywords: [], + }, + '🗓️': { + keywords: [], + }, + '📇': { + keywords: ['card', 'index', 'rolodex'], + }, + '📈': { + keywords: ['graph', 'metrics', 'chart', 'growth', 'trend', 'upward'], + }, + '📉': { + keywords: ['graph', 'metrics', 'chart', 'down', 'trend'], + }, + '📊': { + keywords: ['stats', 'metrics', 'bar', 'chart', 'graph'], + }, + '📋': { + keywords: [], + }, + '📌': { + keywords: ['location', 'pin'], + }, + '📍': { + keywords: ['location', 'pin', 'pushpin'], + }, + '📎': { + keywords: [], + }, + '🖇️': { + keywords: [], + }, + '📏': { + keywords: ['ruler', 'straight edge'], + }, + '📐': { + keywords: ['ruler', 'set', 'triangle'], + }, + '✂️': { + keywords: ['cut', 'tool'], + }, + '🗃️': { + keywords: [], + }, + '🗄️': { + keywords: [], + }, + '🗑️': { + keywords: ['trash'], + }, + '🔒': { + keywords: ['security', 'private', 'closed'], + }, + '🔓': { + keywords: ['security', 'lock', 'open'], + }, + '🔏': { + keywords: ['ink', 'lock', 'nib', 'pen', 'privacy'], + }, + '🔐': { + keywords: ['security', 'closed', 'key', 'lock', 'secure'], + }, + '🔑': { + keywords: ['lock', 'password'], + }, + '🗝️': { + keywords: [], + }, + '🔨': { + keywords: ['tool'], + }, + '🪓': { + keywords: [], + }, + '⛏️': { + keywords: [], + }, + '⚒️': { + keywords: ['hammer', 'pick', 'tool'], + }, + '🛠️': { + keywords: [], + }, + '🗡️': { + keywords: [], + }, + '⚔️': { + keywords: ['crossed', 'swords', 'weapon'], + }, + '🔫': { + keywords: ['shoot', 'weapon', 'handgun', 'pistol', 'revolver', 'tool'], + }, + '🪃': { + keywords: [], + }, + '🏹': { + keywords: ['archery', 'archer', 'arrow', 'bow', 'sagittarius', 'tool', 'weapon', 'zodiac'], + }, + '🛡️': { + keywords: [], + }, + '🪚': { + keywords: [], + }, + '🔧': { + keywords: ['tool'], + }, + '🪛': { + keywords: [], + }, + '🔩': { + keywords: ['bolt', 'nut', 'tool'], + }, + '⚙️': { + keywords: ['tool'], + }, + '🗜️': { + keywords: [], + }, + '⚖️': { + keywords: ['balance', 'justice', 'libra', 'scales', 'tool', 'weight', 'zodiac'], + }, + '🦯': { + keywords: [], + }, + '🔗': { + keywords: [], + }, + '⛓️': { + keywords: [], + }, + '🪝': { + keywords: [], + }, + '🧰': { + keywords: [], + }, + '🧲': { + keywords: [], + }, + '🪜': { + keywords: [], + }, + '⚗️': { + keywords: ['chemistry', 'tool'], + }, + '🧪': { + keywords: [], + }, + '🧫': { + keywords: [], + }, + '🧬': { + keywords: [], + }, + '🔬': { + keywords: ['science', 'laboratory', 'investigate', 'tool'], + }, + '🔭': { + keywords: ['tool'], + }, + '📡': { + keywords: ['signal', 'antenna', 'communication', 'dish'], + }, + '💉': { + keywords: ['health', 'hospital', 'needle', 'doctor', 'medicine', 'shot', 'sick', 'tool'], + }, + '🩸': { + keywords: [], + }, + '💊': { + keywords: ['health', 'medicine', 'doctor', 'sick'], + }, + '🩹': { + keywords: [], + }, + '🩺': { + keywords: [], + }, + '🚪': { + keywords: [], + }, + '🛗': { + keywords: [], + }, + '🪞': { + keywords: [], + }, + '🪟': { + keywords: [], + }, + '🛏️': { + keywords: [], + }, + '🛋️': { + keywords: [], + }, + '🪑': { + keywords: [], + }, + '🚽': { + keywords: ['wc'], + }, + '🪠': { + keywords: [], + }, + '🚿': { + keywords: ['bath', 'water'], + }, + '🛁': { + keywords: ['bath'], + }, + '🪤': { + keywords: [], + }, + '🪒': { + keywords: [], + }, + '🧴': { + keywords: [], + }, + '🧷': { + keywords: [], + }, + '🧹': { + keywords: [], + }, + '🧺': { + keywords: [], + }, + '🧻': { + keywords: ['toilet'], + }, + '🪣': { + keywords: [], + }, + '🧼': { + keywords: [], + }, + '🪥': { + keywords: [], + }, + '🧽': { + keywords: [], + }, + '🧯': { + keywords: [], + }, + '🛒': { + keywords: ['cart', 'shopping', 'trolley'], + }, + '🚬': { + keywords: ['cigarette', 'activity'], + }, + '⚰️': { + keywords: ['funeral'], + }, + '🪦': { + keywords: [], + }, + '⚱️': { + keywords: [], + }, + '🗿': { + keywords: ['stone', 'face', 'statue'], + }, + '🪧': { + keywords: [], + }, + '🏧': { + keywords: ['automated', 'bank', 'teller'], + }, + '🚮': { + keywords: ['litter', 'litterbox'], + }, + '🚰': { + keywords: ['drink', 'potable', 'water'], + }, + '♿': { + keywords: ['accessibility', 'access'], + }, + '🚹': { + keywords: ['lavatory', 'man', 'restroom', 'wc'], + }, + '🚺': { + keywords: ['lavatory', 'restroom', 'wc', 'woman'], + }, + '🚻': { + keywords: ['toilet', 'lavatory', 'wc'], + }, + '🚼': { + keywords: ['baby', 'changing'], + }, + '🚾': { + keywords: ['toilet', 'restroom', 'closet', 'lavatory', 'water'], + }, + '🛂': { + keywords: ['control', 'passport'], + }, + '🛃': { + keywords: [], + }, + '🛄': { + keywords: ['airport', 'baggage', 'claim'], + }, + '🛅': { + keywords: ['baggage', 'left luggage', 'locker', 'luggage'], + }, + '⚠️': { + keywords: ['wip'], + }, + '🚸': { + keywords: ['child', 'crossing', 'pedestrian', 'traffic'], + }, + '⛔': { + keywords: ['limit', 'entry', 'forbidden', 'no', 'not', 'prohibited', 'traffic'], + }, + '🚫': { + keywords: ['block', 'forbidden', 'entry', 'no', 'not', 'prohibited'], + }, + '🚳': { + keywords: ['bicycle', 'bike', 'forbidden', 'no', 'not', 'prohibited', 'vehicle'], + }, + '🚭': { + keywords: ['forbidden', 'no', 'not', 'prohibited', 'smoking'], + }, + '🚯': { + keywords: ['forbidden', 'litter', 'no', 'not', 'prohibited'], + }, + '🚱': { + keywords: ['drink', 'forbidden', 'no', 'not', 'potable', 'prohibited', 'water'], + }, + '🚷': { + keywords: ['forbidden', 'no', 'not', 'pedestrian', 'prohibited'], + }, + '📵': { + keywords: ['cell', 'communication', 'forbidden', 'mobile', 'no', 'not', 'phone', 'prohibited', 'telephone'], + }, + '🔞': { + keywords: ['18', 'age restriction', 'eighteen', 'forbidden', 'no', 'not', 'prohibited'], + }, + '☢️': { + keywords: [], + }, + '☣️': { + keywords: [], + }, + '⬆️': { + keywords: [], + }, + '↗️': { + keywords: ['arrow', 'direction', 'intercardinal', 'northeast'], + }, + '➡️': { + keywords: [], + }, + '↘️': { + keywords: ['arrow', 'direction', 'intercardinal', 'southeast'], + }, + '⬇️': { + keywords: [], + }, + '↙️': { + keywords: ['arrow', 'direction', 'intercardinal', 'southwest'], + }, + '⬅️': { + keywords: [], + }, + '↖️': { + keywords: ['arrow', 'direction', 'intercardinal', 'northwest'], + }, + '↕️': { + keywords: ['arrow'], + }, + '↔️': { + keywords: ['arrow'], + }, + '↩️': { + keywords: ['return'], + }, + '↪️': { + keywords: [], + }, + '⤴️': { + keywords: ['arrow', 'up'], + }, + '⤵️': { + keywords: ['arrow', 'down'], + }, + '🔃': { + keywords: ['arrow', 'clockwise', 'reload'], + }, + '🔄': { + keywords: ['sync', 'anticlockwise', 'arrow', 'counterclockwise', 'withershins'], + }, + '🔙': { + keywords: ['arrow'], + }, + '🔚': { + keywords: ['arrow'], + }, + '🔛': { + keywords: ['arrow', 'mark'], + }, + '🔜': { + keywords: ['arrow'], + }, + '🔝': { + keywords: ['arrow', 'up'], + }, + '🛐': { + keywords: ['religion', 'worship'], + }, + '⚛️': { + keywords: [], + }, + '🕉️': { + keywords: [], + }, + '✡️': { + keywords: ['david', 'jew', 'jewish', 'religion', 'star'], + }, + '☸️': { + keywords: ['buddhist', 'dharma', 'religion', 'wheel'], + }, + '☯️': { + keywords: [], + }, + '✝️': { + keywords: [], + }, + '☦️': { + keywords: ['christian', 'cross', 'religion'], + }, + '☪️': { + keywords: [], + }, + '☮️': { + keywords: [], + }, + '🕎': { + keywords: ['candelabrum', 'candlestick', 'religion'], + }, + '🔯': { + keywords: ['fortune', 'star'], + }, + '♈': { + keywords: ['ram', 'zodiac'], + }, + '♉': { + keywords: ['bull', 'ox', 'zodiac'], + }, + '♊': { + keywords: ['twins', 'zodiac'], + }, + '♋': { + keywords: ['crab', 'zodiac'], + }, + '♌': { + keywords: ['lion', 'zodiac'], + }, + '♍': { + keywords: ['maiden', 'virgin', 'zodiac'], + }, + '♎': { + keywords: ['balance', 'justice', 'scales', 'zodiac'], + }, + '♏': { + keywords: ['scorpio', 'scorpion', 'zodiac'], + }, + '♐': { + keywords: ['archer', 'zodiac'], + }, + '♑': { + keywords: ['goat', 'zodiac'], + }, + '♒': { + keywords: ['bearer', 'water', 'zodiac'], + }, + '♓': { + keywords: ['fish', 'zodiac'], + }, + '⛎': { + keywords: ['bearer', 'serpent', 'snake', 'zodiac'], + }, + '🔀': { + keywords: ['shuffle', 'arrow', 'crossed'], + }, + '🔁': { + keywords: ['loop', 'arrow', 'clockwise'], + }, + '🔂': { + keywords: ['arrow', 'clockwise', 'once'], + }, + '▶️': { + keywords: [], + }, + '⏩': { + keywords: ['arrow', 'double', 'fast', 'forward'], + }, + '⏭️': { + keywords: [], + }, + '⏯️': { + keywords: [], + }, + '◀️': { + keywords: [], + }, + '⏪': { + keywords: ['arrow', 'double'], + }, + '⏮️': { + keywords: [], + }, + '🔼': { + keywords: ['arrow', 'button', 'red'], + }, + '⏫': { + keywords: ['arrow', 'double'], + }, + '🔽': { + keywords: ['arrow', 'button', 'down', 'red'], + }, + '⏬': { + keywords: ['arrow', 'double', 'down'], + }, + '⏸️': { + keywords: [], + }, + '⏹️': { + keywords: [], + }, + '⏺️': { + keywords: [], + }, + '⏏️': { + keywords: [], + }, + '🎦': { + keywords: ['film', 'movie', 'activity', 'camera', 'entertainment'], + }, + '🔅': { + keywords: ['brightness', 'dim', 'low'], + }, + '🔆': { + keywords: ['bright', 'brightness'], + }, + '📶': { + keywords: ['wifi', 'antenna', 'bar', 'cell', 'communication', 'mobile', 'phone', 'signal', 'telephone'], + }, + '📳': { + keywords: ['cell', 'communication', 'mobile', 'mode', 'phone', 'telephone', 'vibration'], + }, + '📴': { + keywords: ['mute', 'off', 'cell', 'communication', 'mobile', 'phone', 'telephone'], + }, + '♀️': { + keywords: [], + }, + '♂️': { + keywords: [], + }, + '⚧️': { + keywords: [], + }, + '✖️': { + keywords: ['cancel', 'multiplication', 'multiply', 'x'], + }, + '➕': { + keywords: ['math', 'plus'], + }, + '➖': { + keywords: ['math', 'minus'], + }, + '➗': { + keywords: ['division', 'math'], + }, + '♾️': { + keywords: [], + }, + '‼️': { + keywords: [], + }, + '⁉️': { + keywords: ['exclamation', 'mark', 'punctuation', 'question'], + }, + '❓': { + keywords: ['confused', 'mark', 'punctuation'], + }, + '❔': { + keywords: ['mark', 'outlined', 'punctuation', 'question'], + }, + '❕': { + keywords: ['exclamation', 'mark', 'outlined', 'punctuation'], + }, + '❗': { + keywords: ['bang', 'heavy_exclamation_mark', 'mark', 'punctuation'], + }, + '〰️': { + keywords: ['dash', 'punctuation', 'wavy'], + }, + '💱': { + keywords: ['bank', 'currency', 'exchange', 'money'], + }, + '💲': { + keywords: ['currency', 'dollar', 'money'], + }, + '⚕️': { + keywords: [], + }, + '♻️': { + keywords: ['environment', 'green'], + }, + '⚜️': { + keywords: [], + }, + '🔱': { + keywords: ['anchor', 'emblem', 'ship', 'tool'], + }, + '📛': { + keywords: ['badge', 'name'], + }, + '🔰': { + keywords: ['chevron', 'green', 'japanese', 'leaf', 'tool', 'yellow'], + }, + '⭕': { + keywords: ['circle'], + }, + '✅': { + keywords: ['check', 'mark'], + }, + '☑️': { + keywords: ['ballot', 'box', 'check'], + }, + '✔️': { + keywords: ['check', 'mark'], + }, + '❌': { + keywords: ['cancel', 'mark', 'multiplication', 'multiply'], + }, + '❎': { + keywords: ['mark', 'square'], + }, + '➰': { + keywords: ['curl', 'loop'], + }, + '➿': { + keywords: ['curl', 'double'], + }, + '〽️': { + keywords: [], + }, + '✳️': { + keywords: ['asterisk'], + }, + '✴️': { + keywords: ['star'], + }, + '❇️': { + keywords: [], + }, + '©️': { + keywords: [], + }, + '®️': { + keywords: [], + }, + '™️': { + keywords: ['trademark', 'mark'], + }, + '#️⃣': { + keywords: ['number', 'keycap', 'pound'], + }, + '*️⃣': { + keywords: ['keycap', 'star'], + }, + '0️⃣': { + keywords: ['0', 'keycap'], + }, + '1️⃣': { + keywords: ['1', 'keycap'], + }, + '2️⃣': { + keywords: ['2', 'keycap'], + }, + '3️⃣': { + keywords: ['3', 'keycap'], + }, + '4️⃣': { + keywords: ['4', 'keycap'], + }, + '5️⃣': { + keywords: ['5', 'keycap'], + }, + '6️⃣': { + keywords: ['6', 'keycap'], + }, + '7️⃣': { + keywords: ['7', 'keycap'], + }, + '8️⃣': { + keywords: ['8', 'keycap'], + }, + '9️⃣': { + keywords: ['9', 'keycap'], + }, + '🔟': { + keywords: ['10', 'keycap', 'ten'], + }, + '🔠': { + keywords: ['letters', 'input', 'latin', 'uppercase'], + }, + '🔡': { + keywords: ['input', 'latin', 'letters', 'lowercase'], + }, + '🔢': { + keywords: ['numbers', 'input'], + }, + '🔣': { + keywords: ['input'], + }, + '🔤': { + keywords: ['alphabet', 'input', 'latin', 'letters'], + }, + '🅰️': { + keywords: [], + }, + '🆎': { + keywords: ['blood'], + }, + '🅱️': { + keywords: [], + }, + '🆑': { + keywords: [], + }, + '🆒': { + keywords: [], + }, + '🆓': { + keywords: [], + }, + ℹ️: { + keywords: ['i', 'information'], + }, + '🆔': { + keywords: ['identity'], + }, + 'Ⓜ️': { + keywords: [], + }, + '🆕': { + keywords: ['fresh'], + }, + '🆖': { + keywords: [], + }, + '🅾️': { + keywords: [], + }, + '🆗': { + keywords: ['yes'], + }, + '🅿️': { + keywords: [], + }, + '🆘': { + keywords: ['help', 'emergency'], + }, + '🆙': { + keywords: ['mark'], + }, + '🆚': { + keywords: ['versus'], + }, + '🈁': { + keywords: ['japanese'], + }, + '🈂️': { + keywords: [], + }, + '🈷️': { + keywords: [], + }, + '🈶': { + keywords: ['japanese'], + }, + '🈯': { + keywords: ['japanese'], + }, + '🉐': { + keywords: ['japanese'], + }, + '🈹': { + keywords: ['japanese'], + }, + '🈚': { + keywords: ['japanese'], + }, + '🈲': { + keywords: ['japanese'], + }, + '🉑': { + keywords: ['chinese'], + }, + '🈸': { + keywords: ['chinese'], + }, + '🈴': { + keywords: ['chinese'], + }, + '🈳': { + keywords: ['chinese'], + }, + '㊗️': { + keywords: ['chinese', 'congratulation', 'ideograph'], + }, + '㊙️': { + keywords: ['chinese', 'ideograph'], + }, + '🈺': { + keywords: ['chinese'], + }, + '🈵': { + keywords: ['chinese'], + }, + '🔴': { + keywords: ['circle', 'geometric', 'red'], + }, + '🟠': { + keywords: [], + }, + '🟡': { + keywords: [], + }, + '🟢': { + keywords: [], + }, + '🔵': { + keywords: ['blue', 'circle', 'geometric'], + }, + '🟣': { + keywords: [], + }, + '🟤': { + keywords: [], + }, + '⚫': { + keywords: ['circle', 'geometric'], + }, + '⚪': { + keywords: ['circle', 'geometric'], + }, + '🟥': { + keywords: [], + }, + '🟧': { + keywords: [], + }, + '🟨': { + keywords: [], + }, + '🟩': { + keywords: [], + }, + '🟦': { + keywords: [], + }, + '🟪': { + keywords: [], + }, + '🟫': { + keywords: [], + }, + '⬛': { + keywords: ['geometric', 'square'], + }, + '⬜': { + keywords: ['geometric', 'square'], + }, + '◼️': { + keywords: [], + }, + '◻️': { + keywords: [], + }, + '◾': { + keywords: ['geometric', 'square'], + }, + '◽': { + keywords: ['geometric', 'square'], + }, + '▪️': { + keywords: [], + }, + '▫️': { + keywords: [], + }, + '🔶': { + keywords: ['diamond', 'geometric', 'orange'], + }, + '🔷': { + keywords: ['blue', 'diamond', 'geometric'], + }, + '🔸': { + keywords: ['diamond', 'geometric', 'orange'], + }, + '🔹': { + keywords: ['blue', 'diamond', 'geometric'], + }, + '🔺': { + keywords: ['geometric', 'red'], + }, + '🔻': { + keywords: ['down', 'geometric', 'red'], + }, + '💠': { + keywords: ['comic', 'diamond', 'geometric', 'inside'], + }, + '🔘': { + keywords: ['button', 'geometric', 'radio'], + }, + '🔳': { + keywords: ['button', 'geometric', 'outlined', 'square'], + }, + '🔲': { + keywords: ['button', 'geometric', 'square'], + }, + '🏁': { + keywords: ['milestone', 'finish', 'checkered', 'chequered', 'flag', 'racing'], + }, + '🚩': { + keywords: ['flag', 'post'], + }, + '🎌': { + keywords: ['activity', 'celebration', 'cross', 'crossed', 'flag', 'japanese'], + }, + '🏴': { + keywords: ['flag', 'waving'], + }, + '🏳️': { + keywords: [], + }, + '🏳️‍🌈': { + keywords: ['pride'], + }, + '🏳️‍⚧️': { + keywords: [], + }, + '🏴‍☠️': { + keywords: [], + }, + '🇦🇨': { + keywords: ['ascension', 'flag', 'island'], + }, + '🇦🇩': { + keywords: ['flag'], + }, + '🇦🇪': { + keywords: ['emirates', 'flag', 'uae', 'united'], + }, + '🇦🇫': { + keywords: ['flag'], + }, + '🇦🇬': { + keywords: ['antigua', 'barbuda', 'flag'], + }, + '🇦🇮': { + keywords: ['flag'], + }, + '🇦🇱': { + keywords: ['flag'], + }, + '🇦🇲': { + keywords: ['flag'], + }, + '🇦🇴': { + keywords: ['flag'], + }, + '🇦🇶': { + keywords: ['flag'], + }, + '🇦🇷': { + keywords: ['flag'], + }, + '🇦🇸': { + keywords: ['american', 'flag', 'samoa'], + }, + '🇦🇹': { + keywords: ['flag'], + }, + '🇦🇺': { + keywords: ['flag'], + }, + '🇦🇼': { + keywords: ['flag'], + }, + '🇦🇽': { + keywords: ['åland', 'flag'], + }, + '🇦🇿': { + keywords: ['flag'], + }, + '🇧🇦': { + keywords: ['bosnia', 'flag', 'herzegovina'], + }, + '🇧🇧': { + keywords: ['flag'], + }, + '🇧🇩': { + keywords: ['flag'], + }, + '🇧🇪': { + keywords: ['flag'], + }, + '🇧🇫': { + keywords: ['burkina faso', 'flag'], + }, + '🇧🇬': { + keywords: ['flag'], + }, + '🇧🇭': { + keywords: ['flag'], + }, + '🇧🇮': { + keywords: ['flag'], + }, + '🇧🇯': { + keywords: ['flag'], + }, + '🇧🇱': { + keywords: ['barthelemy', 'barthélemy', 'flag', 'saint'], + }, + '🇧🇲': { + keywords: ['flag'], + }, + '🇧🇳': { + keywords: ['darussalam', 'flag'], + }, + '🇧🇴': { + keywords: ['flag'], + }, + '🇧🇶': { + keywords: ['bonaire', 'caribbean', 'eustatius', 'flag', 'netherlands', 'saba', 'sint'], + }, + '🇧🇷': { + keywords: ['flag'], + }, + '🇧🇸': { + keywords: ['flag'], + }, + '🇧🇹': { + keywords: ['flag'], + }, + '🇧🇻': { + keywords: ['bouvet', 'flag', 'island'], + }, + '🇧🇼': { + keywords: ['flag'], + }, + '🇧🇾': { + keywords: ['flag'], + }, + '🇧🇿': { + keywords: ['flag'], + }, + '🇨🇦': { + keywords: ['flag'], + }, + '🇨🇨': { + keywords: ['keeling', 'cocos', 'flag', 'island'], + }, + '🇨🇩': { + keywords: ['congo', 'congo-kinshasa', 'democratic republic of congo', 'drc', 'flag', 'kinshasa', 'republic'], + }, + '🇨🇫': { + keywords: ['central african republic', 'flag', 'republic'], + }, + '🇨🇬': { + keywords: ['brazzaville', 'congo', 'congo republic', 'congo-brazzaville', 'flag', 'republic', 'republic of the congo'], + }, + '🇨🇭': { + keywords: ['flag'], + }, + '🇨🇮': { + keywords: ['ivory', 'cote ivoire', 'côte ivoire', 'flag', 'ivory coast'], + }, + '🇨🇰': { + keywords: ['cook', 'flag', 'island'], + }, + '🇨🇱': { + keywords: ['flag'], + }, + '🇨🇲': { + keywords: ['flag'], + }, + '🇨🇳': { + keywords: ['china', 'flag'], + }, + '🇨🇴': { + keywords: ['flag'], + }, + '🇨🇵': { + keywords: ['clipperton', 'flag', 'island'], + }, + '🇨🇷': { + keywords: ['costa rica', 'flag'], + }, + '🇨🇺': { + keywords: ['flag'], + }, + '🇨🇻': { + keywords: ['cabo', 'cape', 'flag', 'verde'], + }, + '🇨🇼': { + keywords: ['antilles', 'curaçao', 'flag'], + }, + '🇨🇽': { + keywords: ['christmas', 'flag', 'island'], + }, + '🇨🇾': { + keywords: ['flag'], + }, + '🇨🇿': { + keywords: ['czech republic', 'flag'], + }, + '🇩🇪': { + keywords: ['flag', 'germany'], + }, + '🇩🇬': { + keywords: ['diego garcia', 'flag'], + }, + '🇩🇯': { + keywords: ['flag'], + }, + '🇩🇰': { + keywords: ['flag'], + }, + '🇩🇲': { + keywords: ['flag'], + }, + '🇩🇴': { + keywords: ['dominican republic', 'flag'], + }, + '🇩🇿': { + keywords: ['flag'], + }, + '🇪🇦': { + keywords: ['ceuta', 'flag', 'melilla'], + }, + '🇪🇨': { + keywords: ['flag'], + }, + '🇪🇪': { + keywords: ['flag'], + }, + '🇪🇬': { + keywords: ['flag'], + }, + '🇪🇭': { + keywords: ['flag', 'sahara', 'west', 'western sahara'], + }, + '🇪🇷': { + keywords: ['flag'], + }, + '🇪🇸': { + keywords: ['spain', 'flag'], + }, + '🇪🇹': { + keywords: ['flag'], + }, + '🇪🇺': { + keywords: ['european_union', 'european union', 'flag'], + }, + '🇫🇮': { + keywords: ['flag'], + }, + '🇫🇯': { + keywords: ['flag'], + }, + '🇫🇰': { + keywords: ['falkland', 'falklands', 'flag', 'island', 'islas', 'malvinas'], + }, + '🇫🇲': { + keywords: ['flag'], + }, + '🇫🇴': { + keywords: ['faroe', 'flag', 'island'], + }, + '🇫🇷': { + keywords: ['france', 'french', 'flag'], + }, + '🇬🇦': { + keywords: ['flag'], + }, + '🇬🇧': { + keywords: ['flag', 'british', 'uk', 'britain', 'cornwall', 'england', 'great britain', 'ireland', 'northern ireland', 'scotland', 'union jack', 'united', 'united kingdom', 'wales'], + }, + '🇬🇩': { + keywords: ['flag'], + }, + '🇬🇪': { + keywords: ['flag'], + }, + '🇬🇫': { + keywords: ['flag', 'french', 'guiana'], + }, + '🇬🇬': { + keywords: ['flag'], + }, + '🇬🇭': { + keywords: ['flag'], + }, + '🇬🇮': { + keywords: ['flag'], + }, + '🇬🇱': { + keywords: ['flag'], + }, + '🇬🇲': { + keywords: ['flag'], + }, + '🇬🇳': { + keywords: ['flag'], + }, + '🇬🇵': { + keywords: ['flag'], + }, + '🇬🇶': { + keywords: ['equatorial guinea', 'flag', 'guinea'], + }, + '🇬🇷': { + keywords: ['flag'], + }, + '🇬🇸': { + keywords: ['flag', 'georgia', 'island', 'south', 'south georgia', 'south sandwich'], + }, + '🇬🇹': { + keywords: ['flag'], + }, + '🇬🇺': { + keywords: ['flag'], + }, + '🇬🇼': { + keywords: ['bissau', 'flag', 'guinea'], + }, + '🇬🇾': { + keywords: ['flag'], + }, + '🇭🇰': { + keywords: ['china', 'flag', 'hong kong'], + }, + '🇭🇲': { + keywords: ['flag', 'heard', 'island', 'mcdonald'], + }, + '🇭🇳': { + keywords: ['flag'], + }, + '🇭🇷': { + keywords: ['flag'], + }, + '🇭🇹': { + keywords: ['flag'], + }, + '🇭🇺': { + keywords: ['flag'], + }, + '🇮🇨': { + keywords: ['canary', 'flag', 'island'], + }, + '🇮🇩': { + keywords: ['flag'], + }, + '🇮🇪': { + keywords: ['flag'], + }, + '🇮🇱': { + keywords: ['flag'], + }, + '🇮🇲': { + keywords: ['flag', 'isle of man'], + }, + '🇮🇳': { + keywords: ['flag'], + }, + '🇮🇴': { + keywords: ['british', 'chagos', 'flag', 'indian ocean', 'island'], + }, + '🇮🇶': { + keywords: ['flag'], + }, + '🇮🇷': { + keywords: ['flag'], + }, + '🇮🇸': { + keywords: ['flag'], + }, + '🇮🇹': { + keywords: ['italy', 'flag'], + }, + '🇯🇪': { + keywords: ['flag'], + }, + '🇯🇲': { + keywords: ['flag'], + }, + '🇯🇴': { + keywords: ['flag'], + }, + '🇯🇵': { + keywords: ['japan', 'flag'], + }, + '🇰🇪': { + keywords: ['flag'], + }, + '🇰🇬': { + keywords: ['flag'], + }, + '🇰🇭': { + keywords: ['flag'], + }, + '🇰🇮': { + keywords: ['flag'], + }, + '🇰🇲': { + keywords: ['flag'], + }, + '🇰🇳': { + keywords: ['flag', 'kitts', 'nevis', 'saint'], + }, + '🇰🇵': { + keywords: ['flag', 'korea', 'north', 'north korea'], + }, + '🇰🇷': { + keywords: ['korea', 'flag', 'south', 'south korea'], + }, + '🇰🇼': { + keywords: ['flag'], + }, + '🇰🇾': { + keywords: ['cayman', 'flag', 'island'], + }, + '🇰🇿': { + keywords: ['flag'], + }, + '🇱🇦': { + keywords: ['flag'], + }, + '🇱🇧': { + keywords: ['flag'], + }, + '🇱🇨': { + keywords: ['flag', 'lucia', 'saint'], + }, + '🇱🇮': { + keywords: ['flag'], + }, + '🇱🇰': { + keywords: ['flag', 'sri lanka'], + }, + '🇱🇷': { + keywords: ['flag'], + }, + '🇱🇸': { + keywords: ['flag'], + }, + '🇱🇹': { + keywords: ['flag'], + }, + '🇱🇺': { + keywords: ['flag'], + }, + '🇱🇻': { + keywords: ['flag'], + }, + '🇱🇾': { + keywords: ['flag'], + }, + '🇲🇦': { + keywords: ['flag'], + }, + '🇲🇨': { + keywords: ['flag'], + }, + '🇲🇩': { + keywords: ['flag'], + }, + '🇲🇪': { + keywords: ['flag'], + }, + '🇲🇫': { + keywords: ['flag', 'french', 'martin', 'saint'], + }, + '🇲🇬': { + keywords: ['flag'], + }, + '🇲🇭': { + keywords: ['flag', 'island', 'marshall'], + }, + '🇲🇰': { + keywords: ['flag'], + }, + '🇲🇱': { + keywords: ['flag'], + }, + '🇲🇲': { + keywords: ['burma', 'flag'], + }, + '🇲🇳': { + keywords: ['flag'], + }, + '🇲🇴': { + keywords: ['china', 'flag', 'macao'], + }, + '🇲🇵': { + keywords: ['flag', 'island', 'mariana', 'north', 'northern mariana'], + }, + '🇲🇶': { + keywords: ['flag'], + }, + '🇲🇷': { + keywords: ['flag'], + }, + '🇲🇸': { + keywords: ['flag'], + }, + '🇲🇹': { + keywords: ['flag'], + }, + '🇲🇺': { + keywords: ['flag'], + }, + '🇲🇻': { + keywords: ['flag'], + }, + '🇲🇼': { + keywords: ['flag'], + }, + '🇲🇽': { + keywords: ['flag'], + }, + '🇲🇾': { + keywords: ['flag'], + }, + '🇲🇿': { + keywords: ['flag'], + }, + '🇳🇦': { + keywords: ['flag'], + }, + '🇳🇨': { + keywords: ['flag', 'new', 'new caledonia'], + }, + '🇳🇪': { + keywords: ['flag'], + }, + '🇳🇫': { + keywords: ['flag', 'island', 'norfolk'], + }, + '🇳🇬': { + keywords: ['flag'], + }, + '🇳🇮': { + keywords: ['flag'], + }, + '🇳🇱': { + keywords: ['flag'], + }, + '🇳🇴': { + keywords: ['flag'], + }, + '🇳🇵': { + keywords: ['flag'], + }, + '🇳🇷': { + keywords: ['flag'], + }, + '🇳🇺': { + keywords: ['flag'], + }, + '🇳🇿': { + keywords: ['flag', 'new', 'new zealand'], + }, + '🇴🇲': { + keywords: ['flag'], + }, + '🇵🇦': { + keywords: ['flag'], + }, + '🇵🇪': { + keywords: ['flag'], + }, + '🇵🇫': { + keywords: ['flag', 'french', 'polynesia'], + }, + '🇵🇬': { + keywords: ['flag', 'guinea', 'new', 'papua new guinea'], + }, + '🇵🇭': { + keywords: ['flag'], + }, + '🇵🇰': { + keywords: ['flag'], + }, + '🇵🇱': { + keywords: ['flag'], + }, + '🇵🇲': { + keywords: ['flag', 'miquelon', 'pierre', 'saint'], + }, + '🇵🇳': { + keywords: ['flag', 'island', 'pitcairn'], + }, + '🇵🇷': { + keywords: ['flag', 'puerto rico'], + }, + '🇵🇸': { + keywords: ['flag', 'palestine'], + }, + '🇵🇹': { + keywords: ['flag'], + }, + '🇵🇼': { + keywords: ['flag'], + }, + '🇵🇾': { + keywords: ['flag'], + }, + '🇶🇦': { + keywords: ['flag'], + }, + '🇷🇪': { + keywords: ['flag', 'réunion'], + }, + '🇷🇴': { + keywords: ['flag'], + }, + '🇷🇸': { + keywords: ['flag'], + }, + '🇷🇺': { + keywords: ['russia', 'flag'], + }, + '🇷🇼': { + keywords: ['flag'], + }, + '🇸🇦': { + keywords: ['flag', 'saudi arabia'], + }, + '🇸🇧': { + keywords: ['flag', 'island', 'solomon'], + }, + '🇸🇨': { + keywords: ['flag'], + }, + '🇸🇩': { + keywords: ['flag'], + }, + '🇸🇪': { + keywords: ['flag'], + }, + '🇸🇬': { + keywords: ['flag'], + }, + '🇸🇭': { + keywords: ['flag', 'helena', 'saint'], + }, + '🇸🇮': { + keywords: ['flag'], + }, + '🇸🇯': { + keywords: ['flag', 'jan mayen', 'svalbard'], + }, + '🇸🇰': { + keywords: ['flag'], + }, + '🇸🇱': { + keywords: ['flag', 'sierra leone'], + }, + '🇸🇲': { + keywords: ['flag', 'san marino'], + }, + '🇸🇳': { + keywords: ['flag'], + }, + '🇸🇴': { + keywords: ['flag'], + }, + '🇸🇷': { + keywords: ['flag'], + }, + '🇸🇸': { + keywords: ['flag', 'south', 'south sudan', 'sudan'], + }, + '🇸🇹': { + keywords: ['flag', 'principe', 'príncipe', 'sao tome', 'são tomé'], + }, + '🇸🇻': { + keywords: ['el salvador', 'flag'], + }, + '🇸🇽': { + keywords: ['flag', 'maarten', 'sint'], + }, + '🇸🇾': { + keywords: ['flag'], + }, + '🇸🇿': { + keywords: ['flag'], + }, + '🇹🇦': { + keywords: ['flag', 'tristan da cunha'], + }, + '🇹🇨': { + keywords: ['caicos', 'flag', 'island', 'turks'], + }, + '🇹🇩': { + keywords: ['flag'], + }, + '🇹🇫': { + keywords: ['antarctic', 'flag', 'french'], + }, + '🇹🇬': { + keywords: ['flag'], + }, + '🇹🇭': { + keywords: ['flag'], + }, + '🇹🇯': { + keywords: ['flag'], + }, + '🇹🇰': { + keywords: ['flag'], + }, + '🇹🇱': { + keywords: ['east', 'east timor', 'flag', 'timor-leste'], + }, + '🇹🇲': { + keywords: ['flag'], + }, + '🇹🇳': { + keywords: ['flag'], + }, + '🇹🇴': { + keywords: ['flag'], + }, + '🇹🇷': { + keywords: ['turkey', 'flag'], + }, + '🇹🇹': { + keywords: ['flag', 'tobago', 'trinidad'], + }, + '🇹🇻': { + keywords: ['flag'], + }, + '🇹🇼': { + keywords: ['china', 'flag'], + }, + '🇹🇿': { + keywords: ['flag'], + }, + '🇺🇦': { + keywords: ['flag'], + }, + '🇺🇬': { + keywords: ['flag'], + }, + '🇺🇲': { + keywords: ['america', 'flag', 'island', 'minor outlying', 'united', 'united states', 'us', 'usa'], + }, + '🇺🇳': { + keywords: ['flag'], + }, + '🇺🇸': { + keywords: ['flag', 'united', 'america', 'stars and stripes', 'united states'], + }, + '🇺🇾': { + keywords: ['flag'], + }, + '🇺🇿': { + keywords: ['flag'], + }, + '🇻🇦': { + keywords: ['flag', 'vatican'], + }, + '🇻🇨': { + keywords: ['flag', 'grenadines', 'saint', 'vincent'], + }, + '🇻🇪': { + keywords: ['flag'], + }, + '🇻🇬': { + keywords: ['british', 'flag', 'island', 'virgin'], + }, + '🇻🇮': { + keywords: ['america', 'american', 'flag', 'island', 'united', 'united states', 'us', 'usa', 'virgin'], + }, + '🇻🇳': { + keywords: ['flag', 'viet nam'], + }, + '🇻🇺': { + keywords: ['flag'], + }, + '🇼🇫': { + keywords: ['flag', 'futuna', 'wallis'], + }, + '🇼🇸': { + keywords: ['flag'], + }, + '🇽🇰': { + keywords: ['flag'], + }, + '🇾🇪': { + keywords: ['flag'], + }, + '🇾🇹': { + keywords: ['flag'], + }, + '🇿🇦': { + keywords: ['flag', 'south', 'south africa'], + }, + '🇿🇲': { + keywords: ['flag'], + }, + '🇿🇼': { + keywords: ['flag'], + }, + '🏴󠁧󠁢󠁥󠁮󠁧󠁿': { + keywords: ['flag'], + }, + '🏴󠁧󠁢󠁳󠁣󠁴󠁿': { + keywords: ['flag'], + }, + '🏴󠁧󠁢󠁷󠁬󠁳󠁿': { + keywords: ['flag'], + }, +}; + +export default enEmojis; diff --git a/assets/emojis/es.js b/assets/emojis/es.js new file mode 100644 index 000000000000..c38aec7aa754 --- /dev/null +++ b/assets/emojis/es.js @@ -0,0 +1,7252 @@ +const esEmojis = { + '😀': { + name: 'sonriendo', + keywords: ['cara', 'divertido', 'feliz', 'sonrisa', 'cara sonriendo'], + }, + '😃': { + name: 'sonriente', + keywords: ['cara', 'divertido', 'risa', 'sonriendo', 'cara sonriendo con ojos grandes'], + }, + '😄': { + name: 'sonrisa', + keywords: ['abierta', 'cara', 'ojo', 'sonrisa', 'cara sonriendo con ojos sonrientes'], + }, + '😁': { + name: 'sonrisa_burlona', + keywords: ['cara', 'ojo', 'risa', 'sonrisa', 'cara radiante con ojos sonrientes'], + }, + '😆': { + name: 'risa', + keywords: ['abierta', 'boca', 'cara', 'risa', 'cara sonriendo con los ojos cerrados'], + }, + '😅': { + name: 'sonrisa_con_sudor', + keywords: ['cara', 'frío', 'risa', 'sudor', 'cara sonriendo con sudor frío'], + }, + '🤣': { + name: 'muriéndose_de_risa', + keywords: ['cara', 'carcajada', 'ojos cerrados', 'risa', 'cara revolviéndose de la risa'], + }, + '😂': { + name: 'alegría', + keywords: ['cara', 'felicidad', 'lágrima', 'risa', 'cara llorando de risa'], + }, + '🙂': { + name: 'cara_ligeramente_sonriente', + keywords: ['cara', 'sonrisa', 'cara sonriendo ligeramente'], + }, + '🙃': { + name: 'cara_boca_arriba', + keywords: ['cara', 'revés', 'cara al revés'], + }, + '😉': { + name: 'guiño', + keywords: ['cara', 'guiño', 'cara guiñando el ojo'], + }, + '😊': { + name: 'sonrojo', + keywords: ['cara', 'ojo', 'rubor', 'sonrisa', 'cara feliz con ojos sonrientes'], + }, + '😇': { + name: 'inocente', + keywords: ['ángel', 'cara', 'halo', 'sonrisa', 'cara sonriendo con aureola'], + }, + '🥰': { + name: 'cara_sonriendo_con_corazones', + keywords: ['adorar', 'amor', 'corazones', 'enamorada', 'enamorado', 'cara sonriendo con corazones'], + }, + '😍': { + name: 'ojos_de_corazón', + keywords: ['amor', 'cara', 'corazón', 'sonrisa', 'cara sonriendo con ojos de corazón'], + }, + '🤩': { + name: 'ojos_estrella', + keywords: ['cara', 'estrellas', 'sonrisa', 'cara sonriendo con estrellas'], + }, + '😘': { + name: 'beso_de_corazón', + keywords: ['beso', 'cara', 'cara lanzando un beso'], + }, + '😗': { + name: 'besos', + keywords: ['beso', 'cara', 'cara besando'], + }, + '☺️': { + name: 'relajado', + keywords: ['cara', 'contorno', 'relajado', 'sonrisa', 'cara sonriente'], + }, + '😚': { + name: 'beso_con_ojos_cerrados', + keywords: ['beso', 'cara', 'cerrado', 'ojo', 'cara besando con los ojos cerrados'], + }, + '😙': { + name: 'besando_con_ojos_sonrientes', + keywords: ['beso', 'cara', 'ojo', 'sonrisa', 'cara besando con ojos sonrientes'], + }, + '🥲': { + name: 'cara_sonriente_con_lágrima', + keywords: ['agradecido', 'aliviado', 'emocionado', 'lágrima', 'orgulloso', 'sonrisa', 'cara sonriente con lágrima'], + }, + '😋': { + name: 'sabroso', + keywords: ['cara', 'delicioso', 'hambre', 'rico', 'cara saboreando comida'], + }, + '😛': { + name: 'lengua_fuera', + keywords: ['cara', 'lengua', 'cara sacando la lengua'], + }, + '😜': { + name: 'lengua_fuera_con_guiño_de_ojos', + keywords: ['cara', 'guiño', 'lengua', 'ojo', 'cara sacando la lengua y guiñando un ojo'], + }, + '🤪': { + name: 'cara_loco', + keywords: ['grande', 'ojo', 'pequeño', 'cara de loco'], + }, + '😝': { + name: 'lengua_fuera_con_ojos_cerrados', + keywords: ['cara', 'lengua', 'ojo', 'sabor', 'cara con ojos cerrados y lengua fuera'], + }, + '🤑': { + name: 'cara_con_dinero_en_la_boca', + keywords: ['boca', 'cara', 'dinero', 'cara con lengua de dinero'], + }, + '🤗': { + name: 'cara_abrazando', + keywords: ['abrazo', 'cara', 'sonrisa', 'cara con manos abrazando'], + }, + '🤭': { + name: 'cara_con_mano_sobre_boca', + keywords: ['ostras', 'uy', 'vaya', 'cara con mano sobre la boca'], + }, + '🤫': { + name: 'calla', + keywords: ['callado', 'silencio', 'cara pidiendo silencio'], + }, + '🤔': { + name: 'cara_pensativa', + keywords: ['cara', 'duda', 'pensando', 'cara pensativa'], + }, + '🤐': { + name: 'cara_con_boca_de_cremallera', + keywords: ['boca', 'cara', 'cremallera', 'cara con la boca cerrada con cremallera'], + }, + '🤨': { + name: 'cara_con_ceja_levantada', + keywords: ['desconfiado', 'escéptico', 'cara con ceja alzada'], + }, + '😐': { + name: 'cara_neutra', + keywords: ['cara', 'inexpresivo', 'neutral'], + }, + '😑': { + name: 'inexpresivo', + keywords: ['cara', 'inexpresión', 'inexpresiva', 'inexpresivo', 'cara sin expresión'], + }, + '😶': { + name: 'prohibido_hablar', + keywords: ['boca', 'callado', 'cara', 'silencio', 'cara sin boca'], + }, + '😶‍🌫️': { + name: 'prohibido_hablar', + keywords: ['atontado', 'cara', 'despistado', 'distraído', 'nubes', 'parra', 'cara en las nubes'], + }, + '😏': { + name: 'sonrisita', + keywords: ['cara', 'listillo', 'superioridad', 'cara sonriendo con superioridad'], + }, + '😒': { + name: 'no_interesado', + keywords: ['cara', 'insatisfacción', 'rechazo', 'cara de desaprobación'], + }, + '🙄': { + name: 'cara_con_ojos_en_blanco', + keywords: ['cara', 'frustración', 'ojos', 'vueltos', 'cara con ojos en blanco'], + }, + '😬': { + name: 'muecas', + keywords: ['cara', 'mueca', 'cara haciendo una mueca'], + }, + '😮‍💨': { + name: 'boca_abierta', + keywords: ['cara', 'exhalar', 'resoplido', 'respirar', 'silbato', 'silbido', 'cara exhalando'], + }, + '🤥': { + name: 'cara_de_mentiroso', + keywords: ['cara', 'mentiroso', 'nariz', 'pinocho', 'cara de mentiroso'], + }, + '😌': { + name: 'aliviado', + keywords: ['aliviado', 'cara', 'cara de alivio'], + }, + '😔': { + name: 'pensativo', + keywords: ['alicaído', 'cara', 'desanimado', 'pensativo', 'cara desanimada'], + }, + '😪': { + name: 'soñoliento', + keywords: ['cara', 'dormir', 'sueño', 'cara de sueño'], + }, + '🤤': { + name: 'cara-babeando', + keywords: ['baba', 'babeando', 'cara'], + }, + '😴': { + name: 'durmiendo', + keywords: ['cara', 'dormido', 'sueño', 'zzz', 'cara durmiendo'], + }, + '😷': { + name: 'máscara', + keywords: ['cara', 'enfermo', 'malo', 'máscara', 'cara con mascarilla médica'], + }, + '🤒': { + name: 'cara_con_termómetro', + keywords: ['cara', 'enfermo', 'malo', 'termómetro', 'cara con termómetro'], + }, + '🤕': { + name: 'cara_con_la_cabeza_vendada', + keywords: ['cara', 'dolor', 'herida', 'venda', 'cara con la cabeza vendada'], + }, + '🤢': { + name: 'cara_de_asco', + keywords: ['cara', 'náuseas', 'vomitar', 'cara de náuseas'], + }, + '🤮': { + name: 'cara_vomitando', + keywords: ['enfermo', 'malo', 'vomitar', 'cara vomitando'], + }, + '🤧': { + name: 'cara_estornudando', + keywords: ['cara', 'estornudar', 'estornudo', 'pañuelo', 'cara estornudando'], + }, + '🥵': { + name: 'cara_con_calor', + keywords: ['calor', 'cara roja', 'fiebre', 'golpe de calor', 'sudor', 'cara con calor'], + }, + '🥶': { + name: 'cara_con_frío', + keywords: ['cara congelada', 'congelado', 'frío', 'helado', 'cara con frío'], + }, + '🥴': { + name: 'cara_de_grogui', + keywords: ['atontado', 'entonado', 'grogui', 'intoxicado', 'mareado', 'cara de grogui'], + }, + '😵': { + name: 'cara_de_mareo', + keywords: ['cara', 'mareo', 'cara mareada'], + }, + '😵‍💫': { + name: 'cara_de_mareo', + keywords: ['alucinado', 'desmayado', 'hipnotizado', 'locura', 'mareado', 'problema', 'cara con ojos de espiral'], + }, + '🤯': { + name: 'cabeza_explotando', + keywords: ['cabeza', 'explosión', 'cabeza explotando'], + }, + '🤠': { + name: 'cara_con_sombrero_vaquero', + keywords: ['cara', 'sombrero', 'vaquera', 'vaquero', 'cara con sombrero de vaquero'], + }, + '🥳': { + name: 'cara_de_fiesta', + keywords: ['capirote', 'celebración', 'fiesta', 'gorro', 'matasuegras', 'cara de fiesta'], + }, + '🥸': { + name: 'cara_disfrazada', + keywords: ['careta', 'disfraz', 'disimulo', 'gafas', 'incógnito', 'nariz', 'cara disfrazada'], + }, + '😎': { + name: 'gafas_de_sol', + keywords: ['cara', 'gafas', 'guay', 'sol', 'cara sonriendo con gafas de sol'], + }, + '🤓': { + name: 'cara_de_nerd', + keywords: ['cara', 'empollón', 'friki', 'friqui', 'cara de empollón'], + }, + '🧐': { + name: 'cara_con_monóculo', + keywords: ['aristocrático', 'estirado', 'cara con monóculo'], + }, + '😕': { + name: 'desconcertado', + keywords: ['cara', 'confuso', 'cara de confusión'], + }, + '😟': { + name: 'preocupado', + keywords: ['cara', 'preocupación', 'preocupado', 'cara preocupada'], + }, + '🙁': { + name: 'cara_con_el_ceño_ligeramente_fruncido', + keywords: ['cara', 'ceño', 'fruncido', 'cara con el ceño ligeramente fruncido'], + }, + '☹️': { + name: 'cara_blanca_ceñuda', + keywords: ['cara', 'ceño', 'fruncido', 'cara con el ceño fruncido'], + }, + '😮': { + name: 'boca_abierta', + keywords: ['boca', 'cara', 'cara con la boca abierta'], + }, + '😯': { + name: 'silencioso', + keywords: ['alucinado', 'cara', 'estupefacto', 'sorprendido', 'cara estupefacta'], + }, + '😲': { + name: 'asombrado', + keywords: ['alucinado', 'asombrado', 'cara', 'pasmado', 'cara asombrada'], + }, + '😳': { + name: 'sonrojado', + keywords: ['cara', 'colorado', 'sonrojado', 'cara sonrojada'], + }, + '🥺': { + name: 'cara_de_por_favor', + keywords: ['implorar', 'ojos adorables', 'piedad', 'por favor', 'cara suplicante'], + }, + '😦': { + name: 'ceñudo', + keywords: ['boca abierta', 'cara', 'ceño fruncido con boca abierta', 'cara con el ceño fruncido y la boca abierta'], + }, + '😧': { + name: 'angustiado', + keywords: ['angustia', 'angustiado', 'cara', 'cara angustiada'], + }, + '😨': { + name: 'temeroso', + keywords: ['asustado', 'cara', 'miedo', 'miedoso', 'cara asustada'], + }, + '😰': { + name: 'sudor_frío', + keywords: ['ansiedad', 'cara', 'frío', 'sudor', 'cara con ansiedad y sudor'], + }, + '😥': { + name: 'decepcionado_aliviado', + keywords: ['aliviado', 'cara', 'decepcionado', 'menos mal', 'cara triste pero aliviada'], + }, + '😢': { + name: 'lloros', + keywords: ['cara', 'lágrima', 'llorar', 'triste', 'cara llorando'], + }, + '😭': { + name: 'sollozo', + keywords: ['cara', 'lágrima', 'llorar', 'triste', 'cara llorando fuerte'], + }, + '😱': { + name: 'grito', + keywords: ['asustado', 'cara', 'miedo', 'pánico', 'cara gritando de miedo'], + }, + '😖': { + name: 'aturdido', + keywords: ['cara', 'frustrado', 'cara de frustración'], + }, + '😣': { + name: 'tenacidad', + keywords: ['cara', 'desesperación', 'frustración', 'cara desesperada'], + }, + '😞': { + name: 'decepcionado', + keywords: ['cara', 'decepción', 'decepcionado', 'cara decepcionada'], + }, + '😓': { + name: 'sudor', + keywords: ['cara', 'frío', 'sudor', 'cara con sudor frío'], + }, + '😩': { + name: 'cansado', + keywords: ['agotado', 'cansado', 'cara', 'cara agotada'], + }, + '😫': { + name: 'cara_cansada', + keywords: ['cansado', 'cara', 'cara cansada'], + }, + '🥱': { + name: 'cara_de_bostezo', + keywords: ['aburrido', 'bostezo', 'cansado', 'dormido', 'sueño', 'cara de bostezo'], + }, + '😤': { + name: 'triunfo', + keywords: ['cabreo', 'cara', 'enfado', 'cara resoplando'], + }, + '😡': { + name: 'rabia', + keywords: ['cabreo', 'cara', 'enfadado', 'furia', 'cara cabreada'], + }, + '😠': { + name: 'enfado', + keywords: ['cara', 'enfadado', 'histérico', 'cara enfadada'], + }, + '🤬': { + name: 'cara_con_símbolos_en_boca', + keywords: ['maldecir', 'palabrota', 'símbolo', 'cara con símbolos en la boca'], + }, + '😈': { + name: 'diablillo_sonriente', + keywords: ['cara', 'cuernos', 'demonio', 'sonrisa', 'cara sonriendo con cuernos'], + }, + '👿': { + name: 'diablillo', + keywords: ['cara', 'cuernos', 'demonio', 'diablo', 'cara enfadada con cuernos'], + }, + '💀': { + name: 'calavera', + keywords: ['cara', 'cuento', 'monstruo', 'muerte', 'calavera'], + }, + '☠️': { + name: 'calavera_y_tibias_cruzadas', + keywords: ['calavera', 'cara', 'huesos', 'muerte', 'calavera y huesos cruzados'], + }, + '💩': { + name: 'zurullo', + keywords: ['caca', 'cómic', 'mierda', 'mojón', 'caca con ojos'], + }, + '🤡': { + name: 'cara_payaso', + keywords: ['cara', 'payaso', 'cara de payaso'], + }, + '👹': { + name: 'ogro_japonés', + keywords: ['cara', 'cuento', 'cuernos', 'sonrisa', 'demonio japonés oni'], + }, + '👺': { + name: 'duende_japonés', + keywords: ['cara', 'cuento', 'fantasía', 'monstruo', 'tengu', 'demonio japonés tengu'], + }, + '👻': { + name: 'fantasma', + keywords: ['cara', 'criatura', 'cuento', 'monstruo', 'fantasma'], + }, + '👽': { + name: 'extraterrestre', + keywords: ['alien', 'cara', 'criatura', 'extraterrestre', 'ovni', 'alienígena'], + }, + '👾': { + name: 'invasor_del_espacio', + keywords: ['alien', 'cara', 'criatura', 'extraterrestre', 'ovni', 'monstruo alienígena'], + }, + '🤖': { + name: 'cara_de_robot', + keywords: ['cara', 'monstruo', 'robot'], + }, + '😺': { + name: 'gato_sonriente', + keywords: ['cara', 'feliz', 'gato alegre', 'gato feliz', 'sonrisa', 'gato sonriendo'], + }, + '😸': { + name: 'gato_sonrisa', + keywords: ['cara', 'gato', 'ojos', 'sonriente', 'sonrisa', 'gato sonriendo con ojos sonrientes'], + }, + '😹': { + name: 'gato_alegre', + keywords: ['cara', 'gato', 'lágrima', 'risa', 'gato llorando de risa'], + }, + '😻': { + name: 'gato_con_ojos_de_corazón', + keywords: ['cara', 'corazón', 'enamorado', 'gato', 'gato sonriendo con ojos de corazón'], + }, + '😼': { + name: 'gato_con_sonrisa_de_satisfacción', + keywords: ['cara', 'gato', 'irónico', 'sonrisa', 'gato haciendo una mueca'], + }, + '😽': { + name: 'gato_besando', + keywords: ['beso', 'cara', 'cariñoso', 'gato', 'gato besando'], + }, + '🙀': { + name: 'gato_gritando', + keywords: ['cara', 'gato', 'pánico', 'preocupación', 'sorpresa', 'gato asustado'], + }, + '😿': { + name: 'cara_de_gato_lloroso', + keywords: ['cara', 'gato', 'lágrima', 'pena', 'triste', 'gato llorando'], + }, + '😾': { + name: 'gato_enfadado', + keywords: ['cara', 'enfadado', 'gato'], + }, + '🙈': { + name: 'mono_ojos_tapados', + keywords: ['cara', 'mal', 'mono', 'prohibido', 'mono con los ojos tapados'], + }, + '🙉': { + name: 'mono_sordo', + keywords: ['cara', 'mal', 'mono', 'prohibido', 'mono con los oídos tapados'], + }, + '🙊': { + name: 'no_decir_nada', + keywords: ['cara', 'mal', 'mono', 'prohibido', 'mono con la boca tapada'], + }, + '💋': { + name: 'beso', + keywords: ['beso', 'labios', 'romance', 'marca de beso'], + }, + '💌': { + name: 'carta_de_amor', + keywords: ['amor', 'carta', 'corazón', 'correo', 'carta de amor'], + }, + '💘': { + name: 'cupido', + keywords: ['amor', 'corazón', 'emoción', 'flecha', 'corazón con flecha'], + }, + '💝': { + name: 'corazón_de_regalo', + keywords: ['corazón', 'emoción', 'lazo', 'san valentín', 'corazón con lazo'], + }, + '💖': { + name: 'corazón_refulgente', + keywords: ['amor', 'brillante', 'emoción', 'corazón brillante'], + }, + '💗': { + name: 'ritmo_cardíaco', + keywords: ['corazón', 'creciente', 'emocionado', 'latido', 'nervioso'], + }, + '💓': { + name: 'latido', + keywords: ['amor', 'corazón', 'emoción', 'latido', 'corazón latiendo'], + }, + '💞': { + name: 'corazones_girando', + keywords: ['corazón', 'giratorio', 'corazones giratorios'], + }, + '💕': { + name: 'dos_corazones', + keywords: ['amantes', 'amor', 'corazón', 'dos corazones'], + }, + '💟': { + name: 'corazón_decorativo', + keywords: ['corazón', 'adorno de corazón'], + }, + '❣️': { + name: 'signo_de_exclamación_en_forma_de_corazón_grueso', + keywords: ['corazón', 'exclamación', 'puntuación', 'exclamación de corazón'], + }, + '💔': { + name: 'corazón_partido', + keywords: ['corazón', 'emoción', 'partido', 'roto'], + }, + '❤️‍🔥': { + name: 'corazón', + keywords: ['amor', 'corazón', 'fuego', 'llamas', 'lujuria', 'pasión', 'corazón en llamas'], + }, + '❤️‍🩹': { + name: 'corazón', + keywords: ['bien', 'cura', 'mejor', 'mejora', 'recuperación', 'salud', 'corazón curándose'], + }, + '❤️': { + name: 'corazón', + keywords: ['corazón', 'emoción', 'rojo'], + }, + '🧡': { + name: 'corazón_naranja', + keywords: ['corazón', 'emoción', 'naranja'], + }, + '💛': { + name: 'corazón_amarillo', + keywords: ['amarillo', 'corazón', 'emoción'], + }, + '💚': { + name: 'corazón_verde', + keywords: ['corazón', 'emoción', 'verde'], + }, + '💙': { + name: 'corazón_azul', + keywords: ['azul', 'corazón', 'emoción'], + }, + '💜': { + name: 'corazón_púrpura', + keywords: ['corazón', 'emoción', 'morado'], + }, + '🤎': { + name: 'corazón_marrón', + keywords: ['corazón', 'emoción', 'marrón'], + }, + '🖤': { + name: 'corazón_negro', + keywords: ['corazón', 'negro'], + }, + '🤍': { + name: 'corazón_blanco', + keywords: ['blanco', 'corazón', 'emoción'], + }, + '💯': { + name: '100', + keywords: ['100', 'pleno', 'puntos', 'cien puntos'], + }, + '💢': { + name: 'ira', + keywords: ['cómic', 'enfadado', 'enfado', 'símbolo de enfado'], + }, + '💥': { + name: 'bum', + keywords: ['cómic', 'colisión'], + }, + '💫': { + name: 'mareado', + keywords: ['cómic', 'emoción', 'estrella', 'mareo', 'símbolo de mareo'], + }, + '💦': { + name: 'gotas_de_sudor', + keywords: ['cómic', 'emoción', 'sudor', 'gotas de sudor'], + }, + '💨': { + name: 'guión', + keywords: ['carrera', 'cómic', 'correr', 'humo', 'salir corriendo'], + }, + '🕳️': { + name: 'agujero', + keywords: ['orificio', 'agujero'], + }, + '💣': { + name: 'bomba', + keywords: ['cómic', 'emoción', 'bomba'], + }, + '💬': { + name: 'bocadillo_de_diálogo', + keywords: ['bocadillo', 'cómic', 'conversación', 'diálogo', 'bocadillo de diálogo'], + }, + '👁️‍🗨️': { + name: 'ojo-en-globo-de-texto', + keywords: ['bocadillo de texto', 'ojo', 'testigo', 'ojo en bocadillo de texto'], + }, + '🗨️': { + name: 'bocadillo_a_la_izquierda', + keywords: ['bocadillo', 'burbuja', 'conversación', 'diálogo', 'bocadillo de diálogo por la izquierda'], + }, + '🗯️': { + name: 'bocadillo_para_palabras_de_enfado', + keywords: ['bocadillo', 'cabreo', 'enfado', 'rabia', 'bocadillo de enfado por la derecha'], + }, + '💭': { + name: 'bocadillo_para_pensamientos', + keywords: ['bocadillo', 'burbuja', 'cómic', 'pensamiento', 'bocadillo de pensamiento'], + }, + '💤': { + name: 'zzz', + keywords: ['cómic', 'dormir', 'sueño', 'zzz', 'símbolo de sueño'], + }, + '👋': { + name: 'hola', + keywords: ['agitar', 'mano', 'saludar', 'saludo', 'mano saludando'], + }, + '🤚': { + name: 'palma_de_mano_levantada', + keywords: ['dorso', 'levantado', 'mano', 'dorso de la mano'], + }, + '🖐️': { + name: 'mano_levantada_con_los_dedos_extendidos', + keywords: ['abierta', 'dedo', 'mano'], + }, + '✋': { + name: 'mano', + keywords: ['choca esos cinco', 'levantada', 'mano'], + }, + '🖖': { + name: 'saludo_de_spock', + keywords: ['mano', 'saludo', 'spock', 'vulcano'], + }, + '👌': { + name: 'mano_con_signo_de_aprobación', + keywords: ['aprobación', 'mano', 'ok', 'señal de aprobación con la mano'], + }, + '🤌': { + name: 'dedos_juntos_apuntando_hacia_arriba', + keywords: ['dedos', 'gesto', 'italia', 'italiano', 'mano', 'sarcasmo', 'dedos juntos apuntando hacia arriba'], + }, + '🤏': { + name: 'mano_pellizcando', + keywords: ['pellizco', 'poco', 'poquito', 'mano pellizcando'], + }, + '✌️': { + name: 'v', + keywords: ['mano', 'señal de victoria', 'victoria', 'mano con señal de victoria'], + }, + '🤞': { + name: 'dedos_cruzados', + keywords: ['cruzar', 'dedos', 'mano', 'suerte', 'dedos cruzados'], + }, + '🤟': { + name: 'te_amo_en_lenguaje_de_señas', + keywords: ['mano', 'quiero', 'gesto de te quiero'], + }, + '🤘': { + name: 'los_cuernos', + keywords: ['cuernos', 'dedo', 'mano', 'rock', 'mano haciendo el signo de cuernos'], + }, + '🤙': { + name: 'mano_llámame', + keywords: ['llamar', 'mano', 'meñique', 'pulgar', 'mano haciendo el gesto de llamar'], + }, + '👈': { + name: 'apuntando_hacia_la_izquierda', + keywords: ['dedo', 'índice', 'izquierda', 'mano', 'dorso de mano con índice a la izquierda'], + }, + '👉': { + name: 'apuntando_hacia_la_derecha', + keywords: ['dedo', 'derecha', 'índice', 'mano', 'dorso de mano con índice a la derecha'], + }, + '👆': { + name: 'apuntando_hacia_arriba_2', + keywords: ['apuntar', 'arriba', 'dedo', 'mano', 'dorso de mano con índice hacia arriba'], + }, + '🖕': { + name: 'dedo_corazón', + keywords: ['corazón', 'dedo', 'mano', 'peineta', 'dedo corazón hacia arriba'], + }, + '👇': { + name: 'apuntando_hacia_abajo', + keywords: ['abajo', 'apuntar', 'dedo', 'mano', 'dorso de mano con índice hacia abajo'], + }, + '☝️': { + name: 'apuntando_hacia_arriba', + keywords: ['apuntar', 'arriba', 'dedo', 'mano', 'dedo índice hacia arriba'], + }, + '👍': { + name: '+1', + keywords: ['arriba', 'mano', 'pulgar', 'señal', 'pulgar hacia arriba'], + }, + '👎': { + name: '-1', + keywords: ['abajo', 'mano', 'pulgar', 'señal', 'pulgar hacia abajo'], + }, + '✊': { + name: 'puño', + keywords: ['cerrado', 'mano', 'puñetazo', 'puño', 'puño en alto'], + }, + '👊': { + name: 'puñetazo', + keywords: ['puñetazo', 'puño', 'puño cerrado'], + }, + '🤛': { + name: 'puño-hacia-izquierda', + keywords: ['izquierda', 'puño', 'puño hacia la izquierda'], + }, + '🤜': { + name: 'puño_hacia_la_derecha', + keywords: ['derecha', 'puño', 'puño hacia la derecha'], + }, + '👏': { + name: 'aplauso', + keywords: ['aplaudir', 'manos', 'palmas', 'señal', 'manos aplaudiendo'], + }, + '🙌': { + name: 'manos_levantadas', + keywords: ['celebración', 'gesto', 'hurra', 'mano', 'manos levantadas celebrando'], + }, + '👐': { + name: 'manos_abiertas', + keywords: ['abiertas', 'manos'], + }, + '🤲': { + name: 'palmas_hacia_arriba_juntas', + keywords: ['oración', 'palmas hacia arriba juntas'], + }, + '🤝': { + name: 'apretón-manos', + keywords: ['acuerdo', 'apretón', 'manos', 'apretón de manos'], + }, + '🙏': { + name: 'rezo', + keywords: ['gracias', 'mano', 'oración', 'orar', 'por favor', 'rezar', 'manos en oración'], + }, + '✍️': { + name: 'mano_escribiendo', + keywords: ['escribir', 'lápiz', 'mano', 'mano escribiendo'], + }, + '💅': { + name: 'cuidado_de_las_uñas', + keywords: ['cosmética', 'esmalte', 'manicura', 'uñas', 'pintarse las uñas'], + }, + '🤳': { + name: 'selfi', + keywords: ['autofoto', 'cámara', 'selfie', 'teléfono', 'selfi'], + }, + '💪': { + name: 'músculo', + keywords: ['bíceps', 'cómic', 'flexionado', 'fuerte', 'músculo'], + }, + '🦾': { + name: 'brazo_mecánico', + keywords: ['accesibilidad', 'ortopedia', 'prótesis', 'brazo mecánico'], + }, + '🦿': { + name: 'pierna_mecánica', + keywords: ['accesibilidad', 'ortopedia', 'prótesis', 'pierna mecánica'], + }, + '🦵': { + name: 'pierna', + keywords: ['extremidad', 'patada', 'pierna'], + }, + '🦶': { + name: 'pie_humano', + keywords: ['patada', 'pisotón', 'pie'], + }, + '👂': { + name: 'oreja', + keywords: ['cuerpo', 'oreja'], + }, + '🦻': { + name: 'oreja_con_audifono', + keywords: ['accesibilidad', 'audífono', 'prótesis auditiva', 'sordo', 'oreja con audífono'], + }, + '👃': { + name: 'nariz', + keywords: ['cuerpo', 'nariz'], + }, + '🧠': { + name: 'cerebro', + keywords: ['inteligente', 'cerebro'], + }, + '🫀': { + name: 'corazón_humano', + keywords: ['cardiología', 'corazón', 'latido', 'órgano', 'pulso', 'anatomía', 'corazón humano'], + }, + '🫁': { + name: 'pulmones', + keywords: ['exhalar', 'inhalar', 'órgano', 'respiración', 'respirar', 'pulmones'], + }, + '🦷': { + name: 'diente', + keywords: ['dentista', 'molar', 'muela', 'diente'], + }, + '🦴': { + name: 'hueso', + keywords: ['esqueleto', 'hueso'], + }, + '👀': { + name: 'ojos', + keywords: ['cara', 'ojos'], + }, + '👁️': { + name: 'ojo', + keywords: ['cuerpo', 'ojo'], + }, + '👅': { + name: 'lengua', + keywords: ['cuerpo', 'lengua'], + }, + '👄': { + name: 'labios', + keywords: ['labios', 'boca'], + }, + '👶': { + name: 'bebé', + keywords: ['joven', 'niño', 'bebé'], + }, + '🧒': { + name: 'niño', + keywords: ['crío', 'género', 'joven', 'neutro', 'infante'], + }, + '👦': { + name: 'chico', + keywords: ['joven', 'niño'], + }, + '👧': { + name: 'niña', + keywords: ['chica', 'joven', 'niña'], + }, + '🧑': { + name: 'adulto', + keywords: ['género', 'neutro', 'persona adulta'], + }, + '👱': { + name: 'persona_rubia', + keywords: ['rubia', 'rubias', 'rubio', 'rubios', 'persona adulta rubia'], + }, + '👨': { + name: 'hombre', + keywords: ['adulto', 'hombre'], + }, + '🧔': { + name: 'persona_barba', + keywords: ['barbas', 'barbudo', 'persona', 'persona con barba'], + }, + '🧔‍♂️': { + name: 'persona_barba', + keywords: ['barba', 'hombre', 'hombre: barba'], + }, + '🧔‍♀️': { + name: 'persona_barba', + keywords: ['barba', 'mujer', 'mujer: barba'], + }, + '👨‍🦰': { + name: 'hombre_pelirrojo', + keywords: ['adulto', 'hombre', 'pelo pelirrojo'], + }, + '👨‍🦱': { + name: 'hombre_con_pelo_rizado', + keywords: ['adulto', 'hombre', 'pelo rizado'], + }, + '👨‍🦳': { + name: 'hombre_con_pelo_blanco', + keywords: ['adulto', 'hombre', 'pelo blanco'], + }, + '👨‍🦲': { + name: 'hombre_calvo', + keywords: ['adulto', 'hombre', 'sin pelo'], + }, + '👩': { + name: 'mujer', + keywords: ['adulta', 'mujer'], + }, + '👩‍🦰': { + name: 'mujer_pelirroja', + keywords: ['adulta', 'mujer', 'pelo pelirrojo'], + }, + '🧑‍🦰': { + name: 'persona_pelirroja', + keywords: ['género', 'neutro', 'pelo pelirrojo', 'persona adulta'], + }, + '👩‍🦱': { + name: 'mujer_de_pelo_rizado', + keywords: ['adulta', 'mujer', 'pelo rizado'], + }, + '🧑‍🦱': { + name: 'persona_con_pelo_rizado', + keywords: ['género', 'neutro', 'pelo rizado', 'persona adulta'], + }, + '👩‍🦳': { + name: 'mujer_con_pelo_blanco', + keywords: ['adulta', 'mujer', 'pelo blanco'], + }, + '🧑‍🦳': { + name: 'persona_con_pelo_blanco', + keywords: ['género', 'neutro', 'pelo blanco', 'persona adulta'], + }, + '👩‍🦲': { + name: 'mujer_calva', + keywords: ['adulta', 'mujer', 'sin pelo'], + }, + '🧑‍🦲': { + name: 'persona_calva', + keywords: ['género', 'neutro', 'persona adulta', 'sin pelo'], + }, + '👱‍♀️': { + name: 'mujer-pelo-rubio', + keywords: ['mujer', 'rubia', 'rubiales'], + }, + '👱‍♂️': { + name: 'hombre-pelo-rubio', + keywords: ['hombre', 'rubiales', 'rubio'], + }, + '🧓': { + name: 'adulto_mayor', + keywords: ['adulto', 'género neutro', 'género no especificado', 'maduro', 'mayor', 'persona mayor'], + }, + '👴': { + name: 'hombre_mayor', + keywords: ['hombre', 'mayor', 'anciano'], + }, + '👵': { + name: 'mujer_mayor', + keywords: ['mayor', 'mujer', 'anciana'], + }, + '🙍': { + name: 'persona_con_el_ceño_fruncido', + keywords: ['ceño', 'fruncido', 'gesto', 'persona', 'persona frunciendo el ceño'], + }, + '🙍‍♂️': { + name: 'hombre_con_ceño_fruncido', + keywords: ['ceño', 'fruncido', 'gesto', 'hombre', 'hombre frunciendo el ceño'], + }, + '🙍‍♀️': { + name: 'mujer_con_ceño_fruncido', + keywords: ['ceño', 'fruncido', 'gesto', 'mujer', 'mujer frunciendo el ceño'], + }, + '🙎': { + name: 'persona_haciendo_pucheros', + keywords: ['gesto', 'persona', 'pucheros', 'persona haciendo pucheros'], + }, + '🙎‍♂️': { + name: 'hombre_enfadado', + keywords: ['gesto', 'hombre', 'pucheros', 'hombre haciendo pucheros'], + }, + '🙎‍♀️': { + name: 'mujer_enfadada', + keywords: ['gesto', 'mujer', 'pucheros', 'mujer haciendo pucheros'], + }, + '🙅': { + name: 'prohibido', + keywords: ['gesto', 'mano', 'no', 'prohibido', 'persona haciendo el gesto de "no"'], + }, + '🙅‍♂️': { + name: 'hombre_gesticulando_no', + keywords: ['gesto', 'hombre', 'mano', 'prohibido', 'hombre haciendo el gesto de "no"'], + }, + '🙅‍♀️': { + name: 'mujer_gesticulando_no', + keywords: ['gesto', 'mano', 'mujer', 'prohibido', 'mujer haciendo el gesto de "no"'], + }, + '🙆': { + name: 'mujer_con_signo_de_aprobación', + keywords: ['gesto', 'mano', 'OK', 'vale', 'persona haciendo el gesto de "de acuerdo"'], + }, + '🙆‍♂️': { + name: 'hombre_gesticulando_sí', + keywords: ['gesto', 'mano', 'OK', 'vale', 'hombre haciendo el gesto de "de acuerdo"'], + }, + '🙆‍♀️': { + name: 'mujer_gesticulando_sí', + keywords: ['gesto', 'mano', 'OK', 'vale', 'mujer haciendo el gesto de "de acuerdo"'], + }, + '💁': { + name: 'recepcionista_de_información', + keywords: ['información', 'mano', 'mostrador', 'persona', 'persona de mostrador de información'], + }, + '💁‍♂️': { + name: 'hombre_con_palma_hacia_arriba', + keywords: ['hombre', 'información', 'mano', 'mostrador', 'empleado de mostrador de información'], + }, + '💁‍♀️': { + name: 'mujer_con_palma_hacia_arriba', + keywords: ['información', 'mano', 'mostrador', 'mujer', 'empleada de mostrador de información'], + }, + '🙋': { + name: 'levantando_la_mano', + keywords: ['feliz', 'gesto', 'levantar', 'mano', 'persona con la mano levantada'], + }, + '🙋‍♂️': { + name: 'hombre_levantando_mano', + keywords: ['gesto', 'hombre', 'levantar', 'mano', 'hombre con la mano levantada'], + }, + '🙋‍♀️': { + name: 'mujer_levantando_mano', + keywords: ['gesto', 'levantar', 'mano', 'mujer', 'mujer con la mano levantada'], + }, + '🧏': { + name: 'persona_sorda', + keywords: ['accesibilidad', 'escuchar', 'oído', 'oír', 'sordera', 'persona sorda'], + }, + '🧏‍♂️': { + name: 'hombre_sordo', + keywords: ['hombre', 'sordera', 'sordo'], + }, + '🧏‍♀️': { + name: 'mujer_sorda', + keywords: ['mujer', 'sorda', 'sordera'], + }, + '🙇': { + name: 'reverencia', + keywords: ['disculpa', 'gesto', 'perdón', 'reverencia', 'persona haciendo una reverencia'], + }, + '🙇‍♂️': { + name: 'hombre_reverencia', + keywords: ['disculpa', 'gesto', 'perdón', 'reverencia', 'hombre haciendo una reverencia'], + }, + '🙇‍♀️': { + name: 'mujer_reverencia', + keywords: ['disculpa', 'gesto', 'perdón', 'reverencia', 'mujer haciendo una reverencia'], + }, + '🤦': { + name: 'mano_en_la_cara', + keywords: ['facepalm', 'frente', 'incredulidad', 'mano', 'persona con la mano en la frente'], + }, + '🤦‍♂️': { + name: 'hombre_mano_en_la_cara', + keywords: ['facepalm', 'frente', 'incredulidad', 'mano', 'hombre con la mano en la frente'], + }, + '🤦‍♀️': { + name: 'mujer_mano_en_la_cara', + keywords: ['facepalm', 'frente', 'incredulidad', 'mano', 'mujer con la mano en la frente'], + }, + '🤷': { + name: 'encoger_los_hombros', + keywords: ['duda', 'encogerse', 'hombros', 'indiferencia', 'persona encogida de hombros'], + }, + '🤷‍♂️': { + name: 'hombre_encogiéndose_de_hombros', + keywords: ['duda', 'encogerse', 'hombros', 'indiferencia', 'hombre encogido de hombros'], + }, + '🤷‍♀️': { + name: 'mujer_encogiéndose_de_hombros', + keywords: ['duda', 'encogerse', 'hombros', 'indiferencia', 'mujer encogida de hombros'], + }, + '🧑‍⚕️': { + name: 'profesional_sanitario', + keywords: ['doctor', 'enfermero', 'médico', 'salud', 'terapeuta', 'profesional sanitario'], + }, + '👨‍⚕️': { + name: 'doctor', + keywords: ['doctor', 'enfermero', 'médico', 'sanitario', 'terapeuta hombre', 'profesional sanitario hombre'], + }, + '👩‍⚕️': { + name: 'doctora', + keywords: ['doctora', 'enfermera', 'médica', 'sanitaria', 'terapeuta mujer', 'profesional sanitario mujer'], + }, + '🧑‍🎓': { + name: 'estudiante', + keywords: ['graduado', 'licenciado', 'universitario', 'estudiante'], + }, + '👨‍🎓': { + name: 'alumno', + keywords: ['estudiante', 'graduado', 'hombre', 'licenciado', 'universitario'], + }, + '👩‍🎓': { + name: 'alumna', + keywords: ['estudiante', 'graduada', 'licenciada', 'mujer', 'universitaria'], + }, + '🧑‍🏫': { + name: 'docente', + keywords: ['educador', 'enseñanza', 'instructor', 'maestro', 'profesor', 'docente'], + }, + '👨‍🏫': { + name: 'profesor', + keywords: ['educador', 'hombre', 'instructor', 'maestro', 'profesor', 'docente hombre'], + }, + '👩‍🏫': { + name: 'profesora', + keywords: ['educadora', 'instructora', 'maestra', 'mujer', 'profesora', 'docente mujer'], + }, + '🧑‍⚖️': { + name: 'persona_juez', + keywords: ['juez', 'juicio', 'magistrado', 'fiscal'], + }, + '👨‍⚖️': { + name: 'juez', + keywords: ['hombre', 'juez', 'justicia', 'magistrado', 'fiscal hombre'], + }, + '👩‍⚖️': { + name: 'jueza', + keywords: ['jueza', 'justicia', 'magistrada', 'mujer', 'fiscal mujer'], + }, + '🧑‍🌾': { + name: 'persona_agricultora', + keywords: ['agricultor', 'cultivador', 'granjero', 'jardinero', 'labrador', 'profesional de la agricultura'], + }, + '👨‍🌾': { + name: 'agricultor', + keywords: ['agricultor', 'campo', 'granjero', 'hombre', 'labrador', 'profesional de la agricultura hombre'], + }, + '👩‍🌾': { + name: 'agricultora', + keywords: ['agricultora', 'campo', 'granjera', 'labradora', 'mujer', 'profesional de la agricultura mujer'], + }, + '🧑‍🍳': { + name: 'persona_cocinera', + keywords: ['cocinero', 'cocinillas', 'guisandero', 'pinche', 'chef'], + }, + '👨‍🍳': { + name: 'cocinero', + keywords: ['chef', 'cocinero', 'hombre', 'pinche'], + }, + '👩‍🍳': { + name: 'cocinera', + keywords: ['chef', 'cocinera', 'mujer', 'pinche'], + }, + '🧑‍🔧': { + name: 'persona_mecánica', + keywords: ['electricista', 'fontanero', 'mecánico', 'operario', 'técnico', 'profesional de la mecánica'], + }, + '👨‍🔧': { + name: 'mecánico', + keywords: ['electricista', 'fontanero', 'hombre', 'mecánico', 'operario', 'profesional de la mecánica hombre'], + }, + '👩‍🔧': { + name: 'mecánica', + keywords: ['electricista', 'fontanera', 'mecánica', 'mujer', 'operaria', 'profesional de la mecánica mujer'], + }, + '🧑‍🏭': { + name: 'profesional_industrial', + keywords: ['fábrica', 'montaje', 'obrero', 'operario', 'trabajador', 'profesional industrial'], + }, + '👨‍🏭': { + name: 'trabajador', + keywords: ['fábrica', 'montaje', 'obrero', 'operario', 'trabajador', 'profesional industrial hombre'], + }, + '👩‍🏭': { + name: 'trabajadora', + keywords: ['fábrica', 'montaje', 'obrera', 'operaria', 'trabajadora', 'profesional industrial mujer'], + }, + '🧑‍💼': { + name: 'oficinista', + keywords: ['arquitecto', 'director', 'ejecutivo', 'empresa', 'oficinista'], + }, + '👨‍💼': { + name: 'oficinista_hombre', + keywords: ['director', 'ejecutivo', 'empresa', 'hombre', 'oficina', 'oficinista'], + }, + '👩‍💼': { + name: 'oficinista_mujer', + keywords: ['directora', 'ejecutiva', 'empresa', 'mujer', 'oficina', 'oficinista'], + }, + '🧑‍🔬': { + name: 'persona_científica', + keywords: ['biólogo', 'científico', 'físico', 'investigador', 'químico', 'profesional de la ciencia'], + }, + '👨‍🔬': { + name: 'científico', + keywords: ['biólogo', 'científico', 'físico', 'hombre', 'químico', 'profesional de la ciencia hombre'], + }, + '👩‍🔬': { + name: 'científica', + keywords: ['bióloga', 'científica', 'física', 'mujer', 'química', 'profesional de la ciencia mujer'], + }, + '🧑‍💻': { + name: 'persona_tecnóloga', + keywords: ['desarrollador', 'informático', 'programador', 'software', 'tecnólogo', 'profesional de la tecnología'], + }, + '👨‍💻': { + name: 'tecnólogo', + keywords: ['desarrollador', 'hombre', 'informático', 'programador', 'tecnólogo', 'profesional de la tecnología hombre'], + }, + '👩‍💻': { + name: 'tecnóloga', + keywords: ['desarrolladora', 'informática', 'mujer', 'programadora', 'tecnóloga', 'profesional de la tecnología mujer'], + }, + '🧑‍🎤': { + name: 'cantante', + keywords: ['artista', 'estrella', 'rock', 'cantante'], + }, + '👨‍🎤': { + name: 'cantante_hombre', + keywords: ['artista', 'estrella', 'hombre', 'rock', 'cantante hombre'], + }, + '👩‍🎤': { + name: 'cantante_mujer', + keywords: ['artista', 'estrella', 'mujer', 'rock', 'cantante mujer'], + }, + '🧑‍🎨': { + name: 'artista', + keywords: ['paleta', 'pintor', 'pinturas', 'artista'], + }, + '👨‍🎨': { + name: 'artista_hombre', + keywords: ['hombre', 'paleta', 'pintor', 'pinturas', 'artista hombre'], + }, + '👩‍🎨': { + name: 'artista_mujer', + keywords: ['mujer', 'paleta', 'pintora', 'pinturas', 'artista mujer'], + }, + '🧑‍✈️': { + name: 'piloto', + keywords: ['avión', 'capitán', 'vuelo', 'piloto'], + }, + '👨‍✈️': { + name: 'piloto_hombre', + keywords: ['avión', 'capitán', 'hombre', 'piloto', 'vuelo'], + }, + '👩‍✈️': { + name: 'piloto_mujer', + keywords: ['avión', 'capitana', 'mujer', 'piloto', 'vuelo'], + }, + '🧑‍🚀': { + name: 'astronauta', + keywords: ['cohete', 'espacio', 'astronauta'], + }, + '👨‍🚀': { + name: 'astronauta_hombre', + keywords: ['astronauta', 'cohete', 'espacio', 'hombre'], + }, + '👩‍🚀': { + name: 'astronauta_mujer', + keywords: ['astronauta', 'cohete', 'espacio', 'mujer'], + }, + '🧑‍🚒': { + name: 'persona_bombero', + keywords: ['camión', 'manguera', 'bombero'], + }, + '👨‍🚒': { + name: 'bombero', + keywords: ['apagafuegos', 'bombero', 'camión', 'manguera', 'bombero hombre'], + }, + '👩‍🚒': { + name: 'bombera', + keywords: ['apagafuegos', 'bombera mujera', 'camión', 'manguera', 'bombera'], + }, + '👮': { + name: 'policía', + keywords: ['agente', 'personas', 'policía', 'agente de policía'], + }, + '👮‍♂️': { + name: 'policía_hombre', + keywords: ['agente', 'hombre', 'poli', 'policía', 'agente de policía hombre'], + }, + '👮‍♀️': { + name: 'policía_mujer', + keywords: ['agente', 'mujer', 'poli', 'policía', 'agente de policía mujer'], + }, + '🕵️': { + name: 'sabueso_o_espía', + keywords: ['cara', 'espía', 'detective'], + }, + '🕵️‍♂️': { + name: 'detective_hombre', + keywords: ['agente', 'detective', 'espía', 'hombre', 'investigador'], + }, + '🕵️‍♀️': { + name: 'detective_mujer', + keywords: ['agente', 'detective', 'espía', 'investigadora', 'mujer'], + }, + '💂': { + name: 'guardia', + keywords: ['guardia real británica', 'guardia'], + }, + '💂‍♂️': { + name: 'guardia_hombre', + keywords: ['guardia', 'hombre', 'vigilante'], + }, + '💂‍♀️': { + name: 'guardia_mujer', + keywords: ['guardia', 'mujer', 'vigilante'], + }, + '🥷': { + name: 'ninja', + keywords: ['furtivo', 'guerrero', 'luchador', 'oculto', 'sigilo', 'ninja'], + }, + '👷': { + name: 'obrero_de_la_construcción', + keywords: ['casco', 'construcción', 'obrero', 'trabajador', 'profesional de la construcción'], + }, + '👷‍♂️': { + name: 'obrero', + keywords: ['albañil', 'construcción', 'hombre', 'obrero', 'trabajador', 'profesional de la construcción hombre'], + }, + '👷‍♀️': { + name: 'obrera', + keywords: ['albañila', 'construcción', 'mujer', 'obrera', 'trabajadora', 'profesional de la construcción mujer'], + }, + '🤴': { + name: 'príncipe', + keywords: ['corona', 'príncipe'], + }, + '👸': { + name: 'princesa', + keywords: ['cuento', 'fantasía', 'hadas', 'princesa'], + }, + '👳': { + name: 'hombre_con_turbante', + keywords: ['turbante', 'persona con turbante'], + }, + '👳‍♂️': { + name: 'hombre_que_lleva_turbante', + keywords: ['hombre', 'turbante', 'hombre con turbante'], + }, + '👳‍♀️': { + name: 'mujer_que_lleva_turbante', + keywords: ['mujer', 'turbante', 'mujer con turbante'], + }, + '👲': { + name: 'hombre_con_gorro_chino', + keywords: ['gorro', 'gua', 'mao', 'persona', 'gua pi mao', 'persona con gorro chino'], + }, + '🧕': { + name: 'persona_con_velo', + keywords: ['hiyab', 'pañuelo', 'mujer con hiyab'], + }, + '🤵': { + name: 'persona_en_esmoquin', + keywords: ['esmoquin', 'novio', 'persona', 'persona con esmoquin'], + }, + '🤵‍♂️': { + name: 'hombre_con_esmoquin', + keywords: ['esmoquin', 'hombre', 'hombre con esmoquin'], + }, + '🤵‍♀️': { + name: 'mujer_con_esmoquin', + keywords: ['esmoquin', 'mujer', 'mujer con esmoquin'], + }, + '👰': { + name: 'novia_con_velo', + keywords: ['boda', 'novia', 'persona', 'velo', 'persona con velo'], + }, + '👰‍♂️': { + name: 'hombre_con_velo', + keywords: ['boda', 'hombre', 'novio', 'velo', 'hombre con velo'], + }, + '👰‍♀️': { + name: 'mujer_con_velo', + keywords: ['boda', 'mujer', 'novia', 'velo', 'mujer con velo'], + }, + '🤰': { + name: 'embarazada', + keywords: ['embarazada', 'mujer'], + }, + '🤱': { + name: 'amamantar', + keywords: ['amamantar', 'bebé', 'dar pecho', 'pecho', 'lactancia materna'], + }, + '👩‍🍼': { + name: 'mujer_alimentando_a_bebé', + keywords: ['alimentar', 'amamantar', 'bebé', 'lactancia', 'mujer', 'mujer alimentando a bebé'], + }, + '👨‍🍼': { + name: 'hombre_alimentando_a_bebé', + keywords: ['alimentar', 'amamantar', 'bebé', 'hombre', 'lactancia', 'hombre alimentando a bebé'], + }, + '🧑‍🍼': { + name: 'persona_alimentando_a_bebé', + keywords: ['alimentar', 'amamantar', 'bebé', 'lactancia', 'persona', 'persona alimentando a bebé'], + }, + '👼': { + name: 'ángel', + keywords: ['ángel', 'bebé', 'cara', 'cuento'], + }, + '🎅': { + name: 'santa_claus', + keywords: ['celebración', 'claus', 'Navidad', 'papá noel', 'Papá Noel', 'santa'], + }, + '🤶': { + name: 'sra_claus', + keywords: ['abuela', 'mamá', 'Navidad', 'noel', 'Mamá Noel'], + }, + '🧑‍🎄': { + name: 'mx_claus', + keywords: ['claus', 'christmas', 'mx claus'], + }, + '🦸': { + name: 'personaje_de_superhéroe', + keywords: ['bien', 'héroe', 'heroína', 'superhéroe', 'superheroína', 'superpoder', 'personaje de superhéroe'], + }, + '🦸‍♂️': { + name: 'superhéroe', + keywords: ['bueno', 'héroe', 'hombre', 'superhombre', 'superpoder', 'superhéroe'], + }, + '🦸‍♀️': { + name: 'superheroína', + keywords: ['héroe', 'heroína', 'mujer', 'superhéroe', 'superpoder', 'superheroína'], + }, + '🦹': { + name: 'personaje_de_supervillano', + keywords: ['mal', 'superpoder', 'supervillana', 'supervillano', 'villana', 'villano', 'personaje de supervillano'], + }, + '🦹‍♂️': { + name: 'supervillano', + keywords: ['hombre', 'mal', 'malvado', 'villano', 'supervillano'], + }, + '🦹‍♀️': { + name: 'supervillana', + keywords: ['mal', 'malvada', 'mujer', 'villana', 'supervillana'], + }, + '🧙': { + name: 'brujo', + keywords: ['bruja', 'brujo', 'hechicera', 'hechicero', 'persona maga'], + }, + '🧙‍♂️': { + name: 'mago', + keywords: ['brujo', 'hechicero', 'mago'], + }, + '🧙‍♀️': { + name: 'maga', + keywords: ['bruja', 'hechicera', 'maga'], + }, + '🧚': { + name: 'hada', + keywords: ['campanilla', 'oberón', 'puck', 'titania', 'hada'], + }, + '🧚‍♂️': { + name: 'hada_macho', + keywords: ['hada', 'oberón', 'puck', 'hada hombre'], + }, + '🧚‍♀️': { + name: 'hada_hembra', + keywords: ['campanilla', 'hada', 'titania', 'hada mujer'], + }, + '🧛': { + name: 'vampiro', + keywords: ['drácula', 'muerto viviente', 'no muerto', 'vampiro'], + }, + '🧛‍♂️': { + name: 'vampiro_macho', + keywords: ['drácula', 'muerto viviente', 'no muerto', 'vampiro hombre'], + }, + '🧛‍♀️': { + name: 'vampira', + keywords: ['muerta viviente', 'no muerta', 'vampiresa'], + }, + '🧜': { + name: 'sirena-tritón', + keywords: ['sirena', 'tritón', 'persona sirena'], + }, + '🧜‍♂️': { + name: 'tritón', + keywords: ['sirena', 'tritón', 'sirena hombre'], + }, + '🧜‍♀️': { + name: 'sirena', + keywords: ['sirena'], + }, + '🧝': { + name: 'elfo', + keywords: ['mágico', 'elfo'], + }, + '🧝‍♂️': { + name: 'elfo_macho', + keywords: ['elfo', 'mágico', 'elfo hombre'], + }, + '🧝‍♀️': { + name: 'elfa', + keywords: ['mágico', 'mujer', 'elfa'], + }, + '🧞': { + name: 'genio', + keywords: ['lámpara', 'genio'], + }, + '🧞‍♂️': { + name: 'genio_de_la_lámpara', + keywords: ['djinn', 'genio', 'lámpara', 'genio hombre'], + }, + '🧞‍♀️': { + name: 'genia_de_la_lámpara', + keywords: ['genio', 'lámpara', 'genio mujer'], + }, + '🧟': { + name: 'zombi', + keywords: ['muerto viviente', 'no muerto', 'zombi'], + }, + '🧟‍♂️': { + name: 'zombi_macho', + keywords: ['caminante', 'muerto viviente', 'no muerto', 'zombi hombre'], + }, + '🧟‍♀️': { + name: 'zombi_hembra', + keywords: ['caminante', 'muerta viviente', 'no muerta', 'zombi mujer'], + }, + '💆': { + name: 'masaje', + keywords: ['cara', 'facial', 'masaje', 'salón', 'persona recibiendo masaje'], + }, + '💆‍♂️': { + name: 'hombre_dándose_un_masaje', + keywords: ['cara', 'facial', 'masaje', 'salón', 'hombre recibiendo masaje'], + }, + '💆‍♀️': { + name: 'mujer_dándose_un_masaje', + keywords: ['cara', 'facial', 'masaje', 'salón', 'mujer recibiendo masaje'], + }, + '💇': { + name: 'corte_de_pelo', + keywords: ['belleza', 'corte', 'pelo', 'peluquero', 'persona cortándose el pelo'], + }, + '💇‍♂️': { + name: 'hombre_cortándose_el_pelo', + keywords: ['belleza', 'corte', 'pelo', 'peluquero', 'hombre cortándose el pelo'], + }, + '💇‍♀️': { + name: 'mujer_cortándose_el_pelo', + keywords: ['belleza', 'corte', 'pelo', 'peluquero', 'mujer cortándose el pelo'], + }, + '🚶': { + name: 'caminando', + keywords: ['andar', 'caminando', 'caminar', 'persona caminando'], + }, + '🚶‍♂️': { + name: 'hombre_caminando', + keywords: ['andar', 'caminata', 'hombre', 'marcha', 'hombre caminando'], + }, + '🚶‍♀️': { + name: 'mujer_caminando', + keywords: ['andar', 'caminata', 'marcha', 'mujer', 'mujer caminando'], + }, + '🧍': { + name: 'persona_de_pie', + keywords: ['de pie', 'levantada', 'levantado', 'levantarse', 'persona de pie'], + }, + '🧍‍♂️': { + name: 'hombre_de_pie', + keywords: ['de pie', 'hombre', 'levantado', 'levantarse', 'hombre de pie'], + }, + '🧍‍♀️': { + name: 'mujer_de_pie', + keywords: ['de pie', 'levantada', 'levantarse', 'mujer', 'mujer de pie'], + }, + '🧎': { + name: 'persona_de_rodillas', + keywords: ['arrodillada', 'arrodillado', 'arrodillarse', 'de rodillas', 'persona de rodillas'], + }, + '🧎‍♂️': { + name: 'hombre_de_rodillas', + keywords: ['arrodillado', 'arrodillarse', 'de rodillas', 'hombre', 'hombre de rodillas'], + }, + '🧎‍♀️': { + name: 'mujer_de_rodillas', + keywords: ['arrodillada', 'arrodillarse', 'de rodillas', 'mujer', 'mujer de rodillas'], + }, + '🧑‍🦯': { + name: 'persona_con_bastón', + keywords: ['accesibilidad', 'ciego', 'invidente', 'persona con bastón'], + }, + '👨‍🦯': { + name: 'hombre_con_bastón', + keywords: ['accesibilidad', 'bastón', 'ciego', 'hombre', 'invidente', 'hombre con bastón'], + }, + '👩‍🦯': { + name: 'mujer_con_bastón', + keywords: ['accesibilidad', 'bastón', 'ciega', 'invidente', 'mujer', 'mujer con bastón'], + }, + '🧑‍🦼': { + name: 'persona_en_silla_de_ruedas_eléctrica', + keywords: ['accesibilidad', 'silla de ruedas', 'persona en silla de ruedas eléctrica'], + }, + '👨‍🦼': { + name: 'hombre_en_silla_de_ruedas_eléctrica', + keywords: ['accesibilidad', 'hombre', 'silla de ruedas', 'hombre en silla de ruedas eléctrica'], + }, + '👩‍🦼': { + name: 'mujer_en_silla_de_ruedas_eléctrica', + keywords: ['accesibilidad', 'mujer', 'silla de ruedas', 'mujer en silla de ruedas eléctrica'], + }, + '🧑‍🦽': { + name: 'persona_en_silla_de_ruedas_manual', + keywords: ['accesibilidad', 'silla de ruedas', 'persona en silla de ruedas manual'], + }, + '👨‍🦽': { + name: 'hombre_en_silla_de_ruedas_manual', + keywords: ['accesibilidad', 'hombre', 'silla de ruedas', 'hombre en silla de ruedas manual'], + }, + '👩‍🦽': { + name: 'mujer_en_silla_de_ruedas_manual', + keywords: ['accesibilidad', 'mujer', 'silla de ruedas', 'mujer en silla de ruedas manual'], + }, + '🏃': { + name: 'corredor', + keywords: ['carrera', 'deporte', 'maratón persona corriendo'], + }, + '🏃‍♂️': { + name: 'hombre_corriendo', + keywords: ['carrera', 'correr', 'hombre', 'hombre corriendo maratón'], + }, + '🏃‍♀️': { + name: 'mujer_corriendo', + keywords: ['carrera', 'correr', 'mujer', 'maratón', 'mujer corriendo'], + }, + '💃': { + name: 'bailarín', + keywords: ['bailar', 'mujer', 'mujer bailando'], + }, + '🕺': { + name: 'hombre_bailando', + keywords: ['bailar', 'hombre', 'hombre bailando'], + }, + '🕴️': { + name: 'hombre_de_negocios_levitando', + keywords: ['levitar', 'negocios', 'persona', 'traje', 'persona trajeada levitando'], + }, + '👯': { + name: 'bailarines', + keywords: ['bailar', 'fiesta', 'orejas de conejo', 'personas', 'personas con orejas de conejo'], + }, + '👯‍♂️': { + name: 'hombre_con_orejas_de_conejo', + keywords: ['bailar', 'fiesta', 'hombre', 'orejas de conejo', 'hombres con orejas de conejo'], + }, + '👯‍♀️': { + name: 'mujer_con_orejas_de_conejo', + keywords: ['bailar', 'fiesta', 'mujer', 'orejas de conejo', 'mujeres con orejas de conejo'], + }, + '🧖': { + name: 'persona_en_sauna', + keywords: ['sauna', 'vapor', 'persona en una sauna'], + }, + '🧖‍♂️': { + name: 'hombre_en_sauna', + keywords: ['sauna', 'vapor', 'hombre en una sauna'], + }, + '🧖‍♀️': { + name: 'mujer_en_sauna', + keywords: ['sauna', 'vapor', 'mujer en una sauna'], + }, + '🧗': { + name: 'persona_escalando', + keywords: ['alpinista', 'escalador', 'persona escalando'], + }, + '🧗‍♂️': { + name: 'hombre_escalando', + keywords: ['alpinista', 'escalador', 'hombre escalando'], + }, + '🧗‍♀️': { + name: 'mujer_escalando', + keywords: ['alpinista', 'escaladora', 'mujer escalando'], + }, + '🤺': { + name: 'esgrimista', + keywords: ['esgrima', 'esgrimista', 'espada', 'persona haciendo esgrima'], + }, + '🏇': { + name: 'carrera_de_caballos', + keywords: ['caballo', 'caballo de carreras', 'carreras', 'jinete', 'carrera de caballos'], + }, + '⛷️': { + name: 'esquiador', + keywords: ['esquí', 'esquiador', 'nieve', 'persona esquiando'], + }, + '🏂': { + name: 'practicante_de_snowboard', + keywords: ['nieve', 'snowboard', 'practicante de snowboard'], + }, + '🏌️': { + name: 'golfista', + keywords: ['golf', 'golfista', 'pelota', 'persona jugando al golf'], + }, + '🏌️‍♂️': { + name: 'hombre_jugando_golf', + keywords: ['golf', 'hombre', 'jugador', 'hombre jugando al golf'], + }, + '🏌️‍♀️': { + name: 'mujer_jugando_golf', + keywords: ['golf', 'jugadora', 'mujer', 'mujer jugando al golf'], + }, + '🏄': { + name: 'surfista', + keywords: ['surf', 'persona haciendo surf', 'surfear'], + }, + '🏄‍♂️': { + name: 'hombre_surfeando', + keywords: ['hombre', 'surf', 'surfero', 'surfista', 'hombre haciendo surf'], + }, + '🏄‍♀️': { + name: 'mujer_haciendo_surf', + keywords: ['mujer', 'surf', 'surfera', 'surfista', 'mujer haciendo surf'], + }, + '🚣': { + name: 'bote_de_remos', + keywords: ['barca', 'bote', 'remo', 'persona remando en un bote'], + }, + '🚣‍♂️': { + name: 'hombre_remando_barca', + keywords: ['barca', 'bote', 'hombre', 'remo', 'hombre remando en un bote'], + }, + '🚣‍♀️': { + name: 'mujer_remando_barca', + keywords: ['barca', 'bote', 'mujer', 'remo', 'mujer remando en un bote'], + }, + '🏊': { + name: 'nadador', + keywords: ['nadar', 'natación', 'persona nadando'], + }, + '🏊‍♂️': { + name: 'hombre_nadando', + keywords: ['hombre', 'nadar', 'hombre nadando'], + }, + '🏊‍♀️': { + name: 'mujer_nadando', + keywords: ['mujer', 'nadar', 'mujer nadando'], + }, + '⛹️': { + name: 'persona_con_una_pelota', + keywords: ['balón', 'botar', 'pelota', 'persona botando un balón'], + }, + '⛹️‍♂️': { + name: 'hombre_botando_balón', + keywords: ['balón', 'botar', 'hombre', 'pelota', 'hombre botando un balón'], + }, + '⛹️‍♀️': { + name: 'mujer_botando_balón', + keywords: ['balón', 'botar', 'mujer', 'pelota', 'mujer botando un balón'], + }, + '🏋️': { + name: 'levantador_de_peso', + keywords: ['halterofilia', 'levantador', 'pesas', 'peso', 'persona levantando pesas'], + }, + '🏋️‍♂️': { + name: 'hombre_levantando_pesas', + keywords: ['halterofilia', 'hombre', 'levantador de pesas', 'pesas', 'hombre levantando pesas'], + }, + '🏋️‍♀️': { + name: 'mujer_levantando_pesas', + keywords: ['halterofilia', 'levantadora de pesas', 'mujer', 'pesas', 'mujer levantando pesas'], + }, + '🚴': { + name: 'ciclista', + keywords: ['bicicleta', 'ciclismo', 'ciclista', 'persona en bicicleta'], + }, + '🚴‍♂️': { + name: 'hombre_en_bici', + keywords: ['bicicleta', 'ciclismo', 'ciclista', 'hombre', 'hombre en bicicleta'], + }, + '🚴‍♀️': { + name: 'mujer_en_bici', + keywords: ['bicicleta', 'ciclismo', 'ciclista', 'mujer', 'mujer en bicicleta'], + }, + '🚵': { + name: 'ciclista_de_montaña', + keywords: ['bicicleta', 'ciclista', 'montaña', 'mountain bike', 'persona en bicicleta de montaña'], + }, + '🚵‍♂️': { + name: 'hombre_bici_montaña', + keywords: ['bicicleta', 'ciclista', 'montaña', 'mountain bike', 'hombre en bicicleta de montaña'], + }, + '🚵‍♀️': { + name: 'mujer_bici_montaña', + keywords: ['bicicleta', 'ciclista', 'montaña', 'mountain bike', 'mujer en bicicleta de montaña'], + }, + '🤸': { + name: 'persona_dando_volteretas', + keywords: ['acrobacia', 'gimnasia', 'pirueta', 'rueda', 'voltereta', 'persona haciendo voltereta lateral'], + }, + '🤸‍♂️': { + name: 'hombre_dando_volteretas', + keywords: ['deporte', 'gimnasia', 'hombre', 'rueda', 'voltereta', 'hombre dando una voltereta lateral'], + }, + '🤸‍♀️': { + name: 'mujer_dando_volteretas', + keywords: ['deporte', 'gimnasia', 'mujer', 'rueda', 'voltereta', 'mujer dando una voltereta lateral'], + }, + '🤼': { + name: 'luchadores', + keywords: ['lucha', 'luchador', 'personas luchando'], + }, + '🤼‍♂️': { + name: 'hombre_lucha_libre', + keywords: ['deporte', 'hombre', 'lucha', 'luchador', 'hombres luchando'], + }, + '🤼‍♀️': { + name: 'mujer_lucha_libre', + keywords: ['deporte', 'lucha', 'luchadora', 'mujer', 'mujeres luchando'], + }, + '🤽': { + name: 'waterpolo', + keywords: ['waterpolista', 'waterpolo', 'persona jugando al waterpolo'], + }, + '🤽‍♂️': { + name: 'hombre_jugando_waterpolo', + keywords: ['agua', 'deporte', 'waterpolista', 'waterpolo', 'hombre jugando al waterpolo'], + }, + '🤽‍♀️': { + name: 'mujer_jugando_waterpolo', + keywords: ['agua', 'deporte', 'waterpolista', 'waterpolo', 'mujer jugando al waterpolo'], + }, + '🤾': { + name: 'balonmano', + keywords: ['balonmanista', 'balonmano', 'persona jugando al balonmano'], + }, + '🤾‍♂️': { + name: 'hombre_jugando_balonmano', + keywords: ['balonmanista', 'balonmano', 'deporte', 'hombre', 'hombre jugando al balonmano'], + }, + '🤾‍♀️': { + name: 'mujer_jugando_balonmano', + keywords: ['balonmanista', 'balonmano', 'deporte', 'mujer', 'mujer jugando al balonmano'], + }, + '🤹': { + name: 'malabarismo', + keywords: ['equilibrio', 'malabares', 'malabarismo', 'malabarista', 'persona haciendo malabares'], + }, + '🤹‍♂️': { + name: 'malabarista_hombre', + keywords: ['hombre', 'malabares', 'malabarismo', 'malabarista', 'hombre haciendo malabares'], + }, + '🤹‍♀️': { + name: 'malabarista_mujer', + keywords: ['malabares', 'malabarismo', 'malabarista', 'mujer', 'mujer haciendo malabares'], + }, + '🧘': { + name: 'persona_en_postura_loto', + keywords: ['meditación', 'yoga', 'persona en posición de loto'], + }, + '🧘‍♂️': { + name: 'hombre_en_postura_loto', + keywords: ['meditación', 'yoga', 'hombre en posición de loto'], + }, + '🧘‍♀️': { + name: 'mujer_en_postura_loto', + keywords: ['meditación', 'yoga', 'mujer en posición de loto'], + }, + '🛀': { + name: 'bañera', + keywords: ['bañera', 'baño', 'persona', 'persona en la bañera'], + }, + '🛌': { + name: 'lugar_para_dormir', + keywords: ['dormir', 'hotel', 'persona en la cama'], + }, + '🧑‍🤝‍🧑': { + name: 'dos_personas_dándose_la_mano', + keywords: ['mano', 'pareja', 'persona', 'dos personas de la mano'], + }, + '👭': { + name: 'dos_mujeres_de_la_mano', + keywords: ['lesbianas', 'mujeres', 'novias', 'pareja', 'mujeres de la mano'], + }, + '👫': { + name: 'hombre_y_mujer_de_la_mano', + keywords: ['hombre', 'hombre y mujer de la mano', 'mujer', 'novios', 'pareja', 'mujer y hombre de la mano'], + }, + '👬': { + name: 'dos_hombres_de_la_mano', + keywords: ['gays', 'hombres', 'novios', 'pareja', 'hombres de la mano'], + }, + '💏': { + name: 'pareja_besándose', + keywords: ['personas', 'romance', 'beso'], + }, + '👩‍❤️‍💋‍👨': { + name: 'mujer_beso_hombre', + keywords: ['beso', 'hombre', 'mujer', 'personas', 'romance'], + }, + '👨‍❤️‍💋‍👨': { + name: 'hombre_beso_hombre', + keywords: ['beso', 'hombre', 'personas', 'romance'], + }, + '👩‍❤️‍💋‍👩': { + name: 'mujer_beso_mujer', + keywords: ['beso', 'mujer', 'personas', 'romance'], + }, + '💑': { + name: 'pareja_con_corazón', + keywords: ['amor', 'pareja', 'pareja enamorada personas enamoradas'], + }, + '👩‍❤️‍👨': { + name: 'mujer_corazón_hombre', + keywords: ['amor', 'hombre', 'mujer', 'pareja', 'pareja enamorada', 'personas enamoradas'], + }, + '👨‍❤️‍👨': { + name: 'hombre_corazón_hombre', + keywords: ['amor', 'hombre', 'pareja', 'pareja enamorada', 'personas enamoradas'], + }, + '👩‍❤️‍👩': { + name: 'mujer_corazón_mujer', + keywords: ['amor', 'mujer', 'pareja', 'pareja enamorada', 'personas enamoradas'], + }, + '👪': { + name: 'familia', + keywords: ['familia'], + }, + '👨‍👩‍👦': { + name: 'hombre_mujer_niño', + keywords: ['familia', 'hombre', 'mujer', 'niño'], + }, + '👨‍👩‍👧': { + name: 'hombre_mujer_niña', + keywords: ['familia', 'hombre', 'mujer', 'niña'], + }, + '👨‍👩‍👧‍👦': { + name: 'hombre_mujer_niña_niño', + keywords: ['familia', 'hombre', 'mujer', 'niña', 'niño'], + }, + '👨‍👩‍👦‍👦': { + name: 'hombre_mujer_niño_niño', + keywords: ['familia', 'hombre', 'mujer', 'niño'], + }, + '👨‍👩‍👧‍👧': { + name: 'hombre_mujer_niña_niña', + keywords: ['familia', 'hombre', 'mujer', 'niña'], + }, + '👨‍👨‍👦': { + name: 'hombre_hombre_niño', + keywords: ['familia', 'hombre', 'niño'], + }, + '👨‍👨‍👧': { + name: 'hombre_hombre_niña', + keywords: ['familia', 'hombre', 'niña'], + }, + '👨‍👨‍👧‍👦': { + name: 'hombre_hombre_niña_niño', + keywords: ['familia', 'hombre', 'niña', 'niño'], + }, + '👨‍👨‍👦‍👦': { + name: 'hombre_hombre_niño_niño', + keywords: ['familia', 'hombre', 'niño'], + }, + '👨‍👨‍👧‍👧': { + name: 'hombre_hombre_niña_niña', + keywords: ['familia', 'hombre', 'niña'], + }, + '👩‍👩‍👦': { + name: 'mujer_mujer_niño', + keywords: ['familia', 'mujer', 'niño'], + }, + '👩‍👩‍👧': { + name: 'mujer_mujer_niña', + keywords: ['familia', 'mujer', 'niña'], + }, + '👩‍👩‍👧‍👦': { + name: 'mujer_mujer_niña_niño', + keywords: ['familia', 'mujer', 'niña', 'niño'], + }, + '👩‍👩‍👦‍👦': { + name: 'mujer_mujer_niño_niño', + keywords: ['familia', 'mujer', 'niño'], + }, + '👩‍👩‍👧‍👧': { + name: 'mujer_mujer_niña_niña', + keywords: ['familia', 'mujer', 'niña'], + }, + '👨‍👦': { + name: 'hombre_niño', + keywords: ['familia', 'hombre', 'niño'], + }, + '👨‍👦‍👦': { + name: 'hombre_niño_niño', + keywords: ['familia', 'hombre', 'niño'], + }, + '👨‍👧': { + name: 'hombre_niña', + keywords: ['familia', 'hombre', 'niña'], + }, + '👨‍👧‍👦': { + name: 'hombre_niño_niña', + keywords: ['familia', 'hombre', 'niña', 'niño'], + }, + '👨‍👧‍👧': { + name: 'hombre_niña_niña', + keywords: ['familia', 'hombre', 'niña'], + }, + '👩‍👦': { + name: 'mujer_niño', + keywords: ['familia', 'mujer', 'niño'], + }, + '👩‍👦‍👦': { + name: 'mujer_niño_niño', + keywords: ['familia', 'mujer', 'niño'], + }, + '👩‍👧': { + name: 'mujer_niña', + keywords: ['familia', 'mujer', 'niña'], + }, + '👩‍👧‍👦': { + name: 'mujer_niña_niño', + keywords: ['familia', 'mujer', 'niña', 'niño'], + }, + '👩‍👧‍👧': { + name: 'mujer_niña_niña', + keywords: ['familia', 'mujer', 'niña'], + }, + '🗣️': { + name: 'silueta_de_cabeza_parlante', + keywords: ['cabeza', 'cara', 'hablar', 'silueta', 'cabeza parlante'], + }, + '👤': { + name: 'silueta_de_busto', + keywords: ['busto', 'silueta', 'silueta de busto'], + }, + '👥': { + name: 'siluetas_de_bustos', + keywords: ['bustos', 'siluetas', 'dos siluetas de bustos'], + }, + '🫂': { + name: 'personas_abrazándose', + keywords: ['abrazo', 'adiós', 'despedida', 'gracias', 'saludo', 'personas abrazándose'], + }, + '👣': { + name: 'huellas', + keywords: ['huellas', 'pies', 'huellas de pies'], + }, + '🐵': { + name: 'cara_de_mono', + keywords: ['cara', 'mono', 'cara de mono'], + }, + '🐒': { + name: 'mono', + keywords: ['macaco', 'simio', 'mono'], + }, + '🦍': { + name: 'gorila', + keywords: ['primate', 'simio', 'gorila'], + }, + '🦧': { + name: 'orangután', + keywords: ['mono', 'primate', 'simio', 'orangután'], + }, + '🐶': { + name: 'perro', + keywords: ['cara', 'mascota', 'perro', 'cara de perro'], + }, + '🐕': { + name: 'perro2', + keywords: ['cachorro', 'perrete', 'perrito', 'perro'], + }, + '🦮': { + name: 'perro_guía', + keywords: ['accesibilidad', 'ciego', 'guía', 'invidente', 'lazarillo', 'perro guía'], + }, + '🐕‍🦺': { + name: 'perro_de_servicio', + keywords: ['accesibilidad', 'apoyo', 'asistencia', 'perro', 'servicio', 'perro de servicio'], + }, + '🐩': { + name: 'caniche', + keywords: ['perrito', 'perro', 'caniche'], + }, + '🐺': { + name: 'lobo', + keywords: ['cara', 'lobo'], + }, + '🦊': { + name: 'cara_zorro', + keywords: ['cara', 'zorro'], + }, + '🦝': { + name: 'mapache', + keywords: ['astuto', 'curioso', 'ladino', 'maquillaje', 'ojeras', 'mapache'], + }, + '🐱': { + name: 'gato', + keywords: ['cara', 'gato', 'mascota', 'cara de gato'], + }, + '🐈': { + name: 'gato2', + keywords: ['gatete', 'minino', 'gato'], + }, + '🐈‍⬛': { + name: 'gato_negro', + keywords: ['gato', 'mala suerte', 'negro'], + }, + '🦁': { + name: 'cara_de_león', + keywords: ['cara', 'leo', 'zodiaco', 'león'], + }, + '🐯': { + name: 'tigre', + keywords: ['cara', 'tigre', 'cara de tigre'], + }, + '🐅': { + name: 'tigre2', + keywords: ['felino', 'tigre'], + }, + '🐆': { + name: 'leopardo', + keywords: ['felino', 'leopardo'], + }, + '🐴': { + name: 'caballo', + keywords: ['caballo', 'cara', 'cara de caballo'], + }, + '🐎': { + name: 'caballo_de_carreras', + keywords: ['caballo de carreras', 'ecuestre', 'caballo', 'carreras de caballos'], + }, + '🦄': { + name: 'cara_de_unicornio', + keywords: ['cara', 'unicornio'], + }, + '🦓': { + name: 'cara_zebra', + keywords: ['raya', 'cebra'], + }, + '🦌': { + name: 'ciervo', + keywords: ['bambi cervatillo ciervo'], + }, + '🦬': { + name: 'bisonte', + keywords: ['búfalo', 'cíbolo', 'bisonte'], + }, + '🐮': { + name: 'vaca', + keywords: ['cara', 'vaca', 'cara de vaca'], + }, + '🐂': { + name: 'buey', + keywords: ['cabestro', 'tauro', 'zodiaco', 'buey'], + }, + '🐃': { + name: 'búfalo_de_agua', + keywords: ['agua', 'búfalo', 'búfalo de agua'], + }, + '🐄': { + name: 'vaca2', + keywords: ['bovino', 'res', 'vaca'], + }, + '🐷': { + name: 'cerdo', + keywords: ['cara', 'cerdo', 'gorrino', 'cara de cerdo'], + }, + '🐖': { + name: 'cerdo2', + keywords: ['cochino', 'gorrino', 'puerco', 'cerdo'], + }, + '🐗': { + name: 'jabalí', + keywords: ['cerdo salvaje', 'jabalí'], + }, + '🐽': { + name: 'hocico_de_cerdo', + keywords: ['cara', 'cerdo', 'morro', 'nariz', 'nariz de cerdo'], + }, + '🐏': { + name: 'carnero', + keywords: ['aries', 'morueco', 'zodiaco', 'carnero'], + }, + '🐑': { + name: 'oveja', + keywords: ['borrego', 'cordero', 'ovino', 'oveja'], + }, + '🐐': { + name: 'cabra', + keywords: ['capricornio', 'caprino', 'chivo', 'zodiaco', 'cabra'], + }, + '🐪': { + name: 'dromedario_camello', + keywords: ['camello', 'desierto', 'joroba', 'dromedario'], + }, + '🐫': { + name: 'camello', + keywords: ['bactriano', 'desierto', 'dromedario', 'jorobas', 'camello'], + }, + '🦙': { + name: 'llama', + keywords: ['alpaca', 'guanaco', 'lana', 'vicuña', 'llama'], + }, + '🦒': { + name: 'cara_jirafa', + keywords: ['manchas', 'jirafa'], + }, + '🐘': { + name: 'elefante', + keywords: ['paquidermo', 'elefante'], + }, + '🦣': { + name: 'mamut', + keywords: ['colmillo', 'extinguido', 'lanudo', 'mamut'], + }, + '🦏': { + name: 'rinoceronte', + keywords: ['paquidermo', 'rinoceronte'], + }, + '🦛': { + name: 'hipopótamo', + keywords: ['paquidermo', 'hipopótamo'], + }, + '🐭': { + name: 'ratón', + keywords: ['cara', 'ratón', 'cara de ratón'], + }, + '🐁': { + name: 'mouse2', + keywords: ['roedor', 'ratón'], + }, + '🐀': { + name: 'rata', + keywords: ['roedor', 'rata'], + }, + '🐹': { + name: 'hámster', + keywords: ['cara', 'mascota', 'hámster'], + }, + '🐰': { + name: 'conejo', + keywords: ['cara', 'conejo', 'mascota', 'cara de conejo'], + }, + '🐇': { + name: 'conejo2', + keywords: ['conejito', 'gazapo', 'conejo'], + }, + '🐿️': { + name: 'ardilla', + keywords: ['ardilla'], + }, + '🦫': { + name: 'castor', + keywords: ['roedor', 'castor'], + }, + '🦔': { + name: 'erizo', + keywords: ['espinas', 'púas', 'erizo'], + }, + '🦇': { + name: 'murciélago', + keywords: ['vampiro', 'murciélago'], + }, + '🐻': { + name: 'oso', + keywords: ['cara', 'oso'], + }, + '🐻‍❄️': { + name: 'oso_polar', + keywords: ['ártico', 'blanco', 'oso', 'polar'], + }, + '🐨': { + name: 'coala', + keywords: ['cara', 'marsupial', 'koala'], + }, + '🐼': { + name: 'cara_de_panda', + keywords: ['cara', 'oso panda', 'panda'], + }, + '🦥': { + name: 'perezoso', + keywords: ['gandul', 'lento', 'vago', 'perezoso'], + }, + '🦦': { + name: 'nutria', + keywords: ['bromista', 'juguetón', 'pesca', 'nutria'], + }, + '🦨': { + name: 'mofeta', + keywords: ['apestar', 'hedor', 'mal olor', 'peste', 'tufo', 'mofeta'], + }, + '🦘': { + name: 'canguro', + keywords: ['marsupial', 'salto', 'canguro'], + }, + '🦡': { + name: 'tejón', + keywords: ['ratel', 'tejón de la miel', 'tejón melero', 'tejón'], + }, + '🐾': { + name: 'pies', + keywords: ['huellas', 'pezuñas', 'huellas de pezuñas'], + }, + '🦃': { + name: 'pavo', + keywords: ['ave', 'pavo'], + }, + '🐔': { + name: 'pollo', + keywords: ['ave', 'gallinácea', 'pollo', 'gallina'], + }, + '🐓': { + name: 'gallo', + keywords: ['ave', 'gallina', 'gallinácea', 'pollo', 'gallo'], + }, + '🐣': { + name: 'pollito_saliendo_del_cascarón', + keywords: ['ave', 'huevo', 'pollito', 'pollo', 'pollito rompiendo el cascarón'], + }, + '🐤': { + name: 'pollito', + keywords: ['ave', 'pollo', 'polluelo', 'pollito'], + }, + '🐥': { + name: 'pollito_recién_nacido', + keywords: ['ave', 'pollito', 'pollo', 'pollito de frente'], + }, + '🐦': { + name: 'pájaro', + keywords: ['ave', 'pajarillo', 'pájaro'], + }, + '🐧': { + name: 'pingüino', + keywords: ['ave', 'pingüino'], + }, + '🕊️': { + name: 'paloma_de_la_paz', + keywords: ['ave', 'pájaro', 'paz', 'paloma'], + }, + '🦅': { + name: 'águila', + keywords: ['ave', 'águila'], + }, + '🦆': { + name: 'pato', + keywords: ['ave', 'pato'], + }, + '🦢': { + name: 'cisne', + keywords: ['ave', 'patito feo', 'cisne'], + }, + '🦉': { + name: 'búho', + keywords: ['ave', 'lechuza', 'pájaro', 'búho'], + }, + '🦤': { + name: 'dodo', + keywords: ['ave', 'dronte', 'extinguido', 'Mauricio', 'pájaro', 'dodo'], + }, + '🪶': { + name: 'pluma', + keywords: ['ave', 'ligero', 'pájaro', 'plumaje', 'pluma'], + }, + '🦩': { + name: 'flamenco', + keywords: ['extravangante', 'ostentoso', 'tropical', 'flamenco'], + }, + '🦚': { + name: 'pavo_real', + keywords: ['ave', 'orgulloso', 'pavo', 'plumas', 'pavo real'], + }, + '🦜': { + name: 'loro', + keywords: ['ave', 'hablar', 'papagayo', 'pirata', 'loro'], + }, + '🐸': { + name: 'rana', + keywords: ['cara', 'rana'], + }, + '🐊': { + name: 'cocodrilo', + keywords: ['caimán', 'cocodrilo'], + }, + '🐢': { + name: 'tortuga', + keywords: ['galápago', 'tortuga'], + }, + '🦎': { + name: 'lagarto', + keywords: ['lagartija', 'reptil', 'lagarto'], + }, + '🐍': { + name: 'serpiente', + keywords: ['culebra', 'reptil', 'víbora', 'serpiente'], + }, + '🐲': { + name: 'cara_de_dragón', + keywords: ['cara', 'cuento', 'dragón', 'fantasía', 'cara de dragón'], + }, + '🐉': { + name: 'dragón', + keywords: ['cuento', 'fantasía', 'dragón'], + }, + '🦕': { + name: 'saurópodo', + keywords: ['braquiosaurio', 'brontosaurio', 'diplodocus', 'saurópodo'], + }, + '🦖': { + name: 't-rex', + keywords: ['tiranosaurio', 'tiranosaurio rex', 't-rex'], + }, + '🐳': { + name: 'ballena', + keywords: ['ballena', 'chorro de agua', 'ballena soltando un chorro'], + }, + '🐋': { + name: 'ballena2', + keywords: ['cachalote', 'cetáceo', 'ballena'], + }, + '🐬': { + name: 'delfín', + keywords: ['cetáceo', 'delfín'], + }, + '🦭': { + name: 'foca', + keywords: ['león marino', 'foca'], + }, + '🐟': { + name: 'pez', + keywords: ['pececillo', 'pescado', 'piscis', 'zodiaco', 'pez'], + }, + '🐠': { + name: 'pez_tropical', + keywords: ['pez', 'tropical'], + }, + '🐡': { + name: 'pez_globo', + keywords: ['globo', 'pez'], + }, + '🦈': { + name: 'tiburón', + keywords: ['pez', 'tiburón'], + }, + '🐙': { + name: 'pulpo', + keywords: ['cefalópodo', 'octópodo', 'pulpo'], + }, + '🐚': { + name: 'caracola', + keywords: ['concha', 'mar', 'concha de mar'], + }, + '🐌': { + name: 'caracol', + keywords: ['caracola', 'molusco', 'caracol'], + }, + '🦋': { + name: 'mariposa', + keywords: ['bonito', 'insecto', 'mariposa'], + }, + '🐛': { + name: 'bicho', + keywords: ['gusano', 'insecto', 'bicho'], + }, + '🐜': { + name: 'hormiga', + keywords: ['antenas', 'insecto', 'hormiga'], + }, + '🐝': { + name: 'abeja', + keywords: ['insecto', 'miel', 'abeja'], + }, + '🪲': { + name: 'escarabajo', + keywords: ['bicho', 'insecto', 'escarabajo'], + }, + '🐞': { + name: 'mariquita', + keywords: ['cochinilla', 'insecto', 'mariquita'], + }, + '🦗': { + name: 'grillo', + keywords: ['saltamontes', 'grillo'], + }, + '🪳': { + name: 'cucaracha', + keywords: ['alimaña', 'bicho', 'insecto', 'plaga', 'cucaracha'], + }, + '🕷️': { + name: 'araña', + keywords: ['insecto', 'araña'], + }, + '🕸️': { + name: 'telaraña', + keywords: ['araña', 'tela', 'telaraña', 'tela de araña'], + }, + '🦂': { + name: 'escorpión', + keywords: ['escorpio', 'zodiaco', 'escorpión'], + }, + '🦟': { + name: 'mosquito', + keywords: ['fiebre', 'insecto', 'malaria', 'virus', 'mosquito'], + }, + '🪰': { + name: 'mosca', + keywords: ['basura', 'bicho', 'mal olor', 'podrido', 'mosca'], + }, + '🪱': { + name: 'gusano', + keywords: ['lombriz', 'oruga', 'parásito', 'gusano'], + }, + '🦠': { + name: 'microbio', + keywords: ['ameba', 'bacteria', 'germen', 'virus', 'microbio'], + }, + '💐': { + name: 'ramo', + keywords: ['bouquet', 'flores', 'ramo', 'ramo de flores'], + }, + '🌸': { + name: 'flor_de_cerezo', + keywords: ['cerezo', 'flor', 'flor de cerezo'], + }, + '💮': { + name: 'flor_blanca', + keywords: ['blanca', 'flor'], + }, + '🏵️': { + name: 'roseta', + keywords: ['flor', 'planta', 'roseta'], + }, + '🌹': { + name: 'rosa', + keywords: ['flor', 'rosa'], + }, + '🥀': { + name: 'flor_marchita', + keywords: ['flor', 'marchita', 'marchitada', 'marchitarse'], + }, + '🌺': { + name: 'hibisco', + keywords: ['flor', 'hibisco', 'flor de hibisco'], + }, + '🌻': { + name: 'girasol', + keywords: ['flor', 'sol', 'girasol'], + }, + '🌼': { + name: 'flor', + keywords: ['flor'], + }, + '🌷': { + name: 'tulipán', + keywords: ['flor', 'tulipán'], + }, + '🌱': { + name: 'plántula', + keywords: ['plantón', 'planta joven'], + }, + '🪴': { + name: 'planta_de_maceta', + keywords: ['crecer', 'maceta', 'planta', 'tiesto', 'planta de maceta'], + }, + '🌲': { + name: 'árbol_de_hoja_perenne', + keywords: ['árbol', 'hoja perenne', 'perenne', 'árbol de hoja perenne'], + }, + '🌳': { + name: 'árbol_caduco', + keywords: ['árbol', 'caducifolio', 'hoja caduca', 'árbol de hoja caduca'], + }, + '🌴': { + name: 'palmera', + keywords: ['árbol', 'árbol de palma', 'palmera'], + }, + '🌵': { + name: 'cactus', + keywords: ['planta', 'cactus'], + }, + '🌾': { + name: 'planta_de_arroz', + keywords: ['arroz', 'espiga', 'planta', 'espiga de arroz'], + }, + '🌿': { + name: 'hierba', + keywords: ['hoja', 'verde', 'hierba'], + }, + '☘️': { + name: 'trébol', + keywords: ['planta', 'trébol'], + }, + '🍀': { + name: 'trébol_de_cuatro_hojas', + keywords: ['suerte', 'trébol', 'trébol de cuatro hojas'], + }, + '🍁': { + name: 'hoja_de_arce', + keywords: ['arce', 'hoja', 'hoja de arce'], + }, + '🍂': { + name: 'hoja_caída', + keywords: ['caída', 'hojas', 'hojas caídas'], + }, + '🍃': { + name: 'hojas', + keywords: ['hoja', 'revolotear', 'soplar', 'viento', 'hojas revoloteando al viento'], + }, + '🍇': { + name: 'uvas', + keywords: ['agracejo', 'fruta', 'racimo', 'uva', 'uvas'], + }, + '🍈': { + name: 'melón', + keywords: ['fruta', 'melón'], + }, + '🍉': { + name: 'sandía', + keywords: ['fruta', 'sandía'], + }, + '🍊': { + name: 'mandarina', + keywords: ['fruta', 'naranja', 'mandarina'], + }, + '🍋': { + name: 'limón', + keywords: ['cítrico', 'citrón', 'fruta', 'limón'], + }, + '🍌': { + name: 'plátano', + keywords: ['banana', 'fruta', 'plátano'], + }, + '🍍': { + name: 'piña', + keywords: ['ananás', 'fruta', 'piña'], + }, + '🥭': { + name: 'mango', + keywords: ['fruta', 'tropical', 'mango'], + }, + '🍎': { + name: 'manzana', + keywords: ['fruta', 'manzana', 'poma', 'roja'], + }, + '🍏': { + name: 'manzana_verde', + keywords: ['fruta', 'manzana', 'poma', 'verde'], + }, + '🍐': { + name: 'pera', + keywords: ['fruta', 'perilla', 'pera'], + }, + '🍑': { + name: 'melocotón', + keywords: ['durazno', 'fruta', 'melocotón'], + }, + '🍒': { + name: 'cerezas', + keywords: ['cereza', 'fruta', 'guindas', 'cerezas'], + }, + '🍓': { + name: 'fresa', + keywords: ['fresón', 'fruta', 'fresa'], + }, + '🫐': { + name: 'arándanos', + keywords: ['arándano', 'azul', 'baya', 'frutos del bosque', 'mirtilo', 'arándanos'], + }, + '🥝': { + name: 'kiwi', + keywords: ['comida', 'fruta', 'kiwi'], + }, + '🍅': { + name: 'tomate', + keywords: ['ensalada', 'fruta', 'verdura', 'tomate'], + }, + '🫒': { + name: 'aceituna', + keywords: ['aperitivo', 'comida', 'oliva', 'aceituna'], + }, + '🥥': { + name: 'coco', + keywords: ['palmera', 'piña colada', 'coco'], + }, + '🥑': { + name: 'aguacate', + keywords: ['comida', 'fruta', 'aguacate'], + }, + '🍆': { + name: 'berenjena', + keywords: ['fruto', 'verdura', 'berenjena'], + }, + '🥔': { + name: 'patata', + keywords: ['comida', 'papa', 'verdura', 'patata'], + }, + '🥕': { + name: 'zanahoria', + keywords: ['comida', 'verdura', 'zanahoria'], + }, + '🌽': { + name: 'maíz', + keywords: ['espiga', 'maíz', 'mazorca', 'mijo', 'espiga de maíz'], + }, + '🌶️': { + name: 'guindilla', + keywords: ['chile', 'picante', 'planta'], + }, + '🫑': { + name: 'pimiento', + keywords: ['ají', 'chile', 'morrón', 'rojo', 'verdura', 'pimiento'], + }, + '🥒': { + name: 'pepino', + keywords: ['comida', 'pepinillo', 'verdura', 'pepino'], + }, + '🥬': { + name: 'verdura_de_hoja_verde', + keywords: ['bok choy', 'col', 'kale', 'lechuga', 'pak choi', 'verdura de hoja verde'], + }, + '🥦': { + name: 'brócoli', + keywords: ['col', 'repollo', 'brócoli'], + }, + '🧄': { + name: 'ajo', + keywords: ['condimento', 'vampiro', 'ajo'], + }, + '🧅': { + name: 'cebolla', + keywords: ['condimento', 'llorar', 'cebolla'], + }, + '🍄': { + name: 'seta', + keywords: ['hongo', 'seta', 'champiñón'], + }, + '🥜': { + name: 'cacahuetes', + keywords: ['cacahuete', 'comida', 'fruto seco', 'verdura', 'cacahuetes'], + }, + '🌰': { + name: 'castaña', + keywords: ['castaño', 'fruto seco', 'castaña'], + }, + '🍞': { + name: 'pan', + keywords: ['pan', 'rebanada', 'tostada', 'pan de molde'], + }, + '🥐': { + name: 'cruasán', + keywords: ['bollo', 'comida', 'croissant', 'francés', 'cruasán'], + }, + '🥖': { + name: 'baguete', + keywords: ['baguette', 'barra', 'comida', 'francés', 'pan', 'baguete'], + }, + '🫓': { + name: 'pan_sin_levadura', + keywords: ['arepa', 'naan', 'pita', 'tortilla', 'pan sin levadura'], + }, + '🥨': { + name: 'galleta_salada', + keywords: ['galleta salada', 'pretzel', 'bretzel'], + }, + '🥯': { + name: 'bagel', + keywords: ['bocadillo', 'pan', 'panadería', 'bagel'], + }, + '🥞': { + name: 'crepes', + keywords: ['comida', 'dulce', 'pancakes', 'postre', 'tortita', 'tortitas'], + }, + '🧇': { + name: 'gofre', + keywords: ['waffle', 'gofre'], + }, + '🧀': { + name: 'cuña_de_queso', + keywords: ['cuña', 'queso', 'trozo', 'cuña de queso'], + }, + '🍖': { + name: 'hueso_con_carne', + keywords: ['carne', 'hueso', 'restaurante', 'carne con hueso'], + }, + '🍗': { + name: 'muslo_de_pollo', + keywords: ['muslo', 'pollo', 'restaurante', 'muslo de pollo'], + }, + '🥩': { + name: 'chuleta', + keywords: ['carne', 'chuleta', 'filete', 'corte de carne'], + }, + '🥓': { + name: 'beicon', + keywords: ['bacon', 'carne', 'comida', 'panceta', 'beicon'], + }, + '🍔': { + name: 'hamburguesa', + keywords: ['burger', 'hamburguesa'], + }, + '🍟': { + name: 'patatas_fritas', + keywords: ['papas fritas', 'patatas', 'restaurante', 'patatas fritas'], + }, + '🍕': { + name: 'pizza', + keywords: ['porción', 'restaurante', 'pizza'], + }, + '🌭': { + name: 'perrito_caliente', + keywords: ['perrito', 'salchicha', 'perrito caliente'], + }, + '🥪': { + name: 'sándwich', + keywords: ['bocadillo', 'bocata', 'emparedado', 'sándwich'], + }, + '🌮': { + name: 'taco', + keywords: ['comida', 'mexicano', 'taco'], + }, + '🌯': { + name: 'burrito', + keywords: ['comida', 'mexicano', 'tex mex', 'wrap', 'burrito'], + }, + '🫔': { + name: 'tamal', + keywords: ['mejicano', 'mexicano', 'wrap', 'tamal'], + }, + '🥙': { + name: 'kebab', + keywords: ['comida', 'durum', 'falafel', 'kebab', 'pan de pita', 'pan relleno'], + }, + '🧆': { + name: 'falafel', + keywords: ['albóndiga', 'garbanzo', 'falafel'], + }, + '🥚': { + name: 'huevo', + keywords: ['comida', 'huevo'], + }, + '🍳': { + name: 'huevo_frito', + keywords: ['freír', 'huevo', 'sartén', 'cocinar'], + }, + '🥘': { + name: 'paella', + keywords: ['arroz', 'comida', 'paella'], + }, + '🍲': { + name: 'estofado', + keywords: ['comida de olla', 'puchero', 'restaurante', 'olla de comida'], + }, + '🫕': { + name: 'fondue', + keywords: ['chocolate', 'olla', 'queso', 'suizo', 'fondue'], + }, + '🥣': { + name: 'cuenco_con_cuchara', + keywords: ['cereal', 'desayuno', 'cuenco con cuchara'], + }, + '🥗': { + name: 'ensalada_verde', + keywords: ['bol', 'comida', 'verde', 'ensalada'], + }, + '🍿': { + name: 'palomitas_de_maíz', + keywords: ['maíz', 'palomitas'], + }, + '🧈': { + name: 'mantequilla', + keywords: ['lácteo', 'mantequilla'], + }, + '🧂': { + name: 'sal', + keywords: ['condimento', 'salero', 'sal'], + }, + '🥫': { + name: 'comida_enlatada', + keywords: ['conserva', 'lata', 'comida enlatada'], + }, + '🍱': { + name: 'bento', + keywords: ['bento', 'caja', 'comida', 'restaurante', 'caja de bento'], + }, + '🍘': { + name: 'galleta_de_arroz', + keywords: ['arroz', 'galleta', 'galleta de arroz'], + }, + '🍙': { + name: 'bola_de_arroz', + keywords: ['arroz', 'japonés', 'onigiri', 'restaurante', 'bola de arroz'], + }, + '🍚': { + name: 'arroz', + keywords: ['arroz', 'restaurante', 'arroz cocido'], + }, + '🍛': { + name: 'curry', + keywords: ['arroz', 'curry', 'restaurante', 'arroz con curry'], + }, + '🍜': { + name: 'ramen', + keywords: ['fideos calientes', 'fideos chinos', 'fideos ramen', 'ramen', 'tazón de fideos'], + }, + '🍝': { + name: 'espaguetis', + keywords: ['pasta', 'restaurante', 'espagueti'], + }, + '🍠': { + name: 'batata', + keywords: ['asada', 'papa asada', 'patata', 'restaurante'], + }, + '🍢': { + name: 'oden', + keywords: ['japonés', 'marisco', 'oden', 'pincho', 'brocheta'], + }, + '🍣': { + name: 'sushi', + keywords: ['restaurante', 'sushi'], + }, + '🍤': { + name: 'camarón_frito', + keywords: ['frito', 'gamba', 'restaurante', 'gamba frita'], + }, + '🍥': { + name: 'pastel_de_pescado', + keywords: ['comida japonesa', 'pastel', 'pescado', 'pastel de pescado japonés'], + }, + '🥮': { + name: 'pastel_de_luna', + keywords: ['festival', 'luna', 'otoño', 'yuebing', 'pastel de luna'], + }, + '🍡': { + name: 'dango', + keywords: ['japonés', 'pincho', 'postre', 'restaurante', 'dango'], + }, + '🥟': { + name: 'empanadilla', + keywords: ['comida', 'gyōza', 'jiaozi', 'masa', 'dumpling'], + }, + '🥠': { + name: 'galletita_fortuna', + keywords: ['adivinación', 'profecía', 'superstición', 'galleta de la fortuna'], + }, + '🥡': { + name: 'caja_comida_rápida', + keywords: ['recipiente para llevar', 'restaurante', 'caja para llevar'], + }, + '🦀': { + name: 'cangrejo', + keywords: ['animal', 'cáncer', 'zodiaco', 'cangrejo'], + }, + '🦞': { + name: 'langosta', + keywords: ['langosta', 'marisco', 'pinzas', 'bogavante'], + }, + '🦐': { + name: 'camarón', + keywords: ['camarón', 'comida', 'langostino', 'marisco', 'gamba'], + }, + '🦑': { + name: 'calamar', + keywords: ['comida', 'molusco', 'calamar'], + }, + '🦪': { + name: 'ostra', + keywords: ['buceo', 'perla', 'ostra'], + }, + '🍦': { + name: 'helado', + keywords: ['cucurucho', 'dulce', 'helado', 'helado de cucurucho', 'restaurante', 'cucurucho de helado'], + }, + '🍧': { + name: 'hielo_picado', + keywords: ['helado', 'hielo', 'postre', 'raspado', 'granizado hawaiano'], + }, + '🍨': { + name: 'postre_helado', + keywords: ['postre', 'sorbete', 'helado'], + }, + '🍩': { + name: 'rosquilla', + keywords: ['berlina', 'pastel', 'rosquilla', 'dónut'], + }, + '🍪': { + name: 'galleta', + keywords: ['dulce', 'pasta', 'postre', 'galleta'], + }, + '🎂': { + name: 'cumpleaños', + keywords: ['celebración', 'cumpleaños', 'tarta', 'tarta de cumpleaños'], + }, + '🍰': { + name: 'pastel', + keywords: ['pedazo de tarta', 'restaurante', 'tarta', 'trozo de tarta'], + }, + '🧁': { + name: 'magdalena', + keywords: ['cupcake', 'dulce', 'repostería', 'magdalena'], + }, + '🥧': { + name: 'tarta', + keywords: ['masa', 'relleno', 'pastel'], + }, + '🍫': { + name: 'chocolatina', + keywords: ['barra', 'chocolate', 'restaurante', 'tableta', 'tableta de chocolate'], + }, + '🍬': { + name: 'caramelo', + keywords: ['chuche', 'chuchería', 'dulce', 'golosina', 'caramelo'], + }, + '🍭': { + name: 'piruleta', + keywords: ['chuche', 'chuchería', 'dulce', 'golosina', 'piruleta'], + }, + '🍮': { + name: 'natillas', + keywords: ['dulce', 'postre', 'pudding', 'flan'], + }, + '🍯': { + name: 'tarro_de_miel', + keywords: ['dulce', 'miel', 'tarro', 'tarro de miel'], + }, + '🍼': { + name: 'biberón', + keywords: ['bebé', 'bibe', 'bibi', 'botella', 'leche', 'biberón'], + }, + '🥛': { + name: 'vaso_de_leche', + keywords: ['bebida', 'leche', 'vaso', 'vaso de leche'], + }, + '☕': { + name: 'café', + keywords: ['bebida', 'café', 'caliente', 'té'], + }, + '🫖': { + name: 'tetera', + keywords: ['bebida', 'infusión', 'té', 'tetera'], + }, + '🍵': { + name: 'té', + keywords: ['bebida', 'taza', 'té', 'tazón de té'], + }, + '🍶': { + name: 'sake', + keywords: ['bar', 'bebida', 'botella', 'restaurante', 'tazón', 'sake'], + }, + '🍾': { + name: 'champán', + keywords: ['bar', 'beber', 'botella', 'cava', 'corcho', 'botella descorchada'], + }, + '🍷': { + name: 'copa_de_vino', + keywords: ['bar', 'bebida', 'copa', 'vaso', 'vino', 'copa de vino'], + }, + '🍸': { + name: 'cóctel', + keywords: ['bar', 'cóctel', 'copa', 'restaurante', 'copa de cóctel'], + }, + '🍹': { + name: 'bebida_tropical', + keywords: ['bar', 'bebida', 'restaurante', 'tropical'], + }, + '🍺': { + name: 'cerveza', + keywords: ['bar', 'cerveza', 'jarra', 'restaurante', 'jarra de cerveza'], + }, + '🍻': { + name: 'cervezas', + keywords: ['bar', 'cerveza', 'jarra', 'jarras', 'restaurante', 'jarras de cerveza brindando'], + }, + '🥂': { + name: 'copas_brindis', + keywords: ['bebida', 'brindar', 'brindis', 'celebración', 'copa', 'copas brindando'], + }, + '🥃': { + name: 'vaso_corto', + keywords: ['chupito', 'copa', 'licor', 'vaso', 'whisky', 'vaso de whisky'], + }, + '🥤': { + name: 'vaso_con_pajita', + keywords: ['refresco', 'zumo', 'vaso con pajita'], + }, + '🧋': { + name: 'té_de_burbujas', + keywords: ['boba', 'bubble tea', 'burbuja', 'leche', 'perla', 'té', 'té de burbujas'], + }, + '🧃': { + name: 'tetrabrik', + keywords: ['brick', 'cartón', 'envase', 'zumo', 'tetrabrik'], + }, + '🧉': { + name: 'bebida_de_mate', + keywords: ['bebida', 'infusión', 'mate'], + }, + '🧊': { + name: 'cubito_de_hielo', + keywords: ['frío', 'iceberg', 'cubito de hielo'], + }, + '🥢': { + name: 'palillos', + keywords: ['cubiertos', 'hashi', 'palillos'], + }, + '🍽️': { + name: 'cuchillo_tenedor_plato', + keywords: ['cuchillo', 'plato', 'restaurante', 'tenedor', 'cuchillo y tenedor con un plato'], + }, + '🍴': { + name: 'cuchilo_y_tenedor', + keywords: ['cuchillo', 'restaurante', 'tenedor', 'tenedor y cuchillo'], + }, + '🥄': { + name: 'cuchara', + keywords: ['cubiertos', 'cucharilla', 'cuchara'], + }, + '🔪': { + name: 'cuchillo_japonés', + keywords: ['arma', 'cocinar', 'cuchillo', 'cuchillo de cocina'], + }, + '🏺': { + name: 'ánfora', + keywords: ['acuario', 'beber', 'jarra', 'zodiaco', 'ánfora'], + }, + '🌍': { + name: 'tierra_áfrica', + keywords: ['África', 'Europa', 'mundo', 'planeta', 'Tierra', 'globo terráqueo mostrando Europa y África'], + }, + '🌎': { + name: 'tierra_américa', + keywords: ['América', 'globo', 'mundo', 'planeta', 'Tierra', 'globo terráqueo mostrando América'], + }, + '🌏': { + name: 'tierra_asia', + keywords: ['Asia', 'Australia', 'mundo', 'planeta', 'Tierra', 'globo terráqueo mostrando Asia y Australia'], + }, + '🌐': { + name: 'globo_terráqueo_con_meridianos', + keywords: ['globo', 'meridianos', 'mundo', 'Tierra', 'globo terráqueo con meridianos'], + }, + '🗺️': { + name: 'mapamundi', + keywords: ['mapa', 'mapamundi', 'mundo', 'mapa mundial'], + }, + '🗾': { + name: 'japón', + keywords: ['Japón', 'mapa', 'mapa de japón', 'mapa de Japón'], + }, + '🧭': { + name: 'brújula', + keywords: ['compás', 'magnético', 'navegación', 'orientación', 'brújula'], + }, + '🏔️': { + name: 'montaña_con_cima_nevada', + keywords: ['frío', 'montaña', 'nieve', 'montaña con nieve'], + }, + '⛰️': { + name: 'montaña', + keywords: ['monte', 'montaña'], + }, + '🌋': { + name: 'volcán', + keywords: ['erupción', 'erupción volcánica', 'volcán'], + }, + '🗻': { + name: 'monte_fuji', + keywords: ['montaña', 'monte fuji', 'monte Fuji'], + }, + '🏕️': { + name: 'campin', + keywords: ['acampada', 'campamento', 'vacaciones', 'camping'], + }, + '🏖️': { + name: 'playa_con_sombrilla', + keywords: ['playa', 'sombrilla', 'playa y sombrilla'], + }, + '🏜️': { + name: 'desierto', + keywords: ['arena', 'desierto'], + }, + '🏝️': { + name: 'isla_desierta', + keywords: ['desierta', 'isla'], + }, + '🏞️': { + name: 'parque_nacional', + keywords: ['nacional', 'parque'], + }, + '🏟️': { + name: 'estadio', + keywords: ['estadio'], + }, + '🏛️': { + name: 'edificio_clásico', + keywords: ['clásico', 'edificio'], + }, + '🏗️': { + name: 'edificio_en_construcción', + keywords: ['edificio', 'obra', 'construcción'], + }, + '🧱': { + name: 'ladrillos', + keywords: ['arcilla', 'cemento', 'muro', 'pared', 'ladrillo'], + }, + '🪨': { + name: 'roca', + keywords: ['pedrusco', 'peña', 'peñasco', 'roca', 'piedra'], + }, + '🪵': { + name: 'madera', + keywords: ['hoguera', 'leña', 'madero', 'palos', 'tronco', 'madera'], + }, + '🛖': { + name: 'cabaña', + keywords: ['casa', 'yurta', 'cabaña'], + }, + '🏘️': { + name: 'edificios_de_viviendas', + keywords: ['edificio', 'urbanización', 'casas'], + }, + '🏚️': { + name: 'edificio_de_viviendas_en_ruinas', + keywords: ['abandonada', 'casa', 'deshabitada', 'inhabitada', 'vacía'], + }, + '🏠': { + name: 'casa', + keywords: ['vivienda', 'casa'], + }, + '🏡': { + name: 'casa_con_jardín', + keywords: ['casa', 'construcción', 'jardín', 'vivienda', 'casa con jardín'], + }, + '🏢': { + name: 'oficina', + keywords: ['construcción', 'edificio', 'oficinas', 'edificio de oficinas'], + }, + '🏣': { + name: 'oficina_postal', + keywords: ['correos', 'edificio', 'japón', 'oficina de correos', 'oficina de correos japonesa'], + }, + '🏤': { + name: 'oficina_de_correos_europea', + keywords: ['correos', 'edificio', 'europa', 'oficina de correos', 'oficina de correos europea'], + }, + '🏥': { + name: 'hospital', + keywords: ['doctor', 'edificio', 'medicina', 'médico', 'hospital'], + }, + '🏦': { + name: 'banco', + keywords: ['banca', 'edificio', 'banco'], + }, + '🏨': { + name: 'hotel', + keywords: ['alojamiento', 'edificio', 'turismo', 'hotel'], + }, + '🏩': { + name: 'motel_para_parejas', + keywords: ['amor', 'edificio', 'hotel', 'hotel del amor'], + }, + '🏪': { + name: 'tienda_de_barrio', + keywords: ['edificio', 'establecimiento', 'tienda de comestibles', 'tienda 24 horas'], + }, + '🏫': { + name: 'colegio', + keywords: ['edificio', 'escuela', 'colegio'], + }, + '🏬': { + name: 'grandes_almacenes', + keywords: ['comercio', 'grandes almacenes'], + }, + '🏭': { + name: 'fábrica', + keywords: ['edificio', 'industria', 'fábrica'], + }, + '🏯': { + name: 'castillo_japonés', + keywords: ['castillo', 'construcción', 'castillo japonés'], + }, + '🏰': { + name: 'castillo_europeo', + keywords: ['castillo', 'construcción', 'castillo europeo'], + }, + '💒': { + name: 'boda', + keywords: ['boda', 'iglesia', 'romance', 'iglesia celebrando boda'], + }, + '🗼': { + name: 'torre_de_tokio', + keywords: ['Tokio', 'torre', 'Torre de Tokio'], + }, + '🗽': { + name: 'estatua_de_la_libertad', + keywords: ['estatua', 'estatua de la libertad', 'Estatua de la Libertad', 'libertad'], + }, + '⛪': { + name: 'iglesia', + keywords: ['cristianismo', 'cruz', 'edificio', 'religión', 'iglesia'], + }, + '🕌': { + name: 'mezquita', + keywords: ['islam', 'religión', 'mezquita'], + }, + '🛕': { + name: 'templo_hindú', + keywords: ['hindú', 'templo'], + }, + '🕍': { + name: 'sinagoga', + keywords: ['judaísmo', 'religión', 'sinagoga'], + }, + '⛩️': { + name: 'santuario_sintoísta', + keywords: ['japón', 'religión', 'santuario', 'sintoísmo', 'santuario sintoísta'], + }, + '🕋': { + name: 'kaaba', + keywords: ['islam', 'kaaba', 'Kaaba', 'religión'], + }, + '⛲': { + name: 'fuente', + keywords: ['fuente'], + }, + '⛺': { + name: 'tienda_de_campaña', + keywords: ['campaña', 'camping', 'tienda', 'vacaciones', 'tienda de campaña'], + }, + '🌁': { + name: 'brumoso', + keywords: ['niebla', 'bruma'], + }, + '🌃': { + name: 'noche_estrellada', + keywords: ['estrellas', 'noche', 'noche estrellada'], + }, + '🏙️': { + name: 'paisaje_urbano', + keywords: ['ciudad', 'edificio', 'paisaje', 'paisaje urbano'], + }, + '🌄': { + name: 'amanecer_sobre_las_montañas', + keywords: ['amanecer', 'montaña', 'salida', 'sol', 'amanecer sobre montañas'], + }, + '🌅': { + name: 'amanecer', + keywords: ['salida del sol', 'amanecer'], + }, + '🌆': { + name: 'puesta_de_sol_urbana', + keywords: ['atardecer', 'ciudad', 'edificios', 'paisaje', 'ciudad al atardecer'], + }, + '🌇': { + name: 'amanecer_urbano', + keywords: ['edificios', 'puesta del sol'], + }, + '🌉': { + name: 'puente_de_noche', + keywords: ['noche', 'puente', 'puente de noche'], + }, + '♨️': { + name: 'aguas_termales', + keywords: ['termas', 'vapor', 'aguas termales'], + }, + '🎠': { + name: 'caballito_de_carrusel', + keywords: ['caballo', 'entretenimiento', 'tiovivo', 'caballo de tiovivo'], + }, + '🎡': { + name: 'noria', + keywords: ['atracciones', 'entretenimiento', 'feria', 'noria', 'noria de feria'], + }, + '🎢': { + name: 'montaña_rusa', + keywords: ['atracciones', 'entretenimiento', 'feria', 'parque', 'montaña rusa'], + }, + '💈': { + name: 'barbero', + keywords: ['barbería', 'barbero', 'peluquero', 'poste', 'poste de barbero'], + }, + '🎪': { + name: 'carpa_de_circo', + keywords: ['carpa', 'circo', 'entretenimiento', 'carpa de circo'], + }, + '🚂': { + name: 'locomotora_de_vapor', + keywords: ['locomotora', 'tren', 'vehículo', 'locomotora de vapor'], + }, + '🚃': { + name: 'vagón', + keywords: ['ferrocarril', 'tranvía', 'tren eléctrico', 'vehículo', 'vagón'], + }, + '🚄': { + name: 'tren_bala_de_lado', + keywords: ['AVE', 'ferrocarril', 'rápido', 'tren', 'velocidad', 'tren de alta velocidad'], + }, + '🚅': { + name: 'tren_bala_de_frente', + keywords: ['bala', 'shinkansen', 'tren', 'vehículo', 'velocidad'], + }, + '🚆': { + name: 'tren2', + keywords: ['ferrocarril', 'vehículo', 'tren'], + }, + '🚇': { + name: 'metro', + keywords: ['subterráneo', 'suburbano', 'transporte', 'metro'], + }, + '🚈': { + name: 'tren_ligero', + keywords: ['ferrocarril', 'transporte', 'tren', 'tren ligero'], + }, + '🚉': { + name: 'estación', + keywords: ['estación', 'tren', 'estación de tren'], + }, + '🚊': { + name: 'tranvía', + keywords: ['transporte', 'trolebús', 'tranvía'], + }, + '🚝': { + name: 'monorraíl', + keywords: ['ferrocarril', 'monocarril', 'transporte', 'tren', 'monorraíl'], + }, + '🚞': { + name: 'tren_de_montaña', + keywords: ['ferrocarril', 'montaña', 'vehículo', 'ferrocarril de montaña'], + }, + '🚋': { + name: 'tren', + keywords: ['tranvía', 'vagón', 'vehículo', 'vagón de tranvía'], + }, + '🚌': { + name: 'autobús', + keywords: ['bus', 'transporte', 'autobús'], + }, + '🚍': { + name: 'bus_en_sentido_contrario', + keywords: ['autobús', 'próximo', 'vehículo'], + }, + '🚎': { + name: 'trolebús', + keywords: ['transporte', 'tranvía', 'trolebús'], + }, + '🚐': { + name: 'microbús', + keywords: ['autobús', 'bus', 'transporte', 'minibús'], + }, + '🚑': { + name: 'ambulancia', + keywords: ['asistencia médica', 'transporte', 'vehículo', 'ambulancia'], + }, + '🚒': { + name: 'camión_de_bomberos', + keywords: ['camión', 'camión de bomberos', 'fuego', 'vehículo', 'coche de bomberos'], + }, + '🚓': { + name: 'coche_patrulla', + keywords: ['coche patrulla', 'policía', 'vehículo', 'coche de policía'], + }, + '🚔': { + name: 'coche_de_policía_en_sentido_contrario', + keywords: ['coche patrulla', 'policía', 'próximo', 'vehículo', 'coche de policía próximo'], + }, + '🚕': { + name: 'taxi', + keywords: ['coche', 'vehículo', 'taxi'], + }, + '🚖': { + name: 'taxi_en_sentido_contrario', + keywords: ['taxi', 'vehículo', 'taxi próximo'], + }, + '🚗': { + name: 'coche', + keywords: ['automóvil', 'vehículo', 'coche'], + }, + '🚘': { + name: 'automóvil_en_sentido_contrario', + keywords: ['automóvil', 'coche', 'próximo', 'vehículo'], + }, + '🚙': { + name: 'coche_azul', + keywords: ['camping', 'caravana', 'furgoneta', 'vacaciones', 'vehículo', 'vehículo deportivo utilitario'], + }, + '🛻': { + name: 'camioneta', + keywords: ['pickup', 'ranchera', 'camioneta'], + }, + '🚚': { + name: 'camión', + keywords: ['mercancías', 'reparto', 'transporte', 'vehículo', 'camión de reparto'], + }, + '🚛': { + name: 'camión_articulado', + keywords: ['camión', 'tráiler', 'vehículo', 'camión articulado'], + }, + '🚜': { + name: 'tractor', + keywords: ['agricultura', 'vehículo', 'tractor'], + }, + '🏎️': { + name: 'coche_de_carreras', + keywords: ['carreras', 'coche', 'coche de carreras'], + }, + '🏍️': { + name: 'moto_de_carreras', + keywords: ['carreras', 'motocicleta', 'vehículo', 'moto'], + }, + '🛵': { + name: 'vespa', + keywords: ['escúter', 'moto', 'scooter'], + }, + '🦽': { + name: 'silla_de_ruedas_manual', + keywords: ['accesibilidad', 'silla de ruedas manual'], + }, + '🦼': { + name: 'silla_de_ruedas_eléctrica', + keywords: ['accesibilidad', 'silla de ruedas eléctrica'], + }, + '🛺': { + name: 'mototaxi', + keywords: ['rickshaw', 'tuk tuk', 'mototaxi'], + }, + '🚲': { + name: 'bicicleta', + keywords: ['bici', 'vehículo', 'bicicleta'], + }, + '🛴': { + name: 'patinete', + keywords: ['patinete'], + }, + '🛹': { + name: 'monopatín', + keywords: ['skateboard', 'tabla', 'monopatín'], + }, + '🛼': { + name: 'patines', + keywords: ['patín', 'patín de 4 ruedas', 'patín de cuatro ruedas', 'patines'], + }, + '🚏': { + name: 'parada_de_autobús', + keywords: ['autobús', 'parada', 'parada de autobús'], + }, + '🛣️': { + name: 'autopista', + keywords: ['carretera', 'autopista'], + }, + '🛤️': { + name: 'vía_de_tren', + keywords: ['tren', 'vía', 'vía de tren'], + }, + '🛢️': { + name: 'barril_de_petróleo', + keywords: ['barril', 'bidón', 'petróleo', 'barril de petróleo'], + }, + '⛽': { + name: 'surtidor_de_gasolina', + keywords: ['bomba de gasolina', 'combustible', 'gasolina', 'surtidor', 'surtidor de gasolina'], + }, + '🚨': { + name: 'luz_giratoria', + keywords: ['coche de policía', 'luces', 'policía', 'luces de policía'], + }, + '🚥': { + name: 'semáforo', + keywords: ['luz', 'señales de tráfico', 'tráfico', 'semáforo horizontal'], + }, + '🚦': { + name: 'semáforo_vertical', + keywords: ['luz', 'semáforo vertical', 'señales de tráfico', 'tráfico', 'semáforo'], + }, + '🛑': { + name: 'señal_octogonal', + keywords: ['octágono', 'parada', 'señal', 'stop', 'señal de stop'], + }, + '🚧': { + name: 'construcción', + keywords: ['construcción', 'señal', 'señal de obras', 'obras'], + }, + '⚓': { + name: 'ancla', + keywords: ['barco', 'gancho', 'ancla'], + }, + '⛵': { + name: 'barco_de_vela', + keywords: ['barco', 'barco de vela', 'yate', 'velero'], + }, + '🛶': { + name: 'canoa', + keywords: ['barca', 'barco', 'piragua', 'canoa'], + }, + '🚤': { + name: 'lancha_rápida', + keywords: ['barco', 'vehículo', 'lancha motora'], + }, + '🛳️': { + name: 'barco_de_pasajeros', + keywords: ['barco', 'pasajeros', 'vehículo', 'barco de pasajeros'], + }, + '⛴️': { + name: 'ferri', + keywords: ['barco', 'ferry', 'ferri'], + }, + '🛥️': { + name: 'motora', + keywords: ['barco', 'motor', 'vehículo', 'barco a motor'], + }, + '🚢': { + name: 'barco', + keywords: ['vehículo', 'barco'], + }, + '✈️': { + name: 'avión', + keywords: ['aeroplano', 'avión'], + }, + '🛩️': { + name: 'avioneta', + keywords: ['avión', 'avioneta'], + }, + '🛫': { + name: 'avión_despegando', + keywords: ['aeroplano', 'avión', 'salida', 'avión despegando'], + }, + '🛬': { + name: 'avión_aterrizando', + keywords: ['aeroplano', 'avión', 'llegada', 'avión aterrizando'], + }, + '🪂': { + name: 'paracaídas', + keywords: ['ala delta', 'paracaidismo', 'paravela', 'volar', 'paracaídas'], + }, + '💺': { + name: 'asiento', + keywords: ['asiento', 'plaza', 'silla', 'asiento de transporte'], + }, + '🚁': { + name: 'helicóptero', + keywords: ['aspas', 'rotores', 'vehículo', 'volar', 'helicóptero'], + }, + '🚟': { + name: 'tren_colgante', + keywords: ['ferrocarril', 'suspensión', 'vehículo', 'ferrocarril de suspensión'], + }, + '🚠': { + name: 'funicular_de_montaña', + keywords: ['cable', 'funicular', 'montaña', 'teleférico', 'vehículo', 'teleférico de montaña'], + }, + '🚡': { + name: 'teleférico', + keywords: ['aéreo', 'tranvía', 'vehículo', 'teleférico'], + }, + '🛰️': { + name: 'satélite', + keywords: ['espacio', 'vehículo', 'satélite'], + }, + '🚀': { + name: 'cohete', + keywords: ['espacio', 'vehículo', 'cohete'], + }, + '🛸': { + name: 'platillo_volante', + keywords: ['ovni', 'platillo volante'], + }, + '🛎️': { + name: 'timbre_de_hotel', + keywords: ['botones', 'campanilla', 'hotel', 'timbre', 'timbre de hotel'], + }, + '🧳': { + name: 'equipaje', + keywords: ['maleta', 'viajar', 'equipaje'], + }, + '⌛': { + name: 'reloj_de_arena', + keywords: ['arena', 'reloj', 'temporizador', 'reloj de arena sin tiempo'], + }, + '⏳': { + name: 'reloj_de_arena_en_marcha', + keywords: ['reloj con arena cayendo', 'temporizador', 'reloj de arena con tiempo'], + }, + '⌚': { + name: 'reloj', + keywords: ['reloj'], + }, + '⏰': { + name: 'reloj_de_alarma', + keywords: ['alarma', 'despertador', 'reloj'], + }, + '⏱️': { + name: 'cronómetro', + keywords: ['reloj', 'cronómetro'], + }, + '⏲️': { + name: 'temporizador', + keywords: ['reloj', 'temporizador'], + }, + '🕰️': { + name: 'reloj_de_repisa', + keywords: ['reloj', 'sobremesa', 'reloj de sobremesa'], + }, + '🕛': { + name: 'reloj12', + keywords: ['12:00', 'doce', 'reloj', '12 en punto'], + }, + '🕧': { + name: 'reloj1230', + keywords: ['12:30', 'reloj', 'doce y media'], + }, + '🕐': { + name: 'reloj1', + keywords: ['reloj', 'una', '1 en punto 1:00'], + }, + '🕜': { + name: 'reloj130', + keywords: ['1:30', 'reloj', 'una y media'], + }, + '🕑': { + name: 'reloj2', + keywords: ['2:00', 'dos', 'reloj', '2 en punto'], + }, + '🕝': { + name: 'reloj230', + keywords: ['2:30', 'reloj', 'dos y media'], + }, + '🕒': { + name: 'reloj3', + keywords: ['3:00', 'reloj', 'tres', '3 en punto'], + }, + '🕞': { + name: 'reloj330', + keywords: ['3:30', 'reloj', 'tres y media'], + }, + '🕓': { + name: 'reloj4', + keywords: ['4:00', 'cuatro', 'reloj', '4 en punto'], + }, + '🕟': { + name: 'reloj430', + keywords: ['4:30', 'reloj', 'cuatro y media'], + }, + '🕔': { + name: 'reloj5', + keywords: ['5:00', 'cinco', 'reloj', '5 en punto'], + }, + '🕠': { + name: 'reloj530', + keywords: ['5:30', 'reloj', 'cinco y media'], + }, + '🕕': { + name: 'reloj6', + keywords: ['6:00', 'reloj', 'seis', '6 en punto'], + }, + '🕡': { + name: 'reloj630', + keywords: ['6:30', 'reloj', 'seis y media'], + }, + '🕖': { + name: 'reloj7', + keywords: ['7:00', 'reloj', 'siete', '7 en punto'], + }, + '🕢': { + name: 'reloj730', + keywords: ['7:30', 'reloj', 'siete y media'], + }, + '🕗': { + name: 'reloj8', + keywords: ['8:00', 'ocho', 'reloj', '8 en punto'], + }, + '🕣': { + name: 'reloj830', + keywords: ['8:30', 'reloj', 'ocho y media'], + }, + '🕘': { + name: 'reloj9', + keywords: ['9:00', 'nueve', 'reloj', '9 en punto'], + }, + '🕤': { + name: 'reloj930', + keywords: ['9:30', 'reloj', 'nueve y media'], + }, + '🕙': { + name: 'reloj10', + keywords: ['10:00', 'diez', 'reloj', '10 en punto'], + }, + '🕥': { + name: 'reloj1030', + keywords: ['10:30', 'reloj', 'diez y media'], + }, + '🕚': { + name: 'reloj11', + keywords: ['11:00', 'once', 'reloj', '11 en punto'], + }, + '🕦': { + name: 'reloj1130', + keywords: ['11:30', 'reloj', 'once y media'], + }, + '🌑': { + name: 'luna_nueva', + keywords: ['luna', 'oscuridad', 'luna nueva'], + }, + '🌒': { + name: 'luna_nueva_visible', + keywords: ['creciente', 'cuarto', 'espacio', 'luna'], + }, + '🌓': { + name: 'luna_en_cuarto_creciente', + keywords: ['creciente', 'cuarto', 'espacio', 'luna', 'luna en cuarto creciente'], + }, + '🌔': { + name: 'luna', + keywords: ['creciente', 'gibosa', 'luna'], + }, + '🌕': { + name: 'luna_llena', + keywords: ['llena', 'luna', 'plenilunio'], + }, + '🌖': { + name: 'luna_gibosa_menguante', + keywords: ['gibosa', 'luna', 'menguante'], + }, + '🌗': { + name: 'luna_en_cuarto_menguante', + keywords: ['cuarto', 'luna', 'menguante', 'luna en cuarto menguante'], + }, + '🌘': { + name: 'luna_menguante', + keywords: ['luna', 'menguante'], + }, + '🌙': { + name: 'luna_creciente', + keywords: ['creciente', 'espacio', 'luna'], + }, + '🌚': { + name: 'luna_nueva_con_cara', + keywords: ['cara', 'espacio', 'luna', 'luna nueva con cara'], + }, + '🌛': { + name: 'luna_en_cuarto_creciente_con_cara', + keywords: ['cara', 'creciente', 'cuarto', 'espacio', 'luna', 'luna de cuarto creciente con cara'], + }, + '🌜': { + name: 'luna_en_cuarto_menguante_con_cara', + keywords: ['cara', 'creciente', 'cuarto', 'espacio', 'luna', 'luna de cuarto menguante con cara'], + }, + '🌡️': { + name: 'termómetro', + keywords: ['temperatura', 'termómetro'], + }, + '☀️': { + name: 'soleado', + keywords: ['espacio', 'rayos', 'soleado', 'sol'], + }, + '🌝': { + name: 'luna_llena_con_cara', + keywords: ['cara', 'llena', 'luna', 'luna llena con cara'], + }, + '🌞': { + name: 'sol_con_cara', + keywords: ['brillante', 'cara', 'sol', 'sol con cara'], + }, + '🪐': { + name: 'planeta_con_anillos', + keywords: ['saturnino', 'saturno', 'planeta con anillos'], + }, + '⭐': { + name: 'estrella', + keywords: ['estelar estrella'], + }, + '🌟': { + name: 'estrella2', + keywords: ['brillante', 'estrella', 'resplandeciente'], + }, + '🌠': { + name: 'estrellas', + keywords: ['estrella', 'lluvia', 'estrella fugaz'], + }, + '🌌': { + name: 'vía_láctea', + keywords: ['espacio', 'galaxia', 'vía láctea', 'Vía Láctea'], + }, + '☁️': { + name: 'nube', + keywords: ['tiempo', 'nube'], + }, + '⛅': { + name: 'parcialmente_soleado', + keywords: ['nube', 'sol', 'sol con nubes', 'sol detrás de una nube'], + }, + '⛈️': { + name: 'nube_de_truenos_y_lluvia', + keywords: ['lluvia', 'nube', 'trueno', 'nube con rayo y lluvia'], + }, + '🌤️': { + name: 'casi_todo_soleado', + keywords: ['nube', 'sol', 'sol detrás de una nube pequeña'], + }, + '🌥️': { + name: 'sol_con_nubes', + keywords: ['nube', 'sol', 'sol detrás de una nube grande'], + }, + '🌦️': { + name: 'parcialmente_soleado_lluvioso', + keywords: ['lluvia', 'nube', 'sol', 'sol detrás de una nube con lluvia'], + }, + '🌧️': { + name: 'nube_de_lluvia', + keywords: ['lluvia', 'nube', 'nube con lluvia'], + }, + '🌨️': { + name: 'nube_de_nieve', + keywords: ['frío', 'nieve', 'nube', 'nube con nieve'], + }, + '🌩️': { + name: 'relámpago', + keywords: ['nube', 'rayo', 'nube con rayo'], + }, + '🌪️': { + name: 'tornado', + keywords: ['nube', 'torbellino', 'tornado'], + }, + '🌫️': { + name: 'niebla', + keywords: ['nube', 'niebla'], + }, + '🌬️': { + name: 'cara_soplando_viento', + keywords: ['cara', 'nube', 'soplar', 'viento', 'cara de viento'], + }, + '🌀': { + name: 'ciclón', + keywords: ['mareo', 'tifón', 'tornado', 'ciclón'], + }, + '🌈': { + name: 'arco_iris', + keywords: ['colores', 'lluvia', 'arcoíris'], + }, + '🌂': { + name: 'paraguas_cerrado', + keywords: ['accesorios', 'lluvia', 'paraguas', 'paraguas cerrado'], + }, + '☂️': { + name: 'paraguas', + keywords: ['lluvia', 'paraguas abierto', 'paraguas'], + }, + '☔': { + name: 'paraguas_con_gotas_de_lluvia', + keywords: ['gotas', 'lluvia', 'paraguas', 'paraguas con gotas de lluvia'], + }, + '⛱️': { + name: 'paraguas_en_el_suelo', + keywords: ['arena', 'sol', 'sombrilla', 'sombrilla en la arena'], + }, + '⚡': { + name: 'alto_voltaje', + keywords: ['electricidad', 'peligro', 'peligro de alto voltaje', 'señal de alto voltaje', 'voltaje', 'alto voltaje'], + }, + '❄️': { + name: 'copo_de_nieve', + keywords: ['frío', 'nieve', 'copo de nieve'], + }, + '☃️': { + name: 'muñeco_de_nieve', + keywords: ['nieve', 'muñeco de nieve con nieve'], + }, + '⛄': { + name: 'muñeco_de_nieve_sin_nieve', + keywords: ['muñeco de nieve sin nieve', 'nieve', 'muñeco de nieve'], + }, + '☄️': { + name: 'astro_cometa', + keywords: ['cometa', 'espacio', 'meteorito'], + }, + '🔥': { + name: 'fuego', + keywords: ['llama', 'fuego'], + }, + '💧': { + name: 'gota', + keywords: ['agua', 'cómic', 'sudor', 'gota'], + }, + '🌊': { + name: 'océano', + keywords: ['mar', 'océano', 'ola', 'ola de mar'], + }, + '🎃': { + name: 'calabaza_iluminada', + keywords: ['calabaza', 'celebración', 'Halloween', 'linterna', 'calabaza de Halloween'], + }, + '🎄': { + name: 'árbol_de_navidad', + keywords: ['abeto de Navidad', 'árbol', 'celebración', 'Navidad', 'árbol de Navidad'], + }, + '🎆': { + name: 'fuegos_artificiales', + keywords: ['celebración', 'fuegos artificiales'], + }, + '🎇': { + name: 'bengala', + keywords: ['celebración', 'fuegos artificiales', 'bengala'], + }, + '🧨': { + name: 'petardo', + keywords: ['dinamita', 'explosivo', 'fuegos artificiales', 'petardo'], + }, + '✨': { + name: 'destellos', + keywords: ['bengala', 'estrellas', '*', 'chispas'], + }, + '🎈': { + name: 'globo', + keywords: ['celebración', 'globo'], + }, + '🎉': { + name: 'gorro_de_fiesta', + keywords: ['celebración', 'confeti', 'fiesta', 'cañón de confeti'], + }, + '🎊': { + name: 'bola_de_confeti', + keywords: ['celebración', 'confeti', 'bola de confeti'], + }, + '🎋': { + name: 'árbol_de_los_deseos', + keywords: ['árbol', 'celebración', 'festividad', 'tanabata', 'árbol de tanabata'], + }, + '🎍': { + name: 'bambú', + keywords: ['año nuevo japonés', 'bambú', 'celebración', 'decoración', 'kadomatsu', 'decoración de pino'], + }, + '🎎': { + name: 'muñecas', + keywords: ['celebración', 'festival', 'hinamatsuri', 'muñecas', 'muñecas japonesas'], + }, + '🎏': { + name: 'banderas', + keywords: ['banderín', 'carpa', 'celebración', 'koinobori', 'banderín de carpas'], + }, + '🎐': { + name: 'campanilla_de_viento', + keywords: ['campanilla', 'furin', 'viento', 'campanilla de viento'], + }, + '🎑': { + name: 'espiga_de_arroz', + keywords: ['celebración', 'contemplación', 'luna', 'tsukimi', 'ceremonia de contemplación de la luna'], + }, + '🧧': { + name: 'sobre_rojo', + keywords: ['buena suerte', 'hóngbāo', 'lai see', 'regalo', 'sobre rojo'], + }, + '🎀': { + name: 'cinta', + keywords: ['celebración', 'lazo'], + }, + '🎁': { + name: 'regalo', + keywords: ['celebración', 'envoltorio', 'presente', 'regalo envuelto', 'regalo'], + }, + '🎗️': { + name: 'lazo_de_apoyo', + keywords: ['conmemorativo', 'lazo'], + }, + '🎟️': { + name: 'boletos_de_entrada', + keywords: ['acceso', 'admisión', 'entrada', 'evento', 'entradas'], + }, + '🎫': { + name: 'tique', + keywords: ['acceso', 'admisión', 'tique'], + }, + '🎖️': { + name: 'medalla', + keywords: ['celebración', 'medalla', 'militar'], + }, + '🏆': { + name: 'trofeo', + keywords: ['premio', 'trofeo'], + }, + '🏅': { + name: 'medalla_deportiva', + keywords: ['medalla', 'premio', 'medalla deportiva'], + }, + '🥇': { + name: 'medalla_de_oro', + keywords: ['medalla', 'oro', 'primero', 'medalla de oro'], + }, + '🥈': { + name: 'medalla_de_plata', + keywords: ['medalla', 'plata', 'segundo', 'medalla de plata'], + }, + '🥉': { + name: 'medalla_de_bronce', + keywords: ['bronce', 'medalla', 'tercero', 'medalla de bronce'], + }, + '⚽': { + name: 'fútbol', + keywords: ['balón', 'fútbol', 'balón de fútbol'], + }, + '⚾': { + name: 'béisbol', + keywords: ['balón', 'baseball', 'pelota', 'béisbol'], + }, + '🥎': { + name: 'pelota_de_softball', + keywords: ['bola', 'pelota', 'softball', 'pelota de softball'], + }, + '🏀': { + name: 'baloncesto', + keywords: ['balón', 'canasta', 'deporte', 'balón de baloncesto'], + }, + '🏐': { + name: 'voleibol', + keywords: ['balón', 'juego', 'pelota', 'voleibol', 'pelota de voleibol'], + }, + '🏈': { + name: 'balón_de_fútbol_americano', + keywords: ['balón', 'deporte', 'fútbol americano', 'balón de fútbol americano'], + }, + '🏉': { + name: 'pelota_de_rugby', + keywords: ['balón', 'deporte', 'rugby', 'balón de rugby'], + }, + '🎾': { + name: 'tenis', + keywords: ['deporte', 'pelota', 'tenis', 'pelota de tenis'], + }, + '🥏': { + name: 'disco_volador', + keywords: ['disco', 'frisbee', 'disco volador'], + }, + '🎳': { + name: 'bolos', + keywords: ['bola', 'bola de bolos', 'juego', 'bolos'], + }, + '🏏': { + name: 'pelota_y_bate_de_cricket', + keywords: ['juego', 'pelota', 'críquet'], + }, + '🏑': { + name: 'palo_y_pelota_de_hockey', + keywords: ['hierba', 'hockey', 'juego', 'palo', 'pelota', 'hockey sobre hierba'], + }, + '🏒': { + name: 'palo_y_disco_de_hockey_sobre_hielo', + keywords: ['disco', 'hielo', 'hockey', 'palo', 'hockey sobre hielo'], + }, + '🥍': { + name: 'lacrosse', + keywords: ['bola', 'palo', 'pelota', 'raqueta', 'lacrosse'], + }, + '🏓': { + name: 'raqueta_y_pelota_de_tenis_de_mesa', + keywords: ['juego', 'mesa', 'pelota', 'ping pong', 'tenis de mesa'], + }, + '🏸': { + name: 'raqueta_y_pluma_de_bádminton', + keywords: ['pluma', 'raqueta', 'volante', 'bádminton'], + }, + '🥊': { + name: 'guante-boxeo', + keywords: ['boxeo', 'deporte', 'guante', 'guante de boxeo'], + }, + '🥋': { + name: 'uniforme_artes_marciales', + keywords: ['artes marciales', 'judo', 'kárate', 'taekwondo', 'uniforme de artes marciales'], + }, + '🥅': { + name: 'portería', + keywords: ['deporte', 'red', 'portería'], + }, + '⛳': { + name: 'golf', + keywords: ['banderín', 'golf', 'hoyo', 'banderín en hoyo'], + }, + '⛸️': { + name: 'patinaje_sobre_hielo', + keywords: ['hielo', 'patín', 'patín de hielo'], + }, + '🎣': { + name: 'caña_de_pescar_y_pez', + keywords: ['caña', 'entretenimiento', 'esparcimiento', 'pesca', 'pez', 'caña de pescar'], + }, + '🤿': { + name: 'máscara_de_buceo', + keywords: ['bucear', 'buzo', 'esnórquel', 'máscara', 'tubo', 'máscara de buceo'], + }, + '🎽': { + name: 'camiseta_de_correr_con_franja', + keywords: ['banda', 'camiseta con banda', 'camiseta de correr', 'deporte', 'camiseta sin mangas'], + }, + '🎿': { + name: 'esquí', + keywords: ['esquí', 'esquíes', 'nieve', 'esquís'], + }, + '🛷': { + name: 'trineo', + keywords: ['trineo'], + }, + '🥌': { + name: 'piedra_curling', + keywords: ['juego', 'roca', 'piedra de curling'], + }, + '🎯': { + name: 'dardo', + keywords: ['blanco', 'en el blanco', 'juego', 'diana'], + }, + '🪀': { + name: 'yoyó', + keywords: ['dieta', 'efecto', 'fluctuar', 'juguete', 'yoyó'], + }, + '🪁': { + name: 'cometa', + keywords: ['juguete', 'planear', 'viento', 'volar', 'cometa'], + }, + '🎱': { + name: 'bola_ocho', + keywords: ['8', 'billar', 'bola ocho', 'juego', 'bola negra de billar'], + }, + '🔮': { + name: 'bola_de_cristal', + keywords: ['adivinación', 'bola', 'buena fortuna', 'cristal', 'bola de cristal'], + }, + '🪄': { + name: 'varita_mágica', + keywords: ['bruja', 'hechicero', 'magia', 'mago', 'prestidigitación', 'varita', 'varita mágica'], + }, + '🧿': { + name: 'ojo_turco', + keywords: ['amuleto', 'mal de ojo', 'nazar', 'talismán', 'ojo turco'], + }, + '🎮': { + name: 'videojuego', + keywords: ['juego', 'mando', 'videojuego', 'mando de videoconsola'], + }, + '🕹️': { + name: 'palanca_de_mando', + keywords: ['juego', 'mando', 'palanca', 'videojuego', 'joystick'], + }, + '🎰': { + name: 'tragaperras', + keywords: ['juego', 'máquina', 'máquina tragaperras'], + }, + '🎲': { + name: 'dado', + keywords: ['juego', 'dado'], + }, + '🧩': { + name: 'pieza_de_puzle', + keywords: ['conectar', 'pieza', 'pista', 'puzle', 'rompecabezas', 'pieza de puzle'], + }, + '🧸': { + name: 'osito_de_peluche', + keywords: ['juguete', 'oso', 'peluche', 'osito de peluche'], + }, + '🪅': { + name: 'piñata', + keywords: ['caballito', 'celebración', 'fiesta', 'piñata'], + }, + '🪆': { + name: 'muñeca_rusa', + keywords: ['babushka', 'mamushka', 'matrioska', 'rusia', 'muñeca rusa'], + }, + '♠️': { + name: 'picas', + keywords: ['carta', 'juego', 'palo', 'picas', 'palo de picas'], + }, + '♥️': { + name: 'corazones', + keywords: ['carta', 'corazones', 'juego', 'palo', 'palo de corazones'], + }, + '♦️': { + name: 'diamantes', + keywords: ['carta', 'diamantes', 'juego', 'palo', 'palo de diamantes'], + }, + '♣️': { + name: 'tréboles', + keywords: ['carta', 'juego', 'palo', 'tréboles', 'palo de tréboles'], + }, + '♟️': { + name: 'peón_de_ajedrez', + keywords: ['ajedrez', 'peón', 'peón de ajedrez'], + }, + '🃏': { + name: 'comodín_negro', + keywords: ['joker', 'comodín'], + }, + '🀄': { + name: 'dragón_rojo', + keywords: ['dragón rojo', 'juego', 'mahjong', 'dragón rojo de mahjong'], + }, + '🎴': { + name: 'cartas-de_juegos_de_asociación', + keywords: ['carta', 'flor', 'hanafuda', 'naipe japonés', 'cartas de flores'], + }, + '🎭': { + name: 'artes_escénicas', + keywords: ['actuación', 'arte', 'artes escénicas', 'entretenimiento', 'máscaras de teatro'], + }, + '🖼️': { + name: 'marco_con_foto', + keywords: ['marco', 'museo', 'cuadro enmarcado'], + }, + '🎨': { + name: 'arte', + keywords: ['arte', 'artista', 'paleta', 'pintura', 'paleta de pintor'], + }, + '🧵': { + name: 'hilo', + keywords: ['aguja', 'carrete', 'coser', 'costura', 'hilo'], + }, + '🪡': { + name: 'aguja_de_coser', + keywords: ['aguja', 'bordado', 'coser', 'hilar', 'punto', 'tejer', 'aguja de coser'], + }, + '🧶': { + name: 'ovillo', + keywords: ['bola', 'croché', 'punto', 'tejer', 'ovillo'], + }, + '🪢': { + name: 'nudo', + keywords: ['anudar', 'atar', 'enredar', 'trenzar', 'nudo'], + }, + '👓': { + name: 'gafas', + keywords: ['accesorios', 'ojo', 'ropa', 'gafas'], + }, + '🕶️': { + name: 'gafas_de_sol_oscuras', + keywords: ['gafas', 'ojo', 'oscuras', 'sol', 'gafas de sol'], + }, + '🥽': { + name: 'gafas_de_protección', + keywords: ['gafas', 'nadar', 'protección ocular', 'soldar', 'gafas de protección'], + }, + '🥼': { + name: 'bata_de_laboratorio', + keywords: ['científico', 'doctor', 'experimento', 'médico', 'bata de laboratorio'], + }, + '🦺': { + name: 'chaleco_de_seguridad', + keywords: ['chaleco', 'emergencia', 'seguridad', 'chaleco de seguridad'], + }, + '👔': { + name: 'corbata', + keywords: ['accesorio', 'ropa', 'corbata'], + }, + '👕': { + name: 'camiseta', + keywords: ['ropa', 'camiseta'], + }, + '👖': { + name: 'vaqueros', + keywords: ['pantalones', 'ropa', 'vaqueros'], + }, + '🧣': { + name: 'bufanda', + keywords: ['abrigo', 'cuello', 'bufanda'], + }, + '🧤': { + name: 'guantes', + keywords: ['mano', 'guantes'], + }, + '🧥': { + name: 'abrigo', + keywords: ['chaquetón', 'abrigo'], + }, + '🧦': { + name: 'calcetines', + keywords: ['pies', 'ropa', 'calcetines'], + }, + '👗': { + name: 'vestido', + keywords: ['mujer', 'ropa', 'vestido'], + }, + '👘': { + name: 'kimono', + keywords: ['japonés', 'ropa', 'kimono'], + }, + '🥻': { + name: 'sari', + keywords: ['prenda', 'ropa', 'vestido', 'sari'], + }, + '🩱': { + name: 'traje_de_baño_de_una_pieza', + keywords: ['bañador', 'traje de baño de una pieza'], + }, + '🩲': { + name: 'ropa_interior', + keywords: ['bañador', 'bragas', 'braguitas', 'calzoncillos', 'slip', 'ropa interior'], + }, + '🩳': { + name: 'pantalones_cortos', + keywords: ['bañador', 'bermudas', 'calzoncillos', 'ropa interior', 'shorts', 'pantalones cortos'], + }, + '👙': { + name: 'bikini', + keywords: ['baño', 'playa', 'ropa', 'bikini'], + }, + '👚': { + name: 'ropa_de_mujer', + keywords: ['blusa', 'camisa', 'femenina', 'ropa', 'ropa de mujer'], + }, + '👛': { + name: 'cartera_de_mano', + keywords: ['accesorios', 'cartera', 'complementos', 'monedero'], + }, + '👜': { + name: 'bolso', + keywords: ['accesorios', 'complementos', 'bolso'], + }, + '👝': { + name: 'cartera', + keywords: ['accesorios', 'bolso', 'cartera', 'complementos', 'bolso de mano'], + }, + '🛍️': { + name: 'bolsas_de_la_compra', + keywords: ['bolsa', 'compra', 'bolsas de compras'], + }, + '🎒': { + name: 'mochila', + keywords: ['colegio', 'mochila', 'mochila escolar'], + }, + '🩴': { + name: 'chancla', + keywords: ['chancla de dedo', 'chancleta', 'chinela', 'sandalia', 'chancla'], + }, + '👞': { + name: 'zapatos_de_hombre', + keywords: ['calzado', 'hombre', 'ropa', 'zapato', 'zapato de hombre'], + }, + '👟': { + name: 'zapatilla_de_atletismo', + keywords: ['calzado', 'correr', 'ropa', 'tenis', 'zapatilla deportiva'], + }, + '🥾': { + name: 'bota_de_senderismo', + keywords: ['bota', 'camping', 'mochilero', 'senderismo', 'bota de senderismo'], + }, + '🥿': { + name: 'bailarina', + keywords: ['calzado', 'zapato', 'bailarina'], + }, + '👠': { + name: 'tacón_de_aguja', + keywords: ['mujer', 'tacón', 'zapato', 'zapato de tacón'], + }, + '👡': { + name: 'sandalia', + keywords: ['calzado', 'mujer', 'ropa', 'sandalia', 'sandalia de mujer'], + }, + '🩰': { + name: 'zapatillas_de_ballet', + keywords: ['bailar', 'balé', 'ballet', 'danza', 'zapatillas de ballet'], + }, + '👢': { + name: 'bota', + keywords: ['bota', 'calzado', 'mujer', 'ropa', 'bota de mujer'], + }, + '👑': { + name: 'corona', + keywords: ['accesorios', 'complementos', 'reina', 'rey', 'corona'], + }, + '👒': { + name: 'sombrero_de_mujer', + keywords: ['accesorio', 'mujer', 'ropa', 'sombrero', 'sombrero de mujer'], + }, + '🎩': { + name: 'sombrero_de_copa', + keywords: ['chistera', 'copa', 'ropa', 'sombrero', 'sombrero de copa'], + }, + '🎓': { + name: 'birrete', + keywords: ['celebración', 'gorro', 'graduación', 'birrete'], + }, + '🧢': { + name: 'gorra', + keywords: ['béisbol', 'gorra', 'visera', 'gorra con visera'], + }, + '🪖': { + name: 'casco_militar', + keywords: ['casco', 'ejército', 'guerra', 'guerrero', 'soldado', 'casco militar'], + }, + '⛑️': { + name: 'casco_con_cruz_blanca', + keywords: ['ayuda', 'cara', 'casco', 'cruz', 'casco con una cruz blanca'], + }, + '📿': { + name: 'rosario', + keywords: ['collar', 'cuentas', 'religión', 'rosario'], + }, + '💄': { + name: 'lápiz_labial', + keywords: ['barra', 'cosmética', 'labios', 'maquillaje', 'pintalabios'], + }, + '💍': { + name: 'anillo', + keywords: ['diamante', 'anillo'], + }, + '💎': { + name: 'joya', + keywords: ['diamante', 'gema', 'joya', 'piedra', 'preciosa'], + }, + '🔇': { + name: 'mudo', + keywords: ['altavoz', 'altavoz con marca de cancelación', 'mute', 'silencio', 'altavoz silenciado'], + }, + '🔈': { + name: 'altavoz', + keywords: ['volumen bajo', 'altavoz a volumen bajo'], + }, + '🔉': { + name: 'sonido', + keywords: ['altavoz con volumen medio', 'medio', 'volumen medio', 'altavoz a volumen medio'], + }, + '🔊': { + name: 'sonido_agudo', + keywords: ['altavoz', 'alto', 'volumen alto', 'altavoz a volumen alto'], + }, + '📢': { + name: 'altavoz_sonando', + keywords: ['altavoz', 'comunicación', 'altavoz de mano'], + }, + '📣': { + name: 'mega', + keywords: ['comunicación', 'megáfono'], + }, + '📯': { + name: 'corneta', + keywords: ['corneta', 'posta', 'corneta de posta'], + }, + '🔔': { + name: 'campana', + keywords: ['campana'], + }, + '🔕': { + name: 'prohibido_claxon', + keywords: ['campana', 'cancelación', 'ruido', 'campana con signo de cancelación'], + }, + '🎼': { + name: 'partitura', + keywords: ['música', 'partitura', 'pentagrama'], + }, + '🎵': { + name: 'nota_musical', + keywords: ['música', 'nota', 'nota musical'], + }, + '🎶': { + name: 'notas', + keywords: ['música', 'notas', 'notas musicales'], + }, + '🎙️': { + name: 'micrófono_de_estudio', + keywords: ['estudio', 'micrófono', 'música', 'micrófono de estudio'], + }, + '🎚️': { + name: 'indicador_de_nivel', + keywords: ['control', 'fader', 'volumen', 'control de volumen'], + }, + '🎛️': { + name: 'mandos_de_control', + keywords: ['control', 'diales', 'música', 'potenciómetros', 'ruedas', 'ruedas de control'], + }, + '🎤': { + name: 'micrófono', + keywords: ['entretenimiento', 'karaoke', 'micro', 'micrófono'], + }, + '🎧': { + name: 'auriculares', + keywords: ['cascos', 'auricular'], + }, + '📻': { + name: 'radio', + keywords: ['radio'], + }, + '🎷': { + name: 'saxofón', + keywords: ['instrumento', 'instrumento musical', 'música', 'saxo', 'saxofón'], + }, + '🪗': { + name: 'acordeón', + keywords: ['concertina', 'acordeón'], + }, + '🎸': { + name: 'guitarra', + keywords: ['instrumento', 'instrumento musical', 'música', 'guitarra'], + }, + '🎹': { + name: 'teclado_musical', + keywords: ['instrumento', 'instrumento musical', 'música', 'teclado', 'piano', 'teclado musical'], + }, + '🎺': { + name: 'trompeta', + keywords: ['instrumento', 'instrumento musical', 'música', 'trompeta'], + }, + '🎻': { + name: 'violín', + keywords: ['instrumento', 'instrumento musical', 'música', 'violín'], + }, + '🪕': { + name: 'banjo', + keywords: ['banyo', 'cuerda', 'instrumento', 'música', 'banjo'], + }, + '🥁': { + name: 'tambor_con_baquetas', + keywords: ['baquetas', 'música', 'tambor'], + }, + '🪘': { + name: 'tamboril', + keywords: ['conga', 'ritmo', 'tambor', 'tamboril'], + }, + '📱': { + name: 'iphone', + keywords: ['celular', 'móvil', 'teléfono'], + }, + '📲': { + name: 'llamando', + keywords: ['flecha', 'llamada', 'móvil', 'recibir', 'teléfono', 'móvil con una flecha'], + }, + '☎️': { + name: 'teléfono', + keywords: ['teléfono'], + }, + '📞': { + name: 'receptor_de_teléfono', + keywords: ['comunicación', 'teléfono', 'auricular de teléfono'], + }, + '📟': { + name: 'buscapersonas', + keywords: ['comunicación', 'localizador', 'busca'], + }, + '📠': { + name: 'fax', + keywords: ['comunicación', 'fax', 'máquina de fax'], + }, + '🔋': { + name: 'batería', + keywords: ['batería', 'pila'], + }, + '🔌': { + name: 'enchufe_eléctrico', + keywords: ['corriente', 'electricidad', 'eléctrico', 'enchufe'], + }, + '💻': { + name: 'ordenador', + keywords: ['ordenador', 'pc', 'personal', 'ordenador portátil'], + }, + '🖥️': { + name: 'ordenador_de_sobremesa', + keywords: ['ordenador', 'sobremesa', 'ordenador de sobremesa'], + }, + '🖨️': { + name: 'impresora', + keywords: ['ordenador', 'impresora'], + }, + '⌨️': { + name: 'teclado', + keywords: ['ordenador', 'teclado'], + }, + '🖱️': { + name: 'mouse_de_tres_botones', + keywords: ['ordenador', 'ratón', 'ratón de ordenador'], + }, + '🖲️': { + name: 'bola_de_seguimiento', + keywords: ['ordenador', 'trackball', 'bola de desplazamiento'], + }, + '💽': { + name: 'minidisc', + keywords: ['disco', 'md', 'minidisc'], + }, + '💾': { + name: 'disquete', + keywords: ['disco', 'disco de 3 1/2', 'disquete'], + }, + '💿': { + name: 'cd', + keywords: ['cd', 'disco', 'disco óptico'], + }, + '📀': { + name: 'dvd', + keywords: ['disco', 'dvd', 'disco DVD'], + }, + '🧮': { + name: 'ábaco', + keywords: ['cálculo', 'contar', 'matemáticas', 'ábaco'], + }, + '🎥': { + name: 'cámara_de_cine', + keywords: ['cámara', 'cine', 'entretenimiento', 'película', 'cámara de cine'], + }, + '🎞️': { + name: 'fotogramas_de_película', + keywords: ['cine', 'fotograma', 'película', 'fotograma de película'], + }, + '📽️': { + name: 'proyector_de_cine', + keywords: ['cine', 'película', 'proyector', 'proyector de cine'], + }, + '🎬': { + name: 'claqueta', + keywords: ['cine', 'claqueta de cine', 'entretenimiento', 'película', 'claqueta'], + }, + '📺': { + name: 'televisión', + keywords: ['tv', 'televisión'], + }, + '📷': { + name: 'cámara', + keywords: ['cámara', 'cámara de fotos'], + }, + '📸': { + name: 'cámara_con_flash', + keywords: ['cámara', 'flash', 'cámara con flash'], + }, + '📹': { + name: 'videocámara', + keywords: ['cámara', 'vídeo', 'videocámara'], + }, + '📼': { + name: 'vhs', + keywords: ['cinta', 'cinta de vídeo'], + }, + '🔍': { + name: 'lupa', + keywords: ['buscar', 'lupa', 'lupa orientada hacia la izquierda'], + }, + '🔎': { + name: 'lupa_derecha', + keywords: ['buscar', 'lupa', 'lupa orientada hacia la derecha'], + }, + '🕯️': { + name: 'vela', + keywords: ['luz', 'vela'], + }, + '💡': { + name: 'bombilla', + keywords: ['cómic', 'electricidad', 'idea', 'luz', 'bombilla'], + }, + '🔦': { + name: 'linterna', + keywords: ['luz', 'linterna'], + }, + '🏮': { + name: 'farolillo_de_papel', + keywords: ['izakaya', 'lámpara roja', 'linterna izakaya', 'linterna japonesa', 'restaurante', 'lámpara japonesa'], + }, + '🪔': { + name: 'lámpara_de_aceite', + keywords: ['aceite', 'diya', 'lámpara', 'lámpara de aceite'], + }, + '📔': { + name: 'cuaderno_con_tapa_decorada', + keywords: ['cuaderno', 'decoración', 'tapa', 'cuaderno con tapa decorativa'], + }, + '📕': { + name: 'libro_cerrado', + keywords: ['cerrado', 'libro'], + }, + '📖': { + name: 'libro', + keywords: ['abierto', 'libro'], + }, + '📗': { + name: 'libro_verde', + keywords: ['libro', 'verde'], + }, + '📘': { + name: 'libro_azul', + keywords: ['azul', 'libro'], + }, + '📙': { + name: 'libro_naranja', + keywords: ['libro', 'naranja'], + }, + '📚': { + name: 'libros', + keywords: ['libro', 'libros'], + }, + '📓': { + name: 'cuaderno', + keywords: ['libreta', 'cuaderno'], + }, + '📒': { + name: 'registro', + keywords: ['cuaderno', 'libro de contabilidad'], + }, + '📃': { + name: 'página_doblada_por_abajo', + keywords: ['documento', 'página', 'página doblada'], + }, + '📜': { + name: 'pergamino', + keywords: ['pergamino de papel', 'pergamino'], + }, + '📄': { + name: 'página_boca_arriba', + keywords: ['anverso', 'documento', 'página', 'página hacia arriba'], + }, + '📰': { + name: 'periódico', + keywords: ['diario', 'periódico'], + }, + '🗞️': { + name: 'periódico_enrollado', + keywords: ['noticias', 'papel', 'periódico', 'periódico enrollado'], + }, + '📑': { + name: 'pestañas_de_marcadores', + keywords: ['pestañas', 'marcadores'], + }, + '🔖': { + name: 'marcador', + keywords: ['marcador', 'marcapáginas'], + }, + '🏷️': { + name: 'etiqueta', + keywords: ['etiqueta'], + }, + '💰': { + name: 'bolsa_de_dinero', + keywords: ['bolsa', 'bolsa de dólares', 'dinero', 'bolsa de dinero'], + }, + '🪙': { + name: 'moneda', + keywords: ['dinero', 'metal', 'oro', 'plata', 'tesoro', 'moneda'], + }, + '💴': { + name: 'yen', + keywords: ['billete', 'billete de banco', 'dinero', 'yen', 'billete de yen'], + }, + '💵': { + name: 'dólar', + keywords: ['billete', 'billete de banco', 'dinero', 'dólar', 'billete de dólar'], + }, + '💶': { + name: 'euro', + keywords: ['billete', 'billete de banco', 'dinero', 'euro', 'billete de euro'], + }, + '💷': { + name: 'libra_esterlina', + keywords: ['billete de banco', 'dinero', 'libra', 'billete de libra'], + }, + '💸': { + name: 'dinero_con_alas', + keywords: ['billete', 'billete de banco', 'dinero', 'dinero con alas', 'billete con alas'], + }, + '💳': { + name: 'tarjeta_de_crédito', + keywords: ['crédito', 'tarjeta', 'tarjeta de crédito'], + }, + '🧾': { + name: 'recibo', + keywords: ['contabilidad', 'prueba', 'teneduría de libros', 'testimonio', 'recibo'], + }, + '💹': { + name: 'gráfico', + keywords: ['alza', 'mercado', 'mercado alcista', 'tabla', 'mercado al alza'], + }, + '✉️': { + name: 'correo', + keywords: ['carta', 'correo', 'sobre'], + }, + '📧': { + name: 'correo_electrónico', + keywords: ['comunicación', 'correo', 'sobre', 'correo electrónico'], + }, + '📨': { + name: 'correo_entrante', + keywords: ['carta', 'comunicación', 'correo', 'correo electrónico', 'sobre', 'sobre entrante'], + }, + '📩': { + name: 'sobre_con_flecha', + keywords: ['carta', 'comunicación', 'correo', 'correo electrónico', 'sobre', 'sobre con flecha'], + }, + '📤': { + name: 'bandeja_de_salida', + keywords: ['bandeja', 'comunicación', 'correo', 'enviado', 'salida', 'bandeja de salida'], + }, + '📥': { + name: 'bandeja_de_entrada', + keywords: ['bandeja', 'comunicación', 'correo', 'entrada', 'recibido', 'bandeja de entrada'], + }, + '📦': { + name: 'paquete', + keywords: ['caja', 'paquete'], + }, + '📫': { + name: 'buzón', + keywords: ['bandera', 'buzón', 'buzón cerrado', 'con contenido', 'buzón cerrado con la bandera levantada'], + }, + '📪': { + name: 'buzón_cerrado', + keywords: ['bandera', 'buzón', 'buzón cerrado', 'vacío', 'buzón cerrado con la bandera bajada'], + }, + '📬': { + name: 'buzón_con_cartas', + keywords: ['bandera', 'buzón', 'buzón abierto', 'con contenido', 'buzón abierto con la bandera levantada'], + }, + '📭': { + name: 'buzón_sin_cartas', + keywords: ['bandera', 'buzón', 'buzón abierto', 'vacío', 'buzón abierto con la bandera bajada'], + }, + '📮': { + name: 'carta_al_buzón', + keywords: ['cartas', 'correo', 'buzón'], + }, + '🗳️': { + name: 'urna_con_papeleta', + keywords: ['papeleta', 'urna', 'voto', 'urna con papeleta'], + }, + '✏️': { + name: 'lápiz2', + keywords: ['escolar', 'escribir', 'lapicero', 'lápiz'], + }, + '✒️': { + name: 'plumín_negro', + keywords: ['bolígrafo', 'escribir', 'pluma', 'tinta', 'pluma negra'], + }, + '🖋️': { + name: 'pluma_estilográfica_abajo_a_la_izquierda', + keywords: ['bolígrafo', 'escribir', 'pluma', 'tinta', 'estilográfica'], + }, + '🖊️': { + name: 'bolígrafo_abajo_a_la_izquierda', + keywords: ['boli', 'escribir', 'bolígrafo'], + }, + '🖌️': { + name: 'pincel_abajo_a_la_izquierda', + keywords: ['pintar', 'pincel'], + }, + '🖍️': { + name: 'lápiz_abajo_a_la_izquierda', + keywords: ['cera', 'lápiz', 'lápiz de cera'], + }, + '📝': { + name: 'nota', + keywords: ['comunicación', 'cuaderno de notas'], + }, + '💼': { + name: 'maletín', + keywords: ['cartera', 'documentos', 'maletín'], + }, + '📁': { + name: 'carpeta_de_archivos', + keywords: ['archivo', 'carpeta', 'carpeta de archivos'], + }, + '📂': { + name: 'carpeta_abierta', + keywords: ['abierta', 'archivo', 'carpeta', 'carpeta de archivos abierta'], + }, + '🗂️': { + name: 'separadores_de_índice_de_tarjetas', + keywords: ['fichas', 'fichero', 'separador', 'separador de fichas'], + }, + '📅': { + name: 'fecha', + keywords: ['fecha', 'calendario'], + }, + '📆': { + name: 'calendario', + keywords: ['calendario', 'fecha', 'calendario recortable'], + }, + '🗒️': { + name: 'cuaderno_de_espiral', + keywords: ['bloc', 'cuaderno', 'espiral', 'notas', 'bloc de notas de espiral'], + }, + '🗓️': { + name: 'calendario_de_sobremesa', + keywords: ['calendario', 'espiral', 'calendario de espiral'], + }, + '📇': { + name: 'índice_de_tarjetas', + keywords: ['cartera', 'ficha', 'organizador', 'tarjetas', 'organizador de fichas'], + }, + '📈': { + name: 'gráfico_con_tendencia_ascendente', + keywords: ['ascendente', 'gráfica', 'gráfico', 'tendencia ascendente', 'gráfica de evolución ascendente'], + }, + '📉': { + name: 'gráfico_con_tendencia_descendente', + keywords: ['descendente', 'gráfica', 'gráfico', 'tendencia descendente', 'gráfica de evolución descendente'], + }, + '📊': { + name: 'gráfico_de_barras', + keywords: ['barras', 'gráfico', 'gráfico de barras'], + }, + '📋': { + name: 'portapapeles', + keywords: ['papeles', 'pinza', 'tabla', 'portapapeles'], + }, + '📌': { + name: 'chincheta', + keywords: ['tachuela', 'chincheta'], + }, + '📍': { + name: 'tachuela_redonda', + keywords: ['chincheta', 'chincheta redonda'], + }, + '📎': { + name: 'clip', + keywords: ['clip'], + }, + '🖇️': { + name: 'clips_unidos', + keywords: ['clips', 'unidos', 'unión'], + }, + '📏': { + name: 'regla', + keywords: ['regla'], + }, + '📐': { + name: 'escuadra', + keywords: ['regla', 'regla triangular', 'triángulo', 'escuadra'], + }, + '✂️': { + name: 'tijeras', + keywords: ['cortar', 'herramienta', 'tijeras'], + }, + '🗃️': { + name: 'fichero_de_tarjetas', + keywords: ['archivador', 'archivo', 'caja', 'archivador de tarjetas'], + }, + '🗄️': { + name: 'archivador', + keywords: ['archivos', 'oficina', 'organizador', 'archivador'], + }, + '🗑️': { + name: 'papelera', + keywords: ['basura', 'cubo', 'papelera'], + }, + '🔒': { + name: 'candado', + keywords: ['candado', 'cerrado', 'cerrar'], + }, + '🔓': { + name: 'activar', + keywords: ['abierto', 'abrir', 'candado'], + }, + '🔏': { + name: 'candado_con_pluma_de_tinta', + keywords: ['candado', 'cerrado', 'estilográfica', 'pluma', 'privacidad', 'candado con pluma estilográfica'], + }, + '🔐': { + name: 'candado_cerrado_con_llave', + keywords: ['candado', 'cerrado', 'llave', 'seguro', 'candado cerrado y llave'], + }, + '🔑': { + name: 'llave', + keywords: ['contraseña', 'llave'], + }, + '🗝️': { + name: 'llave_vieja', + keywords: ['antigua', 'llave'], + }, + '🔨': { + name: 'martillo', + keywords: ['herramienta', 'martillo'], + }, + '🪓': { + name: 'hacha', + keywords: ['cortar', 'dividir', 'hachuela', 'madera', 'talar', 'hacha'], + }, + '⛏️': { + name: 'pico', + keywords: ['herramienta', 'mina', 'pico'], + }, + '⚒️': { + name: 'martillo_y_pico', + keywords: ['herramienta', 'martillo', 'pico', 'martillo y pico'], + }, + '🛠️': { + name: 'martillo_y_llave_inglesa', + keywords: ['herramienta', 'llave inglesa', 'martillo', 'martillo y llave inglesa'], + }, + '🗡️': { + name: 'daga', + keywords: ['arma', 'cuchillo', 'daga', 'puñal'], + }, + '⚔️': { + name: 'espadas_cruzadas', + keywords: ['arma', 'cruzadas', 'espadas'], + }, + '🔫': { + name: 'pistola', + keywords: ['agua', 'juguete', 'pistola', 'verano', 'pistola de agua'], + }, + '🪃': { + name: 'bumerán', + keywords: ['boomerang', 'rebotar', 'bumerán'], + }, + '🏹': { + name: 'arco_y_flecha', + keywords: ['arco', 'arquero', 'flecha', 'sagitario', 'zodiaco', 'arco y flecha'], + }, + '🛡️': { + name: 'escudo', + keywords: ['defensa', 'escudo'], + }, + '🪚': { + name: 'sierra_de_carpintería', + keywords: ['carpintería', 'carpintero', 'herramienta', 'sierra', 'talar', 'sierra de carpintería'], + }, + '🔧': { + name: 'llave_de_tuerca', + keywords: ['herramienta', 'llave inglesa'], + }, + '🪛': { + name: 'destornillador', + keywords: ['atornillador', 'herramienta', 'tornillo', 'destornillador'], + }, + '🔩': { + name: 'tuerca_y_perno', + keywords: ['herramienta', 'tornillo', 'tuerca', 'tornillo y tuerca'], + }, + '⚙️': { + name: 'engranaje', + keywords: ['herramienta', 'engranaje'], + }, + '🗜️': { + name: 'compresión', + keywords: ['herramienta', 'tornillo', 'tornillo de banco'], + }, + '⚖️': { + name: 'balanza', + keywords: ['justicia', 'libra', 'peso', 'zodiaco', 'balanza'], + }, + '🦯': { + name: 'bastón', + keywords: ['accesibilidad', 'ceguera', 'ciega', 'ciego', 'invidente', 'bastón'], + }, + '🔗': { + name: 'eslabón', + keywords: ['eslabón'], + }, + '⛓️': { + name: 'cadenas', + keywords: ['cadena', 'cadenas'], + }, + '🪝': { + name: 'gancho', + keywords: ['agarrar', 'anzuelo', 'atrapar', 'garfio', 'gancho'], + }, + '🧰': { + name: 'caja_de_herramientas', + keywords: ['armario', 'herramienta', 'mecánico', 'caja de herramientas'], + }, + '🧲': { + name: 'imán', + keywords: ['atracción', 'herradura', 'magnético', 'imán'], + }, + '🪜': { + name: 'escalera', + keywords: ['escalar', 'escalerilla', 'escalón', 'peldaño', 'escalera'], + }, + '⚗️': { + name: 'alambique', + keywords: ['herramienta', 'química', 'alambique'], + }, + '🧪': { + name: 'tubo_de_ensayo', + keywords: ['ciencia', 'experimento', 'laboratorio', 'química', 'químico', 'tubo de ensayo'], + }, + '🧫': { + name: 'placa_de_petri', + keywords: ['bacterias', 'biología', 'biólogo', 'cultivo', 'laboratorio', 'placa de petri'], + }, + '🧬': { + name: 'adn', + keywords: ['biólogo', 'evolución', 'gen', 'genética', 'vida', 'adn'], + }, + '🔬': { + name: 'microscopio', + keywords: ['instrumento', 'laboratorio', 'microscopio'], + }, + '🔭': { + name: 'telescopio', + keywords: ['astronomía', 'instrumento', 'telescopio'], + }, + '📡': { + name: 'antena_de_satélite', + keywords: ['antena', 'comunicación', 'satélite', 'antena de satélite'], + }, + '💉': { + name: 'jeringuilla', + keywords: ['aguja', 'jeringa', 'medicina', 'médico', 'jeringuilla'], + }, + '🩸': { + name: 'gota_de_sangre', + keywords: ['donación de sangre', 'donar sangre', 'herida', 'medicina', 'sangre', 'gota de sangre'], + }, + '💊': { + name: 'píldora', + keywords: ['comprimido', 'medicina', 'médico', 'pastilla', 'píldora'], + }, + '🩹': { + name: 'tirita', + keywords: ['apósito', 'tirita'], + }, + '🩺': { + name: 'estetoscopio', + keywords: ['corazón', 'doctor', 'fonendoscopio', 'latido', 'medicina', 'médico', 'estetoscopio'], + }, + '🚪': { + name: 'puerta', + keywords: ['puerta'], + }, + '🛗': { + name: 'ascensor', + keywords: ['accesibilidad', 'elevador', 'montacargas', 'ascensor'], + }, + '🪞': { + name: 'espejo', + keywords: ['espéculo', 'reflector', 'reflejo', 'espejo'], + }, + '🪟': { + name: 'ventana', + keywords: ['abertura', 'apertura', 'cristal', 'marco', 'transparente', 'vista', 'ventana'], + }, + '🛏️': { + name: 'cama', + keywords: ['dormir', 'hotel', 'cama'], + }, + '🛋️': { + name: 'sofá_y_lámpara', + keywords: ['hotel', 'lámpara', 'sofá', 'sofá y lámpara'], + }, + '🪑': { + name: 'silla', + keywords: ['asiento', 'sentarse', 'silla'], + }, + '🚽': { + name: 'baño', + keywords: ['baño', 'váter', 'wc', 'inodoro'], + }, + '🪠': { + name: 'desatascador', + keywords: ['fontanero', 'retrete', 'servicio', 'succión', 'desatascador'], + }, + '🚿': { + name: 'ducha', + keywords: ['agua', 'baño', 'ducha'], + }, + '🛁': { + name: 'bañera', + keywords: ['baño', 'bañera'], + }, + '🪤': { + name: 'ratonera', + keywords: ['cebo', 'cepo', 'engañar', 'ratón', 'ratonera', 'trampa', 'trampa de ratones'], + }, + '🪒': { + name: 'cuchilla_de_afeitar', + keywords: ['afeitado', 'afeitar', 'afilado', 'barbero', 'navaja', 'cuchilla de afeitar'], + }, + '🧴': { + name: 'bote_de_crema', + keywords: ['champú', 'crema', 'hidratante', 'protector solar', 'bote de crema'], + }, + '🧷': { + name: 'imperdible', + keywords: ['pañal', 'punk rock', 'imperdible'], + }, + '🧹': { + name: 'escoba', + keywords: ['barrer', 'bruja', 'fregar', 'escoba'], + }, + '🧺': { + name: 'cesta', + keywords: ['colada', 'cosecha', 'pícnic', 'cesta'], + }, + '🧻': { + name: 'rollo_de_papel', + keywords: ['papel absorbente', 'papel higiénico', 'rollo de papel'], + }, + '🪣': { + name: 'cubo', + keywords: ['balde', 'barreño', 'cuba', 'cubeta', 'cubo'], + }, + '🧼': { + name: 'jabón', + keywords: ['bañarse', 'enjabonarse', 'jabonera', 'lavarse', 'pastilla', 'jabón'], + }, + '🪥': { + name: 'cepillo_de_dientes', + keywords: ['cepillo', 'dental', 'higiene', 'limpio', 'servicio', 'cepillo de dientes'], + }, + '🧽': { + name: 'esponja', + keywords: ['absorbente', 'limpiar', 'poroso', 'esponja'], + }, + '🧯': { + name: 'extintor', + keywords: ['apagar', 'extinguir', 'incendio', 'extintor'], + }, + '🛒': { + name: 'carrito_de_compras', + keywords: ['carrito', 'carro', 'compra', 'supermercado', 'carrito de la compra'], + }, + '🚬': { + name: 'fumando', + keywords: ['cigarro', 'fumar', 'cigarrillo'], + }, + '⚰️': { + name: 'ataúd', + keywords: ['muerte', 'ataúd'], + }, + '🪦': { + name: 'lápida', + keywords: ['cementario', 'estela', 'sepulcro', 'tumba', 'lápida'], + }, + '⚱️': { + name: 'urna_funeraria', + keywords: ['funeraria', 'muerte', 'urna'], + }, + '🗿': { + name: 'moái', + keywords: ['estatua', 'moái', 'Pascua'], + }, + '🪧': { + name: 'letrero', + keywords: ['anuncio', 'aviso', 'cartel', 'pancarta', 'poste', 'letrero'], + }, + '🏧': { + name: 'cajero_automático', + keywords: ['atm', 'banco', 'cajero', 'señal de cajero automático'], + }, + '🚮': { + name: 'la_basura_en_su_lugar', + keywords: ['basura', 'papelera', 'señal', 'tirar la basura en la papelera', 'señal de usar papelera'], + }, + '🚰': { + name: 'agua_potable', + keywords: ['agua', 'potable'], + }, + '♿': { + name: 'silla_de_ruedas', + keywords: ['acceso', 'señal', 'silla', 'silla de ruedas', 'símbolo', 'símbolo de silla de ruedas'], + }, + '🚹': { + name: 'baño_de_hombres', + keywords: ['aseo de caballeros', 'baño', 'señal', 'señal con un hombre', 'servicio', 'aseo para hombres'], + }, + '🚺': { + name: 'baño_de_mujeres', + keywords: ['aseo de señoras', 'baño', 'señal', 'señal con una mujer', 'servicio', 'señal de aseo para mujeres'], + }, + '🚻': { + name: 'signo_de_baño', + keywords: ['aseos', 'servicios', 'wc', 'señal de aseos'], + }, + '🚼': { + name: 'símbolo_de_bebé', + keywords: ['bebé', 'cambiar', 'lactancia', 'señal de bebé'], + }, + '🚾': { + name: 'wc', + keywords: ['lavabo', 'servicios', 'WC', 'aseos'], + }, + '🛂': { + name: 'control_de_pasaportes', + keywords: ['control', 'pasaportes', 'control de pasaportes'], + }, + '🛃': { + name: 'aduana', + keywords: ['aduana'], + }, + '🛄': { + name: 'recogida_de_equipaje', + keywords: ['equipaje', 'maleta', 'recogida de equipajes'], + }, + '🛅': { + name: 'consigna', + keywords: ['depósito', 'equipaje', 'servicio de equipaje en depósito', 'consigna'], + }, + '⚠️': { + name: 'advertencia', + keywords: ['cuidado', 'señal', 'advertencia'], + }, + '🚸': { + name: 'niños_cruzando', + keywords: ['cruzando', 'niños', 'señal'], + }, + '⛔': { + name: 'prohibido_el_paso', + keywords: ['no', 'prohibido', 'señal', 'señal de dirección prohibida', 'dirección prohibida'], + }, + '🚫': { + name: 'señal_de_prohibido_el_paso', + keywords: ['entrar', 'no', 'pasar', 'prohibición', 'prohibido'], + }, + '🚳': { + name: 'prohibidas_bicicletas', + keywords: ['bicicleta', 'prohibido', 'vehículo', 'bicicletas prohibidas'], + }, + '🚭': { + name: 'prohibido_fumar', + keywords: ['fumar', 'no', 'prohibido', 'señal'], + }, + '🚯': { + name: 'no_tirar_basura', + keywords: ['basura', 'prohibido', 'señal', 'señal de no tirar basura', 'prohibido tirar basura'], + }, + '🚱': { + name: 'agua_no_potable', + keywords: ['agua', 'no potable', 'agua no potable'], + }, + '🚷': { + name: 'prohibido_el_paso_a_peatones', + keywords: ['peatón', 'peatones', 'prohibido', 'señal', 'prohibido el paso de peatones'], + }, + '📵': { + name: 'prohibidos_teléfonos_móviles', + keywords: ['móvil', 'no hacer llamadas', 'prohibido', 'teléfono', 'prohibido el uso de móviles'], + }, + '🔞': { + name: 'menor_de_edad', + keywords: ['prohibido', 'prohibido para menores de 18 años', '18 no apto para menores', 'prohibido para menos de 18 años'], + }, + '☢️': { + name: 'señal_de_radioactividad', + keywords: ['radiactividad', 'radioactividad', 'radioactivo', 'señal', 'radiactivo'], + }, + '☣️': { + name: 'símbolo_de_riesgo_biológico', + keywords: ['peligro', 'señal', 'riesgo biológico'], + }, + '⬆️': { + name: 'flecha_hacia_arriba', + keywords: ['dirección', 'flecha', 'flecha arriba', 'norte', 'flecha hacia arriba'], + }, + '↗️': { + name: 'flecha_hacia_arriba_a_la_derecha', + keywords: ['arriba', 'derecha', 'dirección', 'flecha', 'noreste', 'flecha hacia la esquina superior derecha'], + }, + '➡️': { + name: 'flecha_a_la_derecha', + keywords: ['derecha', 'dirección', 'este', 'flecha', 'flecha hacia la derecha'], + }, + '↘️': { + name: 'flecha_abajo_a_la_derecha', + keywords: ['abajo', 'derecha', 'dirección', 'flecha', 'sudeste', 'flecha hacia la esquina inferior derecha'], + }, + '⬇️': { + name: 'flecha_hacia_abajo', + keywords: ['abajo', 'dirección', 'flecha', 'sur', 'flecha hacia abajo'], + }, + '↙️': { + name: 'flecha_abajo_a_la_iquierda', + keywords: ['abajo', 'dirección', 'flecha', 'izquierda', 'suroeste', 'flecha hacia la esquina inferior izquierda'], + }, + '⬅️': { + name: 'flecha_a_la_izquierda', + keywords: ['flecha', 'izquierda', 'oeste', 'flecha hacia la izquierda'], + }, + '↖️': { + name: 'flecha_hacia_arriba_a_la_izquierda', + keywords: ['arriba', 'dirección', 'flecha', 'izquierda', 'noroeste', 'flecha hacia la esquina superior izquierda'], + }, + '↕️': { + name: 'flecha_hacia_arriba_y_hacia_abajo', + keywords: ['abajo', 'arriba', 'dirección', 'flecha', 'flecha arriba y abajo'], + }, + '↔️': { + name: 'flecha_izquierda_derecha', + keywords: ['derecha', 'dirección', 'flecha', 'izquierda', 'flecha izquierda y derecha'], + }, + '↩️': { + name: 'flecha_curvada_a_la_izquierda', + keywords: ['curva', 'dirección', 'flecha', 'izquierda', 'flecha derecha curvándose a la izquierda'], + }, + '↪️': { + name: 'flecha_en_curva_a_la_derecha', + keywords: ['curva', 'derecha', 'dirección', 'flecha', 'flecha izquierda curvándose a la derecha'], + }, + '⤴️': { + name: 'flecha_en_dirección_ascendente', + keywords: ['arriba', 'curva', 'dirección', 'flecha', 'flecha derecha curvándose hacia arriba'], + }, + '⤵️': { + name: 'flecha_en_dirección_descendente', + keywords: ['abajo', 'curva', 'dirección', 'flecha', 'flecha derecha curvándose hacia abajo'], + }, + '🔃': { + name: 'flechas_en_sentido_horario', + keywords: ['flechas', 'flechas verticales sentido horario', 'horario', 'señal de recarga', 'flechas verticales en sentido horario'], + }, + '🔄': { + name: 'flechas_en_sentido_antihorario', + keywords: ['dirección', 'flechas', 'señal de recarga', 'sentido antihorario', 'flechas en sentido antihorario'], + }, + '🔙': { + name: 'atrás', + keywords: ['atrás', 'atrás con flecha izquierda', 'back', 'flecha', 'flecha a la izquierda', 'flecha BACK'], + }, + '🔚': { + name: 'fin', + keywords: ['final', 'final con flecha izquierda', 'flecha', 'flecha a la izquierda', 'flecha END'], + }, + '🔛': { + name: 'encendido', + keywords: ['flecha', 'on', 'señal', 'flecha de doble punta con la palabra "on" encima flecha ON!'], + }, + '🔜': { + name: 'pronto', + keywords: ['flecha', 'soon', 'soon con flecha a la derecha', 'flecha SOON'], + }, + '🔝': { + name: 'parte_superior', + keywords: ['arriba', 'flecha hacia arriba', 'top', 'top con flecha hacia arriba', 'flecha TOP'], + }, + '🛐': { + name: 'lugar_de_culto', + keywords: ['culto', 'religión', 'lugar de culto'], + }, + '⚛️': { + name: 'símbolo_del_átomo', + keywords: ['átomo', 'símbolo', 'símbolo de átomo'], + }, + '🕉️': { + name: 'símbolo_de_om', + keywords: ['hindú', 'religión', 'om'], + }, + '✡️': { + name: 'estrella_de_david', + keywords: ['david', 'estrella', 'estrella de david', 'estrella de David', 'judaísmo', 'religión'], + }, + '☸️': { + name: 'rueda_del_dharma', + keywords: ['budismo', 'dharma', 'religión', 'rueda', 'rueda del dharma'], + }, + '☯️': { + name: 'yin_yang', + keywords: ['religión', 'taoísmo', 'yang', 'yin'], + }, + '✝️': { + name: 'cruz_latina', + keywords: ['cristianismo', 'cruz', 'religión', 'cruz latina'], + }, + '☦️': { + name: 'cruz_ortodoxa', + keywords: ['cruz', 'religión', 'cruz ortodoxa'], + }, + '☪️': { + name: 'estrella_y_luna_creciente', + keywords: ['estrella', 'islam', 'luna', 'religión', 'media luna y estrella'], + }, + '☮️': { + name: 'símbolo_de_la_paz', + keywords: ['paz', 'símbolo de la paz'], + }, + '🕎': { + name: 'candelabro_de_nueve_brazos', + keywords: ['candelabro', 'religión', 'menorá'], + }, + '🔯': { + name: 'estrella_de_seis_puntas', + keywords: ['adivinación', 'buena fortuna', 'estrella', 'seis puntas', 'estrella de seis puntas'], + }, + '♈': { + name: 'aries', + keywords: ['aries', 'Aries', 'carnero', 'zodiaco'], + }, + '♉': { + name: 'tauro', + keywords: ['buey', 'tauro', 'Tauro', 'toro', 'zodiaco'], + }, + '♊': { + name: 'géminis', + keywords: ['gemelos', 'géminis', 'Géminis', 'zodiaco'], + }, + '♋': { + name: 'cáncer', + keywords: ['cáncer', 'Cáncer', 'cangrejo', 'zodiaco'], + }, + '♌': { + name: 'leo', + keywords: ['leo', 'Leo', 'león', 'zodiaco'], + }, + '♍': { + name: 'virgo', + keywords: ['zodiaco', 'virgo Virgo'], + }, + '♎': { + name: 'libra', + keywords: ['balanza', 'escala', 'justicia', 'libra', 'Libra', 'zodiaco'], + }, + '♏': { + name: 'escorpio', + keywords: ['escorpio', 'Escorpio', 'escorpión', 'zodiaco'], + }, + '♐': { + name: 'sagitario', + keywords: ['arquero', 'sagitario', 'Sagitario', 'zodiaco'], + }, + '♑': { + name: 'capricornio', + keywords: ['cabra', 'capricornio', 'Capricornio', 'zodiaco'], + }, + '♒': { + name: 'acuario', + keywords: ['acuario', 'Acuario', 'agua', 'zodiaco'], + }, + '♓': { + name: 'piscis', + keywords: ['pescado', 'pez', 'piscis', 'Piscis', 'zodiaco'], + }, + '⛎': { + name: 'ofiuco', + keywords: ['ofiuco', 'Ofiuco', 'serpiente', 'zodiaco'], + }, + '🔀': { + name: 'flechas_cruzadas_hacia_la_derecha', + keywords: ['cruzado', 'flechas', 'flechas entrecruzadas', 'reproducción aleatoria'], + }, + '🔁': { + name: 'repetir', + keywords: ['flechas', 'repetición', 'repetir'], + }, + '🔂': { + name: 'repetir_una_vez', + keywords: ['flechas', 'repetición', 'uno', 'repetir una vez'], + }, + '▶️': { + name: 'flecha_hacia_delante', + keywords: ['botón de reproducción', 'flecha', 'triángulo', 'reproducir'], + }, + '⏩': { + name: 'avance_rápido', + keywords: ['avanzar', 'doble', 'flecha', 'avance rápido'], + }, + '⏭️': { + name: 'triángulo_doble_negro_en_dirección_derecha_con_barra_vertical', + keywords: ['raya vertical', 'siguiente', 'triángulos', 'pista siguiente'], + }, + '⏯️': { + name: 'triángulo_negro_en_dirección_derecha_con_doble_barra_vertical', + keywords: ['pausa', 'reproducir', 'triángulo', 'reproducir o pausa'], + }, + '◀️': { + name: 'flecha_hacia_atrás', + keywords: ['izquierda', 'triángulo', 'retroceso'], + }, + '⏪': { + name: 'rebobinar', + keywords: ['flecha', 'flecha doble a la izquierda', 'izquierda', 'rebobinado', 'rebobinar', 'retroceso rápido'], + }, + '⏮️': { + name: 'triángulo_doble_negro_en_dirección_izquierda_con_barra_vertical', + keywords: ['atrás', 'escena anterior', 'triángulo', 'pista anterior'], + }, + '🔼': { + name: 'flecha_pequeña_hacia_arriba', + keywords: ['arriba', 'botón', 'botón triángulo hacia arriba', 'triángulo', 'triángulo hacia arriba'], + }, + '⏫': { + name: 'flecha_doble_hacia_arriba', + keywords: ['arriba', 'flecha', 'triángulo doble hacia arriba'], + }, + '🔽': { + name: 'flecha_pequeña_hacia_abajo', + keywords: ['abajo', 'botón', 'botón triángulo hacia abajo', 'triángulo', 'triángulo hacia abajo'], + }, + '⏬': { + name: 'flecha_doble_hacia_abajo', + keywords: ['triángulo', 'triángulo doble abajo', 'triángulo doble hacia abajo'], + }, + '⏸️': { + name: 'doble_barra_vertical', + keywords: ['barras', 'botón', 'vertical', 'pausa'], + }, + '⏹️': { + name: 'cuadrado_negro_para_detener', + keywords: ['botón', 'cuadrado', 'parar', 'detener'], + }, + '⏺️': { + name: 'círculo_negro_de_grabación', + keywords: ['botón', 'círculo', 'grabar'], + }, + '⏏️': { + name: 'expulsar', + keywords: ['botón', 'expulsar'], + }, + '🎦': { + name: 'cine', + keywords: ['entretenimiento', 'película', 'cine'], + }, + '🔅': { + name: 'poco_brillo', + keywords: ['bajo', 'brillo', 'señal de brillo bajo', 'tenue'], + }, + '🔆': { + name: 'mucho_brillo', + keywords: ['alto', 'brillante', 'brillo', 'señal de brillo alto'], + }, + '📶': { + name: 'barras_de_recepción_de_señal', + keywords: ['antena', 'celular', 'móvil', 'señal', 'teléfono', 'barras de cobertura'], + }, + '📳': { + name: 'modo_vibración', + keywords: ['móvil', 'teléfono', 'teléfono celular', 'vibración', 'modo vibración'], + }, + '📴': { + name: 'móvil_desconectado', + keywords: ['apagado', 'móvil', 'teléfono', 'teléfono celular'], + }, + '♀️': { + name: 'signo_femenino', + keywords: ['mujer', 'signo', 'símbolo', 'signo femenino'], + }, + '♂️': { + name: 'signo_masculino', + keywords: ['hombre', 'signo', 'símbolo', 'signo masculino'], + }, + '⚧️': { + name: 'símbolo_de_transgénero', + keywords: ['transgénero', 'símbolo de transgénero'], + }, + '✖️': { + name: 'signo_de_multiplicación_grueso', + keywords: ['cancelar', 'marca', 'prohibido', 'signo de multiplicación', '×', 'multiplicación', 'x'], + }, + '➕': { + name: 'signo_de_suma_grueso', + keywords: ['signo', 'suma', '+ más'], + }, + '➖': { + name: 'signo_de_resta_grueso', + keywords: ['−', 'resta', 'signo', '-', 'menos'], + }, + '➗': { + name: 'signo_de_división_grueso', + keywords: ['÷', 'signo', 'signo de división', 'división'], + }, + '♾️': { + name: 'infinito', + keywords: ['ilimitado', 'siempre', 'universal', 'infinito'], + }, + '‼️': { + name: 'bangbang', + keywords: ['exclamación', 'puntuación', 'sorpresa', '!!', 'exclamación doble'], + }, + '⁉️': { + name: 'signos_de_interrogación_y_exclamación', + keywords: ['exclamación', 'interrogación', '! !? ?', 'exclamación e interrogación'], + }, + '❓': { + name: 'signo_de_interrogación_rojo', + keywords: ['interrogación', 'pregunta', 'puntuación', 'signo de interrogación', '?', 'interrogación roja'], + }, + '❔': { + name: 'signo_de_interrogación_gris', + keywords: ['interrogación', 'pregunta', 'puntuación', '?', 'interrogación blanca'], + }, + '❕': { + name: 'signo_de_exclamación_gris', + keywords: ['exclamación', 'puntuación', '!', 'exclamación blanca'], + }, + '❗': { + name: 'exclamación', + keywords: ['exclamación', 'puntuación', 'signo de exclamación', '!', 'exclamación roja'], + }, + '〰️': { + name: 'guion_ondulante', + keywords: ['guion', 'marca de sonido largo', 'ondulado'], + }, + '💱': { + name: 'cambio_de_divisas', + keywords: ['cambio', 'dinero', 'divisa', 'moneda', 'cambio de divisas'], + }, + '💲': { + name: 'símbolo_de_dólar_grueso', + keywords: ['dinero', 'dólar', 'símbolo', 'símbolo de dólar'], + }, + '⚕️': { + name: 'símbolo_médico', + keywords: ['asclepio', 'esculapio', 'medicina', 'serpiente', 'símbolo de medicina'], + }, + '♻️': { + name: 'reciclar', + keywords: ['reciclaje', 'reciclar', 'señal', 'símbolo universal de reciclaje sólido', 'universal', 'símbolo de reciclaje'], + }, + '⚜️': { + name: 'flor_de_lis', + keywords: ['flor', 'lis', 'flor de lis'], + }, + '🔱': { + name: 'tridente', + keywords: ['ancla', 'emblema', 'tridente', 'emblema de tridente'], + }, + '📛': { + name: 'chapa_identificativa', + keywords: ['etiqueta', 'nombre', 'etiqueta identificativa'], + }, + '🔰': { + name: 'principiante', + keywords: ['amarillo', 'japonés', 'principiante', 'verde', 'símbolo japonés para principiante'], + }, + '⭕': { + name: 'o', + keywords: ['aro', 'círculo', 'o', 'rojo', 'círculo rojo hueco'], + }, + '✅': { + name: 'marca_de_verificación_blanca', + keywords: ['✓', 'botón', 'marca', 'selección', 'verificación', 'botón de marca de verificación'], + }, + '☑️': { + name: 'casilla_con_marca_de_verificación', + keywords: ['✓', 'casilla', 'marca', 'selección', 'verificación', 'casilla con marca de verificación'], + }, + '✔️': { + name: 'marca_de_verificación_gruesa', + keywords: ['✓', 'marca', 'selección', 'verificación', 'marca de verificación'], + }, + '❌': { + name: 'x', + keywords: ['cancelar', 'cruz', 'marca de tachado', 'tachar', '×', 'marca de cruz', 'x'], + }, + '❎': { + name: 'cruz_negativa_enmarcada', + keywords: ['casilla', 'cruz', 'marca', '× botón con marca de cruz', 'x'], + }, + '➰': { + name: 'lazada', + keywords: ['giro', 'tirabuzón', 'bucle'], + }, + '➿': { + name: 'lazo', + keywords: ['bucle', 'doble'], + }, + '〽️': { + name: 'signo_de_inicio_de_canción', + keywords: ['alternancia', 'marca', 'marca de alternancia'], + }, + '✳️': { + name: 'asterisco_de_ocho_puntas', + keywords: ['asterisco', '*', 'asterisco de ocho puntas'], + }, + '✴️': { + name: 'estrella_negra_de_ocho_puntas', + keywords: ['estrella', '*', 'estrella de ocho puntas'], + }, + '❇️': { + name: 'destello', + keywords: ['* chispa'], + }, + '©️': { + name: 'derechos_de_autor', + keywords: ['c', 'símbolo', 'copyright'], + }, + '®️': { + name: 'registrado', + keywords: ['r', 'símbolo de marca registrada', 'marca registrada'], + }, + '™️': { + name: 'tm', + keywords: ['marca comercial', 'símbolo de marca comercial'], + }, + '#️⃣': { + name: 'almohadilla', + keywords: ['Teclas'], + }, + '*️⃣': { + name: 'asterisco_enmarcado', + keywords: ['Teclas'], + }, + '0️⃣': { + name: 'cero', + keywords: ['Teclas'], + }, + '1️⃣': { + name: 'uno', + keywords: ['Teclas'], + }, + '2️⃣': { + name: 'dos', + keywords: ['Teclas'], + }, + '3️⃣': { + name: 'tres', + keywords: ['Teclas'], + }, + '4️⃣': { + name: 'cuatro', + keywords: ['Teclas'], + }, + '5️⃣': { + name: 'cinco', + keywords: ['Teclas'], + }, + '6️⃣': { + name: 'seis', + keywords: ['Teclas'], + }, + '7️⃣': { + name: 'siete', + keywords: ['Teclas'], + }, + '8️⃣': { + name: 'ocho', + keywords: ['Teclas'], + }, + '9️⃣': { + name: 'nueve', + keywords: ['Teclas'], + }, + '🔟': { + name: 'diez_enmarcado', + keywords: ['Teclas'], + }, + '🔠': { + name: 'abcd_en_mayúsculas', + keywords: ['abcd', 'letras', 'mayúsculas', 'letras latinas mayúsculas'], + }, + '🔡': { + name: 'abcd', + keywords: ['abcd', 'letras', 'minúsculas', 'letras latinas minúsculas'], + }, + '🔢': { + name: '1234', + keywords: ['1234', 'dígitos', 'números'], + }, + '🔣': { + name: 'símbolos', + keywords: ['〒♪&%', 'símbolos'], + }, + '🔤': { + name: 'abc', + keywords: ['ABC', 'latino', 'alfabeto latino'], + }, + '🅰️': { + name: 'a', + keywords: ['A', 'grupo', 'sanguíneo', 'tipo A'], + }, + '🆎': { + name: 'ab', + keywords: ['AB', 'grupo', 'sanguíneo', 'tipo AB'], + }, + '🅱️': { + name: 'b', + keywords: ['B', 'grupo', 'sanguíneo', 'tipo B'], + }, + '🆑': { + name: 'cl', + keywords: ['símbolo', 'borrar'], + }, + '🆒': { + name: 'guay', + keywords: ['botón', 'cool', 'mola', 'botón COOL'], + }, + '🆓': { + name: 'gratis', + keywords: ['gratis', 'símbolo gratis', 'botón FREE'], + }, + ℹ️: { + name: 'fuente_de_información', + keywords: ['i', 'información'], + }, + '🆔': { + name: 'carné_de_identidad', + keywords: ['ID', 'identidad', 'símbolo identidad', 'símbolo de identificación'], + }, + 'Ⓜ️': { + name: 'm', + keywords: ['círculo', 'm', 'm en círculo'], + }, + '🆕': { + name: 'nuevo', + keywords: ['botón', 'NEW', 'nuevo'], + }, + '🆖': { + name: 'nada_guay', + keywords: ['botón', 'ng', 'nuevo', 'botón NG'], + }, + '🅾️': { + name: 'o2', + keywords: ['grupo sanguíneo', 'o', 'grupo sanguíneo tipo O'], + }, + '🆗': { + name: 'vale', + keywords: ['botón', 'ok', 'botón OK'], + }, + '🅿️': { + name: 'aparcamiento', + keywords: ['p', 'parking', 'aparcamiento'], + }, + '🆘': { + name: 'llamada_de_socorro', + keywords: ['ayuda', 'símbolo', 'socorro', 'sos', 'símbolo de socorro'], + }, + '🆙': { + name: 'arriba', + keywords: ['arriba', 'información', 'novedad', 'símbolo', 'up', 'botón UP!'], + }, + '🆚': { + name: 'vs', + keywords: ['contra', 'frente a', 'símbolo', 'versus', 'vs', 'botón VS'], + }, + '🈁': { + name: 'koko', + keywords: ['“aquí”', 'japonés', 'katakana', 'ideograma japonés para "aquí"'], + }, + '🈂️': { + name: 'sa', + keywords: ['cortesía', 'japonés', 'katakana', 'ideograma japonés para "de cortesía"'], + }, + '🈷️': { + name: 'u6708', + keywords: ['“cantidad mensual”', 'ideograma', 'japonés', 'kanji', 'ideograma japonés para "cantidad mensual"'], + }, + '🈶': { + name: 'u6709', + keywords: ['“de pago”', 'ideograma', 'japonés', 'kanji', 'ideograma japonés para "de pago"'], + }, + '🈯': { + name: 'u6307', + keywords: ['ideograma', 'japonés', 'kanji', 'reservado', 'ideograma japonés para "reservado"'], + }, + '🉐': { + name: 'símbolo_de_ganga', + keywords: ['ganga', 'ideograma', 'japonés', 'kanji', 'ideograma japonés para "ganga"'], + }, + '🈹': { + name: 'u5272', + keywords: ['descuento', 'ideograma', 'japonés', 'kanji', 'ideograma japonés para "descuento"'], + }, + '🈚': { + name: 'u7121', + keywords: ['gratis', 'ideograma', 'japonés', 'kanji', 'ideograma japonés para "gratis"'], + }, + '🈲': { + name: 'u7981', + keywords: ['ideograma', 'japonés', 'kanji', 'prohibido', 'ideograma japonés para "prohibido"'], + }, + '🉑': { + name: 'aceptar', + keywords: ['aceptable', 'ideograma', 'japonés', 'kanji', 'ideograma japonés para "aceptable"'], + }, + '🈸': { + name: 'u7533', + keywords: ['aplicación', 'ideograma', 'japonés', 'kanji', 'ideograma japonés para "aplicación"'], + }, + '🈴': { + name: 'u5408', + keywords: ['aprobado', 'ideograma', 'japonés', 'kanji', 'ideograma japonés para "aprobado"'], + }, + '🈳': { + name: 'u7a7a', + keywords: ['ideograma', 'japonés', 'kanji', 'vacante', 'ideograma japonés para "vacante"'], + }, + '㊗️': { + name: 'felicitaciones', + keywords: ['enhorabuena', 'ideograma', 'japonés', 'kanji', 'ideograma japonés para "enhorabuena"'], + }, + '㊙️': { + name: 'secreto', + keywords: ['ideograma', 'japonés', 'kanji', 'secreto', 'ideograma japonés para "secreto"'], + }, + '🈺': { + name: 'u55b6', + keywords: ['abierto', 'ideograma', 'japonés', 'kanji', 'ideograma japonés para "abierto"'], + }, + '🈵': { + name: 'u6e80', + keywords: ['completo', 'ideograma', 'japonés', 'kanji', 'lleno', 'ideograma japonés para "completo"'], + }, + '🔴': { + name: 'círculo_rojo', + keywords: ['círculo', 'geometría', 'rojo'], + }, + '🟠': { + name: 'círculo_naranja_grande', + keywords: ['círculo', 'naranja'], + }, + '🟡': { + name: 'círculo_amarillo_grande', + keywords: ['amarillo', 'círculo'], + }, + '🟢': { + name: 'círculo_verde_grande', + keywords: ['círculo', 'verde'], + }, + '🔵': { + name: 'círculo_azul_grande', + keywords: ['azul', 'círculo', 'geometría'], + }, + '🟣': { + name: 'círculo_morado_grande', + keywords: ['círculo', 'lila', 'morado', 'púrpura'], + }, + '🟤': { + name: 'círculo_marrón_grande', + keywords: ['círculo', 'marrón'], + }, + '⚫': { + name: 'círculo_negro', + keywords: ['círculo', 'geometría', 'círculo negro'], + }, + '⚪': { + name: 'círculo_blanco', + keywords: ['círculo', 'geometría', 'círculo blanco'], + }, + '🟥': { + name: 'cuadrado_rojo_grande', + keywords: ['cuadrado', 'rojo'], + }, + '🟧': { + name: 'cuadrado_naranja_grande', + keywords: ['cuadrado', 'naranja'], + }, + '🟨': { + name: 'cuadrado_amarillo_grande', + keywords: ['amarillo', 'cuadrado'], + }, + '🟩': { + name: 'cuadrado_verde_grande', + keywords: ['cuadrado', 'verde'], + }, + '🟦': { + name: 'cuadrado_azul_grande', + keywords: ['azul', 'cuadrado'], + }, + '🟪': { + name: 'cuadrado_morado_grande', + keywords: ['cuadrado', 'lila', 'morado', 'púrpura'], + }, + '🟫': { + name: 'cuadrado_marrón_grande', + keywords: ['cuadrado', 'marrón'], + }, + '⬛': { + name: 'gran_cuadrado_negro', + keywords: ['cuadrado', 'geometría', 'negro', 'cuadrado negro grande'], + }, + '⬜': { + name: 'cuadrado_blanco_grande', + keywords: ['blanco', 'cuadrado', 'geometría', 'cuadrado blanco grande'], + }, + '◼️': { + name: 'cuadrado_mediano_negro', + keywords: ['cuadrado', 'geometría', 'negro', 'cuadrado negro mediano'], + }, + '◻️': { + name: 'cuadrado_blanco_mediano', + keywords: ['blanco', 'cuadrado', 'geometría', 'cuadrado blanco mediano'], + }, + '◾': { + name: 'cuadrado_mediano_pequeño_negro', + keywords: ['cuadrado', 'geometría', 'negro', 'cuadrado negro mediano-pequeño'], + }, + '◽': { + name: 'cuadrado_blanco_mediano_pequeño', + keywords: ['blanco', 'cuadrado', 'geometría', 'cuadrado blanco mediano-pequeño'], + }, + '▪️': { + name: 'cuadrado_pequeño_negro', + keywords: ['cuadrado', 'geometría', 'negro', 'cuadrado negro pequeño'], + }, + '▫️': { + name: 'cuadrado_blanco_pequeño', + keywords: ['blanco', 'cuadrado', 'geometría', 'cuadrado blanco pequeño'], + }, + '🔶': { + name: 'diamante_naranja_grande', + keywords: ['geometría', 'naranja', 'rombo', 'rombo naranja grande'], + }, + '🔷': { + name: 'diamante_azul_grande', + keywords: ['azul', 'geometría', 'rombo', 'rombo azul grande'], + }, + '🔸': { + name: 'diamante_naranja_pequeño', + keywords: ['geometría', 'naranja', 'rombo', 'rombo naranja pequeño'], + }, + '🔹': { + name: 'diamante_azul_pequeño', + keywords: ['azul', 'geometría', 'rombo', 'rombo azul pequeño'], + }, + '🔺': { + name: 'triángulo_rojo_pequeño', + keywords: ['geometría', 'rojo', 'triángulo', 'triángulo hacia arriba rojo', 'triángulo rojo hacia arriba'], + }, + '🔻': { + name: 'triángulo_rojo_pequeño_hacia_abajo', + keywords: ['geometría', 'rojo', 'triángulo', 'triángulo hacia abajo rojo', 'triángulo rojo hacia abajo'], + }, + '💠': { + name: 'forma_de_diamante_con_un_punto_dentro', + keywords: ['flor', 'geometría', 'rombo', 'rombo con pétalo'], + }, + '🔘': { + name: 'botón_de_radio', + keywords: ['botón', 'opción', 'botón de opción'], + }, + '🔳': { + name: 'botón_cuadrado_blanco', + keywords: ['botón', 'cuadrado', 'botón cuadrado con borde blanco'], + }, + '🔲': { + name: 'botón_cuadrado_negro', + keywords: ['botón', 'cuadrado', 'botón cuadrado con borde negro'], + }, + '🏁': { + name: 'bandera_de_cuadros', + keywords: ['bandera', 'carreras', 'cuadros', 'deporte', 'motor', 'bandera de cuadros'], + }, + '🚩': { + name: 'mastil_con_bandera_triangular', + keywords: ['bandera', 'bandera de localización triangular', 'bandera informativa de localización', 'localización', 'bandera triangular'], + }, + '🎌': { + name: 'banderas_cruzadas', + keywords: ['banderas', 'celebración', 'japón', 'banderas cruzadas'], + }, + '🏴': { + name: 'ondeando_bandera_negra', + keywords: ['bandera', 'negra', 'ondear'], + }, + '🏳️': { + name: 'ondeando_bandera_blanca', + keywords: ['bandera', 'blanca', 'ondear'], + }, + '🏳️‍🌈': { + name: 'bandera-arcoíris', + keywords: ['arcoíris', 'bandera', 'bandera del arcoíris'], + }, + '🏳️‍⚧️': { + name: 'bandera_transgénero', + keywords: ['azul', 'bandera', 'blanco', 'LGTB', 'rosa', 'transgénero'], + }, + '🏴‍☠️': { + name: 'bandera_pirata', + keywords: ['botín', 'Jolly Roger', 'pirata', 'tesoro', 'bandera pirata'], + }, + '🇦🇨': { + name: 'bandera-ac', + keywords: ['Bandera'], + }, + '🇦🇩': { + name: 'bandera-ad', + keywords: ['Bandera'], + }, + '🇦🇪': { + name: 'bandera-ae', + keywords: ['Bandera'], + }, + '🇦🇫': { + name: 'bandera-af', + keywords: ['Bandera'], + }, + '🇦🇬': { + name: 'bandera-ag', + keywords: ['Bandera'], + }, + '🇦🇮': { + name: 'bandera-ai', + keywords: ['Bandera'], + }, + '🇦🇱': { + name: 'bandera-al', + keywords: ['Bandera'], + }, + '🇦🇲': { + name: 'bandera-am', + keywords: ['Bandera'], + }, + '🇦🇴': { + name: 'bandera-ao', + keywords: ['Bandera'], + }, + '🇦🇶': { + name: 'bandera-aq', + keywords: ['Bandera'], + }, + '🇦🇷': { + name: 'bandera-ar', + keywords: ['Bandera'], + }, + '🇦🇸': { + name: 'bandera-as', + keywords: ['Bandera'], + }, + '🇦🇹': { + name: 'bandera-at', + keywords: ['Bandera'], + }, + '🇦🇺': { + name: 'bandera-au', + keywords: ['Bandera'], + }, + '🇦🇼': { + name: 'bandera-aw', + keywords: ['Bandera'], + }, + '🇦🇽': { + name: 'bandera-ax', + keywords: ['Bandera'], + }, + '🇦🇿': { + name: 'bandera-az', + keywords: ['Bandera'], + }, + '🇧🇦': { + name: 'bandera-ba', + keywords: ['Bandera'], + }, + '🇧🇧': { + name: 'bandera-bb', + keywords: ['Bandera'], + }, + '🇧🇩': { + name: 'bandera-bd', + keywords: ['Bandera'], + }, + '🇧🇪': { + name: 'bandera-be', + keywords: ['Bandera'], + }, + '🇧🇫': { + name: 'bandera-bf', + keywords: ['Bandera'], + }, + '🇧🇬': { + name: 'bandera-bg', + keywords: ['Bandera'], + }, + '🇧🇭': { + name: 'bandera-bh', + keywords: ['Bandera'], + }, + '🇧🇮': { + name: 'bandera-bi', + keywords: ['Bandera'], + }, + '🇧🇯': { + name: 'bandera-bj', + keywords: ['Bandera'], + }, + '🇧🇱': { + name: 'bandera-bl', + keywords: ['Bandera'], + }, + '🇧🇲': { + name: 'bandera-bm', + keywords: ['Bandera'], + }, + '🇧🇳': { + name: 'bandera-bn', + keywords: ['Bandera'], + }, + '🇧🇴': { + name: 'bandera-bo', + keywords: ['Bandera'], + }, + '🇧🇶': { + name: 'bandera-bq', + keywords: ['Bandera'], + }, + '🇧🇷': { + name: 'bandera-br', + keywords: ['Bandera'], + }, + '🇧🇸': { + name: 'bandera-bs', + keywords: ['Bandera'], + }, + '🇧🇹': { + name: 'bandera-bt', + keywords: ['Bandera'], + }, + '🇧🇻': { + name: 'bandera-bv', + keywords: ['Bandera'], + }, + '🇧🇼': { + name: 'bandera-bw', + keywords: ['Bandera'], + }, + '🇧🇾': { + name: 'bandera-by', + keywords: ['Bandera'], + }, + '🇧🇿': { + name: 'bandera-bz', + keywords: ['Bandera'], + }, + '🇨🇦': { + name: 'bandera-ca', + keywords: ['Bandera'], + }, + '🇨🇨': { + name: 'bandera-cc', + keywords: ['Bandera'], + }, + '🇨🇩': { + name: 'bandera-cd', + keywords: ['Bandera'], + }, + '🇨🇫': { + name: 'bandera-cf', + keywords: ['Bandera'], + }, + '🇨🇬': { + name: 'bandera-cg', + keywords: ['Bandera'], + }, + '🇨🇭': { + name: 'bandera-ch', + keywords: ['Bandera'], + }, + '🇨🇮': { + name: 'bandera-ci', + keywords: ['Bandera'], + }, + '🇨🇰': { + name: 'bandera-ck', + keywords: ['Bandera'], + }, + '🇨🇱': { + name: 'bandera-cl', + keywords: ['Bandera'], + }, + '🇨🇲': { + name: 'bandera-cm', + keywords: ['Bandera'], + }, + '🇨🇳': { + name: 'cn', + keywords: ['Bandera'], + }, + '🇨🇴': { + name: 'bandera-co', + keywords: ['Bandera'], + }, + '🇨🇵': { + name: 'bandera-cp', + keywords: ['Bandera'], + }, + '🇨🇷': { + name: 'bandera-cr', + keywords: ['Bandera'], + }, + '🇨🇺': { + name: 'bandera-cu', + keywords: ['Bandera'], + }, + '🇨🇻': { + name: 'bandera-cv', + keywords: ['Bandera'], + }, + '🇨🇼': { + name: 'bandera-cw', + keywords: ['Bandera'], + }, + '🇨🇽': { + name: 'bandera-cx', + keywords: ['Bandera'], + }, + '🇨🇾': { + name: 'bandera-cy', + keywords: ['Bandera'], + }, + '🇨🇿': { + name: 'bandera-cz', + keywords: ['Bandera'], + }, + '🇩🇪': { + name: 'de', + keywords: ['Bandera'], + }, + '🇩🇬': { + name: 'bandera-dg', + keywords: ['Bandera'], + }, + '🇩🇯': { + name: 'bandera-dj', + keywords: ['Bandera'], + }, + '🇩🇰': { + name: 'bandera-dk', + keywords: ['Bandera'], + }, + '🇩🇲': { + name: 'bandera-dm', + keywords: ['Bandera'], + }, + '🇩🇴': { + name: 'bandera-do', + keywords: ['Bandera'], + }, + '🇩🇿': { + name: 'bandera-dz', + keywords: ['Bandera'], + }, + '🇪🇦': { + name: 'bandera-ea', + keywords: ['Bandera'], + }, + '🇪🇨': { + name: 'bandera-ec', + keywords: ['Bandera'], + }, + '🇪🇪': { + name: 'bandera-ee', + keywords: ['Bandera'], + }, + '🇪🇬': { + name: 'bandera-eg', + keywords: ['Bandera'], + }, + '🇪🇭': { + name: 'bandera-eh', + keywords: ['Bandera'], + }, + '🇪🇷': { + name: 'bandera-er', + keywords: ['Bandera'], + }, + '🇪🇸': { + name: 'es', + keywords: ['Bandera'], + }, + '🇪🇹': { + name: 'bandera-et', + keywords: ['Bandera'], + }, + '🇪🇺': { + name: 'bandera-eu', + keywords: ['Bandera'], + }, + '🇫🇮': { + name: 'bandera-fi', + keywords: ['Bandera'], + }, + '🇫🇯': { + name: 'bandera-fj', + keywords: ['Bandera'], + }, + '🇫🇰': { + name: 'bandera-fk', + keywords: ['Bandera'], + }, + '🇫🇲': { + name: 'bandera-fm', + keywords: ['Bandera'], + }, + '🇫🇴': { + name: 'bandera-fo', + keywords: ['Bandera'], + }, + '🇫🇷': { + name: 'fr', + keywords: ['Bandera'], + }, + '🇬🇦': { + name: 'bandera-ga', + keywords: ['Bandera'], + }, + '🇬🇧': { + name: 'gb', + keywords: ['Bandera'], + }, + '🇬🇩': { + name: 'bandera-gd', + keywords: ['Bandera'], + }, + '🇬🇪': { + name: 'bandera-ge', + keywords: ['Bandera'], + }, + '🇬🇫': { + name: 'bandera-gf', + keywords: ['Bandera'], + }, + '🇬🇬': { + name: 'bandera-gg', + keywords: ['Bandera'], + }, + '🇬🇭': { + name: 'bandera-gh', + keywords: ['Bandera'], + }, + '🇬🇮': { + name: 'bandera-gi', + keywords: ['Bandera'], + }, + '🇬🇱': { + name: 'bandera-gl', + keywords: ['Bandera'], + }, + '🇬🇲': { + name: 'bandera-gm', + keywords: ['Bandera'], + }, + '🇬🇳': { + name: 'bandera-gn', + keywords: ['Bandera'], + }, + '🇬🇵': { + name: 'bandera-gp', + keywords: ['Bandera'], + }, + '🇬🇶': { + name: 'bandera-gq', + keywords: ['Bandera'], + }, + '🇬🇷': { + name: 'bandera-gr', + keywords: ['Bandera'], + }, + '🇬🇸': { + name: 'bandera-gs', + keywords: ['Bandera'], + }, + '🇬🇹': { + name: 'bandera-gt', + keywords: ['Bandera'], + }, + '🇬🇺': { + name: 'bandera-gu', + keywords: ['Bandera'], + }, + '🇬🇼': { + name: 'bandera-gw', + keywords: ['Bandera'], + }, + '🇬🇾': { + name: 'bandera-gy', + keywords: ['Bandera'], + }, + '🇭🇰': { + name: 'bandera-hk', + keywords: ['Bandera'], + }, + '🇭🇲': { + name: 'bandera-hm', + keywords: ['Bandera'], + }, + '🇭🇳': { + name: 'bandera-hn', + keywords: ['Bandera'], + }, + '🇭🇷': { + name: 'bandera-hr', + keywords: ['Bandera'], + }, + '🇭🇹': { + name: 'bandera-ht', + keywords: ['Bandera'], + }, + '🇭🇺': { + name: 'bandera-hu', + keywords: ['Bandera'], + }, + '🇮🇨': { + name: 'bandera-ic', + keywords: ['Bandera'], + }, + '🇮🇩': { + name: 'bandera-id', + keywords: ['Bandera'], + }, + '🇮🇪': { + name: 'bandera-ie', + keywords: ['Bandera'], + }, + '🇮🇱': { + name: 'bandera-il', + keywords: ['Bandera'], + }, + '🇮🇲': { + name: 'bandera-im', + keywords: ['Bandera'], + }, + '🇮🇳': { + name: 'bandera-in', + keywords: ['Bandera'], + }, + '🇮🇴': { + name: 'bandera-io', + keywords: ['Bandera'], + }, + '🇮🇶': { + name: 'bandera-iq', + keywords: ['Bandera'], + }, + '🇮🇷': { + name: 'bandera-ir', + keywords: ['Bandera'], + }, + '🇮🇸': { + name: 'bandera-is', + keywords: ['Bandera'], + }, + '🇮🇹': { + name: 'it', + keywords: ['Bandera'], + }, + '🇯🇪': { + name: 'bandera-je', + keywords: ['Bandera'], + }, + '🇯🇲': { + name: 'bandera-jm', + keywords: ['Bandera'], + }, + '🇯🇴': { + name: 'bandera-jo', + keywords: ['Bandera'], + }, + '🇯🇵': { + name: 'jp', + keywords: ['Bandera'], + }, + '🇰🇪': { + name: 'bandera-ke', + keywords: ['Bandera'], + }, + '🇰🇬': { + name: 'bandera-kg', + keywords: ['Bandera'], + }, + '🇰🇭': { + name: 'bandera-kh', + keywords: ['Bandera'], + }, + '🇰🇮': { + name: 'bandera-kl', + keywords: ['Bandera'], + }, + '🇰🇲': { + name: 'bandera-km', + keywords: ['Bandera'], + }, + '🇰🇳': { + name: 'bandera-kn', + keywords: ['Bandera'], + }, + '🇰🇵': { + name: 'bandera-kp', + keywords: ['Bandera'], + }, + '🇰🇷': { + name: 'kr', + keywords: ['Bandera'], + }, + '🇰🇼': { + name: 'bandera-kw', + keywords: ['Bandera'], + }, + '🇰🇾': { + name: 'bandera-ky', + keywords: ['Bandera'], + }, + '🇰🇿': { + name: 'bandera-kz', + keywords: ['Bandera'], + }, + '🇱🇦': { + name: 'bandera-la', + keywords: ['Bandera'], + }, + '🇱🇧': { + name: 'bandera-lb', + keywords: ['Bandera'], + }, + '🇱🇨': { + name: 'bandera-lc', + keywords: ['Bandera'], + }, + '🇱🇮': { + name: 'bandera-li', + keywords: ['Bandera'], + }, + '🇱🇰': { + name: 'bandera-lk', + keywords: ['Bandera'], + }, + '🇱🇷': { + name: 'bandera-lr', + keywords: ['Bandera'], + }, + '🇱🇸': { + name: 'bandera-ls', + keywords: ['Bandera'], + }, + '🇱🇹': { + name: 'bandera-lt', + keywords: ['Bandera'], + }, + '🇱🇺': { + name: 'bandera-lu', + keywords: ['Bandera'], + }, + '🇱🇻': { + name: 'bandera-lv', + keywords: ['Bandera'], + }, + '🇱🇾': { + name: 'bandera-ly', + keywords: ['Bandera'], + }, + '🇲🇦': { + name: 'bandera-ma', + keywords: ['Bandera'], + }, + '🇲🇨': { + name: 'bandera-mc', + keywords: ['Bandera'], + }, + '🇲🇩': { + name: 'bandera-md', + keywords: ['Bandera'], + }, + '🇲🇪': { + name: 'bandera-me', + keywords: ['Bandera'], + }, + '🇲🇫': { + name: 'bandera-mf', + keywords: ['Bandera'], + }, + '🇲🇬': { + name: 'bandera-mg', + keywords: ['Bandera'], + }, + '🇲🇭': { + name: 'bandera-mh', + keywords: ['Bandera'], + }, + '🇲🇰': { + name: 'bandera-mk', + keywords: ['Bandera'], + }, + '🇲🇱': { + name: 'bandera-ml', + keywords: ['Bandera'], + }, + '🇲🇲': { + name: 'bandera-mm', + keywords: ['Bandera'], + }, + '🇲🇳': { + name: 'bandera-mn', + keywords: ['Bandera'], + }, + '🇲🇴': { + name: 'bandera-mo', + keywords: ['Bandera'], + }, + '🇲🇵': { + name: 'bandera-mp', + keywords: ['Bandera'], + }, + '🇲🇶': { + name: 'bandera-mq', + keywords: ['Bandera'], + }, + '🇲🇷': { + name: 'bandera-mr', + keywords: ['Bandera'], + }, + '🇲🇸': { + name: 'bandera-ms', + keywords: ['Bandera'], + }, + '🇲🇹': { + name: 'bandera-mt', + keywords: ['Bandera'], + }, + '🇲🇺': { + name: 'bandera-mu', + keywords: ['Bandera'], + }, + '🇲🇻': { + name: 'bandera-mv', + keywords: ['Bandera'], + }, + '🇲🇼': { + name: 'bandera-mw', + keywords: ['Bandera'], + }, + '🇲🇽': { + name: 'bandera-mx', + keywords: ['Bandera'], + }, + '🇲🇾': { + name: 'bandera-my', + keywords: ['Bandera'], + }, + '🇲🇿': { + name: 'bandera-mz', + keywords: ['Bandera'], + }, + '🇳🇦': { + name: 'bandera-na', + keywords: ['Bandera'], + }, + '🇳🇨': { + name: 'bandera-nc', + keywords: ['Bandera'], + }, + '🇳🇪': { + name: 'bandera-ne', + keywords: ['Bandera'], + }, + '🇳🇫': { + name: 'bandera-nf', + keywords: ['Bandera'], + }, + '🇳🇬': { + name: 'bandera-ng', + keywords: ['Bandera'], + }, + '🇳🇮': { + name: 'bandera-ni', + keywords: ['Bandera'], + }, + '🇳🇱': { + name: 'bandera-nl', + keywords: ['Bandera'], + }, + '🇳🇴': { + name: 'bandera-no', + keywords: ['Bandera'], + }, + '🇳🇵': { + name: 'bandera-np', + keywords: ['Bandera'], + }, + '🇳🇷': { + name: 'bandera-nr', + keywords: ['Bandera'], + }, + '🇳🇺': { + name: 'bandera-nu', + keywords: ['Bandera'], + }, + '🇳🇿': { + name: 'bandera-nz', + keywords: ['Bandera'], + }, + '🇴🇲': { + name: 'bandera-om', + keywords: ['Bandera'], + }, + '🇵🇦': { + name: 'bandera-pa', + keywords: ['Bandera'], + }, + '🇵🇪': { + name: 'bandera-pe', + keywords: ['Bandera'], + }, + '🇵🇫': { + name: 'bandera-pf', + keywords: ['Bandera'], + }, + '🇵🇬': { + name: 'bandera-pg', + keywords: ['Bandera'], + }, + '🇵🇭': { + name: 'bandera-ph', + keywords: ['Bandera'], + }, + '🇵🇰': { + name: 'bandera-pk', + keywords: ['Bandera'], + }, + '🇵🇱': { + name: 'bandera-pl', + keywords: ['Bandera'], + }, + '🇵🇲': { + name: 'bandera-pm', + keywords: ['Bandera'], + }, + '🇵🇳': { + name: 'bandera-pn', + keywords: ['Bandera'], + }, + '🇵🇷': { + name: 'bandera-pr', + keywords: ['Bandera'], + }, + '🇵🇸': { + name: 'bandera-ps', + keywords: ['Bandera'], + }, + '🇵🇹': { + name: 'bandera-pt', + keywords: ['Bandera'], + }, + '🇵🇼': { + name: 'bandera-pw', + keywords: ['Bandera'], + }, + '🇵🇾': { + name: 'bandera-py', + keywords: ['Bandera'], + }, + '🇶🇦': { + name: 'bandera-qa', + keywords: ['Bandera'], + }, + '🇷🇪': { + name: 'bandera-re', + keywords: ['Bandera'], + }, + '🇷🇴': { + name: 'bandera-ro', + keywords: ['Bandera'], + }, + '🇷🇸': { + name: 'bandera-rs', + keywords: ['Bandera'], + }, + '🇷🇺': { + name: 'ru', + keywords: ['Bandera'], + }, + '🇷🇼': { + name: 'bandera-rw', + keywords: ['Bandera'], + }, + '🇸🇦': { + name: 'bandera-sa', + keywords: ['Bandera'], + }, + '🇸🇧': { + name: 'bandera-sb', + keywords: ['Bandera'], + }, + '🇸🇨': { + name: 'bandera-sc', + keywords: ['Bandera'], + }, + '🇸🇩': { + name: 'bandera-sd', + keywords: ['Bandera'], + }, + '🇸🇪': { + name: 'bandera-se', + keywords: ['Bandera'], + }, + '🇸🇬': { + name: 'bandera-sg', + keywords: ['Bandera'], + }, + '🇸🇭': { + name: 'bandera-sh', + keywords: ['Bandera'], + }, + '🇸🇮': { + name: 'bandera-si', + keywords: ['Bandera'], + }, + '🇸🇯': { + name: 'bandera-sj', + keywords: ['Bandera'], + }, + '🇸🇰': { + name: 'bandera-sk', + keywords: ['Bandera'], + }, + '🇸🇱': { + name: 'bandera-sl', + keywords: ['Bandera'], + }, + '🇸🇲': { + name: 'bandera-sm', + keywords: ['Bandera'], + }, + '🇸🇳': { + name: 'bandera-sn', + keywords: ['Bandera'], + }, + '🇸🇴': { + name: 'bandera-so', + keywords: ['Bandera'], + }, + '🇸🇷': { + name: 'bandera-sr', + keywords: ['Bandera'], + }, + '🇸🇸': { + name: 'bandera-ss', + keywords: ['Bandera'], + }, + '🇸🇹': { + name: 'bandera-st', + keywords: ['Bandera'], + }, + '🇸🇻': { + name: 'bandera-sv', + keywords: ['Bandera'], + }, + '🇸🇽': { + name: 'bandera-sx', + keywords: ['Bandera'], + }, + '🇸🇾': { + name: 'bandera-sy', + keywords: ['Bandera'], + }, + '🇸🇿': { + name: 'bandera-sz', + keywords: ['Bandera'], + }, + '🇹🇦': { + name: 'bandera-ta', + keywords: ['Bandera'], + }, + '🇹🇨': { + name: 'bandera-tc', + keywords: ['Bandera'], + }, + '🇹🇩': { + name: 'bandera-td', + keywords: ['Bandera'], + }, + '🇹🇫': { + name: 'bandera-tf', + keywords: ['Bandera'], + }, + '🇹🇬': { + name: 'bandera-tg', + keywords: ['Bandera'], + }, + '🇹🇭': { + name: 'bandera-th', + keywords: ['Bandera'], + }, + '🇹🇯': { + name: 'bandera-tj', + keywords: ['Bandera'], + }, + '🇹🇰': { + name: 'bandera-tk', + keywords: ['Bandera'], + }, + '🇹🇱': { + name: 'bandera-tl', + keywords: ['Bandera'], + }, + '🇹🇲': { + name: 'bandera-tm', + keywords: ['Bandera'], + }, + '🇹🇳': { + name: 'bandera-tn', + keywords: ['Bandera'], + }, + '🇹🇴': { + name: 'bandera-to', + keywords: ['Bandera'], + }, + '🇹🇷': { + name: 'bandera-tr', + keywords: ['Bandera'], + }, + '🇹🇹': { + name: 'bandera-tt', + keywords: ['Bandera'], + }, + '🇹🇻': { + name: 'bandera-tv', + keywords: ['Bandera'], + }, + '🇹🇼': { + name: 'bandera-tw', + keywords: ['Bandera'], + }, + '🇹🇿': { + name: 'bandera-tz', + keywords: ['Bandera'], + }, + '🇺🇦': { + name: 'bandera-ua', + keywords: ['Bandera'], + }, + '🇺🇬': { + name: 'bandera-ug', + keywords: ['Bandera'], + }, + '🇺🇲': { + name: 'bandera-um', + keywords: ['Bandera'], + }, + '🇺🇳': { + name: 'bandera-onu', + keywords: ['Bandera'], + }, + '🇺🇸': { + name: 'us', + keywords: ['Bandera'], + }, + '🇺🇾': { + name: 'bandera-uy', + keywords: ['Bandera'], + }, + '🇺🇿': { + name: 'bandera-uz', + keywords: ['Bandera'], + }, + '🇻🇦': { + name: 'bandera-va', + keywords: ['Bandera'], + }, + '🇻🇨': { + name: 'bandera-vc', + keywords: ['Bandera'], + }, + '🇻🇪': { + name: 'bandera-ve', + keywords: ['Bandera'], + }, + '🇻🇬': { + name: 'bandera-vg', + keywords: ['Bandera'], + }, + '🇻🇮': { + name: 'bandera-vi', + keywords: ['Bandera'], + }, + '🇻🇳': { + name: 'bandera-vn', + keywords: ['Bandera'], + }, + '🇻🇺': { + name: 'bandera-vu', + keywords: ['Bandera'], + }, + '🇼🇫': { + name: 'bandera-wf', + keywords: ['Bandera'], + }, + '🇼🇸': { + name: 'bandera-ws', + keywords: ['Bandera'], + }, + '🇽🇰': { + name: 'bandera-xk', + keywords: ['Bandera'], + }, + '🇾🇪': { + name: 'bandera-ye', + keywords: ['Bandera'], + }, + '🇾🇹': { + name: 'bandera-yt', + keywords: ['Bandera'], + }, + '🇿🇦': { + name: 'bandera-za', + keywords: ['Bandera'], + }, + '🇿🇲': { + name: 'bandera-zm', + keywords: ['Bandera'], + }, + '🇿🇼': { + name: 'bandera-zw', + keywords: ['Bandera'], + }, + '🏴󠁧󠁢󠁥󠁮󠁧󠁿': { + name: 'bandera-inglaterra', + keywords: ['Bandera'], + }, + '🏴󠁧󠁢󠁳󠁣󠁴󠁿': { + name: 'bandera-escocia', + keywords: ['Bandera'], + }, + '🏴󠁧󠁢󠁷󠁬󠁳󠁿': { + name: 'bandera-gales', + keywords: ['Bandera'], + }, +}; + +export default esEmojis; diff --git a/assets/emojis/index.js b/assets/emojis/index.js new file mode 100644 index 000000000000..3882ac7f0fa6 --- /dev/null +++ b/assets/emojis/index.js @@ -0,0 +1,36 @@ +import _ from 'underscore'; +import emojis from './common'; +import enEmojis from './en'; +import esEmojis from './es'; + +const emojiNameTable = _.reduce( + emojis, + (prev, cur) => { + const newValue = prev; + if (!cur.header) { + newValue[cur.name] = cur; + } + return newValue; + }, + {}, +); + +const emojiCodeTable = _.reduce( + emojis, + (prev, cur) => { + const newValue = prev; + if (!cur.header) { + newValue[cur.code] = cur; + } + return newValue; + }, + {}, +); + +const localeEmojis = { + en: enEmojis, + es: esEmojis, +}; + +export {emojiNameTable, emojiCodeTable, localeEmojis}; +export {skinTones, categoryFrequentlyUsed, default} from './common'; diff --git a/assets/images/home-background--android.svg b/assets/images/home-background--android.svg new file mode 100644 index 000000000000..507aecf04836 --- /dev/null +++ b/assets/images/home-background--android.svg @@ -0,0 +1,6555 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/babel.config.js b/babel.config.js index 3fe49c3e034b..dd62684232c8 100644 --- a/babel.config.js +++ b/babel.config.js @@ -32,8 +32,6 @@ const webpack = { const metro = { presets: [require('metro-react-native-babel-preset')], plugins: [ - 'react-native-reanimated/plugin', - // This is needed due to a react-native bug: https://github.com/facebook/react-native/issues/29084#issuecomment-1030732709 // It is included in metro-react-native-babel-preset but needs to be before plugin-proposal-class-properties or FlatList will break '@babel/plugin-transform-flow-strip-types', @@ -41,6 +39,8 @@ const metro = { ['@babel/plugin-proposal-class-properties', {loose: true}], ['@babel/plugin-proposal-private-methods', {loose: true}], ['@babel/plugin-proposal-private-property-in-object', {loose: true}], + // The reanimated babel plugin needs to be last, as stated here: https://docs.swmansion.com/react-native-reanimated/docs/fundamentals/installation + 'react-native-reanimated/plugin', ], }; diff --git a/config/webpack/webpack.common.js b/config/webpack/webpack.common.js index 28bdc48a9ed4..18d730db26a7 100644 --- a/config/webpack/webpack.common.js +++ b/config/webpack/webpack.common.js @@ -82,6 +82,7 @@ const webpackConfig = ({envFile = '.env', platform = 'web'}) => ({ {from: 'web/favicon.png'}, {from: 'web/favicon-unread.png'}, {from: 'web/og-preview-image.png'}, + {from: 'web/apple-touch-icon.png'}, {from: 'assets/css', to: 'css'}, {from: 'assets/fonts/web', to: 'fonts'}, {from: 'node_modules/react-pdf/dist/esm/Page/AnnotationLayer.css', to: 'css/AnnotationLayer.css'}, diff --git a/contributingGuides/CONTRIBUTING.md b/contributingGuides/CONTRIBUTING.md index b86579f956b8..c115c11ebaaa 100644 --- a/contributingGuides/CONTRIBUTING.md +++ b/contributingGuides/CONTRIBUTING.md @@ -16,7 +16,11 @@ You can create as many accounts as needed in order to test your changes directly You can generate multiple test accounts by using a `+` postfix, for example if your email is test@test.com, you can create multiple New Expensify accounts connected to the same email address by using test+123@test.com, test+456@test.com, etc. ##### High Traffic Accounts -All internal engineers, contributors, and C+ members are **required** to test with a "high traffic" account against the staging or production web servers. Ask in [#expensify-open-source](https://expensify.slack.com/archives/C01GTK53T8Q) if someone can turn your account into a High Traffic account. These accounts more closely mirror the accounts used in production by real people. Internal team members can follow [this Stack Overflow](https://stackoverflow.com/c/expensify/questions/14504) to upgrade an account. + +All internal engineers, contributors, and C+ members are required to test with a “high traffic” account against the staging or production web servers. Use these Google forms to manage your high-traffic accounts. You'll need to authenticate via Google first. +1. [Make an account high-traffic](https://docs.google.com/forms/d/e/1FAIpQLScpiS0Mo-HA5xHPsvDow79yTsMBgF0wjuqc0K37lTK5fheB8Q/viewform) +2. [Remove a high-traffic account](https://docs.google.com/forms/d/e/1FAIpQLSd9_FDav83pnhhtu1KGAKIpf2yttQ_0Bvq1b9nuFM1-wbL11Q/viewform) + #### Working on beta features Some features are locked behind beta flags while development is ongoing. As a contributor you can work on these beta features locally by overriding the [`Permissions.canUseAllBetas` function](https://github.com/Expensify/App/blob/5e268df7f2989ed04bc64c0c86ed77faf134554d/src/libs/Permissions.js#L10-L12) to return `true`. @@ -53,13 +57,15 @@ Please be aware that compensation for any support in solving an issue is provide **Important:** Payment amounts are variable, dependent on when your PR is merged. Your PR will be reviewed by a Contributor+ (C+) team member and an internal engineer. All tests must pass and all code must pass lint checks before a merge. -**Payment timeline** all based on the day the contributor has an accepted proposal and is assigned to the Github issue -- Merged PR within 3 business days - 50% **bonus** -- Merged PR within 6 business days - 0% bonus -- Merged PR within 9 business days - 50% **penalty** +**Payment timeline** all based on the day and timestamp the contributor has an accepted proposal and is assigned to the Github issue +- Merged PR within 3 business days (72 hours) - 50% **bonus** +- Merged PR within 6 business days (144 hours) - 0% bonus +- Merged PR within 9 business days (216 hours) - 50% **penalty** - No PR within 12 business days - **Contract terminated** -If the PR causes a regression at any point within the regression period (starting when the code is merged and ending 7 days after being deployed to production), contributors are not eligible for the 50% bonus. +If the PR causes a regression at any point within the regression period (starting when the code is merged and ending 7 days after being deployed to production), contributors are not eligible for the 50% bonus. + +We specify exact hours to make sure we can clearly decide what is eligible for the bonus given our team is global and contributors span across all the timezones. ## Finding Jobs A job could be fixing a bug or working on a new feature. There are two ways you can find a job that you can contribute to: @@ -176,23 +182,24 @@ Additionally if you want to discuss an idea with the open source community witho Follow all the above above steps and processes. When you find a job you'd like to work on: - Post “I’m from [agency], I’d like to work on this job” - If no proposals have been submitted by other contributors, BugZero (BZ) team member or an internal engineer will assign the issue to you. - - If there are existing proposals, BZ will put the issue on hold. Contributor+ (C+) will review the existing proposals. If a contributor’s proposal is accepted then contributor will be assigned to the issue. If not the issue will be assigned to the agency-employee. + - If there are existing proposals, BZ will put the issue on hold. Contributor+ (C+) will review the existing proposals. If a contributor’s proposal is accepted then the contributor will be assigned to the issue. If not the issue will be assigned to the agency-employee. - Once assigned follow the steps [here](https://github.com/Expensify/App/blob/main/contributingGuides/CONTRIBUTING.md#propose-a-solution-for-the-job) to submit your proposal #### Guide on Acronyms used within Expensify Communication -During communication with Expensify, you will come across a variety of acronyms used by our team. While acronyms can be useful, they cease to be the moment they are not known to the receiver. As such, we wanted to create a list here of our most commonly used acronyms and what they're referring to. Lastly, please never hesitate to ask in slack or the GH issue if there are any that are not understood/known! +During communication with Expensify, you will come across a variety of acronyms used by our team. While acronyms can be useful, they cease to be the moment they are not known to the receiver. As such, we wanted to create a list here of our most commonly used acronyms and what they're referring to. Lastly, please never hesitate to ask in Slack or the GH issue if there are any that are not understood/known! - **ND/NewDot:** new.expensify.com - **OD/OldDot:** expensify.com - **BZ:** Bug Zero (Expensify internal team in charge of managing the GH issues related to our open-source project) -- **LHN:** Left Hand Navigation (Primary navigation modal in Expensify Chat, docked on the left hand side) +- **LHN:** Left Hand Navigation (Primary navigation modal in Expensify Chat, docked on the left-hand side) - **OP:** Original Post (Most commonly the post in E/App GH issues that reports the bug) -- **GBR:** Green Brick Road (UX Design Principle that utlizes green indicators on action items to encourage the user down the optimal path for a given process or task) -- **RBR:** Red Brick Road (UX Design Principle that utlizes red indicators on action items to encourage the user down the optimal path for handling and discovering errors) +- **FAB** Floating Action Button (the + Button that is used to launch flows like 'New Chat', 'Request Money') +- **GBR:** Green Brick Road (UX Design Principle that utilizes green indicators on action items to encourage the user down the optimal path for a given process or task) +- **RBR:** Red Brick Road (UX Design Principle that utilizes red indicators on action items to encourage the user down the optimal path for handling and discovering errors) - **VBA:** Verified Bank Account (Bank account that has been verified as real and belonging to the correct business/individual) - **NAB:** Not a Blocker (An issue that doesn't block progress, but would be nice to not have) - **LHN:** Left Hand Navigation - **IOU:** I owe you (used to describe payment requests between users) -- **OTP:** One time password, or magic sign-in +- **OTP:** One-time password, or magic sign-in - **RHP:** Right Hand Panel (on larger screens, pages are often displayed docked to the right side of the screen) - **QA:** Quality Assurance - **GH:** GitHub diff --git a/contributingGuides/NAVIGATION.md b/contributingGuides/NAVIGATION.md index 6e2b5b779606..d7a94c2a4337 100644 --- a/contributingGuides/NAVIGATION.md +++ b/contributingGuides/NAVIGATION.md @@ -70,3 +70,117 @@ Using [react-freeze](https://github.com/software-mansion/react-freeze) allows us - To keep the navigation state that was present before changing the layout, we save the state on every change and use it for the `initialState` prop. Changing the layout means that every component inside `NavigationContainer` is mounted anew. + +## Why we need to use minimal action in the `linkTo` function + +### The problem +Let's assume that the user wants to navigate like this: + +``` +1. Settings_root - navigate > Profile +2. Profile - UP > Settings_root +3. Settings_root - navigate > About +4. About - browser back button > Settings_root +``` + +Without minimal action, expected behavior won't be achieved and the final screen will be `Profile`. + +Broken behavior is the outcome of two things: +1. Back button in the browser resets the navigation state with the state saved in step two. + +2. `Navigation.navigate` creates action with `getActionFromState` dispatched at the top level of the navigation hierarchy. + +The reason why `getActionFromState` provided by `react-navigation` is dispatched at the top level of the navigation hierarchy is that it doesn't know about current navigation state, only about desired one. + +In this example it doesn't know if the `RightModalNavigator` and `Settings` are already mounted. + + +The action for the first step looks like that: +```json +{ + "type": "NAVIGATE", + "payload": { + "name": "RightModalNavigator", + "params": { + "initial": true, + "screen": "Settings", + "params": { + "initial": true, + "screen": "Profile", + } + } + } +} +``` + + +That means, the params for the `RightModalNavigator` and `Settings` (also a navigator) will be filled with the information that we want to have the `Profile` screen in the state. + +```json +{ + "index": 2, + "routes": [ + { "name": "Home", }, + { + "name": "RightModalNavigator", + // here you can see that the params are filled with the information about structure that should be in the state. + "params": { + "initial": true, + "screen": "Settings", + "params": { + "initial": true, + "screen": "Settings_Profile", + "path": "/settings/profile" + } + }, + "state": { + "index": 0, + "routes": [ + { + "name": "Settings", + // Same here + "params": { + "initial": true, + "screen": "Settings_Profile", + "path": "/settings/profile" + }, + "state": { + "index": 0, + "routes": [ + { + "name": "Settings_Profile" + } + ] + } + } + ] + } + } + ] +} +``` + +This information will stay here even if we pop the `Profile` screen and navigate to `About` screen. + +Later on, when the user presses the browser back button expecting that the `Settings_root` screen will appear, the navigation state will be reset with information about the `Profile` screen in the params and this will be used as a source of truth for the navigation. + +### The solution + +If we can create simple action that will only push one screen to the existing navigator, we won't fill any params of the navigators. + +The `getMinimalAction` compares action generated by the `getActionFromState` with the current navigation state and tries to find the smallest action possible. + +The action for the first step created with `getMinimalAction` looks like this: + +```json +{ + "type": "NAVIGATE", + "payload": { + "name": "Settings_Profile" + }, + "target": "Settings-stack-key-xyz" +} +``` + +### Deeplinking +There is no minimal action for deeplinking directly to the `Profile` screen. But because the `Settings_root` is not on the stack, pressing UP will reset the params for navigators to the correct ones. \ No newline at end of file diff --git a/contributingGuides/STYLE.md b/contributingGuides/STYLE.md index a318a529af01..ce59438a0681 100644 --- a/contributingGuides/STYLE.md +++ b/contributingGuides/STYLE.md @@ -194,7 +194,7 @@ function populateShortcutModal(shouldShowAdvancedShortcuts) { ``` ## Destructuring -JavaScript destructuring is convenient and fun, but we should avoid using it in situations where it reduces code clarity. Here are some general guidelines on destructuring. +We should avoid using object destructuring in situations where it reduces code clarity. Here are some general guidelines on destructuring. **General Guidelines** @@ -210,30 +210,28 @@ const {name, accountID, email} = data; **React Components** -Don't destructure props or state. It makes the source of a given variable unclear. This guideline helps us quickly know which variables are from props, state, or from some other scope. +Always use destructuring to get prop values. Destructuring is necessary to assign default values to props. ```javascript // Bad -const {userData} = props; -const {firstName, lastName} = state; -... - -// Bad -function UserInfo({name, email}) { +function UserInfo(props) { return ( - Name: {name} - Email: {email} + Name: {props.name} + Email: {props.email} - ); +} + +UserInfo.defaultProps = { + name: 'anonymous'; } // Good -function UserInfo(props) { +function UserInfo({ name = 'anonymous', email }) { return ( - Name: {props.name} - Email: {props.email} + Name: {name} + Email: {email} ); } diff --git a/contributingGuides/STYLING.md b/contributingGuides/STYLING.md index ea402f162373..3842d983725c 100644 --- a/contributingGuides/STYLING.md +++ b/contributingGuides/STYLING.md @@ -2,7 +2,11 @@ ## Where to Define Styles -All styles must be defined in the `/styles` directory and `styles.js` contains the final export after gathering all appropriate styles. Unlike some React Native applications we are not using `StyleSheet.create()` and instead store styles as plain JS objects. There are also many helper styles available for direct use in components. +Styles can either be theme-related or not. "Theme-related" means that a style contains some sort of color attributes (backgroundColor, color, borderColor). "Non-theme-related" styles may not contain no color attributes. + +All non-theme-related styles must be defined in the `/styles` directory and `styles.js` contains the final export after gathering all appropriate styles. Unlike some React Native applications we are not using `StyleSheet.create()` and instead store styles as plain JS objects. There are also many helper styles available for direct use in components. + +All styles that contain theme colors have to be defined in the `ThemeStylesProvider` component, as those need to be dynamically created and animated. These helper styles are loosely based on the [Bootstrap system of CSS utility helper classes](https://getbootstrap.com/docs/5.0/utilities/spacing/) and are typically incremented by units of `4`. diff --git a/docs/_data/_routes.yml b/docs/_data/_routes.yml index aff9c961544c..32c8a5211ee2 100644 --- a/docs/_data/_routes.yml +++ b/docs/_data/_routes.yml @@ -5,9 +5,9 @@ home: # Hubs are comprised of sections and articles. Sections contain multiple related articles, but there can be standalone articles as well hubs: - - href: send-money - title: Send money - description: With only a couple of clicks, send money to your friends or coworkers. + - href: split-bills + title: Split bills + description: With only a couple of clicks, split bills with your friends or coworkers. icon: /assets/images/paper-airplane.svg - href: request-money diff --git a/docs/articles/other/Everything-About-Chat.md b/docs/articles/other/Everything-About-Chat.md index 482deab9e7b4..5ab435eb0523 100644 --- a/docs/articles/other/Everything-About-Chat.md +++ b/docs/articles/other/Everything-About-Chat.md @@ -32,7 +32,7 @@ All workspace admins can access the #admins room. Use the #admins room to collab - To turn your text into a blockquote, add an angled bracket (>) in front of the text: >your text - To turn your message into a heading, place a number sign (#) in front of the text: - ### Heading +# Heading - To turn your entire message into code block, place three backticks on both sides of the text: ``` here's some text diff --git a/docs/articles/playbooks/Expensify-Chat-Playbook-for-Conferences.md b/docs/articles/playbooks/Expensify-Chat-Playbook-for-Conferences.md new file mode 100644 index 000000000000..526debf1cc47 --- /dev/null +++ b/docs/articles/playbooks/Expensify-Chat-Playbook-for-Conferences.md @@ -0,0 +1,114 @@ +--- +title: Expensify Chat Playbook for Conferences +description: Best practices for how to deploy Expensify Chat for your conference +--- +## Overview + +To help make setting up Expensify Chat for your event and your attendees super simple, we’ve created a guide for all of the technical setup details. + + +## Who you are + +As a conference organizer, you’re expected to amaze and inspire attendees. You want attendees to get to the right place on time, engage with the speakers, and create relationships with each other that last long after the conference is done. Enter Expensify Chat, a free feature that allows attendees to interact with organizers and other attendees in realtime. With Expensify Chat, you can: + +- Communicate logistics and key information +- Foster conference wide attendee networking +- Organize conversations by topic and audience +- Continue conversations long after the event itself +- Digitize attendee social interaction + +Sounds good? Great! In order to ensure your team, your speakers, and your attendees have the best experience possible, we’ve created a guide on how to use Expensify Chat at your event. + +_Let’s get started!_ + + +## Support + +Connect with your dedicated account manager in any new.expensify.com #admins room. Your account manager is excited to brainstorm the best ways to make the most out of your event and work through any questions you have about the setup steps below. + + +## Step by step instructions for setting up your conference on Expensify Chat + +Based on our experience running conferences atop Expensify Chat, we recommend the following simple steps: + +### Step 1: Create your event Workspace in Expensify + +To create your event workspace in Expensify: +1. In new.expensify.com: “+” > “New workspace” +2. Name the workspace e.g. “ExpensiCon” + +### Step 2: Setup all necessary Expensify Chat rooms you want to feature at your event + +*Protip*: Your account manager can complete this step with you. Chat with them in #admins on new.expensify.com to coordinate! + +To create a new chat room: +1. Go to new.expensify.com +2. Go to “+” > New room +3. Name to room e.g. “#social” +4. Select the workspace created at step 1 +5. Select “Public” visibility +6. “Create room” > Copy/Paste room URL for use later +7. Repeat for each room + +For an easy-to-follow event, we recommend creating these chat rooms: + +- *#social* - This room will include all attendees, speakers, and members of your organizing team. You can use this room to discuss social events, happy hours, dinners, or encourage attendees to mingle, share photos and connect. +- *#announce* - This room will be used as your main announcement channel, and should only be used by organizers to announce schedule updates or anything important that your attendees need to know. Everyone in your policy will be invited to this channel, but chatting in here isn’t encouraged so to keep the noise to a minimum. +- *Create an individual room for each session* - Attendees will be able to engage with the speaker/session leader and can ask questions about their content either before/during/after the session. +- *Create a room with your Expensify account manager/s* - We can use this room to coordinate using Expensify Chat before, during, and after the event. + +### Step 3: Add chat room QR codes to the applicable session slide deck + +Gather QR codes: +1. Go to new.exensify.com +2. Click into a room and click the room name or avatar in the top header +3. Go into Share Code +4. Download or screenshot the QR code image + +Add the QR code to every slide so that if folks forget to scan the QR code at the beginning of the presentation, they can still join the discussion. + +### Step 4: Train speakers on how to use chat during their sessions + +*Protip*: Copy and paste a link to this section and share it directly with your speakers +*Protip*: Your account manager can communicate this training to your speakers. Chat with them in #admins on new.expensify.com to coordinate! + +Are you a speaker at an event? Great! Expensify Chat is the perfect way to connect with your session attendees before, during, and after the event. Use Expensify Chat to introduce yourself and your topic, and open the floor for attendees to ask questions and participate in discussion about your presentation, as well as connect with other attendees that were in the room. Here’s a quick list to help you best prepare for your session by using Expensify Chat: + +1. Ensure your session has an Expensify Chat room and that you know the URL link to your session so you can share with attendees ahead of time +2. Join the chat room ahead of the event so you can start engaging with your session’s attendees from the get-go +3. Make sure you have a session moderator with you on the day who is available to help moderate questions and facilitate discussion while you’re busy speaking +4. Ensure your session slides include the QR code for your session chat room. We’d recommend making sure the QR is visible on every page of your deck in case an attendee didn’t join at the beginning. +5. Engage with attendees after your session to continue the discussion around your topic! + +*Messaging Suggestions* + +- Default: Welcome to [CONFERENCE NAME]! This is the [SESSION TITLE] chat room. Please use this room to chat with each other, submit questions about today's presentation, and to chat directly with [SPEAKER NAME] after the session wraps up. +- Custom: As part of pre-conference speaker outreach we should allow speakers to change this message and use the default if they don’t respond.” + +### Step 5: Plan out your messaging and cadence before the event begins + +Expensify Chat is a great place to provide updates leading up to your event -- share news, get folks excited about speakers, and let attendees know of crucial event information like recommended attire, travel info, and more. + +### Step 6: Update your rooms throughout the event + +We find chat to be a powerful way to not only engage your attendees, but direct them in realtime to get exactly where they need to go, in realtime: + +- #announce: Use this room to make announcements such as what’s coming up next, where and when social events are taking place, or announcing the sponsor floor is open to the entire conference. Only workspace admins can post in this room. +- #social: Have your employees in this room sharing fun photos, stoking conversations, and respond to any questions or feedback. +- Speaker rooms: Encourage employees to jump in to comment on content encouraging other attendees to engage with each other during sessions. + +*Protip*: Expensify Chat has moderation tools to help flag comments deemed to be spam, inconsiderate, intimidating, bullying, harassment, assault. On any comment just click the flag icon to moderate conversation. + +### Step 7: Follow up with attendees after the event + +Continue the connections by using Expensify Chat to keep your conference community connected. Encourage attendees to share photos, their favorite memories, funny stories, and more. + +- We’d recommend creating a draft of all of your reminders that you plan to send in the #announce (or #social) room throughout the event. +- A post in the morning outlining the full agenda, and then before each event as it happens throughout the day is recommended. Be sure to include details like timings, locations, and any special detail like attire to help attendees feel prepared. +- Use markdown when posting updates so that your messages are easy to read. +- We also recommend posting your updates on new lines so that if someone has a question about a certain item they can ask in a thread pertaining to that topic, rather than in one consolidated block. + +## You’re all set! + +Once you have completed the above steps you are ready to host your conference on Expensify Chat! Let your account manager know any questions you have over in your new.expensify.com #admins room and start driving activity in your Expensify Chat rooms. By step 4 you have the foundations in place so a great next step is to start training your speakers on how to use Expensify Chat for their sessions. Coordinate with your account manager to make sure everything goes smoothly! + diff --git a/docs/articles/request-money/Request-and-Send-Money.md b/docs/articles/request-money/Request-and-Send-Money.md deleted file mode 100644 index 277ffcf830c1..000000000000 --- a/docs/articles/request-money/Request-and-Send-Money.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: Request Money, Split Bills, and Send Money to Friends -description: Everything you need to know about Requesting Money, Splitting Bills, and Sending Money to Friends! ---- - - - -# How do these Payment Features work? -Our suite of money movement features enables you to request money owed by an individual, split a bill with a group, and proactively send money for a one-off expense. - -**Request Money** lets your friends pay you back directly in Expensify. When you send a payment request to a friend, Expensify will display the amount owed and the option to pay the corresponding request in a chat between you. - -**Split Bill** allows you to split payments between friends and ensures the person who settled the tab gets paid back. - -**Send Money** allows you to send money to someone proactively. With this feature, you can Send Money to a friend without receiving a payment or split bill request. - -These three features ensure you can live in the moment and settle up afterward. - -# How to Request Money -- Select the Green **+** button and choose **Request Money** -- Enter the amount **$** they owe and click **Next** -- Search for the user or enter their email! -- Enter a reason for the request (optional) -- Click **Request!** -- If you change your mind, all you have to do is click **Cancel** -- The user will be able to **Settle up outside of Expensify** or pay you via **Venmo** or **PayPal.me** - -# How to Split a Bill -- Select the Green **+** button and choose **Split Bill** -- Enter the total amount for the bill and click **Next** -- Search for users or enter their emails and **Select** -- Enter a reason for the split -- The split is then shared equally between the attendees - -# How to Send Money -- Click the green **+** button and select **Send Money** -- Enter an **amount > Next** -- Enter the **email address** or **phone number** (including area code) of the person you’re paying -- Add a note about why you’re paying them (this is optional, but it’s fun!) -- Click **Pay with Expensify** -- Choose **Bank Account\*** or **Debit Card\*\*** -\* If paying with a Bank Account, follow the prompts to connect your bank to Expensify. -\*\* If paying with a Debit Card, enter your card details and tap Save. - -# FAQs -## Send Money Payment: Why is the option to Pay With Expensify not visible to me? -If “I’ll Settle Elsewhere” is showing for you when you’re trying to send money, this is because we don’t support money movement through Expensify in your jurisdiction yet. You can use “I’ll settle elsewhere” if you want to track the payments for audit in Expensify. - -## I’ve received a payment request/bill split from a friend in a DM. Do I use Send Money to send this payment? -No. Click the green “Pay” button in the payment preview in the DM, and this will ensure you are paying the accompanying Payment or Bill Split request - canceling out the IOU to 0. - -## Can I request money from more than one person at a time? -If you need to request money for more than one person at a time, you’ll want to use the Split Bill feature. The Request Money option is for one-to-one payments between two people. diff --git a/docs/articles/request-money/Request-and-Split-Bills.md b/docs/articles/request-money/Request-and-Split-Bills.md new file mode 100644 index 000000000000..a2c63cf6f8f7 --- /dev/null +++ b/docs/articles/request-money/Request-and-Split-Bills.md @@ -0,0 +1,35 @@ +--- +title: Request Money and Split Bills with Friends +description: Everything you need to know about Requesting Money and Splitting Bills with Friends! +--- + + + +# How do these Payment Features work? +Our suite of money movement features enables you to request money owed by an individual or split a bill with a group. + +**Request Money** lets your friends pay you back directly in Expensify. When you send a payment request to a friend, Expensify will display the amount owed and the option to pay the corresponding request in a chat between you. + +**Split Bill** allows you to split payments between friends and ensures the person who settled the tab gets paid back. + +These two features ensure you can live in the moment and settle up afterward. + +# How to Request Money +- Select the Green **+** button and choose **Request Money** +- Enter the amount **$** they owe and click **Next** +- Search for the user or enter their email! +- Enter a reason for the request (optional) +- Click **Request!** +- If you change your mind, all you have to do is click **Cancel** +- The user will be able to **Settle up outside of Expensify** or pay you via **Venmo** or **PayPal.me** + +# How to Split a Bill +- Select the Green **+** button and choose **Split Bill** +- Enter the total amount for the bill and click **Next** +- Search for users or enter their emails and **Select** +- Enter a reason for the split +- The split is then shared equally between the attendees + +# FAQs +## Can I request money from more than one person at a time? +If you need to request money for more than one person at a time, you’ll want to use the Split Bill feature. The Request Money option is for one-to-one payments between two people. diff --git a/docs/articles/send-money/paying-friends/Request-and-Send-Money.md b/docs/articles/send-money/paying-friends/Request-and-Send-Money.md deleted file mode 100644 index 277ffcf830c1..000000000000 --- a/docs/articles/send-money/paying-friends/Request-and-Send-Money.md +++ /dev/null @@ -1,53 +0,0 @@ ---- -title: Request Money, Split Bills, and Send Money to Friends -description: Everything you need to know about Requesting Money, Splitting Bills, and Sending Money to Friends! ---- - - - -# How do these Payment Features work? -Our suite of money movement features enables you to request money owed by an individual, split a bill with a group, and proactively send money for a one-off expense. - -**Request Money** lets your friends pay you back directly in Expensify. When you send a payment request to a friend, Expensify will display the amount owed and the option to pay the corresponding request in a chat between you. - -**Split Bill** allows you to split payments between friends and ensures the person who settled the tab gets paid back. - -**Send Money** allows you to send money to someone proactively. With this feature, you can Send Money to a friend without receiving a payment or split bill request. - -These three features ensure you can live in the moment and settle up afterward. - -# How to Request Money -- Select the Green **+** button and choose **Request Money** -- Enter the amount **$** they owe and click **Next** -- Search for the user or enter their email! -- Enter a reason for the request (optional) -- Click **Request!** -- If you change your mind, all you have to do is click **Cancel** -- The user will be able to **Settle up outside of Expensify** or pay you via **Venmo** or **PayPal.me** - -# How to Split a Bill -- Select the Green **+** button and choose **Split Bill** -- Enter the total amount for the bill and click **Next** -- Search for users or enter their emails and **Select** -- Enter a reason for the split -- The split is then shared equally between the attendees - -# How to Send Money -- Click the green **+** button and select **Send Money** -- Enter an **amount > Next** -- Enter the **email address** or **phone number** (including area code) of the person you’re paying -- Add a note about why you’re paying them (this is optional, but it’s fun!) -- Click **Pay with Expensify** -- Choose **Bank Account\*** or **Debit Card\*\*** -\* If paying with a Bank Account, follow the prompts to connect your bank to Expensify. -\*\* If paying with a Debit Card, enter your card details and tap Save. - -# FAQs -## Send Money Payment: Why is the option to Pay With Expensify not visible to me? -If “I’ll Settle Elsewhere” is showing for you when you’re trying to send money, this is because we don’t support money movement through Expensify in your jurisdiction yet. You can use “I’ll settle elsewhere” if you want to track the payments for audit in Expensify. - -## I’ve received a payment request/bill split from a friend in a DM. Do I use Send Money to send this payment? -No. Click the green “Pay” button in the payment preview in the DM, and this will ensure you are paying the accompanying Payment or Bill Split request - canceling out the IOU to 0. - -## Can I request money from more than one person at a time? -If you need to request money for more than one person at a time, you’ll want to use the Split Bill feature. The Request Money option is for one-to-one payments between two people. diff --git a/docs/articles/split-bills/paying-friends/Request-and-Split-Bills.md b/docs/articles/split-bills/paying-friends/Request-and-Split-Bills.md new file mode 100644 index 000000000000..a2c63cf6f8f7 --- /dev/null +++ b/docs/articles/split-bills/paying-friends/Request-and-Split-Bills.md @@ -0,0 +1,35 @@ +--- +title: Request Money and Split Bills with Friends +description: Everything you need to know about Requesting Money and Splitting Bills with Friends! +--- + + + +# How do these Payment Features work? +Our suite of money movement features enables you to request money owed by an individual or split a bill with a group. + +**Request Money** lets your friends pay you back directly in Expensify. When you send a payment request to a friend, Expensify will display the amount owed and the option to pay the corresponding request in a chat between you. + +**Split Bill** allows you to split payments between friends and ensures the person who settled the tab gets paid back. + +These two features ensure you can live in the moment and settle up afterward. + +# How to Request Money +- Select the Green **+** button and choose **Request Money** +- Enter the amount **$** they owe and click **Next** +- Search for the user or enter their email! +- Enter a reason for the request (optional) +- Click **Request!** +- If you change your mind, all you have to do is click **Cancel** +- The user will be able to **Settle up outside of Expensify** or pay you via **Venmo** or **PayPal.me** + +# How to Split a Bill +- Select the Green **+** button and choose **Split Bill** +- Enter the total amount for the bill and click **Next** +- Search for users or enter their emails and **Select** +- Enter a reason for the split +- The split is then shared equally between the attendees + +# FAQs +## Can I request money from more than one person at a time? +If you need to request money for more than one person at a time, you’ll want to use the Split Bill feature. The Request Money option is for one-to-one payments between two people. diff --git a/docs/articles/send-money/workspaces/The-Free-Plan.md b/docs/articles/split-bills/workspaces/The-Free-Plan.md similarity index 100% rename from docs/articles/send-money/workspaces/The-Free-Plan.md rename to docs/articles/split-bills/workspaces/The-Free-Plan.md diff --git a/docs/assets/js/main.js b/docs/assets/js/main.js index 3b262ddd12e3..d5d462b83e50 100644 --- a/docs/assets/js/main.js +++ b/docs/assets/js/main.js @@ -44,8 +44,20 @@ function clamp(num, min, max) { function isInRange(num, min, max) { return num >= min && num <= max; } - +/** + * Checks if the user has navigated within the docs using internal links and uses browser history to navigate back. + * If a page is directly accessed (e.g., via deep link, bookmark, or opened in a new tab),the user will be navigated + * back to the relevant hub page of that article. + */ function navigateBack() { + const currentHost = window.location.host; + const referrer = document.referrer; + + if (referrer.includes(currentHost) && window.history.length > 1) { + window.history.back(); + return; + } + const hubs = JSON.parse(document.getElementById('hubs-data').value); const hubToNavigate = hubs.find((hub) => window.location.pathname.includes(hub)); // eslint-disable-line rulesdir/prefer-underscore-method if (hubToNavigate) { diff --git a/docs/hubs/send-money.html b/docs/hubs/split-bills.html similarity index 71% rename from docs/hubs/send-money.html rename to docs/hubs/split-bills.html index cf496512ca22..6464ab62ef07 100644 --- a/docs/hubs/send-money.html +++ b/docs/hubs/split-bills.html @@ -1,6 +1,6 @@ --- layout: default -title: Send money +title: Split bills --- {% include hub.html %} diff --git a/docs/index.html b/docs/index.html index d79c87e281a8..74296c200971 100644 --- a/docs/index.html +++ b/docs/index.html @@ -11,7 +11,7 @@

- {% include hub-card.html href="send-money" %} + {% include hub-card.html href="split-bills" %} {% include hub-card.html href="request-money" %} {% include hub-card.html href="playbooks" %} {% include hub-card.html href="other" %} diff --git a/fastlane/Fastfile b/fastlane/Fastfile index aba3430d9f72..60d60934c2ba 100644 --- a/fastlane/Fastfile +++ b/fastlane/Fastfile @@ -243,26 +243,6 @@ platform :ios do desc "Move app to App Store Review" lane :production do - # Login to Spaceship - fastlane_require 'spaceship' - teamID = CredentialsManager::AppfileConfig.try_fetch_value(:team_id) - Spaceship::ConnectAPI.login( - use_portal: false, - tunes_team_id: teamID, - ) - - # Find our app - bundleID = CredentialsManager::AppfileConfig.try_fetch_value(:app_identifier) - app = Spaceship::ConnectAPI::App.find(bundleID) - if app.nil? - UI.important "not found in team #{teamID} on ASC!" - next - else - # If there's an app that's Pending Developer Release, release it before continuing with the new version - pendingReviewVersion = app.get_pending_release_app_store_version - version.create_app_store_version_release_request unless version.nil? - end - deliver( api_key_path: "./ios/ios-fastlane-json-key.json", diff --git a/ios/NewExpensify.xcodeproj/project.pbxproj b/ios/NewExpensify.xcodeproj/project.pbxproj index f34f8959aab0..675569aa7d27 100644 --- a/ios/NewExpensify.xcodeproj/project.pbxproj +++ b/ios/NewExpensify.xcodeproj/project.pbxproj @@ -652,7 +652,6 @@ CURRENT_PROJECT_VERSION = 3; DEVELOPMENT_TEAM = 368M544MTT; ENABLE_BITCODE = NO; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; INFOPLIST_FILE = "$(SRCROOT)/NewExpensify/Info.plist"; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; @@ -683,7 +682,6 @@ CODE_SIGN_STYLE = Manual; CURRENT_PROJECT_VERSION = 3; DEVELOPMENT_TEAM = 368M544MTT; - "EXCLUDED_ARCHS[sdk=iphonesimulator*]" = arm64; INFOPLIST_FILE = NewExpensify/Info.plist; IPHONEOS_DEPLOYMENT_TARGET = 13.0; LD_RUNPATH_SEARCH_PATHS = "$(inherited) @executable_path/Frameworks"; diff --git a/ios/NewExpensify/Info.plist b/ios/NewExpensify/Info.plist index 5b35f4e8ccb5..216884d7a504 100644 --- a/ios/NewExpensify/Info.plist +++ b/ios/NewExpensify/Info.plist @@ -19,7 +19,7 @@ CFBundlePackageType APPL CFBundleShortVersionString - 1.3.34 + 1.3.42 CFBundleSignature ???? CFBundleURLTypes @@ -32,7 +32,7 @@ CFBundleVersion - 1.3.34.1 + 1.3.42.14 ITSAppUsesNonExemptEncryption LSApplicationQueriesSchemes diff --git a/ios/NewExpensifyTests/Info.plist b/ios/NewExpensifyTests/Info.plist index cacfe253e827..d7fa7de1ddbb 100644 --- a/ios/NewExpensifyTests/Info.plist +++ b/ios/NewExpensifyTests/Info.plist @@ -15,10 +15,10 @@ CFBundlePackageType BNDL CFBundleShortVersionString - 1.3.34 + 1.3.42 CFBundleSignature ???? CFBundleVersion - 1.3.34.1 + 1.3.42.14 diff --git a/ios/Podfile b/ios/Podfile index 6eb84320a77c..3af9366d3ef5 100644 --- a/ios/Podfile +++ b/ios/Podfile @@ -82,10 +82,6 @@ target 'NewExpensify' do __apply_Xcode_12_5_M1_post_install_workaround(installer) __apply_Xcode_14_3_RC_post_install_workaround(installer) - installer.pods_project.build_configurations.each do |config| - config.build_settings["EXCLUDED_ARCHS[sdk=iphonesimulator*]"] = "arm64" - end - installer.pods_project.targets.each do |target| if target.respond_to?(:product_type) and target.product_type == "com.apple.product-type.bundle" target.build_configurations.each do |config| diff --git a/ios/Podfile.lock b/ios/Podfile.lock index 048eeca5f76f..9765bc89e635 100644 --- a/ios/Podfile.lock +++ b/ios/Podfile.lock @@ -1024,7 +1024,7 @@ EXTERNAL SOURCES: SPEC CHECKSUMS: Airship: c70eed50e429f97f5adb285423c7291fb7a032ae AirshipFrameworkProxy: 7bc4130c668c6c98e2d4c60fe4c9eb61a999be99 - boost: a7c83b31436843459a1961bfd74b96033dc77234 + boost: 57d2868c099736d80fcd648bf211b4431e51a558 CocoaAsyncSocket: 065fd1e645c7abab64f7a6a2007a48038fdc6a99 DoubleConversion: 5189b271737e1565bdce30deb4a08d647e3f5f54 FBLazyVector: ff54429f0110d3c722630a98096ba689c39f6d5f @@ -1067,7 +1067,7 @@ SPEC CHECKSUMS: Permission-LocationWhenInUse: 3ba99e45c852763f730eabecec2870c2382b7bd4 Plaid: 7d340abeadb46c7aa1a91f896c5b22395a31fcf2 PromisesObjC: 09985d6d70fbe7878040aa746d78236e6946d2ef - RCT-Folly: 0080d0a6ebf2577475bda044aa59e2ca1f909cda + RCT-Folly: 424b8c9a7a0b9ab2886ffe9c3b041ef628fd4fb1 RCTRequired: e9e7b8b45aa9bedb2fdad71740adf07a7265b9be RCTTypeSafety: 9ae0e9206625e995f0df4d5b9ddc94411929fb30 React: a71c8e1380f07e01de721ccd52bcf9c03e81867d @@ -1139,6 +1139,6 @@ SPEC CHECKSUMS: Yoga: f87bd008d34c18bf990d4371200802f2866ce18c YogaKit: f782866e155069a2cca2517aafea43200b01fd5a -PODFILE CHECKSUM: 4ed1c7b099741c82e2b0411b95f6468e72be6c76 +PODFILE CHECKSUM: 69f576e475be6d130ee96103b131f71bfdbf8a6e -COCOAPODS: 1.12.0 +COCOAPODS: 1.11.3 diff --git a/package-lock.json b/package-lock.json index 413bb9772bfc..61b94c3b6ae5 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,12 +1,12 @@ { "name": "new.expensify", - "version": "1.3.34-1", + "version": "1.3.42-14", "lockfileVersion": 2, "requires": true, "packages": { "": { "name": "new.expensify", - "version": "1.3.34-1", + "version": "1.3.42-14", "hasInstallScript": true, "license": "MIT", "dependencies": { @@ -40,7 +40,7 @@ "babel-polyfill": "^6.26.0", "dom-serializer": "^0.2.2", "domhandler": "^4.3.0", - "expensify-common": "git+ssh://git@github.com/Expensify/expensify-common.git#f9985d572c772757885ff59ea5c82b1050c6b3f7", + "expensify-common": "git+ssh://git@github.com/Expensify/expensify-common.git#d7e424913550349acc779d029319af5b074c7c9e", "fbjs": "^3.0.2", "htmlparser2": "^7.2.0", "jest-when": "^3.5.2", @@ -69,7 +69,7 @@ "react-native-fast-image": "^8.6.3", "react-native-fs": "^2.20.0", "react-native-gesture-handler": "2.9.0", - "react-native-google-places-autocomplete": "git+https://github.com/Expensify/react-native-google-places-autocomplete.git#6f436a06a3018cb49750bb110b89df75f6a865d5", + "react-native-google-places-autocomplete": "git+https://github.com/Expensify/react-native-google-places-autocomplete.git#ee87343c3e827ff7818abc71b6bb04fcc1f120e0", "react-native-haptic-feedback": "^1.13.0", "react-native-image-pan-zoom": "^2.1.12", "react-native-image-picker": "^5.1.0", @@ -77,7 +77,7 @@ "react-native-key-command": "^1.0.1", "react-native-localize": "^2.2.6", "react-native-modal": "^13.0.0", - "react-native-onyx": "1.0.43", + "react-native-onyx": "1.0.52", "react-native-pdf": "^6.6.2", "react-native-performance": "^4.0.0", "react-native-permissions": "^3.0.1", @@ -144,7 +144,7 @@ "css-loader": "^6.7.2", "diff-so-fancy": "^1.3.0", "dotenv": "^16.0.3", - "electron": "22.3.7", + "electron": "^25.2.0", "electron-builder": "24.5.0", "eslint": "^7.6.0", "eslint-config-expensify": "^2.0.38", @@ -152,6 +152,7 @@ "eslint-plugin-jest": "^24.1.0", "eslint-plugin-jsx-a11y": "^6.6.1", "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-native-a11y": "^3.3.0", "eslint-plugin-storybook": "^0.5.13", "flipper-plugin-bridgespy-client": "^0.1.9", "html-webpack-plugin": "^5.5.0", @@ -15891,8 +15892,9 @@ "dev": true }, "node_modules/@types/node": { - "version": "18.7.6", - "license": "MIT" + "version": "18.16.18", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.18.tgz", + "integrity": "sha512-/aNaQZD0+iSBAGnvvN2Cx92HqE5sZCPZtx2TsK+4nvV23fFe09jVDvpArXr2j9DnYlzuU9WuoykDDc6wqvpNcw==" }, "node_modules/@types/node-fetch": { "version": "2.6.2", @@ -22139,14 +22141,14 @@ } }, "node_modules/electron": { - "version": "22.3.7", - "resolved": "https://registry.npmjs.org/electron/-/electron-22.3.7.tgz", - "integrity": "sha512-QUuRCl0QJk0w2yPAQXl6sk4YV1b9353w4e1eO/fF2OUmrGQV9Fy2pEpEDV1PIq/JJ/oeVVlI3H07LHpEcNb0TA==", + "version": "25.2.0", + "resolved": "https://registry.npmjs.org/electron/-/electron-25.2.0.tgz", + "integrity": "sha512-I/rhcW2sV2fyiveVSBr2N7v5ZiCtdGY0UiNCDZgk2fpSC+irQjbeh7JT2b4vWmJ2ogOXBjqesrN9XszTIG6DHg==", "dev": true, "hasInstallScript": true, "dependencies": { "@electron/get": "^2.0.0", - "@types/node": "^16.11.26", + "@types/node": "^18.11.18", "extract-zip": "^2.0.1" }, "bin": { @@ -22412,11 +22414,6 @@ "version": "1.4.284", "license": "ISC" }, - "node_modules/electron/node_modules/@types/node": { - "version": "16.11.60", - "dev": true, - "license": "MIT" - }, "node_modules/element-resize-detector": { "version": "1.2.4", "dev": true, @@ -23669,6 +23666,23 @@ "eslint": "^3.17.0 || ^4 || ^5 || ^6 || ^7" } }, + "node_modules/eslint-plugin-react-native-a11y": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-native-a11y/-/eslint-plugin-react-native-a11y-3.3.0.tgz", + "integrity": "sha512-21bIs/0yROcMq7KtAG+OVNDWAh8M+6scII0iXcO3i9NYHe2xZ443yPs5KSUMSvQJeRLLjuKB7V5saqNjoMWDHA==", + "dev": true, + "dependencies": { + "@babel/runtime": "^7.15.4", + "ast-types-flow": "^0.0.7", + "jsx-ast-utils": "^3.2.1" + }, + "engines": { + "node": ">=12.0" + }, + "peerDependencies": { + "eslint": "^3 || ^4 || ^5 || ^6 || ^7 || ^8" + } + }, "node_modules/eslint-plugin-react-native-globals": { "version": "0.1.2", "dev": true, @@ -24366,8 +24380,8 @@ }, "node_modules/expensify-common": { "version": "1.0.0", - "resolved": "git+ssh://git@github.com/Expensify/expensify-common.git#f9985d572c772757885ff59ea5c82b1050c6b3f7", - "integrity": "sha512-J9hj5LErLxQ2NxiMH/lIIumzk9y6rto5il5FK+kAsJ4pV7VZw1aMcHyiU7yrVRSWdZyCOjIXqGy/cVFb+pCm8g==", + "resolved": "git+ssh://git@github.com/Expensify/expensify-common.git#d7e424913550349acc779d029319af5b074c7c9e", + "integrity": "sha512-+hYNd/EWcMWL5JLzO2fRxjQz1KxOaFst8qznH5Gz7mpiJJiXdTxAw5pPkjz7qU4x0a52vpmDqyA3771KvxUvyw==", "license": "MIT", "dependencies": { "classnames": "2.3.1", @@ -36665,8 +36679,8 @@ }, "node_modules/react-native-google-places-autocomplete": { "version": "2.5.1", - "resolved": "git+ssh://git@github.com/Expensify/react-native-google-places-autocomplete.git#6f436a06a3018cb49750bb110b89df75f6a865d5", - "integrity": "sha512-7NiBK83VggJ2HQaHGfJoaPyxtiLu1chwP1VqH9te+PZtf0L9p50IuBQciW+4s173cBamt4U2+mvnCt7zfMFeDg==", + "resolved": "git+ssh://git@github.com/Expensify/react-native-google-places-autocomplete.git#ee87343c3e827ff7818abc71b6bb04fcc1f120e0", + "integrity": "sha512-OJWCz4Epj1p8tyNImWNykAqpd/X1MkNCFPY0dSbgiTJGbW4J5T4bC0PIUQ+ExjxWpWjcFaielTLdoSz0HfeIpw==", "license": "MIT", "dependencies": { "lodash.debounce": "^4.0.8", @@ -36769,9 +36783,9 @@ } }, "node_modules/react-native-onyx": { - "version": "1.0.43", - "resolved": "https://registry.npmjs.org/react-native-onyx/-/react-native-onyx-1.0.43.tgz", - "integrity": "sha512-NwS1SxZJWhk/7FUAAE9HrnupQR1yrSAheuhggdeA3+oFLn9X6UJM7n7w9DodFqCQbUIUy9biKtYk29sChfk9hQ==", + "version": "1.0.52", + "resolved": "https://registry.npmjs.org/react-native-onyx/-/react-native-onyx-1.0.52.tgz", + "integrity": "sha512-lfIg+tSd+HZF00pr2oFoLY3iTdGYGC6Dd44/YktTsVKB/yIcUq61wBMOitX54Z54ac2/eHKFPicEr2xvBhE2VQ==", "dependencies": { "ascii-table": "0.0.9", "fast-equals": "^4.0.3", @@ -36783,7 +36797,6 @@ "npm": "8.11.0" }, "peerDependencies": { - "expensify-common": ">=1", "localforage": "^1.10.0", "localforage-removeitems": "^1.4.0", "react": ">=18.1.0", @@ -54366,7 +54379,9 @@ "dev": true }, "@types/node": { - "version": "18.7.6" + "version": "18.16.18", + "resolved": "https://registry.npmjs.org/@types/node/-/node-18.16.18.tgz", + "integrity": "sha512-/aNaQZD0+iSBAGnvvN2Cx92HqE5sZCPZtx2TsK+4nvV23fFe09jVDvpArXr2j9DnYlzuU9WuoykDDc6wqvpNcw==" }, "@types/node-fetch": { "version": "2.6.2", @@ -58668,20 +58683,14 @@ } }, "electron": { - "version": "22.3.7", - "resolved": "https://registry.npmjs.org/electron/-/electron-22.3.7.tgz", - "integrity": "sha512-QUuRCl0QJk0w2yPAQXl6sk4YV1b9353w4e1eO/fF2OUmrGQV9Fy2pEpEDV1PIq/JJ/oeVVlI3H07LHpEcNb0TA==", + "version": "25.2.0", + "resolved": "https://registry.npmjs.org/electron/-/electron-25.2.0.tgz", + "integrity": "sha512-I/rhcW2sV2fyiveVSBr2N7v5ZiCtdGY0UiNCDZgk2fpSC+irQjbeh7JT2b4vWmJ2ogOXBjqesrN9XszTIG6DHg==", "dev": true, "requires": { "@electron/get": "^2.0.0", - "@types/node": "^16.11.26", + "@types/node": "^18.11.18", "extract-zip": "^2.0.1" - }, - "dependencies": { - "@types/node": { - "version": "16.11.60", - "dev": true - } } }, "electron-builder": { @@ -59825,6 +59834,17 @@ "eslint-plugin-react-native-globals": "^0.1.1" } }, + "eslint-plugin-react-native-a11y": { + "version": "3.3.0", + "resolved": "https://registry.npmjs.org/eslint-plugin-react-native-a11y/-/eslint-plugin-react-native-a11y-3.3.0.tgz", + "integrity": "sha512-21bIs/0yROcMq7KtAG+OVNDWAh8M+6scII0iXcO3i9NYHe2xZ443yPs5KSUMSvQJeRLLjuKB7V5saqNjoMWDHA==", + "dev": true, + "requires": { + "@babel/runtime": "^7.15.4", + "ast-types-flow": "^0.0.7", + "jsx-ast-utils": "^3.2.1" + } + }, "eslint-plugin-react-native-globals": { "version": "0.1.2", "dev": true @@ -60148,9 +60168,9 @@ } }, "expensify-common": { - "version": "git+ssh://git@github.com/Expensify/expensify-common.git#f9985d572c772757885ff59ea5c82b1050c6b3f7", - "integrity": "sha512-J9hj5LErLxQ2NxiMH/lIIumzk9y6rto5il5FK+kAsJ4pV7VZw1aMcHyiU7yrVRSWdZyCOjIXqGy/cVFb+pCm8g==", - "from": "expensify-common@git+ssh://git@github.com/Expensify/expensify-common.git#f9985d572c772757885ff59ea5c82b1050c6b3f7", + "version": "git+ssh://git@github.com/Expensify/expensify-common.git#d7e424913550349acc779d029319af5b074c7c9e", + "integrity": "sha512-+hYNd/EWcMWL5JLzO2fRxjQz1KxOaFst8qznH5Gz7mpiJJiXdTxAw5pPkjz7qU4x0a52vpmDqyA3771KvxUvyw==", + "from": "expensify-common@git+ssh://git@github.com/Expensify/expensify-common.git#d7e424913550349acc779d029319af5b074c7c9e", "requires": { "classnames": "2.3.1", "clipboard": "2.0.4", @@ -68460,9 +68480,9 @@ } }, "react-native-google-places-autocomplete": { - "version": "git+ssh://git@github.com/Expensify/react-native-google-places-autocomplete.git#6f436a06a3018cb49750bb110b89df75f6a865d5", - "integrity": "sha512-7NiBK83VggJ2HQaHGfJoaPyxtiLu1chwP1VqH9te+PZtf0L9p50IuBQciW+4s173cBamt4U2+mvnCt7zfMFeDg==", - "from": "react-native-google-places-autocomplete@git+https://github.com/Expensify/react-native-google-places-autocomplete.git#6f436a06a3018cb49750bb110b89df75f6a865d5", + "version": "git+ssh://git@github.com/Expensify/react-native-google-places-autocomplete.git#ee87343c3e827ff7818abc71b6bb04fcc1f120e0", + "integrity": "sha512-OJWCz4Epj1p8tyNImWNykAqpd/X1MkNCFPY0dSbgiTJGbW4J5T4bC0PIUQ+ExjxWpWjcFaielTLdoSz0HfeIpw==", + "from": "react-native-google-places-autocomplete@git+https://github.com/Expensify/react-native-google-places-autocomplete.git#ee87343c3e827ff7818abc71b6bb04fcc1f120e0", "requires": { "lodash.debounce": "^4.0.8", "prop-types": "^15.7.2", @@ -68521,9 +68541,9 @@ } }, "react-native-onyx": { - "version": "1.0.43", - "resolved": "https://registry.npmjs.org/react-native-onyx/-/react-native-onyx-1.0.43.tgz", - "integrity": "sha512-NwS1SxZJWhk/7FUAAE9HrnupQR1yrSAheuhggdeA3+oFLn9X6UJM7n7w9DodFqCQbUIUy9biKtYk29sChfk9hQ==", + "version": "1.0.52", + "resolved": "https://registry.npmjs.org/react-native-onyx/-/react-native-onyx-1.0.52.tgz", + "integrity": "sha512-lfIg+tSd+HZF00pr2oFoLY3iTdGYGC6Dd44/YktTsVKB/yIcUq61wBMOitX54Z54ac2/eHKFPicEr2xvBhE2VQ==", "requires": { "ascii-table": "0.0.9", "fast-equals": "^4.0.3", diff --git a/package.json b/package.json index 24fe6e5e692b..4691967c4f4a 100644 --- a/package.json +++ b/package.json @@ -1,6 +1,6 @@ { "name": "new.expensify", - "version": "1.3.34-1", + "version": "1.3.42-14", "author": "Expensify, Inc.", "homepage": "https://new.expensify.com", "description": "New Expensify is the next generation of Expensify: a reimagination of payments based atop a foundation of chat.", @@ -11,6 +11,7 @@ "clean": "npx react-native clean-project-auto", "android": "scripts/set-pusher-suffix.sh && npx react-native run-android --port=8083", "ios": "scripts/set-pusher-suffix.sh && npx react-native run-ios --port=8082", + "pod-install": "cd ios && bundle exec pod install", "ipad": "concurrently \"npx react-native run-ios --port=8082 --simulator=\"iPad Pro (12.9-inch) (4th generation)\"\"", "ipad-sm": "concurrently \"npx react-native run-ios --port=8082 --simulator=\"iPad Pro (9.7-inch)\"\"", "start": "npx react-native start", @@ -37,7 +38,8 @@ "prettier-watch": "onchange \"**/*.js\" -- prettier --write --ignore-unknown {{changed}}", "print-version": "echo $npm_package_version", "storybook": "start-storybook -p 6006", - "storybook-build": "build-storybook -o dist/docs", + "storybook-build": "ENV=production build-storybook -o dist/docs", + "storybook-build-staging": "ENV=staging build-storybook -o dist/docs", "gh-actions-build": "./.github/scripts/buildActions.sh", "gh-actions-validate": "./.github/scripts/validateActionsAndWorkflows.sh", "analyze-packages": "ANALYZE_BUNDLE=true webpack --config config/webpack/webpack.common.js --env envFile=.env.production", @@ -76,7 +78,7 @@ "babel-polyfill": "^6.26.0", "dom-serializer": "^0.2.2", "domhandler": "^4.3.0", - "expensify-common": "git+ssh://git@github.com/Expensify/expensify-common.git#f9985d572c772757885ff59ea5c82b1050c6b3f7", + "expensify-common": "git+ssh://git@github.com/Expensify/expensify-common.git#d7e424913550349acc779d029319af5b074c7c9e", "fbjs": "^3.0.2", "htmlparser2": "^7.2.0", "jest-when": "^3.5.2", @@ -105,7 +107,7 @@ "react-native-fast-image": "^8.6.3", "react-native-fs": "^2.20.0", "react-native-gesture-handler": "2.9.0", - "react-native-google-places-autocomplete": "git+https://github.com/Expensify/react-native-google-places-autocomplete.git#6f436a06a3018cb49750bb110b89df75f6a865d5", + "react-native-google-places-autocomplete": "git+https://github.com/Expensify/react-native-google-places-autocomplete.git#ee87343c3e827ff7818abc71b6bb04fcc1f120e0", "react-native-haptic-feedback": "^1.13.0", "react-native-image-pan-zoom": "^2.1.12", "react-native-image-picker": "^5.1.0", @@ -113,7 +115,7 @@ "react-native-key-command": "^1.0.1", "react-native-localize": "^2.2.6", "react-native-modal": "^13.0.0", - "react-native-onyx": "1.0.43", + "react-native-onyx": "1.0.52", "react-native-pdf": "^6.6.2", "react-native-performance": "^4.0.0", "react-native-permissions": "^3.0.1", @@ -180,7 +182,7 @@ "css-loader": "^6.7.2", "diff-so-fancy": "^1.3.0", "dotenv": "^16.0.3", - "electron": "22.3.7", + "electron": "^25.2.0", "electron-builder": "24.5.0", "eslint": "^7.6.0", "eslint-config-expensify": "^2.0.38", @@ -188,6 +190,7 @@ "eslint-plugin-jest": "^24.1.0", "eslint-plugin-jsx-a11y": "^6.6.1", "eslint-plugin-react-hooks": "^4.6.0", + "eslint-plugin-react-native-a11y": "^3.3.0", "eslint-plugin-storybook": "^0.5.13", "flipper-plugin-bridgespy-client": "^0.1.9", "html-webpack-plugin": "^5.5.0", diff --git a/patches/react-native+0.71.2-alpha.3.patch b/patches/react-native+0.71.2-alpha.3.patch index 92076b1be28c..822ca9daec9c 100644 --- a/patches/react-native+0.71.2-alpha.3.patch +++ b/patches/react-native+0.71.2-alpha.3.patch @@ -1,5 +1,5 @@ diff --git a/node_modules/react-native/Libraries/Components/Keyboard/KeyboardAvoidingView.js b/node_modules/react-native/Libraries/Components/Keyboard/KeyboardAvoidingView.js -index 2f48f9e..6418c76 100644 +index 2f48f9e..ac7a416 100644 --- a/node_modules/react-native/Libraries/Components/Keyboard/KeyboardAvoidingView.js +++ b/node_modules/react-native/Libraries/Components/Keyboard/KeyboardAvoidingView.js @@ -65,6 +65,7 @@ class KeyboardAvoidingView extends React.Component { @@ -33,13 +33,13 @@ index 2f48f9e..6418c76 100644 await this._updateBottomIfNecessary(); } -@@ -127,20 +130,31 @@ class KeyboardAvoidingView extends React.Component { +@@ -127,20 +130,32 @@ class KeyboardAvoidingView extends React.Component { } }; + // Avoid unnecessary renders if the KeyboardAvoidingView is disabled. + _setBottom = (value: number) => { -+ const {enabled = true} = this.props; ++ const enabled = this.props.enabled ?? true; + this._bottom = value; + if (enabled) { + this.setState({bottom: value}); @@ -64,11 +64,12 @@ index 2f48f9e..6418c76 100644 - if (duration && easing) { + this._setBottom(height); + ++ const enabled = this.props.enabled ?? true; + if (enabled && duration && easing) { LayoutAnimation.configureNext({ // We have to pass the duration equal to minimal accepted duration defined here: RCTLayoutAnimation.m duration: duration > 10 ? duration : 10, -@@ -150,9 +164,15 @@ class KeyboardAvoidingView extends React.Component { +@@ -150,9 +165,15 @@ class KeyboardAvoidingView extends React.Component { }, }); } @@ -76,7 +77,7 @@ index 2f48f9e..6418c76 100644 }; + componentDidUpdate(_: Props, prevState: State): void { -+ const {enabled = true} = this.props; ++ const enabled = this.props.enabled ?? true; + if (enabled && this._bottom !== prevState.bottom) { + this.setState({bottom: this._bottom}); + } diff --git a/patches/react-native-web-lottie+1.4.4.patch b/patches/react-native-web-lottie+1.4.4.patch new file mode 100644 index 000000000000..04ac7ceb5959 --- /dev/null +++ b/patches/react-native-web-lottie+1.4.4.patch @@ -0,0 +1,21 @@ +diff --git a/node_modules/react-native-web-lottie/dist/index.js b/node_modules/react-native-web-lottie/dist/index.js +index 7cd6b42..d0a405b 100644 +--- a/node_modules/react-native-web-lottie/dist/index.js ++++ b/node_modules/react-native-web-lottie/dist/index.js +@@ -1 +1 @@ +-var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");var _interopRequireWildcard=require("@babel/runtime/helpers/interopRequireWildcard");Object.defineProperty(exports,"__esModule",{value:true});exports.default=void 0;var _extends2=_interopRequireDefault(require("@babel/runtime/helpers/extends"));var _classCallCheck2=_interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));var _createClass2=_interopRequireDefault(require("@babel/runtime/helpers/createClass"));var _possibleConstructorReturn2=_interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));var _getPrototypeOf3=_interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));var _inherits2=_interopRequireDefault(require("@babel/runtime/helpers/inherits"));var _react=_interopRequireWildcard(require("react"));var _reactDom=_interopRequireDefault(require("react-dom"));var _View=_interopRequireDefault(require("react-native-web/dist/exports/View"));var _lottieWeb=_interopRequireDefault(require("lottie-web"));var _jsxFileName="/Users/louislagrange/Documents/Projets/react-native-web-community/react-native-web-lottie/src/index.js";var Animation=function(_PureComponent){(0,_inherits2.default)(Animation,_PureComponent);function Animation(){var _getPrototypeOf2;var _this;(0,_classCallCheck2.default)(this,Animation);for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++){args[_key]=arguments[_key];}_this=(0,_possibleConstructorReturn2.default)(this,(_getPrototypeOf2=(0,_getPrototypeOf3.default)(Animation)).call.apply(_getPrototypeOf2,[this].concat(args)));_this.animationDOMNode=null;_this.loadAnimation=function(props){if(_this.anim){_this.anim.destroy();}_this.anim=_lottieWeb.default.loadAnimation({container:_this.animationDOMNode,animationData:props.source,renderer:'svg',loop:props.loop||false,autoplay:props.autoPlay,rendererSettings:props.rendererSettings||{}});if(props.onAnimationFinish){_this.anim.addEventListener('complete',props.onAnimationFinish);}};_this.setAnimationDOMNode=function(ref){return _this.animationDOMNode=_reactDom.default.findDOMNode(ref);};_this.play=function(){if(!_this.anim){return;}for(var _len2=arguments.length,frames=new Array(_len2),_key2=0;_key2<_len2;_key2++){frames[_key2]=arguments[_key2];}_this.anim.playSegments(frames,true);};_this.reset=function(){if(!_this.anim){return;}_this.anim.stop();};return _this;}(0,_createClass2.default)(Animation,[{key:"componentDidMount",value:function componentDidMount(){var _this2=this;this.loadAnimation(this.props);if(typeof this.props.progress==='object'&&this.props.progress._listeners){this.props.progress.addListener(function(progress){var value=progress.value;var frame=value/(1/_this2.anim.getDuration(true));_this2.anim.goToAndStop(frame,true);});}}},{key:"componentWillUnmount",value:function componentWillUnmount(){if(typeof this.props.progress==='object'&&this.props.progress._listeners){this.props.progress.removeAllListeners();}}},{key:"UNSAFE_componentWillReceiveProps",value:function UNSAFE_componentWillReceiveProps(nextProps){if(this.props.source&&nextProps.source&&this.props.source.nm!==nextProps.source.nm){this.loadAnimation(nextProps);}}},{key:"render",value:function render(){return _react.default.createElement(_View.default,{style:this.props.style,ref:this.setAnimationDOMNode,__source:{fileName:_jsxFileName,lineNumber:71}});}}]);return Animation;}(_react.PureComponent);var _default=_react.default.forwardRef(function(props,ref){return _react.default.createElement(Animation,(0,_extends2.default)({},props,{ref:typeof ref=='function'?function(c){return ref(c&&c.anim);}:ref,__source:{fileName:_jsxFileName,lineNumber:76}}));});exports.default=_default; +\ No newline at end of file ++var _interopRequireDefault=require("@babel/runtime/helpers/interopRequireDefault");var _interopRequireWildcard=require("@babel/runtime/helpers/interopRequireWildcard");Object.defineProperty(exports,"__esModule",{value:true});exports.default=void 0;var _extends2=_interopRequireDefault(require("@babel/runtime/helpers/extends"));var _classCallCheck2=_interopRequireDefault(require("@babel/runtime/helpers/classCallCheck"));var _createClass2=_interopRequireDefault(require("@babel/runtime/helpers/createClass"));var _possibleConstructorReturn2=_interopRequireDefault(require("@babel/runtime/helpers/possibleConstructorReturn"));var _getPrototypeOf3=_interopRequireDefault(require("@babel/runtime/helpers/getPrototypeOf"));var _inherits2=_interopRequireDefault(require("@babel/runtime/helpers/inherits"));var _react=_interopRequireWildcard(require("react"));var _reactDom=_interopRequireDefault(require("react-dom"));var _View=_interopRequireDefault(require("react-native-web/dist/exports/View"));var _lottieWeb=_interopRequireDefault(require("lottie-web"));var _jsxFileName="/Users/louislagrange/Documents/Projets/react-native-web-community/react-native-web-lottie/src/index.js";var Animation=function(_PureComponent){(0,_inherits2.default)(Animation,_PureComponent);function Animation(){var _getPrototypeOf2;var _this;(0,_classCallCheck2.default)(this,Animation);for(var _len=arguments.length,args=new Array(_len),_key=0;_key<_len;_key++){args[_key]=arguments[_key];}_this=(0,_possibleConstructorReturn2.default)(this,(_getPrototypeOf2=(0,_getPrototypeOf3.default)(Animation)).call.apply(_getPrototypeOf2,[this].concat(args)));_this.animationDOMNode=null;_this.loadAnimation=function(props){if(_this.anim){_this.anim.destroy();}_this.anim=_lottieWeb.default.loadAnimation({container:_this.animationDOMNode,animationData:props.source,renderer:'canvas',loop:props.loop||false,autoplay:props.autoPlay,rendererSettings:props.rendererSettings||{}});if(props.onAnimationFinish){_this.anim.addEventListener('complete',props.onAnimationFinish);}};_this.setAnimationDOMNode=function(ref){return _this.animationDOMNode=_reactDom.default.findDOMNode(ref);};_this.play=function(){if(!_this.anim){return;}for(var _len2=arguments.length,frames=new Array(_len2),_key2=0;_key2<_len2;_key2++){frames[_key2]=arguments[_key2];}_this.anim.playSegments(frames,true);};_this.reset=function(){if(!_this.anim){return;}_this.anim.stop();};return _this;}(0,_createClass2.default)(Animation,[{key:"componentDidMount",value:function componentDidMount(){var _this2=this;this.loadAnimation(this.props);if(typeof this.props.progress==='object'&&this.props.progress._listeners){this.props.progress.addListener(function(progress){var value=progress.value;var frame=value/(1/_this2.anim.getDuration(true));_this2.anim.goToAndStop(frame,true);});}}},{key:"componentWillUnmount",value:function componentWillUnmount(){if(typeof this.props.progress==='object'&&this.props.progress._listeners){this.props.progress.removeAllListeners();}}},{key:"UNSAFE_componentWillReceiveProps",value:function UNSAFE_componentWillReceiveProps(nextProps){if(this.props.source&&nextProps.source&&this.props.source.nm!==nextProps.source.nm){this.loadAnimation(nextProps);}}},{key:"render",value:function render(){return _react.default.createElement(_View.default,{style:this.props.style,ref:this.setAnimationDOMNode,__source:{fileName:_jsxFileName,lineNumber:71}});}}]);return Animation;}(_react.PureComponent);var _default=_react.default.forwardRef(function(props,ref){return _react.default.createElement(Animation,(0,_extends2.default)({},props,{ref:typeof ref=='function'?function(c){return ref(c&&c.anim);}:ref,__source:{fileName:_jsxFileName,lineNumber:76}}));});exports.default=_default; +diff --git a/node_modules/react-native-web-lottie/src/index.js b/node_modules/react-native-web-lottie/src/index.js +index da0e363..f37104a 100644 +--- a/node_modules/react-native-web-lottie/src/index.js ++++ b/node_modules/react-native-web-lottie/src/index.js +@@ -38,7 +38,7 @@ class Animation extends PureComponent { + this.anim = lottie.loadAnimation({ + container: this.animationDOMNode, + animationData: props.source, +- renderer: 'svg', ++ renderer: 'canvas', + loop: props.loop || false, + autoplay: props.autoPlay, + rendererSettings: props.rendererSettings || {}, diff --git a/scripts/shellUtils.sh b/scripts/shellUtils.sh index 250b7c586661..876933af9766 100644 --- a/scripts/shellUtils.sh +++ b/scripts/shellUtils.sh @@ -1,10 +1,10 @@ #!/bin/bash -GREEN=$'\e[1;32m' -RED=$'\e[1;31m' -BLUE=$'\e[1;34m' -TITLE=$'\e[1;4;34m' -RESET=$'\e[0m' +declare -r GREEN=$'\e[1;32m' +declare -r RED=$'\e[1;31m' +declare -r BLUE=$'\e[1;34m' +declare -r TITLE=$'\e[1;4;34m' +declare -r RESET=$'\e[0m' function success { echo "🎉 $GREEN$1$RESET" diff --git a/src/App.js b/src/App.js index 987795c6fa22..4da2222c40ab 100644 --- a/src/App.js +++ b/src/App.js @@ -17,11 +17,16 @@ import SafeArea from './components/SafeArea'; import * as Environment from './libs/Environment/Environment'; import {WindowDimensionsProvider} from './components/withWindowDimensions'; import {KeyboardStateProvider} from './components/withKeyboardState'; +import ThemeProvider from './styles/themes/ThemeProvider'; +import ThemeStylesProvider from './styles/ThemeStylesProvider'; import {CurrentReportIDContextProvider} from './components/withCurrentReportID'; +import {EnvironmentProvider} from './components/withEnvironment'; +import * as Session from './libs/actions/Session'; // For easier debugging and development, when we are in web we expose Onyx to the window, so you can more easily set data into Onyx if (window && Environment.isDevelopment()) { window.Onyx = Onyx; + window.setSupportToken = Session.setSupportAuthToken; } LogBox.ignoreLogs([ @@ -48,6 +53,9 @@ function App() { KeyboardStateProvider, CurrentReportIDContextProvider, PickerStateProvider, + EnvironmentProvider, + ThemeProvider, + ThemeStylesProvider, ]} > diff --git a/src/CONST.js b/src/CONST.js index 9c704ef4acea..8d81e5d7b9c4 100755 --- a/src/CONST.js +++ b/src/CONST.js @@ -159,6 +159,9 @@ const CONST = { CONTAINER_MINHEIGHT: 500, VIEW_HEIGHT: 275, }, + MONEY_REPORT: { + MIN_HEIGHT: 280, + }, }, RIGHT_MODAL_BACKGROUND_OVERLAY_OPACITY: 0.4, @@ -256,7 +259,6 @@ const CONST = { BETAS: { ALL: 'all', CHRONOS_IN_CASH: 'chronosInCash', - IOU: 'IOU', PAY_WITH_EXPENSIFY: 'payWithExpensify', FREE_PLAN: 'freePlan', DEFAULT_ROOMS: 'defaultRooms', @@ -269,6 +271,7 @@ const CONST = { PASSWORDLESS: 'passwordless', TASKS: 'tasks', THREADS: 'threads', + SCAN_RECEIPTS: 'scanReceipts', }, BUTTON_STATES: { DEFAULT: 'default', @@ -652,6 +655,7 @@ const CONST = { }, }, TIMING: { + CALCULATE_MOST_RECENT_LAST_MODIFIED_ACTION: 'calc_most_recent_last_modified_action', SEARCH_RENDER: 'search_render', HOMEPAGE_INITIAL_RENDER: 'homepage_initial_render', REPORT_INITIAL_RENDER: 'report_initial_render', @@ -670,6 +674,12 @@ const CONST = { GSD: 'gsd', DEFAULT: 'default', }, + THEME: { + DEFAULT: 'dark', + LIGHT: 'light', + DARK: 'dark', + SYSTEM: 'system', + }, JSON_CODE: { SUCCESS: 200, BAD_REQUEST: 400, @@ -724,9 +734,6 @@ const CONST = { MAX_RETRY_WAIT_TIME_MS: 10 * 1000, PROCESS_REQUEST_DELAY_MS: 1000, MAX_PENDING_TIME_MS: 10 * 1000, - COMMAND: { - RECONNECT_APP: 'ReconnectApp', - }, }, DEFAULT_TIME_ZONE: {automatic: true, selected: 'America/Los_Angeles'}, DEFAULT_ACCOUNT_DATA: {errors: null, success: '', isLoading: false}, @@ -737,6 +744,7 @@ const CONST = { VALIDATE_TFA_CODE_FORM: 'ValidateTfaCodeForm', RESEND_VALIDATION_FORM: 'ResendValidationForm', UNLINK_LOGIN_FORM: 'UnlinkLoginForm', + RESEND_VALIDATE_CODE_FORM: 'ResendValidateCodeForm', }, APP_STATE: { ACTIVE: 'active', @@ -752,7 +760,7 @@ const CONST = { // The server has a WAF (Web Application Firewall) which will strip out HTML/XML tags using this regex pattern. // It's copied here so that the same regex pattern can be used in form validations to be consistent with the server. - VALIDATE_FOR_HTML_TAG_REGEX: /<(.|\n)*?>/g, + VALIDATE_FOR_HTML_TAG_REGEX: /<([^>\s]+)(?:[^>]*?)>/g, PASSWORD_PAGE: { ERROR: { @@ -1110,6 +1118,11 @@ const CONST = { LARGE_BORDERED: 'large-bordered', HEADER: 'header', MENTION_ICON: 'mention-icon', + SMALL_NORMAL: 'small-normal', + }, + AVATAR_ROW_SIZE: { + DEFAULT: 4, + LARGE_SCREEN: 8, }, OPTION_MODE: { COMPACT: 'compact', @@ -1118,12 +1131,11 @@ const CONST = { REGEX: { SPECIAL_CHARS_WITHOUT_NEWLINE: /((?!\n)[()-\s\t])/g, DIGITS_AND_PLUS: /^\+?[0-9]*$/, - ALPHABETIC_CHARS: /[a-zA-Z]+/, ALPHABETIC_CHARS_WITH_NUMBER: /^[a-zA-ZÀ-ÿ0-9 ]*$/, POSITIVE_INTEGER: /^\d+$/, PO_BOX: /\b[P|p]?(OST|ost)?\.?\s*[O|o|0]?(ffice|FFICE)?\.?\s*[B|b][O|o|0]?[X|x]?\.?\s+[#]?(\d+)\b/, ANY_VALUE: /^.+$/, - ZIP_CODE: /[0-9]{5}(?:[- ][0-9]{4})?/, + ZIP_CODE: /^[0-9]{5}(?:[- ][0-9]{4})?$/, INDUSTRY_CODE: /^[0-9]{6}$/, SSN_LAST_FOUR: /^(?!0000)[0-9]{4}$/, SSN_FULL_NINE: /^(?!0000)[0-9]{9}$/, @@ -1132,7 +1144,7 @@ const CONST = { CARD_SECURITY_CODE: /^[0-9]{3,4}$/, CARD_EXPIRATION_DATE: /^(0[1-9]|1[0-2])([^0-9])?([0-9]{4}|([0-9]{2}))$/, PAYPAL_ME_USERNAME: /^[a-zA-Z0-9]{1,20}$/, - ROOM_NAME: /^#[a-z0-9-]{1,80}$/, + ROOM_NAME: /^#[a-z0-9à-ÿ-]{1,80}$/, // eslint-disable-next-line max-len, no-misleading-character-class EMOJIS: /[\p{Extended_Pictographic}\u200d\u{1f1e6}-\u{1f1ff}\u{1f3fb}-\u{1f3ff}\u{e0020}-\u{e007f}\u20E3\uFE0F]|[#*0-9]\uFE0F?\u20E3/gu, @@ -2520,10 +2532,18 @@ const CONST = { MENUITEM: 'menuitem', TEXT: 'text', RADIO: 'radio', + IMAGEBUTTON: 'imagebutton', + CHECKBOX: 'checkbox', + SWITCH: 'switch', + ADJUSTABLE: 'adjustable', + IMAGE: 'image', }, SETTINGS_LOUNGE_ACCESS: { HEADER_IMAGE_ASPECT_RATIO: 0.64, }, + TRANSLATION_KEYS: { + ATTACHMENT: 'common.attachment', + }, }; export default CONST; diff --git a/src/Expensify.js b/src/Expensify.js index e7c830ff2029..c85c2862e96e 100644 --- a/src/Expensify.js +++ b/src/Expensify.js @@ -29,6 +29,8 @@ import PopoverReportActionContextMenu from './pages/home/report/ContextMenu/Popo import * as ReportActionContextMenu from './pages/home/report/ContextMenu/ReportActionContextMenu'; import SplashScreenHider from './components/SplashScreenHider'; import KeyboardShortcutsModal from './components/KeyboardShortcutsModal'; +import EmojiPicker from './components/EmojiPicker/EmojiPicker'; +import * as EmojiPickerAction from './libs/actions/EmojiPickerAction'; // This lib needs to be imported, but it has nothing to export since all it contains is an Onyx connection // eslint-disable-next-line no-unused-vars @@ -187,6 +189,7 @@ function Expensify(props) { + {/* We include the modal for showing a new update at the top level so the option is always present. */} {props.updateAvailable ? : null} {props.screenShareRequest ? ( diff --git a/src/ONYXKEYS.js b/src/ONYXKEYS.js index b04687967dfc..4ca270518fd1 100755 --- a/src/ONYXKEYS.js +++ b/src/ONYXKEYS.js @@ -122,6 +122,9 @@ export default { REPORT_USER_IS_TYPING: 'reportUserIsTyping_', SECURITY_GROUP: 'securityGroup_', TRANSACTION: 'transactions_', + + // This is deprecated, but needed for a migration, so we still need to include it here so that it will be initialized in Onyx.init + DEPRECATED_POLICY_MEMBER_LIST: 'policyMemberList_', }, // Indicates which locale should be used @@ -219,6 +222,10 @@ export default { // Whether the auth token is valid IS_TOKEN_VALID: 'isTokenValid', + // The theme setting set by the user in preferences. + // This can be either "light", "dark" or "system" + PREFERRED_THEME: 'preferredTheme', + // Whether we're checking if the room is public or not IS_CHECKING_PUBLIC_ROOM: 'isCheckingPublicRoom', @@ -227,4 +234,7 @@ export default { // Report ID of the last report the user viewed as anonymous user LAST_OPENED_PUBLIC_ROOM_ID: 'lastOpenedPublicRoomID', + + // Experimental memory only Onyx mode flag + IS_USING_MEMORY_ONLY_KEYS: 'isUsingMemoryOnlyKeys', }; diff --git a/src/ROUTES.js b/src/ROUTES.js index a5fd5b4188c3..b853c42248c6 100644 --- a/src/ROUTES.js +++ b/src/ROUTES.js @@ -31,6 +31,7 @@ export default { SETTINGS_PREFERENCES: 'settings/preferences', SETTINGS_PRIORITY_MODE: 'settings/preferences/priority-mode', SETTINGS_LANGUAGE: 'settings/preferences/language', + SETTINGS_THEME: 'settings/preferences/theme', SETTINGS_WORKSPACES: 'settings/workspaces', SETTINGS_SECURITY: 'settings/security', SETTINGS_CLOSE: 'settings/security/closeAccount', @@ -68,8 +69,8 @@ export default { getReportRoute: (reportID) => `r/${reportID}`, REPORT_WITH_ID_DETAILS_SHARE_CODE: 'r/:reportID/details/shareCode', getReportShareCodeRoute: (reportID) => `r/${reportID}/details/shareCode`, - SELECT_YEAR: 'select-year', - getYearSelectionRoute: (minYear, maxYear, currYear, backTo) => `select-year?min=${minYear}&max=${maxYear}&year=${currYear}&backTo=${backTo}`, + REPORT_ATTACHMENTS: 'r/:reportID/attachment', + getReportAttachmentRoute: (reportID, source) => `r/${reportID}/attachment?source=${encodeURI(source)}`, /** This is a utility route used to go to the user's concierge chat, or the sign-in page if the user's not authenticated */ CONCIERGE: 'concierge', @@ -118,8 +119,6 @@ export default { getProfileRoute: (accountID) => `a/${accountID}`, REPORT_PARTICIPANTS: 'r/:reportID/participants', getReportParticipantsRoute: (reportID) => `r/${reportID}/participants`, - REPORT_PARTICIPANT: 'r/:reportID/participants/a/:accountID', - getReportParticipantRoute: (reportID, accountID) => `r/${reportID}/participants/a/${accountID}`, REPORT_WITH_ID_DETAILS: 'r/:reportID/details', getReportDetailsRoute: (reportID) => `r/${reportID}/details`, REPORT_SETTINGS: 'r/:reportID/settings', @@ -173,11 +172,17 @@ export default { * @returns {Object} */ parseReportRouteParams: (route) => { - if (!route.startsWith(Url.addTrailingForwardSlash(REPORT))) { + let parsingRoute = route; + if (parsingRoute.at(0) === '/') { + // remove the first slash + parsingRoute = parsingRoute.slice(1); + } + + if (!parsingRoute.startsWith(Url.addTrailingForwardSlash(REPORT))) { return {reportID: '', isSubReportPageRoute: false}; } - const pathSegments = route.split('/'); + const pathSegments = parsingRoute.split('/'); return { reportID: lodashGet(pathSegments, 1), isSubReportPageRoute: Boolean(lodashGet(pathSegments, 2)), diff --git a/src/SCREENS.js b/src/SCREENS.js index 24ea27fe9689..0ae361cfb328 100644 --- a/src/SCREENS.js +++ b/src/SCREENS.js @@ -6,6 +6,10 @@ export default { HOME: 'Home', LOADING: 'Loading', REPORT: 'Report', + REPORT_ATTACHMENTS: 'ReportAttachments', NOT_FOUND: 'not-found', TRANSITION_FROM_OLD_DOT: 'TransitionFromOldDot', + SETTINGS: { + PREFERENCES: 'Settings_Preferences', + }, }; diff --git a/src/components/AddressSearch/index.js b/src/components/AddressSearch/index.js index 9699eb9aab94..795e45c6f892 100644 --- a/src/components/AddressSearch/index.js +++ b/src/components/AddressSearch/index.js @@ -120,7 +120,7 @@ function AddressSearch(props) { postal_code: zipCode, administrative_area_level_1: state, administrative_area_level_2: stateFallback, - country, + country: countryPrimary, } = GooglePlacesUtils.getAddressComponents(addressComponents, { street_number: 'long_name', route: 'long_name', @@ -142,7 +142,15 @@ function AddressSearch(props) { // Make sure that the order of keys remains such that the country is always set above the state. // Refer to https://github.com/Expensify/App/issues/15633 for more information. - const {state: stateAutoCompleteFallback = '', city: cityAutocompleteFallback = ''} = GooglePlacesUtils.getPlaceAutocompleteTerms(autocompleteData.terms); + const { + country: countryFallbackLongName = '', + state: stateAutoCompleteFallback = '', + city: cityAutocompleteFallback = '', + } = GooglePlacesUtils.getPlaceAutocompleteTerms(autocompleteData.terms); + + const countryFallback = _.findKey(CONST.ALL_COUNTRIES, (country) => country === countryFallbackLongName); + + const country = countryPrimary || countryFallback; const values = { street: `${streetNumber} ${streetName}`.trim(), diff --git a/src/components/AmountTextInput.js b/src/components/AmountTextInput.js index a48076006581..8472ef271be0 100644 --- a/src/components/AmountTextInput.js +++ b/src/components/AmountTextInput.js @@ -49,6 +49,7 @@ function AmountTextInput(props) { blurOnSubmit={false} selection={props.selection} onSelectionChange={props.onSelectionChange} + accessibilityRole={CONST.ACCESSIBILITY_ROLE.TEXT} /> ); } diff --git a/src/components/AnchorForAttachmentsOnly/BaseAnchorForAttachmentsOnly.js b/src/components/AnchorForAttachmentsOnly/BaseAnchorForAttachmentsOnly.js index f20f798768c2..8507713c887e 100644 --- a/src/components/AnchorForAttachmentsOnly/BaseAnchorForAttachmentsOnly.js +++ b/src/components/AnchorForAttachmentsOnly/BaseAnchorForAttachmentsOnly.js @@ -58,7 +58,7 @@ function BaseAnchorForAttachmentsOnly(props) { onPressOut={props.onPressOut} onLongPress={(event) => showContextMenuForReport(event, anchor, report.reportID, action, checkIfContextMenuActive, ReportUtils.isArchivedRoom(report))} accessibilityLabel={fileName} - accessibilityRole="button" + accessibilityRole={CONST.ACCESSIBILITY_ROLE.BUTTON} > (linkRef = el)} style={StyleSheet.flatten([props.style, defaultTextStyle])} - accessibilityRole="link" + accessibilityRole={CONST.ACCESSIBILITY_ROLE.LINK} hrefAttrs={{ rel: props.rel, target: isEmail ? '_self' : props.target, diff --git a/src/components/AnonymousReportFooter.js b/src/components/AnonymousReportFooter.js index 08a4a04e64dd..034d14eb508b 100644 --- a/src/components/AnonymousReportFooter.js +++ b/src/components/AnonymousReportFooter.js @@ -1,10 +1,9 @@ import React from 'react'; import {View, Text} from 'react-native'; +import PropTypes from 'prop-types'; import Button from './Button'; import AvatarWithDisplayName from './AvatarWithDisplayName'; import ExpensifyWordmark from './ExpensifyWordmark'; -import compose from '../libs/compose'; -import withWindowDimensions, {windowDimensionsPropTypes} from './withWindowDimensions'; import withLocalize, {withLocalizePropTypes} from './withLocalize'; import reportPropTypes from '../pages/reportPropTypes'; import CONST from '../CONST'; @@ -15,32 +14,34 @@ const propTypes = { /** The report currently being looked at */ report: reportPropTypes, - ...windowDimensionsPropTypes, + isSmallSizeLayout: PropTypes.bool, + ...withLocalizePropTypes, }; const defaultProps = { report: {}, + isSmallSizeLayout: false, }; function AnonymousReportFooter(props) { return ( - - + + - - - + + + - {props.translate('anonymousReportFooter.logoTagline')} + {props.translate('anonymousReportFooter.logoTagline')} - +