From bfbdd3f35ce95beea873ca3ed9e8de339158b3f2 Mon Sep 17 00:00:00 2001 From: dOrgJelli Date: Tue, 6 Apr 2021 12:15:33 -0500 Subject: [PATCH 1/9] init --- packages/templates/app/react/src/todo | 41 +++++++++++++++++++++++++++ 1 file changed, 41 insertions(+) create mode 100644 packages/templates/app/react/src/todo diff --git a/packages/templates/app/react/src/todo b/packages/templates/app/react/src/todo new file mode 100644 index 0000000000..03108a3bf3 --- /dev/null +++ b/packages/templates/app/react/src/todo @@ -0,0 +1,41 @@ +Single App.tsx +App() { + + +} + +HelloWorldWeb3ApiClient: + +) : -

SimpleStorage Contract: {contract}

- } - - - + + Want to build your own Web3API? Visit our documentation{" "} + here. + + + ); -} +}; export default App; diff --git a/packages/templates/app/react/src/Test.tsx b/packages/templates/app/react/src/Test.tsx deleted file mode 100644 index 55463ca0cc..0000000000 --- a/packages/templates/app/react/src/Test.tsx +++ /dev/null @@ -1,135 +0,0 @@ -import React, { useEffect } from "react"; -import logo from "./logo.svg"; -import "./App.css"; - -import { useWeb3ApiQuery, createWeb3ApiRoot } from "@web3api/react"; -import { Uri, UriRedirect } from "@web3api/client-js"; -import { EnsPlugin } from "@web3api/ens-plugin-js"; -import { EthereumPlugin } from "@web3api/ethereum-plugin-js"; -import { IpfsPlugin } from "@web3api/ipfs-plugin-js"; - -const SimpleStorageProvider = createWeb3ApiRoot("simpleStorage"); -// const OneInchProvider = createWeb3ApiRoot("ta"); - -const ActionComponent = () => { - useEffect(() => { - (async () => { - const ethereum = (window as any).ethereum; - if (ethereum && ethereum.enable) { - await ethereum.enable(); - } - })(); - }, []); - - const { - execute: deployContract, - data: deployData, - loading: loadingDeploy, - errors: deployContractErrors, - } = useWeb3ApiQuery({ - key: "simpleStorage", - uri: new Uri("ens/api.simplestorage.eth"), - query: `mutation { deployContract }`, - }); - - const { execute: setData, loading: loadingSetData } = useWeb3ApiQuery({ - key: "simpleStorage", - uri: new Uri("ens/api.simplestorage.eth"), - query: `mutation { - setData(options: { - address: "${deployData?.deployContract}" - value: 5 - }) - }`, - }); - - const { execute: getStorageData } = useWeb3ApiQuery({ - key: "simpleStorage", - uri: new Uri("ens/api.simplestorage.eth"), - query: `query { - getData( - address: "${deployData?.deployContract}" - ) - }`, - }); - - return ( - <> -

Web3API: SimpleStorage Demo

- {loadingDeploy ? ( -
Processing your request...
- ) : ( - <> - {!deployData ? ( - - ) : ( - <> -

- SimpleStorage Contract: {deployData.deployContract as string} -

- - {loadingSetData ?

Setting data to 5...

: null} - - - )} - {deployContractErrors && ( -
- There's an error:{" "} - {deployContractErrors.map((e) => e.message).join(", ")} -
- )} - - )} - - ); -}; - -function Test() { - const ethereum = (window as any).ethereum; - - const redirects: UriRedirect[] = [ - { - from: new Uri("w3://ens/ethereum.web3api.eth"), - to: { - factory: () => new EthereumPlugin({ provider: ethereum }), - manifest: EthereumPlugin.manifest(), - }, - }, - { - from: new Uri("w3://ens/ipfs.web3api.eth"), - to: { - factory: () => new IpfsPlugin({ provider: "https://ipfs.io" }), - manifest: IpfsPlugin.manifest(), - }, - }, - { - from: new Uri("w3://ens/ens.web3api.eth"), - to: { - factory: () => new EnsPlugin({}), - manifest: EnsPlugin.manifest(), - }, - }, - ]; - - return ( - - {/* */} -
-
- logo - -
-
- {/*
*/} -
- ); -} - -export default Test; diff --git a/packages/templates/app/react/src/index.css b/packages/templates/app/react/src/index.css index ec2585e8c0..5a062e2434 100644 --- a/packages/templates/app/react/src/index.css +++ b/packages/templates/app/react/src/index.css @@ -1,13 +1,12 @@ body { margin: 0; - font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen', - 'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue', - sans-serif; + font-family: "Montserrat", sans-serif; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; + background-color: #1c272d; } code { - font-family: source-code-pro, Menlo, Monaco, Consolas, 'Courier New', + font-family: source-code-pro, Menlo, Monaco, Consolas, "Courier New", monospace; } diff --git a/packages/templates/app/react/src/index.tsx b/packages/templates/app/react/src/index.tsx index 77624f78c9..d2a35c08b6 100644 --- a/packages/templates/app/react/src/index.tsx +++ b/packages/templates/app/react/src/index.tsx @@ -1,17 +1,17 @@ import React from "react"; import ReactDOM from "react-dom"; import "./index.css"; -import Test from "./Test"; -import * as serviceWorker from "./serviceWorker"; +import App from "./App"; +import { createWeb3ApiProvider } from "@web3api/react"; +import { redirects } from "./redirects"; + +const HelloWorldProvider = createWeb3ApiProvider("helloWorld"); ReactDOM.render( - - - , + + + + + , document.getElementById("root") ); - -// If you want your app to work offline and load faster, you can change -// unregister() to register() below. Note this comes with some pitfalls. -// Learn more about service workers: https://bit.ly/CRA-PWA -serviceWorker.unregister(); diff --git a/packages/templates/app/react/src/logo.svg b/packages/templates/app/react/src/logo.svg deleted file mode 100644 index 6b60c1042f..0000000000 --- a/packages/templates/app/react/src/logo.svg +++ /dev/null @@ -1,7 +0,0 @@ - - - - - - - diff --git a/packages/templates/app/react/src/serviceWorker.ts b/packages/templates/app/react/src/serviceWorker.ts deleted file mode 100644 index b09523f155..0000000000 --- a/packages/templates/app/react/src/serviceWorker.ts +++ /dev/null @@ -1,149 +0,0 @@ -// This optional code is used to register a service worker. -// register() is not called by default. - -// This lets the app load faster on subsequent visits in production, and gives -// it offline capabilities. However, it also means that developers (and users) -// will only see deployed updates on subsequent visits to a page, after all the -// existing tabs open on the page have been closed, since previously cached -// resources are updated in the background. - -// To learn more about the benefits of this model and instructions on how to -// opt-in, read https://bit.ly/CRA-PWA - -const isLocalhost = Boolean( - window.location.hostname === 'localhost' || - // [::1] is the IPv6 localhost address. - window.location.hostname === '[::1]' || - // 127.0.0.0/8 are considered localhost for IPv4. - window.location.hostname.match( - /^127(?:\.(?:25[0-5]|2[0-4][0-9]|[01]?[0-9][0-9]?)){3}$/ - ) -); - -type Config = { - onSuccess?: (registration: ServiceWorkerRegistration) => void; - onUpdate?: (registration: ServiceWorkerRegistration) => void; -}; - -export function register(config?: Config) { - if (process.env.NODE_ENV === 'production' && 'serviceWorker' in navigator) { - // The URL constructor is available in all browsers that support SW. - const publicUrl = new URL( - process.env.PUBLIC_URL, - window.location.href - ); - if (publicUrl.origin !== window.location.origin) { - // Our service worker won't work if PUBLIC_URL is on a different origin - // from what our page is served on. This might happen if a CDN is used to - // serve assets; see https://github.com/facebook/create-react-app/issues/2374 - return; - } - - window.addEventListener('load', () => { - const swUrl = `${process.env.PUBLIC_URL}/service-worker.js`; - - if (isLocalhost) { - // This is running on localhost. Let's check if a service worker still exists or not. - checkValidServiceWorker(swUrl, config); - - // Add some additional logging to localhost, pointing developers to the - // service worker/PWA documentation. - navigator.serviceWorker.ready.then(() => { - console.log( - 'This web app is being served cache-first by a service ' + - 'worker. To learn more, visit https://bit.ly/CRA-PWA' - ); - }); - } else { - // Is not localhost. Just register service worker - registerValidSW(swUrl, config); - } - }); - } -} - -function registerValidSW(swUrl: string, config?: Config) { - navigator.serviceWorker - .register(swUrl) - .then(registration => { - registration.onupdatefound = () => { - const installingWorker = registration.installing; - if (installingWorker == null) { - return; - } - installingWorker.onstatechange = () => { - if (installingWorker.state === 'installed') { - if (navigator.serviceWorker.controller) { - // At this point, the updated precached content has been fetched, - // but the previous service worker will still serve the older - // content until all client tabs are closed. - console.log( - 'New content is available and will be used when all ' + - 'tabs for this page are closed. See https://bit.ly/CRA-PWA.' - ); - - // Execute callback - if (config && config.onUpdate) { - config.onUpdate(registration); - } - } else { - // At this point, everything has been precached. - // It's the perfect time to display a - // "Content is cached for offline use." message. - console.log('Content is cached for offline use.'); - - // Execute callback - if (config && config.onSuccess) { - config.onSuccess(registration); - } - } - } - }; - }; - }) - .catch(error => { - console.error('Error during service worker registration:', error); - }); -} - -function checkValidServiceWorker(swUrl: string, config?: Config) { - // Check if the service worker can be found. If it can't reload the page. - fetch(swUrl, { - headers: { 'Service-Worker': 'script' } - }) - .then(response => { - // Ensure service worker exists, and that we really are getting a JS file. - const contentType = response.headers.get('content-type'); - if ( - response.status === 404 || - (contentType != null && contentType.indexOf('javascript') === -1) - ) { - // No service worker found. Probably a different app. Reload the page. - navigator.serviceWorker.ready.then(registration => { - registration.unregister().then(() => { - window.location.reload(); - }); - }); - } else { - // Service worker found. Proceed as normal. - registerValidSW(swUrl, config); - } - }) - .catch(() => { - console.log( - 'No internet connection found. App is running in offline mode.' - ); - }); -} - -export function unregister() { - if ('serviceWorker' in navigator) { - navigator.serviceWorker.ready - .then(registration => { - registration.unregister(); - }) - .catch(error => { - console.error(error.message); - }); - } -} diff --git a/packages/templates/app/react/src/setupTests.ts b/packages/templates/app/react/src/setupTests.ts deleted file mode 100644 index 74b1a275a0..0000000000 --- a/packages/templates/app/react/src/setupTests.ts +++ /dev/null @@ -1,5 +0,0 @@ -// jest-dom adds custom jest matchers for asserting on DOM nodes. -// allows you to do things like: -// expect(element).toHaveTextContent(/react/i) -// learn more: https://github.com/testing-library/jest-dom -import '@testing-library/jest-dom/extend-expect'; diff --git a/yarn.lock b/yarn.lock index 1a4ee74776..de2f0ece79 100644 --- a/yarn.lock +++ b/yarn.lock @@ -3558,6 +3558,13 @@ dependencies: "@types/react" "^16" +"@types/react-lottie@^1.2.5": + version "1.2.5" + resolved "https://registry.yarnpkg.com/@types/react-lottie/-/react-lottie-1.2.5.tgz#659322961de534227ba354109342cad967d98841" + integrity sha512-g5c7r0VN8g0hLsFEtR71ZFDWDp6niY4D/7llcAcLjV3LpaoyANmaQ9jispskWpkAUP+NYQcFllMtoGIWUM6VRw== + dependencies: + "@types/react" "*" + "@types/react-test-renderer@>=16.9.0": version "17.0.1" resolved "https://registry.yarnpkg.com/@types/react-test-renderer/-/react-test-renderer-17.0.1.tgz#3120f7d1c157fba9df0118dae20cb0297ee0e06b" @@ -3791,6 +3798,88 @@ "@typescript-eslint/types" "4.11.1" eslint-visitor-keys "^2.0.0" +"@web3api/client-js@0.0.1-prealpha.11": + version "0.0.1-prealpha.11" + resolved "https://registry.yarnpkg.com/@web3api/client-js/-/client-js-0.0.1-prealpha.11.tgz#d21c647da24e2e2c09005fc56fb64905fa94d67c" + integrity sha512-yAA0ppcMUFBWb1i0dAGh1t4GQwkp6HdNSY7FLfqwbXNu9dZ3o+AwTWBJfCT15m978AMAgCdvta7Q0FTgks4FYg== + dependencies: + "@msgpack/msgpack" "2.3.0" + "@web3api/core-js" "0.0.1-prealpha.11" + "@web3api/ens-plugin-js" "0.0.1-prealpha.11" + "@web3api/ethereum-plugin-js" "0.0.1-prealpha.11" + "@web3api/ipfs-plugin-js" "0.0.1-prealpha.11" + "@web3api/logger-plugin-js" "0.0.1-prealpha.11" + "@web3api/schema-parse" "0.0.1-prealpha.11" + graphql "15.5.0" + js-yaml "3.14.0" + web-worker "1.0.0" + +"@web3api/core-js@0.0.1-prealpha.11": + version "0.0.1-prealpha.11" + resolved "https://registry.yarnpkg.com/@web3api/core-js/-/core-js-0.0.1-prealpha.11.tgz#0ebb9a65189bc0a321026cdc41642820eab1acf6" + integrity sha512-pQ880RjMfvDXmn2CLyNNxVRFjmqq87VuhXk5TuCqhhNgAii4ACf1ZuurIJsc/YsAWTHTC6irTL5R2VLQ64rvqg== + dependencies: + "@web3api/manifest-schema" "0.0.1-prealpha.11" + graphql "15.5.0" + graphql-tag "2.10.4" + js-yaml "3.14.0" + jsonschema "1.4.0" + semver "7.3.4" + +"@web3api/ens-plugin-js@0.0.1-prealpha.11": + version "0.0.1-prealpha.11" + resolved "https://registry.yarnpkg.com/@web3api/ens-plugin-js/-/ens-plugin-js-0.0.1-prealpha.11.tgz#a604bad302e0ba8c5062d1ef52e6c9ea4cdefe51" + integrity sha512-LZDTx2xfo5lRY0b68AeHv7Rga88D+DYHI/fbs9aZS+I1Y94gBAS9+ohoPfv2dwWLRrnPxFXiQ5FjRZ/ehM1OQw== + dependencies: + "@web3api/core-js" "0.0.1-prealpha.11" + ethers "5.0.7" + +"@web3api/ethereum-plugin-js@0.0.1-prealpha.11": + version "0.0.1-prealpha.11" + resolved "https://registry.yarnpkg.com/@web3api/ethereum-plugin-js/-/ethereum-plugin-js-0.0.1-prealpha.11.tgz#96f9a2e6e06e6b4fdeaf17bdf3796105d709a203" + integrity sha512-jemYM9Visbnn0Ojxs5WXgtECX5VzsfCyFpC4A/zeeWhGf2EGq3cFtmf7qGicpMcfpQXIJqEz2lNJSHwvIZ1LuQ== + dependencies: + "@web3api/core-js" "0.0.1-prealpha.11" + ethers "5.0.7" + +"@web3api/ipfs-plugin-js@0.0.1-prealpha.11": + version "0.0.1-prealpha.11" + resolved "https://registry.yarnpkg.com/@web3api/ipfs-plugin-js/-/ipfs-plugin-js-0.0.1-prealpha.11.tgz#e0492e8f790c441604ffde3da76f9f35d2d10ac3" + integrity sha512-NHZG3uw88Q7bSgb0L82KfDD/lGMQzWW7o1ZWMddguujrrn/x9wKVJb56txTllypAQJ89xDl9afRqovEImUhnXA== + dependencies: + "@web3api/core-js" "0.0.1-prealpha.11" + cids "^1.1.4" + ipfs-http-client-lite "0.3.0" + is-ipfs "1.0.3" + +"@web3api/logger-plugin-js@0.0.1-prealpha.11": + version "0.0.1-prealpha.11" + resolved "https://registry.yarnpkg.com/@web3api/logger-plugin-js/-/logger-plugin-js-0.0.1-prealpha.11.tgz#97dabd8d48e8284b5b965bd52431ce195ba478e6" + integrity sha512-wQlJfM0ehM3nxMrXna6U7kR89r9STYz7Pbvr5Jvxv6OAxiBcL9Yg38ayRmhBq/kbPrd9GoUViDki6eL/heRl5w== + dependencies: + "@web3api/core-js" "0.0.1-prealpha.11" + +"@web3api/manifest-schema@0.0.1-prealpha.11": + version "0.0.1-prealpha.11" + resolved "https://registry.yarnpkg.com/@web3api/manifest-schema/-/manifest-schema-0.0.1-prealpha.11.tgz#d44c543de6a6793d225e511f187ca1c6dcd33e0d" + integrity sha512-jaYhIqx6hycctDNy0Bui7hkyNa7yCzd8ny5wzlmpUze/xv2HtEFDD4Sw2v+mEJFvc/TU4t10JBEl1DKx7rz8DA== + +"@web3api/react@^0.0.1-prealpha.11": + version "0.0.1-prealpha.11" + resolved "https://registry.yarnpkg.com/@web3api/react/-/react-0.0.1-prealpha.11.tgz#5b39e9f1121383e5c3307a9200bc6eac31d67d4e" + integrity sha512-4QfqEbMl+r/E0yv5uMfXl88uXUQihCNYjuZJG8xIMs+ch9WPN1V8L6kZ9rolJUwxjGXro2xKb7fc8LXjXNZGng== + dependencies: + "@web3api/client-js" "0.0.1-prealpha.11" + "@web3api/core-js" "0.0.1-prealpha.11" + +"@web3api/schema-parse@0.0.1-prealpha.11": + version "0.0.1-prealpha.11" + resolved "https://registry.yarnpkg.com/@web3api/schema-parse/-/schema-parse-0.0.1-prealpha.11.tgz#4a1359054541a7cebb7ff1bdcb415175c117825c" + integrity sha512-fOA+e+HUQFdb3d/roAIjDuTSKab1q4JrPShwtPr6uaH6y2AF7hfsCWuVu6zV8WD4ihnizrCo7N6AWm2T0Bjsww== + dependencies: + graphql "15.5.0" + graphql-schema-cycles "1.1.2" + "@webassemblyjs/ast@1.8.5": version "1.8.5" resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.8.5.tgz#51b1c5fe6576a34953bf4b253df9f0d490d9e359" @@ -12841,6 +12930,11 @@ loose-envify@^1.0.0, loose-envify@^1.1.0, loose-envify@^1.4.0: dependencies: js-tokens "^3.0.0 || ^4.0.0" +lottie-web@^5.1.3: + version "5.7.8" + resolved "https://registry.yarnpkg.com/lottie-web/-/lottie-web-5.7.8.tgz#c7a2e42983bcb42093590a03ccdde8741d3f960e" + integrity sha512-VxKCZk33GwZac6mVHvT3grUFR/zrMsW85M7vxQPrgpJOP2IhcnjMbuD0h7muBkXgw84K9KmGulmcyzvhpzSMAg== + loud-rejection@^1.0.0: version "1.6.0" resolved "https://registry.yarnpkg.com/loud-rejection/-/loud-rejection-1.6.0.tgz#5b46f80147edee578870f086d04821cf998e551f" @@ -16048,6 +16142,14 @@ react-is@^17.0.1: resolved "https://registry.yarnpkg.com/react-is/-/react-is-17.0.2.tgz#e691d4a8e9c789365655539ab372762b0efb54f0" integrity sha512-w2GsyukL62IJnlaff/nRegPQR94C/XXamvMWmSHRJ4y7Ts/4ocGRmTHvOs8PSE6pB3dWOrD/nueuU5sduBsQ4w== +react-lottie@^1.2.3: + version "1.2.3" + resolved "https://registry.yarnpkg.com/react-lottie/-/react-lottie-1.2.3.tgz#8544b96939e088658072eea5e12d912cdaa3acc1" + integrity sha512-qLCERxUr8M+4mm1LU0Ruxw5Y5Fn/OmYkGfnA+JDM/dZb3oKwVAJCjwnjkj9TMHtzR2U6sMEUD3ZZ1RaHagM7kA== + dependencies: + babel-runtime "^6.26.0" + lottie-web "^5.1.3" + react-scripts@3.4.1: version "3.4.1" resolved "https://registry.yarnpkg.com/react-scripts/-/react-scripts-3.4.1.tgz#f551298b5c71985cc491b9acf3c8e8c0ae3ada0a" From 39f26ba5c96da12bad60ec88dd2f6eccb9cada2d Mon Sep 17 00:00:00 2001 From: dOrgJelli Date: Thu, 8 Apr 2021 16:09:11 -0500 Subject: [PATCH 3/9] init --- packages/templates/.npmignore | 1 + .../templates/plugin/typescript/package.json | 1 + .../plugin/typescript/schema.graphql | 4 +- .../typescript/src/__tests__/e2e.spec.ts | 58 +++++++++++++++++-- .../templates/plugin/typescript/src/index.ts | 13 ++--- .../plugin/typescript/src/manifest.ts | 4 +- .../plugin/typescript/src/resolvers.ts | 8 +-- 7 files changed, 69 insertions(+), 20 deletions(-) create mode 100644 packages/templates/.npmignore diff --git a/packages/templates/.npmignore b/packages/templates/.npmignore new file mode 100644 index 0000000000..f935021a8f --- /dev/null +++ b/packages/templates/.npmignore @@ -0,0 +1 @@ +!.gitignore diff --git a/packages/templates/plugin/typescript/package.json b/packages/templates/plugin/typescript/package.json index e50a0ed80e..06f10370e6 100644 --- a/packages/templates/plugin/typescript/package.json +++ b/packages/templates/plugin/typescript/package.json @@ -16,6 +16,7 @@ }, "devDependencies": { "@types/jest": "26.0.8", + "@web3api/client-js": "0.0.1-prealpha.12", "jest": "26.6.3", "rimraf": "3.0.2", "ts-jest": "26.5.4", diff --git a/packages/templates/plugin/typescript/schema.graphql b/packages/templates/plugin/typescript/schema.graphql index ff99f67b00..1a01b12787 100644 --- a/packages/templates/plugin/typescript/schema.graphql +++ b/packages/templates/plugin/typescript/schema.graphql @@ -1,7 +1,7 @@ type Query { - sampleQuery(query: String!): String! + sampleQuery(data: String!): String! } type Mutation { - sampleMutation(data: Bytes!): SampleResult! + sampleMutation(data: Bytes!): Boolean! } diff --git a/packages/templates/plugin/typescript/src/__tests__/e2e.spec.ts b/packages/templates/plugin/typescript/src/__tests__/e2e.spec.ts index 3deeea6322..d10927caf7 100644 --- a/packages/templates/plugin/typescript/src/__tests__/e2e.spec.ts +++ b/packages/templates/plugin/typescript/src/__tests__/e2e.spec.ts @@ -1,5 +1,55 @@ -/* eslint-disable @typescript-eslint/no-empty-function */ -// TODO: create client, add plugin, test all the queries -describe("TODO", () => { - it("TODO", () => {}); +import { Web3ApiClient } from "@web3api/client-js"; +import { samplePlugin } from "../"; + +describe("e2e", () => { + + let client: Web3ApiClient; + const uri = "ens/sampleplugin.eth"; + + beforeAll(() => { + // Add the samplePlugin to the Web3ApiClient + client = new Web3ApiClient({ + redirects: [ + { + from: uri, + to: samplePlugin({ defaultValue: "foo bar" }) + } + ] + }); + }); + + it("sampleQuery", async () => { + const result = await client.query({ + uri, + query: `query { + sampleQuery( + data: "fuz baz " + ) + }` + }); + + expect(result.errors).toBeFalsy(); + expect(result.data).toBeTruthy(); + expect(result.data?.sampleQuery).toBe("fuz baz foo bar"); + }); + + it("sampleMutation", async () => { + const result = await client.query<{ + sampleMutation: boolean + }>({ + uri, + query: `mutation { + sampleMutation( + data: $data + ) + }`, + variables: { + data: new Uint8Array([1, 2, 3, 4, 5]) + } + }); + + expect(result.errors).toBeFalsy(); + expect(result.data).toBeTruthy(); + expect(result.data?.sampleMutation).toBe(true); + }); }); diff --git a/packages/templates/plugin/typescript/src/index.ts b/packages/templates/plugin/typescript/src/index.ts index bc7fa834b5..292e8563c2 100644 --- a/packages/templates/plugin/typescript/src/index.ts +++ b/packages/templates/plugin/typescript/src/index.ts @@ -28,16 +28,12 @@ export class SamplePlugin extends Plugin { }; } - /* eslint-disable @typescript-eslint/no-unused-vars */ - public async sampleQuery(query: string): Promise { - // Todo: Add query processing part here - return this._config.defaultValue; + public async sampleQuery(data: string): Promise { + return data + this._config.defaultValue; } - /* eslint-disable @typescript-eslint/no-unused-vars */ - public async sampleMutation(data: Uint8Array): Promise { - // Todo: Add mutation processing part here - return this._config.defaultValue; + public sampleMutation(data: Uint8Array): boolean { + return data.length > 0 } } @@ -49,4 +45,5 @@ export const samplePlugin: PluginFactory = ( manifest: SamplePlugin.manifest(), }; }; + export const plugin = samplePlugin; diff --git a/packages/templates/plugin/typescript/src/manifest.ts b/packages/templates/plugin/typescript/src/manifest.ts index baa34f4d1f..27e1525e2f 100644 --- a/packages/templates/plugin/typescript/src/manifest.ts +++ b/packages/templates/plugin/typescript/src/manifest.ts @@ -5,11 +5,11 @@ export const manifest: PluginManifest = { // https://github.com/web3-api/monorepo/issues/101 schema: ` type Query { - sampleQuery(query: String!): String! + sampleQuery(data: String!): String! } type Mutation { - sampleMutation(data: Bytes!): SampleResult! + sampleMutation(data: Bytes!): Boolean! }`, implemented: [], imported: [], diff --git a/packages/templates/plugin/typescript/src/resolvers.ts b/packages/templates/plugin/typescript/src/resolvers.ts index 0b68a96f7d..fdeb6369fc 100644 --- a/packages/templates/plugin/typescript/src/resolvers.ts +++ b/packages/templates/plugin/typescript/src/resolvers.ts @@ -3,13 +3,13 @@ import { SamplePlugin } from "."; import { PluginModule } from "@web3api/core-js"; export const query = (plugin: SamplePlugin): PluginModule => ({ - sampleQuery: async (input: { query: string }) => { - return await plugin.sampleQuery(input.query); + sampleQuery: async (input: { data: string }) => { + return await plugin.sampleQuery(input.data); }, }); export const mutation = (plugin: SamplePlugin): PluginModule => ({ - sampleMutation: async (input: { data: Uint8Array }) => { - return await plugin.sampleMutation(input.data); + sampleMutation: (input: { data: Uint8Array }) => { + return plugin.sampleMutation(input.data); }, }); From ff0232af541ef3084709ea8cfdca5696f162e094 Mon Sep 17 00:00:00 2001 From: dOrgJelli Date: Thu, 8 Apr 2021 16:17:09 -0500 Subject: [PATCH 4/9] fix linter --- packages/templates/plugin/typescript/src/index.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/packages/templates/plugin/typescript/src/index.ts b/packages/templates/plugin/typescript/src/index.ts index 292e8563c2..92d9196450 100644 --- a/packages/templates/plugin/typescript/src/index.ts +++ b/packages/templates/plugin/typescript/src/index.ts @@ -33,7 +33,7 @@ export class SamplePlugin extends Plugin { } public sampleMutation(data: Uint8Array): boolean { - return data.length > 0 + return data.length > 0; } } From 0f1c55e76cbefebc39446c9b2030ce60c6fa7541 Mon Sep 17 00:00:00 2001 From: kevin Date: Thu, 8 Apr 2021 14:38:05 -0700 Subject: [PATCH 5/9] Update to prealpha.12 and fix graphql query --- packages/templates/app/react/package.json | 4 ++-- packages/templates/app/react/src/App.tsx | 2 +- .../react/src/lottie/Protocols_and_devices.json | 1 + .../app/react/src/lottie/Web3API_Icon_Cycle.json | 1 + packages/templates/app/react/src/redirects.ts | 15 +++++++++++++++ 5 files changed, 20 insertions(+), 3 deletions(-) create mode 100644 packages/templates/app/react/src/lottie/Protocols_and_devices.json create mode 100644 packages/templates/app/react/src/lottie/Web3API_Icon_Cycle.json create mode 100644 packages/templates/app/react/src/redirects.ts diff --git a/packages/templates/app/react/package.json b/packages/templates/app/react/package.json index a7e05f0637..fcc44925b0 100644 --- a/packages/templates/app/react/package.json +++ b/packages/templates/app/react/package.json @@ -16,8 +16,8 @@ "@types/react": "^16.9.0", "@types/react-dom": "^16.9.0", "@types/react-lottie": "^1.2.5", - "@web3api/client-js": "0.0.1-prealpha.11", - "@web3api/react": "^0.0.1-prealpha.11", + "@web3api/client-js": "0.0.1-prealpha.12", + "@web3api/react": "^0.0.1-prealpha.12", "http-proxy": "1.18.1", "http-proxy-middleware": "1.0.6", "react": "^16.13.1", diff --git a/packages/templates/app/react/src/App.tsx b/packages/templates/app/react/src/App.tsx index 3d6a7ad7d5..83d9b26c19 100644 --- a/packages/templates/app/react/src/App.tsx +++ b/packages/templates/app/react/src/App.tsx @@ -27,7 +27,7 @@ const App: FC = () => { uri: "ens/helloworld.eth", query: `query { logMessage( - message: ${message} + message: "${message}" ) }`, }); diff --git a/packages/templates/app/react/src/lottie/Protocols_and_devices.json b/packages/templates/app/react/src/lottie/Protocols_and_devices.json new file mode 100644 index 0000000000..0616461aac --- /dev/null +++ b/packages/templates/app/react/src/lottie/Protocols_and_devices.json @@ -0,0 +1 @@ +{"v":"5.5.7","meta":{"g":"LottieFiles AE 0.1.21","a":"","k":"","d":"","tc":""},"fr":25,"ip":0,"op":904,"w":600,"h":1080,"nm":"Protocols and devices","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"prot2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,642,0],"ix":2},"a":{"a":0,"k":[673,718,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-6.444,-3.976],[0,0],[13.299,0],[0,-18.51],[-12.203,-3.977],[0,0],[0,-9.049],[10.831,0],[6.718,4.25],[0,0],[-14.945,0],[0,19.88],[14.26,4.799],[0,0],[0,7.404],[-9.187,0]],"o":[[0,0],[-7.815,-5.621],[-19.333,0],[0,16.59],[0,0],[8.364,2.879],[0,8.227],[-10.969,0],[0,0],[8.775,5.622],[21.252,0],[0,-18.51],[0,0],[-5.759,-1.92],[0,-7.541],[11.243,0]],"v":[[26.257,-29.067],[31.466,-42.504],[-0.206,-50.182],[-35.443,-22.623],[-11.038,4.525],[1.165,8.638],[16.384,23.308],[-1.577,34.826],[-31.056,27.285],[-36.266,41.818],[-1.44,50.182],[36.265,20.978],[7.883,-8.227],[-5.416,-12.614],[-15.563,-24.543],[-0.206,-35.1]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[352.079,280.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":"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]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[30.37,-48.4],[-30.369,-48.4],[-30.369,48.4],[-10.352,48.4],[-10.352,5.759],[27.628,5.759],[27.628,-8.776],[-10.488,-8.776],[-10.488,-33.729],[28.999,-33.729]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[282.456,280.912],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[17.55,0],[1.645,0.137],[0,0],[0,0],[0,-10.557],[0,0]],"o":[[-3.702,0],[0,0],[0,0],[12.065,0],[0,0],[0,8.226]],"v":[[-4.525,-0.823],[-15.356,-0.96],[-15.356,-33.867],[-2.879,-33.867],[16.042,-17.55],[16.042,-17.275]],"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],[-4.114,0],[0,17.413],[23.309,0],[0,0],[0,0]],"o":[[0,0],[4.936,0.411],[28.519,0],[0,-21.115],[0,0],[0,0],[0,0]],"v":[[-15.356,48.399],[-15.356,12.888],[-1.371,13.299],[35.374,-18.236],[-3.017,-48.399],[-35.374,-48.399],[-35.374,48.399]],"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":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[208.91,280.911],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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},{"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.009,-48.399],[-10.009,-48.399],[-10.009,48.399],[10.009,48.399]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[148.664,280.911],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":1000,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"prot 2 shape 1","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[550.503,204.48,0],"ix":2},"a":{"a":0,"k":[263.503,280.48,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[9.293,6.857],[0,0],[0,0],[0.221,-1.956],[0,0],[-9.292,-6.856],[0,0],[-0.221,1.956],[0,0]],"o":[[0,0],[0,0],[0.221,1.956],[0,0],[9.292,-6.856],[0,0],[-0.22,-1.957],[0,0],[-9.292,6.857]],"v":[[-425.178,-591.858],[-425.189,-591.858],[-535.385,-528.234],[-535.385,-522.347],[-425.183,-458.724],[-393.924,-458.724],[-283.723,-522.347],[-283.723,-528.234],[-393.918,-591.858]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":0,"k":{"i":[[0,0],[10.584,-4.619],[0,0],[-1.584,-1.169],[0,0],[-10.584,4.619],[0,0],[1.584,1.169],[0,0]],"o":[[1.292,11.476],[0,0],[1.805,0.787],[0,0],[-1.291,-11.475],[0,0],[-1.805,-0.787],[0,0],[0,0]],"v":[[-383.461,-440.441],[-399.09,-413.37],[-398.967,-286.831],[-393.869,-283.888],[-283.666,-347.51],[-268.036,-374.582],[-268.036,-501.826],[-273.135,-504.77],[-273.142,-504.773]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[1.805,-0.788],[0,0],[1.291,-11.474],[0,0],[-1.805,0.788],[0,0],[-1.292,11.476],[0,0]],"o":[[-1.584,1.169],[0,0],[10.583,4.619],[0,0],[1.584,-1.169],[0,0],[-10.584,-4.619],[0,0],[0,0]],"v":[[-545.86,-504.066],[-550.959,-501.121],[-550.959,-373.877],[-535.329,-346.805],[-425.134,-283.182],[-420.034,-286.127],[-420.034,-413.371],[-435.664,-440.443],[-545.859,-504.068]],"c":true},"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[673,718],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1000,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"prot 2 gradient 1","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[549.122,207.5,0],"ix":2},"a":{"a":0,"k":[-403.5,-332.5,0],"ix":1},"s":{"a":0,"k":[86.757,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[335,333],"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":"fl","c":{"a":0,"k":[0.266666666667,0.572549019608,0.580392156863,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-403.5,-332.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":1000,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"prot 2 shape 2","td":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[550.5,204.5,0],"ix":2},"a":{"a":0,"k":[263.5,280.5,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"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":[[111.513,192.75],[263.499,280.5],[415.484,192.75],[263.499,105]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,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},{"ind":2,"ty":"sh","ix":3,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[263.5,456],[263.5,280.5],[111.514,192.75],[111.514,368.25]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 2","mn":"ADBE Vector Graphic - Fill","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[263.5,456],[415.486,368.25],[415.486,192.75],[263.5,280.5]],"c":true},"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 3","mn":"ADBE Vector Graphic - Fill","hd":false}],"ip":0,"op":1000,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"prot 2 gradient 2","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[549.122,207.5,0],"ix":2},"a":{"a":0,"k":[-403.5,-332.5,0],"ix":1},"s":{"a":0,"k":[95.712,111.411,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[335,333],"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":"fl","c":{"a":0,"k":[0.2,0.427450980392,0.435294117647,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-403.5,-332.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":1000,"st":0,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"cirkel 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":120,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.672},"o":{"x":0.333,"y":0.328},"t":-12,"s":[498.728,758.023,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.671,"y":0.671},"o":{"x":0.336,"y":0.336},"t":-11.978,"s":[499.236,758.884,0],"to":[1.928,-1.139,0],"ti":[-16.63,9.256,0]},{"i":{"x":0.669,"y":0.669},"o":{"x":0.335,"y":0.335},"t":-6.423,"s":[708.861,635.676,0],"to":[18.112,-10.082,0],"ti":[-0.882,22.82,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.343,"y":0.358},"t":-4.933,"s":[740.128,581.527,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[739.681,374.544,0],"to":[-0.927,-22.798,0],"ti":[18.124,10.041,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8.438,"s":[708.315,320.483,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35.024,"s":[530.462,217.624,0],"to":[-17.759,-10.692,0],"ti":[20.213,-10.585,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43.468,"s":[467.953,217.447,0],"to":[-20.139,10.545,0],"ti":[1.907,-1.11,0]},{"t":75,"s":[289.349,320.653,0]}],"ix":2},"a":{"a":0,"k":[257.869,337.47,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.98,0],[0,10.98],[-10.98,0],[0,-10.98]],"o":[[-10.98,0],[0,-10.98],[10.98,0],[0,10.98]],"v":[[0,19.881],[-19.881,0],[0,-19.881],[19.881,0]],"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":[[26.305,0],[0,-26.306],[-26.306,0],[0,26.305]],"o":[[-26.306,0],[0,26.305],[26.305,0],[0,-26.306]],"v":[[0,-47.63],[-47.63,0],[0,47.63],[47.63,0]],"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.501960784314,0.501960784314,0.501960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[257.869,337.47],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":345,"st":-12,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"route 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-240,"ix":10},"p":{"a":0,"k":[494.08,475.674,0],"ix":2},"a":{"a":0,"k":[499.68,482.974,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[16.526,9.891],[21.464,-11.31],[0,0],[-0.34,-19.256],[0,0],[-20.493,-12.986],[0,0]],"o":[[0,0],[-16.525,-9.89],[0,0],[-20.501,12.974],[0,0],[-0.353,19.256],[19.414,12.304],[0,0]],"v":[[241.483,-142.828],[30.457,-263.771],[-31.563,-263.771],[-210.575,-159.902],[-241.478,-106.129],[-241.63,99.333],[-210.761,153.125],[0.172,275.081]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":26,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[499.508,481.298],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[35.137]},{"t":75,"s":[54.6]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[44.3]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43.5,"s":[74.4]},{"t":75,"s":[94.3]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":345,"st":0,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"cirkel 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-120,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.672},"o":{"x":0.333,"y":0.328},"t":-12,"s":[256.035,337.351,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.671,"y":0.671},"o":{"x":0.336,"y":0.336},"t":-11.978,"s":[255.035,337.36,0],"to":[0.022,2.239,0],"ti":[0.299,-19.03,0]},{"i":{"x":0.669,"y":0.669},"o":{"x":0.335,"y":0.335},"t":-6.423,"s":[256.924,580.505,0],"to":[-0.325,20.727,0],"ti":[-19.322,-12.174,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.343,"y":0.358},"t":-4.933,"s":[288.185,634.658,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[467.66,737.762,0],"to":[20.207,10.596,0],"ti":[-17.758,10.676,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8.438,"s":[530.162,737.628,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35.024,"s":[708.167,635.033,0],"to":[18.139,-10.034,0],"ti":[-0.94,22.798,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43.468,"s":[739.574,580.987,0],"to":[0.938,-22.714,0],"ti":[0.008,2.207,0]},{"t":75,"s":[739.726,374.563,0]}],"ix":2},"a":{"a":0,"k":[257.869,337.47,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.98,0],[0,10.98],[-10.98,0],[0,-10.98]],"o":[[-10.98,0],[0,-10.98],[10.98,0],[0,10.98]],"v":[[0,19.881],[-19.881,0],[0,-19.881],[19.881,0]],"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":[[26.305,0],[0,-26.306],[-26.306,0],[0,26.305]],"o":[[-26.306,0],[0,26.305],[26.305,0],[0,-26.306]],"v":[[0,-47.63],[-47.63,0],[0,47.63],[47.63,0]],"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.501960784314,0.501960784314,0.501960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[257.869,337.47],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":345,"st":-12,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"route 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-120,"ix":10},"p":{"a":0,"k":[502.88,474.5,0],"ix":2},"a":{"a":0,"k":[499.68,482.974,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[16.526,9.891],[21.464,-11.31],[0,0],[-0.34,-19.256],[0,0],[-20.493,-12.986],[0,0]],"o":[[0,0],[-16.525,-9.89],[0,0],[-20.501,12.974],[0,0],[-0.353,19.256],[19.414,12.304],[0,0]],"v":[[241.091,-142.189],[30.457,-263.771],[-31.563,-263.771],[-210.575,-159.902],[-241.478,-106.129],[-241.63,99.333],[-210.761,153.125],[0.172,275.081]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":26,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[499.508,481.298],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[35.137]},{"t":75,"s":[54.6]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[44.3]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43.5,"s":[74.4]},{"t":75,"s":[94.3]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":345,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"cirkel","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.672},"o":{"x":0.333,"y":0.328},"t":-12,"s":[741.877,337.775,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.671,"y":0.671},"o":{"x":0.336,"y":0.336},"t":-11.978,"s":[742.369,336.904,0],"to":[-1.95,-1.101,0],"ti":[16.331,9.774,0]},{"i":{"x":0.669,"y":0.669},"o":{"x":0.335,"y":0.335},"t":-6.423,"s":[530.855,216.967,0],"to":[-17.787,-10.645,0],"ti":[20.204,-10.646,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.343,"y":0.358},"t":-4.933,"s":[468.327,216.964,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[289.298,320.842,0],"to":[-19.28,12.202,0],"ti":[-0.366,-20.717,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8.438,"s":[258.163,375.037,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35.024,"s":[258.01,580.491,0],"to":[-0.38,20.726,0],"ti":[-19.273,-12.213,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43.468,"s":[289.112,634.714,0],"to":[19.202,12.169,0],"ti":[-1.915,-1.097,0]},{"t":75,"s":[467.814,738.932,0]}],"ix":2},"a":{"a":0,"k":[225.869,319.47,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.98,0],[0,10.98],[-10.98,0],[0,-10.98]],"o":[[-10.98,0],[0,-10.98],[10.98,0],[0,10.98]],"v":[[0,19.881],[-19.881,0],[0,-19.881],[19.881,0]],"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":[[26.305,0],[0,-26.306],[-26.306,0],[0,26.305]],"o":[[-26.306,0],[0,26.305],[26.305,0],[0,-26.306]],"v":[[0,-47.63],[-47.63,0],[0,47.63],[47.63,0]],"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.501960784314,0.501960784314,0.501960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[225.869,318.47],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":345,"st":-12,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"route","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[499.68,482.974,0],"ix":2},"a":{"a":0,"k":[499.68,482.974,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[16.526,9.891],[21.464,-11.31],[0,0],[-0.34,-19.256],[0,0],[-20.493,-12.986],[0,0]],"o":[[0,0],[-16.525,-9.89],[0,0],[-20.501,12.974],[0,0],[-0.353,19.256],[19.414,12.304],[0,0]],"v":[[241.483,-142.828],[30.457,-263.771],[-31.563,-263.771],[-210.575,-159.902],[-241.478,-106.129],[-241.63,99.333],[-210.761,153.125],[0.172,275.081]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":26,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[499.508,481.298],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[35.137]},{"t":75,"s":[54.6]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[44.3]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43.5,"s":[74.4]},{"t":75,"s":[94.3]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":345,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"illu","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[499.819,500.494,0],"ix":2},"a":{"a":0,"k":[499.819,500.494,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-11.88,-8.709],[-0.53,-4.64],[0.653,-3.383],[0.067,0.265],[4.31,2.36],[1.77,1.979],[0,0],[-3.5,-1.91],[-1.12,-4.53],[0.325,-3.832],[35.818,-17.369],[-40.521,27.42],[0,0],[0.466,1.43],[-0.104,0.812],[0.8,7.084],[3.96,2.9],[0.01,0.28]],"o":[[0,0],[0,0.37],[2.89,2.121],[0.335,2.993],[-0.058,-0.27],[-1.439,-5.821],[-3.859,-2.12],[0,0],[2,1.96],[3.141,1.73],[0.8,3.223],[-8.662,-1.894],[-44.95,21.789],[40.52,-27.41],[-0.309,-2.137],[0.146,-0.823],[3.744,-8.108],[-0.67,-5.96],[-9.831,-7.21],[0,0]],"v":[[38.795,-80.875],[36.475,-80.875],[48.495,-63.016],[53.715,-52.685],[53.204,-43.048],[53.034,-43.864],[44.245,-56.365],[36.035,-62.665],[33.935,-58.215],[42.024,-52.315],[48.545,-42.755],[49.22,-32.07],[-14.155,10.585],[13.255,53.485],[54.375,-21.895],[53.214,-27.219],[53.591,-29.672],[58.305,-53.195],[51.225,-66.735],[41.105,-80.905]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[557.065,519.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 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":[[1.191,-9.145],[8.46,-10.679],[-17.841,-3.51],[-0.031,18.43],[0.95,14.33],[0.05,0.43],[7.02,0]],"o":[[-1.13,8.671],[-16.73,21.1],[17.84,3.51],[0.03,-18.42],[-0.03,-0.44],[-1.075,-8.82],[-7.282,-0.001]],"v":[[-2.704,-33.783],[-12.284,-3.723],[-11.404,44.077],[16.406,6.347],[28.296,-33.133],[28.176,-34.433],[13.182,-47.586]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[421.794,446.083],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[4.91,-3.75],[0,0],[0,0],[0,0],[0.86,-6.431],[0,0],[0,0],[0,0],[-3.75,-4.911],[0,0],[0,0],[0,0],[-6.419,-0.86],[0,0],[0,0],[0,0],[-4.92,3.749],[0,0],[0,0],[0,0],[-0.859,6.429],[0,0],[0,0],[0,0],[3.749,4.92],[0,0],[0,0],[0,0],[6.419,0.859],[0,0]],"o":[[0,0],[-6.42,0.859],[0,0],[0,0],[0,0],[-3.75,4.91],[0,0],[0,0],[0,0],[0.86,6.429],[0,0],[0,0],[0,0],[4.89,3.749],[0,0],[0,0],[0,0],[6.421,-0.86],[0,0],[0,0],[0,0],[3.749,-4.911],[0,0],[0,0],[0,0],[-0.86,-6.42],[0,0],[0,0],[0,0],[-4.911,-3.75],[0,0],[0,0]],"v":[[-4.826,-48.3],[-4.826,-35.939],[-22.005,-28.85],[-30.725,-37.569],[-37.555,-30.74],[-28.835,-22.02],[-35.925,-4.83],[-48.285,-4.83],[-48.285,4.831],[-35.925,4.831],[-28.835,22.021],[-37.555,30.74],[-30.725,37.57],[-22.005,28.851],[-4.845,35.94],[-4.845,48.3],[4.815,48.3],[4.815,35.94],[22.005,28.851],[30.724,37.57],[37.554,30.74],[28.835,22.021],[35.924,4.831],[48.285,4.831],[48.285,-4.83],[35.935,-4.83],[28.845,-22.02],[37.565,-30.74],[30.735,-37.569],[22.016,-28.85],[4.835,-35.939],[4.835,-48.3]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[529.965,420.56],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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,-14.139],[-14.13,0],[0,14.131],[14.14,0]],"o":[[0,14.141],[14.14,0],[-0.01,-14.149],[-14.14,0]],"v":[[-25.595,0.003],[-0.005,25.596],[25.595,0.003],[-0.005,-25.596]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[455.265,548.096],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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,-96.03],[-96.02,0],[0,96.03],[96.03,0]],"o":[[0,96.03],[96.031,0],[0,-96.03],[-96.03,0]],"v":[[-174.155,0.006],[-0.005,174.155],[174.155,0.006],[0.005,-174.155]],"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,75.44],[-75.45,0],[0,-75.45],[75.441,0]],"o":[[0,-75.44],[75.44,0],[-0.011,75.429],[-75.44,0]],"v":[[-136.805,0.006],[0.015,-136.814],[136.826,0.006],[0.005,136.815]],"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.5,0.5,0.5,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[502.205,478.954],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1000,"st":0,"bm":0}]},{"id":"comp_2","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"arrow up","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":5,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26,"s":[100]},{"t":31,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[960,540,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,-180.875],[-17.375,-162.125]],"c":false}]},{"t":6,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,-216.125],[-17.375,-197.375]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":27,"s":[0]},{"t":30,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[0]},{"t":24,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.172549019608,0.360784313725,0.364705882353,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":7,"ix":5},"lc":2,"lj":1,"ml":4,"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":"Shape 3","np":4,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1.125,-180.625],[20.75,-161]],"c":false}]},{"t":6,"s":[{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[1,-216.375],[20.625,-196.75]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":27,"s":[0]},{"t":30,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":21,"s":[0]},{"t":24,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.172549019608,0.360784313725,0.364705882353,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":7,"ix":5},"lc":2,"lj":1,"ml":4,"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":"Shape 2","np":4,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":3,"s":[{"i":[[-75.5,0],[0,138],[65.348,15.958],[10.091,0]],"o":[[75.5,0],[0,-115.72],[-12.582,-3.073],[-62.5,0]],"v":[[1,204],[189,14],[35.405,-176.442],[1,-181]],"c":false}]},{"t":6,"s":[{"i":[[-75.5,0],[0,138],[54.581,14.28],[0,39.25]],"o":[[75.5,0],[0,-108.192],[-17.745,-4.643],[0,-62.5]],"v":[[1,204],[189,14],[52.919,-167.78],[1,-216.25]],"c":false}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":6,"s":[0]},{"t":27,"s":[100]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":21,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.172549019608,0.360784313725,0.364705882353,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":7,"ix":5},"lc":2,"lj":1,"ml":4,"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":"Shape 1","np":4,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":31,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"POKT-_NATIVE-Logo.ai","cl":"ai","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":812,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":827,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":872,"s":[100]},{"t":887,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,194.8,0],"ix":2},"a":{"a":0,"k":[309,143.8,0],"ix":1},"s":{"a":0,"k":[65,65,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[4.6,0],[1.5,-2.2],[0,-1.7],[-0.9,-1.299],[-2.9,0],[0,4.599]],"o":[[-2.9,0],[-0.9,1.3],[0,1.7],[1.5,2.201],[4.6,0],[0,-4.6]],"v":[[0,-8.3],[-6.9,-4.6],[-8.3,0],[-6.9,4.599],[0,8.3],[8.3,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[111.1,183],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-4.5,0],[-1.5,2.2],[0,1.7],[0.9,1.3],[2.9,0],[0,-4.6]],"o":[[2.9,0],[0.9,-1.3],[0,-1.7],[-1.5,-2.2],[-4.6,0],[0,4.6]],"v":[[0,8.3],[6.9,4.6],[8.3,0],[6.9,-4.6],[0,-8.3],[-8.3,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[141.1,104.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 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":[[-6.4,-7.3],[-4.3,3.8],[-0.1,0],[0,6.201],[0,0],[-3.4,4.4],[-0.1,0.1],[-6.9,0],[-5.3,-0.1],[0,3.4],[-1.6,2],[2,0],[0,-22.8],[0,0]],"o":[[4.5,-3.6],[0.1,0],[-3.4,-4.5],[0,0],[0,-6.2],[0.1,-0.1],[4.9,-5.4],[0,0],[-2.4,-2.1],[0,-2.8],[-2,-0.2],[-24.7,0],[0,0],[0.1,10.4]],"v":[[-15.55,34.6],[-2.25,23.5],[-2.05,23.4],[-7.45,7],[-7.45,6.7],[-2.15,-9.6],[-1.85,-10],[15.85,-18.1],[25.85,-18],[21.85,-26.7],[24.45,-34],[17.05,-34.6],[-25.85,7.1],[-25.85,7.4]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[107.55,131.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 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":[[-1.9,-1.4],[0,0],[0,0],[0,0],[-2.8,0]],"o":[[0,0],[0,0],[0,0],[2,-1.7],[2.6,0.1]],"v":[[7.15,28.55],[7.15,-28.95],[-7.15,-28.95],[-7.15,28.95],[0.25,26.25]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[140.85,67.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 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":[[6.4,7.3],[4.3,-3.8],[0.1,0],[0,-6.201],[0,0],[3.4,-4.4],[0.1,-0.101],[6.9,0],[5.3,0.099],[0,-3.4],[1.6,-2],[-2,0],[0,22.8],[0,0]],"o":[[-4.5,3.6],[-0.1,0],[3.4,4.5],[0,0],[0,6.201],[-0.1,0.1],[-4.9,5.399],[0,0],[2.4,2.099],[0,2.801],[2,0.199],[24.7,0],[0,0],[-0.1,-10.3]],"v":[[15.55,-34.6],[2.25,-23.5],[2.05,-23.4],[7.45,-6.999],[7.45,-6.7],[2.15,9.6],[1.85,10.001],[-15.85,18.1],[-25.85,18.001],[-21.85,26.7],[-24.45,34.001],[-17.05,34.6],[25.85,-7.1],[25.85,-7.4]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[144.65,155.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 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":[[1.9,1.4],[0,0],[0,0],[0,0],[2.8,0]],"o":[[0,0],[0,0],[0,0],[-2,1.7],[-2.6,0]],"v":[[-7.15,-28.55],[-7.15,28.95],[7.15,28.95],[7.15,-28.95],[-0.25,-26.25]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[111.45,220.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 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,-35.601],[-32.6,-9.4],[0,0],[0,27.399],[-24.3,8.899],[0,0]],"o":[[0,35.6],[0,0],[-24.3,-8.9],[0,-27.3],[0,0],[-32.6,9.5]],"v":[[-28.2,0.05],[28.2,75.05],[28.2,60.55],[-13.4,1.05],[28.2,-58.45],[28.2,-75.051]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[76.1,143.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 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,-27.3],[24.3,-8.9],[0,0],[0,35.5],[32.4,9.5],[0,0]],"o":[[0,27.3],[0,0],[32.4,-9.5],[0,-35.5],[0,0],[24.2,8.899]],"v":[[13.55,1.101],[-28.05,60.601],[-28.05,75],[28.05,0],[-28.05,-75],[-28.05,-58.399]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[176.05,143.799],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[4.3,5],[2.9,-2.6],[0,0],[0,-4.2],[0,0],[2.3,-3],[0,-0.1],[4.6,0],[0,0],[0,0],[0,0],[0,0],[-2.1,0],[0,15.3],[0,0]],"o":[[-3,2.4],[0,0],[2.3,3],[0,0],[0,4.2],[-0.1,0.1],[-3.3,3.6],[0,0],[0,0],[0,0],[0,0],[0,0],[16.7,0],[0,0],[-0.1,-7.1]],"v":[[15.35,-40.3],[6.35,-32.8],[6.25,-32.7],[9.85,-21.6],[9.85,-21.4],[6.25,-10.4],[6.05,-10.1],[-5.85,-4.7],[-22.35,-4.8],[-22.35,40.3],[-12.65,40.3],[-12.65,5.9],[-6.55,6.5],[22.35,-21.6],[22.35,-21.8]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[260.25,154.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 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],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-9.699,27.4],[-21.301,27.4],[-21.301,-27.3],[-9.6,-27.4],[-9.6,-9.3],[5.9,-27.4],[20.499,-27.4],[-9.6,8.5]],"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.2]],"o":[[0,0],[0,0],[0,0],[0,0],[16.5,23.1],[0,0]],"v":[[21.301,27.4],[8.301,27.4],[-2.501,11.7],[4.4,2.9],[4.801,3.4],[21.301,26.799]],"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":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[446.1,133.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":"Group 10","np":4,"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.2]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[8.65,26.9],[-1.85,11.799],[4.45,3.799],[20.85,26.9]],"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],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-20.85,26.9],[-20.85,-26.8],[-10.15,-26.9],[-10.15,-8],[6.049,-27],[19.35,-27],[-10.05,8.4],[-10.15,27],[-20.85,27]],"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":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[446.05,133.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":"Group 11","np":4,"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,4.8],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-9.101,0],[-3,1.8],[0,0],[2.801,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,11.901],[4.7,0],[0,0],[-2.5,1.2],[-4.1,0.099]],"v":[[2.5,17.1],[2.5,-5.4],[2.5,-20.699],[2.5,-34.799],[-9.9,-34.799],[-9.9,-20.001],[-16.7,-20.001],[-16.7,-9.4],[-9.9,-9.4],[-9.9,18.999],[5.6,34.799],[16.699,31.999],[16.699,21.9],[9,23.701]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[553.1,126.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-4.9,-5.3],[4.9,-5.3],[4.9,5.3],[-4.9,5.3]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[565.2,112.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 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.2,0],[1.099,-8.4]],"o":[[-0.801,-8],[-7.601,0],[0,0]],"v":[[13.751,-3.85],[0.051,-18.05],[-13.949,-3.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,16.6],[0,0],[-15.5,0],[0,-15.5],[0.101,-1.3],[0,0],[-7.9,0],[-4.3,4.2],[0,0],[9.899,0]],"o":[[0,0],[0,-15.4],[17.199,0],[0,1.1],[0,0],[1.3,8.8],[6,0],[0,0],[-5.099,6.1],[-15.7,0]],"v":[[-26.15,0.15],[-26.15,-0.05],[0.251,-28.15],[26.15,0.85],[25.949,4.35],[-13.749,4.35],[1.751,18.05],[16.35,11.65],[23.65,18.05],[1.551,28.15]],"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":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[502.15,133.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 14","np":4,"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,15.3],[0,0],[-16.201,0],[-5.1,-5.5],[0,0],[6.1,0],[0,-9.4],[0,0],[-9.5,0],[-3.9,3.9],[0,0],[10.601,0]],"o":[[0,0],[0,-15.3],[10.1,0],[0,0],[-3.799,-4],[-9,0],[0,0],[0,9.6],[5.8,0],[0,0],[-5.3,5.9],[-16.099,-0.2]],"v":[[-25,0.15],[-25,-0.05],[3.1,-28.25],[24.7,-18.95],[16.899,-10.65],[3,-17.35],[-12.601,-0.15],[-12.601,0.05],[3.5,17.35],[17.5,10.75],[25,18.15],[2.899,28.25]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[385.7,133.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 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,9.3],[0,0],[9.801,0],[0,-9.4],[0,0],[-9.701,0]],"o":[[0,0],[0,-9.5],[-9.899,0],[0,0],[0,9.4],[10.1,-0.1]],"v":[[16.45,0.25],[16.45,0.05],[-0.151,-17.35],[-16.45,-0.15],[-16.45,0.05],[0.05,17.35]],"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,15.3],[0,0],[-16.5,0],[0,-15.4],[0,0],[16.601,0]],"o":[[0,0],[0,-15.4],[16.6,0],[0,0],[0,15.3],[-16.399,0]],"v":[[-28.75,0.25],[-28.75,0.05],[0.05,-28.15],[28.75,-0.15],[28.75,0.05],[-0.151,28.15]],"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":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[322.25,133.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 16","np":4,"cix":2,"bm":0,"ix":16,"mn":"ADBE Vector Group","hd":false}],"ip":812,"op":888,"st":812,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"aleph copy.ai","cl":"ai","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":712,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":727,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":787,"s":[100]},{"t":802,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,194.691,0],"ix":2},"a":{"a":0,"k":[12.313,12.314,0],"ix":1},"s":{"a":0,"k":[683.3,683.3,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-0.391,-0.391],[0,0],[0.39,-0.391],[0.391,0.39],[0,0],[-0.391,0.391]],"o":[[0,0],[0.39,0.391],[-0.391,0.39],[0,0],[-0.391,-0.391],[0.391,-0.391]],"v":[[-10.607,-12.021],[-7.777,-9.193],[-7.777,-7.778],[-9.193,-7.778],[-12.021,-10.607],[-12.021,-12.021]],"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.39,-0.39],[0,0],[0.39,-0.39],[0.391,0.39],[0,0],[-0.39,0.391]],"o":[[0,0],[0.39,0.39],[-0.39,0.39],[0,0],[-0.39,-0.39],[0.391,-0.39]],"v":[[-0.708,-2.122],[2.122,0.707],[2.122,2.121],[0.706,2.121],[-2.122,-0.708],[-2.122,-2.122]],"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.39,0.391],[0,0],[-0.39,-0.391],[0.39,-0.391],[0,0],[0.391,0.39]],"o":[[0,0],[0.391,-0.391],[0.39,0.391],[0,0],[-0.39,0.39],[-0.39,-0.391]],"v":[[-2.122,-9.193],[0.706,-12.021],[2.122,-12.021],[2.122,-10.607],[-0.708,-7.778],[-2.122,-7.778]],"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.781,-0.781],[0.781,0.781],[-0.782,0.781],[-0.781,-0.782]],"o":[[-0.781,0.781],[-0.782,-0.781],[0.781,-0.782],[0.781,0.781]],"v":[[-3.536,-3.536],[-6.363,-3.536],[-6.363,-6.364],[-3.536,-6.364]],"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.391,-0.391],[0,0],[0.39,-0.39],[0.391,0.391],[0,0],[-0.391,0.39]],"o":[[0,0],[0.39,0.391],[-0.391,0.391],[0,0],[-0.391,-0.391],[0.39,-0.391]],"v":[[9.193,7.778],[12.021,10.606],[12.021,12.02],[10.606,12.02],[7.779,9.192],[7.779,7.778]],"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.39,0.391],[0,0],[-0.39,-0.391],[0.39,-0.391],[0,0],[0.391,0.391]],"o":[[0,0],[0.391,-0.391],[0.39,0.39],[0,0],[-0.39,0.391],[-0.39,-0.39]],"v":[[-2.122,10.606],[0.706,7.778],[2.122,7.778],[2.122,9.192],[-0.708,12.02],[-2.122,12.02]],"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.781,-0.781],[0.78,0.781],[-0.782,0.78],[-0.782,-0.782]],"o":[[-0.782,0.781],[-0.782,-0.781],[0.78,-0.782],[0.781,0.78]],"v":[[6.365,6.364],[3.536,6.364],[3.536,3.536],[6.365,3.536]],"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.325,0.607999973671,0.936999990426,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[12.314,12.314],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":9,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":712,"op":803,"st":712,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"filecoin-logo.ai","cl":"ai","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":612,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":627,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":687,"s":[100]},{"t":702,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,196,0],"ix":2},"a":{"a":0,"k":[20,20,0],"ix":1},"s":{"a":0,"k":[370,370,100],"ix":6}},"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.5,-1.2],[0.601,-1.3],[1.9,-0.3],[0.9,0.7],[0,0.3],[-0.3,0.2],[-0.3,-0.1],[-0.2,-0.4],[-0.8,0.6],[-0.301,1.1],[-0.5,2.4],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-0.199,0.5],[-1.201,1.6],[-2.101,-0.1],[-0.599,-0.7],[0,-0.2],[0.301,-0.3],[0.401,0.4],[0.299,0.3],[0.701,-0.7],[0.299,-0.7],[0.7,-2.2],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[-0.4,1.3],[-0.5,1.4],[-0.799,1.7],[-1.1,0.2],[-0.3,-0.2],[0,-0.4],[0.2,-0.1],[0.3,0.3],[0.599,0.8],[0.899,-0.8],[0.6,-2.4],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0.201,-0.6],[0.5,-1.8],[1.2,-1.6],[0.899,0],[0.101,0.1],[0,0.4],[-0.399,0.3],[-0.299,-0.3],[-0.6,-0.8],[-0.5,0.5],[-0.701,2.1],[0,0],[0,0],[0,0]],"v":[[1.75,-2.35],[1.149,0.85],[6.85,1.65],[6.449,3.15],[0.85,2.35],[-0.25,6.25],[-1.851,10.35],[-5.95,13.55],[-9.15,12.95],[-9.75,12.05],[-9.25,10.95],[-8.25,11.05],[-7.45,12.15],[-5.25,12.45],[-3.55,9.45],[-1.851,2.35],[-1.851,1.95],[-7.15,1.15],[-6.95,-0.35],[-1.45,0.45],[-0.75,-2.65],[-6.45,-3.55],[-6.25,-5.15],[-0.351,-4.35],[0.149,-5.95],[2.35,-11.15],[7.05,-13.65],[9.449,-12.65],[9.75,-12.15],[9.449,-10.95],[8.149,-11.15],[7.35,-12.05],[5.149,-12.25],[3.85,-10.35],[1.949,-3.85],[7.449,-3.05],[7.05,-1.55]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[20.15,19.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 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":[[11,0],[0,11.1],[-11.1,-0.1],[0,-11.2]],"o":[[-11,0],[0.1,-11],[11,0.1],[-0.1,10.9]],"v":[[0,20],[-20,-0.1],[0.1,-20],[20,0.2]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.564999988032,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[20,20],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":612,"op":703,"st":612,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"gnosis-2.ai","cl":"ai","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":512,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":527,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":587,"s":[100]},{"t":602,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,196,0],"ix":2},"a":{"a":0,"k":[1249.997,1250,0],"ix":1},"s":{"a":0,"k":[6,6,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[221.5,-215.25],[0,0],[0,0],[313.5,0],[0,0]],"o":[[0,0],[0,0],[-221.625,-221.5],[0,0],[-311.5,0]],"v":[[-829.75,-277],[6.375,561.25],[832,-260.25],[-4.125,-609.375],[-6.25,-609.375]],"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],[-361.625,0],[0,0],[-244.5,-271.75],[0,0]],"o":[[0,0],[0,0],[246.625,-261.25],[0,0],[365.75,0],[0,0],[0,0]],"v":[[6.25,726.375],[-992.875,-277],[-953.125,-318.75],[-8.375,-726.375],[-6.25,-726.375],[955.25,-297.875],[992.875,-256.125]],"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],[-52.25,0],[0,135.875],[27.125,39.75]],"o":[[39.75,27.125],[135.875,0],[0,-50.125],[0,0]],"v":[[447.375,467.125],[585.375,508.875],[832,262.25],[790.25,124.25]],"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,-56.375],[-135.875,0],[-41.75,33.375]],"o":[[-31.375,41.75],[0,135.875],[56.5,0],[0,0]],"v":[[-762.875,143.25],[-813,293.75],[-566.375,540.375],[-415.875,488.125]],"c":true},"ix":2},"nm":"Path 4","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,0.651000019148,0.769000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1247.875,726.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 1","np":6,"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],[50.125,-137.875],[236.25,83.625],[27.25,18.875],[0,0],[0,0],[144.25,50.125],[-87.75,240.375],[-20.875,31.25],[0,0],[0,0],[0,-223.625],[-666.75,0],[0,0],[-2,666.875],[115,190.125]],"o":[[0,0],[73.125,115],[-83.625,234.125],[-33.5,-12.5],[0,0],[0,0],[-119.125,79.375],[-242.5,-87.75],[12.5,-37.625],[0,0],[0,0],[-115,188.125],[-2.125,666.75],[0,0],[666.75,0],[0,-221.625],[0,0]],"v":[[1012.813,-936.5],[920.813,-844.5],[966.813,-447.375],[387.813,-173.5],[295.813,-219.5],[1.063,75.25],[-256.063,-184],[-672.063,-131.75],[-952.188,-725.375],[-899.938,-827.75],[-1010.688,-938.5],[-1031.563,-903],[-1209.188,-273.875],[-1.063,938.5],[1.063,938.5],[1211.313,-269.75],[1035.688,-898.875]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,0.651000019148,0.769000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1248.938,1561.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":"Group 2","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":512,"op":603,"st":512,"bm":0},{"ddd":0,"ind":5,"ty":4,"nm":"mantradao.ai","cl":"ai","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":412,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":427,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":487,"s":[100]},{"t":502,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,199.956,0],"ix":2},"a":{"a":0,"k":[992.5,505.757,0],"ix":1},"s":{"a":0,"k":[16.1,16.1,100],"ix":6}},"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],[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],[0,0]],"v":[[87.351,107.061],[9.471,-107.061],[-9.469,-107.061],[-87.351,107.061],[-63.453,107.061],[-48.315,63.646],[-38.891,36.322],[-38.985,36.322],[-0.14,-75.357],[35.37,26.134],[38.89,36.322],[48.32,63.646],[63.459,107.061]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1018.48,506.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],[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],[0,0]],"v":[[87.35,107.061],[9.47,-107.061],[-9.47,-107.061],[-87.35,107.061],[-63.461,107.061],[-50.6,70.311],[-38.89,36.322],[-29.94,10.425],[-0.14,-75.357],[38.99,36.322],[38.89,36.322],[50.13,68.692],[63.459,107.061]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1457.48,506.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},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[34.18,0],[8.85,9.521],[0,20.851],[0,0],[-8.66,9.807],[-17.14,0],[0,-41.606],[0,0]],"o":[[0,39.891],[-16.94,0],[-8.85,-9.521],[0,0],[0,-21.898],[8.66,-9.806],[34.08,0],[0,0],[0,0]],"v":[[51.51,29.086],[0.28,88.971],[-38.37,74.69],[-51.6,29.086],[-51.6,-26.801],[-38.56,-74.405],[0.19,-89.162],[51.41,-26.801],[51.41,29.086]],"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":[[13.42,13.139],[22.47,0],[13.42,-13.138],[0,-28.277],[0,0],[-13.33,-13.138],[-22.761,0],[-13.42,13.14],[0,28.276],[0,0]],"o":[[-13.33,-13.138],[-22.75,0],[-13.43,13.139],[0,0],[0,28.372],[13.32,13.14],[22.56,0],[13.43,-13.138],[0,0],[0,-28.277]],"v":[[54.08,-89.924],[0.28,-109.631],[-53.98,-89.924],[-74.17,-27.753],[-74.17,27.753],[-54.17,89.923],[0,109.631],[53.98,89.923],[74.17,27.753],[74.17,-27.753]],"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":[1,1,1,1],"ix":4},"o":{"a":0,"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.9,506.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 3","np":4,"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],[33.901,0],[0,0],[0,0],[0,0],[-8.76,-9.901],[0,-21.803],[0,0]],"o":[[0,40.082],[0,0],[0,0],[0,0],[16.381,0],[8.75,9.902],[0,0],[0,0]],"v":[[50.65,26.42],[-0.19,86.591],[-50.74,86.591],[-50.74,-86.591],[-0.19,-86.591],[37.52,-71.739],[50.751,-24.23],[50.751,26.42]],"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":[[22.75,0],[0,0],[0,0],[0,0],[-13.33,13.137],[0,28.277],[0,0],[13.33,13.139]],"o":[[0,0],[0,0],[0,0],[22.75,0],[13.33,-13.139],[0,0],[0,-28.372],[-13.42,-13.233]],"v":[[-0.469,-107.061],[-73.69,-107.061],[-73.69,107.061],[-0.469,107.061],[53.701,87.353],[73.691,25.182],[73.691,-25.087],[53.701,-87.258]],"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":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1273.87,506.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 4","np":4,"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],[-7.617,-6.76],[0,-13.234],[7.712,-6.951],[13.9,0]],"o":[[0,0],[0,0],[14.091,0],[7.426,6.76],[0,12.853],[-7.616,6.95],[0,0]],"v":[[-51.649,-6.522],[-51.649,-86.591],[3.284,-86.591],[35.75,-76.499],[46.984,-46.509],[35.464,-16.899],[3.19,-6.522]],"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":[[-8.092,9.901],[0,15.329],[11.52,10.473],[20.089,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"o":[[8.093,-9.902],[0,-19.232],[-11.425,-10.377],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[14.471,-3.332]],"v":[[57.552,-8.997],[69.644,-46.89],[52.411,-91.447],[5.094,-107.061],[-74.31,-107.061],[-74.31,107.061],[-51.649,107.061],[-51.649,13.091],[-0.143,13.091],[48.222,107.061],[74.31,107.061],[23.755,10.901]],"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":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[842.251,506.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 5","np":4,"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],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-72.31,-86.591],[-11.187,-86.591],[-11.187,107.061],[11.187,107.061],[11.187,-86.591],[72.31,-86.591],[72.31,-107.061],[-72.31,-107.061]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[668.308,506.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 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],[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]],"v":[[55.41,64.884],[-55.411,-107.061],[-78.07,-107.061],[-78.07,107.061],[-55.411,107.061],[-55.411,-65.455],[55.41,107.061],[78.07,107.061],[78.07,-107.061],[55.41,-107.061]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[490.699,506.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 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],[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],[0,0],[0,0]],"v":[[-9.473,-107.061],[-87.353,107.061],[-63.456,107.061],[-47.937,62.599],[-38.892,36.322],[-38.987,36.322],[-0.143,-75.357],[24.897,-3.761],[38.892,36.322],[38.797,36.322],[47.366,60.98],[63.456,107.061],[87.353,107.061],[9.473,-107.061]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[298.332,506.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 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],[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],[0,0]],"v":[[0.143,37.274],[-69.358,-107.061],[-92.018,-107.061],[-92.018,107.061],[-69.358,107.061],[-69.358,-60.504],[-8.521,64.217],[8.808,64.217],[69.358,-60.504],[69.358,107.061],[92.018,107.061],[92.018,-107.061],[69.358,-107.061]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[92.018,506.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 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":[[-108.641,-26.687],[57.309,47.41],[-5.471,-4.407]],"o":[[-90.99,-20.275],[2.809,1.676],[25.6,20.627]],"v":[[-135.419,488.118],[-338.829,385.656],[-326.499,394.997]],"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":[[2.741,0.27],[-85.609,20.39],[27.49,6.606]],"o":[[62.19,17.572],[-93.089,20.846],[-5.71,-1.372]],"v":[[-135.98,467.439],[58.94,470.672],[-123.3,470.098]],"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":[[-109.059,22.057],[72.47,16.796],[-6.65,-1.299],[0,0]],"o":[[-90.46,22.527],[3.201,0.236],[0,0],[32.041,6.261]],"v":[[85.53,484.723],[-142.23,483.973],[-127.44,486.473],[-127.44,486.474]],"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":[[2.641,-0.261],[3.41,-0.014],[1.34,0.133],[-7.099,0.53]],"o":[[-3.33,0.095],[-1.22,-0.068],[6.92,-0.178],[-2.12,0.51]],"v":[[-7.71,490.974],[-17.84,491.134],[-21.68,490.834],[-0.64,489.776]],"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":[[-3.549,0.591],[3.5,-0.501]],"o":[[-3.559,0.589],[3.509,-0.499]],"v":[[40.48,484.814],[29.891,486.449]],"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.411,0.058],[0.41,-0.058],[-1.22,0.665],[-1.35,0.677],[6.069,0.078],[4.83,-1.574],[0,0],[2.41,-0.597],[7.33,-0.166],[2.069,0.328],[4.721,-0.834],[0.78,0.017],[-11.17,-0.364],[9.401,0.737],[73.58,45.986],[-117.37,-9.209],[-11.691,-0.022],[-5.159,0.023],[-2.92,0.29],[-8.261,2.677]],"o":[[-0.411,0.057],[1.68,-0.544],[1.94,-1.058],[-3.829,1.267],[-6.681,-0.083],[0,0],[-2.11,0.686],[-7.491,0.546],[-1.83,-0.197],[-22.901,-3.628],[-1.279,0.227],[7.87,0.627],[-9.739,-0.139],[-94.189,-8.055],[37.74,31.281],[11.2,0.957],[5.109,0.122],[3.891,0.219],[14.711,-0.417],[0.399,-0.056]],"v":[[29.891,486.449],[28.671,486.62],[33.04,484.808],[37.96,482.219],[22.471,484.724],[6.4,487.7],[6.4,487.701],[-0.279,489.687],[-22.52,490.748],[-28.369,489.964],[-65.34,488.825],[-68.34,489.201],[-38.93,490.815],[-67.64,489.483],[-313.22,395.805],[-67.64,489.483],[-33.319,490.973],[-17.84,491.134],[-7.71,490.974],[28.671,486.621]],"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.16,0.022],[0,0]],"o":[[0,0],[-0.17,-0.003]],"v":[[-68.829,489.162],[-68.34,489.201]],"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.079,0.109],[-0.139,0.17],[-0.03,-0.047],[0.019,-0.047],[0.149,-0.071],[0.099,0.007],[0,0],[0.011,0.001],[0.03,0]],"o":[[0.091,-0.12],[0.021,0.051],[0.06,0.087],[-0.08,0.143],[-0.071,0.024],[0,0],[-0.011,-0.002],[-0.029,-0.002],[0.07,-0.085]],"v":[[-373.09,-354.629],[-372.76,-355.059],[-372.669,-354.91],[-372.579,-354.7],[-372.909,-354.342],[-373.159,-354.333],[-373.169,-354.334],[-373.21,-354.338],[-373.3,-354.342]],"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.25,0.008],[-0.14,0.01],[0.099,-0.084],[0.141,-0.067],[0.12,0.016],[0.04,0],[-0.03,0.062],[-0.1,0.05]],"o":[[0.099,-0.004],[-0.15,0.12],[-0.151,0.141],[-0.069,0.048],[-0.05,-0.008],[0.03,-0.055],[0.069,-0.138],[0.13,-0.075]],"v":[[-81.659,-500.28],[-81.29,-500.299],[-81.649,-499.994],[-82.05,-499.69],[-82.359,-499.674],[-82.51,-499.69],[-82.419,-499.869],[-82.19,-500.192]],"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.13,-0.073],[-0.061,-0.029],[0.08,-0.019],[0.19,0.027],[0.101,0.088],[0.05,0.036],[-0.13,0.01],[-0.12,0]],"o":[[0.049,0.027],[-0.08,0.018],[-0.22,0.059],[-0.099,-0.024],[-0.04,-0.043],[0.149,0],[0.13,-0.008],[0.099,0]],"v":[[13.971,-495.472],[14.131,-495.388],[13.891,-495.33],[13.27,-495.244],[12.98,-495.444],[12.841,-495.567],[13.261,-495.586],[13.631,-495.603]],"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.21,-0.096],[0,0],[0,0],[0,0],[-0.071,-0.032],[0.06,-0.028],[0.08,0.025],[0.151,0.081],[0.071,0.036],[-0.04,0.025],[-0.07,-0.024]],"o":[[0,0],[0,0],[0,0],[0.05,0.027],[-0.08,0.031],[-0.139,0.067],[-0.141,-0.048],[-0.069,-0.039],[0.03,-0.012],[0.101,-0.051],[0.199,0.027]],"v":[[52.98,-492.11],[52.98,-492.109],[52.98,-492.106],[52.99,-492.105],[53.181,-492.017],[52.98,-491.926],[52.671,-491.838],[52.24,-492.046],[52.03,-492.161],[52.15,-492.221],[52.421,-492.304]],"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":[[0,0],[0.151,-0.144],[0.019,0.022],[-0.03,0.027],[-0.151,0.108]],"o":[[-0.11,0.144],[-0.01,-0.017],[-0.081,-0.073],[0.111,-0.144],[0,0]],"v":[[-408.94,-311.426],[-409.3,-310.995],[-409.359,-311.054],[-409.51,-311.246],[-409.149,-311.641]],"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.04,-0.142],[0,0],[0,0],[0.029,-0.131],[0.21,0.147],[0,0],[0.101,0.069],[-0.05,0.029],[-0.091,-0.023],[-0.28,-0.143]],"o":[[0,0],[0,0],[-0.03,0.103],[-0.301,-0.201],[0,0],[-0.12,-0.078],[0.061,-0.013],[0.09,-0.047],[0.319,0.071],[0.031,0]],"v":[[163.77,-459.979],[163.77,-459.976],[163.77,-459.968],[163.671,-459.607],[162.91,-460.123],[162.78,-460.211],[162.45,-460.431],[162.61,-460.502],[162.881,-460.574],[163.81,-460.216]],"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.031,-0.006],[0.031,-0.037],[0.181,0],[-0.059,0.069],[0,0],[0,0],[-0.16,0.117],[-0.141,-0.041],[0,0]],"o":[[-0.141,0.323],[-0.58,-0.072],[0.07,-0.071],[0,0],[0,0],[0.141,-0.159],[0.08,-0.053],[0,0],[0.04,0.01]],"v":[[-232.159,-433.9],[-232.48,-433.218],[-233.38,-433.29],[-233.18,-433.499],[-233.14,-433.546],[-233.14,-433.547],[-232.699,-433.971],[-232.319,-433.94],[-232.27,-433.926]],"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.21,-0.175],[0,0],[0,0],[-0.091,-0.069],[-0.981,-1.108],[0,0],[0.03,0.009],[0.219,0.251],[-0.041,0]],"o":[[0,0],[0,0],[0.08,0.063],[-0.181,0.126],[0,0],[0.42,0.476],[-0.26,-0.18],[-0.031,-0.035],[0.189,0.094]],"v":[[-382.35,355.202],[-382.279,355.258],[-382.21,355.314],[-381.949,355.512],[-379.489,358.622],[-379.489,358.623],[-378.8,359.423],[-383.279,355.225],[-382.919,354.795]],"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":[[0,0],[-0.129,0.027],[-0.21,-0.036],[0.09,-0.017],[0.279,0],[0.15,0.038],[0.099,0.014],[-0.221,0.055]],"o":[[0.129,-0.032],[0.32,0.107],[-0.069,0.016],[-0.291,0.063],[-0.151,0],[-0.1,-0.026],[0.25,-0.045],[0,0]],"v":[[96.081,-483.25],[96.46,-483.341],[97.24,-483.126],[97.001,-483.075],[96.131,-482.946],[95.681,-483.024],[95.381,-483.09],[96.081,-483.249]],"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":[[-0.309,-0.069],[0,0],[-0.291,-0.054],[0.099,-0.072],[0.129,0.026],[0.2,0.116],[0,0],[0.09,0.044],[-0.011,0.024],[-0.01,0.013],[0,0],[0,0],[-0.05,0]],"o":[[0,0],[0.2,0.042],[-0.15,0.094],[-0.261,0.177],[-0.22,-0.05],[0,0],[-0.09,-0.05],[0.021,-0.021],[0.01,-0.012],[0,0],[0,0],[0.08,-0.111],[0.25,0.023]],"v":[[127.03,-475.528],[127.03,-475.528],[127.751,-475.382],[127.381,-475.132],[126.851,-474.88],[126.221,-475.165],[126.221,-475.166],[125.95,-475.31],[126.001,-475.377],[126.03,-475.415],[126.051,-475.45],[126.051,-475.455],[126.24,-475.669]],"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.17,0.082],[-0.17,0.076],[-0.141,-0.036],[0.12,-0.063],[0.239,-0.096],[0.139,0.074],[0.05,0.021]],"o":[[0.189,-0.09],[0.25,0.072],[-0.12,0.06],[-0.24,0.128],[-0.101,0.05],[-0.061,-0.03],[0.18,-0.085]],"v":[[-78.029,-481.298],[-77.489,-481.549],[-76.949,-481.405],[-77.31,-481.218],[-78.029,-480.867],[-78.399,-480.965],[-78.56,-481.047]],"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.011,-0.054],[0.019,-0.053],[0.13,0.008],[0.271,0.049],[0.131,0.103],[0.03,0.022],[0.01,0.013],[0.019,0.013],[-0.141,0.012],[-0.21,-0.022],[-0.199,-0.056],[-0.09,-0.024]],"o":[[-0.01,0.054],[-0.141,-0.011],[-0.28,-0.016],[-0.149,-0.049],[-0.029,-0.022],[-0.019,-0.014],[-0.019,-0.013],[0.149,0],[0.21,-0.017],[0.189,0.024],[0.091,0.028],[-0.01,0.053]],"v":[[81.96,-486.765],[81.921,-486.604],[81.52,-486.631],[80.7,-486.711],[80.29,-486.962],[80.2,-487.028],[80.15,-487.068],[80.091,-487.106],[80.511,-487.129],[81.131,-487.141],[81.71,-487.006],[81.99,-486.926]],"c":true},"ix":2},"nm":"Path 19","mn":"ADBE Vector Shape - Group","hd":false},{"ind":19,"ty":"sh","ix":20,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-0.09,-0.105],[0,0],[0,0],[0.029,0],[0.25,0.357],[-0.111,0.108],[-0.06,-0.074],[-0.049,-0.067],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0.08,0.096],[0,0],[0,0],[-0.12,0.093],[-0.29,-0.323],[0,-0.036],[0.059,0.076],[0.061,0.068],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-439.84,284.814],[-439.76,284.905],[-439.51,285.205],[-439.55,285.232],[-439.6,285.271],[-439.869,285.456],[-440.699,284.452],[-440.409,284.129],[-440.23,284.353],[-440.06,284.557],[-439.94,284.697],[-439.93,284.703],[-439.93,284.706],[-439.909,284.735]],"c":true},"ix":2},"nm":"Path 20","mn":"ADBE Vector Shape - Group","hd":false},{"ind":20,"ty":"sh","ix":21,"ks":{"a":0,"k":{"i":[[-0.17,-0.085],[-0.191,-0.073],[0.09,-0.031],[0,0],[0.271,0],[0.11,0.103],[0.04,0.031],[-0.101,0.051],[-0.2,0.046]],"o":[[0.119,0.058],[-0.111,0.037],[0,0],[-0.42,0.152],[-0.1,0],[-0.05,-0.04],[0.101,-0.039],[0.189,-0.086],[0.09,-0.021]],"v":[[20.421,470.79],[20.881,470.995],[20.581,471.099],[20.57,471.106],[19.62,471.353],[19.29,471.143],[19.16,471.031],[19.471,470.892],[20.051,470.672]],"c":true},"ix":2},"nm":"Path 21","mn":"ADBE Vector Shape - Group","hd":false},{"ind":21,"ty":"sh","ix":22,"ks":{"a":0,"k":{"i":[[0.031,0.099],[-0.011,-0.027],[0.01,-0.235],[0.03,0.157]],"o":[[0.01,0.032],[0.05,0.199],[0.021,-0.167],[-0.021,-0.093]],"v":[[472.23,-111.793],[472.251,-111.704],[472.31,-111.022],[472.301,-111.509]],"c":true},"ix":2},"nm":"Path 22","mn":"ADBE Vector Shape - Group","hd":false},{"ind":22,"ty":"sh","ix":23,"ks":{"a":0,"k":{"i":[[-0.16,-0.083],[-0.119,-0.055],[0.091,-0.084],[0.319,-0.23],[0.15,0.159],[0.059,0.059],[-0.1,0.079],[-0.319,0.184]],"o":[[0.099,0.051],[-0.109,0.092],[-0.39,0.341],[-0.021,0],[-0.08,-0.08],[0.099,-0.077],[0.29,-0.219],[0.04,-0.022]],"v":[[-281.619,-424.959],[-281.29,-424.793],[-281.59,-424.529],[-282.619,-423.682],[-282.94,-424],[-283.149,-424.219],[-282.84,-424.454],[-281.93,-425.08]],"c":true},"ix":2},"nm":"Path 23","mn":"ADBE Vector Shape - Group","hd":false},{"ind":23,"ty":"sh","ix":24,"ks":{"a":0,"k":{"i":[[-0.33,-0.229],[-0.26,-0.165],[0.25,-0.006],[0.309,0.072],[0.16,0.192],[0.079,0.078],[-0.129,0.016],[-0.361,-0.052]],"o":[[0.17,0.111],[-0.371,0],[-0.521,0.014],[-0.17,-0.049],[-0.08,-0.087],[0.13,-0.01],[0.35,-0.04],[0.189,0.024]],"v":[[-50.699,-496.197],[-50.069,-495.782],[-50.989,-495.768],[-52.149,-495.818],[-52.64,-496.244],[-52.869,-496.499],[-52.48,-496.54],[-51.399,-496.571]],"c":true},"ix":2},"nm":"Path 24","mn":"ADBE Vector Shape - Group","hd":false},{"ind":24,"ty":"sh","ix":25,"ks":{"a":0,"k":{"i":[[-0.399,-0.218],[-0.349,-0.173],[0.25,-0.051],[0.18,0.062],[0.29,0.247],[0.139,0.099],[-0.071,0.014],[-0.04,0.01],[0,0],[-0.28,-0.052]],"o":[[0.241,0.128],[-0.419,0.046],[-0.349,0.07],[-0.33,-0.124],[-0.13,-0.108],[0.069,-0.012],[0.04,-0.009],[0,0],[0.3,-0.066],[0.3,0.045]],"v":[[161.9,-450.558],[162.77,-450.105],[161.77,-449.943],[161.02,-449.89],[160.11,-450.506],[159.721,-450.822],[159.931,-450.861],[160.06,-450.89],[160.07,-450.89],[160.94,-450.966]],"c":true},"ix":2},"nm":"Path 25","mn":"ADBE Vector Shape - Group","hd":false},{"ind":25,"ty":"sh","ix":26,"ks":{"a":0,"k":{"i":[[0.34,-0.332],[0.431,-0.432],[0.02,0.075],[-0.07,0.073],[-0.61,0.61],[-0.141,-0.108]],"o":[[-0.379,0.364],[-0.019,-0.09],[-0.04,-0.163],[0.571,-0.61],[0,-0.036],[-0.32,0.324]],"v":[[-325.23,-399.118],[-326.43,-397.939],[-326.48,-398.187],[-326.47,-398.548],[-324.68,-400.377],[-324.249,-400.09]],"c":true},"ix":2},"nm":"Path 26","mn":"ADBE Vector Shape - Group","hd":false},{"ind":26,"ty":"sh","ix":27,"ks":{"a":0,"k":{"i":[[-0.04,0.006],[0,0]],"o":[[0,0],[-0.04,0.027]],"v":[[466.24,-136.579],[466.23,-136.606]],"c":true},"ix":2},"nm":"Path 27","mn":"ADBE Vector Shape - Group","hd":false},{"ind":27,"ty":"sh","ix":28,"ks":{"a":0,"k":{"i":[[-0.021,0.021],[0,0],[0.031,-0.008],[0,0.004]],"o":[[0,0],[-0.03,0.006],[0,-0.004],[0.021,-0.018]],"v":[[466.971,-134.505],[466.99,-134.455],[466.9,-134.434],[466.91,-134.446]],"c":true},"ix":2},"nm":"Path 28","mn":"ADBE Vector Shape - Group","hd":false},{"ind":28,"ty":"sh","ix":29,"ks":{"a":0,"k":{"i":[[0,0],[-0.021,0]],"o":[[-0.01,0.017],[0,0]],"v":[[484.681,10.974],[484.681,11.001]],"c":true},"ix":2},"nm":"Path 29","mn":"ADBE Vector Shape - Group","hd":false},{"ind":29,"ty":"sh","ix":30,"ks":{"a":0,"k":{"i":[[-0.04,-0.018],[-0.03,-0.014],[0,0],[0,0],[0,0],[0.53,-0.402],[0.159,0.137],[0.019,0.022],[0.029,0.02],[-0.2,0.178],[0,0],[0,0],[-0.401,0.329],[-0.231,-0.119],[0,0]],"o":[[0.021,0.014],[0,0],[0,0],[0,0],[-0.611,0.525],[-0.05,0.026],[-0.021,-0.023],[-0.031,-0.025],[0.199,-0.173],[0,0],[0,0],[0.38,-0.339],[0.049,-0.026],[0,0],[0.03,0.018]],"v":[[-353.68,-374.032],[-353.6,-373.989],[-353.739,-373.873],[-353.899,-373.735],[-353.899,-373.731],[-355.54,-372.376],[-355.919,-372.633],[-355.989,-372.702],[-356.079,-372.77],[-355.48,-373.298],[-355.48,-373.3],[-355.48,-373.301],[-354.319,-374.312],[-353.869,-374.131],[-353.79,-374.086]],"c":true},"ix":2},"nm":"Path 30","mn":"ADBE Vector Shape - Group","hd":false},{"ind":30,"ty":"sh","ix":31,"ks":{"a":0,"k":{"i":[[0.01,0.029],[-0.04,-0.05]],"o":[[-0.021,0.007],[-0.01,-0.03]],"v":[[446.421,-61.1],[446.45,-61.011]],"c":true},"ix":2},"nm":"Path 31","mn":"ADBE Vector Shape - Group","hd":false},{"ind":31,"ty":"sh","ix":32,"ks":{"a":0,"k":{"i":[[0,0],[0.521,-0.395],[-0.029,0],[0,0],[-1.62,1.111],[-0.091,-0.079],[-0.06,-0.047],[1.13,-0.853],[0,0]],"o":[[-0.5,0.377],[-0.22,-0.323],[0,0],[1.569,-1.147],[0.021,0],[0.069,0.061],[-1.09,0.795],[0,0],[0,0]],"v":[[-305.01,-391.316],[-306.55,-390.159],[-306.88,-390.697],[-306.869,-390.698],[-302.1,-394.103],[-301.919,-393.956],[-301.71,-393.78],[-305.01,-391.319],[-305.01,-391.317]],"c":true},"ix":2},"nm":"Path 32","mn":"ADBE Vector Shape - Group","hd":false},{"ind":32,"ty":"sh","ix":33,"ks":{"a":0,"k":{"i":[[-0.261,0.349],[-0.11,0.147],[-0.529,-0.627],[0,0],[-0.541,-0.658],[0,0],[1.219,1.148]],"o":[[0.09,-0.121],[0.59,0.714],[0,0],[0.591,0.694],[0,0],[-1.25,-1.113],[-0.031,-0.027]],"v":[[-367.329,355.449],[-367.02,355.046],[-365.34,357.044],[-365.34,357.051],[-363.649,359.062],[-341.329,380.504],[-367.739,356.05]],"c":true},"ix":2},"nm":"Path 33","mn":"ADBE Vector Shape - Group","hd":false},{"ind":33,"ty":"sh","ix":34,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[1.259,-0.107],[1.221,0.143],[-0.47,0.089],[-1.099,0.05],[-0.66,-0.221],[-0.34,-0.085]],"o":[[0,0],[-1.33,0.107],[-1.29,-0.107],[0.471,-0.076],[1.08,-0.206],[0.641,0],[0.34,0.114],[0,0]],"v":[[-53.409,-464.733],[-53.409,-464.733],[-57.319,-464.411],[-61.05,-464.769],[-59.649,-465.024],[-56.39,-465.486],[-54.43,-465.046],[-53.409,-464.734]],"c":true},"ix":2},"nm":"Path 34","mn":"ADBE Vector Shape - Group","hd":false},{"ind":34,"ty":"sh","ix":35,"ks":{"a":0,"k":{"i":[[-0.14,-0.104],[-0.16,-0.114],[0.979,-0.876],[0,0],[0,0],[0.62,-0.541],[0,0],[-1.54,1.434]],"o":[[0.11,0.087],[-1.051,0.922],[0,0],[0,0],[-0.62,0.554],[0,0],[1.51,-1.47],[0,-0.019]],"v":[[-360.09,-369.286],[-359.669,-368.97],[-362.699,-366.277],[-362.699,-366.275],[-362.699,-366.274],[-364.55,-364.632],[-364.869,-365.062],[-360.31,-369.436]],"c":true},"ix":2},"nm":"Path 35","mn":"ADBE Vector Shape - Group","hd":false},{"ind":35,"ty":"sh","ix":36,"ks":{"a":0,"k":{"i":[[0.02,0.071],[0,0],[-7.309,-6.438],[0,0],[0,0],[0,0],[0,0],[-1.07,-1.035],[0,0],[0,0],[1.941,1.828],[0.01,0.17]],"o":[[0,0],[0.91,0.862],[0,0],[0,0],[0,0],[0,0],[8.441,7.432],[26.09,23.354],[0,0],[-1.941,-1.793],[-0.069,-0.095],[0,-0.086]],"v":[[-377.29,360.819],[-376.6,360.819],[-361.51,374.17],[-361.44,374.231],[-361.43,374.24],[-361.399,374.263],[-361.39,374.271],[-342.89,390.654],[-344.449,389.873],[-371.359,366.914],[-377.18,361.5],[-377.27,361.06]],"c":true},"ix":2},"nm":"Path 36","mn":"ADBE Vector Shape - Group","hd":false},{"ind":36,"ty":"sh","ix":37,"ks":{"a":0,"k":{"i":[[-0.29,-0.138],[-0.26,-0.112],[1.181,-1.059],[0,0],[0,0],[0.91,-0.819],[0.14,0.107],[-0.961,0.995],[-0.971,0.986]],"o":[[0.16,0.073],[-1.319,1.181],[0,0],[0,0],[-0.92,0.833],[-0.04,0],[0.97,-0.986],[0.97,-0.995],[0.029,-0.047]],"v":[[-367.22,-356.772],[-366.59,-356.493],[-370.3,-353.161],[-370.3,-353.157],[-370.31,-353.15],[-373.05,-350.685],[-373.48,-350.971],[-370.579,-353.947],[-367.669,-356.923]],"c":true},"ix":2},"nm":"Path 37","mn":"ADBE Vector Shape - Group","hd":false},{"ind":37,"ty":"sh","ix":38,"ks":{"a":0,"k":{"i":[[-0.04,0.151],[-0.099,-0.139]],"o":[[-0.151,0.173],[0.061,-0.166]],"v":[[445.891,-64.051],[445.74,-63.574]],"c":true},"ix":2},"nm":"Path 38","mn":"ADBE Vector Shape - Group","hd":false},{"ind":38,"ty":"sh","ix":39,"ks":{"a":0,"k":{"i":[[1.28,-0.879],[1.279,-0.879],[0.179,0],[-0.041,0.116],[-0.169,0.121],[-2.44,1.542],[-0.179,-0.108],[0.111,-0.072]],"o":[[-1.281,0.878],[-0.361,-0.144],[0.04,-0.105],[0.069,-0.239],[2.4,-1.649],[0.14,-0.143],[0.101,0.035],[-1.27,0.879]],"v":[[-316.279,-405.127],[-320.119,-402.492],[-320.869,-402.707],[-320.749,-403.044],[-320.44,-403.64],[-313.19,-408.408],[-312.47,-408.372],[-312.44,-407.763]],"c":true},"ix":2},"nm":"Path 39","mn":"ADBE Vector Shape - Group","hd":false},{"ind":39,"ty":"sh","ix":40,"ks":{"a":0,"k":{"i":[[-0.399,-0.027],[-0.34,0],[0.281,-0.256],[0.261,-0.189],[3.08,-1.972],[0.391,-0.143],[-0.05,0.127],[-0.2,0.146],[-3.41,2.33]],"o":[[0.231,0.015],[-0.481,0.391],[-0.319,0.285],[-3.05,2.007],[-0.361,0.215],[0.061,-0.116],[0.099,-0.264],[3.33,-2.366],[0.16,-0.114]],"v":[[-280.09,-408.55],[-279.239,-408.516],[-280.35,-407.559],[-281.18,-406.866],[-290.399,-400.915],[-291.55,-400.413],[-291.399,-400.783],[-291.01,-401.453],[-280.89,-408.48]],"c":true},"ix":2},"nm":"Path 40","mn":"ADBE Vector Shape - Group","hd":false},{"ind":40,"ty":"sh","ix":41,"ks":{"a":0,"k":{"i":[[1.92,-2.067],[0,0],[0,0],[-5.21,5.522],[-0.32,0.296],[0,0],[-0.2,0.2],[-0.931,1.004],[0.201,-0.393],[0.681,-0.727],[3.861,-4.127],[0,0]],"o":[[-0.22,0.251],[0.29,-0.538],[0,0],[0.3,-0.324],[0,0],[0.201,-0.194],[0.969,-1.004],[-0.211,0.376],[-0.469,0.918],[-3.83,4.159],[0,0],[-1.929,2.064]],"v":[[-397.88,-323.795],[-405.35,-315.956],[-398.279,-325.05],[-382.699,-341.614],[-381.77,-342.531],[-381.77,-342.532],[-381.159,-343.12],[-378.329,-346.131],[-378.94,-344.969],[-380.55,-342.403],[-392.1,-329.991],[-392.1,-329.99]],"c":true},"ix":2},"nm":"Path 41","mn":"ADBE Vector Shape - Group","hd":false},{"ind":41,"ty":"sh","ix":42,"ks":{"a":0,"k":{"i":[[0.019,0.005],[0,0]],"o":[[0,0],[0.03,0]],"v":[[450.391,-26.607],[450.391,-26.598]],"c":true},"ix":2},"nm":"Path 42","mn":"ADBE Vector Shape - Group","hd":false},{"ind":42,"ty":"sh","ix":43,"ks":{"a":0,"k":{"i":[[-0.031,-0.028],[0,0]],"o":[[0,0],[-0.031,0]],"v":[[449.261,-37.894],[449.261,-37.939]],"c":true},"ix":2},"nm":"Path 43","mn":"ADBE Vector Shape - Group","hd":false},{"ind":43,"ty":"sh","ix":44,"ks":{"a":0,"k":{"i":[[0.049,0.411],[-0.08,-0.416]],"o":[[0.019,0.409],[-0.061,-0.414]],"v":[[449.261,-32.632],[449.421,-31.393]],"c":true},"ix":2},"nm":"Path 44","mn":"ADBE Vector Shape - Group","hd":false},{"ind":44,"ty":"sh","ix":45,"ks":{"a":0,"k":{"i":[[-0.031,-0.367],[0,0]],"o":[[0,0],[-0.031,0.338]],"v":[[449.261,-32.632],[449.261,-33.686]],"c":true},"ix":2},"nm":"Path 45","mn":"ADBE Vector Shape - Group","hd":false},{"ind":45,"ty":"sh","ix":46,"ks":{"a":0,"k":{"i":[[0.67,-0.119],[-0.691,0],[0,0]],"o":[[0.691,-0.031],[-0.04,-0.072],[-0.66,0.063]],"v":[[-33.69,-466.217],[-31.619,-466.275],[-31.699,-466.49]],"c":true},"ix":2},"nm":"Path 46","mn":"ADBE Vector Shape - Group","hd":false},{"ind":46,"ty":"sh","ix":47,"ks":{"a":0,"k":{"i":[[-1.04,0.102],[0.791,0],[0.149,-0.123],[0.091,-0.05],[0,0]],"o":[[-0.78,-0.065],[-0.159,0],[-0.091,0.068],[0,0],[1.01,-0.102]],"v":[[-34.18,-466.186],[-36.54,-466.311],[-36.999,-466.068],[-37.26,-465.881],[-37.249,-465.881]],"c":true},"ix":2},"nm":"Path 47","mn":"ADBE Vector Shape - Group","hd":false},{"ind":47,"ty":"sh","ix":48,"ks":{"a":0,"k":{"i":[[-1.96,0.004],[2.351,0.08],[3.12,0.09],[0.279,-0.064],[0.151,-0.024],[-0.16,-0.056],[-0.28,0],[-3.5,0.014]],"o":[[-2.349,-0.073],[-3.13,-0.108],[-0.29,0],[-0.151,0.032],[0.161,0.038],[0.29,0.103],[3.51,0.012],[1.959,-0.008]],"v":[[-13.55,-496.283],[-20.59,-496.517],[-29.97,-496.822],[-30.829,-496.694],[-31.27,-496.607],[-30.8,-496.456],[-29.94,-496.248],[-19.419,-496.264]],"c":true},"ix":2},"nm":"Path 48","mn":"ADBE Vector Shape - Group","hd":false},{"ind":48,"ty":"sh","ix":49,"ks":{"a":0,"k":{"i":[[2.341,0.507],[0,0],[0,0],[-1.92,-0.552],[-0.25,-0.02],[-0.08,-0.01],[0.059,0.07],[0.18,0.026]],"o":[[0,0],[0,0],[1.91,0.58],[0.241,0.08],[0.089,0.007],[-0.059,-0.062],[-0.14,-0.174],[-2.33,-0.541]],"v":[[121.99,-463.71],[122.921,-463.431],[122.921,-463.43],[128.65,-461.722],[129.391,-461.601],[129.65,-461.578],[129.471,-461.781],[129.001,-462.152]],"c":true},"ix":2},"nm":"Path 49","mn":"ADBE Vector Shape - Group","hd":false},{"ind":49,"ty":"sh","ix":50,"ks":{"a":0,"k":{"i":[[0,0],[0.151,-0.165],[0.16,-0.179],[-0.149,-0.05],[-0.351,-0.025],[-1.26,-0.056],[-2.481,-0.334],[-4.91,-0.447],[-11.72,-4.193],[-1.04,0.013],[-0.8,-0.177],[-5.5,-1.2],[0,0],[-3.911,-0.834],[-1.07,-0.143],[-1.42,-0.417],[-2.029,-0.868],[-0.889,-0.359],[-4.781,-0.224],[0.18,0.043],[13.98,2.855],[3.99,0.866],[13.569,1.864],[7.699,0.405],[3.33,0.228]],"o":[[-0.149,0.16],[-0.17,0.189],[0.151,0.044],[0.34,0.114],[1.26,0.084],[2.521,0.111],[4.889,0.648],[12.21,1.112],[0.931,0.336],[0.849,-0.011],[5.519,1.152],[0,0],[3.91,0.853],[1.049,0.224],[1.491,0.199],[2.1,0.624],[0.88,0.378],[0.151,-0.418],[2.05,0.097],[-8.65,-2.313],[-6.391,-1.304],[-13.38,-2.94],[-7.641,-1.051],[-3.341,-0.175],[0,0]],"v":[[8.73,-485.356],[8.28,-484.865],[7.78,-484.309],[8.23,-484.165],[9.251,-483.915],[13.03,-483.719],[20.551,-483.162],[35.261,-481.619],[71.41,-475.202],[74.421,-474.892],[76.931,-474.736],[93.45,-471.182],[93.46,-471.181],[105.181,-468.641],[108.36,-468.13],[112.751,-467.315],[118.91,-464.955],[121.57,-463.84],[134.801,-463.645],[138.081,-463.525],[98.351,-472.184],[82.24,-475.525],[41.801,-482.911],[18.751,-484.771],[8.751,-485.349]],"c":true},"ix":2},"nm":"Path 50","mn":"ADBE Vector Shape - Group","hd":false},{"ind":50,"ty":"sh","ix":51,"ks":{"a":0,"k":{"i":[[0.229,0.122],[-0.03,-0.098],[-0.231,-0.181],[-2.229,-1.613],[0,0],[1.831,1.47],[0.479,0.224]],"o":[[0.04,0.09],[0.119,0.317],[2.159,1.649],[2.221,1.613],[0,0],[-0.4,-0.328],[-0.24,-0.108]],"v":[[-337.279,372.041],[-337.169,372.324],[-336.699,373.152],[-330.09,378.028],[-309.31,392.216],[-335.23,373.152],[-336.579,372.379]],"c":true},"ix":2},"nm":"Path 51","mn":"ADBE Vector Shape - Group","hd":false},{"ind":51,"ty":"sh","ix":52,"ks":{"a":0,"k":{"i":[[-3.49,4.548],[-1.589,2.048],[-0.97,1.426],[0,0],[-1.731,2.694],[-1.17,1.562],[0,0],[-1.14,1.797],[-3.34,6.131],[-1.349,2.464],[0,0],[0,0],[0,0],[-4.629,9.963],[-3.491,9.062],[0,0],[0,0],[-1.381,3.469],[-0.441,1.086],[0,0],[0,0],[0,0],[-1.66,5.299],[-3.021,11.33],[-0.149,0.57],[0,0],[-2.301,11.597],[-1.19,11.366],[-0.08,11.185],[-0.08,5.017],[0,0],[0,0],[0,0],[0,0],[0.29,9.862],[0.229,3.807],[0,0],[1.25,8.043],[4.119,21.404],[39.58,51.743],[46.321,31.609],[80.699,11.754],[13.65,1.333],[3.19,0.319],[4.189,0.165],[1.96,0.103],[0,0],[0,0],[0,0],[0.93,-0.251],[0.181,0.099],[0.071,0.032],[-0.13,0.098],[-0.141,0.107],[0,0],[2.101,-0.133],[3.11,-0.235],[9.941,-0.896],[2.059,-0.166],[6.47,-0.982],[9.87,-2.366],[13.17,-3.873],[3.079,-1.382],[2.429,-0.871],[3.46,-1.017],[2.59,-0.85],[0.531,-0.524],[0.62,-0.245],[2.99,-1.151],[0,0],[4.47,-1.994],[7.86,-4.124],[9.689,-5.45],[0.8,-0.898],[0,0],[0.41,-0.399],[-0.05,-0.06],[-0.019,-0.023],[-4.34,2.294],[-8.61,4.198],[-9.569,4.26],[0,0],[-3.87,1.747],[-1.301,0.613],[-3.78,1.161],[-2.95,0.582],[-3.559,1.372],[0,0],[0,0],[-7.029,1.288],[-6.259,1.472],[-3.861,0.832],[-1.34,0.033],[-1.25,0.246],[-2.63,0.647],[-4.41,0.515],[-9.191,0.473],[-1.561,0.083],[-5.36,0.127],[-2.681,0.083],[-1.21,0.041],[-3.599,0],[-2.06,-0.109],[-1.88,-0.017],[-1.8,0.048],[-2.62,-0.17],[-11.591,-1.04],[-0.96,-0.381],[-0.401,-0.137],[0.46,-0.016],[0.929,0],[1.15,0.036],[3.371,0.168],[6.709,0.143],[3.439,0.005],[-0.181,0.039],[-0.181,0.032],[0.189,0.105],[0.439,0.024],[2.47,0.102],[6.581,-0.183],[13.2,-1.219],[5.43,-1.056],[2.429,-0.422],[1.87,-0.33],[0,0],[4.149,-0.765],[3.991,-0.701],[10.099,-2.216],[7.321,-2.869],[9.08,-3.731],[0,0],[5.069,-2.054],[2.491,-0.922],[4.41,-2.166],[11.34,-6.454],[12.241,-8.21],[3.441,-3.599],[1.601,-1.534],[0.441,-0.457],[0.45,-0.466],[1.221,-1.04],[0,0],[0,0],[2.871,-2.322],[2.17,-1.696],[0,0],[3.979,-3.551],[1.771,-2.291],[1.269,-1.393],[3.42,-3.558],[0,0],[0,0],[0,0],[0,0],[1.54,-1.625],[-0.01,-0.175],[0,0],[0.04,-0.333],[0.25,-0.046],[0.08,-0.021],[-0.08,0.242],[0,0],[-0.09,0.233],[1.62,-1.757],[-0.34,0.254],[-0.141,0.108],[0,0],[0.28,-0.17],[0.269,-0.179],[0.731,-0.988],[1.919,-2.162],[2.55,-2.742],[3.83,-4.646],[2.21,-3.579],[0,0],[1.279,-1.904],[3.3,-4.99],[0,0],[3.211,-4.805],[-2.53,2.921],[-1.79,2.398],[-5.851,7.278],[-3.46,3.923],[0,0],[0,0],[0,0],[0,0],[0,0],[-1.061,1.216],[-0.41,0.188],[-0.18,0.102],[0.04,-0.239],[0.27,-0.287],[0.65,-0.585],[0.771,-1.025],[4.811,-6.848],[2.291,-3.813],[0,0],[2.12,-3.174],[0,0],[0.031,-0.048],[0,0],[0,0],[0.781,-1.114],[0,0],[0,0],[0,0],[-0.19,0.172],[-0.41,0.406],[0,0],[-0.639,0.897],[-2.801,3.576],[-2.451,3.186],[0,0],[0,0],[0,0],[0,0],[-8.431,9.507],[-12.37,12.349],[-0.991,0.988],[-8.759,7.529],[-3.26,2.166],[0,0],[0,0],[-1.799,1.303],[-2.28,1.739],[-4.07,2.669],[-5.649,3.404],[-3.861,2.417],[-20.28,7.923],[-2.46,0.993],[0,0],[-8.939,3.079],[-10.46,3.026],[0,0],[-1.631,0.474],[-6.03,1.111],[-3.811,0.458],[-3.241,0.528],[-2.429,0.582],[-2.851,0.385],[-7.77,0.8],[-3.211,0.346],[-0.9,0.111],[-2.659,0.027],[-4.601,-0.096],[-2.759,-0.027],[-2.99,-0.015],[-7.491,-0.128],[-1.15,-0.426],[-0.441,-0.139],[1.1,-0.058],[2.59,0.049],[1.399,0.201],[1.68,-0.059],[10.481,-0.534],[1.559,-0.08],[1.581,-0.079],[7.359,-0.709],[4.13,-0.691],[2.98,-0.389],[2.371,-0.192],[3.531,-0.671],[3.33,-1.03],[2.259,-0.576],[3.011,-0.639],[5.171,-1.824],[1.891,-0.667],[19.731,-8.459],[12.241,-6.753],[3.661,-1.977],[7.141,-4.768],[8.44,-6.346],[7,-5.988],[4.34,-4.105],[0,0],[1.66,-1.551],[0.42,-0.606],[0.179,-0.241],[-0.28,0.148],[-0.59,0.508],[-4.201,3.681],[0,0],[-2.54,2.217],[-0.529,0.176],[-0.2,0.081],[0.14,-0.203],[0.341,-0.306],[3.031,-2.73],[0,0],[0,0],[0,0],[0,0],[5.62,-5.503],[7.38,-7.642],[0,0],[0,0],[0,0],[0,0],[2.461,-2.531],[0.229,-0.444],[0.129,-0.222],[-0.229,0.13],[-0.35,0.353],[-2.091,2.142],[-3.45,3.31],[0,0],[-9.101,8.065],[-6.309,5.125],[0,0],[-2.781,2.287],[-0.391,0.11],[-0.181,0.073],[0.101,-0.205],[0.311,-0.26],[2.74,-2.253],[0,0],[0,0],[0,0],[0,0],[5.41,-4.9],[9,-9.25],[7.16,-8.069],[1.479,-1.663],[0.611,-1.244],[0.609,-0.862],[0.88,-1.226],[0,0],[13.44,-29.624],[-2.529,5.056],[-12.55,19.656],[-23.759,22.491],[-0.2,0.188],[0,0],[-0.189,0.197],[0,0],[-0.11,-0.251],[-0.061,-0.052],[-0.021,-0.022],[-1.351,1.355],[0,0],[-4.14,3.98],[-3.37,3.057],[0,0],[0,0],[0,0],[-1.221,1.119],[-0.341,0.418],[0,0],[-0.181,0.231],[-0.271,0.242],[-0.269,0.251],[0.04,-0.369],[0,0],[-0.51,0.359],[-4.75,3.613],[0,0],[-11.95,8.183],[-13.09,7.027],[-12.38,5.091],[-15.25,4.662],[-16.76,3.478],[-44.25,-3.873],[-35.28,-11.653],[-11.58,-4.968],[10.29,3.029],[1.869,0.689],[0,0],[1.74,0.574],[3.189,0.861],[2.941,0.854],[6.629,1.396],[12.199,1.398],[21.08,0.781],[2.161,0.01],[3.67,-0.074],[7.809,-0.757],[0,0],[14.57,-2.223],[13.489,-2.76],[2.2,-0.946],[1.61,-0.505],[3.479,-0.999],[5.989,-2.268],[13.851,-6.274],[11.56,-6.453],[7.441,-4.884],[0,0],[2.04,-1.324],[2.47,-1.915],[0,0],[0.91,-0.694],[3.649,-2.756],[0,0],[0,0],[0,0],[0,0],[0,0],[3.651,-2.75],[1.57,-1.106],[2.879,-2.682],[9.229,-9.048],[0,0],[0,0],[1.46,-1.424],[4.489,-4.84],[2.34,-2.897],[0,0],[0,0],[0.35,-0.441],[-0.02,-0.478],[0.021,-0.215],[-0.259,0.046],[-0.269,0.318],[-0.7,0.972],[-0.99,1.088],[-1.851,1.808],[-1.231,1.27],[-4.42,4.636],[0,0],[0,0],[0,0],[0,0],[-2.149,2.253],[0,0],[-0.25,0.068],[-0.351,0.083],[-2.359,2.277],[-5.401,4.228],[-14.57,10.254],[-7.481,4.402],[-0.97,0.576],[-4.051,2.127],[-2.009,1.088],[-0.35,0.215],[-0.34,0.216],[0.04,-0.323],[0,0],[-2.481,1.198],[0,0],[-5.191,2.244],[-11.17,4.015],[-10.871,2.653],[-0.809,0.198],[-15.58,2.282],[-20.699,1.004],[-24.94,-3.334],[-27.271,-8.64],[-28.099,-17.03],[-18.021,-14.055],[-15.149,-14.807],[-15.86,-24.129],[-12.459,-53.636],[3.701,-48.366],[10.121,-32.877],[24.589,-37.251],[25.161,-24.131],[31.831,-17.604],[2.24,-1.255],[0,0],[11.531,-5.032],[20.16,-7.386],[10.261,-2.33],[8.811,-1.616],[0,0],[0,0],[0,0],[0,0],[3.75,-0.715],[1.269,-0.207],[0,0],[0,0],[0.25,-0.043],[0.379,-0.063],[-0.809,0.297],[-0.809,0.287],[-0.04,0.066],[0,0],[0,0],[0,-0.015],[2.94,-0.326],[7.99,-1.099],[28.21,1.863],[28.75,8.57],[54.12,46.559],[20.989,24.667],[0.58,0.314],[0.21,0.13],[-0.05,-0.288],[-0.34,-0.494],[-1.4,-2.163],[-4.219,-4.885],[-11.2,-11.223],[-6.269,-5.518],[0,0],[-2.691,-2.427],[0.99,0.69],[0,0],[2.25,2.171],[2.5,2.399],[0,0],[13.17,13.609],[5,6.399],[2.271,2.785],[0,0],[-0.55,-0.922],[0,0],[0,0],[0,0],[-1.451,-2.002],[-3.771,-4.967],[0,0],[-0.361,-0.475],[0,0],[-2.721,-3.533],[-2.71,-3.53],[-0.72,-0.824],[0,0],[-3.26,-3.728],[-0.149,-0.3],[0,0],[-0.071,-0.134],[0.121,0.068],[0.21,0.167],[0.84,0.657],[0,0],[1.59,1.792],[9.87,11.831],[1.5,1.78],[0,0],[0,0],[6.24,9.601],[8.229,14.2],[0,0],[0,0],[2.92,4.974],[1.78,2.744],[1.969,3.406],[0.401,0.603],[0,0],[0,0],[0,0],[0,0],[0.89,1.495],[-0.591,-1.505],[0,0],[-1.321,-3.369],[-2.559,-6.094],[-2.48,-4.374],[-7.96,-13.052],[-2.979,-3.923],[0,0],[-1.26,-1.733],[-0.141,-0.385],[-0.121,-0.376],[-0.48,-0.532],[0,0],[0,0],[-1.359,-1.572],[-1.17,-1.363],[0,0],[0,0],[0,0],[-3.74,-4.274],[-0.71,-0.754],[0,0],[-1.129,-1.477],[-1.599,-2.19],[-2.529,-3.013],[-6.281,-6.275],[-9.41,-7.672],[-9.05,-6.633],[-3.83,-2.857],[-52.72,-14.353],[-57.241,3.75],[-54,23.419],[-9.29,4.338],[-5.67,2.976],[-4.05,2.473],[-7.1,4.553],[-3.729,2.831],[-2.96,2.339],[-2.08,1.605],[-2.909,2.226],[0,0],[-5.601,4.645],[-5.739,5.773],[-9.619,10.397],[-6.13,7.529]],"o":[[1.58,-2.064],[0.98,-1.458],[0,0],[1.74,-2.561],[1.069,-1.627],[0,0],[1.279,-1.708],[3.731,-5.916],[1.339,-2.468],[0,0],[0,0],[0,0],[5.301,-9.635],[4.1,-8.773],[0,0],[0,0],[1.349,-3.49],[0.43,-1.085],[0,0],[0,0],[0,0],[2.069,-5.157],[3.481,-11.186],[0.149,-0.571],[0,0],[3.03,-11.433],[2.22,-11.15],[1.15,-11.15],[0.021,-4.834],[0,0],[0,0],[0,0],[0,0],[0.159,-10.234],[-0.309,-3.797],[0,0],[-0.5,-8.163],[-3.3,-21.548],[-12.461,-64.454],[-33.87,-44.105],[-66.489,-45.425],[-13.561,-1.947],[-3.199,-0.312],[-4.18,-0.415],[-1.96,-0.078],[0,0],[0,0],[0,0],[-0.899,0.323],[-0.15,0.026],[-0.08,-0.041],[0.14,-0.107],[0.13,-0.099],[0,0],[-2.089,0.144],[-3.12,0.197],[-9.97,0.789],[-2.059,0.18],[-6.55,0.527],[-10.051,1.506],[-13.349,3.191],[-3.21,0.953],[-2.351,1.059],[-3.38,1.203],[-2.62,0.771],[-0.639,0.22],[-0.509,0.499],[-2.96,1.22],[0,0],[-4.559,1.76],[-8.15,3.621],[-9.829,5.162],[-0.991,0.555],[0,0],[-0.38,0.436],[0.07,0.049],[0.019,0.028],[4.36,-2.257],[8.481,-4.482],[9.43,-4.567],[0,0],[3.88,-1.727],[1.309,-0.588],[3.619,-1.705],[2.85,-0.878],[3.79,-0.749],[0,0],[0,0],[6.57,-2.544],[6.311,-1.155],[3.85,-0.905],[1.3,-0.275],[1.29,-0.03],[2.64,-0.526],[4.351,-1.073],[9.111,-1.103],[1.55,-0.08],[5.339,-0.287],[2.68,-0.064],[1.21,-0.036],[3.58,-0.12],[2.061,0],[1.87,0.098],[1.811,0.029],[2.62,-0.07],[11.63,0.789],[0.989,0.076],[0.401,0.158],[-0.471,0.012],[-0.919,0.032],[-1.151,0.036],[-3.37,-0.143],[-6.699,-0.334],[-3.451,-0.075],[0.179,-0.032],[0.179,-0.037],[-0.2,-0.081],[-0.42,-0.218],[-2.46,-0.078],[-6.591,-0.273],[-13.25,0.394],[-5.479,0.495],[-2.439,0.474],[-1.87,0.333],[0,0],[-4.141,0.733],[-3.99,0.727],[-10.2,1.789],[-7.651,1.685],[-9.12,3.567],[0,0],[-5.059,2.081],[-2.45,0.992],[-4.61,1.711],[-11.731,5.737],[-12.811,7.314],[-4.059,2.697],[-1.55,1.617],[-0.45,0.466],[-0.45,0.457],[-1.231,1.033],[0,0],[0,0],[-2.82,2.388],[-2.129,1.729],[0,0],[-4.21,3.299],[-2.121,1.883],[-1.17,1.504],[-3.33,3.645],[0,0],[0,0],[0,0],[0,0],[-1.559,1.618],[0,0.182],[0,0],[0.02,0.342],[-0.029,0.103],[-0.099,0.017],[0.09,-0.233],[0,0],[0.08,-0.242],[-1.58,1.757],[0.33,-0.276],[0.151,-0.108],[0,0],[-0.26,0.179],[-0.281,0.17],[-0.741,0.975],[-1.689,2.318],[-2.481,2.801],[-4.101,4.417],[-2.641,3.218],[0,0],[-1.21,1.962],[-3.211,4.803],[0,0],[-3.3,4.991],[2.03,-2.878],[2.181,-2.502],[5.6,-7.493],[3.29,-4.083],[0,0],[0,0],[0,0],[0,0],[0,0],[1.071,-1.209],[0.269,-0.32],[0.191,-0.087],[-0.06,0.216],[-0.069,0.478],[-0.591,0.638],[-0.96,0.861],[-5.019,6.704],[-2.63,3.759],[0,0],[-1.899,3.17],[0,0],[-0.06,0.078],[0,0],[0,0],[-0.15,0.207],[0,0],[0,0],[0,0],[0.361,-0.318],[0.201,-0.188],[0,0],[0.641,-0.899],[2.6,-3.683],[2.469,-3.167],[0,0],[0,0],[0,0],[0,0],[7.759,-10.085],[11.559,-13.08],[0.989,-0.988],[8.139,-8.138],[2.941,-2.532],[0,0],[0,0],[1.87,-1.238],[2.321,-1.682],[3.89,-2.971],[5.519,-3.604],[3.89,-2.351],[18.439,-11.544],[2.46,-0.983],[0,0],[8.76,-3.536],[10.271,-3.534],[0,0],[1.63,-0.473],[5.889,-1.722],[3.779,-0.677],[3.25,-0.392],[2.46,-0.398],[2.811,-0.676],[7.74,-1.014],[3.211,-0.331],[0.899,-0.1],[2.641,-0.328],[4.601,-0.045],[2.76,0.057],[2.991,0.02],[7.49,0.036],[1.149,0.025],[0.43,0.16],[-1.101,0.044],[-2.591,0.137],[-1.41,-0.033],[-1.701,-0.242],[-10.5,0.343],[-1.569,0.08],[-1.58,0.082],[-7.389,0.368],[-4.17,0.397],[-2.96,0.494],[-2.34,0.298],[-3.61,0.292],[-3.419,0.644],[-2.23,0.691],[-2.97,0.753],[-5.43,1.156],[-1.9,0.668],[-20.26,7.138],[-12.79,5.468],[-3.649,2.014],[-7.58,4.051],[-8.76,5.88],[-7.351,5.521],[-4.519,3.896],[0,0],[-1.651,1.562],[-0.511,0.482],[-0.17,0.251],[0.269,-0.156],[0.689,-0.36],[4.219,-3.641],[0,0],[2.54,-2.227],[0.389,-0.359],[0.221,-0.07],[-0.151,0.197],[-0.25,0.39],[-2.989,2.764],[0,0],[0,0],[0,0],[0,0],[-5.84,5.272],[-7.6,7.425],[0,0],[0,0],[0,0],[0,0],[-2.46,2.541],[-0.33,0.329],[-0.12,0.233],[0.219,-0.148],[0.441,-0.249],[2.11,-2.109],[3.35,-3.43],[0,0],[8.76,-8.443],[6.1,-5.368],[0,0],[2.79,-2.268],[0.28,-0.237],[0.199,-0.057],[-0.11,0.184],[-0.18,0.396],[-2.72,2.283],[0,0],[0,0],[0,0],[0,0],[-5.65,4.642],[-9.58,8.676],[-7.531,7.727],[-1.471,1.666],[-0.891,0.988],[-0.469,0.969],[-0.881,1.225],[0,0],[-18.86,26.309],[-2.23,4.918],[9.821,-21.143],[18.25,-28.705],[0.201,-0.197],[0,0],[0.21,-0.188],[0,0],[0.099,0.215],[0.05,0.074],[0.029,0.024],[1.35,-1.353],[0,0],[4.049,-4.065],[3.261,-3.151],[0,0],[0,0],[0,0],[1.231,-1.114],[0.319,-0.437],[0,0],[0.18,-0.232],[0.26,-0.251],[0.269,-0.242],[-0.069,0.365],[0,0],[0.53,-0.322],[4.769,-3.57],[0,0],[11.561,-8.795],[12.201,-8.389],[11.811,-6.31],[14.79,-6.059],[16.331,-4.983],[43.53,-8.712],[37,3.262],[12.1,4.004],[-9.761,-4.053],[-1.741,-0.573],[0,0],[-1.86,-0.689],[-3.16,-1.04],[-2.87,-0.787],[-6.7,-1.945],[-12.061,-2.545],[-19.741,-2.223],[-1.72,0],[-4.7,-0.025],[-8.03,0.175],[0,0],[-14.641,1.434],[-13.639,2.043],[-2.291,0.462],[-1.56,0.669],[-3.439,1.087],[-6.18,1.769],[-14.211,5.343],[-12.06,5.45],[-7.75,4.307],[0,0],[-2.029,1.335],[-2.631,1.704],[0,0],[-0.91,0.704],[-3.659,2.756],[0,0],[0,0],[0,0],[0,0],[0,0],[-3.639,2.75],[-1.519,1.146],[-3.24,2.284],[-9.48,8.79],[0,0],[0,0],[-1.46,1.425],[-4.7,4.625],[-2.521,2.738],[0,0],[0,0],[-0.35,0.441],[-0.24,0.287],[0.011,0.239],[0.231,-0.068],[0.55,-0.101],[0.771,-0.915],[0.869,-1.199],[1.75,-1.913],[1.26,-1.243],[4.439,-4.626],[0,0],[0,0],[0,0],[0,0],[2.15,-2.258],[0,0],[0.24,-0.06],[0.351,-0.093],[2.409,-2.217],[4.961,-4.79],[14.029,-10.971],[7.069,-4.978],[0.969,-0.575],[3.929,-2.318],[2.019,-1.064],[0.34,-0.215],[0.349,-0.215],[0,0.323],[0,0],[2.481,-1.172],[0,0],[5.109,-2.47],[10.91,-4.733],[10.551,-3.765],[0.809,-0.198],[15.311,-3.752],[20.489,-3.011],[25.051,-1.219],[28.381,3.836],[31.359,9.931],[19.561,11.868],[16.649,13.014],[20.67,20.221],[30.18,45.963],[10.94,47.254],[-2.62,34.311],[-13.1,42.63],[-19.201,29.149],[-26.23,25.133],[-2.25,1.244],[0,0],[-11.009,6.157],[-19.71,8.569],[-9.87,3.584],[-8.73,1.984],[0,0],[0,0],[0,0],[0,0],[-3.75,0.687],[-1.26,0.24],[0,0],[0,0],[-0.261,0.042],[-0.379,0.061],[0.809,-0.287],[0.811,-0.295],[0.061,-0.029],[0,0],[0,0],[-0.01,0.014],[-2.939,0.336],[-8,0.888],[-28.199,3.944],[-30,-1.972],[-68.241,-20.289],[-24.51,-21.118],[-0.39,-0.465],[-0.221,-0.122],[0.08,0.279],[0.13,0.638],[1.441,2.13],[3.541,5.483],[10.34,11.975],[5.89,5.89],[0,0],[2.731,2.396],[-0.971,-0.709],[0,0],[-2.601,-1.803],[-2.49,-2.398],[0,0],[-13.651,-13.12],[-5.62,-5.814],[-2.22,-2.835],[0,0],[0.57,0.908],[0,0],[0,0],[0,0],[1.269,2.134],[3.66,5.06],[0,0],[0.359,0.475],[0,0],[2.71,3.532],[2.72,3.531],[0.72,0.862],[0,0],[3.309,3.728],[0.219,0.247],[0,0],[0.08,0.138],[-0.111,-0.073],[-0.25,-0.135],[-0.81,-0.681],[0,0],[-1.919,-1.492],[-10.231,-11.509],[-1.491,-1.785],[0,0],[0,0],[-7.43,-8.805],[-8.92,-13.736],[0,0],[0,0],[-2.891,-4.998],[-1.861,-3.173],[-1.909,-2.929],[-0.3,-0.519],[0,0],[0,0],[0,0],[0,0],[-0.54,-0.817],[0.651,1.428],[0,0],[1.35,3.362],[2.42,6.156],[1.901,4.625],[7.569,13.266],[2.549,4.167],[0,0],[1.31,1.713],[0.129,0.376],[0.13,0.386],[0.479,0.532],[0,0],[0,0],[1.399,1.549],[1.17,1.361],[0,0],[0,0],[0,0],[3.71,4.31],[0.689,0.78],[0,0],[1.29,1.364],[1.67,2.135],[2.33,3.177],[5.711,6.813],[8.609,8.604],[8.68,7.069],[3.849,2.82],[43.65,33.039],[55.84,15.324],[58.63,-3.95],[9.441,-4.051],[5.819,-2.689],[4.2,-2.187],[7.181,-4.374],[3.92,-2.546],[3.011,-2.262],[2.061,-1.626],[2.9,-2.257],[0,0],[5.789,-4.413],[6.24,-5.198],[9.98,-10.039],[6.6,-7.136],[3.631,-4.44]],"v":[[387.23,300.917],[391.98,294.742],[394.891,290.43],[394.891,290.428],[400.091,282.623],[403.501,277.87],[403.501,277.869],[407.2,272.656],[417.971,254.658],[422.02,247.264],[422.02,247.262],[422.02,247.26],[422.03,247.259],[437.27,218.015],[448.351,191.107],[448.351,191.106],[448.351,191.105],[452.421,180.657],[453.721,177.401],[453.721,177.4],[453.721,177.399],[453.721,177.398],[459.52,161.763],[469.251,127.989],[469.7,126.277],[469.971,125.281],[478.331,90.809],[483.21,56.928],[485.4,23.334],[485.581,8.513],[485.581,8.508],[485.581,8.507],[485.581,8.505],[485.581,8.504],[485.61,-22.02],[484.841,-33.431],[484.841,-33.435],[482.601,-57.801],[471.081,-122.157],[387.28,-297.801],[269.82,-412.531],[52.751,-499.439],[11.87,-504.053],[2.29,-504.996],[-10.279,-505.742],[-16.159,-506],[-22.079,-506],[-25.85,-506],[-27.46,-506],[-30.19,-505.104],[-30.71,-505.277],[-30.94,-505.391],[-30.529,-505.695],[-30.119,-506],[-32.81,-506],[-39.1,-505.59],[-48.46,-504.961],[-78.35,-502.451],[-84.529,-501.939],[-104.079,-499.905],[-134.01,-494.133],[-173.81,-483.448],[-183.169,-479.734],[-190.319,-476.744],[-200.619,-473.507],[-208.44,-471.115],[-210.14,-469.851],[-211.779,-468.606],[-220.72,-465.083],[-220.72,-465.082],[-234.31,-459.57],[-258.29,-447.846],[-287.529,-431.784],[-290.119,-429.435],[-290.119,-429.434],[-291.3,-428.163],[-291.119,-427.989],[-291.05,-427.912],[-278.01,-434.757],[-252.44,-447.918],[-223.88,-461.002],[-223.869,-461.002],[-212.239,-466.203],[-208.329,-468.016],[-197.31,-472.585],[-188.56,-474.628],[-177.43,-477.497],[-176.859,-477.716],[-176.3,-477.933],[-156.22,-484.273],[-137.39,-488.372],[-125.829,-491.013],[-121.84,-491.352],[-117.999,-491.659],[-110.09,-493.481],[-96.97,-496.141],[-69.449,-498.192],[-64.779,-498.435],[-48.73,-498.977],[-40.699,-499.188],[-37.069,-499.306],[-26.31,-499.547],[-20.13,-499.33],[-14.51,-499.116],[-9.09,-499.183],[-1.23,-499.152],[33.581,-496.284],[36.48,-495.447],[37.671,-494.993],[36.27,-494.949],[33.511,-494.886],[30.06,-494.886],[19.96,-495.365],[-0.149,-496.176],[-10.489,-496.283],[-9.949,-496.392],[-9.409,-496.499],[-9.999,-496.789],[-11.279,-497.252],[-18.669,-497.534],[-38.44,-497.897],[-78.13,-495.567],[-94.47,-492.958],[-101.779,-491.587],[-107.39,-490.593],[-107.399,-490.591],[-119.829,-488.361],[-131.81,-486.232],[-162.319,-480.437],[-184.68,-473.051],[-211.96,-462.023],[-211.97,-462.022],[-227.169,-455.806],[-234.6,-452.97],[-248.239,-447.381],[-282.869,-429.095],[-320.69,-406.078],[-331.64,-396.181],[-336.34,-391.414],[-337.68,-390.033],[-339.029,-388.653],[-342.71,-385.541],[-342.72,-385.539],[-342.72,-385.536],[-351.23,-378.435],[-357.699,-373.315],[-357.699,-373.314],[-370.109,-363.162],[-375.77,-356.7],[-379.369,-352.298],[-389.55,-341.534],[-389.55,-341.532],[-389.56,-341.53],[-389.56,-341.529],[-389.56,-341.527],[-394.22,-336.666],[-394.21,-336.132],[-394.21,-336.131],[-394.22,-335.124],[-394.77,-334.928],[-395.05,-334.873],[-394.8,-335.59],[-394.8,-335.591],[-394.55,-336.308],[-399.359,-331.037],[-398.35,-331.825],[-397.919,-332.149],[-397.71,-331.826],[-398.529,-331.306],[-399.359,-330.786],[-401.55,-327.834],[-406.859,-321.034],[-414.449,-312.747],[-426.489,-299.271],[-433.55,-288.896],[-433.55,-288.895],[-437.249,-283.066],[-447.06,-268.284],[-447.069,-268.28],[-456.88,-253.493],[-449.76,-262.24],[-443.64,-269.621],[-426.449,-291.742],[-416.239,-303.662],[-416.239,-303.663],[-416.23,-303.664],[-416.23,-303.665],[-416.23,-303.666],[-416.23,-303.667],[-413.029,-307.302],[-411.94,-307.994],[-411.38,-308.271],[-411.51,-307.577],[-411.919,-306.334],[-413.819,-304.526],[-416.51,-301.781],[-431.26,-281.417],[-438.46,-270.045],[-438.46,-270.044],[-444.39,-260.52],[-444.48,-260.387],[-444.6,-260.214],[-444.659,-260.126],[-444.73,-260.026],[-445.94,-258.291],[-445.94,-258.292],[-445.93,-258.294],[-445.93,-258.295],[-445.19,-258.95],[-444.39,-259.738],[-444.39,-259.739],[-442.48,-262.432],[-434.489,-273.35],[-427.109,-282.89],[-427.109,-282.891],[-427.109,-282.892],[-427.109,-282.893],[-427.109,-282.894],[-403.159,-312.573],[-366.829,-350.374],[-363.859,-353.338],[-338.31,-376.786],[-328.84,-383.654],[-328.84,-383.655],[-328.84,-383.656],[-323.31,-387.434],[-316.43,-392.595],[-304.579,-401.202],[-287.77,-411.614],[-276.119,-418.734],[-218.02,-447.882],[-210.64,-450.851],[-210.64,-450.852],[-184.18,-461.005],[-152.989,-470.59],[-152.98,-470.591],[-148.079,-472.011],[-130.169,-476.457],[-118.779,-478.05],[-109.029,-479.361],[-101.72,-480.924],[-93.239,-482.66],[-69.96,-485.274],[-60.329,-486.281],[-57.64,-486.603],[-49.71,-487.285],[-35.919,-487.139],[-27.64,-486.998],[-18.659,-486.948],[3.801,-486.747],[7.251,-485.871],[8.551,-485.411],[5.251,-485.251],[-2.52,-485.026],[-6.739,-485.461],[-11.81,-485.886],[-43.26,-484.476],[-47.949,-484.237],[-52.69,-483.998],[-74.829,-482.552],[-87.26,-480.774],[-96.149,-479.397],[-103.23,-478.716],[-113.98,-477.461],[-124.06,-474.757],[-130.779,-472.8],[-139.76,-470.767],[-155.79,-466.633],[-161.47,-464.632],[-221.72,-441.895],[-259.02,-422.909],[-269.98,-416.905],[-292.05,-403.532],[-317.859,-385.175],[-339.43,-367.894],[-352.619,-355.791],[-352.619,-355.79],[-357.579,-351.115],[-358.93,-349.42],[-359.449,-348.677],[-358.619,-349.129],[-356.649,-350.362],[-344.029,-361.366],[-344.029,-361.367],[-336.409,-368.038],[-334.96,-368.749],[-334.329,-368.97],[-334.749,-368.365],[-335.59,-367.285],[-344.64,-359.06],[-344.64,-359.059],[-344.64,-359.058],[-344.64,-359.057],[-344.649,-359.056],[-361.96,-343.012],[-384.329,-320.299],[-384.329,-320.297],[-384.34,-320.296],[-384.34,-320.294],[-384.34,-320.292],[-391.71,-312.68],[-392.489,-311.469],[-392.859,-310.78],[-392.18,-311.188],[-390.96,-312.035],[-384.669,-318.426],[-374.52,-328.599],[-373.35,-329.729],[-346.749,-354.664],[-328.02,-370.283],[-328.01,-370.286],[-319.649,-377.108],[-318.579,-377.567],[-317.999,-377.754],[-318.3,-377.16],[-318.97,-376.104],[-327.18,-369.314],[-327.18,-369.313],[-327.18,-369.312],[-327.19,-369.312],[-327.19,-369.311],[-343.909,-355.13],[-371.899,-328.277],[-393.739,-304.41],[-398.169,-299.415],[-400.27,-295.945],[-401.829,-293.141],[-404.47,-289.465],[-404.48,-289.452],[-455.73,-207.093],[-465.47,-180.099],[-432.68,-242.562],[-371.44,-319.708],[-370.829,-320.281],[-370.829,-320.282],[-370.22,-320.855],[-368.489,-323.329],[-368.169,-322.612],[-367.999,-322.43],[-367.919,-322.361],[-363.869,-326.424],[-363.859,-326.427],[-351.63,-338.531],[-341.619,-347.794],[-341.609,-347.798],[-341.609,-347.802],[-341.6,-347.805],[-337.919,-351.151],[-336.919,-352.429],[-336.919,-352.43],[-336.369,-353.123],[-335.569,-353.858],[-334.76,-354.593],[-334.899,-353.465],[-334.899,-353.374],[-333.319,-354.378],[-319.05,-365.175],[-319.05,-365.176],[-283.98,-390.948],[-245.55,-413.499],[-209.34,-430.924],[-164.23,-447.13],[-114.63,-460.037],[17.11,-466.884],[125.56,-444.763],[161.081,-431.294],[131.051,-441.976],[125.581,-443.927],[125.581,-443.928],[120.12,-445.88],[109.971,-449.003],[101.24,-451.49],[81.081,-456.811],[41.261,-463.838],[-13.399,-467.742],[-19.31,-467.763],[-32.919,-467.742],[-53.359,-466.364],[-53.909,-466.311],[-97.76,-460.897],[-138.419,-453.404],[-145.109,-451.054],[-149.84,-449.209],[-160.239,-446.126],[-178.579,-440.318],[-220.71,-422.893],[-256.169,-405.038],[-278.8,-390.965],[-278.8,-390.964],[-284.909,-386.968],[-292.48,-381.434],[-292.48,-381.433],[-295.21,-379.331],[-306.159,-371.063],[-306.18,-371.049],[-306.199,-371.031],[-306.21,-371.026],[-306.21,-371.022],[-306.22,-371.017],[-317.14,-362.767],[-321.8,-359.412],[-331.169,-352.155],[-359.119,-325.26],[-359.119,-325.259],[-359.14,-325.236],[-363.51,-320.962],[-377.249,-306.729],[-384.44,-298.195],[-384.44,-298.193],[-384.44,-298.192],[-385.499,-296.869],[-385.71,-295.626],[-385.72,-294.933],[-384.98,-295.094],[-383.6,-295.614],[-381.419,-298.474],[-378.69,-301.96],[-373.249,-307.493],[-369.499,-311.246],[-356.22,-325.15],[-356.22,-325.154],[-356.22,-325.158],[-356.21,-325.162],[-356.21,-325.166],[-349.76,-331.934],[-348.79,-332.902],[-348.05,-333.097],[-346.999,-333.368],[-339.88,-340.14],[-324.569,-353.947],[-281.499,-385.606],[-259.449,-399.404],[-256.529,-401.13],[-244.499,-407.703],[-238.44,-410.918],[-237.399,-411.563],[-236.359,-412.209],[-236.43,-411.241],[-236.43,-411.24],[-228.989,-414.808],[-228.989,-414.809],[-213.569,-421.996],[-180.55,-435.477],[-148.399,-445.229],[-145.97,-445.824],[-99.699,-455.627],[-37.8,-461.793],[37.21,-458.244],[120.681,-439.493],[210.36,-399.732],[266.921,-360.795],[314.29,-318.381],[368.331,-251.013],[432.79,-101.757],[443.48,41.655],[424.46,142.437],[367.721,262.151],[301.19,342.068],[214.27,406.531],[207.54,410.284],[207.52,410.291],[173.94,427.649],[113.9,451.097],[83.54,459.701],[57.19,464.916],[57.171,464.919],[57.16,464.921],[57.141,464.923],[57.141,464.925],[45.891,467.014],[42.091,467.668],[42.091,467.669],[42.081,467.67],[41.31,467.797],[40.181,467.983],[42.61,467.103],[45.03,466.226],[45.19,466.054],[45.251,466.047],[45.21,466.011],[45.19,466.054],[36.37,467.043],[12.37,469.919],[-72.359,471.067],[-160.819,455.183],[-344.739,356.409],[-413.029,287.714],[-414.569,286.617],[-415.22,286.244],[-415.029,287.1],[-414.43,288.862],[-410.19,295.319],[-398.89,311.162],[-366.48,345.904],[-348.05,362.83],[-348.05,362.832],[-339.909,370.053],[-342.859,367.965],[-342.859,367.961],[-350.3,362.18],[-357.779,354.985],[-357.779,354.983],[-398.279,315.106],[-413.899,296.493],[-420.6,288.037],[-420.819,288.252],[-419.149,291.004],[-419.149,291.005],[-419.149,291.006],[-419.149,291.007],[-415.149,297.287],[-403.949,312.277],[-402.909,313.646],[-401.829,315.07],[-401.47,315.536],[-393.329,326.132],[-385.18,336.724],[-383.029,339.235],[-383.029,339.238],[-373.159,350.421],[-372.63,351.266],[-372.63,351.267],[-372.409,351.676],[-372.77,351.469],[-373.48,351.031],[-375.98,349.038],[-375.98,349.037],[-381.409,344.255],[-411.739,309.334],[-416.23,303.989],[-416.23,303.988],[-416.239,303.981],[-437.359,276.743],[-462.739,234.6],[-462.739,234.597],[-462.739,234.596],[-471.449,219.629],[-476.88,210.958],[-482.649,201.704],[-483.68,200.082],[-483.68,200.081],[-483.68,200.078],[-483.68,200.074],[-483.68,200.073],[-485.77,196.755],[-483.789,201.569],[-483.69,201.809],[-479.699,211.91],[-472.31,230.314],[-465.669,243.83],[-442.529,283.448],[-434.02,295.463],[-434.02,295.464],[-430.149,300.622],[-429.749,301.768],[-429.359,302.916],[-427.919,304.512],[-427.919,304.515],[-427.919,304.516],[-423.76,309.19],[-420.239,313.277],[-420.239,313.28],[-420.239,313.281],[-420.239,313.283],[-409.079,326.184],[-406.97,328.474],[-406.97,328.475],[-403.27,332.674],[-398.39,339.189],[-391.21,348.556],[-373.409,368.455],[-346.669,393.337],[-319.899,413.667],[-308.38,422.163],[-156.8,490.356],[8.471,503.87],[178.78,465.545],[206.841,452.818],[224.07,444.32],[236.41,437.293],[257.87,423.956],[269.32,415.853],[278.24,408.914],[284.431,404.056],[293.16,397.347],[293.171,397.339],[310.341,383.872],[328.21,367.236],[357.71,336.654],[376.62,314.461]],"c":true},"ix":2},"nm":"Path 52","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"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.23,506],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":53,"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.18,-0.046],[0.189,0.035],[33.82,8.988],[3.16,0.623],[6.431,0.363],[11.571,1.322],[5.15,-1.205],[-16.31,6.944],[-0.239,0.102],[-18.33,-1.038],[-9.011,-1.778],[-14.491,-2.659]],"o":[[-0.189,-0.035],[-4.271,-0.529],[-3.97,-1.056],[-6.75,-0.675],[-8.609,0.68],[-6.33,-0.723],[-11.279,2.639],[0.23,-0.097],[8.04,-3.452],[4.86,-0.384],[21.38,2.137],[0.199,0.025]],"v":[[68.755,3.86],[68.186,3.754],[21.165,-1.933],[10.516,-4.429],[-9.365,-6.017],[-34.505,-4.16],[-52.445,-2.821],[-52.445,-2.821],[-51.745,-3.119],[-9.365,-6.017],[10.516,-4.429],[68.186,3.754]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"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.385,35.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 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.25,0.753],[-0.25,-0.753]],"o":[[0.25,0.753],[-0.291,-0.753]],"v":[[-0.396,-1.147],[0.395,1.147]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1069.335,807.841],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-5.6,-2.151],[-1.83,-0.753],[-0.33,-0.359],[0,0],[7.75,3.226]],"o":[[1.83,0.717],[0.321,0.358],[0,0],[-7.75,-3.227],[5.569,2.15]],"v":[[5.12,1.596],[10.569,3.783],[11.579,4.858],[11.609,4.823],[-11.609,-4.858]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1268.09,970.594],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[1.081,-0.18],[0,0],[-1.08,0.18]],"o":[[-1.08,0.18],[0,0],[1.069,-0.18],[0,0]],"v":[[1.621,-0.269],[-1.651,0.233],[-1.608,0.269],[1.651,-0.234]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1546.089,971.921],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.26,0.501],[-0.15,-0.108],[0.4,-0.429]],"o":[[0.29,-0.5],[0.14,0.107],[-0.43,0.357],[-0.03,-0.035]],"v":[[-0.615,0.751],[0.215,-0.751],[0.645,-0.429],[-0.615,0.751]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1104.865,221.391],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.07,-0.072],[0.43,0.537],[-0.029,-0.071],[-0.36,-0.5]],"o":[[-0.43,-0.537],[0.151,-0.037],[0.36,0.502],[-0.07,0.072]],"v":[[0.525,0.895],[-0.735,-0.751],[-0.306,-0.823],[0.735,0.679]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1077.745,793.425],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.319,0.323],[-0.43,0.036],[0.79,-0.359]],"o":[[0.431,-0.035],[-0.76,0.358],[0.36,-0.323]],"v":[[-0.15,-0.431],[1.15,-0.538],[-1.15,0.538]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1150.62,173.708],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.08,-0.072],[0.9,-0.537],[0.069,0.072],[-0.9,0.538]],"o":[[-0.899,0.538],[-0.07,-0.071],[0.899,-0.537],[0.04,0.072]],"v":[[1.455,-0.681],[-1.245,0.932],[-1.454,0.681],[1.234,-0.932]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1206.765,78.841],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.68,-0.359],[-0.68,0.359]],"o":[[0.68,-0.359],[-0.651,0.359]],"v":[[-1.005,0.538],[1.005,-0.538]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1104.575,213.038],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.26,0.323],[0.25,-0.359],[-0.07,0.144]],"o":[[-0.33,0.395],[-0.11,-0.215],[0.18,-0.358]],"v":[[1.445,-2.651],[-1.085,2.651],[-1.375,2.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1039.345,257.499],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.75,0.789],[-0.75,-0.789]],"o":[[0.75,0.789],[-0.75,-0.789]],"v":[[-1.11,-1.183],[1.11,1.183]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1114.98,844.124],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.5,0.645],[-0.431,0.036],[0.93,-0.681]],"o":[[0.44,-0.036],[-0.941,0.682],[0.5,-0.645]],"v":[[0.119,-0.914],[1.42,-1.022],[-1.42,1.022]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1162.73,153.755],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.21,0.215],[-0.39,0.358],[0.03,-0.036],[0.351,-0.358]],"o":[[0.5,-0.465],[0.11,0.143],[-0.32,0.393],[-0.04,0.036]],"v":[[-0.785,0.357],[0.465,-0.788],[0.755,-0.394],[-0.245,0.751]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1090.755,200.273],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[1.18,-0.861],[-0.401,0.394],[-0.68,0.609],[-0.07,-0.108]],"o":[[0.391,-0.395],[0.679,-0.574],[0.08,0.071],[-1.14,0.896]],"v":[[-1.755,1.452],[-0.534,0.305],[1.505,-1.452],[1.755,-1.201]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1129.515,184.733],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.47,-0.251],[1.179,-0.932],[0,0],[-1.149,0.932]],"o":[[-1.369,1.112],[-0.141,-0.179],[1.109,-0.968],[0.04,-0.036]],"v":[[2.064,-1.255],[-1.635,1.721],[-2.065,1.183],[1.304,-1.685]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1110.875,214.616],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[1.22,-1.542],[0,0.036],[-1.25,1.112],[0,-0.036]],"o":[[-0.68,-0.861],[1.22,-1.147],[0.04,-0.036],[-1,1.326]],"v":[[-1.19,2.295],[-2.08,1.147],[1.609,-2.259],[2.081,-1.864]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1158.98,111.179],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.069,-0.072],[0.291,-0.143],[1.19,-0.61],[-0.099,0.072],[-1.319,0.609]],"o":[[-0.25,0.251],[-1.149,0.61],[0,-0.287],[1.331,-0.645],[0.11,0.072]],"v":[[2.185,-1.112],[1.435,-0.395],[-2.085,1.363],[-2.085,0.501],[1.935,-1.363]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1203.335,80.884],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[-1.19,0.145],[-2.04,0.143],[2.09,-0.322],[1.149,0]],"o":[[1.18,-0.322],[2.04,-0.251],[-2.079,0.466],[-1.109,0.18],[0,0]],"v":[[-4.804,0.591],[-1.285,-0.342],[4.844,-0.771],[-1.365,0.591],[-4.844,0.556]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1552.545,971.096],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-2.58,3.915],[2.14,-3.976],[0.45,-0.228],[-0.12,0.194]],"o":[[-2.11,3.973],[-0.18,0.344],[-0.07,-0.317],[2.55,-3.911]],"v":[[3.935,-6.335],[-2.415,5.624],[-3.675,6.335],[-3.815,5.376]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1048.145,255.717],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-2.979,3.621],[2.55,-3.729],[0.46,-0.18],[-0.141,0.18]],"o":[[-2.52,3.729],[-0.21,0.323],[-0.04,-0.323],[2.939,-3.621]],"v":[[4.54,-5.898],[-3.04,5.324],[-4.359,5.898],[-4.399,4.929]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"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.68,228.008],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[7.979,-9.894],[-12.969,12.541],[-3.761,3.284],[-0.27,0.102],[0.05,-0.065]],"o":[[2.36,-3.107],[3.701,-3.33],[0.169,-0.155],[0.01,0.147],[-3.89,3.845]],"v":[[-20.33,19.716],[3.899,-5.291],[17.691,-17.809],[20.32,-19.716],[18.51,-17.679]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1135.29,133.911],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[3.57,-3.854],[0.18,0.054],[-0.241,0.264],[-3.571,3.494],[-0.27,0.118],[9.889,-11.112]],"o":[[-0.59,-0.169],[0.12,-0.421],[3.5,-3.536],[0.16,-0.164],[1.4,-1.335],[-3.66,4.061]],"v":[[-12.159,13.939],[-13.069,13.666],[-12.689,12.443],[-2.059,1.955],[2.401,-2.827],[3.181,-2.827]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1121.15,171.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 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":[[3.16,-4.195],[0.18,0.036],[-0.211,0.287],[-3.19,3.836],[-0.25,0.143],[0.029,-0.072]],"o":[[-0.61,-0.107],[0.07,-0.43],[3.119,-3.872],[0.149,-0.179],[0.04,0.143],[-3.23,4.41]],"v":[[-4.379,6.668],[-5.309,6.49],[-5.059,5.235],[4.451,-6.275],[5.13,-6.668],[5.281,-6.275]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"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.62,203.574],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-1.87,0],[1.15,-0.789],[9.08,-6.203],[0.9,-0.324],[-0.69,0.466],[-9.761,6.884]],"o":[[-2.16,1.505],[-9.04,6.239],[-0.76,0.502],[0.58,-0.61],[9.72,-6.991],[0.459,-0.358]],"v":[[17.12,-11.24],[12.7,-8.157],[-14.46,10.558],[-17.12,11.527],[-15.32,9.698],[13.891,-11.169]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.929000016755,0.105999995213,0.423999980852,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1180.26,95.818],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":412,"op":503,"st":412,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"polkadot.ai","cl":"ai","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":312,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":327,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":387,"s":[100]},{"t":402,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,226.007,0],"ix":2},"a":{"a":0,"k":[88.436,21.007,0],"ix":1},"s":{"a":0,"k":[163,163,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[1.352,0.317],[0.279,-1.376],[0.001,-0.005],[-1.358,-0.292],[-0.023,-0.004],[-0.303,1.333],[-0.008,0.045]],"o":[[-1.376,-0.278],[-0.001,0.005],[-0.292,1.357],[0.023,0.005],[1.333,0.304],[0.011,-0.045],[0.233,-1.369]],"v":[[0.636,-2.512],[-2.361,-0.527],[-2.363,-0.512],[-0.433,2.473],[-0.364,2.486],[2.599,0.622],[2.626,0.488]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0,0.477999997606,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[174.216,38.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 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":[[7.734,0.134],[0.031,-8.369],[-0.53,-1.59],[-1.102,0.332],[0.342,1.092],[-0.061,1.315],[-6.045,-0.18],[0.18,-6.044],[5.655,-0.343],[1.067,-0.133],[0.382,-0.097],[0.048,0.062],[-0.038,0.051],[0,0],[0,0],[1.122,0.239],[0.24,-1.122],[0,-0.199],[-1.082,-0.265],[-0.038,-0.008],[-0.261,1.089],[-0.006,0.033],[0,0],[-2.231,0.341],[0,0],[0.771,8.341]],"o":[[-8.369,0.031],[0,1.677],[0.395,1.081],[1.068,-0.406],[-0.45,-1.236],[0.179,-6.045],[6.045,0.179],[-0.168,5.663],[0,0],[-0.391,0.055],[-0.063,0.048],[-0.038,-0.051],[0,0],[0,0],[0.24,-1.123],[-1.123,-0.24],[0,0],[-0.266,1.083],[0.037,0.009],[1.089,0.26],[0.008,-0.034],[0.067,-0.267],[0.453,-2.211],[0.457,-0.067],[8.342,-0.771],[-0.712,-7.703]],"v":[[-70.833,-19.887],[-86.01,-4.71],[-85.21,0.221],[-82.544,1.555],[-81.25,-1.111],[-81.84,-4.977],[-70.57,-15.596],[-59.95,-4.327],[-70.233,6.277],[-73.423,6.544],[-74.584,6.773],[-74.785,6.745],[-74.785,6.572],[-74.451,4.773],[-72.452,-4.281],[-74.051,-6.747],[-76.518,-5.148],[-81.278,17.161],[-79.8,19.603],[-79.688,19.628],[-77.243,18.128],[-77.222,18.027],[-76.556,14.829],[-72.09,10.581],[-69.7,10.382],[-55.993,-6.118]],"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.125,0.002],[0.198,-0.98],[0,0],[-1.132,-0.242],[-0.15,0.001],[-0.197,0.981],[0,0],[1.157,0.22]],"o":[[-1,-0.015],[0,0],[-0.241,1.131],[0.146,0.032],[1,0.016],[0,0],[0.22,-1.157],[-0.123,-0.024]],"v":[[-26.549,-13.499],[-28.615,-11.833],[-34.804,17.066],[-33.193,19.551],[-32.747,19.598],[-30.681,17.932],[-24.482,-10.965],[-26.177,-13.46]],"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.949,-1.187],[1.542,-0.027],[0.638,0.809],[-0.082,1.185],[-1.428,2.094],[-2.128,-0.01],[0,-2.926],[0.547,-1.424]],"o":[[-0.644,1.376],[-1.057,1.124],[-1.028,0.056],[-0.697,-0.961],[-0.092,-2.533],[1.152,-1.79],[2.4,0],[-0.046,1.526],[0,0]],"v":[[60.392,9.809],[57.993,13.667],[53.927,15.467],[51.27,14.266],[50.318,10.943],[52.375,3.822],[57.64,0.964],[61.24,5.354],[60.344,9.809]],"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],[1.361,-1.734],[1.6,0],[0.471,0.808],[-0.033,1.209],[-1.462,2.029],[-2.857,-1.859],[-0.245,-0.223]],"o":[[-0.732,3.665],[-1.362,1.732],[-0.936,-0.019],[-0.6,-1.051],[-0.124,-2.497],[1.858,-2.856],[0.277,0.18],[0,0]],"v":[[37.216,4.811],[33.951,12.876],[29.428,15.467],[27.162,14.133],[26.295,10.676],[28.362,3.688],[36.899,1.883],[37.683,2.488]],"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.07,0.023],[0.414,-0.986],[2.8,0],[0,2.39],[-0.605,2.65],[0,0],[0,0],[-0.164,0.97],[1.112,0.227],[0.129,0.002],[0,0],[0,0],[1.162,0.247],[0.138,0.003],[0.197,-0.98],[0,0],[0,0],[1.956,-2.728],[-0.061,-3.582],[-0.222,-0.935],[1.338,-0.044],[0.44,0.524],[-0.063,0.831],[-0.544,2.341],[0,0],[1.139,0.263],[0.264,-1.139],[0,0],[1.643,-0.015],[2.129,-2.577],[-0.109,-3.68],[-0.332,-1.121],[1.08,-0.025],[0.487,0.526],[-0.08,0.842],[-0.372,1.562],[1.187,0.233],[0.06,0.007],[0.254,-1.048],[1.38,-1.9],[1.792,-0.124],[0.467,0.809],[-0.043,1.233],[-1.455,2.031],[-2.176,-0.042],[-1.011,-0.432],[-0.566,0.383],[0.582,0.975],[0.408,0.17],[0.568,0.123],[1.06,0.025],[2.116,-2.546],[0.537,-1.823],[3.2,0],[0.568,0.739],[-0.054,0.921],[-0.061,0.284],[-1.254,1.646],[-0.018,1.978],[3.667,0],[1.797,-1.803],[0,0],[1.138,0.236],[0.146,0],[0.197,-0.981],[0,0],[-1.131,-0.242],[-0.15,0],[-0.167,0.972],[0,0],[-0.558,1.084],[-1.145,0.857],[-1.538,-0.021],[-0.114,-0.771],[0.02,-0.137],[1.158,-0.818],[1.611,-0.257],[0,-0.533],[-1.307,-1.884],[-2.054,0.151],[-1.74,2.247],[0,0],[-0.537,-0.636],[-2.053,0.084],[-2,2.799],[-3.332,0],[-1.436,1.202],[-1.763,0.053],[-1.999,2.8],[-3.333,0],[-1.555,1.434],[-2.028,0.067],[-1.94,2.521],[0.03,3.744],[0.557,1.418],[0,0],[0,0],[0.207,-2.851],[-4.189,0],[-2.534,6.322],[0.958,0.433]],"o":[[-1.01,-0.349],[-1.856,4.666],[-1.466,0],[0.182,-2.712],[0,0],[0,0],[0.983,0.009],[0.227,-1.113],[-0.127,-0.025],[0,0],[0,0],[0.247,-1.162],[-0.134,-0.029],[-1,-0.015],[0,0],[0,0],[-3.356,-0.031],[-2.256,2.783],[-0.001,0.962],[-0.869,1.019],[-0.68,0.066],[-0.411,-0.727],[0.089,-2.402],[0,0],[0.263,-1.139],[-1.138,-0.262],[0,0],[-1.409,-0.843],[-3.342,-0.049],[-2.338,2.845],[-0.023,1.169],[-0.816,0.708],[-0.714,0.064],[-0.468,-0.704],[0.071,-1.604],[0.235,-1.187],[-0.059,-0.012],[-1.069,-0.137],[-0.557,2.282],[-0.978,1.507],[-0.934,-0.018],[-0.616,-1.069],[-0.123,-2.495],[1.239,-1.79],[1.1,0.008],[0.613,0.299],[0.974,-0.582],[-0.228,-0.38],[-0.534,-0.231],[-1.021,-0.286],[-3.309,-0.013],[-1.262,1.42],[-2.066,6.56],[-0.928,0.075],[-0.528,-0.756],[-0.016,-0.29],[1.928,-0.752],[1.218,-1.56],[0,-3.332],[-2.545,-0.012],[0,0],[0.237,-1.138],[-0.142,-0.03],[-1,-0.015],[0,0],[-0.242,1.132],[0.147,0.031],[0.986,-0.032],[0,0],[0.328,-1.174],[0.701,-1.247],[1.161,-1.008],[0.77,-0.113],[0.02,0.136],[-0.109,1.413],[-1.211,1.092],[-0.133,1.266],[-0.102,2.291],[1.282,1.611],[2.842,-0.027],[0,0],[0.301,0.776],[1.298,1.594],[2.856,0],[0.857,2.799],[1.872,-0.023],[1.286,1.206],[2.856,0],[0.867,2.8],[2.115,0.021],[1.401,1.467],[3.181,0],[2.397,-2.877],[0.029,-1.524],[0,0],[0,0],[-0.681,2.776],[0,5.19],[4.761,0],[0.433,-0.958],[-0.066,-0.031]],"v":[[84.424,7.344],[81.891,8.477],[74.969,15.467],[72.77,11.809],[73.951,3.755],[74.55,0.956],[80.263,0.956],[82.253,-0.712],[80.648,-3.137],[80.263,-3.178],[75.502,-3.178],[76.455,-7.833],[74.798,-10.385],[74.388,-10.432],[72.323,-8.766],[71.094,-3.243],[57.764,-3.243],[49.29,1.059],[45.891,10.915],[46.224,13.771],[42.758,15.438],[40.968,14.704],[40.435,12.314],[41.387,5.182],[44.843,-10.928],[43.258,-13.465],[40.72,-11.88],[38.721,-2.044],[34.055,-3.311],[25.401,0.689],[21.944,10.809],[22.411,14.266],[19.478,15.4],[17.574,14.667],[16.974,12.277],[17.64,7.516],[15.915,4.943],[15.736,4.917],[13.413,6.516],[10.48,12.848],[6.082,15.438],[3.825,14.105],[2.949,10.581],[5.005,3.592],[10.471,0.794],[13.67,1.46],[15.575,1.327],[16.287,-1.493],[15.308,-2.34],[13.651,-2.872],[10.518,-3.34],[1.949,0.66],[-0.784,5.583],[-8.706,15.342],[-11.105,14.275],[-11.838,11.686],[-11.771,10.82],[-6.906,7.154],[-5.001,1.697],[-10.458,-3.301],[-17.246,-0.501],[-14.98,-10.975],[-16.612,-13.464],[-17.046,-13.508],[-19.112,-11.842],[-25.301,17.055],[-23.691,19.542],[-23.245,19.59],[-21.264,17.865],[-19.36,9.01],[-18.027,5.611],[-15.228,2.421],[-11.038,0.889],[-9.438,2.077],[-9.438,2.488],[-11.438,6.01],[-15.761,8.077],[-15.961,10.809],[-14.104,17.247],[-8.772,19.579],[-1.517,15.98],[-0.717,15.027],[0.549,17.161],[5.872,19.559],[13.137,15.428],[19.326,19.559],[24.439,17.665],[29.2,19.465],[36.455,15.333],[42.644,19.465],[48.357,17.266],[53.746,19.465],[61.868,15.467],[65.534,5.212],[64.734,0.755],[70.266,0.755],[69.733,3.154],[68.4,11.609],[74.722,19.465],[85.577,9.943],[84.628,7.424]],"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":[[2.118,-2.271],[1.531,-0.016],[0.641,0.81],[-0.082,1.185],[-1.435,2.091],[-2.132,-0.026],[-0.007,-2.926]],"o":[[-1.072,1.095],[-1.031,0.056],[-0.698,-0.961],[-0.093,-2.534],[1.14,-1.802],[2.387,0],[0.04,3.107]],"v":[[-44.458,13.732],[-48.524,15.467],[-51.19,14.266],[-52.143,10.943],[-50.076,3.822],[-44.811,0.964],[-41.221,5.354]],"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":[[2.656,0],[1.965,-2.698],[-0.061,-3.582],[-1.485,-1.766],[-2.151,0.101],[-1.941,2.52],[0.042,3.761],[1.263,1.81]],"o":[[-3.338,-0.041],[-2.257,2.783],[-0.114,2.304],[1.423,1.617],[3.181,-0.003],[2.409,-2.888],[0.097,-2.205],[-1.267,-1.533]],"v":[[-44.592,-3.178],[-53.047,1.059],[-56.446,10.915],[-54.313,17.247],[-48.658,19.646],[-40.536,15.646],[-36.87,5.344],[-38.669,-0.844]],"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":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[86.01,20.888],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":9,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":312,"op":403,"st":312,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"walletconnect-banner.ai","cl":"ai","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":212,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":227,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":287,"s":[100]},{"t":302,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,225.966,0],"ix":2},"a":{"a":0,"k":[729.11,118.912,0],"ix":1},"s":{"a":0,"k":[39,39,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-3.161,-3.095],[0,0],[3.161,-3.094],[0,0],[3.161,3.095],[0,0],[0.79,-0.774],[0,0],[3.161,3.095],[0,0],[-3.16,3.095],[0,0],[-3.161,-3.095],[0,0],[-0.79,0.773],[0,0],[-3.161,-3.095],[0,0],[-0.79,0.773],[0,0]],"o":[[0,0],[3.161,3.095],[0,0],[-3.161,3.095],[0,0],[-0.79,-0.774],[0,0],[-3.16,3.095],[0,0],[-3.16,-3.094],[0,0],[3.16,-3.095],[0,0],[0.791,0.773],[0,0],[3.16,-3.095],[0,0],[0.79,0.773],[0,0],[3.16,-3.095]],"v":[[167.963,-19.762],[191.126,2.917],[191.126,14.123],[86.682,116.385],[75.235,116.385],[1.107,43.807],[-1.755,43.807],[-75.882,116.385],[-87.328,116.385],[-191.776,14.122],[-191.776,2.915],[-168.612,-19.763],[-157.166,-19.763],[-83.037,52.816],[-80.175,52.816],[-6.049,-19.763],[5.397,-19.763],[79.527,52.816],[82.388,52.816],[156.517,-19.762]],"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],[-63.217,-61.894],[0,0],[3.16,-3.095],[0,0],[1.58,1.547],[0,0],[44.101,-43.179],[0,0],[1.58,1.547],[0,0],[-3.16,3.095]],"o":[[63.216,-61.894],[0,0],[3.16,3.095],[0,0],[-1.581,1.547],[0,0],[-44.102,-43.179],[0,0],[-1.581,1.547],[0,0],[-3.16,-3.095],[0,0]],"v":[[-114.788,-72.461],[114.139,-72.461],[121.747,-65.012],[121.747,-53.805],[95.721,-28.323],[89.998,-28.323],[79.528,-38.574],[-80.177,-38.574],[-91.389,-27.596],[-97.112,-27.596],[-123.139,-53.078],[-123.139,-64.285]],"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.231000010173,0.6,0.987999949736,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[194.287,119],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":6,"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],[-6.285,0],[-1.315,0.219],[0,0],[4.312,0],[0,15.273],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,5.992],[1.899,0],[0,0],[-2.192,0.511],[-18.416,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[464.231,-43.665],[485.57,-43.665],[485.57,-25.614],[500.04,-25.614],[500.04,-9.537],[485.57,-9.537],[485.57,27.952],[494.778,36.794],[499.966,36.429],[499.966,52.141],[489.808,53.018],[464.231,31.606],[464.231,-9.537],[453.196,-9.537],[453.196,-25.614],[464.231,-25.614]],"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.95,-17.759],[0,0],[8.77,0],[0,-15.126],[-10.596,0],[-1.315,8.55],[0,0],[20.609,0],[0,25.578],[-23.458,0]],"o":[[0,0],[-1.242,-8.258],[-10.523,0],[0,15.42],[8.55,0],[0,0],[-1.097,18.488],[-23.604,0],[0,-25.138],[21.193,0]],"v":[[448.154,3.544],[428.349,3.544],[412.857,-10.561],[395.756,13.482],[412.93,37.671],[428.349,24.006],[448.227,24.006],[412.71,54.406],[374.126,13.482],[412.564,-27.296]],"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":[[-1.974,5.992],[0,0],[19.365,0],[0,25.065],[-23.165,0],[0,-23.823],[0,0],[0,0],[0,0],[-10.889,0]],"o":[[0,0],[-2.339,15.347],[-24.117,0],[0,-24.993],[22.801,0],[0,0],[0,0],[0,0],[0,11.181],[7.819,0]],"v":[[345.771,28.756],[365.356,28.756],[329.621,54.406],[291.035,13.921],[328.816,-27.296],[366.013,11.947],[366.013,18.452],[312.008,18.452],[312.008,19.768],[329.986,38.622]],"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":[[9.5,0],[0.731,-9.793],[0,0]],"o":[[-9.355,0],[0,0],[-0.438,-10.013]],"v":[[329.036,-11.511],[312.228,5.372],[345.478,5.372]],"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],[-12.057,0],[0,-18.343],[0,0],[0,0],[0,0],[9.574,0],[0,-10.158],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[4.166,-9.72],[17.393,0],[0,0],[0,0],[0,0],[0,-10.232],[-9.573,0],[0,0],[0,0]],"v":[[207.652,52.726],[207.652,-25.614],[228.26,-25.614],[228.26,-11.656],[228.699,-11.656],[253.18,-27.076],[280.366,2.23],[280.366,52.726],[259.027,52.726],[259.027,6.688],[244.63,-9.391],[228.992,7.782],[228.992,52.726]],"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],[-12.058,0],[0,-18.343],[0,0],[0,0],[0,0],[9.572,0],[0,-10.158],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[4.166,-9.72],[17.392,0],[0,0],[0,0],[0,0],[0,-10.232],[-9.574,0],[0,0],[0,0]],"v":[[121.419,52.726],[121.419,-25.614],[142.028,-25.614],[142.028,-11.656],[142.466,-11.656],[166.948,-27.076],[194.132,2.23],[194.132,52.726],[172.794,52.726],[172.794,6.688],[158.398,-9.391],[142.758,7.782],[142.758,52.726]],"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":[[-10.524,0],[0,15.712],[10.377,0],[0,-15.567]],"o":[[10.449,0],[0,-15.567],[-10.378,0],[0,15.712]],"v":[[71.654,38.109],[88.753,13.557],[71.654,-10.999],[54.48,13.557]],"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":[[23.677,0],[0,25.724],[-23.459,0],[0,-25.431]],"o":[[-23.678,0],[0,-25.358],[23.458,0],[0,25.797]],"v":[[71.654,54.406],[32.849,13.482],[71.654,-27.296],[110.459,13.482]],"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":[[25.87,0],[0,34.055],[-30.546,0],[-1.681,-23.605],[0,0],[12.862,0],[0,-22.216],[-16.881,0],[-2.338,12.496],[0,0]],"o":[[-30.693,0],[0,-33.982],[25.358,0],[0,0],[-2.046,-12.935],[-16.661,0],[0,22.508],[13.081,0],[0,0],[-2.484,23.532]],"v":[[-22.472,54.553],[-72.384,-0.037],[-22.472,-54.553],[23.86,-14.872],[2.375,-14.872],[-22.472,-36.284],[-49.876,-0.11],[-22.399,36.283],[2.448,16.113],[23.933,16.113]],"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],[0,0],[0,0],[0,0],[-6.285,0],[-1.315,0.219],[0,0],[4.311,0],[0,15.273],[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,5.992],[1.9,0],[0,0],[-2.192,0.511],[-18.416,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-118.423,-43.665],[-97.084,-43.665],[-97.084,-25.614],[-82.616,-25.614],[-82.616,-9.537],[-97.084,-9.537],[-97.084,27.952],[-87.877,36.794],[-82.688,36.429],[-82.688,52.141],[-92.846,53.018],[-118.423,31.606],[-118.423,-9.537],[-129.458,-9.537],[-129.458,-25.614],[-118.423,-25.614]],"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":[[-1.972,5.992],[0,0],[19.366,0],[0,25.065],[-23.166,0],[0,-23.823],[0,0],[0,0],[0,0],[-10.888,0]],"o":[[0,0],[-2.337,15.347],[-24.115,0],[0,-24.993],[22.801,0],[0,0],[0,0],[0,0],[0,11.181],[7.821,0]],"v":[[-155.329,28.756],[-135.744,28.756],[-171.479,54.406],[-210.064,13.921],[-172.283,-27.296],[-135.085,11.947],[-135.085,18.452],[-189.09,18.452],[-189.09,19.768],[-171.114,38.622]],"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":[[9.5,0],[0.731,-9.793],[0,0]],"o":[[-9.354,0],[0,0],[-0.438,-10.013]],"v":[[-172.063,-11.511],[-188.872,5.372],[-155.621,5.372]],"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,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-242.95,-52.727],[-221.611,-52.727],[-221.611,52.725],[-242.95,52.725]],"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,0]],"o":[[0,0]],"v":[[-242.95,52.726]],"c":false},"ix":2},"nm":"Path 14","mn":"ADBE Vector Shape - Group","hd":false},{"ind":14,"ty":"sh","ix":15,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-279.196,-52.727],[-257.857,-52.727],[-257.857,52.725],[-279.196,52.725]],"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":[[0,0]],"o":[[0,0]],"v":[[-279.196,52.726]],"c":false},"ix":2},"nm":"Path 16","mn":"ADBE Vector Shape - Group","hd":false},{"ind":16,"ty":"sh","ix":17,"ks":{"a":0,"k":{"i":[[9.792,0],[0,14.103],[-19.513,1.169],[0,0],[0,0],[8.038,0],[1.023,-5.774],[0,0],[-20.754,0],[0,-15.784],[0,0],[0,0],[0,0],[0,0]],"o":[[-14.908,0],[0,-14.251],[0,0],[0,0],[0,-7.308],[-7.966,0],[0,0],[0.804,-15.201],[20.096,0],[0,0],[0,0],[0,0],[0,0],[-4.385,8.331]],"v":[[-338.39,53.968],[-364.625,30.218],[-334.151,6.54],[-314.42,5.372],[-314.42,0.182],[-327.574,-11.364],[-341.605,-1.644],[-361.117,-1.644],[-326.624,-27.296],[-293.447,-1.133],[-293.447,52.726],[-314.055,52.726],[-314.055,40.74],[-314.493,40.74]],"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":[[-7.235,0],[0,8.476],[0,0],[0,0],[0,-5.554]],"o":[[9.281,0],[0,0],[0,0],[-7.965,0.584],[0,5.847]],"v":[[-331.374,38.548],[-314.42,24.006],[-314.42,18.307],[-330.936,19.329],[-343.432,29.048]],"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,0],[0,0],[0,0],[0,0],[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],[0,0],[0,0],[0,0],[0,0]],"v":[[-431.273,-19.33],[-451.296,52.726],[-472.123,52.726],[-500.04,-52.727],[-477.166,-52.727],[-460.577,23.641],[-459.993,23.641],[-440.261,-52.727],[-421.626,-52.727],[-401.895,23.641],[-401.311,23.641],[-384.648,-52.727],[-361.775,-52.727],[-389.764,52.726],[-410.591,52.726],[-430.615,-19.33]],"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.224000010771,0.6,0.984000052658,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[958.039,149.553],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":21,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false}],"ip":212,"op":303,"st":212,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"prot2","refId":"comp_0","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":112,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":127,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":187,"s":[100]},{"t":202,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,180,0],"ix":2},"a":{"a":0,"k":[550,208,0],"ix":1},"s":{"a":0,"k":[63,63,100],"ix":6}},"ao":0,"w":1920,"h":1080,"ip":112,"op":203,"st":112,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"prot1","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":27,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":87,"s":[100]},{"t":102,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,169.962,0],"ix":2},"a":{"a":0,"k":[690.999,285.962,0],"ix":1},"s":{"a":0,"k":[63,63,100],"ix":6}},"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":[[-51.984,-7.125],[51.983,54.547],[51.983,-54.547]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.224000010771,0.224000010771,0.224000010771,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[638.984,296.239],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-51.984,54.546],[51.984,-7.124],[-51.984,-54.546]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.078000005086,0.078000005086,0.078000005086,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[742.952,296.24],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[51.985,73.512],[51.985,-11.871],[-51.984,-73.512]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.54900004069,0.54900004069,0.54900004069,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[638.984,382.411],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-51.376,-11.871],[-52.654,-10.306],[-52.654,69.76],[-51.376,73.512],[52.654,-73.512]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.234999997008,0.234999997008,0.231000010173,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[742.344,382.412],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[51.985,-117.394],[-51.984,55.722],[51.985,117.394],[51.985,8.298]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.54900004069,0.54900004069,0.54900004069,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[638.984,233.394],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-50.85,-117.393],[-53.12,-109.647],[-53.12,115.118],[-50.85,117.393],[53.12,55.722]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.204000001795,0.204000001795,0.204000001795,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[741.818,233.393],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":12,"op":103,"st":-13,"bm":0},{"ddd":0,"ind":10,"ty":4,"nm":"desktop 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":862,"s":[0]},{"t":877,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,904.59,0],"ix":2},"a":{"a":0,"k":[551.552,1292.59,0],"ix":1},"s":{"a":0,"k":[67,67,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.405,-0.431],[0,-0.6],[-0.404,-0.43],[-0.573,0],[0,0],[-0.405,0.42],[0,0.599],[0.405,0.43],[0.572,0.011]],"o":[[-0.573,0.011],[-0.404,0.43],[0,0.599],[0.405,0.42],[0,0],[0.572,0],[0.405,-0.43],[0,-0.6],[-0.405,-0.431],[0,0]],"v":[[-12.921,-2.27],[-14.448,-1.599],[-15.081,0.001],[-14.448,1.61],[-12.921,2.27],[12.923,2.27],[14.449,1.61],[15.081,0.001],[14.449,-1.599],[12.923,-2.27]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[632.483,1294.66],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.569,0],[0,0],[-0.402,0.38],[0,0.529],[0.402,0.379],[0.57,0]],"o":[[-0.569,0],[-0.402,0.379],[0,0.529],[0.402,0.38],[0,0],[0.57,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.519,-2.015],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.519,2.015],[28.518,2.015],[30.035,1.425],[30.664,0.006],[30.035,-1.424],[28.518,-2.015]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[648.067,1273.735],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.569,0],[0,0],[-0.402,0.38],[0,0.529],[0.402,0.379],[0.569,0]],"o":[[-0.569,0],[-0.402,0.379],[0,0.529],[0.402,0.38],[0,0],[0.569,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.519,-2.015],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.519,2.015],[28.518,2.015],[30.036,1.425],[30.664,0.006],[30.036,-1.424],[28.518,-2.015]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[552.056,1273.735],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.57,0],[0,0],[-0.402,0.38],[0,0.529],[0.402,0.379],[0.569,0]],"o":[[-0.57,0],[-0.402,0.379],[0,0.529],[0.402,0.38],[0,0],[0.569,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.518,-2.015],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.518,2.015],[28.518,2.015],[30.035,1.425],[30.663,0.006],[30.035,-1.424],[28.518,-2.015]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[453.531,1273.735],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.569,0],[0,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0.57,0]],"o":[[-0.569,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0,0],[0.57,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.519,-2.014],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.519,2.015],[28.518,2.015],[30.035,1.425],[30.664,0.006],[30.035,-1.424],[28.518,-2.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[648.067,1284.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 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.398,-0.431],[0,-0.6],[-0.398,-0.43],[-0.563,0],[0,0],[-0.397,0.42],[0,0.599],[0.398,0.43],[0.564,0.011]],"o":[[-0.563,0.011],[-0.398,0.43],[0,0.599],[0.398,0.42],[0,0],[0.564,0],[0.398,-0.43],[0,-0.6],[-0.397,-0.431],[0,0]],"v":[[-12.707,-2.27],[-14.208,-1.599],[-14.829,0.001],[-14.208,1.61],[-12.707,2.27],[12.706,2.27],[14.207,1.61],[14.829,0.001],[14.207,-1.599],[12.706,-2.27]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[536.221,1294.66],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.569,0],[0,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0.569,0]],"o":[[-0.569,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0,0],[0.569,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.519,-2.014],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.519,2.015],[28.518,2.015],[30.036,1.425],[30.664,0.006],[30.036,-1.424],[28.518,-2.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[552.056,1284.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 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.397,-0.431],[0,-0.6],[-0.398,-0.43],[-0.563,0],[0,0],[-0.398,0.42],[0,0.599],[0.397,0.43],[0.563,0.011]],"o":[[-0.563,0.011],[-0.398,0.43],[0,0.599],[0.397,0.42],[0,0],[0.563,0],[0.397,-0.43],[0,-0.6],[-0.398,-0.431],[0,0]],"v":[[-12.707,-2.27],[-14.208,-1.599],[-14.829,0.001],[-14.208,1.61],[-12.707,2.27],[12.707,2.27],[14.208,1.61],[14.829,0.001],[14.208,-1.599],[12.707,-2.27]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[437.696,1294.66],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.57,0],[0,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0.569,0]],"o":[[-0.57,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0,0],[0.569,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.518,-2.014],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.518,2.015],[28.518,2.015],[30.035,1.425],[30.663,0.006],[30.035,-1.424],[28.518,-2.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[453.531,1284.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 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.195,-0.19],[0,-0.27],[0,0],[-0.195,-0.2],[-0.276,0],[0,0],[-0.196,0.2],[0,0.28],[0,0],[0.195,0.2],[0.276,0]],"o":[[-0.276,0],[-0.195,0.2],[0,0],[0,0.28],[0.195,0.2],[0,0],[0.276,0],[0.195,-0.2],[0,0],[0,-0.27],[-0.196,-0.19],[0,0]],"v":[[-30.627,-27.735],[-31.363,-27.435],[-31.668,-26.695],[-31.668,26.685],[-31.363,27.425],[-30.627,27.735],[30.628,27.735],[31.364,27.425],[31.669,26.685],[31.669,-26.695],[31.364,-27.435],[30.628,-27.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[648.569,1228.355],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.194,-0.2],[0.001,-0.27],[0,0],[-0.194,-0.19],[-0.274,0],[0,0],[-0.194,0.2],[-0.001,0.27],[0,0],[0.194,0.19],[0.275,0]],"o":[[-0.274,0],[-0.194,0.19],[0,0],[0.001,0.27],[0.194,0.2],[0,0],[0.275,0],[0.194,-0.19],[0,0],[-0.001,-0.27],[-0.194,-0.2],[0,0]],"v":[[-30.13,-27.235],[-30.863,-26.925],[-31.167,-26.195],[-31.167,26.195],[-30.863,26.925],[-30.13,27.235],[30.13,27.235],[30.862,26.925],[31.167,26.195],[31.167,-26.195],[30.862,-26.925],[30.13,-27.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.552,1228.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 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.195,-0.2],[0,-0.28],[0,0],[-0.195,-0.2],[-0.276,0],[0,0],[-0.196,0.2],[-0.001,0.28],[0,0],[0.195,0.19],[0.276,0]],"o":[[-0.276,0],[-0.195,0.19],[0,0],[0,0.28],[0.195,0.2],[0,0],[0.276,0],[0.195,-0.2],[0,0],[-0.001,-0.28],[-0.196,-0.2],[0,0]],"v":[[-30.376,-27.485],[-31.112,-27.175],[-31.417,-26.435],[-31.417,26.435],[-31.112,27.175],[-30.376,27.485],[30.377,27.485],[31.113,27.175],[31.418,26.435],[31.418,-26.435],[31.113,-27.175],[30.377,-27.485]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[454.285,1228.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[147.033,-73.625],[-147.033,-73.625],[-147.033,73.625],[147.033,73.625]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.301,1252.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 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.833,0],[0,0.981],[0.833,0],[0,-0.969]],"o":[[0.833,0],[0,-0.969],[-0.833,0],[0,0.981]],"v":[[0,1.765],[1.508,-0.006],[0,-1.765],[-1.508,-0.006]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[418.343,1173.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 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.971,0],[0,0.981],[0.972,0],[0,-0.969]],"o":[[0.972,0],[0,-0.969],[-0.971,0],[0,0.981]],"v":[[0,1.765],[1.759,-0.006],[0,-1.765],[-1.759,-0.006]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[412.06,1173.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 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.833,0],[0,0.981],[0.833,0],[0,-0.969]],"o":[[0.833,0],[0,-0.969],[-0.833,0],[0,0.981]],"v":[[0,1.765],[1.508,-0.006],[0,-1.765],[-1.508,-0.006]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[405.776,1173.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 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":[[-4.859,0],[0,4.73],[4.858,0],[0,-4.73]],"o":[[4.858,0],[0,-4.73],[-4.859,0],[0,4.73]],"v":[[0,8.57],[8.797,0],[0,-8.57],[-8.797,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.246999987434,0.238999998803,0.337000020345,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.804,1379.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[155.579,-87.745],[-155.579,-87.745],[-155.579,87.745],[155.579,87.745]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.804,1255.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 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.439,-1.07],[-0.811,-0.82],[-1.06,-0.439],[-1.147,0],[0,0],[-1.638,1.65],[0,2.33],[0,0]],"o":[[0,0],[0,1.16],[0.439,1.069],[0.811,0.82],[1.06,0.441],[0,0],[2.317,0],[1.638,-1.65],[0,0],[0,0]],"v":[[-172.921,-20.93],[-172.921,12.12],[-172.257,15.49],[-170.362,18.35],[-167.527,20.259],[-164.184,20.93],[164.185,20.93],[170.362,18.35],[172.922,12.12],[172.922,-20.93]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.552,1379.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 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":[[1.146,0],[0,0],[1.639,-1.641],[0,-2.319],[0,0],[0,0],[0,0],[0.44,1.06],[0.81,0.82],[1.059,0.44]],"o":[[0,0],[-2.318,0],[-1.639,1.639],[0,0],[0,0],[0,0],[0,-1.149],[-0.439,-1.06],[-0.812,-0.811],[-1.061,-0.44]],"v":[[164.185,-104.635],[-164.184,-104.635],[-170.362,-102.074],[-172.921,-95.885],[-172.921,104.635],[172.921,104.635],[172.921,-95.885],[172.256,-99.235],[170.363,-102.074],[167.528,-103.965]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.475,0.475,0.475,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.552,1253.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-48.006,4.23],[48.007,4.23],[48.007,-4.23],[-48.006,-4.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.803,1431.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[42.728,18.91],[-42.728,18.91],[-39.831,-18.91],[39.831,-18.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.05,1412.66],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":862,"op":905,"st":862,"bm":0},{"ddd":0,"ind":11,"ty":4,"nm":"server 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":762,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":777,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":836,"s":[100]},{"t":851,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,898.776,0],"ix":2},"a":{"a":0,"k":[1183.78,1290.776,0],"ix":1},"s":{"a":0,"k":[64,64,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.859,0],[0,2.839],[2.851,0],[0,-2.851]],"o":[[2.851,0],[0,-2.851],[-2.859,0],[0,2.839]],"v":[[0.005,5.15],[5.165,0.001],[0.005,-5.15],[-5.165,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1288.764,1355.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 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":[[-2.85,0],[0,2.839],[2.86,0],[0,-2.851]],"o":[[2.86,0],[0,-2.851],[-2.85,0],[0,2.839]],"v":[[-0.006,5.15],[5.165,0.001],[-0.006,-5.15],[-5.165,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1270.695,1355.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 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":[[-2.851,0],[0,2.839],[2.85,0],[0,-2.851]],"o":[[2.85,0],[0,-2.851],[-2.851,0],[0,2.839]],"v":[[-0.005,5.15],[5.165,0.001],[-0.005,-5.15],[-5.165,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1252.625,1355.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 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":[[-2.859,0],[0,2.839],[2.851,0],[0,-2.85]],"o":[[2.851,0],[0,-2.85],[-2.859,0],[0,2.839]],"v":[[0.005,5.15],[5.165,0],[0.005,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1288.764,1257.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":[[-2.85,0],[0,2.839],[2.86,0],[0,-2.85]],"o":[[2.86,0],[0,-2.85],[-2.85,0],[0,2.839]],"v":[[-0.006,5.15],[5.165,0],[-0.006,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1270.695,1257.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":[[-2.851,0],[0,2.839],[2.85,0],[0,-2.85]],"o":[[2.85,0],[0,-2.85],[-2.851,0],[0,2.839]],"v":[[-0.005,5.15],[5.165,0],[-0.005,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1252.625,1257.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},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.859,0],[0,2.85],[2.851,0],[0,-2.84]],"o":[[2.851,0],[0,-2.84],[-2.859,0],[0,2.85]],"v":[[0.005,5.15],[5.165,0],[0.005,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1288.764,1159.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 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":[[-2.85,0],[0,2.85],[2.86,0],[0,-2.84]],"o":[[2.86,0],[0,-2.84],[-2.85,0],[0,2.85]],"v":[[-0.006,5.15],[5.165,0],[-0.006,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1270.695,1159.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 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":[[-2.851,0],[0,2.85],[2.85,0],[0,-2.84]],"o":[[2.85,0],[0,-2.84],[-2.851,0],[0,2.85]],"v":[[-0.005,5.15],[5.165,0],[-0.005,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1252.625,1159.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[112.73,-6.865],[-112.73,-6.865],[-112.73,6.865],[112.73,6.865]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1390.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 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":[[112.73,-6.865],[-112.73,-6.865],[-112.73,6.865],[112.73,6.865]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1290.854],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[112.73,-6.865],[-112.73,-6.865],[-112.73,6.865],[112.73,6.865]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1191.285],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[112.73,-44.635],[-112.73,-44.635],[-112.73,44.635],[112.73,44.635]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.455000005984,0.455000005984,0.455000005984,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1390.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 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":[[112.73,-44.635],[-112.73,-44.635],[-112.73,44.635],[112.73,44.635]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.455000005984,0.455000005984,0.455000005984,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1290.776],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[112.73,-44.635],[-112.73,-44.635],[-112.73,44.635],[112.73,44.635]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.455000005984,0.455000005984,0.455000005984,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1191.205],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[83.9,-112.44],[-83.9,-112.44],[-83.9,112.441],[83.9,112.441]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301999978458,0.301999978458,0.301999978458,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1265.879],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":762,"op":852,"st":762,"bm":0},{"ddd":0,"ind":12,"ty":4,"nm":"drone 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":662,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":677,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":736,"s":[100]},{"t":751,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,919.63,0],"ix":2},"a":{"a":0,"k":[896.418,1381.63,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10.445,-2.085],[-10.445,-2.085],[-10.445,2.085],[10.445,2.085]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.417,1389.515],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-21.151,3.609],[-34.729,1.27],[-34.862,0.949],[-35.512,1.01],[-34.729,2.829],[-21.151,5.171],[35.511,-5.171],[18.719,-3.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[855.554,1334.641],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-35.511,0.649],[35.511,-4.821],[-21.151,4.82],[-34.729,2.469]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[854.77,1334.29],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-21.151,3.609],[-34.729,1.27],[-34.862,0.949],[-35.512,1.01],[-34.729,2.829],[-21.151,5.171],[35.511,-5.171],[18.721,-3.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1016.139,1334.641],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[93.74,-0.6],[-93.74,-0.6],[-93.74,0.6],[93.74,0.6]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.679,1360.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 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.476,0.36],[0.068,-1.01],[0.716,-0.72],[1.009,-0.06],[0.804,0.61],[-0.524,-0.28],[-0.594,-0.04],[-0.558,0.21],[-0.422,0.42],[-0.209,0.55],[0.041,0.59],[0.285,0.52]],"o":[[0.613,0.8],[-0.067,1.011],[-0.714,0.71],[-1.008,0.07],[0.362,0.481],[0.526,0.28],[0.594,0.04],[0.559,-0.2],[0.422,-0.42],[0.211,-0.56],[-0.041,-0.59],[-0.283,-0.529]],"v":[[2.082,-3.755],[2.927,-0.955],[1.715,1.715],[-0.956,2.915],[-3.766,2.075],[-2.423,3.225],[-0.724,3.715],[1.025,3.455],[2.513,2.505],[3.469,1.025],[3.726,-0.725],[3.232,-2.415]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.469,1426.425],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-2.308,0],[0,2.3],[2.307,0],[0,-2.301]],"o":[[2.307,0],[0,-2.301],[-2.308,0],[0,2.3]],"v":[[0.001,4.17],[4.179,0],[0.001,-4.17],[-4.178,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.026,1425.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 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":[[-4.038,0],[0,4.029],[4.038,0],[0,-4.03]],"o":[[4.038,0],[0,-4.03],[-4.038,0],[0,4.029]],"v":[[0.001,7.295],[7.312,-0.005],[0.001,-7.296],[-7.311,-0.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.026,1425.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 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],[0,0],[0,0],[0,0],[-0.474,0.38],[-0.614,0],[0,0],[-0.474,-0.39],[-0.12,-0.6],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0.12,-0.6],[0.475,-0.39],[0,0],[0.613,0],[0.474,0.38],[0,0],[0,0]],"v":[[25.377,-2.085],[15.396,6.255],[-15.938,6.255],[-25.377,-2.085],[-15.992,-2.085],[-15.581,-4.125],[-14.662,-5.645],[-12.981,-6.255],[13.219,-6.255],[14.901,-5.645],[15.82,-4.125],[16.23,-2.085]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.298,1391.465],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.347,-0.341],[0,-0.491],[0,0],[-0.347,-0.349],[-0.491,0],[0,0],[-0.348,0.351],[0,0.48],[0,0],[0.347,0.35],[0.491,0]],"o":[[-0.491,0],[-0.347,0.35],[0,0],[0,0.48],[0.347,0.351],[0,0],[0.491,0],[0.347,-0.349],[0,0],[0,-0.491],[-0.348,-0.341],[0,0]],"v":[[-11.196,-9.24],[-12.505,-8.7],[-13.047,-7.39],[-13.047,7.401],[-12.505,8.699],[-11.196,9.24],[11.198,9.24],[12.505,8.699],[13.047,7.401],[13.047,-7.39],[12.505,-8.7],[11.198,-9.24]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.026,1425.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 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.408,0],[0,0],[0.377,-0.16],[0.289,-0.29],[0.156,-0.38],[0,-0.4],[0,0],[-0.36,-0.52],[-0.59,-0.219],[-0.001,-0.71],[0,0],[-0.227,-0.43],[-0.402,-0.28],[0,0],[0,0],[0,0],[-0.227,0.44],[0,0.49],[0,0],[0.456,0.541],[-0.359,0.52],[-0.001,0.63],[0,0],[0.156,0.37],[0.289,0.29],[0.377,0.159]],"o":[[0,0],[-0.407,0],[-0.377,0.159],[-0.288,0.29],[-0.156,0.37],[0,0],[0.001,0.63],[0.359,0.52],[-0.455,0.541],[0,0],[0,0.49],[0.228,0.44],[0,0],[0,0],[0,0],[0.402,-0.28],[0.228,-0.43],[0,0],[0.001,-0.71],[0.59,-0.219],[0.359,-0.52],[0,0],[0,-0.4],[-0.156,-0.38],[-0.288,-0.29],[-0.376,-0.16]],"v":[[5.51,-11.335],[-5.51,-11.335],[-6.698,-11.095],[-7.706,-10.425],[-8.38,-9.415],[-8.617,-8.235],[-8.617,-5.835],[-8.065,-4.075],[-6.607,-2.936],[-7.31,-0.995],[-7.31,-0.305],[-6.966,1.095],[-6.007,2.185],[-6.007,11.335],[6.006,11.335],[6.006,2.185],[6.966,1.095],[7.311,-0.305],[7.311,-0.995],[6.607,-2.936],[8.065,-4.075],[8.617,-5.835],[8.617,-8.235],[8.38,-9.415],[7.706,-10.425],[6.698,-11.095]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.026,1406.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-35.512,0.649],[35.512,-4.821],[-21.152,4.82],[-34.73,2.469]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1015.618,1334.29],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.54,0.13],[0.887,0.151],[0,0.511],[0,0],[0.147,0.349],[0.274,0.269],[0.357,0.149],[0.386,0],[0,0],[-0.267,1.36],[0.535,1.279],[1.158,0.771],[1.393,0],[1.158,-0.769],[0.536,-1.28],[-0.267,-1.37],[-0.978,-0.989],[0,0],[0.355,-0.15],[0.272,-0.27],[0.148,-0.361],[0,-0.391],[0,0],[-0.112,-0.321],[2.548,-0.639],[0,0],[0,0],[-0.457,0.46],[0,0.641],[0,0],[0.345,0.43]],"o":[[-0.887,-0.19],[0.252,-0.439],[0,0],[0,-0.391],[-0.147,-0.361],[-0.273,-0.27],[-0.356,-0.15],[0,0],[0.98,-0.989],[0.267,-1.37],[-0.535,-1.28],[-1.158,-0.769],[-1.391,0],[-1.157,0.771],[-0.535,1.279],[0.268,1.36],[0,0],[-0.385,0],[-0.357,0.149],[-0.274,0.269],[-0.148,0.349],[0,0],[0.001,0.33],[-2.609,0.31],[0,0],[0,0],[0.645,0],[0.457,-0.449],[0,0],[0.001,-0.561],[-0.346,-0.429]],"v":[[13.113,10.745],[10.453,10.234],[10.837,8.784],[10.837,-3.585],[10.613,-4.705],[9.976,-5.655],[9.023,-6.295],[7.898,-6.516],[6.705,-6.516],[8.617,-10.115],[8.205,-14.175],[5.607,-17.316],[1.697,-18.495],[-2.214,-17.316],[-4.81,-14.175],[-5.222,-10.115],[-3.311,-6.516],[-4.504,-6.516],[-5.628,-6.295],[-6.581,-5.655],[-7.219,-4.705],[-7.443,-3.585],[-7.443,8.784],[-7.272,9.765],[-15.014,11.194],[-15.014,18.495],[12.58,18.495],[14.301,17.774],[15.013,16.064],[15.013,13.125],[14.482,11.604]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[975.274,1346.405],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[2.608,0.32],[-0.001,0.33],[0,0],[0.55,0.55],[0.78,0],[0,0],[-0.265,1.36],[0.536,1.28],[1.159,0.77],[1.392,0],[1.158,-0.77],[0.536,-1.28],[-0.266,-1.37],[-0.979,-0.989],[0,0],[0.357,-0.15],[0.273,-0.27],[0.148,-0.36],[0,-0.39],[0,0],[-0.252,-0.439],[0.887,-0.19],[0.345,-0.43],[-0.001,-0.56],[0,0],[-0.456,-0.45],[-0.646,0],[0,0],[0,0]],"o":[[0.111,-0.311],[0,0],[0,-0.78],[-0.551,-0.55],[0,0],[0.981,-0.989],[0.267,-1.37],[-0.535,-1.28],[-1.158,-0.77],[-1.39,0],[-1.158,0.77],[-0.536,1.28],[0.267,1.36],[0,0],[-0.386,0],[-0.356,0.15],[-0.273,0.269],[-0.147,0.35],[0,0],[0,0.511],[-0.886,0.151],[-0.54,0.13],[-0.346,0.429],[0,0],[0,0.64],[0.457,0.459],[0,0],[0,0],[-2.547,-0.639]],"v":[[7.274,9.755],[7.443,8.784],[7.443,-3.585],[6.584,-5.655],[4.505,-6.516],[3.312,-6.516],[5.223,-10.115],[4.811,-14.175],[2.214,-17.315],[-1.696,-18.495],[-5.606,-17.315],[-8.203,-14.175],[-8.615,-10.115],[-6.704,-6.516],[-7.897,-6.516],[-9.021,-6.295],[-9.974,-5.655],[-10.611,-4.705],[-10.834,-3.585],[-10.834,8.784],[-10.451,10.234],[-13.112,10.745],[-14.48,11.605],[-15.013,13.125],[-15.013,16.065],[-14.299,17.775],[-12.577,18.495],[15.015,18.495],[15.015,11.194]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[817.821,1346.405],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-37.418,0],[-3.551,-3.36],[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],[3.551,-3.36],[37.417,0],[0,0],[0,0]],"v":[[87.995,-10.425],[81.99,-10.165],[26.97,12.995],[23.82,15.625],[13.839,23.965],[-17.495,23.965],[-26.932,15.625],[-30.52,12.455],[-83.296,-9.905],[-87.995,-10.425],[-72.328,-17.975],[-72.245,-17.975],[-0.523,-23.965],[71.199,-17.975],[71.545,-17.975]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[897.854,1373.755],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21.151,3.609],[34.728,1.27],[34.862,0.949],[35.512,1.01],[34.728,2.829],[21.151,5.171],[-35.511,-5.171],[-18.72,-3.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[776.697,1334.641],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[35.511,0.649],[-35.512,-4.821],[21.15,4.82],[34.728,2.469]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[777.481,1334.29],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21.151,3.609],[34.728,1.27],[34.862,0.949],[35.511,1.01],[34.728,2.829],[21.151,5.171],[-35.512,-5.171],[-18.72,-3.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[938.849,1334.641],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[35.511,0.649],[-35.511,-4.821],[21.15,4.82],[34.728,2.469]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[938.327,1334.29],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.256,-0.259],[0,-0.36],[0,0],[-0.256,-0.25],[-0.363,0],[0,0],[-0.256,0.26],[0,0.359],[0,0],[0.255,0.25],[0.363,0]],"o":[[-0.363,0],[-0.256,0.25],[0,0],[0,0.359],[0.256,0.26],[0,0],[0.363,0],[0.255,-0.25],[0,0],[0,-0.36],[-0.256,-0.259],[0,0]],"v":[[-4.631,-28.58],[-5.598,-28.18],[-5.997,-27.22],[-5.997,27.221],[-5.598,28.181],[-4.631,28.58],[4.631,28.58],[5.597,28.181],[5.997,27.221],[5.997,-27.22],[5.597,-28.18],[4.631,-28.58]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[935.193,1406.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 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.257,-0.259],[0,-0.36],[0,0],[-0.257,-0.25],[-0.362,0],[0,0],[-0.256,0.26],[-0.001,0.359],[0,0],[0.255,0.25],[0.362,0]],"o":[[-0.362,0],[-0.257,0.25],[0,0],[0,0.359],[0.257,0.26],[0,0],[0.362,0],[0.255,-0.25],[0,0],[-0.001,-0.36],[-0.256,-0.259],[0,0]],"v":[[-4.631,-28.58],[-5.597,-28.18],[-5.997,-27.22],[-5.997,27.221],[-5.597,28.181],[-4.631,28.58],[4.631,28.58],[5.596,28.181],[5.997,27.221],[5.997,-27.22],[5.596,-28.18],[4.631,-28.58]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[858.165,1406.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 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false}],"ip":662,"op":752,"st":662,"bm":0},{"ddd":0,"ind":13,"ty":4,"nm":"phone 2","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":562,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":577,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":636,"s":[100]},{"t":651,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,892.975,0],"ix":2},"a":{"a":0,"k":[113.713,1348.975,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16.135,-16.96],[-16.135,-16.96],[-16.135,16.96],[16.135,16.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[97.521,1398.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 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":[[16.135,-12.065],[-16.135,-12.065],[-16.135,12.065],[16.135,12.065]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[97.521,1364.425],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[13.445,-7.62],[-13.446,-7.62],[-13.446,7.62],[13.445,7.62]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[132.633,1340.4],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[13.445,-8.2],[-13.446,-8.2],[-13.446,8.2],[13.445,8.2]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[132.633,1320.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13.445,-7.62],[-13.446,-7.62],[-13.446,7.62],[13.445,7.62]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[132.633,1300.27],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13.41,-31.34],[-13.41,-31.34],[-13.41,31.34],[13.41,31.34]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[132.571,1383.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16.135,-27.684],[-16.135,-27.684],[-16.135,27.685],[16.135,27.685]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[97.482,1320.334],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[1.48,0],[0,0],[0.09,-0.88],[0.49,-0.729],[0.774,-0.42],[0.878,0],[0,0],[0.775,0.41],[0.49,0.731],[0.089,0.881],[-0.332,0.82],[0,0],[2.113,-2.13],[0,-3],[0,0],[-0.566,-1.369],[-1.046,-1.05],[-1.367,-0.569],[-1.48,0],[0,0],[-1.367,0.571],[-1.046,1.051],[-0.566,1.37],[0,1.48],[0,0],[0.566,1.37],[1.047,1.051],[1.367,0.571]],"o":[[0,0],[0.331,0.82],[-0.089,0.881],[-0.489,0.731],[-0.775,0.41],[0,0],[-0.878,0],[-0.775,-0.42],[-0.489,-0.729],[-0.09,-0.88],[0,0],[-2.988,0],[-2.113,2.12],[0,0],[0,1.48],[0.567,1.37],[1.046,1.051],[1.367,0.571],[0,0],[1.48,0],[1.367,-0.569],[1.047,-1.05],[0.566,-1.369],[0,0],[0,-1.49],[-0.566,-1.369],[-1.046,-1.049],[-1.367,-0.559]],"v":[[27.747,-83.031],[20.538,-83.031],[20.906,-80.45],[20.024,-78],[18.099,-76.25],[15.582,-75.62],[-16.058,-75.62],[-18.575,-76.25],[-20.501,-78],[-21.383,-80.45],[-21.014,-83.031],[-27.748,-83.031],[-35.715,-79.71],[-39.015,-71.71],[-39.015,71.719],[-38.158,76.05],[-35.715,79.719],[-32.06,82.17],[-27.748,83.031],[27.747,83.031],[32.059,82.17],[35.714,79.719],[38.157,76.05],[39.014,71.719],[39.014,-71.71],[38.157,-76.041],[35.714,-79.71],[32.059,-82.17]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[113.713,1348.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 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],[2.83,2.84],[4.001,0],[0,0],[1.83,-0.761],[1.402,-1.41],[0.758,-1.83],[0,-1.991],[0,0],[-0.758,-1.84],[-1.4,-1.41],[-1.831,-0.76],[-1.981,0],[0,0],[-2.829,2.84],[0,4.021],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-4.021],[-2.829,-2.84],[0,0],[-1.981,0],[-1.831,0.769],[-1.4,1.41],[-0.758,1.84],[0,0],[0,1.99],[0.758,1.84],[1.401,1.41],[1.83,0.76],[0,0],[4.002,0],[2.829,-2.84],[0,0],[0,0],[0,0]],"v":[[43.178,-45.635],[42.226,-45.635],[42.226,-71.824],[37.807,-82.535],[27.139,-86.975],[-28.091,-86.975],[-33.864,-85.824],[-38.76,-82.535],[-42.03,-77.625],[-43.178,-71.824],[-43.178,71.815],[-42.03,77.615],[-38.76,82.535],[-33.864,85.815],[-28.091,86.975],[27.138,86.975],[37.807,82.535],[42.226,71.815],[42.226,-27.005],[43.178,-27.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.368999974868,0.368999974868,0.368999974868,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[113.713,1348.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 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false}],"ip":562,"op":651,"st":462,"bm":0},{"ddd":0,"ind":14,"ty":4,"nm":"controller_svg.ai","cl":"ai","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":462,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":477,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":536,"s":[100]},{"t":551,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,911.693,0],"ix":2},"a":{"a":0,"k":[78.784,53.193,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[3.227,0],[0,3.191],[-3.194,0],[0,-3.191]],"o":[[-3.194,0],[0,-3.191],[3.194,0],[0,3.191]],"v":[[54.991,-7.846],[49.189,-13.642],[54.991,-19.438],[60.794,-13.642]],"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":[[3.194,0],[0,3.191],[-3.196,0],[0,-3.191]],"o":[[-3.196,0],[0,-3.191],[3.194,0],[0,3.191]],"v":[[45.506,1.63],[39.703,-4.166],[45.506,-9.962],[51.307,-4.166]],"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,3.191],[-3.194,0],[0,-3.191],[3.194,0]],"o":[[0,-3.191],[3.194,0],[0,3.191],[-3.194,0]],"v":[[30.184,-13.642],[35.987,-19.438],[41.789,-13.642],[35.987,-7.846]],"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":[[1.5,-0.066],[0.162,3.451],[-0.457,0.912],[0,0.034],[-0.098,0.162],[0,0.032],[-0.423,0.391],[0,0],[-0.358,0.195],[-0.033,0],[-0.131,0.066],[-0.032,0.032],[-0.13,0.064],[-0.033,0],[-0.163,0.032],[-0.065,0],[-0.163,0.034],[-0.065,0],[-0.162,0.033],[0,0],[0,0],[-0.098,0],[-0.098,0],[-0.097,-0.034],[-0.065,-0.032],[-0.132,-0.033],[-0.099,-0.032],[-0.099,-0.033],[-0.098,-0.065],[-0.098,-0.065],[-0.065,-0.032],[-0.098,-0.032],[-0.064,-0.065],[-0.065,-0.066],[-0.065,-0.066],[-0.099,-0.097],[-0.064,-0.065],[-0.065,-0.065],[-0.066,-0.066],[-0.066,-0.098],[-0.066,-0.097],[-0.066,-0.064],[-0.033,-0.098],[-0.032,-0.098],[-0.033,-0.097],[-0.033,-0.098],[0,-0.097],[0,-0.13],[0,-0.098],[0,-0.196],[0,0],[0,0],[0.033,-0.163],[0,0],[0.066,-0.163],[0,0],[0.684,-0.749],[0,0],[0,-0.033]],"o":[[-3.455,0.163],[-0.066,-1.074],[0,-0.032],[0.066,-0.162],[0,-0.033],[0.293,-0.488],[0,0],[0.293,-0.26],[0.032,0],[0.13,-0.098],[0.032,-0.032],[0.131,-0.066],[0.032,0],[0.163,-0.064],[0.066,0],[0.131,-0.032],[0.065,0],[0.195,-0.032],[0,0],[0,0],[0.098,0],[0.098,0],[0.098,0.032],[0.099,0.032],[0.098,0.033],[0.098,0.033],[0.097,0.034],[0.098,0.032],[0.097,0.032],[0.065,0.032],[0.098,0.066],[0.064,0.066],[0.066,0.065],[0.065,0.064],[0.066,0.064],[0.064,0.066],[0.067,0.065],[0.065,0.065],[0.064,0.065],[0.064,0.097],[0.065,0.098],[0.031,0.098],[0.033,0.097],[0.033,0.097],[0.033,0.098],[0.032,0.097],[0.033,0.131],[0,0.065],[0.033,0.195],[0,0],[0,0],[0,0.195],[0,0],[-0.032,0.196],[0,0],[-0.26,0.977],[0,0],[-0.033,0.033],[-1.109,0.944]],"v":[[21.22,23.806],[14.669,17.847],[15.288,14.851],[15.32,14.785],[15.581,14.33],[15.614,14.265],[16.722,12.93],[16.755,12.897],[17.7,12.213],[17.765,12.181],[18.189,11.952],[18.319,11.888],[18.743,11.693],[18.841,11.659],[19.362,11.497],[19.525,11.464],[19.949,11.366],[20.112,11.334],[20.666,11.269],[21.155,11.269],[21.449,11.269],[21.775,11.302],[22.068,11.334],[22.393,11.4],[22.655,11.464],[22.981,11.562],[23.242,11.659],[23.535,11.79],[23.796,11.92],[24.089,12.083],[24.317,12.213],[24.578,12.376],[24.805,12.539],[25.034,12.735],[25.262,12.93],[25.491,13.157],[25.685,13.353],[25.882,13.581],[26.078,13.809],[26.241,14.07],[26.404,14.33],[26.567,14.59],[26.697,14.851],[26.827,15.144],[26.925,15.404],[27.023,15.73],[27.088,15.99],[27.153,16.381],[27.185,16.61],[27.251,17.228],[27.251,17.815],[27.251,17.879],[27.185,18.433],[27.185,18.498],[27.055,19.052],[27.055,19.084],[25.621,21.722],[25.23,22.112],[25.165,22.178]],"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":[[2.446,0],[0,2.441],[-2.445,0],[0,-2.443]],"o":[[-2.445,0],[0,-2.443],[2.446,0],[0,2.441]],"v":[[-0.229,6.547],[-4.629,2.152],[-0.229,-2.245],[4.172,2.152]],"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":[[3.456,-0.163],[1.207,1.042],[0.099,0.097],[0.065,0.065],[0.033,0.065],[0.065,0.099],[0.032,0.034],[0.065,1.237],[-1.922,1.172],[-1.076,0.065],[0,0],[-0.13,-0.033],[0,0],[-0.358,-0.097],[0,0],[-0.163,-0.098],[0,0],[-0.684,-1.433],[-0.033,-0.032],[-0.033,-0.814]],"o":[[-1.695,0.098],[-0.098,-0.064],[-0.065,-0.066],[-0.065,-0.065],[-0.065,-0.097],[-0.033,-0.032],[-0.685,-0.944],[-0.098,-2.377],[0.881,-0.522],[0,0],[0.13,0],[0,0],[0.391,0.032],[0,0],[0.163,0.066],[0,0],[1.467,0.586],[0,0.033],[0.326,0.717],[0.13,3.452]],"v":[[-21.091,23.806],[-25.557,22.242],[-25.818,21.983],[-26.013,21.787],[-26.176,21.591],[-26.404,21.298],[-26.469,21.2],[-27.643,17.847],[-24.612,12.181],[-21.677,11.269],[-21.286,11.269],[-20.863,11.302],[-20.732,11.302],[-19.592,11.529],[-19.559,11.529],[-19.037,11.725],[-19.005,11.725],[-15.68,14.883],[-15.647,14.948],[-15.093,17.228]],"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.879],[0,0],[0.88,0],[0,0],[0,0.88],[0,0],[0.88,0],[0,0],[0,0.879],[0,0],[-0.881,0],[0,0],[0,0.879],[0,0],[-0.88,0],[0,0],[0,-0.879],[0,0],[-0.881,0],[0,0],[0,-0.879],[0,0],[0.88,0]],"o":[[-0.848,0],[0,0],[0,0.846],[0,0],[-0.847,0],[0,0],[0,-0.847],[0,0],[-0.848,0],[0,0],[0,-0.847],[0,0],[0.848,0],[0,0],[0,-0.846],[0,0],[0.848,0],[0,0],[0,0.846],[0,0],[0.848,0],[0,0],[0,0.846],[0,0]],"v":[[-38.595,-7.748],[-40.16,-6.185],[-40.16,0.23],[-41.725,1.793],[-50.168,1.793],[-51.732,0.23],[-51.732,-6.185],[-53.297,-7.748],[-59.718,-7.748],[-61.283,-9.311],[-61.283,-17.745],[-59.718,-19.308],[-53.297,-19.308],[-51.732,-20.871],[-51.732,-27.547],[-50.168,-29.11],[-41.725,-29.11],[-40.16,-27.547],[-40.16,-20.871],[-38.595,-19.308],[-32.174,-19.308],[-30.609,-17.745],[-30.609,-9.311],[-32.174,-7.748]],"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],[-1.141,0],[0,0],[-1.043,0.293],[0,0],[2.967,0],[0,0],[0,2.963],[0,0]],"o":[[1.043,0.293],[0,0],[1.108,0],[0,0],[0,2.996],[0,0],[-2.998,0],[0,0],[0,0]],"v":[[-17.309,-34.157],[-14.05,-33.701],[13.625,-33.701],[16.885,-34.157],[16.885,-19.829],[11.473,-14.424],[-11.866,-14.424],[-17.277,-19.829],[-17.277,-34.157]],"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":[[-3.228,0],[0,-3.191],[3.194,0],[0,3.192]],"o":[[3.194,0],[0,3.192],[-3.196,0],[0,-3.191]],"v":[[45.506,-28.947],[51.307,-23.151],[45.506,-17.354],[39.703,-23.151]],"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.566,14.067],[4.564,8.369],[5.9,0],[4.335,-7.066],[1.141,0],[0,0],[0.555,0.879],[17.016,0],[6.715,-12.309],[1.598,-14.361],[-1.923,-9.021],[-7.888,-2.67],[-2.379,0],[-7.563,14.035],[-1.76,0],[-0.261,0.032],[-2.575,2.833],[-0.098,3.452],[0,0],[0,0],[-2.836,-2.572],[-3.585,0],[-0.259,0.032],[-1.37,0.52],[-12.91,4.428],[-2.412,11.429]],"o":[[-1.596,-14.328],[-6.714,-12.309],[-17.016,0],[-0.554,0.879],[0,0],[-1.141,0],[-4.335,-7.066],[-5.9,0],[-4.564,8.369],[-1.564,14.067],[2.412,11.43],[2.38,0.814],[10.529,0],[1.597,0.586],[0.229,0],[3.846,-0.195],[2.347,-2.572],[0,0],[0,0],[0.195,3.842],[2.673,2.443],[0.228,0],[1.533,-0.065],[9.257,17.193],[7.856,-2.703],[1.858,-8.956]],"v":[[77.515,-4.394],[68.225,-38.618],[47.168,-53.5],[16.331,-43.275],[13.625,-41.842],[-14.05,-41.842],[-16.756,-43.275],[-47.592,-53.5],[-68.65,-38.618],[-77.941,-4.394],[-77.419,30.384],[-61.903,51.68],[-54.764,52.885],[-26.404,31.035],[-21.352,31.946],[-20.634,31.914],[-10.66,27.225],[-6.911,17.945],[6.552,17.945],[6.552,18.205],[11.246,28.169],[20.927,31.914],[21.643,31.882],[26.012,30.97],[61.511,51.615],[77.027,30.319]],"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.475,0.475,0.475,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[79,53.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":"Group 1","np":12,"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":[[-18.579,-8.867],[18.579,-8.867],[18.579,8.867],[-18.579,8.867]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[111.472,71.359],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-18.579,-8.867],[18.579,-8.867],[18.579,8.867],[-18.579,8.867]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[47.292,71.359],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-18.579,-21.957],[18.579,-21.957],[18.579,21.957],[-18.579,21.957]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[124.14,41.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-18.579,-21.956],[18.579,-21.956],[18.579,21.956],[-18.579,21.956]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[78.537,38.846],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-18.579,-19.001],[18.579,-19.001],[18.579,19.001],[-18.579,19.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[33.78,40.113],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":462,"op":552,"st":462,"bm":0},{"ddd":0,"ind":15,"ty":4,"nm":"drone","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":362,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":377,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":436,"s":[100]},{"t":451,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,919.63,0],"ix":2},"a":{"a":0,"k":[896.418,1381.63,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[10.445,-2.085],[-10.445,-2.085],[-10.445,2.085],[10.445,2.085]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.417,1389.515],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-21.151,3.609],[-34.729,1.27],[-34.862,0.949],[-35.512,1.01],[-34.729,2.829],[-21.151,5.171],[35.511,-5.171],[18.719,-3.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[855.554,1334.641],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-35.511,0.649],[35.511,-4.821],[-21.151,4.82],[-34.729,2.469]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[854.77,1334.29],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[-21.151,3.609],[-34.729,1.27],[-34.862,0.949],[-35.512,1.01],[-34.729,2.829],[-21.151,5.171],[35.511,-5.171],[18.721,-3.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1016.139,1334.641],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[93.74,-0.6],[-93.74,-0.6],[-93.74,0.6],[93.74,0.6]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.679,1360.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 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.476,0.36],[0.068,-1.01],[0.716,-0.72],[1.009,-0.06],[0.804,0.61],[-0.524,-0.28],[-0.594,-0.04],[-0.558,0.21],[-0.422,0.42],[-0.209,0.55],[0.041,0.59],[0.285,0.52]],"o":[[0.613,0.8],[-0.067,1.011],[-0.714,0.71],[-1.008,0.07],[0.362,0.481],[0.526,0.28],[0.594,0.04],[0.559,-0.2],[0.422,-0.42],[0.211,-0.56],[-0.041,-0.59],[-0.283,-0.529]],"v":[[2.082,-3.755],[2.927,-0.955],[1.715,1.715],[-0.956,2.915],[-3.766,2.075],[-2.423,3.225],[-0.724,3.715],[1.025,3.455],[2.513,2.505],[3.469,1.025],[3.726,-0.725],[3.232,-2.415]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.469,1426.425],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-2.308,0],[0,2.3],[2.307,0],[0,-2.301]],"o":[[2.307,0],[0,-2.301],[-2.308,0],[0,2.3]],"v":[[0.001,4.17],[4.179,0],[0.001,-4.17],[-4.178,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.026,1425.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 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":[[-4.038,0],[0,4.029],[4.038,0],[0,-4.03]],"o":[[4.038,0],[0,-4.03],[-4.038,0],[0,4.029]],"v":[[0.001,7.295],[7.312,-0.005],[0.001,-7.296],[-7.311,-0.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.026,1425.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 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],[0,0],[0,0],[0,0],[-0.474,0.38],[-0.614,0],[0,0],[-0.474,-0.39],[-0.12,-0.6],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0.12,-0.6],[0.475,-0.39],[0,0],[0.613,0],[0.474,0.38],[0,0],[0,0]],"v":[[25.377,-2.085],[15.396,6.255],[-15.938,6.255],[-25.377,-2.085],[-15.992,-2.085],[-15.581,-4.125],[-14.662,-5.645],[-12.981,-6.255],[13.219,-6.255],[14.901,-5.645],[15.82,-4.125],[16.23,-2.085]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.298,1391.465],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.347,-0.341],[0,-0.491],[0,0],[-0.347,-0.349],[-0.491,0],[0,0],[-0.348,0.351],[0,0.48],[0,0],[0.347,0.35],[0.491,0]],"o":[[-0.491,0],[-0.347,0.35],[0,0],[0,0.48],[0.347,0.351],[0,0],[0.491,0],[0.347,-0.349],[0,0],[0,-0.491],[-0.348,-0.341],[0,0]],"v":[[-11.196,-9.24],[-12.505,-8.7],[-13.047,-7.39],[-13.047,7.401],[-12.505,8.699],[-11.196,9.24],[11.198,9.24],[12.505,8.699],[13.047,7.401],[13.047,-7.39],[12.505,-8.7],[11.198,-9.24]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.026,1425.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 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.408,0],[0,0],[0.377,-0.16],[0.289,-0.29],[0.156,-0.38],[0,-0.4],[0,0],[-0.36,-0.52],[-0.59,-0.219],[-0.001,-0.71],[0,0],[-0.227,-0.43],[-0.402,-0.28],[0,0],[0,0],[0,0],[-0.227,0.44],[0,0.49],[0,0],[0.456,0.541],[-0.359,0.52],[-0.001,0.63],[0,0],[0.156,0.37],[0.289,0.29],[0.377,0.159]],"o":[[0,0],[-0.407,0],[-0.377,0.159],[-0.288,0.29],[-0.156,0.37],[0,0],[0.001,0.63],[0.359,0.52],[-0.455,0.541],[0,0],[0,0.49],[0.228,0.44],[0,0],[0,0],[0,0],[0.402,-0.28],[0.228,-0.43],[0,0],[0.001,-0.71],[0.59,-0.219],[0.359,-0.52],[0,0],[0,-0.4],[-0.156,-0.38],[-0.288,-0.29],[-0.376,-0.16]],"v":[[5.51,-11.335],[-5.51,-11.335],[-6.698,-11.095],[-7.706,-10.425],[-8.38,-9.415],[-8.617,-8.235],[-8.617,-5.835],[-8.065,-4.075],[-6.607,-2.936],[-7.31,-0.995],[-7.31,-0.305],[-6.966,1.095],[-6.007,2.185],[-6.007,11.335],[6.006,11.335],[6.006,2.185],[6.966,1.095],[7.311,-0.305],[7.311,-0.995],[6.607,-2.936],[8.065,-4.075],[8.617,-5.835],[8.617,-8.235],[8.38,-9.415],[7.706,-10.425],[6.698,-11.095]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[896.026,1406.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-35.512,0.649],[35.512,-4.821],[-21.152,4.82],[-34.73,2.469]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1015.618,1334.29],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.54,0.13],[0.887,0.151],[0,0.511],[0,0],[0.147,0.349],[0.274,0.269],[0.357,0.149],[0.386,0],[0,0],[-0.267,1.36],[0.535,1.279],[1.158,0.771],[1.393,0],[1.158,-0.769],[0.536,-1.28],[-0.267,-1.37],[-0.978,-0.989],[0,0],[0.355,-0.15],[0.272,-0.27],[0.148,-0.361],[0,-0.391],[0,0],[-0.112,-0.321],[2.548,-0.639],[0,0],[0,0],[-0.457,0.46],[0,0.641],[0,0],[0.345,0.43]],"o":[[-0.887,-0.19],[0.252,-0.439],[0,0],[0,-0.391],[-0.147,-0.361],[-0.273,-0.27],[-0.356,-0.15],[0,0],[0.98,-0.989],[0.267,-1.37],[-0.535,-1.28],[-1.158,-0.769],[-1.391,0],[-1.157,0.771],[-0.535,1.279],[0.268,1.36],[0,0],[-0.385,0],[-0.357,0.149],[-0.274,0.269],[-0.148,0.349],[0,0],[0.001,0.33],[-2.609,0.31],[0,0],[0,0],[0.645,0],[0.457,-0.449],[0,0],[0.001,-0.561],[-0.346,-0.429]],"v":[[13.113,10.745],[10.453,10.234],[10.837,8.784],[10.837,-3.585],[10.613,-4.705],[9.976,-5.655],[9.023,-6.295],[7.898,-6.516],[6.705,-6.516],[8.617,-10.115],[8.205,-14.175],[5.607,-17.316],[1.697,-18.495],[-2.214,-17.316],[-4.81,-14.175],[-5.222,-10.115],[-3.311,-6.516],[-4.504,-6.516],[-5.628,-6.295],[-6.581,-5.655],[-7.219,-4.705],[-7.443,-3.585],[-7.443,8.784],[-7.272,9.765],[-15.014,11.194],[-15.014,18.495],[12.58,18.495],[14.301,17.774],[15.013,16.064],[15.013,13.125],[14.482,11.604]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[975.274,1346.405],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[2.608,0.32],[-0.001,0.33],[0,0],[0.55,0.55],[0.78,0],[0,0],[-0.265,1.36],[0.536,1.28],[1.159,0.77],[1.392,0],[1.158,-0.77],[0.536,-1.28],[-0.266,-1.37],[-0.979,-0.989],[0,0],[0.357,-0.15],[0.273,-0.27],[0.148,-0.36],[0,-0.39],[0,0],[-0.252,-0.439],[0.887,-0.19],[0.345,-0.43],[-0.001,-0.56],[0,0],[-0.456,-0.45],[-0.646,0],[0,0],[0,0]],"o":[[0.111,-0.311],[0,0],[0,-0.78],[-0.551,-0.55],[0,0],[0.981,-0.989],[0.267,-1.37],[-0.535,-1.28],[-1.158,-0.77],[-1.39,0],[-1.158,0.77],[-0.536,1.28],[0.267,1.36],[0,0],[-0.386,0],[-0.356,0.15],[-0.273,0.269],[-0.147,0.35],[0,0],[0,0.511],[-0.886,0.151],[-0.54,0.13],[-0.346,0.429],[0,0],[0,0.64],[0.457,0.459],[0,0],[0,0],[-2.547,-0.639]],"v":[[7.274,9.755],[7.443,8.784],[7.443,-3.585],[6.584,-5.655],[4.505,-6.516],[3.312,-6.516],[5.223,-10.115],[4.811,-14.175],[2.214,-17.315],[-1.696,-18.495],[-5.606,-17.315],[-8.203,-14.175],[-8.615,-10.115],[-6.704,-6.516],[-7.897,-6.516],[-9.021,-6.295],[-9.974,-5.655],[-10.611,-4.705],[-10.834,-3.585],[-10.834,8.784],[-10.451,10.234],[-13.112,10.745],[-14.48,11.605],[-15.013,13.125],[-15.013,16.065],[-14.299,17.775],[-12.577,18.495],[15.015,18.495],[15.015,11.194]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[817.821,1346.405],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[-37.418,0],[-3.551,-3.36],[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],[3.551,-3.36],[37.417,0],[0,0],[0,0]],"v":[[87.995,-10.425],[81.99,-10.165],[26.97,12.995],[23.82,15.625],[13.839,23.965],[-17.495,23.965],[-26.932,15.625],[-30.52,12.455],[-83.296,-9.905],[-87.995,-10.425],[-72.328,-17.975],[-72.245,-17.975],[-0.523,-23.965],[71.199,-17.975],[71.545,-17.975]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[897.854,1373.755],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21.151,3.609],[34.728,1.27],[34.862,0.949],[35.512,1.01],[34.728,2.829],[21.151,5.171],[-35.511,-5.171],[-18.72,-3.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[776.697,1334.641],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[35.511,0.649],[-35.512,-4.821],[21.15,4.82],[34.728,2.469]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[777.481,1334.29],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0],[0,0]],"v":[[21.151,3.609],[34.728,1.27],[34.862,0.949],[35.511,1.01],[34.728,2.829],[21.151,5.171],[-35.512,-5.171],[-18.72,-3.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.305999995213,0.305999995213,0.305999995213,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[938.849,1334.641],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[35.511,0.649],[-35.511,-4.821],[21.15,4.82],[34.728,2.469]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[938.327,1334.29],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.256,-0.259],[0,-0.36],[0,0],[-0.256,-0.25],[-0.363,0],[0,0],[-0.256,0.26],[0,0.359],[0,0],[0.255,0.25],[0.363,0]],"o":[[-0.363,0],[-0.256,0.25],[0,0],[0,0.359],[0.256,0.26],[0,0],[0.363,0],[0.255,-0.25],[0,0],[0,-0.36],[-0.256,-0.259],[0,0]],"v":[[-4.631,-28.58],[-5.598,-28.18],[-5.997,-27.22],[-5.997,27.221],[-5.598,28.181],[-4.631,28.58],[4.631,28.58],[5.597,28.181],[5.997,27.221],[5.997,-27.22],[5.597,-28.18],[4.631,-28.58]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[935.193,1406.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 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.257,-0.259],[0,-0.36],[0,0],[-0.257,-0.25],[-0.362,0],[0,0],[-0.256,0.26],[-0.001,0.359],[0,0],[0.255,0.25],[0.362,0]],"o":[[-0.362,0],[-0.257,0.25],[0,0],[0,0.359],[0.257,0.26],[0,0],[0.362,0],[0.255,-0.25],[0,0],[-0.001,-0.36],[-0.256,-0.259],[0,0]],"v":[[-4.631,-28.58],[-5.597,-28.18],[-5.997,-27.22],[-5.997,27.221],[-5.597,28.181],[-4.631,28.58],[4.631,28.58],[5.596,28.181],[5.997,27.221],[5.997,-27.22],[5.596,-28.18],[4.631,-28.58]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.545000023935,0.545000023935,0.545000023935,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[858.165,1406.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 21","np":2,"cix":2,"bm":0,"ix":21,"mn":"ADBE Vector Group","hd":false}],"ip":362,"op":452,"st":362,"bm":0},{"ddd":0,"ind":16,"ty":4,"nm":"server","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":262,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":277,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":336,"s":[100]},{"t":351,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,898.776,0],"ix":2},"a":{"a":0,"k":[1183.78,1290.776,0],"ix":1},"s":{"a":0,"k":[64,64,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.859,0],[0,2.839],[2.851,0],[0,-2.851]],"o":[[2.851,0],[0,-2.851],[-2.859,0],[0,2.839]],"v":[[0.005,5.15],[5.165,0.001],[0.005,-5.15],[-5.165,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1288.764,1355.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 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":[[-2.85,0],[0,2.839],[2.86,0],[0,-2.851]],"o":[[2.86,0],[0,-2.851],[-2.85,0],[0,2.839]],"v":[[-0.006,5.15],[5.165,0.001],[-0.006,-5.15],[-5.165,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1270.695,1355.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 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":[[-2.851,0],[0,2.839],[2.85,0],[0,-2.851]],"o":[[2.85,0],[0,-2.851],[-2.851,0],[0,2.839]],"v":[[-0.005,5.15],[5.165,0.001],[-0.005,-5.15],[-5.165,0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1252.625,1355.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 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":[[-2.859,0],[0,2.839],[2.851,0],[0,-2.85]],"o":[[2.851,0],[0,-2.85],[-2.859,0],[0,2.839]],"v":[[0.005,5.15],[5.165,0],[0.005,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1288.764,1257.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":[[-2.85,0],[0,2.839],[2.86,0],[0,-2.85]],"o":[[2.86,0],[0,-2.85],[-2.85,0],[0,2.839]],"v":[[-0.006,5.15],[5.165,0],[-0.006,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1270.695,1257.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":[[-2.851,0],[0,2.839],[2.85,0],[0,-2.85]],"o":[[2.85,0],[0,-2.85],[-2.851,0],[0,2.839]],"v":[[-0.005,5.15],[5.165,0],[-0.005,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1252.625,1257.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},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-2.859,0],[0,2.85],[2.851,0],[0,-2.84]],"o":[[2.851,0],[0,-2.84],[-2.859,0],[0,2.85]],"v":[[0.005,5.15],[5.165,0],[0.005,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1288.764,1159.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 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":[[-2.85,0],[0,2.85],[2.86,0],[0,-2.84]],"o":[[2.86,0],[0,-2.84],[-2.85,0],[0,2.85]],"v":[[-0.006,5.15],[5.165,0],[-0.006,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1270.695,1159.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 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":[[-2.851,0],[0,2.85],[2.85,0],[0,-2.84]],"o":[[2.85,0],[0,-2.84],[-2.851,0],[0,2.85]],"v":[[-0.005,5.15],[5.165,0],[-0.005,-5.15],[-5.165,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1252.625,1159.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[112.73,-6.865],[-112.73,-6.865],[-112.73,6.865],[112.73,6.865]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1390.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 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":[[112.73,-6.865],[-112.73,-6.865],[-112.73,6.865],[112.73,6.865]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1290.854],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[112.73,-6.865],[-112.73,-6.865],[-112.73,6.865],[112.73,6.865]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1191.285],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[112.73,-44.635],[-112.73,-44.635],[-112.73,44.635],[112.73,44.635]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.455000005984,0.455000005984,0.455000005984,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1390.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 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":[[112.73,-44.635],[-112.73,-44.635],[-112.73,44.635],[112.73,44.635]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.455000005984,0.455000005984,0.455000005984,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1290.776],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[112.73,-44.635],[-112.73,-44.635],[-112.73,44.635],[112.73,44.635]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.455000005984,0.455000005984,0.455000005984,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1191.205],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[83.9,-112.44],[-83.9,-112.44],[-83.9,112.441],[83.9,112.441]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.301999978458,0.301999978458,0.301999978458,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[1183.78,1265.879],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":262,"op":352,"st":262,"bm":0},{"ddd":0,"ind":17,"ty":4,"nm":"watch","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":162,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":177,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":236,"s":[100]},{"t":251,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[416,893.555,0],"ix":2},"a":{"a":0,"k":[248.876,1357.555,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-10.649,0],[0,13.33],[10.65,0],[0,-13.33]],"o":[[10.65,0],[0,-13.33],[-10.649,0],[0,13.33]],"v":[[0,24.13],[19.283,0],[0,-24.13],[-19.283,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[283.4,1358.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 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":[[-7.068,0],[0,8.84],[7.069,0],[0,-8.849]],"o":[[7.069,0],[0,-8.849],[-7.068,0],[0,8.84]],"v":[[0,16.021],[12.799,0],[0,-16.021],[-12.799,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[283.4,1358.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 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":[[-3.783,0],[0,4.729],[3.783,0],[0,-4.73]],"o":[[3.783,0],[0,-4.73],[-3.783,0],[0,4.729]],"v":[[-0.001,8.57],[6.849,0],[-0.001,-8.571],[-6.85,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[283.4,1358.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 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.791],[0.499,0.609],[0.774,0.151],[-0.493,-0.13],[-0.393,-0.321],[-0.218,-0.45],[0,-0.5],[0.217,-0.46],[0.393,-0.319],[0.493,-0.119],[0.498,0.111],[-0.499,0.621]],"o":[[0,-0.789],[-0.499,-0.62],[0.498,-0.109],[0.493,0.12],[0.393,0.319],[0.217,0.46],[0,0.511],[-0.218,0.46],[-0.393,0.32],[-0.493,0.131],[0.774,-0.149],[0.499,-0.609]],"v":[[0.686,-0.005],[-0.086,-2.165],[-2.054,-3.355],[-0.549,-3.324],[0.797,-2.655],[1.725,-1.475],[2.055,-0.005],[1.725,1.465],[0.797,2.654],[-0.549,3.324],[-2.054,3.354],[-0.086,2.164]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,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":[213.914,1319.275],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.891,0],[0,1.901],[1.892,0],[0,-1.889]],"o":[[1.892,0],[0,-1.889],[-1.891,0],[0,1.901]],"v":[[0,3.426],[3.424,-0.005],[0,-3.425],[-3.424,-0.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[212.544,1319.275],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.79],[0.499,0.61],[0.773,0.15],[-0.493,-0.13],[-0.394,-0.319],[-0.217,-0.46],[0,-0.51],[0.218,-0.45],[0.393,-0.319],[0.493,-0.12],[0.498,0.11],[-0.499,0.62]],"o":[[0,-0.8],[-0.499,-0.62],[0.498,-0.11],[0.493,0.12],[0.393,0.32],[0.218,0.449],[0,0.5],[-0.217,0.46],[-0.394,0.321],[-0.493,0.13],[0.773,-0.15],[0.499,-0.61]],"v":[[0.686,0.005],[-0.086,-2.165],[-2.054,-3.355],[-0.55,-3.325],[0.797,-2.655],[1.724,-1.465],[2.055,0.005],[1.724,1.465],[0.797,2.654],[-0.55,3.325],[-2.054,3.355],[-0.086,2.165]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,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":[210.314,1381.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 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":[[-1.891,0],[0,1.89],[1.892,0],[0,-1.9]],"o":[[1.892,0],[0,-1.9],[-1.891,0],[0,1.89]],"v":[[0,3.425],[3.425,0.005],[0,-3.425],[-3.425,0.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[208.945,1381.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 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.79],[0.499,0.62],[0.774,0.159],[-0.493,-0.121],[-0.393,-0.33],[-0.218,-0.46],[0,-0.51],[0.217,-0.46],[0.393,-0.319],[0.493,-0.12],[0.498,0.1],[-0.499,0.609]],"o":[[0,-0.79],[-0.499,-0.609],[0.498,-0.101],[0.493,0.119],[0.393,0.32],[0.217,0.46],[0,0.511],[-0.218,0.46],[-0.393,0.32],[-0.493,0.12],[0.774,-0.16],[0.499,-0.61]],"v":[[0.685,0],[-0.087,-2.17],[-2.055,-3.359],[-0.55,-3.329],[0.796,-2.649],[1.724,-1.47],[2.054,0],[1.724,1.471],[0.796,2.66],[-0.55,3.33],[-2.055,3.36],[-0.087,2.171]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,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":[211.858,1395.39],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-1.892,0],[0,1.891],[1.891,0],[0,-1.889]],"o":[[1.891,0],[0,-1.889],[-1.892,0],[0,1.891]],"v":[[0.001,3.43],[3.424,-0.001],[0.001,-3.43],[-3.424,-0.001]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[210.49,1395.39],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.002,0.521],[0,0],[0.309,0.41],[0.493,0.14],[-0.233,0.009],[-0.449,-0.449],[-0.001,-0.63],[0,0],[0.449,-0.45],[0.635,0],[0.221,0.07],[-0.308,0.41]],"o":[[0,0],[-0.002,-0.51],[-0.308,-0.42],[0.221,-0.08],[0.635,0],[0.449,0.451],[0,0],[-0.001,0.64],[-0.449,0.45],[-0.233,0],[0.493,-0.15],[0.309,-0.409]],"v":[[0.171,8.915],[0.171,-8.915],[-0.307,-10.335],[-1.541,-11.195],[-0.856,-11.314],[0.838,-10.606],[1.541,-8.915],[1.541,8.915],[0.838,10.615],[-0.856,11.315],[-1.541,11.205],[-0.307,10.345]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,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":[248.334,1371.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 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.63],[0,0],[-0.45,-0.45],[-0.636,0],[-0.449,0.45],[0,0.64],[0,0],[0.45,0.45],[0.636,0],[0.45,-0.45]],"o":[[0,0],[0,0.64],[0.45,0.45],[0.636,0],[0.45,-0.45],[0,0],[0,-0.63],[-0.449,-0.45],[-0.636,0],[-0.45,0.45]],"v":[[-2.397,-8.916],[-2.397,8.915],[-1.695,10.615],[-0.001,11.314],[1.695,10.615],[2.398,8.915],[2.398,-8.916],[1.695,-10.605],[-0.001,-11.314],[-1.695,-10.605]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[247.135,1371.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 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,4.15],[3.126,0.79],[-0.462,0],[0,-4.729],[3.783,0],[0.448,0.111]],"o":[[0,-4.149],[0.448,-0.111],[3.783,0],[0,4.73],[-0.462,0],[3.126,-0.799]],"v":[[1.37,0],[-4.11,-8.399],[-2.74,-8.569],[4.109,0],[-2.74,8.57],[-4.11,8.4]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,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":[249.532,1340.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 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":[[-3.783,0],[0,4.73],[3.783,0],[0,-4.73]],"o":[[3.783,0],[0,-4.73],[-3.783,0],[0,4.73]],"v":[[0.001,8.57],[6.85,0],[0.001,-8.57],[-6.85,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[246.107,1340.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 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":[[-1.728,0.2],[0.495,-0.99],[0.001,-1.1],[0,0],[-1.33,-1.33],[-1.881,0],[0,0],[-1.153,0.31],[2.438,0],[0,0],[1.331,1.33],[0.002,1.88],[0,0],[-1.157,1.3]],"o":[[-0.885,0.66],[-0.496,0.99],[0,0],[0.002,1.89],[1.33,1.34],[0,0],[1.192,-0.01],[-2.121,1.21],[0,0],[-1.881,0],[-1.33,-1.339],[0,0],[0.003,-1.74],[1.158,-1.3]],"v":[[-16.464,-42.49],[-18.563,-39.99],[-19.318,-36.81],[-19.318,34.01],[-17.238,39.031],[-12.223,41.12],[19.21,41.12],[22.742,40.651],[15.785,42.49],[-15.648,42.49],[-20.663,40.409],[-22.743,35.391],[-22.743,-35.439],[-20.943,-40.16]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0,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":[278.097,1357.36],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.33,-1.33],[0.002,-1.89],[0,0],[-1.33,-1.33],[-1.881,-0.01],[0,0],[-2.665,2.67],[-0.005,3.769],[0,0],[2.348,2.349],[3.32,0.011]],"o":[[-1.881,0.011],[-1.33,1.329],[0,0],[0.002,1.889],[1.33,1.33],[0,0],[3.769,-0.01],[2.664,-2.66],[0,0],[-0.004,-3.32],[-2.347,-2.351],[0,0]],"v":[[-19.276,-42.52],[-24.29,-40.429],[-26.371,-35.41],[-26.371,35.411],[-24.29,40.43],[-19.276,42.52],[12.156,42.52],[22.203,38.34],[26.371,28.291],[26.371,-29.98],[22.698,-38.839],[13.848,-42.52]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[282.068,1356.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 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],[2.503,-2.511],[0.004,-3.55],[0,0],[-2.606,-2.611],[-3.685,-0.01],[0,0],[-3.14,3.139],[-0.005,4.441],[0,0],[3.164,3.16],[4.476,0.01]],"o":[[-3.54,0.01],[-2.503,2.51],[0,0],[0.005,3.689],[2.605,2.599],[0,0],[4.44,-0.01],[3.14,-3.141],[0,0],[-0.005,-4.479],[-3.165,-3.17],[0,0]],"v":[[-18.5,-45.09],[-27.936,-41.17],[-31.851,-31.721],[-31.851,31.17],[-27.775,41.01],[-17.952,45.09],[15.102,45.09],[26.94,40.17],[31.851,28.319],[31.851,-28.191],[26.902,-40.131],[14.971,-45.09]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.246999987434,0.238999998803,0.337000020345,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[275.561,1356.821],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[-17.699,5.99],[50.687,-14.4],[0,0],[-9.601,61],[0,0],[14.727,-3.08],[-0.49,7.43],[-0.006,0.07],[-3.916,4.589],[-19.57,-30.14],[0,0]],"o":[[0,0],[-31.42,13.4],[-3.788,57.21],[1.686,-10.709],[0,0],[-14.749,3.1],[0.004,-0.08],[0.403,-6.02],[8.443,-9.841],[0,0],[0,0]],"v":[[54.355,-17.43],[-19.732,-45.36],[-50.567,2.55],[-3.978,-2.16],[-5.69,-18.96],[-25.212,-1.48],[-41.993,-10.73],[-41.978,-10.95],[-35.326,-27.289],[11.091,-21.36],[12.461,-17.97]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[240.496,1330.35],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[51.373,8.231],[0,0],[-30.035,-19.56],[-7.949,5.951],[0.599,12]],"o":[[0,0],[-51.372,-8.23],[0,0],[8.323,5.42],[5.268,-3.95],[0,0]],"v":[[59.592,11.07],[-8.22,46.73],[-45.893,-50.65],[-21.598,35.41],[5.544,34.93],[14.727,12.1]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[236.861,1385.35],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[-4.11,40.46],[0,0],[-12.33,8.23],[23.289,-54.859],[-4.795,-21.95],[0,0],[-11.645,0]],"o":[[0,0],[4.11,-40.451],[0,0],[0,0],[0,0],[4.794,21.94],[0,0],[11.644,0]],"v":[[30.824,72.339],[6.164,17.48],[8.904,-18.86],[28.083,-49.721],[-24.66,-25.031],[-26.029,29.829],[-10.275,69.599],[11.645,79.89]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.8,0.8,0.8,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[218.025,1348.421],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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}],"ip":162,"op":252,"st":162,"bm":0},{"ddd":0,"ind":18,"ty":4,"nm":"phone","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":62,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":77,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":136,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":151,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":162,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":177,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":236,"s":[100]},{"t":251,"s":[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":151,"s":[300,892.975,0],"to":[-19.667,0,0],"ti":[19.667,0,0]},{"t":152,"s":[182,892.975,0]}],"ix":2},"a":{"a":0,"k":[113.713,1348.975,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16.135,-16.96],[-16.135,-16.96],[-16.135,16.96],[16.135,16.96]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[97.521,1398.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 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":[[16.135,-12.065],[-16.135,-12.065],[-16.135,12.065],[16.135,12.065]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[97.521,1364.425],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[13.445,-7.62],[-13.446,-7.62],[-13.446,7.62],[13.445,7.62]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[132.633,1340.4],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[13.445,-8.2],[-13.446,-8.2],[-13.446,8.2],[13.445,8.2]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[132.633,1320.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13.445,-7.62],[-13.446,-7.62],[-13.446,7.62],[13.445,7.62]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[132.633,1300.27],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[13.41,-31.34],[-13.41,-31.34],[-13.41,31.34],[13.41,31.34]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[132.571,1383.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[16.135,-27.684],[-16.135,-27.684],[-16.135,27.685],[16.135,27.685]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[97.482,1320.334],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":[[1.48,0],[0,0],[0.09,-0.88],[0.49,-0.729],[0.774,-0.42],[0.878,0],[0,0],[0.775,0.41],[0.49,0.731],[0.089,0.881],[-0.332,0.82],[0,0],[2.113,-2.13],[0,-3],[0,0],[-0.566,-1.369],[-1.046,-1.05],[-1.367,-0.569],[-1.48,0],[0,0],[-1.367,0.571],[-1.046,1.051],[-0.566,1.37],[0,1.48],[0,0],[0.566,1.37],[1.047,1.051],[1.367,0.571]],"o":[[0,0],[0.331,0.82],[-0.089,0.881],[-0.489,0.731],[-0.775,0.41],[0,0],[-0.878,0],[-0.775,-0.42],[-0.489,-0.729],[-0.09,-0.88],[0,0],[-2.988,0],[-2.113,2.12],[0,0],[0,1.48],[0.567,1.37],[1.046,1.051],[1.367,0.571],[0,0],[1.48,0],[1.367,-0.569],[1.047,-1.05],[0.566,-1.369],[0,0],[0,-1.49],[-0.566,-1.369],[-1.046,-1.049],[-1.367,-0.559]],"v":[[27.747,-83.031],[20.538,-83.031],[20.906,-80.45],[20.024,-78],[18.099,-76.25],[15.582,-75.62],[-16.058,-75.62],[-18.575,-76.25],[-20.501,-78],[-21.383,-80.45],[-21.014,-83.031],[-27.748,-83.031],[-35.715,-79.71],[-39.015,-71.71],[-39.015,71.719],[-38.158,76.05],[-35.715,79.719],[-32.06,82.17],[-27.748,83.031],[27.747,83.031],[32.059,82.17],[35.714,79.719],[38.157,76.05],[39.014,71.719],[39.014,-71.71],[38.157,-76.041],[35.714,-79.71],[32.059,-82.17]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[113.713,1348.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 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],[2.83,2.84],[4.001,0],[0,0],[1.83,-0.761],[1.402,-1.41],[0.758,-1.83],[0,-1.991],[0,0],[-0.758,-1.84],[-1.4,-1.41],[-1.831,-0.76],[-1.981,0],[0,0],[-2.829,2.84],[0,4.021],[0,0],[0,0]],"o":[[0,0],[0,0],[0,-4.021],[-2.829,-2.84],[0,0],[-1.981,0],[-1.831,0.769],[-1.4,1.41],[-0.758,1.84],[0,0],[0,1.99],[0.758,1.84],[1.401,1.41],[1.83,0.76],[0,0],[4.002,0],[2.829,-2.84],[0,0],[0,0],[0,0]],"v":[[43.178,-45.635],[42.226,-45.635],[42.226,-71.824],[37.807,-82.535],[27.139,-86.975],[-28.091,-86.975],[-33.864,-85.824],[-38.76,-82.535],[-42.03,-77.625],[-43.178,-71.824],[-43.178,71.815],[-42.03,77.615],[-38.76,82.535],[-33.864,85.815],[-28.091,86.975],[27.138,86.975],[37.807,82.535],[42.226,71.815],[42.226,-27.005],[43.178,-27.005]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.368999974868,0.368999974868,0.368999974868,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[113.713,1348.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 9","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false}],"ip":62,"op":251,"st":62,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"desktop 3","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"t":-38,"s":[0]},{"i":{"x":[0.148],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":-23,"s":[100]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.852],"y":[0]},"t":37,"s":[100]},{"t":52,"s":[0]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[300,904.59,0],"ix":2},"a":{"a":0,"k":[551.552,1292.59,0],"ix":1},"s":{"a":0,"k":[67,67,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0.405,-0.431],[0,-0.6],[-0.404,-0.43],[-0.573,0],[0,0],[-0.405,0.42],[0,0.599],[0.405,0.43],[0.572,0.011]],"o":[[-0.573,0.011],[-0.404,0.43],[0,0.599],[0.405,0.42],[0,0],[0.572,0],[0.405,-0.43],[0,-0.6],[-0.405,-0.431],[0,0]],"v":[[-12.921,-2.27],[-14.448,-1.599],[-15.081,0.001],[-14.448,1.61],[-12.921,2.27],[12.923,2.27],[14.449,1.61],[15.081,0.001],[14.449,-1.599],[12.923,-2.27]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[632.483,1294.66],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.569,0],[0,0],[-0.402,0.38],[0,0.529],[0.402,0.379],[0.57,0]],"o":[[-0.569,0],[-0.402,0.379],[0,0.529],[0.402,0.38],[0,0],[0.57,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.519,-2.015],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.519,2.015],[28.518,2.015],[30.035,1.425],[30.664,0.006],[30.035,-1.424],[28.518,-2.015]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[648.067,1273.735],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.569,0],[0,0],[-0.402,0.38],[0,0.529],[0.402,0.379],[0.569,0]],"o":[[-0.569,0],[-0.402,0.379],[0,0.529],[0.402,0.38],[0,0],[0.569,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.519,-2.015],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.519,2.015],[28.518,2.015],[30.036,1.425],[30.664,0.006],[30.036,-1.424],[28.518,-2.015]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[552.056,1273.735],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.57,0],[0,0],[-0.402,0.38],[0,0.529],[0.402,0.379],[0.569,0]],"o":[[-0.57,0],[-0.402,0.379],[0,0.529],[0.402,0.38],[0,0],[0.569,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.518,-2.015],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.518,2.015],[28.518,2.015],[30.035,1.425],[30.663,0.006],[30.035,-1.424],[28.518,-2.015]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[453.531,1273.735],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.569,0],[0,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0.57,0]],"o":[[-0.569,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0,0],[0.57,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.519,-2.014],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.519,2.015],[28.518,2.015],[30.035,1.425],[30.664,0.006],[30.035,-1.424],[28.518,-2.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[648.067,1284.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 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.398,-0.431],[0,-0.6],[-0.398,-0.43],[-0.563,0],[0,0],[-0.397,0.42],[0,0.599],[0.398,0.43],[0.564,0.011]],"o":[[-0.563,0.011],[-0.398,0.43],[0,0.599],[0.398,0.42],[0,0],[0.564,0],[0.398,-0.43],[0,-0.6],[-0.397,-0.431],[0,0]],"v":[[-12.707,-2.27],[-14.208,-1.599],[-14.829,0.001],[-14.208,1.61],[-12.707,2.27],[12.706,2.27],[14.207,1.61],[14.829,0.001],[14.207,-1.599],[12.706,-2.27]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[536.221,1294.66],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.569,0],[0,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0.569,0]],"o":[[-0.569,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0,0],[0.569,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.519,-2.014],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.519,2.015],[28.518,2.015],[30.036,1.425],[30.664,0.006],[30.036,-1.424],[28.518,-2.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[552.056,1284.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 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.397,-0.431],[0,-0.6],[-0.398,-0.43],[-0.563,0],[0,0],[-0.398,0.42],[0,0.599],[0.397,0.43],[0.563,0.011]],"o":[[-0.563,0.011],[-0.398,0.43],[0,0.599],[0.397,0.42],[0,0],[0.563,0],[0.397,-0.43],[0,-0.6],[-0.398,-0.431],[0,0]],"v":[[-12.707,-2.27],[-14.208,-1.599],[-14.829,0.001],[-14.208,1.61],[-12.707,2.27],[12.707,2.27],[14.208,1.61],[14.829,0.001],[14.208,-1.599],[12.707,-2.27]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.375999989229,0.74900004069,0.569000004787,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[437.696,1294.66],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.402,-0.381],[0,-0.541],[-0.402,-0.379],[-0.57,0],[0,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0.569,0]],"o":[[-0.57,0],[-0.402,0.38],[0,0.53],[0.402,0.38],[0,0],[0.569,0],[0.402,-0.379],[0,-0.541],[-0.402,-0.381],[0,0]],"v":[[-28.518,-2.014],[-30.036,-1.424],[-30.664,0.006],[-30.036,1.425],[-28.518,2.015],[28.518,2.015],[30.035,1.425],[30.663,0.006],[30.035,-1.424],[28.518,-2.014]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[453.531,1284.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 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.195,-0.19],[0,-0.27],[0,0],[-0.195,-0.2],[-0.276,0],[0,0],[-0.196,0.2],[0,0.28],[0,0],[0.195,0.2],[0.276,0]],"o":[[-0.276,0],[-0.195,0.2],[0,0],[0,0.28],[0.195,0.2],[0,0],[0.276,0],[0.195,-0.2],[0,0],[0,-0.27],[-0.196,-0.19],[0,0]],"v":[[-30.627,-27.735],[-31.363,-27.435],[-31.668,-26.695],[-31.668,26.685],[-31.363,27.425],[-30.627,27.735],[30.628,27.735],[31.364,27.425],[31.669,26.685],[31.669,-26.695],[31.364,-27.435],[30.628,-27.735]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[648.569,1228.355],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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.194,-0.2],[0.001,-0.27],[0,0],[-0.194,-0.19],[-0.274,0],[0,0],[-0.194,0.2],[-0.001,0.27],[0,0],[0.194,0.19],[0.275,0]],"o":[[-0.274,0],[-0.194,0.19],[0,0],[0.001,0.27],[0.194,0.2],[0,0],[0.275,0],[0.194,-0.19],[0,0],[-0.001,-0.27],[-0.194,-0.2],[0,0]],"v":[[-30.13,-27.235],[-30.863,-26.925],[-31.167,-26.195],[-31.167,26.195],[-30.863,26.925],[-30.13,27.235],[30.13,27.235],[30.862,26.925],[31.167,26.195],[31.167,-26.195],[30.862,-26.925],[30.13,-27.235]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.552,1228.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 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.195,-0.2],[0,-0.28],[0,0],[-0.195,-0.2],[-0.276,0],[0,0],[-0.196,0.2],[-0.001,0.28],[0,0],[0.195,0.19],[0.276,0]],"o":[[-0.276,0],[-0.195,0.19],[0,0],[0,0.28],[0.195,0.2],[0,0],[0.276,0],[0.195,-0.2],[0,0],[-0.001,-0.28],[-0.196,-0.2],[0,0]],"v":[[-30.376,-27.485],[-31.112,-27.175],[-31.417,-26.435],[-31.417,26.435],[-31.112,27.175],[-30.376,27.485],[30.377,27.485],[31.113,27.175],[31.418,26.435],[31.418,-26.435],[31.113,-27.175],[30.377,-27.485]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[454.285,1228.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[147.033,-73.625],[-147.033,-73.625],[-147.033,73.625],[147.033,73.625]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.301,1252.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 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.833,0],[0,0.981],[0.833,0],[0,-0.969]],"o":[[0.833,0],[0,-0.969],[-0.833,0],[0,0.981]],"v":[[0,1.765],[1.508,-0.006],[0,-1.765],[-1.508,-0.006]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[418.343,1173.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 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.971,0],[0,0.981],[0.972,0],[0,-0.969]],"o":[[0.972,0],[0,-0.969],[-0.971,0],[0,0.981]],"v":[[0,1.765],[1.759,-0.006],[0,-1.765],[-1.759,-0.006]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[412.06,1173.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 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.833,0],[0,0.981],[0.833,0],[0,-0.969]],"o":[[0.833,0],[0,-0.969],[-0.833,0],[0,0.981]],"v":[[0,1.765],[1.508,-0.006],[0,-1.765],[-1.508,-0.006]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[1,1,1,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[405.776,1173.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 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":[[-4.859,0],[0,4.73],[4.858,0],[0,-4.73]],"o":[[4.858,0],[0,-4.73],[-4.859,0],[0,4.73]],"v":[[0,8.57],[8.797,0],[0,-8.57],[-8.797,0]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.246999987434,0.238999998803,0.337000020345,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.804,1379.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[155.579,-87.745],[-155.579,-87.745],[-155.579,87.745],[155.579,87.745]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.804,1255.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 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.439,-1.07],[-0.811,-0.82],[-1.06,-0.439],[-1.147,0],[0,0],[-1.638,1.65],[0,2.33],[0,0]],"o":[[0,0],[0,1.16],[0.439,1.069],[0.811,0.82],[1.06,0.441],[0,0],[2.317,0],[1.638,-1.65],[0,0],[0,0]],"v":[[-172.921,-20.93],[-172.921,12.12],[-172.257,15.49],[-170.362,18.35],[-167.527,20.259],[-164.184,20.93],[164.185,20.93],[170.362,18.35],[172.922,12.12],[172.922,-20.93]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.552,1379.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 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":[[1.146,0],[0,0],[1.639,-1.641],[0,-2.319],[0,0],[0,0],[0,0],[0.44,1.06],[0.81,0.82],[1.059,0.44]],"o":[[0,0],[-2.318,0],[-1.639,1.639],[0,0],[0,0],[0,0],[0,-1.149],[-0.439,-1.06],[-0.812,-0.811],[-1.061,-0.44]],"v":[[164.185,-104.635],[-164.184,-104.635],[-170.362,-102.074],[-172.921,-95.885],[-172.921,104.635],[172.921,104.635],[172.921,-95.885],[172.256,-99.235],[170.363,-102.074],[167.528,-103.965]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.475,0.475,0.475,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.552,1253.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[-48.006,4.23],[48.007,4.23],[48.007,-4.23],[-48.006,-4.23]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.803,1431.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 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]],"o":[[0,0],[0,0],[0,0],[0,0]],"v":[[42.728,18.91],[-42.728,18.91],[-39.831,-18.91],[39.831,-18.91]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.902000038297,0.902000038297,0.902000038297,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[551.05,1412.66],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":0,"op":53,"st":-38,"bm":0},{"ddd":0,"ind":20,"ty":0,"nm":"Mask v2","parent":21,"td":1,"refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[18,24,0],"ix":2},"a":{"a":0,"k":[500,500,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.471],"y":[0.904]},"o":{"x":[0.36],"y":[0.067]},"t":12,"s":[0]},{"t":49,"s":[1.48],"h":1},{"i":{"x":[0.476],"y":[0.904]},"o":{"x":[0.355],"y":[0.064]},"t":64,"s":[1.48]},{"t":102,"s":[3],"h":1},{"i":{"x":[0.471],"y":[0.904]},"o":{"x":[0.36],"y":[0.067]},"t":113,"s":[0]},{"t":150,"s":[1.48],"h":1},{"i":{"x":[0.476],"y":[0.904]},"o":{"x":[0.355],"y":[0.064]},"t":165,"s":[1.48]},{"t":203,"s":[3],"h":1},{"i":{"x":[0.471],"y":[0.904]},"o":{"x":[0.36],"y":[0.067]},"t":214,"s":[0]},{"t":251,"s":[1.48],"h":1},{"i":{"x":[0.476],"y":[0.904]},"o":{"x":[0.355],"y":[0.064]},"t":266,"s":[1.48]},{"t":304,"s":[3],"h":1},{"i":{"x":[0.471],"y":[0.904]},"o":{"x":[0.36],"y":[0.067]},"t":315,"s":[0]},{"t":352,"s":[1.48],"h":1},{"i":{"x":[0.476],"y":[0.904]},"o":{"x":[0.355],"y":[0.064]},"t":367,"s":[1.48]},{"t":405,"s":[3],"h":1},{"i":{"x":[0.471],"y":[0.907]},"o":{"x":[0.36],"y":[0.065]},"t":416,"s":[0]},{"t":452,"s":[1.48],"h":1},{"i":{"x":[0.476],"y":[0.907]},"o":{"x":[0.355],"y":[0.063]},"t":467,"s":[1.48]},{"t":504,"s":[3],"h":1},{"i":{"x":[0.471],"y":[0.904]},"o":{"x":[0.36],"y":[0.067]},"t":515,"s":[0]},{"t":552,"s":[1.48],"h":1},{"i":{"x":[0.476],"y":[0.907]},"o":{"x":[0.355],"y":[0.063]},"t":567,"s":[1.48]},{"t":604,"s":[3],"h":1},{"i":{"x":[0.471],"y":[0.907]},"o":{"x":[0.36],"y":[0.065]},"t":615,"s":[0]},{"t":651,"s":[1.48],"h":1},{"i":{"x":[0.476],"y":[0.904]},"o":{"x":[0.355],"y":[0.064]},"t":666,"s":[1.48]},{"t":704,"s":[3],"h":1},{"i":{"x":[0.471],"y":[0.907]},"o":{"x":[0.36],"y":[0.065]},"t":715,"s":[0]},{"t":751,"s":[1.48],"h":1},{"i":{"x":[0.476],"y":[0.907]},"o":{"x":[0.355],"y":[0.063]},"t":766,"s":[1.48]},{"t":803,"s":[3],"h":1},{"i":{"x":[0.471],"y":[0.904]},"o":{"x":[0.36],"y":[0.067]},"t":814,"s":[0]},{"t":851,"s":[1.48],"h":1},{"i":{"x":[0.476],"y":[0.904]},"o":{"x":[0.355],"y":[0.064]},"t":865,"s":[1.48]},{"t":903,"s":[3],"h":1},{"t":915,"s":[0],"h":1}],"ix":2},"w":1000,"h":1000,"ip":0,"op":1003,"st":0,"bm":0},{"ddd":0,"ind":21,"ty":4,"nm":"Shape Layer 1","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[290.2,549.8,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[40,40,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[637.316,672],"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":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.002,0.376,0.749,0.569,0.501,0.349,0.682,0.624,1,0.322,0.616,0.678],"ix":9}},"s":{"a":0,"k":[0,-300],"ix":5},"e":{"a":0,"k":[2,308],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[20,-20],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":1000,"st":0,"bm":0},{"ddd":0,"ind":22,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180,"ix":10},"p":{"a":0,"k":[297.75,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":866,"s":[0]},{"t":931,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":866,"op":900,"st":866,"bm":0},{"ddd":0,"ind":23,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[301.063,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":816,"s":[0]},{"t":881,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":816,"op":882,"st":816,"bm":0},{"ddd":0,"ind":24,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180,"ix":10},"p":{"a":0,"k":[297.75,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":766,"s":[0]},{"t":831,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":766,"op":832,"st":766,"bm":0},{"ddd":0,"ind":25,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[301.063,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":715,"s":[0]},{"t":780,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":715,"op":781,"st":715,"bm":0},{"ddd":0,"ind":26,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180,"ix":10},"p":{"a":0,"k":[297.75,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":666,"s":[0]},{"t":731,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":666,"op":732,"st":666,"bm":0},{"ddd":0,"ind":27,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[301.063,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":614,"s":[0]},{"t":679,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":614,"op":680,"st":614,"bm":0},{"ddd":0,"ind":28,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180,"ix":10},"p":{"a":0,"k":[297.75,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":566,"s":[0]},{"t":631,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":566,"op":632,"st":566,"bm":0},{"ddd":0,"ind":29,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[301.063,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":515,"s":[0]},{"t":580,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":515,"op":581,"st":515,"bm":0},{"ddd":0,"ind":30,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180,"ix":10},"p":{"a":0,"k":[297.75,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":466,"s":[0]},{"t":531,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":466,"op":532,"st":466,"bm":0},{"ddd":0,"ind":31,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[301.063,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":414,"s":[0]},{"t":479,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":414,"op":480,"st":414,"bm":0},{"ddd":0,"ind":32,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180,"ix":10},"p":{"a":0,"k":[297.75,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":366,"s":[0]},{"t":431,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":366,"op":432,"st":366,"bm":0},{"ddd":0,"ind":33,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[301.063,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":315,"s":[0]},{"t":380,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":315,"op":381,"st":315,"bm":0},{"ddd":0,"ind":34,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180,"ix":10},"p":{"a":0,"k":[297.75,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":266,"s":[0]},{"t":331,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":266,"op":332,"st":266,"bm":0},{"ddd":0,"ind":35,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[301.063,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":214,"s":[0]},{"t":279,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":214,"op":280,"st":214,"bm":0},{"ddd":0,"ind":36,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180,"ix":10},"p":{"a":0,"k":[297.75,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":164,"s":[0]},{"t":229,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":164,"op":230,"st":164,"bm":0},{"ddd":0,"ind":37,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[301.063,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":113,"s":[0]},{"t":178,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":113,"op":179,"st":113,"bm":0},{"ddd":0,"ind":38,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":180,"ix":10},"p":{"a":0,"k":[297.75,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":64,"s":[0]},{"t":129,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":64,"op":130,"st":64,"bm":0},{"ddd":0,"ind":39,"ty":0,"nm":"arrow up","refId":"comp_2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[301.063,551.75,0],"ix":2},"a":{"a":0,"k":[962.75,551.75,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0],"y":[1]},"o":{"x":[0.336],"y":[0]},"t":12,"s":[0]},{"t":77,"s":[1.24]}],"ix":2},"w":1920,"h":1080,"ip":12,"op":78,"st":12,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/packages/templates/app/react/src/lottie/Web3API_Icon_Cycle.json b/packages/templates/app/react/src/lottie/Web3API_Icon_Cycle.json new file mode 100644 index 0000000000..2fad101aac --- /dev/null +++ b/packages/templates/app/react/src/lottie/Web3API_Icon_Cycle.json @@ -0,0 +1 @@ +{"v":"5.5.7","meta":{"g":"LottieFiles AE 0.1.21","a":"","k":"","d":"","tc":""},"fr":25,"ip":0,"op":75,"w":600,"h":640,"nm":"Web3API_Icon-v2","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"cirkel 3","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":120,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.672},"o":{"x":0.333,"y":0.328},"t":-12,"s":[498.728,758.023,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.671,"y":0.671},"o":{"x":0.336,"y":0.336},"t":-11.978,"s":[499.236,758.884,0],"to":[1.928,-1.139,0],"ti":[-16.63,9.256,0]},{"i":{"x":0.669,"y":0.669},"o":{"x":0.335,"y":0.335},"t":-6.423,"s":[708.861,635.676,0],"to":[18.112,-10.082,0],"ti":[-0.882,22.82,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.343,"y":0.358},"t":-4.933,"s":[740.128,581.527,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[739.681,374.544,0],"to":[-0.927,-22.798,0],"ti":[18.124,10.041,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8.438,"s":[708.315,320.483,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35.024,"s":[530.462,217.624,0],"to":[-17.759,-10.692,0],"ti":[20.213,-10.585,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43.468,"s":[467.953,217.447,0],"to":[-20.139,10.545,0],"ti":[1.907,-1.11,0]},{"t":75,"s":[289.349,320.653,0]}],"ix":2},"a":{"a":0,"k":[257.869,337.47,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.98,0],[0,10.98],[-10.98,0],[0,-10.98]],"o":[[-10.98,0],[0,-10.98],[10.98,0],[0,10.98]],"v":[[0,19.881],[-19.881,0],[0,-19.881],[19.881,0]],"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":[[26.305,0],[0,-26.306],[-26.306,0],[0,26.305]],"o":[[-26.306,0],[0,26.305],[26.305,0],[0,-26.306]],"v":[[0,-47.63],[-47.63,0],[0,47.63],[47.63,0]],"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.501960784314,0.501960784314,0.501960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[257.869,337.47],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":77,"st":-12,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"route 5","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-240,"ix":10},"p":{"a":0,"k":[494.08,475.674,0],"ix":2},"a":{"a":0,"k":[499.68,482.974,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[16.526,9.891],[21.464,-11.31],[0,0],[-0.34,-19.256],[0,0],[-20.493,-12.986],[0,0]],"o":[[0,0],[-16.525,-9.89],[0,0],[-20.501,12.974],[0,0],[-0.353,19.256],[19.414,12.304],[0,0]],"v":[[241.483,-142.828],[30.457,-263.771],[-31.563,-263.771],[-210.575,-159.902],[-241.478,-106.129],[-241.63,99.333],[-210.761,153.125],[0.172,275.081]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":26,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[499.508,481.298],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[35.137]},{"t":75,"s":[54.6]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[44.3]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43.5,"s":[74.4]},{"t":75,"s":[94.3]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":77,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"cirkel 2","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-120,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.672},"o":{"x":0.333,"y":0.328},"t":-12,"s":[256.035,337.351,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.671,"y":0.671},"o":{"x":0.336,"y":0.336},"t":-11.978,"s":[255.035,337.36,0],"to":[0.022,2.239,0],"ti":[0.299,-19.03,0]},{"i":{"x":0.669,"y":0.669},"o":{"x":0.335,"y":0.335},"t":-6.423,"s":[256.924,580.505,0],"to":[-0.325,20.727,0],"ti":[-19.322,-12.174,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.343,"y":0.358},"t":-4.933,"s":[288.185,634.658,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[467.66,737.762,0],"to":[20.207,10.596,0],"ti":[-17.758,10.676,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8.438,"s":[530.162,737.628,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35.024,"s":[708.167,635.033,0],"to":[18.139,-10.034,0],"ti":[-0.94,22.798,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43.468,"s":[739.574,580.987,0],"to":[0.938,-22.714,0],"ti":[0.008,2.207,0]},{"t":75,"s":[739.726,374.563,0]}],"ix":2},"a":{"a":0,"k":[257.869,337.47,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.98,0],[0,10.98],[-10.98,0],[0,-10.98]],"o":[[-10.98,0],[0,-10.98],[10.98,0],[0,10.98]],"v":[[0,19.881],[-19.881,0],[0,-19.881],[19.881,0]],"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":[[26.305,0],[0,-26.306],[-26.306,0],[0,26.305]],"o":[[-26.306,0],[0,26.305],[26.305,0],[0,-26.306]],"v":[[0,-47.63],[-47.63,0],[0,47.63],[47.63,0]],"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.501960784314,0.501960784314,0.501960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[257.869,337.47],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":77,"st":-12,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"route 4","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":-120,"ix":10},"p":{"a":0,"k":[502.88,474.5,0],"ix":2},"a":{"a":0,"k":[499.68,482.974,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[16.526,9.891],[21.464,-11.31],[0,0],[-0.34,-19.256],[0,0],[-20.493,-12.986],[0,0]],"o":[[0,0],[-16.525,-9.89],[0,0],[-20.501,12.974],[0,0],[-0.353,19.256],[19.414,12.304],[0,0]],"v":[[241.091,-142.189],[30.457,-263.771],[-31.563,-263.771],[-210.575,-159.902],[-241.478,-106.129],[-241.63,99.333],[-210.761,153.125],[0.172,275.081]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":26,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[499.508,481.298],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[35.137]},{"t":75,"s":[54.6]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[44.3]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43.5,"s":[74.4]},{"t":75,"s":[94.3]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":77,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"cirkel","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":1,"k":[{"i":{"x":0.667,"y":0.672},"o":{"x":0.333,"y":0.328},"t":-12,"s":[741.877,337.775,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.671,"y":0.671},"o":{"x":0.336,"y":0.336},"t":-11.978,"s":[742.369,336.904,0],"to":[-1.95,-1.101,0],"ti":[16.331,9.774,0]},{"i":{"x":0.669,"y":0.669},"o":{"x":0.335,"y":0.335},"t":-6.423,"s":[530.855,216.967,0],"to":[-17.787,-10.645,0],"ti":[20.204,-10.646,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.343,"y":0.358},"t":-4.933,"s":[468.327,216.964,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":0,"s":[289.298,320.842,0],"to":[-19.28,12.202,0],"ti":[-0.366,-20.717,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":8.438,"s":[258.163,375.037,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":35.024,"s":[258.01,580.491,0],"to":[-0.38,20.726,0],"ti":[-19.273,-12.213,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"t":43.468,"s":[289.112,634.714,0],"to":[19.202,12.169,0],"ti":[-1.915,-1.097,0]},{"t":75,"s":[467.814,738.932,0]}],"ix":2},"a":{"a":0,"k":[225.869,319.47,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[10.98,0],[0,10.98],[-10.98,0],[0,-10.98]],"o":[[-10.98,0],[0,-10.98],[10.98,0],[0,10.98]],"v":[[0,19.881],[-19.881,0],[0,-19.881],[19.881,0]],"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":[[26.305,0],[0,-26.306],[-26.306,0],[0,26.305]],"o":[[-26.306,0],[0,26.305],[26.305,0],[0,-26.306]],"v":[[0,-47.63],[-47.63,0],[0,47.63],[47.63,0]],"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.501960784314,0.501960784314,0.501960784314,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[225.869,318.47],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":77,"st":-12,"bm":0},{"ddd":0,"ind":8,"ty":4,"nm":"route","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[499.68,482.974,0],"ix":2},"a":{"a":0,"k":[499.68,482.974,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[16.526,9.891],[21.464,-11.31],[0,0],[-0.34,-19.256],[0,0],[-20.493,-12.986],[0,0]],"o":[[0,0],[-16.525,-9.89],[0,0],[-20.501,12.974],[0,0],[-0.353,19.256],[19.414,12.304],[0,0]],"v":[[241.483,-142.828],[30.457,-263.771],[-31.563,-263.771],[-210.575,-159.902],[-241.478,-106.129],[-241.63,99.333],[-210.761,153.125],[0.172,275.081]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":26,"ix":5},"lc":1,"lj":1,"ml":10,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[499.508,481.298],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":"tm","s":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[5]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43,"s":[35.137]},{"t":75,"s":[54.6]}],"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[44.3]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":43.5,"s":[74.4]},{"t":75,"s":[94.3]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":77,"st":0,"bm":0},{"ddd":0,"ind":9,"ty":4,"nm":"illu","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[499.819,500.494,0],"ix":2},"a":{"a":0,"k":[499.819,500.494,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[-11.88,-8.709],[-0.53,-4.64],[0.653,-3.383],[0.067,0.265],[4.31,2.36],[1.77,1.979],[0,0],[-3.5,-1.91],[-1.12,-4.53],[0.325,-3.832],[35.818,-17.369],[-40.521,27.42],[0,0],[0.466,1.43],[-0.104,0.812],[0.8,7.084],[3.96,2.9],[0.01,0.28]],"o":[[0,0],[0,0.37],[2.89,2.121],[0.335,2.993],[-0.058,-0.27],[-1.439,-5.821],[-3.859,-2.12],[0,0],[2,1.96],[3.141,1.73],[0.8,3.223],[-8.662,-1.894],[-44.95,21.789],[40.52,-27.41],[-0.309,-2.137],[0.146,-0.823],[3.744,-8.108],[-0.67,-5.96],[-9.831,-7.21],[0,0]],"v":[[38.795,-80.875],[36.475,-80.875],[48.495,-63.016],[53.715,-52.685],[53.204,-43.048],[53.034,-43.864],[44.245,-56.365],[36.035,-62.665],[33.935,-58.215],[42.024,-52.315],[48.545,-42.755],[49.22,-32.07],[-14.155,10.585],[13.255,53.485],[54.375,-21.895],[53.214,-27.219],[53.591,-29.672],[58.305,-53.195],[51.225,-66.735],[41.105,-80.905]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[557.065,519.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 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":[[1.191,-9.145],[8.46,-10.679],[-17.841,-3.51],[-0.031,18.43],[0.95,14.33],[0.05,0.43],[7.02,0]],"o":[[-1.13,8.671],[-16.73,21.1],[17.84,3.51],[0.03,-18.42],[-0.03,-0.44],[-1.075,-8.82],[-7.282,-0.001]],"v":[[-2.704,-33.783],[-12.284,-3.723],[-11.404,44.077],[16.406,6.347],[28.296,-33.133],[28.176,-34.433],[13.182,-47.586]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[421.794,446.083],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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],[4.91,-3.75],[0,0],[0,0],[0,0],[0.86,-6.431],[0,0],[0,0],[0,0],[-3.75,-4.911],[0,0],[0,0],[0,0],[-6.419,-0.86],[0,0],[0,0],[0,0],[-4.92,3.749],[0,0],[0,0],[0,0],[-0.859,6.429],[0,0],[0,0],[0,0],[3.749,4.92],[0,0],[0,0],[0,0],[6.419,0.859],[0,0]],"o":[[0,0],[-6.42,0.859],[0,0],[0,0],[0,0],[-3.75,4.91],[0,0],[0,0],[0,0],[0.86,6.429],[0,0],[0,0],[0,0],[4.89,3.749],[0,0],[0,0],[0,0],[6.421,-0.86],[0,0],[0,0],[0,0],[3.749,-4.911],[0,0],[0,0],[0,0],[-0.86,-6.42],[0,0],[0,0],[0,0],[-4.911,-3.75],[0,0],[0,0]],"v":[[-4.826,-48.3],[-4.826,-35.939],[-22.005,-28.85],[-30.725,-37.569],[-37.555,-30.74],[-28.835,-22.02],[-35.925,-4.83],[-48.285,-4.83],[-48.285,4.831],[-35.925,4.831],[-28.835,22.021],[-37.555,30.74],[-30.725,37.57],[-22.005,28.851],[-4.845,35.94],[-4.845,48.3],[4.815,48.3],[4.815,35.94],[22.005,28.851],[30.724,37.57],[37.554,30.74],[28.835,22.021],[35.924,4.831],[48.285,4.831],[48.285,-4.83],[35.935,-4.83],[28.845,-22.02],[37.565,-30.74],[30.735,-37.569],[22.016,-28.85],[4.835,-35.939],[4.835,-48.3]],"c":true},"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[529.965,420.56],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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,-14.139],[-14.13,0],[0,14.131],[14.14,0]],"o":[[0,14.141],[14.14,0],[-0.01,-14.149],[-14.14,0]],"v":[[-25.595,0.003],[-0.005,25.596],[25.595,0.003],[-0.005,-25.596]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.5,0.5,0.5,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[455.265,548.096],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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,-96.03],[-96.02,0],[0,96.03],[96.03,0]],"o":[[0,96.03],[96.031,0],[0,-96.03],[-96.03,0]],"v":[[-174.155,0.006],[-0.005,174.155],[174.155,0.006],[0.005,-174.155]],"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,75.44],[-75.45,0],[0,-75.45],[75.441,0]],"o":[[0,-75.44],[75.44,0],[-0.011,75.429],[-75.44,0]],"v":[[-136.805,0.006],[0.015,-136.814],[136.826,0.006],[0.005,136.815]],"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.5,0.5,0.5,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[502.205,478.954],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"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":4,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":1000,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Mask v1","td":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":[300,344,0],"ix":2},"a":{"a":0,"k":[500,500,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"tm":{"a":1,"k":[{"i":{"x":[0.471],"y":[0.904]},"o":{"x":[0.36],"y":[0.067]},"t":0,"s":[0]},{"i":{"x":[0.476],"y":[0.904]},"o":{"x":[0.355],"y":[0.064]},"t":37,"s":[1.48]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.174],"y":[0.031]},"t":75,"s":[3]},{"t":1000,"s":[40]}],"ix":2},"w":1000,"h":1000,"ip":0,"op":1250,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"Shape Layer 1","tt":1,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[282,320,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ty":"rc","d":1,"s":{"a":0,"k":[637.316,672],"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":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":3,"k":{"a":0,"k":[0.002,0.376,0.749,0.569,0.501,0.349,0.682,0.624,1,0.322,0.616,0.678],"ix":9}},"s":{"a":0,"k":[0,-300],"ix":5},"e":{"a":0,"k":[2,308],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[20,-20],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"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":1000,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/packages/templates/app/react/src/redirects.ts b/packages/templates/app/react/src/redirects.ts new file mode 100644 index 0000000000..dfb11e4a30 --- /dev/null +++ b/packages/templates/app/react/src/redirects.ts @@ -0,0 +1,15 @@ +import { UriRedirect } from "@web3api/client-js"; +import { ethereumPlugin } from "@web3api/ethereum-plugin-js"; + +const ethereum = (window as any).ethereum; +if (ethereum) { + ethereum.request({ method: "eth_requestAccounts" }); +} else { + throw Error("Please install Metamask."); +} +export const redirects: UriRedirect[] = [ + { + from: "w3://ens/ethereum.web3api.eth", + to: ethereumPlugin({ provider: ethereum }), + }, +]; From 2212dd6dce8339e4b36e26212a379dec3dc80859 Mon Sep 17 00:00:00 2001 From: dOrgJelli Date: Thu, 8 Apr 2021 17:12:05 -0500 Subject: [PATCH 6/9] remove unneeded metamask redirect --- packages/js/client/src/Web3ApiClient.ts | 10 +- packages/js/client/src/index.ts | 3 - packages/js/react/src/provider.tsx | 7 +- packages/templates/app/react/public/thread.js | 120 +++++++++--------- packages/templates/app/react/src/App.tsx | 73 ++--------- .../templates/app/react/src/HelloWorld.tsx | 53 ++++++++ packages/templates/app/react/src/index.tsx | 14 +- packages/templates/app/react/src/redirects.ts | 15 --- packages/templates/app/react/src/todo | 41 ------ yarn.lock | 82 ------------ 10 files changed, 137 insertions(+), 281 deletions(-) create mode 100644 packages/templates/app/react/src/HelloWorld.tsx delete mode 100644 packages/templates/app/react/src/redirects.ts delete mode 100644 packages/templates/app/react/src/todo diff --git a/packages/js/client/src/Web3ApiClient.ts b/packages/js/client/src/Web3ApiClient.ts index 42a0ba0eca..da5684cc11 100644 --- a/packages/js/client/src/Web3ApiClient.ts +++ b/packages/js/client/src/Web3ApiClient.ts @@ -21,7 +21,7 @@ import { } from "@web3api/core-js"; export interface ClientConfig { - redirects: UriRedirect[]; + redirects?: UriRedirect[]; } export class Web3ApiClient implements Client { @@ -36,7 +36,7 @@ export class Web3ApiClient implements Client { if (config) { this._config = { ...config, - redirects: sanitizeUriRedirects(config.redirects), + redirects: config.redirects ? sanitizeUriRedirects(config.redirects) : [], }; } else { this._config = { @@ -44,12 +44,16 @@ export class Web3ApiClient implements Client { }; } + if (!this._config.redirects) { + this._config.redirects = []; + } + // Add all default redirects (IPFS, ETH, ENS) this._config.redirects.push(...getDefaultRedirects()); } public redirects(): readonly UriRedirect[] { - return this._config.redirects; + return this._config.redirects || []; } public async query< diff --git a/packages/js/client/src/index.ts b/packages/js/client/src/index.ts index 6c74c8f2ef..111f45b4e5 100644 --- a/packages/js/client/src/index.ts +++ b/packages/js/client/src/index.ts @@ -1,6 +1,3 @@ export * from "./Web3ApiClient"; export * from "./createWeb3ApiClient"; export * from "@web3api/core-js"; - -// TODO: client.sanitizeRedirects() -> iterate through all redirects, make sure we can resolve all of them (will call getImplementations...) -// TODO: client.getImplementations(uri) -> iterate through all known Web3API's and find all implementations diff --git a/packages/js/react/src/provider.tsx b/packages/js/react/src/provider.tsx index 3a74a8fed5..821c4e9a1f 100644 --- a/packages/js/react/src/provider.tsx +++ b/packages/js/react/src/provider.tsx @@ -1,4 +1,4 @@ -import { UriRedirect, Web3ApiClient } from "@web3api/client-js"; +import { Web3ApiClient, ClientConfig } from "@web3api/client-js"; import React from "react"; type ClientContext = React.Context @@ -14,10 +14,7 @@ interface Web3ApiProviderMap { export const PROVIDERS: Web3ApiProviderMap = {}; -interface Web3ApiProviderProps { - redirects: UriRedirect[]; - children: React.ReactNode; -} +interface Web3ApiProviderProps extends ClientConfig { } export type Web3ApiProviderFC = React.FC; diff --git a/packages/templates/app/react/public/thread.js b/packages/templates/app/react/public/thread.js index 48505ecd27..431f0bd32c 100644 --- a/packages/templates/app/react/public/thread.js +++ b/packages/templates/app/react/public/thread.js @@ -97,182 +97,182 @@ return /******/ (function(modules) { // webpackBootstrap /******/ ({ /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/CachedKeyDecoder.mjs": -/*!***********************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/CachedKeyDecoder.mjs ***! - \***********************************************************************************************************/ +/*!******************************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/CachedKeyDecoder.mjs ***! + \******************************************************************************************************************/ /*! exports provided: CachedKeyDecoder */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CachedKeyDecoder\", function() { return CachedKeyDecoder; });\n/* harmony import */ var _utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils/utf8.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/utf8.mjs\");\n\nvar DEFAULT_MAX_KEY_LENGTH = 16;\nvar DEFAULT_MAX_LENGTH_PER_KEY = 16;\nvar CachedKeyDecoder = /** @class */ (function () {\n function CachedKeyDecoder(maxKeyLength, maxLengthPerKey) {\n if (maxKeyLength === void 0) { maxKeyLength = DEFAULT_MAX_KEY_LENGTH; }\n if (maxLengthPerKey === void 0) { maxLengthPerKey = DEFAULT_MAX_LENGTH_PER_KEY; }\n this.maxKeyLength = maxKeyLength;\n this.maxLengthPerKey = maxLengthPerKey;\n this.hit = 0;\n this.miss = 0;\n // avoid `new Array(N)` to create a non-sparse array for performance.\n this.caches = [];\n for (var i = 0; i < this.maxKeyLength; i++) {\n this.caches.push([]);\n }\n }\n CachedKeyDecoder.prototype.canBeCached = function (byteLength) {\n return byteLength > 0 && byteLength <= this.maxKeyLength;\n };\n CachedKeyDecoder.prototype.get = function (bytes, inputOffset, byteLength) {\n var records = this.caches[byteLength - 1];\n var recordsLength = records.length;\n FIND_CHUNK: for (var i = 0; i < recordsLength; i++) {\n var record = records[i];\n var recordBytes = record.bytes;\n for (var j = 0; j < byteLength; j++) {\n if (recordBytes[j] !== bytes[inputOffset + j]) {\n continue FIND_CHUNK;\n }\n }\n return record.value;\n }\n return null;\n };\n CachedKeyDecoder.prototype.store = function (bytes, value) {\n var records = this.caches[bytes.length - 1];\n var record = { bytes: bytes, value: value };\n if (records.length >= this.maxLengthPerKey) {\n // `records` are full!\n // Set `record` to a randomized position.\n records[(Math.random() * records.length) | 0] = record;\n }\n else {\n records.push(record);\n }\n };\n CachedKeyDecoder.prototype.decode = function (bytes, inputOffset, byteLength) {\n var cachedValue = this.get(bytes, inputOffset, byteLength);\n if (cachedValue != null) {\n this.hit++;\n return cachedValue;\n }\n this.miss++;\n var value = Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"utf8DecodeJs\"])(bytes, inputOffset, byteLength);\n // Ensure to copy a slice of bytes because the byte may be NodeJS Buffer and Buffer#slice() returns a reference to its internal ArrayBuffer.\n var slicedCopyOfBytes = Uint8Array.prototype.slice.call(bytes, inputOffset, inputOffset + byteLength);\n this.store(slicedCopyOfBytes, value);\n return value;\n };\n return CachedKeyDecoder;\n}());\n\n//# sourceMappingURL=CachedKeyDecoder.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/CachedKeyDecoder.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"CachedKeyDecoder\", function() { return CachedKeyDecoder; });\n/* harmony import */ var _utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils/utf8.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/utf8.mjs\");\n\nvar DEFAULT_MAX_KEY_LENGTH = 16;\nvar DEFAULT_MAX_LENGTH_PER_KEY = 16;\nvar CachedKeyDecoder = /** @class */ (function () {\n function CachedKeyDecoder(maxKeyLength, maxLengthPerKey) {\n if (maxKeyLength === void 0) { maxKeyLength = DEFAULT_MAX_KEY_LENGTH; }\n if (maxLengthPerKey === void 0) { maxLengthPerKey = DEFAULT_MAX_LENGTH_PER_KEY; }\n this.maxKeyLength = maxKeyLength;\n this.maxLengthPerKey = maxLengthPerKey;\n this.hit = 0;\n this.miss = 0;\n // avoid `new Array(N)` to create a non-sparse array for performance.\n this.caches = [];\n for (var i = 0; i < this.maxKeyLength; i++) {\n this.caches.push([]);\n }\n }\n CachedKeyDecoder.prototype.canBeCached = function (byteLength) {\n return byteLength > 0 && byteLength <= this.maxKeyLength;\n };\n CachedKeyDecoder.prototype.get = function (bytes, inputOffset, byteLength) {\n var records = this.caches[byteLength - 1];\n var recordsLength = records.length;\n FIND_CHUNK: for (var i = 0; i < recordsLength; i++) {\n var record = records[i];\n var recordBytes = record.bytes;\n for (var j = 0; j < byteLength; j++) {\n if (recordBytes[j] !== bytes[inputOffset + j]) {\n continue FIND_CHUNK;\n }\n }\n return record.value;\n }\n return null;\n };\n CachedKeyDecoder.prototype.store = function (bytes, value) {\n var records = this.caches[bytes.length - 1];\n var record = { bytes: bytes, value: value };\n if (records.length >= this.maxLengthPerKey) {\n // `records` are full!\n // Set `record` to a randomized position.\n records[(Math.random() * records.length) | 0] = record;\n }\n else {\n records.push(record);\n }\n };\n CachedKeyDecoder.prototype.decode = function (bytes, inputOffset, byteLength) {\n var cachedValue = this.get(bytes, inputOffset, byteLength);\n if (cachedValue != null) {\n this.hit++;\n return cachedValue;\n }\n this.miss++;\n var value = Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"utf8DecodeJs\"])(bytes, inputOffset, byteLength);\n // Ensure to copy a slice of bytes because the byte may be NodeJS Buffer and Buffer#slice() returns a reference to its internal ArrayBuffer.\n var slicedCopyOfBytes = Uint8Array.prototype.slice.call(bytes, inputOffset, inputOffset + byteLength);\n this.store(slicedCopyOfBytes, value);\n return value;\n };\n return CachedKeyDecoder;\n}());\n\n//# sourceMappingURL=CachedKeyDecoder.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/CachedKeyDecoder.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/Decoder.mjs": -/*!**************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/Decoder.mjs ***! - \**************************************************************************************************/ +/*!*********************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/Decoder.mjs ***! + \*********************************************************************************************************/ /*! exports provided: DataViewIndexOutOfBoundsError, Decoder */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DataViewIndexOutOfBoundsError\", function() { return DataViewIndexOutOfBoundsError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Decoder\", function() { return Decoder; });\n/* harmony import */ var _utils_prettyByte_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils/prettyByte.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/prettyByte.mjs\");\n/* harmony import */ var _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ExtensionCodec.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtensionCodec.mjs\");\n/* harmony import */ var _utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/int.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/int.mjs\");\n/* harmony import */ var _utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/utf8.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/utf8.mjs\");\n/* harmony import */ var _utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./utils/typedArrays.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/typedArrays.mjs\");\n/* harmony import */ var _CachedKeyDecoder_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./CachedKeyDecoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/CachedKeyDecoder.mjs\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __asyncValues = (undefined && undefined.__asyncValues) || function (o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n};\nvar __await = (undefined && undefined.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }\nvar __asyncGenerator = (undefined && undefined.__asyncGenerator) || function (thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n};\n\n\n\n\n\n\nvar isValidMapKeyType = function (key) {\n var keyType = typeof key;\n return keyType === \"string\" || keyType === \"number\";\n};\nvar HEAD_BYTE_REQUIRED = -1;\nvar EMPTY_VIEW = new DataView(new ArrayBuffer(0));\nvar EMPTY_BYTES = new Uint8Array(EMPTY_VIEW.buffer);\n// IE11: Hack to support IE11.\n// IE11: Drop this hack and just use RangeError when IE11 is obsolete.\nvar DataViewIndexOutOfBoundsError = (function () {\n try {\n // IE11: The spec says it should throw RangeError,\n // IE11: but in IE11 it throws TypeError.\n EMPTY_VIEW.getInt8(0);\n }\n catch (e) {\n return e.constructor;\n }\n throw new Error(\"never reached\");\n})();\nvar MORE_DATA = new DataViewIndexOutOfBoundsError(\"Insufficient data\");\nvar DEFAULT_MAX_LENGTH = 4294967295; // uint32_max\nvar sharedCachedKeyDecoder = new _CachedKeyDecoder_mjs__WEBPACK_IMPORTED_MODULE_5__[\"CachedKeyDecoder\"]();\nvar Decoder = /** @class */ (function () {\n function Decoder(extensionCodec, context, maxStrLength, maxBinLength, maxArrayLength, maxMapLength, maxExtLength, keyDecoder) {\n if (extensionCodec === void 0) { extensionCodec = _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_1__[\"ExtensionCodec\"].defaultCodec; }\n if (context === void 0) { context = undefined; }\n if (maxStrLength === void 0) { maxStrLength = DEFAULT_MAX_LENGTH; }\n if (maxBinLength === void 0) { maxBinLength = DEFAULT_MAX_LENGTH; }\n if (maxArrayLength === void 0) { maxArrayLength = DEFAULT_MAX_LENGTH; }\n if (maxMapLength === void 0) { maxMapLength = DEFAULT_MAX_LENGTH; }\n if (maxExtLength === void 0) { maxExtLength = DEFAULT_MAX_LENGTH; }\n if (keyDecoder === void 0) { keyDecoder = sharedCachedKeyDecoder; }\n this.extensionCodec = extensionCodec;\n this.context = context;\n this.maxStrLength = maxStrLength;\n this.maxBinLength = maxBinLength;\n this.maxArrayLength = maxArrayLength;\n this.maxMapLength = maxMapLength;\n this.maxExtLength = maxExtLength;\n this.keyDecoder = keyDecoder;\n this.totalPos = 0;\n this.pos = 0;\n this.view = EMPTY_VIEW;\n this.bytes = EMPTY_BYTES;\n this.headByte = HEAD_BYTE_REQUIRED;\n this.stack = [];\n }\n Decoder.prototype.reinitializeState = function () {\n this.totalPos = 0;\n this.headByte = HEAD_BYTE_REQUIRED;\n };\n Decoder.prototype.setBuffer = function (buffer) {\n this.bytes = Object(_utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_4__[\"ensureUint8Array\"])(buffer);\n this.view = Object(_utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_4__[\"createDataView\"])(this.bytes);\n this.pos = 0;\n };\n Decoder.prototype.appendBuffer = function (buffer) {\n if (this.headByte === HEAD_BYTE_REQUIRED && !this.hasRemaining()) {\n this.setBuffer(buffer);\n }\n else {\n // retried because data is insufficient\n var remainingData = this.bytes.subarray(this.pos);\n var newData = Object(_utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_4__[\"ensureUint8Array\"])(buffer);\n var concated = new Uint8Array(remainingData.length + newData.length);\n concated.set(remainingData);\n concated.set(newData, remainingData.length);\n this.setBuffer(concated);\n }\n };\n Decoder.prototype.hasRemaining = function (size) {\n if (size === void 0) { size = 1; }\n return this.view.byteLength - this.pos >= size;\n };\n Decoder.prototype.createExtraByteError = function (posToShow) {\n var _a = this, view = _a.view, pos = _a.pos;\n return new RangeError(\"Extra \" + (view.byteLength - pos) + \" of \" + view.byteLength + \" byte(s) found at buffer[\" + posToShow + \"]\");\n };\n Decoder.prototype.decode = function (buffer) {\n this.reinitializeState();\n this.setBuffer(buffer);\n var object = this.doDecodeSync();\n if (this.hasRemaining()) {\n throw this.createExtraByteError(this.pos);\n }\n return object;\n };\n Decoder.prototype.decodeAsync = function (stream) {\n var stream_1, stream_1_1;\n var e_1, _a;\n return __awaiter(this, void 0, void 0, function () {\n var decoded, object, buffer, e_1_1, _b, headByte, pos, totalPos;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n decoded = false;\n _c.label = 1;\n case 1:\n _c.trys.push([1, 6, 7, 12]);\n stream_1 = __asyncValues(stream);\n _c.label = 2;\n case 2: return [4 /*yield*/, stream_1.next()];\n case 3:\n if (!(stream_1_1 = _c.sent(), !stream_1_1.done)) return [3 /*break*/, 5];\n buffer = stream_1_1.value;\n if (decoded) {\n throw this.createExtraByteError(this.totalPos);\n }\n this.appendBuffer(buffer);\n try {\n object = this.doDecodeSync();\n decoded = true;\n }\n catch (e) {\n if (!(e instanceof DataViewIndexOutOfBoundsError)) {\n throw e; // rethrow\n }\n // fallthrough\n }\n this.totalPos += this.pos;\n _c.label = 4;\n case 4: return [3 /*break*/, 2];\n case 5: return [3 /*break*/, 12];\n case 6:\n e_1_1 = _c.sent();\n e_1 = { error: e_1_1 };\n return [3 /*break*/, 12];\n case 7:\n _c.trys.push([7, , 10, 11]);\n if (!(stream_1_1 && !stream_1_1.done && (_a = stream_1.return))) return [3 /*break*/, 9];\n return [4 /*yield*/, _a.call(stream_1)];\n case 8:\n _c.sent();\n _c.label = 9;\n case 9: return [3 /*break*/, 11];\n case 10:\n if (e_1) throw e_1.error;\n return [7 /*endfinally*/];\n case 11: return [7 /*endfinally*/];\n case 12:\n if (decoded) {\n if (this.hasRemaining()) {\n throw this.createExtraByteError(this.totalPos);\n }\n return [2 /*return*/, object];\n }\n _b = this, headByte = _b.headByte, pos = _b.pos, totalPos = _b.totalPos;\n throw new RangeError(\"Insufficient data in parsing \" + Object(_utils_prettyByte_mjs__WEBPACK_IMPORTED_MODULE_0__[\"prettyByte\"])(headByte) + \" at \" + totalPos + \" (\" + pos + \" in the current buffer)\");\n }\n });\n });\n };\n Decoder.prototype.decodeArrayStream = function (stream) {\n return this.decodeMultiAsync(stream, true);\n };\n Decoder.prototype.decodeStream = function (stream) {\n return this.decodeMultiAsync(stream, false);\n };\n Decoder.prototype.decodeMultiAsync = function (stream, isArray) {\n return __asyncGenerator(this, arguments, function decodeMultiAsync_1() {\n var isArrayHeaderRequired, arrayItemsLeft, stream_2, stream_2_1, buffer, e_2, e_3_1;\n var e_3, _a;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n isArrayHeaderRequired = isArray;\n arrayItemsLeft = -1;\n _b.label = 1;\n case 1:\n _b.trys.push([1, 13, 14, 19]);\n stream_2 = __asyncValues(stream);\n _b.label = 2;\n case 2: return [4 /*yield*/, __await(stream_2.next())];\n case 3:\n if (!(stream_2_1 = _b.sent(), !stream_2_1.done)) return [3 /*break*/, 12];\n buffer = stream_2_1.value;\n if (isArray && arrayItemsLeft === 0) {\n throw this.createExtraByteError(this.totalPos);\n }\n this.appendBuffer(buffer);\n if (isArrayHeaderRequired) {\n arrayItemsLeft = this.readArraySize();\n isArrayHeaderRequired = false;\n this.complete();\n }\n _b.label = 4;\n case 4:\n _b.trys.push([4, 9, , 10]);\n _b.label = 5;\n case 5:\n if (false) {}\n return [4 /*yield*/, __await(this.doDecodeSync())];\n case 6: return [4 /*yield*/, _b.sent()];\n case 7:\n _b.sent();\n if (--arrayItemsLeft === 0) {\n return [3 /*break*/, 8];\n }\n return [3 /*break*/, 5];\n case 8: return [3 /*break*/, 10];\n case 9:\n e_2 = _b.sent();\n if (!(e_2 instanceof DataViewIndexOutOfBoundsError)) {\n throw e_2; // rethrow\n }\n return [3 /*break*/, 10];\n case 10:\n this.totalPos += this.pos;\n _b.label = 11;\n case 11: return [3 /*break*/, 2];\n case 12: return [3 /*break*/, 19];\n case 13:\n e_3_1 = _b.sent();\n e_3 = { error: e_3_1 };\n return [3 /*break*/, 19];\n case 14:\n _b.trys.push([14, , 17, 18]);\n if (!(stream_2_1 && !stream_2_1.done && (_a = stream_2.return))) return [3 /*break*/, 16];\n return [4 /*yield*/, __await(_a.call(stream_2))];\n case 15:\n _b.sent();\n _b.label = 16;\n case 16: return [3 /*break*/, 18];\n case 17:\n if (e_3) throw e_3.error;\n return [7 /*endfinally*/];\n case 18: return [7 /*endfinally*/];\n case 19: return [2 /*return*/];\n }\n });\n });\n };\n Decoder.prototype.doDecodeSync = function () {\n DECODE: while (true) {\n var headByte = this.readHeadByte();\n var object = void 0;\n if (headByte >= 0xe0) {\n // negative fixint (111x xxxx) 0xe0 - 0xff\n object = headByte - 0x100;\n }\n else if (headByte < 0xc0) {\n if (headByte < 0x80) {\n // positive fixint (0xxx xxxx) 0x00 - 0x7f\n object = headByte;\n }\n else if (headByte < 0x90) {\n // fixmap (1000 xxxx) 0x80 - 0x8f\n var size = headByte - 0x80;\n if (size !== 0) {\n this.pushMapState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = {};\n }\n }\n else if (headByte < 0xa0) {\n // fixarray (1001 xxxx) 0x90 - 0x9f\n var size = headByte - 0x90;\n if (size !== 0) {\n this.pushArrayState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = [];\n }\n }\n else {\n // fixstr (101x xxxx) 0xa0 - 0xbf\n var byteLength = headByte - 0xa0;\n object = this.decodeUtf8String(byteLength, 0);\n }\n }\n else if (headByte === 0xc0) {\n // nil\n object = null;\n }\n else if (headByte === 0xc2) {\n // false\n object = false;\n }\n else if (headByte === 0xc3) {\n // true\n object = true;\n }\n else if (headByte === 0xca) {\n // float 32\n object = this.readF32();\n }\n else if (headByte === 0xcb) {\n // float 64\n object = this.readF64();\n }\n else if (headByte === 0xcc) {\n // uint 8\n object = this.readU8();\n }\n else if (headByte === 0xcd) {\n // uint 16\n object = this.readU16();\n }\n else if (headByte === 0xce) {\n // uint 32\n object = this.readU32();\n }\n else if (headByte === 0xcf) {\n // uint 64\n object = this.readU64();\n }\n else if (headByte === 0xd0) {\n // int 8\n object = this.readI8();\n }\n else if (headByte === 0xd1) {\n // int 16\n object = this.readI16();\n }\n else if (headByte === 0xd2) {\n // int 32\n object = this.readI32();\n }\n else if (headByte === 0xd3) {\n // int 64\n object = this.readI64();\n }\n else if (headByte === 0xd9) {\n // str 8\n var byteLength = this.lookU8();\n object = this.decodeUtf8String(byteLength, 1);\n }\n else if (headByte === 0xda) {\n // str 16\n var byteLength = this.lookU16();\n object = this.decodeUtf8String(byteLength, 2);\n }\n else if (headByte === 0xdb) {\n // str 32\n var byteLength = this.lookU32();\n object = this.decodeUtf8String(byteLength, 4);\n }\n else if (headByte === 0xdc) {\n // array 16\n var size = this.readU16();\n if (size !== 0) {\n this.pushArrayState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = [];\n }\n }\n else if (headByte === 0xdd) {\n // array 32\n var size = this.readU32();\n if (size !== 0) {\n this.pushArrayState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = [];\n }\n }\n else if (headByte === 0xde) {\n // map 16\n var size = this.readU16();\n if (size !== 0) {\n this.pushMapState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = {};\n }\n }\n else if (headByte === 0xdf) {\n // map 32\n var size = this.readU32();\n if (size !== 0) {\n this.pushMapState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = {};\n }\n }\n else if (headByte === 0xc4) {\n // bin 8\n var size = this.lookU8();\n object = this.decodeBinary(size, 1);\n }\n else if (headByte === 0xc5) {\n // bin 16\n var size = this.lookU16();\n object = this.decodeBinary(size, 2);\n }\n else if (headByte === 0xc6) {\n // bin 32\n var size = this.lookU32();\n object = this.decodeBinary(size, 4);\n }\n else if (headByte === 0xd4) {\n // fixext 1\n object = this.decodeExtension(1, 0);\n }\n else if (headByte === 0xd5) {\n // fixext 2\n object = this.decodeExtension(2, 0);\n }\n else if (headByte === 0xd6) {\n // fixext 4\n object = this.decodeExtension(4, 0);\n }\n else if (headByte === 0xd7) {\n // fixext 8\n object = this.decodeExtension(8, 0);\n }\n else if (headByte === 0xd8) {\n // fixext 16\n object = this.decodeExtension(16, 0);\n }\n else if (headByte === 0xc7) {\n // ext 8\n var size = this.lookU8();\n object = this.decodeExtension(size, 1);\n }\n else if (headByte === 0xc8) {\n // ext 16\n var size = this.lookU16();\n object = this.decodeExtension(size, 2);\n }\n else if (headByte === 0xc9) {\n // ext 32\n var size = this.lookU32();\n object = this.decodeExtension(size, 4);\n }\n else {\n throw new Error(\"Unrecognized type byte: \" + Object(_utils_prettyByte_mjs__WEBPACK_IMPORTED_MODULE_0__[\"prettyByte\"])(headByte));\n }\n this.complete();\n var stack = this.stack;\n while (stack.length > 0) {\n // arrays and maps\n var state = stack[stack.length - 1];\n if (state.type === 0 /* ARRAY */) {\n state.array[state.position] = object;\n state.position++;\n if (state.position === state.size) {\n stack.pop();\n object = state.array;\n }\n else {\n continue DECODE;\n }\n }\n else if (state.type === 1 /* MAP_KEY */) {\n if (!isValidMapKeyType(object)) {\n throw new Error(\"The type of key must be string or number but \" + typeof object);\n }\n state.key = object;\n state.type = 2 /* MAP_VALUE */;\n continue DECODE;\n }\n else {\n // it must be `state.type === State.MAP_VALUE` here\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n state.map[state.key] = object;\n state.readCount++;\n if (state.readCount === state.size) {\n stack.pop();\n object = state.map;\n }\n else {\n state.key = null;\n state.type = 1 /* MAP_KEY */;\n continue DECODE;\n }\n }\n }\n return object;\n }\n };\n Decoder.prototype.readHeadByte = function () {\n if (this.headByte === HEAD_BYTE_REQUIRED) {\n this.headByte = this.readU8();\n // console.log(\"headByte\", prettyByte(this.headByte));\n }\n return this.headByte;\n };\n Decoder.prototype.complete = function () {\n this.headByte = HEAD_BYTE_REQUIRED;\n };\n Decoder.prototype.readArraySize = function () {\n var headByte = this.readHeadByte();\n switch (headByte) {\n case 0xdc:\n return this.readU16();\n case 0xdd:\n return this.readU32();\n default: {\n if (headByte < 0xa0) {\n return headByte - 0x90;\n }\n else {\n throw new Error(\"Unrecognized array type byte: \" + Object(_utils_prettyByte_mjs__WEBPACK_IMPORTED_MODULE_0__[\"prettyByte\"])(headByte));\n }\n }\n }\n };\n Decoder.prototype.pushMapState = function (size) {\n if (size > this.maxMapLength) {\n throw new Error(\"Max length exceeded: map length (\" + size + \") > maxMapLengthLength (\" + this.maxMapLength + \")\");\n }\n this.stack.push({\n type: 1 /* MAP_KEY */,\n size: size,\n key: null,\n readCount: 0,\n map: {},\n });\n };\n Decoder.prototype.pushArrayState = function (size) {\n if (size > this.maxArrayLength) {\n throw new Error(\"Max length exceeded: array length (\" + size + \") > maxArrayLength (\" + this.maxArrayLength + \")\");\n }\n this.stack.push({\n type: 0 /* ARRAY */,\n size: size,\n array: new Array(size),\n position: 0,\n });\n };\n Decoder.prototype.decodeUtf8String = function (byteLength, headerOffset) {\n var _a;\n if (byteLength > this.maxStrLength) {\n throw new Error(\"Max length exceeded: UTF-8 byte length (\" + byteLength + \") > maxStrLength (\" + this.maxStrLength + \")\");\n }\n if (this.bytes.byteLength < this.pos + headerOffset + byteLength) {\n throw MORE_DATA;\n }\n var offset = this.pos + headerOffset;\n var object;\n if (this.stateIsMapKey() && ((_a = this.keyDecoder) === null || _a === void 0 ? void 0 : _a.canBeCached(byteLength))) {\n object = this.keyDecoder.decode(this.bytes, offset, byteLength);\n }\n else if (byteLength > _utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TEXT_DECODER_THRESHOLD\"]) {\n object = Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_3__[\"utf8DecodeTD\"])(this.bytes, offset, byteLength);\n }\n else {\n object = Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_3__[\"utf8DecodeJs\"])(this.bytes, offset, byteLength);\n }\n this.pos += headerOffset + byteLength;\n return object;\n };\n Decoder.prototype.stateIsMapKey = function () {\n if (this.stack.length > 0) {\n var state = this.stack[this.stack.length - 1];\n return state.type === 1 /* MAP_KEY */;\n }\n return false;\n };\n Decoder.prototype.decodeBinary = function (byteLength, headOffset) {\n if (byteLength > this.maxBinLength) {\n throw new Error(\"Max length exceeded: bin length (\" + byteLength + \") > maxBinLength (\" + this.maxBinLength + \")\");\n }\n if (!this.hasRemaining(byteLength + headOffset)) {\n throw MORE_DATA;\n }\n var offset = this.pos + headOffset;\n var object = this.bytes.subarray(offset, offset + byteLength);\n this.pos += headOffset + byteLength;\n return object;\n };\n Decoder.prototype.decodeExtension = function (size, headOffset) {\n if (size > this.maxExtLength) {\n throw new Error(\"Max length exceeded: ext length (\" + size + \") > maxExtLength (\" + this.maxExtLength + \")\");\n }\n var extType = this.view.getInt8(this.pos + headOffset);\n var data = this.decodeBinary(size, headOffset + 1 /* extType */);\n return this.extensionCodec.decode(data, extType, this.context);\n };\n Decoder.prototype.lookU8 = function () {\n return this.view.getUint8(this.pos);\n };\n Decoder.prototype.lookU16 = function () {\n return this.view.getUint16(this.pos);\n };\n Decoder.prototype.lookU32 = function () {\n return this.view.getUint32(this.pos);\n };\n Decoder.prototype.readU8 = function () {\n var value = this.view.getUint8(this.pos);\n this.pos++;\n return value;\n };\n Decoder.prototype.readI8 = function () {\n var value = this.view.getInt8(this.pos);\n this.pos++;\n return value;\n };\n Decoder.prototype.readU16 = function () {\n var value = this.view.getUint16(this.pos);\n this.pos += 2;\n return value;\n };\n Decoder.prototype.readI16 = function () {\n var value = this.view.getInt16(this.pos);\n this.pos += 2;\n return value;\n };\n Decoder.prototype.readU32 = function () {\n var value = this.view.getUint32(this.pos);\n this.pos += 4;\n return value;\n };\n Decoder.prototype.readI32 = function () {\n var value = this.view.getInt32(this.pos);\n this.pos += 4;\n return value;\n };\n Decoder.prototype.readU64 = function () {\n var value = Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getUint64\"])(this.view, this.pos);\n this.pos += 8;\n return value;\n };\n Decoder.prototype.readI64 = function () {\n var value = Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getInt64\"])(this.view, this.pos);\n this.pos += 8;\n return value;\n };\n Decoder.prototype.readF32 = function () {\n var value = this.view.getFloat32(this.pos);\n this.pos += 4;\n return value;\n };\n Decoder.prototype.readF64 = function () {\n var value = this.view.getFloat64(this.pos);\n this.pos += 8;\n return value;\n };\n return Decoder;\n}());\n\n//# sourceMappingURL=Decoder.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/Decoder.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DataViewIndexOutOfBoundsError\", function() { return DataViewIndexOutOfBoundsError; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Decoder\", function() { return Decoder; });\n/* harmony import */ var _utils_prettyByte_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils/prettyByte.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/prettyByte.mjs\");\n/* harmony import */ var _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ExtensionCodec.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtensionCodec.mjs\");\n/* harmony import */ var _utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/int.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/int.mjs\");\n/* harmony import */ var _utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/utf8.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/utf8.mjs\");\n/* harmony import */ var _utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./utils/typedArrays.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/typedArrays.mjs\");\n/* harmony import */ var _CachedKeyDecoder_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./CachedKeyDecoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/CachedKeyDecoder.mjs\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __asyncValues = (undefined && undefined.__asyncValues) || function (o) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var m = o[Symbol.asyncIterator], i;\n return m ? m.call(o) : (o = typeof __values === \"function\" ? __values(o) : o[Symbol.iterator](), i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i);\n function verb(n) { i[n] = o[n] && function (v) { return new Promise(function (resolve, reject) { v = o[n](v), settle(resolve, reject, v.done, v.value); }); }; }\n function settle(resolve, reject, d, v) { Promise.resolve(v).then(function(v) { resolve({ value: v, done: d }); }, reject); }\n};\nvar __await = (undefined && undefined.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }\nvar __asyncGenerator = (undefined && undefined.__asyncGenerator) || function (thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n};\n\n\n\n\n\n\nvar isValidMapKeyType = function (key) {\n var keyType = typeof key;\n return keyType === \"string\" || keyType === \"number\";\n};\nvar HEAD_BYTE_REQUIRED = -1;\nvar EMPTY_VIEW = new DataView(new ArrayBuffer(0));\nvar EMPTY_BYTES = new Uint8Array(EMPTY_VIEW.buffer);\n// IE11: Hack to support IE11.\n// IE11: Drop this hack and just use RangeError when IE11 is obsolete.\nvar DataViewIndexOutOfBoundsError = (function () {\n try {\n // IE11: The spec says it should throw RangeError,\n // IE11: but in IE11 it throws TypeError.\n EMPTY_VIEW.getInt8(0);\n }\n catch (e) {\n return e.constructor;\n }\n throw new Error(\"never reached\");\n})();\nvar MORE_DATA = new DataViewIndexOutOfBoundsError(\"Insufficient data\");\nvar DEFAULT_MAX_LENGTH = 4294967295; // uint32_max\nvar sharedCachedKeyDecoder = new _CachedKeyDecoder_mjs__WEBPACK_IMPORTED_MODULE_5__[\"CachedKeyDecoder\"]();\nvar Decoder = /** @class */ (function () {\n function Decoder(extensionCodec, context, maxStrLength, maxBinLength, maxArrayLength, maxMapLength, maxExtLength, keyDecoder) {\n if (extensionCodec === void 0) { extensionCodec = _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_1__[\"ExtensionCodec\"].defaultCodec; }\n if (context === void 0) { context = undefined; }\n if (maxStrLength === void 0) { maxStrLength = DEFAULT_MAX_LENGTH; }\n if (maxBinLength === void 0) { maxBinLength = DEFAULT_MAX_LENGTH; }\n if (maxArrayLength === void 0) { maxArrayLength = DEFAULT_MAX_LENGTH; }\n if (maxMapLength === void 0) { maxMapLength = DEFAULT_MAX_LENGTH; }\n if (maxExtLength === void 0) { maxExtLength = DEFAULT_MAX_LENGTH; }\n if (keyDecoder === void 0) { keyDecoder = sharedCachedKeyDecoder; }\n this.extensionCodec = extensionCodec;\n this.context = context;\n this.maxStrLength = maxStrLength;\n this.maxBinLength = maxBinLength;\n this.maxArrayLength = maxArrayLength;\n this.maxMapLength = maxMapLength;\n this.maxExtLength = maxExtLength;\n this.keyDecoder = keyDecoder;\n this.totalPos = 0;\n this.pos = 0;\n this.view = EMPTY_VIEW;\n this.bytes = EMPTY_BYTES;\n this.headByte = HEAD_BYTE_REQUIRED;\n this.stack = [];\n }\n Decoder.prototype.reinitializeState = function () {\n this.totalPos = 0;\n this.headByte = HEAD_BYTE_REQUIRED;\n };\n Decoder.prototype.setBuffer = function (buffer) {\n this.bytes = Object(_utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_4__[\"ensureUint8Array\"])(buffer);\n this.view = Object(_utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_4__[\"createDataView\"])(this.bytes);\n this.pos = 0;\n };\n Decoder.prototype.appendBuffer = function (buffer) {\n if (this.headByte === HEAD_BYTE_REQUIRED && !this.hasRemaining()) {\n this.setBuffer(buffer);\n }\n else {\n // retried because data is insufficient\n var remainingData = this.bytes.subarray(this.pos);\n var newData = Object(_utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_4__[\"ensureUint8Array\"])(buffer);\n var concated = new Uint8Array(remainingData.length + newData.length);\n concated.set(remainingData);\n concated.set(newData, remainingData.length);\n this.setBuffer(concated);\n }\n };\n Decoder.prototype.hasRemaining = function (size) {\n if (size === void 0) { size = 1; }\n return this.view.byteLength - this.pos >= size;\n };\n Decoder.prototype.createExtraByteError = function (posToShow) {\n var _a = this, view = _a.view, pos = _a.pos;\n return new RangeError(\"Extra \" + (view.byteLength - pos) + \" of \" + view.byteLength + \" byte(s) found at buffer[\" + posToShow + \"]\");\n };\n Decoder.prototype.decode = function (buffer) {\n this.reinitializeState();\n this.setBuffer(buffer);\n var object = this.doDecodeSync();\n if (this.hasRemaining()) {\n throw this.createExtraByteError(this.pos);\n }\n return object;\n };\n Decoder.prototype.decodeAsync = function (stream) {\n var stream_1, stream_1_1;\n var e_1, _a;\n return __awaiter(this, void 0, void 0, function () {\n var decoded, object, buffer, e_1_1, _b, headByte, pos, totalPos;\n return __generator(this, function (_c) {\n switch (_c.label) {\n case 0:\n decoded = false;\n _c.label = 1;\n case 1:\n _c.trys.push([1, 6, 7, 12]);\n stream_1 = __asyncValues(stream);\n _c.label = 2;\n case 2: return [4 /*yield*/, stream_1.next()];\n case 3:\n if (!(stream_1_1 = _c.sent(), !stream_1_1.done)) return [3 /*break*/, 5];\n buffer = stream_1_1.value;\n if (decoded) {\n throw this.createExtraByteError(this.totalPos);\n }\n this.appendBuffer(buffer);\n try {\n object = this.doDecodeSync();\n decoded = true;\n }\n catch (e) {\n if (!(e instanceof DataViewIndexOutOfBoundsError)) {\n throw e; // rethrow\n }\n // fallthrough\n }\n this.totalPos += this.pos;\n _c.label = 4;\n case 4: return [3 /*break*/, 2];\n case 5: return [3 /*break*/, 12];\n case 6:\n e_1_1 = _c.sent();\n e_1 = { error: e_1_1 };\n return [3 /*break*/, 12];\n case 7:\n _c.trys.push([7, , 10, 11]);\n if (!(stream_1_1 && !stream_1_1.done && (_a = stream_1.return))) return [3 /*break*/, 9];\n return [4 /*yield*/, _a.call(stream_1)];\n case 8:\n _c.sent();\n _c.label = 9;\n case 9: return [3 /*break*/, 11];\n case 10:\n if (e_1) throw e_1.error;\n return [7 /*endfinally*/];\n case 11: return [7 /*endfinally*/];\n case 12:\n if (decoded) {\n if (this.hasRemaining()) {\n throw this.createExtraByteError(this.totalPos);\n }\n return [2 /*return*/, object];\n }\n _b = this, headByte = _b.headByte, pos = _b.pos, totalPos = _b.totalPos;\n throw new RangeError(\"Insufficient data in parsing \" + Object(_utils_prettyByte_mjs__WEBPACK_IMPORTED_MODULE_0__[\"prettyByte\"])(headByte) + \" at \" + totalPos + \" (\" + pos + \" in the current buffer)\");\n }\n });\n });\n };\n Decoder.prototype.decodeArrayStream = function (stream) {\n return this.decodeMultiAsync(stream, true);\n };\n Decoder.prototype.decodeStream = function (stream) {\n return this.decodeMultiAsync(stream, false);\n };\n Decoder.prototype.decodeMultiAsync = function (stream, isArray) {\n return __asyncGenerator(this, arguments, function decodeMultiAsync_1() {\n var isArrayHeaderRequired, arrayItemsLeft, stream_2, stream_2_1, buffer, e_2, e_3_1;\n var e_3, _a;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n isArrayHeaderRequired = isArray;\n arrayItemsLeft = -1;\n _b.label = 1;\n case 1:\n _b.trys.push([1, 13, 14, 19]);\n stream_2 = __asyncValues(stream);\n _b.label = 2;\n case 2: return [4 /*yield*/, __await(stream_2.next())];\n case 3:\n if (!(stream_2_1 = _b.sent(), !stream_2_1.done)) return [3 /*break*/, 12];\n buffer = stream_2_1.value;\n if (isArray && arrayItemsLeft === 0) {\n throw this.createExtraByteError(this.totalPos);\n }\n this.appendBuffer(buffer);\n if (isArrayHeaderRequired) {\n arrayItemsLeft = this.readArraySize();\n isArrayHeaderRequired = false;\n this.complete();\n }\n _b.label = 4;\n case 4:\n _b.trys.push([4, 9, , 10]);\n _b.label = 5;\n case 5:\n if (false) {}\n return [4 /*yield*/, __await(this.doDecodeSync())];\n case 6: return [4 /*yield*/, _b.sent()];\n case 7:\n _b.sent();\n if (--arrayItemsLeft === 0) {\n return [3 /*break*/, 8];\n }\n return [3 /*break*/, 5];\n case 8: return [3 /*break*/, 10];\n case 9:\n e_2 = _b.sent();\n if (!(e_2 instanceof DataViewIndexOutOfBoundsError)) {\n throw e_2; // rethrow\n }\n return [3 /*break*/, 10];\n case 10:\n this.totalPos += this.pos;\n _b.label = 11;\n case 11: return [3 /*break*/, 2];\n case 12: return [3 /*break*/, 19];\n case 13:\n e_3_1 = _b.sent();\n e_3 = { error: e_3_1 };\n return [3 /*break*/, 19];\n case 14:\n _b.trys.push([14, , 17, 18]);\n if (!(stream_2_1 && !stream_2_1.done && (_a = stream_2.return))) return [3 /*break*/, 16];\n return [4 /*yield*/, __await(_a.call(stream_2))];\n case 15:\n _b.sent();\n _b.label = 16;\n case 16: return [3 /*break*/, 18];\n case 17:\n if (e_3) throw e_3.error;\n return [7 /*endfinally*/];\n case 18: return [7 /*endfinally*/];\n case 19: return [2 /*return*/];\n }\n });\n });\n };\n Decoder.prototype.doDecodeSync = function () {\n DECODE: while (true) {\n var headByte = this.readHeadByte();\n var object = void 0;\n if (headByte >= 0xe0) {\n // negative fixint (111x xxxx) 0xe0 - 0xff\n object = headByte - 0x100;\n }\n else if (headByte < 0xc0) {\n if (headByte < 0x80) {\n // positive fixint (0xxx xxxx) 0x00 - 0x7f\n object = headByte;\n }\n else if (headByte < 0x90) {\n // fixmap (1000 xxxx) 0x80 - 0x8f\n var size = headByte - 0x80;\n if (size !== 0) {\n this.pushMapState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = {};\n }\n }\n else if (headByte < 0xa0) {\n // fixarray (1001 xxxx) 0x90 - 0x9f\n var size = headByte - 0x90;\n if (size !== 0) {\n this.pushArrayState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = [];\n }\n }\n else {\n // fixstr (101x xxxx) 0xa0 - 0xbf\n var byteLength = headByte - 0xa0;\n object = this.decodeUtf8String(byteLength, 0);\n }\n }\n else if (headByte === 0xc0) {\n // nil\n object = null;\n }\n else if (headByte === 0xc2) {\n // false\n object = false;\n }\n else if (headByte === 0xc3) {\n // true\n object = true;\n }\n else if (headByte === 0xca) {\n // float 32\n object = this.readF32();\n }\n else if (headByte === 0xcb) {\n // float 64\n object = this.readF64();\n }\n else if (headByte === 0xcc) {\n // uint 8\n object = this.readU8();\n }\n else if (headByte === 0xcd) {\n // uint 16\n object = this.readU16();\n }\n else if (headByte === 0xce) {\n // uint 32\n object = this.readU32();\n }\n else if (headByte === 0xcf) {\n // uint 64\n object = this.readU64();\n }\n else if (headByte === 0xd0) {\n // int 8\n object = this.readI8();\n }\n else if (headByte === 0xd1) {\n // int 16\n object = this.readI16();\n }\n else if (headByte === 0xd2) {\n // int 32\n object = this.readI32();\n }\n else if (headByte === 0xd3) {\n // int 64\n object = this.readI64();\n }\n else if (headByte === 0xd9) {\n // str 8\n var byteLength = this.lookU8();\n object = this.decodeUtf8String(byteLength, 1);\n }\n else if (headByte === 0xda) {\n // str 16\n var byteLength = this.lookU16();\n object = this.decodeUtf8String(byteLength, 2);\n }\n else if (headByte === 0xdb) {\n // str 32\n var byteLength = this.lookU32();\n object = this.decodeUtf8String(byteLength, 4);\n }\n else if (headByte === 0xdc) {\n // array 16\n var size = this.readU16();\n if (size !== 0) {\n this.pushArrayState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = [];\n }\n }\n else if (headByte === 0xdd) {\n // array 32\n var size = this.readU32();\n if (size !== 0) {\n this.pushArrayState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = [];\n }\n }\n else if (headByte === 0xde) {\n // map 16\n var size = this.readU16();\n if (size !== 0) {\n this.pushMapState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = {};\n }\n }\n else if (headByte === 0xdf) {\n // map 32\n var size = this.readU32();\n if (size !== 0) {\n this.pushMapState(size);\n this.complete();\n continue DECODE;\n }\n else {\n object = {};\n }\n }\n else if (headByte === 0xc4) {\n // bin 8\n var size = this.lookU8();\n object = this.decodeBinary(size, 1);\n }\n else if (headByte === 0xc5) {\n // bin 16\n var size = this.lookU16();\n object = this.decodeBinary(size, 2);\n }\n else if (headByte === 0xc6) {\n // bin 32\n var size = this.lookU32();\n object = this.decodeBinary(size, 4);\n }\n else if (headByte === 0xd4) {\n // fixext 1\n object = this.decodeExtension(1, 0);\n }\n else if (headByte === 0xd5) {\n // fixext 2\n object = this.decodeExtension(2, 0);\n }\n else if (headByte === 0xd6) {\n // fixext 4\n object = this.decodeExtension(4, 0);\n }\n else if (headByte === 0xd7) {\n // fixext 8\n object = this.decodeExtension(8, 0);\n }\n else if (headByte === 0xd8) {\n // fixext 16\n object = this.decodeExtension(16, 0);\n }\n else if (headByte === 0xc7) {\n // ext 8\n var size = this.lookU8();\n object = this.decodeExtension(size, 1);\n }\n else if (headByte === 0xc8) {\n // ext 16\n var size = this.lookU16();\n object = this.decodeExtension(size, 2);\n }\n else if (headByte === 0xc9) {\n // ext 32\n var size = this.lookU32();\n object = this.decodeExtension(size, 4);\n }\n else {\n throw new Error(\"Unrecognized type byte: \" + Object(_utils_prettyByte_mjs__WEBPACK_IMPORTED_MODULE_0__[\"prettyByte\"])(headByte));\n }\n this.complete();\n var stack = this.stack;\n while (stack.length > 0) {\n // arrays and maps\n var state = stack[stack.length - 1];\n if (state.type === 0 /* ARRAY */) {\n state.array[state.position] = object;\n state.position++;\n if (state.position === state.size) {\n stack.pop();\n object = state.array;\n }\n else {\n continue DECODE;\n }\n }\n else if (state.type === 1 /* MAP_KEY */) {\n if (!isValidMapKeyType(object)) {\n throw new Error(\"The type of key must be string or number but \" + typeof object);\n }\n state.key = object;\n state.type = 2 /* MAP_VALUE */;\n continue DECODE;\n }\n else {\n // it must be `state.type === State.MAP_VALUE` here\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n state.map[state.key] = object;\n state.readCount++;\n if (state.readCount === state.size) {\n stack.pop();\n object = state.map;\n }\n else {\n state.key = null;\n state.type = 1 /* MAP_KEY */;\n continue DECODE;\n }\n }\n }\n return object;\n }\n };\n Decoder.prototype.readHeadByte = function () {\n if (this.headByte === HEAD_BYTE_REQUIRED) {\n this.headByte = this.readU8();\n // console.log(\"headByte\", prettyByte(this.headByte));\n }\n return this.headByte;\n };\n Decoder.prototype.complete = function () {\n this.headByte = HEAD_BYTE_REQUIRED;\n };\n Decoder.prototype.readArraySize = function () {\n var headByte = this.readHeadByte();\n switch (headByte) {\n case 0xdc:\n return this.readU16();\n case 0xdd:\n return this.readU32();\n default: {\n if (headByte < 0xa0) {\n return headByte - 0x90;\n }\n else {\n throw new Error(\"Unrecognized array type byte: \" + Object(_utils_prettyByte_mjs__WEBPACK_IMPORTED_MODULE_0__[\"prettyByte\"])(headByte));\n }\n }\n }\n };\n Decoder.prototype.pushMapState = function (size) {\n if (size > this.maxMapLength) {\n throw new Error(\"Max length exceeded: map length (\" + size + \") > maxMapLengthLength (\" + this.maxMapLength + \")\");\n }\n this.stack.push({\n type: 1 /* MAP_KEY */,\n size: size,\n key: null,\n readCount: 0,\n map: {},\n });\n };\n Decoder.prototype.pushArrayState = function (size) {\n if (size > this.maxArrayLength) {\n throw new Error(\"Max length exceeded: array length (\" + size + \") > maxArrayLength (\" + this.maxArrayLength + \")\");\n }\n this.stack.push({\n type: 0 /* ARRAY */,\n size: size,\n array: new Array(size),\n position: 0,\n });\n };\n Decoder.prototype.decodeUtf8String = function (byteLength, headerOffset) {\n var _a;\n if (byteLength > this.maxStrLength) {\n throw new Error(\"Max length exceeded: UTF-8 byte length (\" + byteLength + \") > maxStrLength (\" + this.maxStrLength + \")\");\n }\n if (this.bytes.byteLength < this.pos + headerOffset + byteLength) {\n throw MORE_DATA;\n }\n var offset = this.pos + headerOffset;\n var object;\n if (this.stateIsMapKey() && ((_a = this.keyDecoder) === null || _a === void 0 ? void 0 : _a.canBeCached(byteLength))) {\n object = this.keyDecoder.decode(this.bytes, offset, byteLength);\n }\n else if (byteLength > _utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_3__[\"TEXT_DECODER_THRESHOLD\"]) {\n object = Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_3__[\"utf8DecodeTD\"])(this.bytes, offset, byteLength);\n }\n else {\n object = Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_3__[\"utf8DecodeJs\"])(this.bytes, offset, byteLength);\n }\n this.pos += headerOffset + byteLength;\n return object;\n };\n Decoder.prototype.stateIsMapKey = function () {\n if (this.stack.length > 0) {\n var state = this.stack[this.stack.length - 1];\n return state.type === 1 /* MAP_KEY */;\n }\n return false;\n };\n Decoder.prototype.decodeBinary = function (byteLength, headOffset) {\n if (byteLength > this.maxBinLength) {\n throw new Error(\"Max length exceeded: bin length (\" + byteLength + \") > maxBinLength (\" + this.maxBinLength + \")\");\n }\n if (!this.hasRemaining(byteLength + headOffset)) {\n throw MORE_DATA;\n }\n var offset = this.pos + headOffset;\n var object = this.bytes.subarray(offset, offset + byteLength);\n this.pos += headOffset + byteLength;\n return object;\n };\n Decoder.prototype.decodeExtension = function (size, headOffset) {\n if (size > this.maxExtLength) {\n throw new Error(\"Max length exceeded: ext length (\" + size + \") > maxExtLength (\" + this.maxExtLength + \")\");\n }\n var extType = this.view.getInt8(this.pos + headOffset);\n var data = this.decodeBinary(size, headOffset + 1 /* extType */);\n return this.extensionCodec.decode(data, extType, this.context);\n };\n Decoder.prototype.lookU8 = function () {\n return this.view.getUint8(this.pos);\n };\n Decoder.prototype.lookU16 = function () {\n return this.view.getUint16(this.pos);\n };\n Decoder.prototype.lookU32 = function () {\n return this.view.getUint32(this.pos);\n };\n Decoder.prototype.readU8 = function () {\n var value = this.view.getUint8(this.pos);\n this.pos++;\n return value;\n };\n Decoder.prototype.readI8 = function () {\n var value = this.view.getInt8(this.pos);\n this.pos++;\n return value;\n };\n Decoder.prototype.readU16 = function () {\n var value = this.view.getUint16(this.pos);\n this.pos += 2;\n return value;\n };\n Decoder.prototype.readI16 = function () {\n var value = this.view.getInt16(this.pos);\n this.pos += 2;\n return value;\n };\n Decoder.prototype.readU32 = function () {\n var value = this.view.getUint32(this.pos);\n this.pos += 4;\n return value;\n };\n Decoder.prototype.readI32 = function () {\n var value = this.view.getInt32(this.pos);\n this.pos += 4;\n return value;\n };\n Decoder.prototype.readU64 = function () {\n var value = Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getUint64\"])(this.view, this.pos);\n this.pos += 8;\n return value;\n };\n Decoder.prototype.readI64 = function () {\n var value = Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__[\"getInt64\"])(this.view, this.pos);\n this.pos += 8;\n return value;\n };\n Decoder.prototype.readF32 = function () {\n var value = this.view.getFloat32(this.pos);\n this.pos += 4;\n return value;\n };\n Decoder.prototype.readF64 = function () {\n var value = this.view.getFloat64(this.pos);\n this.pos += 8;\n return value;\n };\n return Decoder;\n}());\n\n//# sourceMappingURL=Decoder.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/Decoder.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/Encoder.mjs": -/*!**************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/Encoder.mjs ***! - \**************************************************************************************************/ +/*!*********************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/Encoder.mjs ***! + \*********************************************************************************************************/ /*! exports provided: DEFAULT_MAX_DEPTH, DEFAULT_INITIAL_BUFFER_SIZE, Encoder */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_MAX_DEPTH\", function() { return DEFAULT_MAX_DEPTH; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_INITIAL_BUFFER_SIZE\", function() { return DEFAULT_INITIAL_BUFFER_SIZE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Encoder\", function() { return Encoder; });\n/* harmony import */ var _utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils/utf8.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/utf8.mjs\");\n/* harmony import */ var _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ExtensionCodec.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtensionCodec.mjs\");\n/* harmony import */ var _utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/int.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/int.mjs\");\n/* harmony import */ var _utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/typedArrays.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/typedArrays.mjs\");\n\n\n\n\nvar DEFAULT_MAX_DEPTH = 100;\nvar DEFAULT_INITIAL_BUFFER_SIZE = 2048;\nvar Encoder = /** @class */ (function () {\n function Encoder(extensionCodec, context, maxDepth, initialBufferSize, sortKeys, forceFloat32, ignoreUndefined, forceIntegerToFloat) {\n if (extensionCodec === void 0) { extensionCodec = _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_1__[\"ExtensionCodec\"].defaultCodec; }\n if (context === void 0) { context = undefined; }\n if (maxDepth === void 0) { maxDepth = DEFAULT_MAX_DEPTH; }\n if (initialBufferSize === void 0) { initialBufferSize = DEFAULT_INITIAL_BUFFER_SIZE; }\n if (sortKeys === void 0) { sortKeys = false; }\n if (forceFloat32 === void 0) { forceFloat32 = false; }\n if (ignoreUndefined === void 0) { ignoreUndefined = false; }\n if (forceIntegerToFloat === void 0) { forceIntegerToFloat = false; }\n this.extensionCodec = extensionCodec;\n this.context = context;\n this.maxDepth = maxDepth;\n this.initialBufferSize = initialBufferSize;\n this.sortKeys = sortKeys;\n this.forceFloat32 = forceFloat32;\n this.ignoreUndefined = ignoreUndefined;\n this.forceIntegerToFloat = forceIntegerToFloat;\n this.pos = 0;\n this.view = new DataView(new ArrayBuffer(this.initialBufferSize));\n this.bytes = new Uint8Array(this.view.buffer);\n }\n Encoder.prototype.getUint8Array = function () {\n return this.bytes.subarray(0, this.pos);\n };\n Encoder.prototype.reinitializeState = function () {\n this.pos = 0;\n };\n Encoder.prototype.encode = function (object) {\n this.reinitializeState();\n this.doEncode(object, 1);\n return this.getUint8Array();\n };\n Encoder.prototype.doEncode = function (object, depth) {\n if (depth > this.maxDepth) {\n throw new Error(\"Too deep objects in depth \" + depth);\n }\n if (object == null) {\n this.encodeNil();\n }\n else if (typeof object === \"boolean\") {\n this.encodeBoolean(object);\n }\n else if (typeof object === \"number\") {\n this.encodeNumber(object);\n }\n else if (typeof object === \"string\") {\n this.encodeString(object);\n }\n else {\n this.encodeObject(object, depth);\n }\n };\n Encoder.prototype.ensureBufferSizeToWrite = function (sizeToWrite) {\n var requiredSize = this.pos + sizeToWrite;\n if (this.view.byteLength < requiredSize) {\n this.resizeBuffer(requiredSize * 2);\n }\n };\n Encoder.prototype.resizeBuffer = function (newSize) {\n var newBuffer = new ArrayBuffer(newSize);\n var newBytes = new Uint8Array(newBuffer);\n var newView = new DataView(newBuffer);\n newBytes.set(this.bytes);\n this.view = newView;\n this.bytes = newBytes;\n };\n Encoder.prototype.encodeNil = function () {\n this.writeU8(0xc0);\n };\n Encoder.prototype.encodeBoolean = function (object) {\n if (object === false) {\n this.writeU8(0xc2);\n }\n else {\n this.writeU8(0xc3);\n }\n };\n Encoder.prototype.encodeNumber = function (object) {\n if (Number.isSafeInteger(object) && !this.forceIntegerToFloat) {\n if (object >= 0) {\n if (object < 0x80) {\n // positive fixint\n this.writeU8(object);\n }\n else if (object < 0x100) {\n // uint 8\n this.writeU8(0xcc);\n this.writeU8(object);\n }\n else if (object < 0x10000) {\n // uint 16\n this.writeU8(0xcd);\n this.writeU16(object);\n }\n else if (object < 0x100000000) {\n // uint 32\n this.writeU8(0xce);\n this.writeU32(object);\n }\n else {\n // uint 64\n this.writeU8(0xcf);\n this.writeU64(object);\n }\n }\n else {\n if (object >= -0x20) {\n // nagative fixint\n this.writeU8(0xe0 | (object + 0x20));\n }\n else if (object >= -0x80) {\n // int 8\n this.writeU8(0xd0);\n this.writeI8(object);\n }\n else if (object >= -0x8000) {\n // int 16\n this.writeU8(0xd1);\n this.writeI16(object);\n }\n else if (object >= -0x80000000) {\n // int 32\n this.writeU8(0xd2);\n this.writeI32(object);\n }\n else {\n // int 64\n this.writeU8(0xd3);\n this.writeI64(object);\n }\n }\n }\n else {\n // non-integer numbers\n if (this.forceFloat32) {\n // float 32\n this.writeU8(0xca);\n this.writeF32(object);\n }\n else {\n // float 64\n this.writeU8(0xcb);\n this.writeF64(object);\n }\n }\n };\n Encoder.prototype.writeStringHeader = function (byteLength) {\n if (byteLength < 32) {\n // fixstr\n this.writeU8(0xa0 + byteLength);\n }\n else if (byteLength < 0x100) {\n // str 8\n this.writeU8(0xd9);\n this.writeU8(byteLength);\n }\n else if (byteLength < 0x10000) {\n // str 16\n this.writeU8(0xda);\n this.writeU16(byteLength);\n }\n else if (byteLength < 0x100000000) {\n // str 32\n this.writeU8(0xdb);\n this.writeU32(byteLength);\n }\n else {\n throw new Error(\"Too long string: \" + byteLength + \" bytes in UTF-8\");\n }\n };\n Encoder.prototype.encodeString = function (object) {\n var maxHeaderSize = 1 + 4;\n var strLength = object.length;\n if (strLength > _utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"TEXT_ENCODER_THRESHOLD\"]) {\n var byteLength = Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"utf8Count\"])(object);\n this.ensureBufferSizeToWrite(maxHeaderSize + byteLength);\n this.writeStringHeader(byteLength);\n Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"utf8EncodeTE\"])(object, this.bytes, this.pos);\n this.pos += byteLength;\n }\n else {\n var byteLength = Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"utf8Count\"])(object);\n this.ensureBufferSizeToWrite(maxHeaderSize + byteLength);\n this.writeStringHeader(byteLength);\n Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"utf8EncodeJs\"])(object, this.bytes, this.pos);\n this.pos += byteLength;\n }\n };\n Encoder.prototype.encodeObject = function (object, depth) {\n // try to encode objects with custom codec first of non-primitives\n var ext = this.extensionCodec.tryToEncode(object, this.context);\n if (ext != null) {\n this.encodeExtension(ext);\n }\n else if (Array.isArray(object)) {\n this.encodeArray(object, depth);\n }\n else if (ArrayBuffer.isView(object)) {\n this.encodeBinary(object);\n }\n else if (typeof object === \"object\") {\n this.encodeMap(object, depth);\n }\n else {\n // symbol, function and other special object come here unless extensionCodec handles them.\n throw new Error(\"Unrecognized object: \" + Object.prototype.toString.apply(object));\n }\n };\n Encoder.prototype.encodeBinary = function (object) {\n var size = object.byteLength;\n if (size < 0x100) {\n // bin 8\n this.writeU8(0xc4);\n this.writeU8(size);\n }\n else if (size < 0x10000) {\n // bin 16\n this.writeU8(0xc5);\n this.writeU16(size);\n }\n else if (size < 0x100000000) {\n // bin 32\n this.writeU8(0xc6);\n this.writeU32(size);\n }\n else {\n throw new Error(\"Too large binary: \" + size);\n }\n var bytes = Object(_utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_3__[\"ensureUint8Array\"])(object);\n this.writeU8a(bytes);\n };\n Encoder.prototype.encodeArray = function (object, depth) {\n var size = object.length;\n if (size < 16) {\n // fixarray\n this.writeU8(0x90 + size);\n }\n else if (size < 0x10000) {\n // array 16\n this.writeU8(0xdc);\n this.writeU16(size);\n }\n else if (size < 0x100000000) {\n // array 32\n this.writeU8(0xdd);\n this.writeU32(size);\n }\n else {\n throw new Error(\"Too large array: \" + size);\n }\n for (var _i = 0, object_1 = object; _i < object_1.length; _i++) {\n var item = object_1[_i];\n this.doEncode(item, depth + 1);\n }\n };\n Encoder.prototype.countWithoutUndefined = function (object, keys) {\n var count = 0;\n for (var _i = 0, keys_1 = keys; _i < keys_1.length; _i++) {\n var key = keys_1[_i];\n if (object[key] !== undefined) {\n count++;\n }\n }\n return count;\n };\n Encoder.prototype.encodeMap = function (object, depth) {\n var keys = Object.keys(object);\n if (this.sortKeys) {\n keys.sort();\n }\n var size = this.ignoreUndefined ? this.countWithoutUndefined(object, keys) : keys.length;\n if (size < 16) {\n // fixmap\n this.writeU8(0x80 + size);\n }\n else if (size < 0x10000) {\n // map 16\n this.writeU8(0xde);\n this.writeU16(size);\n }\n else if (size < 0x100000000) {\n // map 32\n this.writeU8(0xdf);\n this.writeU32(size);\n }\n else {\n throw new Error(\"Too large map object: \" + size);\n }\n for (var _i = 0, keys_2 = keys; _i < keys_2.length; _i++) {\n var key = keys_2[_i];\n var value = object[key];\n if (!(this.ignoreUndefined && value === undefined)) {\n this.encodeString(key);\n this.doEncode(value, depth + 1);\n }\n }\n };\n Encoder.prototype.encodeExtension = function (ext) {\n var size = ext.data.length;\n if (size === 1) {\n // fixext 1\n this.writeU8(0xd4);\n }\n else if (size === 2) {\n // fixext 2\n this.writeU8(0xd5);\n }\n else if (size === 4) {\n // fixext 4\n this.writeU8(0xd6);\n }\n else if (size === 8) {\n // fixext 8\n this.writeU8(0xd7);\n }\n else if (size === 16) {\n // fixext 16\n this.writeU8(0xd8);\n }\n else if (size < 0x100) {\n // ext 8\n this.writeU8(0xc7);\n this.writeU8(size);\n }\n else if (size < 0x10000) {\n // ext 16\n this.writeU8(0xc8);\n this.writeU16(size);\n }\n else if (size < 0x100000000) {\n // ext 32\n this.writeU8(0xc9);\n this.writeU32(size);\n }\n else {\n throw new Error(\"Too large extension object: \" + size);\n }\n this.writeI8(ext.type);\n this.writeU8a(ext.data);\n };\n Encoder.prototype.writeU8 = function (value) {\n this.ensureBufferSizeToWrite(1);\n this.view.setUint8(this.pos, value);\n this.pos++;\n };\n Encoder.prototype.writeU8a = function (values) {\n var size = values.length;\n this.ensureBufferSizeToWrite(size);\n this.bytes.set(values, this.pos);\n this.pos += size;\n };\n Encoder.prototype.writeI8 = function (value) {\n this.ensureBufferSizeToWrite(1);\n this.view.setInt8(this.pos, value);\n this.pos++;\n };\n Encoder.prototype.writeU16 = function (value) {\n this.ensureBufferSizeToWrite(2);\n this.view.setUint16(this.pos, value);\n this.pos += 2;\n };\n Encoder.prototype.writeI16 = function (value) {\n this.ensureBufferSizeToWrite(2);\n this.view.setInt16(this.pos, value);\n this.pos += 2;\n };\n Encoder.prototype.writeU32 = function (value) {\n this.ensureBufferSizeToWrite(4);\n this.view.setUint32(this.pos, value);\n this.pos += 4;\n };\n Encoder.prototype.writeI32 = function (value) {\n this.ensureBufferSizeToWrite(4);\n this.view.setInt32(this.pos, value);\n this.pos += 4;\n };\n Encoder.prototype.writeF32 = function (value) {\n this.ensureBufferSizeToWrite(4);\n this.view.setFloat32(this.pos, value);\n this.pos += 4;\n };\n Encoder.prototype.writeF64 = function (value) {\n this.ensureBufferSizeToWrite(8);\n this.view.setFloat64(this.pos, value);\n this.pos += 8;\n };\n Encoder.prototype.writeU64 = function (value) {\n this.ensureBufferSizeToWrite(8);\n Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__[\"setUint64\"])(this.view, this.pos, value);\n this.pos += 8;\n };\n Encoder.prototype.writeI64 = function (value) {\n this.ensureBufferSizeToWrite(8);\n Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__[\"setInt64\"])(this.view, this.pos, value);\n this.pos += 8;\n };\n return Encoder;\n}());\n\n//# sourceMappingURL=Encoder.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/Encoder.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_MAX_DEPTH\", function() { return DEFAULT_MAX_DEPTH; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"DEFAULT_INITIAL_BUFFER_SIZE\", function() { return DEFAULT_INITIAL_BUFFER_SIZE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"Encoder\", function() { return Encoder; });\n/* harmony import */ var _utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils/utf8.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/utf8.mjs\");\n/* harmony import */ var _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./ExtensionCodec.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtensionCodec.mjs\");\n/* harmony import */ var _utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/int.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/int.mjs\");\n/* harmony import */ var _utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./utils/typedArrays.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/typedArrays.mjs\");\n\n\n\n\nvar DEFAULT_MAX_DEPTH = 100;\nvar DEFAULT_INITIAL_BUFFER_SIZE = 2048;\nvar Encoder = /** @class */ (function () {\n function Encoder(extensionCodec, context, maxDepth, initialBufferSize, sortKeys, forceFloat32, ignoreUndefined, forceIntegerToFloat) {\n if (extensionCodec === void 0) { extensionCodec = _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_1__[\"ExtensionCodec\"].defaultCodec; }\n if (context === void 0) { context = undefined; }\n if (maxDepth === void 0) { maxDepth = DEFAULT_MAX_DEPTH; }\n if (initialBufferSize === void 0) { initialBufferSize = DEFAULT_INITIAL_BUFFER_SIZE; }\n if (sortKeys === void 0) { sortKeys = false; }\n if (forceFloat32 === void 0) { forceFloat32 = false; }\n if (ignoreUndefined === void 0) { ignoreUndefined = false; }\n if (forceIntegerToFloat === void 0) { forceIntegerToFloat = false; }\n this.extensionCodec = extensionCodec;\n this.context = context;\n this.maxDepth = maxDepth;\n this.initialBufferSize = initialBufferSize;\n this.sortKeys = sortKeys;\n this.forceFloat32 = forceFloat32;\n this.ignoreUndefined = ignoreUndefined;\n this.forceIntegerToFloat = forceIntegerToFloat;\n this.pos = 0;\n this.view = new DataView(new ArrayBuffer(this.initialBufferSize));\n this.bytes = new Uint8Array(this.view.buffer);\n }\n Encoder.prototype.getUint8Array = function () {\n return this.bytes.subarray(0, this.pos);\n };\n Encoder.prototype.reinitializeState = function () {\n this.pos = 0;\n };\n Encoder.prototype.encode = function (object) {\n this.reinitializeState();\n this.doEncode(object, 1);\n return this.getUint8Array();\n };\n Encoder.prototype.doEncode = function (object, depth) {\n if (depth > this.maxDepth) {\n throw new Error(\"Too deep objects in depth \" + depth);\n }\n if (object == null) {\n this.encodeNil();\n }\n else if (typeof object === \"boolean\") {\n this.encodeBoolean(object);\n }\n else if (typeof object === \"number\") {\n this.encodeNumber(object);\n }\n else if (typeof object === \"string\") {\n this.encodeString(object);\n }\n else {\n this.encodeObject(object, depth);\n }\n };\n Encoder.prototype.ensureBufferSizeToWrite = function (sizeToWrite) {\n var requiredSize = this.pos + sizeToWrite;\n if (this.view.byteLength < requiredSize) {\n this.resizeBuffer(requiredSize * 2);\n }\n };\n Encoder.prototype.resizeBuffer = function (newSize) {\n var newBuffer = new ArrayBuffer(newSize);\n var newBytes = new Uint8Array(newBuffer);\n var newView = new DataView(newBuffer);\n newBytes.set(this.bytes);\n this.view = newView;\n this.bytes = newBytes;\n };\n Encoder.prototype.encodeNil = function () {\n this.writeU8(0xc0);\n };\n Encoder.prototype.encodeBoolean = function (object) {\n if (object === false) {\n this.writeU8(0xc2);\n }\n else {\n this.writeU8(0xc3);\n }\n };\n Encoder.prototype.encodeNumber = function (object) {\n if (Number.isSafeInteger(object) && !this.forceIntegerToFloat) {\n if (object >= 0) {\n if (object < 0x80) {\n // positive fixint\n this.writeU8(object);\n }\n else if (object < 0x100) {\n // uint 8\n this.writeU8(0xcc);\n this.writeU8(object);\n }\n else if (object < 0x10000) {\n // uint 16\n this.writeU8(0xcd);\n this.writeU16(object);\n }\n else if (object < 0x100000000) {\n // uint 32\n this.writeU8(0xce);\n this.writeU32(object);\n }\n else {\n // uint 64\n this.writeU8(0xcf);\n this.writeU64(object);\n }\n }\n else {\n if (object >= -0x20) {\n // nagative fixint\n this.writeU8(0xe0 | (object + 0x20));\n }\n else if (object >= -0x80) {\n // int 8\n this.writeU8(0xd0);\n this.writeI8(object);\n }\n else if (object >= -0x8000) {\n // int 16\n this.writeU8(0xd1);\n this.writeI16(object);\n }\n else if (object >= -0x80000000) {\n // int 32\n this.writeU8(0xd2);\n this.writeI32(object);\n }\n else {\n // int 64\n this.writeU8(0xd3);\n this.writeI64(object);\n }\n }\n }\n else {\n // non-integer numbers\n if (this.forceFloat32) {\n // float 32\n this.writeU8(0xca);\n this.writeF32(object);\n }\n else {\n // float 64\n this.writeU8(0xcb);\n this.writeF64(object);\n }\n }\n };\n Encoder.prototype.writeStringHeader = function (byteLength) {\n if (byteLength < 32) {\n // fixstr\n this.writeU8(0xa0 + byteLength);\n }\n else if (byteLength < 0x100) {\n // str 8\n this.writeU8(0xd9);\n this.writeU8(byteLength);\n }\n else if (byteLength < 0x10000) {\n // str 16\n this.writeU8(0xda);\n this.writeU16(byteLength);\n }\n else if (byteLength < 0x100000000) {\n // str 32\n this.writeU8(0xdb);\n this.writeU32(byteLength);\n }\n else {\n throw new Error(\"Too long string: \" + byteLength + \" bytes in UTF-8\");\n }\n };\n Encoder.prototype.encodeString = function (object) {\n var maxHeaderSize = 1 + 4;\n var strLength = object.length;\n if (strLength > _utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"TEXT_ENCODER_THRESHOLD\"]) {\n var byteLength = Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"utf8Count\"])(object);\n this.ensureBufferSizeToWrite(maxHeaderSize + byteLength);\n this.writeStringHeader(byteLength);\n Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"utf8EncodeTE\"])(object, this.bytes, this.pos);\n this.pos += byteLength;\n }\n else {\n var byteLength = Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"utf8Count\"])(object);\n this.ensureBufferSizeToWrite(maxHeaderSize + byteLength);\n this.writeStringHeader(byteLength);\n Object(_utils_utf8_mjs__WEBPACK_IMPORTED_MODULE_0__[\"utf8EncodeJs\"])(object, this.bytes, this.pos);\n this.pos += byteLength;\n }\n };\n Encoder.prototype.encodeObject = function (object, depth) {\n // try to encode objects with custom codec first of non-primitives\n var ext = this.extensionCodec.tryToEncode(object, this.context);\n if (ext != null) {\n this.encodeExtension(ext);\n }\n else if (Array.isArray(object)) {\n this.encodeArray(object, depth);\n }\n else if (ArrayBuffer.isView(object)) {\n this.encodeBinary(object);\n }\n else if (typeof object === \"object\") {\n this.encodeMap(object, depth);\n }\n else {\n // symbol, function and other special object come here unless extensionCodec handles them.\n throw new Error(\"Unrecognized object: \" + Object.prototype.toString.apply(object));\n }\n };\n Encoder.prototype.encodeBinary = function (object) {\n var size = object.byteLength;\n if (size < 0x100) {\n // bin 8\n this.writeU8(0xc4);\n this.writeU8(size);\n }\n else if (size < 0x10000) {\n // bin 16\n this.writeU8(0xc5);\n this.writeU16(size);\n }\n else if (size < 0x100000000) {\n // bin 32\n this.writeU8(0xc6);\n this.writeU32(size);\n }\n else {\n throw new Error(\"Too large binary: \" + size);\n }\n var bytes = Object(_utils_typedArrays_mjs__WEBPACK_IMPORTED_MODULE_3__[\"ensureUint8Array\"])(object);\n this.writeU8a(bytes);\n };\n Encoder.prototype.encodeArray = function (object, depth) {\n var size = object.length;\n if (size < 16) {\n // fixarray\n this.writeU8(0x90 + size);\n }\n else if (size < 0x10000) {\n // array 16\n this.writeU8(0xdc);\n this.writeU16(size);\n }\n else if (size < 0x100000000) {\n // array 32\n this.writeU8(0xdd);\n this.writeU32(size);\n }\n else {\n throw new Error(\"Too large array: \" + size);\n }\n for (var _i = 0, object_1 = object; _i < object_1.length; _i++) {\n var item = object_1[_i];\n this.doEncode(item, depth + 1);\n }\n };\n Encoder.prototype.countWithoutUndefined = function (object, keys) {\n var count = 0;\n for (var _i = 0, keys_1 = keys; _i < keys_1.length; _i++) {\n var key = keys_1[_i];\n if (object[key] !== undefined) {\n count++;\n }\n }\n return count;\n };\n Encoder.prototype.encodeMap = function (object, depth) {\n var keys = Object.keys(object);\n if (this.sortKeys) {\n keys.sort();\n }\n var size = this.ignoreUndefined ? this.countWithoutUndefined(object, keys) : keys.length;\n if (size < 16) {\n // fixmap\n this.writeU8(0x80 + size);\n }\n else if (size < 0x10000) {\n // map 16\n this.writeU8(0xde);\n this.writeU16(size);\n }\n else if (size < 0x100000000) {\n // map 32\n this.writeU8(0xdf);\n this.writeU32(size);\n }\n else {\n throw new Error(\"Too large map object: \" + size);\n }\n for (var _i = 0, keys_2 = keys; _i < keys_2.length; _i++) {\n var key = keys_2[_i];\n var value = object[key];\n if (!(this.ignoreUndefined && value === undefined)) {\n this.encodeString(key);\n this.doEncode(value, depth + 1);\n }\n }\n };\n Encoder.prototype.encodeExtension = function (ext) {\n var size = ext.data.length;\n if (size === 1) {\n // fixext 1\n this.writeU8(0xd4);\n }\n else if (size === 2) {\n // fixext 2\n this.writeU8(0xd5);\n }\n else if (size === 4) {\n // fixext 4\n this.writeU8(0xd6);\n }\n else if (size === 8) {\n // fixext 8\n this.writeU8(0xd7);\n }\n else if (size === 16) {\n // fixext 16\n this.writeU8(0xd8);\n }\n else if (size < 0x100) {\n // ext 8\n this.writeU8(0xc7);\n this.writeU8(size);\n }\n else if (size < 0x10000) {\n // ext 16\n this.writeU8(0xc8);\n this.writeU16(size);\n }\n else if (size < 0x100000000) {\n // ext 32\n this.writeU8(0xc9);\n this.writeU32(size);\n }\n else {\n throw new Error(\"Too large extension object: \" + size);\n }\n this.writeI8(ext.type);\n this.writeU8a(ext.data);\n };\n Encoder.prototype.writeU8 = function (value) {\n this.ensureBufferSizeToWrite(1);\n this.view.setUint8(this.pos, value);\n this.pos++;\n };\n Encoder.prototype.writeU8a = function (values) {\n var size = values.length;\n this.ensureBufferSizeToWrite(size);\n this.bytes.set(values, this.pos);\n this.pos += size;\n };\n Encoder.prototype.writeI8 = function (value) {\n this.ensureBufferSizeToWrite(1);\n this.view.setInt8(this.pos, value);\n this.pos++;\n };\n Encoder.prototype.writeU16 = function (value) {\n this.ensureBufferSizeToWrite(2);\n this.view.setUint16(this.pos, value);\n this.pos += 2;\n };\n Encoder.prototype.writeI16 = function (value) {\n this.ensureBufferSizeToWrite(2);\n this.view.setInt16(this.pos, value);\n this.pos += 2;\n };\n Encoder.prototype.writeU32 = function (value) {\n this.ensureBufferSizeToWrite(4);\n this.view.setUint32(this.pos, value);\n this.pos += 4;\n };\n Encoder.prototype.writeI32 = function (value) {\n this.ensureBufferSizeToWrite(4);\n this.view.setInt32(this.pos, value);\n this.pos += 4;\n };\n Encoder.prototype.writeF32 = function (value) {\n this.ensureBufferSizeToWrite(4);\n this.view.setFloat32(this.pos, value);\n this.pos += 4;\n };\n Encoder.prototype.writeF64 = function (value) {\n this.ensureBufferSizeToWrite(8);\n this.view.setFloat64(this.pos, value);\n this.pos += 8;\n };\n Encoder.prototype.writeU64 = function (value) {\n this.ensureBufferSizeToWrite(8);\n Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__[\"setUint64\"])(this.view, this.pos, value);\n this.pos += 8;\n };\n Encoder.prototype.writeI64 = function (value) {\n this.ensureBufferSizeToWrite(8);\n Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_2__[\"setInt64\"])(this.view, this.pos, value);\n this.pos += 8;\n };\n return Encoder;\n}());\n\n//# sourceMappingURL=Encoder.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/Encoder.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtData.mjs": -/*!**************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/ExtData.mjs ***! - \**************************************************************************************************/ +/*!*********************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/ExtData.mjs ***! + \*********************************************************************************************************/ /*! exports provided: ExtData */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExtData\", function() { return ExtData; });\n/**\n * ExtData is used to handle Extension Types that are not registered to ExtensionCodec.\n */\nvar ExtData = /** @class */ (function () {\n function ExtData(type, data) {\n this.type = type;\n this.data = data;\n }\n return ExtData;\n}());\n\n//# sourceMappingURL=ExtData.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/ExtData.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExtData\", function() { return ExtData; });\n/**\n * ExtData is used to handle Extension Types that are not registered to ExtensionCodec.\n */\nvar ExtData = /** @class */ (function () {\n function ExtData(type, data) {\n this.type = type;\n this.data = data;\n }\n return ExtData;\n}());\n\n//# sourceMappingURL=ExtData.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/ExtData.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtensionCodec.mjs": -/*!*********************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/ExtensionCodec.mjs ***! - \*********************************************************************************************************/ +/*!****************************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/ExtensionCodec.mjs ***! + \****************************************************************************************************************/ /*! exports provided: ExtensionCodec */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExtensionCodec\", function() { return ExtensionCodec; });\n/* harmony import */ var _ExtData_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ExtData.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtData.mjs\");\n/* harmony import */ var _timestamp_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./timestamp.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/timestamp.mjs\");\n// ExtensionCodec to handle MessagePack extensions\n\n\nvar ExtensionCodec = /** @class */ (function () {\n function ExtensionCodec() {\n // built-in extensions\n this.builtInEncoders = [];\n this.builtInDecoders = [];\n // custom extensions\n this.encoders = [];\n this.decoders = [];\n this.register(_timestamp_mjs__WEBPACK_IMPORTED_MODULE_1__[\"timestampExtension\"]);\n }\n ExtensionCodec.prototype.register = function (_a) {\n var type = _a.type, encode = _a.encode, decode = _a.decode;\n if (type >= 0) {\n // custom extensions\n this.encoders[type] = encode;\n this.decoders[type] = decode;\n }\n else {\n // built-in extensions\n var index = 1 + type;\n this.builtInEncoders[index] = encode;\n this.builtInDecoders[index] = decode;\n }\n };\n ExtensionCodec.prototype.tryToEncode = function (object, context) {\n // built-in extensions\n for (var i = 0; i < this.builtInEncoders.length; i++) {\n var encoder = this.builtInEncoders[i];\n if (encoder != null) {\n var data = encoder(object, context);\n if (data != null) {\n var type = -1 - i;\n return new _ExtData_mjs__WEBPACK_IMPORTED_MODULE_0__[\"ExtData\"](type, data);\n }\n }\n }\n // custom extensions\n for (var i = 0; i < this.encoders.length; i++) {\n var encoder = this.encoders[i];\n if (encoder != null) {\n var data = encoder(object, context);\n if (data != null) {\n var type = i;\n return new _ExtData_mjs__WEBPACK_IMPORTED_MODULE_0__[\"ExtData\"](type, data);\n }\n }\n }\n if (object instanceof _ExtData_mjs__WEBPACK_IMPORTED_MODULE_0__[\"ExtData\"]) {\n // to keep ExtData as is\n return object;\n }\n return null;\n };\n ExtensionCodec.prototype.decode = function (data, type, context) {\n var decoder = type < 0 ? this.builtInDecoders[-1 - type] : this.decoders[type];\n if (decoder) {\n return decoder(data, type, context);\n }\n else {\n // decode() does not fail, returns ExtData instead.\n return new _ExtData_mjs__WEBPACK_IMPORTED_MODULE_0__[\"ExtData\"](type, data);\n }\n };\n ExtensionCodec.defaultCodec = new ExtensionCodec();\n return ExtensionCodec;\n}());\n\n//# sourceMappingURL=ExtensionCodec.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/ExtensionCodec.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ExtensionCodec\", function() { return ExtensionCodec; });\n/* harmony import */ var _ExtData_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./ExtData.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtData.mjs\");\n/* harmony import */ var _timestamp_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./timestamp.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/timestamp.mjs\");\n// ExtensionCodec to handle MessagePack extensions\n\n\nvar ExtensionCodec = /** @class */ (function () {\n function ExtensionCodec() {\n // built-in extensions\n this.builtInEncoders = [];\n this.builtInDecoders = [];\n // custom extensions\n this.encoders = [];\n this.decoders = [];\n this.register(_timestamp_mjs__WEBPACK_IMPORTED_MODULE_1__[\"timestampExtension\"]);\n }\n ExtensionCodec.prototype.register = function (_a) {\n var type = _a.type, encode = _a.encode, decode = _a.decode;\n if (type >= 0) {\n // custom extensions\n this.encoders[type] = encode;\n this.decoders[type] = decode;\n }\n else {\n // built-in extensions\n var index = 1 + type;\n this.builtInEncoders[index] = encode;\n this.builtInDecoders[index] = decode;\n }\n };\n ExtensionCodec.prototype.tryToEncode = function (object, context) {\n // built-in extensions\n for (var i = 0; i < this.builtInEncoders.length; i++) {\n var encoder = this.builtInEncoders[i];\n if (encoder != null) {\n var data = encoder(object, context);\n if (data != null) {\n var type = -1 - i;\n return new _ExtData_mjs__WEBPACK_IMPORTED_MODULE_0__[\"ExtData\"](type, data);\n }\n }\n }\n // custom extensions\n for (var i = 0; i < this.encoders.length; i++) {\n var encoder = this.encoders[i];\n if (encoder != null) {\n var data = encoder(object, context);\n if (data != null) {\n var type = i;\n return new _ExtData_mjs__WEBPACK_IMPORTED_MODULE_0__[\"ExtData\"](type, data);\n }\n }\n }\n if (object instanceof _ExtData_mjs__WEBPACK_IMPORTED_MODULE_0__[\"ExtData\"]) {\n // to keep ExtData as is\n return object;\n }\n return null;\n };\n ExtensionCodec.prototype.decode = function (data, type, context) {\n var decoder = type < 0 ? this.builtInDecoders[-1 - type] : this.decoders[type];\n if (decoder) {\n return decoder(data, type, context);\n }\n else {\n // decode() does not fail, returns ExtData instead.\n return new _ExtData_mjs__WEBPACK_IMPORTED_MODULE_0__[\"ExtData\"](type, data);\n }\n };\n ExtensionCodec.defaultCodec = new ExtensionCodec();\n return ExtensionCodec;\n}());\n\n//# sourceMappingURL=ExtensionCodec.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/ExtensionCodec.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/decode.mjs": -/*!*************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/decode.mjs ***! - \*************************************************************************************************/ +/*!********************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/decode.mjs ***! + \********************************************************************************************************/ /*! exports provided: defaultDecodeOptions, decode */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultDecodeOptions\", function() { return defaultDecodeOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decode\", function() { return decode; });\n/* harmony import */ var _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Decoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/Decoder.mjs\");\n\nvar defaultDecodeOptions = {};\n/**\n * It decodes a MessagePack-encoded buffer.\n *\n * This is a synchronous decoding function. See other variants for asynchronous decoding: `decodeAsync()`, `decodeStream()`, `decodeArrayStream()`.\n */\nfunction decode(buffer, options) {\n if (options === void 0) { options = defaultDecodeOptions; }\n var decoder = new _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Decoder\"](options.extensionCodec, options.context, options.maxStrLength, options.maxBinLength, options.maxArrayLength, options.maxMapLength, options.maxExtLength);\n return decoder.decode(buffer);\n}\n//# sourceMappingURL=decode.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/decode.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"defaultDecodeOptions\", function() { return defaultDecodeOptions; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decode\", function() { return decode; });\n/* harmony import */ var _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Decoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/Decoder.mjs\");\n\nvar defaultDecodeOptions = {};\n/**\n * It decodes a MessagePack-encoded buffer.\n *\n * This is a synchronous decoding function. See other variants for asynchronous decoding: `decodeAsync()`, `decodeStream()`, `decodeArrayStream()`.\n */\nfunction decode(buffer, options) {\n if (options === void 0) { options = defaultDecodeOptions; }\n var decoder = new _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Decoder\"](options.extensionCodec, options.context, options.maxStrLength, options.maxBinLength, options.maxArrayLength, options.maxMapLength, options.maxExtLength);\n return decoder.decode(buffer);\n}\n//# sourceMappingURL=decode.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/decode.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/decodeAsync.mjs": -/*!******************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/decodeAsync.mjs ***! - \******************************************************************************************************/ +/*!*************************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/decodeAsync.mjs ***! + \*************************************************************************************************************/ /*! exports provided: decodeAsync, decodeArrayStream, decodeStream */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decodeAsync\", function() { return decodeAsync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decodeArrayStream\", function() { return decodeArrayStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decodeStream\", function() { return decodeStream; });\n/* harmony import */ var _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Decoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/Decoder.mjs\");\n/* harmony import */ var _decode_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./decode.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/decode.mjs\");\n/* harmony import */ var _utils_stream_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/stream.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/stream.mjs\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\n\nfunction decodeAsync(streamLike, options) {\n if (options === void 0) { options = _decode_mjs__WEBPACK_IMPORTED_MODULE_1__[\"defaultDecodeOptions\"]; }\n return __awaiter(this, void 0, void 0, function () {\n var stream, decoder;\n return __generator(this, function (_a) {\n stream = Object(_utils_stream_mjs__WEBPACK_IMPORTED_MODULE_2__[\"ensureAsyncIterabe\"])(streamLike);\n decoder = new _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Decoder\"](options.extensionCodec, options.context, options.maxStrLength, options.maxBinLength, options.maxArrayLength, options.maxMapLength, options.maxExtLength);\n return [2 /*return*/, decoder.decodeAsync(stream)];\n });\n });\n}\nfunction decodeArrayStream(streamLike, options) {\n if (options === void 0) { options = _decode_mjs__WEBPACK_IMPORTED_MODULE_1__[\"defaultDecodeOptions\"]; }\n var stream = Object(_utils_stream_mjs__WEBPACK_IMPORTED_MODULE_2__[\"ensureAsyncIterabe\"])(streamLike);\n var decoder = new _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Decoder\"](options.extensionCodec, options.context, options.maxStrLength, options.maxBinLength, options.maxArrayLength, options.maxMapLength, options.maxExtLength);\n return decoder.decodeArrayStream(stream);\n}\nfunction decodeStream(streamLike, options) {\n if (options === void 0) { options = _decode_mjs__WEBPACK_IMPORTED_MODULE_1__[\"defaultDecodeOptions\"]; }\n var stream = Object(_utils_stream_mjs__WEBPACK_IMPORTED_MODULE_2__[\"ensureAsyncIterabe\"])(streamLike);\n var decoder = new _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Decoder\"](options.extensionCodec, options.context, options.maxStrLength, options.maxBinLength, options.maxArrayLength, options.maxMapLength, options.maxExtLength);\n return decoder.decodeStream(stream);\n}\n//# sourceMappingURL=decodeAsync.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/decodeAsync.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decodeAsync\", function() { return decodeAsync; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decodeArrayStream\", function() { return decodeArrayStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decodeStream\", function() { return decodeStream; });\n/* harmony import */ var _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Decoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/Decoder.mjs\");\n/* harmony import */ var _decode_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./decode.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/decode.mjs\");\n/* harmony import */ var _utils_stream_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./utils/stream.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/stream.mjs\");\nvar __awaiter = (undefined && undefined.__awaiter) || function (thisArg, _arguments, P, generator) {\n function adopt(value) { return value instanceof P ? value : new P(function (resolve) { resolve(value); }); }\n return new (P || (P = Promise))(function (resolve, reject) {\n function fulfilled(value) { try { step(generator.next(value)); } catch (e) { reject(e); } }\n function rejected(value) { try { step(generator[\"throw\"](value)); } catch (e) { reject(e); } }\n function step(result) { result.done ? resolve(result.value) : adopt(result.value).then(fulfilled, rejected); }\n step((generator = generator.apply(thisArg, _arguments || [])).next());\n });\n};\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\n\n\n\nfunction decodeAsync(streamLike, options) {\n if (options === void 0) { options = _decode_mjs__WEBPACK_IMPORTED_MODULE_1__[\"defaultDecodeOptions\"]; }\n return __awaiter(this, void 0, void 0, function () {\n var stream, decoder;\n return __generator(this, function (_a) {\n stream = Object(_utils_stream_mjs__WEBPACK_IMPORTED_MODULE_2__[\"ensureAsyncIterabe\"])(streamLike);\n decoder = new _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Decoder\"](options.extensionCodec, options.context, options.maxStrLength, options.maxBinLength, options.maxArrayLength, options.maxMapLength, options.maxExtLength);\n return [2 /*return*/, decoder.decodeAsync(stream)];\n });\n });\n}\nfunction decodeArrayStream(streamLike, options) {\n if (options === void 0) { options = _decode_mjs__WEBPACK_IMPORTED_MODULE_1__[\"defaultDecodeOptions\"]; }\n var stream = Object(_utils_stream_mjs__WEBPACK_IMPORTED_MODULE_2__[\"ensureAsyncIterabe\"])(streamLike);\n var decoder = new _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Decoder\"](options.extensionCodec, options.context, options.maxStrLength, options.maxBinLength, options.maxArrayLength, options.maxMapLength, options.maxExtLength);\n return decoder.decodeArrayStream(stream);\n}\nfunction decodeStream(streamLike, options) {\n if (options === void 0) { options = _decode_mjs__WEBPACK_IMPORTED_MODULE_1__[\"defaultDecodeOptions\"]; }\n var stream = Object(_utils_stream_mjs__WEBPACK_IMPORTED_MODULE_2__[\"ensureAsyncIterabe\"])(streamLike);\n var decoder = new _Decoder_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Decoder\"](options.extensionCodec, options.context, options.maxStrLength, options.maxBinLength, options.maxArrayLength, options.maxMapLength, options.maxExtLength);\n return decoder.decodeStream(stream);\n}\n//# sourceMappingURL=decodeAsync.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/decodeAsync.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/encode.mjs": -/*!*************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/encode.mjs ***! - \*************************************************************************************************/ +/*!********************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/encode.mjs ***! + \********************************************************************************************************/ /*! exports provided: encode */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"encode\", function() { return encode; });\n/* harmony import */ var _Encoder_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Encoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/Encoder.mjs\");\n\nvar defaultEncodeOptions = {};\n/**\n * It encodes `value` in the MessagePack format and\n * returns a byte buffer.\n *\n * The returned buffer is a slice of a larger `ArrayBuffer`, so you have to use its `#byteOffset` and `#byteLength` in order to convert it to another typed arrays including NodeJS `Buffer`.\n */\nfunction encode(value, options) {\n if (options === void 0) { options = defaultEncodeOptions; }\n var encoder = new _Encoder_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Encoder\"](options.extensionCodec, options.context, options.maxDepth, options.initialBufferSize, options.sortKeys, options.forceFloat32, options.ignoreUndefined, options.forceIntegerToFloat);\n return encoder.encode(value);\n}\n//# sourceMappingURL=encode.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/encode.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"encode\", function() { return encode; });\n/* harmony import */ var _Encoder_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./Encoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/Encoder.mjs\");\n\nvar defaultEncodeOptions = {};\n/**\n * It encodes `value` in the MessagePack format and\n * returns a byte buffer.\n *\n * The returned buffer is a slice of a larger `ArrayBuffer`, so you have to use its `#byteOffset` and `#byteLength` in order to convert it to another typed arrays including NodeJS `Buffer`.\n */\nfunction encode(value, options) {\n if (options === void 0) { options = defaultEncodeOptions; }\n var encoder = new _Encoder_mjs__WEBPACK_IMPORTED_MODULE_0__[\"Encoder\"](options.extensionCodec, options.context, options.maxDepth, options.initialBufferSize, options.sortKeys, options.forceFloat32, options.ignoreUndefined, options.forceIntegerToFloat);\n return encoder.encode(value);\n}\n//# sourceMappingURL=encode.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/encode.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/index.mjs": -/*!************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/index.mjs ***! - \************************************************************************************************/ +/*!*******************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/index.mjs ***! + \*******************************************************************************************************/ /*! exports provided: encode, decode, decodeAsync, decodeArrayStream, decodeStream, Decoder, Encoder, ExtensionCodec, ExtData, EXT_TIMESTAMP, encodeDateToTimeSpec, encodeTimeSpecToTimestamp, decodeTimestampToTimeSpec, encodeTimestampExtension, decodeTimestampExtension */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _encode_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./encode.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/encode.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"encode\", function() { return _encode_mjs__WEBPACK_IMPORTED_MODULE_0__[\"encode\"]; });\n\n/* harmony import */ var _decode_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./decode.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/decode.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decode\", function() { return _decode_mjs__WEBPACK_IMPORTED_MODULE_1__[\"decode\"]; });\n\n/* harmony import */ var _decodeAsync_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./decodeAsync.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/decodeAsync.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decodeAsync\", function() { return _decodeAsync_mjs__WEBPACK_IMPORTED_MODULE_2__[\"decodeAsync\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decodeArrayStream\", function() { return _decodeAsync_mjs__WEBPACK_IMPORTED_MODULE_2__[\"decodeArrayStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decodeStream\", function() { return _decodeAsync_mjs__WEBPACK_IMPORTED_MODULE_2__[\"decodeStream\"]; });\n\n/* harmony import */ var _Decoder_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Decoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/Decoder.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Decoder\", function() { return _Decoder_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Decoder\"]; });\n\n/* harmony import */ var _Encoder_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Encoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/Encoder.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Encoder\", function() { return _Encoder_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Encoder\"]; });\n\n/* harmony import */ var _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ExtensionCodec.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtensionCodec.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtensionCodec\", function() { return _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_5__[\"ExtensionCodec\"]; });\n\n/* harmony import */ var _ExtData_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./ExtData.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtData.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtData\", function() { return _ExtData_mjs__WEBPACK_IMPORTED_MODULE_6__[\"ExtData\"]; });\n\n/* harmony import */ var _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./timestamp.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/timestamp.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EXT_TIMESTAMP\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"EXT_TIMESTAMP\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"encodeDateToTimeSpec\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"encodeDateToTimeSpec\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"encodeTimeSpecToTimestamp\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"encodeTimeSpecToTimestamp\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decodeTimestampToTimeSpec\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"decodeTimestampToTimeSpec\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"encodeTimestampExtension\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"encodeTimestampExtension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decodeTimestampExtension\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"decodeTimestampExtension\"]; });\n\n// Main Functions:\n\n\n\n\n\n\n\n\n\n\n// Utilitiies for Extension Types:\n\n\n\n\n\n\n//# sourceMappingURL=index.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/index.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony import */ var _encode_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./encode.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/encode.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"encode\", function() { return _encode_mjs__WEBPACK_IMPORTED_MODULE_0__[\"encode\"]; });\n\n/* harmony import */ var _decode_mjs__WEBPACK_IMPORTED_MODULE_1__ = __webpack_require__(/*! ./decode.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/decode.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decode\", function() { return _decode_mjs__WEBPACK_IMPORTED_MODULE_1__[\"decode\"]; });\n\n/* harmony import */ var _decodeAsync_mjs__WEBPACK_IMPORTED_MODULE_2__ = __webpack_require__(/*! ./decodeAsync.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/decodeAsync.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decodeAsync\", function() { return _decodeAsync_mjs__WEBPACK_IMPORTED_MODULE_2__[\"decodeAsync\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decodeArrayStream\", function() { return _decodeAsync_mjs__WEBPACK_IMPORTED_MODULE_2__[\"decodeArrayStream\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decodeStream\", function() { return _decodeAsync_mjs__WEBPACK_IMPORTED_MODULE_2__[\"decodeStream\"]; });\n\n/* harmony import */ var _Decoder_mjs__WEBPACK_IMPORTED_MODULE_3__ = __webpack_require__(/*! ./Decoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/Decoder.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Decoder\", function() { return _Decoder_mjs__WEBPACK_IMPORTED_MODULE_3__[\"Decoder\"]; });\n\n/* harmony import */ var _Encoder_mjs__WEBPACK_IMPORTED_MODULE_4__ = __webpack_require__(/*! ./Encoder.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/Encoder.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"Encoder\", function() { return _Encoder_mjs__WEBPACK_IMPORTED_MODULE_4__[\"Encoder\"]; });\n\n/* harmony import */ var _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_5__ = __webpack_require__(/*! ./ExtensionCodec.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtensionCodec.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtensionCodec\", function() { return _ExtensionCodec_mjs__WEBPACK_IMPORTED_MODULE_5__[\"ExtensionCodec\"]; });\n\n/* harmony import */ var _ExtData_mjs__WEBPACK_IMPORTED_MODULE_6__ = __webpack_require__(/*! ./ExtData.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/ExtData.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"ExtData\", function() { return _ExtData_mjs__WEBPACK_IMPORTED_MODULE_6__[\"ExtData\"]; });\n\n/* harmony import */ var _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__ = __webpack_require__(/*! ./timestamp.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/timestamp.mjs\");\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"EXT_TIMESTAMP\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"EXT_TIMESTAMP\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"encodeDateToTimeSpec\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"encodeDateToTimeSpec\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"encodeTimeSpecToTimestamp\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"encodeTimeSpecToTimestamp\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decodeTimestampToTimeSpec\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"decodeTimestampToTimeSpec\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"encodeTimestampExtension\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"encodeTimestampExtension\"]; });\n\n/* harmony reexport (safe) */ __webpack_require__.d(__webpack_exports__, \"decodeTimestampExtension\", function() { return _timestamp_mjs__WEBPACK_IMPORTED_MODULE_7__[\"decodeTimestampExtension\"]; });\n\n// Main Functions:\n\n\n\n\n\n\n\n\n\n\n// Utilitiies for Extension Types:\n\n\n\n\n\n\n//# sourceMappingURL=index.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/index.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/timestamp.mjs": -/*!****************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/timestamp.mjs ***! - \****************************************************************************************************/ +/*!***********************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/timestamp.mjs ***! + \***********************************************************************************************************/ /*! exports provided: EXT_TIMESTAMP, encodeTimeSpecToTimestamp, encodeDateToTimeSpec, encodeTimestampExtension, decodeTimestampToTimeSpec, decodeTimestampExtension, timestampExtension */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EXT_TIMESTAMP\", function() { return EXT_TIMESTAMP; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"encodeTimeSpecToTimestamp\", function() { return encodeTimeSpecToTimestamp; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"encodeDateToTimeSpec\", function() { return encodeDateToTimeSpec; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"encodeTimestampExtension\", function() { return encodeTimestampExtension; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decodeTimestampToTimeSpec\", function() { return decodeTimestampToTimeSpec; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decodeTimestampExtension\", function() { return decodeTimestampExtension; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"timestampExtension\", function() { return timestampExtension; });\n/* harmony import */ var _utils_int_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils/int.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/int.mjs\");\n// https://github.com/msgpack/msgpack/blob/master/spec.md#timestamp-extension-type\n\nvar EXT_TIMESTAMP = -1;\nvar TIMESTAMP32_MAX_SEC = 0x100000000 - 1; // 32-bit unsigned int\nvar TIMESTAMP64_MAX_SEC = 0x400000000 - 1; // 34-bit unsigned int\nfunction encodeTimeSpecToTimestamp(_a) {\n var sec = _a.sec, nsec = _a.nsec;\n if (sec >= 0 && nsec >= 0 && sec <= TIMESTAMP64_MAX_SEC) {\n // Here sec >= 0 && nsec >= 0\n if (nsec === 0 && sec <= TIMESTAMP32_MAX_SEC) {\n // timestamp 32 = { sec32 (unsigned) }\n var rv = new Uint8Array(4);\n var view = new DataView(rv.buffer);\n view.setUint32(0, sec);\n return rv;\n }\n else {\n // timestamp 64 = { nsec30 (unsigned), sec34 (unsigned) }\n var secHigh = sec / 0x100000000;\n var secLow = sec & 0xffffffff;\n var rv = new Uint8Array(8);\n var view = new DataView(rv.buffer);\n // nsec30 | secHigh2\n view.setUint32(0, (nsec << 2) | (secHigh & 0x3));\n // secLow32\n view.setUint32(4, secLow);\n return rv;\n }\n }\n else {\n // timestamp 96 = { nsec32 (unsigned), sec64 (signed) }\n var rv = new Uint8Array(12);\n var view = new DataView(rv.buffer);\n view.setUint32(0, nsec);\n Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_0__[\"setInt64\"])(view, 4, sec);\n return rv;\n }\n}\nfunction encodeDateToTimeSpec(date) {\n var msec = date.getTime();\n var sec = Math.floor(msec / 1e3);\n var nsec = (msec - sec * 1e3) * 1e6;\n // Normalizes { sec, nsec } to ensure nsec is unsigned.\n var nsecInSec = Math.floor(nsec / 1e9);\n return {\n sec: sec + nsecInSec,\n nsec: nsec - nsecInSec * 1e9,\n };\n}\nfunction encodeTimestampExtension(object) {\n if (object instanceof Date) {\n var timeSpec = encodeDateToTimeSpec(object);\n return encodeTimeSpecToTimestamp(timeSpec);\n }\n else {\n return null;\n }\n}\nfunction decodeTimestampToTimeSpec(data) {\n var view = new DataView(data.buffer, data.byteOffset, data.byteLength);\n // data may be 32, 64, or 96 bits\n switch (data.byteLength) {\n case 4: {\n // timestamp 32 = { sec32 }\n var sec = view.getUint32(0);\n var nsec = 0;\n return { sec: sec, nsec: nsec };\n }\n case 8: {\n // timestamp 64 = { nsec30, sec34 }\n var nsec30AndSecHigh2 = view.getUint32(0);\n var secLow32 = view.getUint32(4);\n var sec = (nsec30AndSecHigh2 & 0x3) * 0x100000000 + secLow32;\n var nsec = nsec30AndSecHigh2 >>> 2;\n return { sec: sec, nsec: nsec };\n }\n case 12: {\n // timestamp 96 = { nsec32 (unsigned), sec64 (signed) }\n var sec = Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_0__[\"getInt64\"])(view, 4);\n var nsec = view.getUint32(0);\n return { sec: sec, nsec: nsec };\n }\n default:\n throw new Error(\"Unrecognized data size for timestamp: \" + data.length);\n }\n}\nfunction decodeTimestampExtension(data) {\n var timeSpec = decodeTimestampToTimeSpec(data);\n return new Date(timeSpec.sec * 1e3 + timeSpec.nsec / 1e6);\n}\nvar timestampExtension = {\n type: EXT_TIMESTAMP,\n encode: encodeTimestampExtension,\n decode: decodeTimestampExtension,\n};\n//# sourceMappingURL=timestamp.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/timestamp.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"EXT_TIMESTAMP\", function() { return EXT_TIMESTAMP; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"encodeTimeSpecToTimestamp\", function() { return encodeTimeSpecToTimestamp; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"encodeDateToTimeSpec\", function() { return encodeDateToTimeSpec; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"encodeTimestampExtension\", function() { return encodeTimestampExtension; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decodeTimestampToTimeSpec\", function() { return decodeTimestampToTimeSpec; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"decodeTimestampExtension\", function() { return decodeTimestampExtension; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"timestampExtension\", function() { return timestampExtension; });\n/* harmony import */ var _utils_int_mjs__WEBPACK_IMPORTED_MODULE_0__ = __webpack_require__(/*! ./utils/int.mjs */ \"../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/int.mjs\");\n// https://github.com/msgpack/msgpack/blob/master/spec.md#timestamp-extension-type\n\nvar EXT_TIMESTAMP = -1;\nvar TIMESTAMP32_MAX_SEC = 0x100000000 - 1; // 32-bit unsigned int\nvar TIMESTAMP64_MAX_SEC = 0x400000000 - 1; // 34-bit unsigned int\nfunction encodeTimeSpecToTimestamp(_a) {\n var sec = _a.sec, nsec = _a.nsec;\n if (sec >= 0 && nsec >= 0 && sec <= TIMESTAMP64_MAX_SEC) {\n // Here sec >= 0 && nsec >= 0\n if (nsec === 0 && sec <= TIMESTAMP32_MAX_SEC) {\n // timestamp 32 = { sec32 (unsigned) }\n var rv = new Uint8Array(4);\n var view = new DataView(rv.buffer);\n view.setUint32(0, sec);\n return rv;\n }\n else {\n // timestamp 64 = { nsec30 (unsigned), sec34 (unsigned) }\n var secHigh = sec / 0x100000000;\n var secLow = sec & 0xffffffff;\n var rv = new Uint8Array(8);\n var view = new DataView(rv.buffer);\n // nsec30 | secHigh2\n view.setUint32(0, (nsec << 2) | (secHigh & 0x3));\n // secLow32\n view.setUint32(4, secLow);\n return rv;\n }\n }\n else {\n // timestamp 96 = { nsec32 (unsigned), sec64 (signed) }\n var rv = new Uint8Array(12);\n var view = new DataView(rv.buffer);\n view.setUint32(0, nsec);\n Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_0__[\"setInt64\"])(view, 4, sec);\n return rv;\n }\n}\nfunction encodeDateToTimeSpec(date) {\n var msec = date.getTime();\n var sec = Math.floor(msec / 1e3);\n var nsec = (msec - sec * 1e3) * 1e6;\n // Normalizes { sec, nsec } to ensure nsec is unsigned.\n var nsecInSec = Math.floor(nsec / 1e9);\n return {\n sec: sec + nsecInSec,\n nsec: nsec - nsecInSec * 1e9,\n };\n}\nfunction encodeTimestampExtension(object) {\n if (object instanceof Date) {\n var timeSpec = encodeDateToTimeSpec(object);\n return encodeTimeSpecToTimestamp(timeSpec);\n }\n else {\n return null;\n }\n}\nfunction decodeTimestampToTimeSpec(data) {\n var view = new DataView(data.buffer, data.byteOffset, data.byteLength);\n // data may be 32, 64, or 96 bits\n switch (data.byteLength) {\n case 4: {\n // timestamp 32 = { sec32 }\n var sec = view.getUint32(0);\n var nsec = 0;\n return { sec: sec, nsec: nsec };\n }\n case 8: {\n // timestamp 64 = { nsec30, sec34 }\n var nsec30AndSecHigh2 = view.getUint32(0);\n var secLow32 = view.getUint32(4);\n var sec = (nsec30AndSecHigh2 & 0x3) * 0x100000000 + secLow32;\n var nsec = nsec30AndSecHigh2 >>> 2;\n return { sec: sec, nsec: nsec };\n }\n case 12: {\n // timestamp 96 = { nsec32 (unsigned), sec64 (signed) }\n var sec = Object(_utils_int_mjs__WEBPACK_IMPORTED_MODULE_0__[\"getInt64\"])(view, 4);\n var nsec = view.getUint32(0);\n return { sec: sec, nsec: nsec };\n }\n default:\n throw new Error(\"Unrecognized data size for timestamp: \" + data.length);\n }\n}\nfunction decodeTimestampExtension(data) {\n var timeSpec = decodeTimestampToTimeSpec(data);\n return new Date(timeSpec.sec * 1e3 + timeSpec.nsec / 1e6);\n}\nvar timestampExtension = {\n type: EXT_TIMESTAMP,\n encode: encodeTimestampExtension,\n decode: decodeTimestampExtension,\n};\n//# sourceMappingURL=timestamp.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/timestamp.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/int.mjs": -/*!****************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/int.mjs ***! - \****************************************************************************************************/ +/*!***********************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/int.mjs ***! + \***********************************************************************************************************/ /*! exports provided: setUint64, setInt64, getInt64, getUint64 */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setUint64\", function() { return setUint64; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setInt64\", function() { return setInt64; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getInt64\", function() { return getInt64; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUint64\", function() { return getUint64; });\n// DataView extension to handle int64 / uint64,\n// where the actual range is 53-bits integer (a.k.a. safe integer)\nfunction setUint64(view, offset, value) {\n var high = value / 4294967296;\n var low = value; // high bits are truncated by DataView\n view.setUint32(offset, high);\n view.setUint32(offset + 4, low);\n}\nfunction setInt64(view, offset, value) {\n var high = Math.floor(value / 4294967296);\n var low = value; // high bits are truncated by DataView\n view.setUint32(offset, high);\n view.setUint32(offset + 4, low);\n}\nfunction getInt64(view, offset) {\n var high = view.getInt32(offset);\n var low = view.getUint32(offset + 4);\n return high * 4294967296 + low;\n}\nfunction getUint64(view, offset) {\n var high = view.getUint32(offset);\n var low = view.getUint32(offset + 4);\n return high * 4294967296 + low;\n}\n//# sourceMappingURL=int.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/int.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setUint64\", function() { return setUint64; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"setInt64\", function() { return setInt64; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getInt64\", function() { return getInt64; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"getUint64\", function() { return getUint64; });\n// DataView extension to handle int64 / uint64,\n// where the actual range is 53-bits integer (a.k.a. safe integer)\nfunction setUint64(view, offset, value) {\n var high = value / 4294967296;\n var low = value; // high bits are truncated by DataView\n view.setUint32(offset, high);\n view.setUint32(offset + 4, low);\n}\nfunction setInt64(view, offset, value) {\n var high = Math.floor(value / 4294967296);\n var low = value; // high bits are truncated by DataView\n view.setUint32(offset, high);\n view.setUint32(offset + 4, low);\n}\nfunction getInt64(view, offset) {\n var high = view.getInt32(offset);\n var low = view.getUint32(offset + 4);\n return high * 4294967296 + low;\n}\nfunction getUint64(view, offset) {\n var high = view.getUint32(offset);\n var low = view.getUint32(offset + 4);\n return high * 4294967296 + low;\n}\n//# sourceMappingURL=int.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/int.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/prettyByte.mjs": -/*!***********************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/prettyByte.mjs ***! - \***********************************************************************************************************/ +/*!******************************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/prettyByte.mjs ***! + \******************************************************************************************************************/ /*! exports provided: prettyByte */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"prettyByte\", function() { return prettyByte; });\nfunction prettyByte(byte) {\n return (byte < 0 ? \"-\" : \"\") + \"0x\" + Math.abs(byte).toString(16).padStart(2, \"0\");\n}\n//# sourceMappingURL=prettyByte.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/prettyByte.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"prettyByte\", function() { return prettyByte; });\nfunction prettyByte(byte) {\n return (byte < 0 ? \"-\" : \"\") + \"0x\" + Math.abs(byte).toString(16).padStart(2, \"0\");\n}\n//# sourceMappingURL=prettyByte.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/prettyByte.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/stream.mjs": -/*!*******************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/stream.mjs ***! - \*******************************************************************************************************/ +/*!**************************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/stream.mjs ***! + \**************************************************************************************************************/ /*! exports provided: isAsyncIterable, asyncIterableFromStream, ensureAsyncIterabe */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAsyncIterable\", function() { return isAsyncIterable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"asyncIterableFromStream\", function() { return asyncIterableFromStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ensureAsyncIterabe\", function() { return ensureAsyncIterabe; });\n// utility for whatwg streams\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __await = (undefined && undefined.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }\nvar __asyncGenerator = (undefined && undefined.__asyncGenerator) || function (thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n};\nfunction isAsyncIterable(object) {\n return object[Symbol.asyncIterator] != null;\n}\nfunction assertNonNull(value) {\n if (value == null) {\n throw new Error(\"Assertion Failure: value must not be null nor undefined\");\n }\n}\nfunction asyncIterableFromStream(stream) {\n return __asyncGenerator(this, arguments, function asyncIterableFromStream_1() {\n var reader, _a, done, value;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n reader = stream.getReader();\n _b.label = 1;\n case 1:\n _b.trys.push([1, , 9, 10]);\n _b.label = 2;\n case 2:\n if (false) {}\n return [4 /*yield*/, __await(reader.read())];\n case 3:\n _a = _b.sent(), done = _a.done, value = _a.value;\n if (!done) return [3 /*break*/, 5];\n return [4 /*yield*/, __await(void 0)];\n case 4: return [2 /*return*/, _b.sent()];\n case 5:\n assertNonNull(value);\n return [4 /*yield*/, __await(value)];\n case 6: return [4 /*yield*/, _b.sent()];\n case 7:\n _b.sent();\n return [3 /*break*/, 2];\n case 8: return [3 /*break*/, 10];\n case 9:\n reader.releaseLock();\n return [7 /*endfinally*/];\n case 10: return [2 /*return*/];\n }\n });\n });\n}\nfunction ensureAsyncIterabe(streamLike) {\n if (isAsyncIterable(streamLike)) {\n return streamLike;\n }\n else {\n return asyncIterableFromStream(streamLike);\n }\n}\n//# sourceMappingURL=stream.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/stream.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"isAsyncIterable\", function() { return isAsyncIterable; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"asyncIterableFromStream\", function() { return asyncIterableFromStream; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ensureAsyncIterabe\", function() { return ensureAsyncIterabe; });\n// utility for whatwg streams\nvar __generator = (undefined && undefined.__generator) || function (thisArg, body) {\n var _ = { label: 0, sent: function() { if (t[0] & 1) throw t[1]; return t[1]; }, trys: [], ops: [] }, f, y, t, g;\n return g = { next: verb(0), \"throw\": verb(1), \"return\": verb(2) }, typeof Symbol === \"function\" && (g[Symbol.iterator] = function() { return this; }), g;\n function verb(n) { return function (v) { return step([n, v]); }; }\n function step(op) {\n if (f) throw new TypeError(\"Generator is already executing.\");\n while (_) try {\n if (f = 1, y && (t = op[0] & 2 ? y[\"return\"] : op[0] ? y[\"throw\"] || ((t = y[\"return\"]) && t.call(y), 0) : y.next) && !(t = t.call(y, op[1])).done) return t;\n if (y = 0, t) op = [op[0] & 2, t.value];\n switch (op[0]) {\n case 0: case 1: t = op; break;\n case 4: _.label++; return { value: op[1], done: false };\n case 5: _.label++; y = op[1]; op = [0]; continue;\n case 7: op = _.ops.pop(); _.trys.pop(); continue;\n default:\n if (!(t = _.trys, t = t.length > 0 && t[t.length - 1]) && (op[0] === 6 || op[0] === 2)) { _ = 0; continue; }\n if (op[0] === 3 && (!t || (op[1] > t[0] && op[1] < t[3]))) { _.label = op[1]; break; }\n if (op[0] === 6 && _.label < t[1]) { _.label = t[1]; t = op; break; }\n if (t && _.label < t[2]) { _.label = t[2]; _.ops.push(op); break; }\n if (t[2]) _.ops.pop();\n _.trys.pop(); continue;\n }\n op = body.call(thisArg, _);\n } catch (e) { op = [6, e]; y = 0; } finally { f = t = 0; }\n if (op[0] & 5) throw op[1]; return { value: op[0] ? op[1] : void 0, done: true };\n }\n};\nvar __await = (undefined && undefined.__await) || function (v) { return this instanceof __await ? (this.v = v, this) : new __await(v); }\nvar __asyncGenerator = (undefined && undefined.__asyncGenerator) || function (thisArg, _arguments, generator) {\n if (!Symbol.asyncIterator) throw new TypeError(\"Symbol.asyncIterator is not defined.\");\n var g = generator.apply(thisArg, _arguments || []), i, q = [];\n return i = {}, verb(\"next\"), verb(\"throw\"), verb(\"return\"), i[Symbol.asyncIterator] = function () { return this; }, i;\n function verb(n) { if (g[n]) i[n] = function (v) { return new Promise(function (a, b) { q.push([n, v, a, b]) > 1 || resume(n, v); }); }; }\n function resume(n, v) { try { step(g[n](v)); } catch (e) { settle(q[0][3], e); } }\n function step(r) { r.value instanceof __await ? Promise.resolve(r.value.v).then(fulfill, reject) : settle(q[0][2], r); }\n function fulfill(value) { resume(\"next\", value); }\n function reject(value) { resume(\"throw\", value); }\n function settle(f, v) { if (f(v), q.shift(), q.length) resume(q[0][0], q[0][1]); }\n};\nfunction isAsyncIterable(object) {\n return object[Symbol.asyncIterator] != null;\n}\nfunction assertNonNull(value) {\n if (value == null) {\n throw new Error(\"Assertion Failure: value must not be null nor undefined\");\n }\n}\nfunction asyncIterableFromStream(stream) {\n return __asyncGenerator(this, arguments, function asyncIterableFromStream_1() {\n var reader, _a, done, value;\n return __generator(this, function (_b) {\n switch (_b.label) {\n case 0:\n reader = stream.getReader();\n _b.label = 1;\n case 1:\n _b.trys.push([1, , 9, 10]);\n _b.label = 2;\n case 2:\n if (false) {}\n return [4 /*yield*/, __await(reader.read())];\n case 3:\n _a = _b.sent(), done = _a.done, value = _a.value;\n if (!done) return [3 /*break*/, 5];\n return [4 /*yield*/, __await(void 0)];\n case 4: return [2 /*return*/, _b.sent()];\n case 5:\n assertNonNull(value);\n return [4 /*yield*/, __await(value)];\n case 6: return [4 /*yield*/, _b.sent()];\n case 7:\n _b.sent();\n return [3 /*break*/, 2];\n case 8: return [3 /*break*/, 10];\n case 9:\n reader.releaseLock();\n return [7 /*endfinally*/];\n case 10: return [2 /*return*/];\n }\n });\n });\n}\nfunction ensureAsyncIterabe(streamLike) {\n if (isAsyncIterable(streamLike)) {\n return streamLike;\n }\n else {\n return asyncIterableFromStream(streamLike);\n }\n}\n//# sourceMappingURL=stream.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/stream.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/typedArrays.mjs": -/*!************************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/typedArrays.mjs ***! - \************************************************************************************************************/ +/*!*******************************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/typedArrays.mjs ***! + \*******************************************************************************************************************/ /*! exports provided: ensureUint8Array, createDataView */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ensureUint8Array\", function() { return ensureUint8Array; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createDataView\", function() { return createDataView; });\nfunction ensureUint8Array(buffer) {\n if (buffer instanceof Uint8Array) {\n return buffer;\n }\n else if (ArrayBuffer.isView(buffer)) {\n return new Uint8Array(buffer.buffer, buffer.byteOffset, buffer.byteLength);\n }\n else if (buffer instanceof ArrayBuffer) {\n return new Uint8Array(buffer);\n }\n else {\n // ArrayLike\n return Uint8Array.from(buffer);\n }\n}\nfunction createDataView(buffer) {\n if (buffer instanceof ArrayBuffer) {\n return new DataView(buffer);\n }\n var bufferView = ensureUint8Array(buffer);\n return new DataView(bufferView.buffer, bufferView.byteOffset, bufferView.byteLength);\n}\n//# sourceMappingURL=typedArrays.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/typedArrays.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"ensureUint8Array\", function() { return ensureUint8Array; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"createDataView\", function() { return createDataView; });\nfunction ensureUint8Array(buffer) {\n if (buffer instanceof Uint8Array) {\n return buffer;\n }\n else if (ArrayBuffer.isView(buffer)) {\n return new Uint8Array(buffer.buffer, buffer.byteOffset, buffer.byteLength);\n }\n else if (buffer instanceof ArrayBuffer) {\n return new Uint8Array(buffer);\n }\n else {\n // ArrayLike\n return Uint8Array.from(buffer);\n }\n}\nfunction createDataView(buffer) {\n if (buffer instanceof ArrayBuffer) {\n return new DataView(buffer);\n }\n var bufferView = ensureUint8Array(buffer);\n return new DataView(bufferView.buffer, bufferView.byteOffset, bufferView.byteLength);\n}\n//# sourceMappingURL=typedArrays.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/typedArrays.mjs?"); /***/ }), /***/ "../../../node_modules/@msgpack/msgpack/dist.es5+esm/utils/utf8.mjs": -/*!*****************************************************************************************************!*\ - !*** /home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/utf8.mjs ***! - \*****************************************************************************************************/ +/*!************************************************************************************************************!*\ + !*** /home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/utf8.mjs ***! + \************************************************************************************************************/ /*! exports provided: utf8Count, utf8EncodeJs, TEXT_ENCODER_THRESHOLD, utf8EncodeTE, utf8DecodeJs, TEXT_DECODER_THRESHOLD, utf8DecodeTD */ /***/ (function(__webpack_module__, __webpack_exports__, __webpack_require__) { "use strict"; -eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"utf8Count\", function() { return utf8Count; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"utf8EncodeJs\", function() { return utf8EncodeJs; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TEXT_ENCODER_THRESHOLD\", function() { return TEXT_ENCODER_THRESHOLD; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"utf8EncodeTE\", function() { return utf8EncodeTE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"utf8DecodeJs\", function() { return utf8DecodeJs; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TEXT_DECODER_THRESHOLD\", function() { return TEXT_DECODER_THRESHOLD; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"utf8DecodeTD\", function() { return utf8DecodeTD; });\nvar TEXT_ENCODING_AVAILABLE = typeof process !== \"undefined\" &&\n process.env.TEXT_ENCODING !== \"never\" &&\n typeof TextEncoder !== \"undefined\" &&\n typeof TextDecoder !== \"undefined\";\nvar STR_SIZE_MAX = 4294967295; // uint32_max\nfunction utf8Count(str) {\n var strLength = str.length;\n var byteLength = 0;\n var pos = 0;\n while (pos < strLength) {\n var value = str.charCodeAt(pos++);\n if ((value & 0xffffff80) === 0) {\n // 1-byte\n byteLength++;\n continue;\n }\n else if ((value & 0xfffff800) === 0) {\n // 2-bytes\n byteLength += 2;\n }\n else {\n // handle surrogate pair\n if (value >= 0xd800 && value <= 0xdbff) {\n // high surrogate\n if (pos < strLength) {\n var extra = str.charCodeAt(pos);\n if ((extra & 0xfc00) === 0xdc00) {\n ++pos;\n value = ((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000;\n }\n }\n }\n if ((value & 0xffff0000) === 0) {\n // 3-byte\n byteLength += 3;\n }\n else {\n // 4-byte\n byteLength += 4;\n }\n }\n }\n return byteLength;\n}\nfunction utf8EncodeJs(str, output, outputOffset) {\n var strLength = str.length;\n var offset = outputOffset;\n var pos = 0;\n while (pos < strLength) {\n var value = str.charCodeAt(pos++);\n if ((value & 0xffffff80) === 0) {\n // 1-byte\n output[offset++] = value;\n continue;\n }\n else if ((value & 0xfffff800) === 0) {\n // 2-bytes\n output[offset++] = ((value >> 6) & 0x1f) | 0xc0;\n }\n else {\n // handle surrogate pair\n if (value >= 0xd800 && value <= 0xdbff) {\n // high surrogate\n if (pos < strLength) {\n var extra = str.charCodeAt(pos);\n if ((extra & 0xfc00) === 0xdc00) {\n ++pos;\n value = ((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000;\n }\n }\n }\n if ((value & 0xffff0000) === 0) {\n // 3-byte\n output[offset++] = ((value >> 12) & 0x0f) | 0xe0;\n output[offset++] = ((value >> 6) & 0x3f) | 0x80;\n }\n else {\n // 4-byte\n output[offset++] = ((value >> 18) & 0x07) | 0xf0;\n output[offset++] = ((value >> 12) & 0x3f) | 0x80;\n output[offset++] = ((value >> 6) & 0x3f) | 0x80;\n }\n }\n output[offset++] = (value & 0x3f) | 0x80;\n }\n}\nvar sharedTextEncoder = TEXT_ENCODING_AVAILABLE ? new TextEncoder() : undefined;\nvar TEXT_ENCODER_THRESHOLD = !TEXT_ENCODING_AVAILABLE\n ? STR_SIZE_MAX\n : typeof process !== \"undefined\" && process.env.TEXT_ENCODING !== \"force\"\n ? 200\n : 0;\nfunction utf8EncodeTEencode(str, output, outputOffset) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n output.set(sharedTextEncoder.encode(str), outputOffset);\n}\nfunction utf8EncodeTEencodeInto(str, output, outputOffset) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n sharedTextEncoder.encodeInto(str, output.subarray(outputOffset));\n}\nvar utf8EncodeTE = (sharedTextEncoder === null || sharedTextEncoder === void 0 ? void 0 : sharedTextEncoder.encodeInto) ? utf8EncodeTEencodeInto : utf8EncodeTEencode;\nvar CHUNK_SIZE = 4096;\nfunction utf8DecodeJs(bytes, inputOffset, byteLength) {\n var offset = inputOffset;\n var end = offset + byteLength;\n var units = [];\n var result = \"\";\n while (offset < end) {\n var byte1 = bytes[offset++];\n if ((byte1 & 0x80) === 0) {\n // 1 byte\n units.push(byte1);\n }\n else if ((byte1 & 0xe0) === 0xc0) {\n // 2 bytes\n var byte2 = bytes[offset++] & 0x3f;\n units.push(((byte1 & 0x1f) << 6) | byte2);\n }\n else if ((byte1 & 0xf0) === 0xe0) {\n // 3 bytes\n var byte2 = bytes[offset++] & 0x3f;\n var byte3 = bytes[offset++] & 0x3f;\n units.push(((byte1 & 0x1f) << 12) | (byte2 << 6) | byte3);\n }\n else if ((byte1 & 0xf8) === 0xf0) {\n // 4 bytes\n var byte2 = bytes[offset++] & 0x3f;\n var byte3 = bytes[offset++] & 0x3f;\n var byte4 = bytes[offset++] & 0x3f;\n var unit = ((byte1 & 0x07) << 0x12) | (byte2 << 0x0c) | (byte3 << 0x06) | byte4;\n if (unit > 0xffff) {\n unit -= 0x10000;\n units.push(((unit >>> 10) & 0x3ff) | 0xd800);\n unit = 0xdc00 | (unit & 0x3ff);\n }\n units.push(unit);\n }\n else {\n units.push(byte1);\n }\n if (units.length >= CHUNK_SIZE) {\n result += String.fromCharCode.apply(String, units);\n units.length = 0;\n }\n }\n if (units.length > 0) {\n result += String.fromCharCode.apply(String, units);\n }\n return result;\n}\nvar sharedTextDecoder = TEXT_ENCODING_AVAILABLE ? new TextDecoder() : null;\nvar TEXT_DECODER_THRESHOLD = !TEXT_ENCODING_AVAILABLE\n ? STR_SIZE_MAX\n : typeof process !== \"undefined\" && process.env.TEXT_DECODER !== \"force\"\n ? 200\n : 0;\nfunction utf8DecodeTD(bytes, inputOffset, byteLength) {\n var stringBytes = bytes.subarray(inputOffset, inputOffset + byteLength);\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n return sharedTextDecoder.decode(stringBytes);\n}\n//# sourceMappingURL=utf8.mjs.map\n\n//# sourceURL=webpack:////home/runner/work/monorepo/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/utf8.mjs?"); +eval("__webpack_require__.r(__webpack_exports__);\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"utf8Count\", function() { return utf8Count; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"utf8EncodeJs\", function() { return utf8EncodeJs; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TEXT_ENCODER_THRESHOLD\", function() { return TEXT_ENCODER_THRESHOLD; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"utf8EncodeTE\", function() { return utf8EncodeTE; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"utf8DecodeJs\", function() { return utf8DecodeJs; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"TEXT_DECODER_THRESHOLD\", function() { return TEXT_DECODER_THRESHOLD; });\n/* harmony export (binding) */ __webpack_require__.d(__webpack_exports__, \"utf8DecodeTD\", function() { return utf8DecodeTD; });\nvar TEXT_ENCODING_AVAILABLE = typeof process !== \"undefined\" &&\n process.env.TEXT_ENCODING !== \"never\" &&\n typeof TextEncoder !== \"undefined\" &&\n typeof TextDecoder !== \"undefined\";\nvar STR_SIZE_MAX = 4294967295; // uint32_max\nfunction utf8Count(str) {\n var strLength = str.length;\n var byteLength = 0;\n var pos = 0;\n while (pos < strLength) {\n var value = str.charCodeAt(pos++);\n if ((value & 0xffffff80) === 0) {\n // 1-byte\n byteLength++;\n continue;\n }\n else if ((value & 0xfffff800) === 0) {\n // 2-bytes\n byteLength += 2;\n }\n else {\n // handle surrogate pair\n if (value >= 0xd800 && value <= 0xdbff) {\n // high surrogate\n if (pos < strLength) {\n var extra = str.charCodeAt(pos);\n if ((extra & 0xfc00) === 0xdc00) {\n ++pos;\n value = ((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000;\n }\n }\n }\n if ((value & 0xffff0000) === 0) {\n // 3-byte\n byteLength += 3;\n }\n else {\n // 4-byte\n byteLength += 4;\n }\n }\n }\n return byteLength;\n}\nfunction utf8EncodeJs(str, output, outputOffset) {\n var strLength = str.length;\n var offset = outputOffset;\n var pos = 0;\n while (pos < strLength) {\n var value = str.charCodeAt(pos++);\n if ((value & 0xffffff80) === 0) {\n // 1-byte\n output[offset++] = value;\n continue;\n }\n else if ((value & 0xfffff800) === 0) {\n // 2-bytes\n output[offset++] = ((value >> 6) & 0x1f) | 0xc0;\n }\n else {\n // handle surrogate pair\n if (value >= 0xd800 && value <= 0xdbff) {\n // high surrogate\n if (pos < strLength) {\n var extra = str.charCodeAt(pos);\n if ((extra & 0xfc00) === 0xdc00) {\n ++pos;\n value = ((value & 0x3ff) << 10) + (extra & 0x3ff) + 0x10000;\n }\n }\n }\n if ((value & 0xffff0000) === 0) {\n // 3-byte\n output[offset++] = ((value >> 12) & 0x0f) | 0xe0;\n output[offset++] = ((value >> 6) & 0x3f) | 0x80;\n }\n else {\n // 4-byte\n output[offset++] = ((value >> 18) & 0x07) | 0xf0;\n output[offset++] = ((value >> 12) & 0x3f) | 0x80;\n output[offset++] = ((value >> 6) & 0x3f) | 0x80;\n }\n }\n output[offset++] = (value & 0x3f) | 0x80;\n }\n}\nvar sharedTextEncoder = TEXT_ENCODING_AVAILABLE ? new TextEncoder() : undefined;\nvar TEXT_ENCODER_THRESHOLD = !TEXT_ENCODING_AVAILABLE\n ? STR_SIZE_MAX\n : typeof process !== \"undefined\" && process.env.TEXT_ENCODING !== \"force\"\n ? 200\n : 0;\nfunction utf8EncodeTEencode(str, output, outputOffset) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n output.set(sharedTextEncoder.encode(str), outputOffset);\n}\nfunction utf8EncodeTEencodeInto(str, output, outputOffset) {\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n sharedTextEncoder.encodeInto(str, output.subarray(outputOffset));\n}\nvar utf8EncodeTE = (sharedTextEncoder === null || sharedTextEncoder === void 0 ? void 0 : sharedTextEncoder.encodeInto) ? utf8EncodeTEencodeInto : utf8EncodeTEencode;\nvar CHUNK_SIZE = 4096;\nfunction utf8DecodeJs(bytes, inputOffset, byteLength) {\n var offset = inputOffset;\n var end = offset + byteLength;\n var units = [];\n var result = \"\";\n while (offset < end) {\n var byte1 = bytes[offset++];\n if ((byte1 & 0x80) === 0) {\n // 1 byte\n units.push(byte1);\n }\n else if ((byte1 & 0xe0) === 0xc0) {\n // 2 bytes\n var byte2 = bytes[offset++] & 0x3f;\n units.push(((byte1 & 0x1f) << 6) | byte2);\n }\n else if ((byte1 & 0xf0) === 0xe0) {\n // 3 bytes\n var byte2 = bytes[offset++] & 0x3f;\n var byte3 = bytes[offset++] & 0x3f;\n units.push(((byte1 & 0x1f) << 12) | (byte2 << 6) | byte3);\n }\n else if ((byte1 & 0xf8) === 0xf0) {\n // 4 bytes\n var byte2 = bytes[offset++] & 0x3f;\n var byte3 = bytes[offset++] & 0x3f;\n var byte4 = bytes[offset++] & 0x3f;\n var unit = ((byte1 & 0x07) << 0x12) | (byte2 << 0x0c) | (byte3 << 0x06) | byte4;\n if (unit > 0xffff) {\n unit -= 0x10000;\n units.push(((unit >>> 10) & 0x3ff) | 0xd800);\n unit = 0xdc00 | (unit & 0x3ff);\n }\n units.push(unit);\n }\n else {\n units.push(byte1);\n }\n if (units.length >= CHUNK_SIZE) {\n result += String.fromCharCode.apply(String, units);\n units.length = 0;\n }\n }\n if (units.length > 0) {\n result += String.fromCharCode.apply(String, units);\n }\n return result;\n}\nvar sharedTextDecoder = TEXT_ENCODING_AVAILABLE ? new TextDecoder() : null;\nvar TEXT_DECODER_THRESHOLD = !TEXT_ENCODING_AVAILABLE\n ? STR_SIZE_MAX\n : typeof process !== \"undefined\" && process.env.TEXT_DECODER !== \"force\"\n ? 200\n : 0;\nfunction utf8DecodeTD(bytes, inputOffset, byteLength) {\n var stringBytes = bytes.subarray(inputOffset, inputOffset + byteLength);\n // eslint-disable-next-line @typescript-eslint/no-non-null-assertion\n return sharedTextDecoder.decode(stringBytes);\n}\n//# sourceMappingURL=utf8.mjs.map\n\n//# sourceURL=webpack:////home/jelli/Dev/Repos/w3/web3-api/monorepo/node_modules/@msgpack/msgpack/dist.es5+esm/utils/utf8.mjs?"); /***/ }), diff --git a/packages/templates/app/react/src/App.tsx b/packages/templates/app/react/src/App.tsx index 83d9b26c19..4c342da2c5 100644 --- a/packages/templates/app/react/src/App.tsx +++ b/packages/templates/app/react/src/App.tsx @@ -1,20 +1,12 @@ -import React, { useEffect, useState, FC } from "react"; -import "./App.css"; -import { useWeb3ApiQuery } from "@web3api/react"; +import React from "react"; import Lottie from "react-lottie"; -import Web3ApiAnimation from "./lottie/Web3API_Icon_Cycle.json"; +import { Web3ApiProvider } from "@web3api/react"; -const App: FC = () => { - const [message, setMessage] = useState(""); +import { HelloWorld } from "./HelloWorld"; +import Web3ApiAnimation from "./lottie/Web3API_Icon_Cycle.json"; +import "./App.css"; - useEffect(() => { - (async () => { - const ethereum = (window as any).ethereum; - if (ethereum && ethereum.enable) { - await ethereum.enable(); - } - })(); - }, []); +export const App: React.FC = () => { const logoLottieOptions = { loop: true, @@ -22,60 +14,17 @@ const App: FC = () => { animationData: Web3ApiAnimation, }; - const { execute: logMessage } = useWeb3ApiQuery({ - provider: "helloWorld", - uri: "ens/helloworld.eth", - query: `query { - logMessage( - message: "${message}" - ) - }`, - }); - - // data: deployData, - // loading: loadingDeploy, - // errors: deployContractErrors, - const logMsgHandler = async (): Promise => { - const result = await logMessage(); - console.log(result); - }; - - const onChangeHandler = (event: any): void => { - setMessage(event?.target.value); - }; - return ( - <> -
+
+ - Hello world from Web3API! - - Try out our Hello World demo by connecting your MetaMask, type - anything into the input below, click the submit and check out your - developer console logs. - - onChangeHandler(event)} - /> - - - Want to build your own Web3API? Visit our documentation{" "} - here. - -
- + + +
); }; - -export default App; diff --git a/packages/templates/app/react/src/HelloWorld.tsx b/packages/templates/app/react/src/HelloWorld.tsx new file mode 100644 index 0000000000..59107c7a7c --- /dev/null +++ b/packages/templates/app/react/src/HelloWorld.tsx @@ -0,0 +1,53 @@ +import React from "react"; +import { useWeb3ApiQuery } from "@web3api/react"; + +export const HelloWorld: React.FC = () => { + const [message, setMessage] = React.useState(""); + + const { execute } = useWeb3ApiQuery({ + provider: "helloWorld", + uri: "ens/helloworld.eth", + query: `query { + logMessage( + message: "${message}" + ) + }`, + }); + + // data: deployData, + // loading: loadingDeploy, + // errors: deployContractErrors, + const logMsgHandler = async (): Promise => { + const result = await execute(); + console.log(result); + }; + + const onChangeHandler = (event: any): void => { + setMessage(event?.target.value); + }; + + return ( + <> + Hello world from Web3API! + + Try out our Hello World demo by typing anything into + the input below, click the submit and check out your + developer console logs. + + onChangeHandler(event)} + /> + + + Want to build your own Web3API? Visit our documentation{" "} + here. + + + ); +} diff --git a/packages/templates/app/react/src/index.tsx b/packages/templates/app/react/src/index.tsx index d2a35c08b6..b8e721b550 100644 --- a/packages/templates/app/react/src/index.tsx +++ b/packages/templates/app/react/src/index.tsx @@ -1,17 +1,11 @@ import React from "react"; import ReactDOM from "react-dom"; import "./index.css"; -import App from "./App"; -import { createWeb3ApiProvider } from "@web3api/react"; -import { redirects } from "./redirects"; - -const HelloWorldProvider = createWeb3ApiProvider("helloWorld"); +import { App } from "./App"; ReactDOM.render( - - - - - , + + + , document.getElementById("root") ); diff --git a/packages/templates/app/react/src/redirects.ts b/packages/templates/app/react/src/redirects.ts deleted file mode 100644 index dfb11e4a30..0000000000 --- a/packages/templates/app/react/src/redirects.ts +++ /dev/null @@ -1,15 +0,0 @@ -import { UriRedirect } from "@web3api/client-js"; -import { ethereumPlugin } from "@web3api/ethereum-plugin-js"; - -const ethereum = (window as any).ethereum; -if (ethereum) { - ethereum.request({ method: "eth_requestAccounts" }); -} else { - throw Error("Please install Metamask."); -} -export const redirects: UriRedirect[] = [ - { - from: "w3://ens/ethereum.web3api.eth", - to: ethereumPlugin({ provider: ethereum }), - }, -]; diff --git a/packages/templates/app/react/src/todo b/packages/templates/app/react/src/todo deleted file mode 100644 index 03108a3bf3..0000000000 --- a/packages/templates/app/react/src/todo +++ /dev/null @@ -1,41 +0,0 @@ -Single App.tsx -App() { - - -} - -HelloWorldWeb3ApiClient: - -