mirror of
https://github.com/elastic/kibana.git
synced 2025-04-23 17:28:26 -04:00
[Enterprise Search] Reuse serverless panels on Enterprise Search (#163179)
## Summary Reuse Serverless panels for API index overview. Updated Enterprise Search overview to latests designs. Note: There will be another PR for layout changes on overview afterwards.51537e57
-e822-4b9f-b9ed-49d82d192690a3696897
-40a5-4cb3-9fe6-53ce5b8f560fde752063
-04ff-42a3-8538-7fb10a9df1ca  ### Checklist Delete any items that are not applicable to this PR. - [x] Any text added follows [EUI's writing guidelines](https://elastic.github.io/eui/#/guidelines/writing), uses sentence case text and includes [i18n support](https://github.com/elastic/kibana/blob/main/packages/kbn-i18n/README.md) - [x] [Documentation](https://www.elastic.co/guide/en/kibana/master/development-documentation.html) was added for features that require explanation or tutorials - [x] [Unit or functional tests](https://www.elastic.co/guide/en/kibana/master/development-tests.html) were updated or added to match the most common scenarios - [x] Any UI touched in this PR is usable by keyboard only (learn more about [keyboard accessibility](https://webaim.org/techniques/keyboard/)) - [x] Any UI touched in this PR does not create any new axe failures (run axe in browser: [FF](https://addons.mozilla.org/en-US/firefox/addon/axe-devtools/), [Chrome](https://chrome.google.com/webstore/detail/axe-web-accessibility-tes/lhdoppojpmngadmnindnejefpokejbdd?hl=en-US)) - [ ] This renders correctly on smaller devices using a responsive layout. (You can test this [in your browser](https://www.browserstack.com/guide/responsive-testing-on-local-server)) - [ ] This was checked for [cross-browser compatibility](https://www.elastic.co/support/matrix#matrix_browsers) --------- Co-authored-by: kibanamachine <42973632+kibanamachine@users.noreply.github.com> Co-authored-by: Liam Thompson <32779855+leemthompo@users.noreply.github.com>
This commit is contained in:
parent
04d8a2646d
commit
1e7efae56a
81 changed files with 3384 additions and 1038 deletions
1
.github/CODEOWNERS
vendored
1
.github/CODEOWNERS
vendored
|
@ -588,6 +588,7 @@ examples/screenshot_mode_example @elastic/kibana-app-services
|
|||
src/plugins/screenshot_mode @elastic/appex-sharedux
|
||||
x-pack/examples/screenshotting_example @elastic/appex-sharedux
|
||||
x-pack/plugins/screenshotting @elastic/kibana-reporting-services
|
||||
packages/kbn-search-api-panels @elastic/enterprise-search-frontend
|
||||
examples/search_examples @elastic/kibana-data-discovery
|
||||
packages/kbn-search-response-warnings @elastic/kibana-data-discovery
|
||||
x-pack/plugins/searchprofiler @elastic/platform-deployment-management
|
||||
|
|
|
@ -92,6 +92,7 @@
|
|||
"server": "src/legacy/server",
|
||||
"share": "src/plugins/share",
|
||||
"sharedUXPackages": "packages/shared-ux",
|
||||
"searchApiPanels": "packages/kbn-search-api-panels/",
|
||||
"searchResponseWarnings": "packages/kbn-search-response-warnings",
|
||||
"securitySolutionPackages": "x-pack/packages/security-solution",
|
||||
"serverlessPackages": "packages/serverless",
|
||||
|
|
|
@ -591,6 +591,7 @@
|
|||
"@kbn/screenshot-mode-plugin": "link:src/plugins/screenshot_mode",
|
||||
"@kbn/screenshotting-example-plugin": "link:x-pack/examples/screenshotting_example",
|
||||
"@kbn/screenshotting-plugin": "link:x-pack/plugins/screenshotting",
|
||||
"@kbn/search-api-panels": "link:packages/kbn-search-api-panels",
|
||||
"@kbn/search-examples-plugin": "link:examples/search_examples",
|
||||
"@kbn/search-response-warnings": "link:packages/kbn-search-response-warnings",
|
||||
"@kbn/searchprofiler-plugin": "link:x-pack/plugins/searchprofiler",
|
||||
|
|
3
packages/kbn-search-api-panels/README.md
Normal file
3
packages/kbn-search-api-panels/README.md
Normal file
|
@ -0,0 +1,3 @@
|
|||
# @kbn/search-api-panels
|
||||
|
||||
Empty package generated by @kbn/generate
|
|
@ -1,10 +1,13 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import React, { useState } from 'react';
|
||||
|
||||
import {
|
||||
EuiButtonEmpty,
|
||||
EuiCodeBlock,
|
||||
|
@ -19,49 +22,46 @@ import {
|
|||
EuiThemeProvider,
|
||||
} from '@elastic/eui';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import React, { useState } from 'react';
|
||||
import { PLUGIN_ID } from '../../../common';
|
||||
import { useKibanaServices } from '../hooks/use_kibana';
|
||||
import { consoleDefinition } from './languages/console';
|
||||
import { LanguageDefinition, LanguageDefinitionSnippetArguments } from './languages/types';
|
||||
import type { HttpStart } from '@kbn/core-http-browser';
|
||||
import type { ApplicationStart } from '@kbn/core-application-browser';
|
||||
import type { SharePluginStart } from '@kbn/share-plugin/public';
|
||||
|
||||
import { LanguageDefinition } from '../types';
|
||||
import { TryInConsoleButton } from './try_in_console_button';
|
||||
import './code_box.scss';
|
||||
|
||||
interface CodeBoxProps {
|
||||
languages: LanguageDefinition[];
|
||||
code: keyof LanguageDefinition;
|
||||
codeArgs: LanguageDefinitionSnippetArguments;
|
||||
codeSnippet: string;
|
||||
// overrides the language type for syntax highlighting
|
||||
languageType?: string;
|
||||
selectedLanguage: LanguageDefinition;
|
||||
setSelectedLanguage: (language: LanguageDefinition) => void;
|
||||
http: HttpStart;
|
||||
pluginId: string;
|
||||
application?: ApplicationStart;
|
||||
sharePlugin: SharePluginStart;
|
||||
showTryInConsole: boolean;
|
||||
}
|
||||
|
||||
const getCodeSnippet = (
|
||||
language: Partial<LanguageDefinition>,
|
||||
key: keyof LanguageDefinition,
|
||||
args: LanguageDefinitionSnippetArguments
|
||||
): string => {
|
||||
const snippetVal = language[key];
|
||||
if (snippetVal === undefined) return '';
|
||||
if (typeof snippetVal === 'string') return snippetVal;
|
||||
return snippetVal(args);
|
||||
};
|
||||
|
||||
export const CodeBox: React.FC<CodeBoxProps> = ({
|
||||
code,
|
||||
codeArgs,
|
||||
languages,
|
||||
application,
|
||||
codeSnippet,
|
||||
http,
|
||||
languageType,
|
||||
languages,
|
||||
pluginId,
|
||||
selectedLanguage,
|
||||
setSelectedLanguage,
|
||||
sharePlugin,
|
||||
showTryInConsole,
|
||||
}) => {
|
||||
const [isPopoverOpen, setIsPopoverOpen] = useState<boolean>(false);
|
||||
const { http } = useKibanaServices();
|
||||
|
||||
const items = languages.map((language) => (
|
||||
<EuiContextMenuItem
|
||||
key={language.id}
|
||||
icon={http.basePath.prepend(`/plugins/${PLUGIN_ID}/assets/${language.iconType}`)}
|
||||
icon={http.basePath.prepend(`/plugins/${pluginId}/assets/${language.iconType}`)}
|
||||
onClick={() => {
|
||||
setSelectedLanguage(language);
|
||||
setIsPopoverOpen(false);
|
||||
|
@ -74,7 +74,7 @@ export const CodeBox: React.FC<CodeBoxProps> = ({
|
|||
const button = (
|
||||
<EuiThemeProvider colorMode="dark">
|
||||
<EuiButtonEmpty
|
||||
aria-label={i18n.translate('xpack.serverlessSearch.codeBox.selectAriaLabel', {
|
||||
aria-label={i18n.translate('searchApiPanels.welcomeBanner.codeBox.selectAriaLabel', {
|
||||
defaultMessage: 'Select a programming language',
|
||||
})}
|
||||
color="text"
|
||||
|
@ -86,8 +86,6 @@ export const CodeBox: React.FC<CodeBoxProps> = ({
|
|||
</EuiButtonEmpty>
|
||||
</EuiThemeProvider>
|
||||
);
|
||||
const codeSnippet = getCodeSnippet(selectedLanguage, code, codeArgs);
|
||||
const showTryInConsole = code in consoleDefinition;
|
||||
|
||||
return (
|
||||
<EuiThemeProvider colorMode="dark">
|
||||
|
@ -110,7 +108,7 @@ export const CodeBox: React.FC<CodeBoxProps> = ({
|
|||
<EuiCopy textToCopy={codeSnippet}>
|
||||
{(copy) => (
|
||||
<EuiButtonEmpty color="text" iconType="copy" size="s" onClick={copy}>
|
||||
{i18n.translate('xpack.serverlessSearch.codeBox.copyButtonLabel', {
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.codeBox.copyButtonLabel', {
|
||||
defaultMessage: 'Copy',
|
||||
})}
|
||||
</EuiButtonEmpty>
|
||||
|
@ -119,7 +117,11 @@ export const CodeBox: React.FC<CodeBoxProps> = ({
|
|||
</EuiFlexItem>
|
||||
{showTryInConsole && (
|
||||
<EuiFlexItem grow={false}>
|
||||
<TryInConsoleButton request={getCodeSnippet(consoleDefinition, code, codeArgs)} />
|
||||
<TryInConsoleButton
|
||||
request={codeSnippet}
|
||||
application={application}
|
||||
sharePlugin={sharePlugin}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
)}
|
||||
</EuiFlexGroup>
|
|
@ -1,21 +1,26 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import { EuiFlexGroup, EuiFlexItem, EuiIcon, EuiText, EuiLink } from '@elastic/eui';
|
||||
import React from 'react';
|
||||
import { PLUGIN_ID } from '../../../../common';
|
||||
import { useKibanaServices } from '../../hooks/use_kibana';
|
||||
|
||||
export const GithubLink: React.FC<{ label: string; href: string }> = ({ label, href }) => {
|
||||
const { http } = useKibanaServices();
|
||||
import { EuiFlexGroup, EuiFlexItem, EuiIcon, EuiText, EuiLink } from '@elastic/eui';
|
||||
import { HttpStart } from '@kbn/core-http-browser';
|
||||
|
||||
export const GithubLink: React.FC<{
|
||||
label: string;
|
||||
href: string;
|
||||
http: HttpStart;
|
||||
pluginId: string;
|
||||
}> = ({ label, href, http, pluginId }) => {
|
||||
return (
|
||||
<EuiFlexGroup alignItems="center" gutterSize="xs" justifyContent="flexEnd">
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiIcon size="s" type={http.basePath.prepend(`/plugins/${PLUGIN_ID}/assets/github.svg`)} />
|
||||
<EuiIcon size="s" type={http.basePath.prepend(`/plugins/${pluginId}/assets/github.svg`)} />
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiText size="s">
|
|
@ -1,51 +1,72 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import React, { useState } from 'react';
|
||||
|
||||
import { EuiCheckableCard, EuiFormFieldset, EuiSpacer, EuiText, EuiTitle } from '@elastic/eui';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import React, { useState } from 'react';
|
||||
import { docLinks } from '../../../../common/doc_links';
|
||||
import { CodeBox } from '../code_box';
|
||||
import { languageDefinitions } from '../languages/languages';
|
||||
import { LanguageDefinition, LanguageDefinitionSnippetArguments } from '../languages/types';
|
||||
import type { HttpStart } from '@kbn/core-http-browser';
|
||||
import type { ApplicationStart } from '@kbn/core-application-browser';
|
||||
import type { SharePluginStart } from '@kbn/share-plugin/public';
|
||||
import { CodeBox } from './code_box';
|
||||
import { LanguageDefinition } from '../types';
|
||||
import { OverviewPanel } from './overview_panel';
|
||||
import { IntegrationsPanel } from './integrations_panel';
|
||||
|
||||
interface IngestDataProps {
|
||||
codeArguments: LanguageDefinitionSnippetArguments;
|
||||
codeSnippet: string;
|
||||
selectedLanguage: LanguageDefinition;
|
||||
setSelectedLanguage: (language: LanguageDefinition) => void;
|
||||
docLinks: any;
|
||||
http: HttpStart;
|
||||
pluginId: string;
|
||||
application?: ApplicationStart;
|
||||
sharePlugin: SharePluginStart;
|
||||
languages: LanguageDefinition[];
|
||||
showTryInConsole: boolean;
|
||||
}
|
||||
|
||||
export const IngestData: React.FC<IngestDataProps> = ({
|
||||
codeArguments,
|
||||
codeSnippet,
|
||||
selectedLanguage,
|
||||
setSelectedLanguage,
|
||||
docLinks,
|
||||
http,
|
||||
pluginId,
|
||||
application,
|
||||
sharePlugin,
|
||||
languages,
|
||||
showTryInConsole,
|
||||
}) => {
|
||||
const [selectedIngestMethod, setSelectedIngestMethod] = useState<
|
||||
'ingestViaApi' | 'ingestViaIntegration'
|
||||
>('ingestViaApi');
|
||||
return (
|
||||
<OverviewPanel
|
||||
description={i18n.translate('xpack.serverlessSearch.ingestData.description', {
|
||||
description={i18n.translate('searchApiPanels.welcomeBanner.ingestData.description', {
|
||||
defaultMessage:
|
||||
'Add data to your data stream or index to make it searchable. Choose an ingestion method that fits your application and workflow.',
|
||||
})}
|
||||
leftPanelContent={
|
||||
selectedIngestMethod === 'ingestViaApi' ? (
|
||||
<CodeBox
|
||||
code="ingestData"
|
||||
codeArgs={codeArguments}
|
||||
languages={languageDefinitions}
|
||||
showTryInConsole={showTryInConsole}
|
||||
codeSnippet={codeSnippet}
|
||||
languages={languages}
|
||||
selectedLanguage={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={pluginId}
|
||||
application={application}
|
||||
sharePlugin={sharePlugin}
|
||||
/>
|
||||
) : (
|
||||
<IntegrationsPanel />
|
||||
<IntegrationsPanel docLinks={docLinks} http={http} pluginId={pluginId} />
|
||||
)
|
||||
}
|
||||
links={[
|
||||
|
@ -53,7 +74,7 @@ export const IngestData: React.FC<IngestDataProps> = ({
|
|||
? [
|
||||
{
|
||||
href: selectedLanguage.apiReference,
|
||||
label: i18n.translate('xpack.serverlessSearch.ingestData.clientDocLink', {
|
||||
label: i18n.translate('searchApiPanels.welcomeBanner.ingestData.clientDocLink', {
|
||||
defaultMessage: '{languageName} API reference',
|
||||
values: { languageName: selectedLanguage.name },
|
||||
}),
|
||||
|
@ -62,18 +83,18 @@ export const IngestData: React.FC<IngestDataProps> = ({
|
|||
: []),
|
||||
{
|
||||
href: docLinks.integrations,
|
||||
label: i18n.translate('xpack.serverlessSearch.ingestData.integrationsLink', {
|
||||
label: i18n.translate('searchApiPanels.welcomeBanner.ingestData.integrationsLink', {
|
||||
defaultMessage: 'About Integrations',
|
||||
}),
|
||||
},
|
||||
]}
|
||||
title={i18n.translate('xpack.serverlessSearch.ingestData.title', {
|
||||
title={i18n.translate('searchApiPanels.welcomeBanner.ingestData.title', {
|
||||
defaultMessage: 'Ingest data',
|
||||
})}
|
||||
>
|
||||
<EuiFormFieldset
|
||||
legend={{
|
||||
children: i18n.translate('xpack.serverlessSearch.ingestData.ingestLegendLabel', {
|
||||
children: i18n.translate('searchApiPanels.welcomeBanner.ingestData.ingestLegendLabel', {
|
||||
defaultMessage: 'Select an ingestion method',
|
||||
}),
|
||||
display: 'hidden',
|
||||
|
@ -85,7 +106,7 @@ export const IngestData: React.FC<IngestDataProps> = ({
|
|||
label={
|
||||
<EuiTitle size="xs">
|
||||
<h3>
|
||||
{i18n.translate('xpack.serverlessSearch.ingestData.ingestApiLabel', {
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.ingestData.ingestApiLabel', {
|
||||
defaultMessage: 'Ingest via API',
|
||||
})}
|
||||
</h3>
|
||||
|
@ -96,7 +117,7 @@ export const IngestData: React.FC<IngestDataProps> = ({
|
|||
onChange={() => setSelectedIngestMethod('ingestViaApi')}
|
||||
>
|
||||
<EuiText>
|
||||
{i18n.translate('xpack.serverlessSearch.ingestData.ingestApiDescription', {
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.ingestData.ingestApiDescription', {
|
||||
defaultMessage:
|
||||
'The most flexible way to index data, enabling full control over your customization and optimization options.',
|
||||
})}
|
||||
|
@ -109,7 +130,7 @@ export const IngestData: React.FC<IngestDataProps> = ({
|
|||
label={
|
||||
<EuiTitle size="xs">
|
||||
<h3>
|
||||
{i18n.translate('xpack.serverlessSearch.ingestData.ingestIntegrationLabel', {
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.ingestData.ingestIntegrationLabel', {
|
||||
defaultMessage: 'Ingest via integration',
|
||||
})}
|
||||
</h3>
|
||||
|
@ -120,10 +141,13 @@ export const IngestData: React.FC<IngestDataProps> = ({
|
|||
onChange={() => setSelectedIngestMethod('ingestViaIntegration')}
|
||||
>
|
||||
<EuiText>
|
||||
{i18n.translate('xpack.serverlessSearch.ingestData.ingestIntegrationDescription', {
|
||||
defaultMessage:
|
||||
'Specialized ingestion tools optimized for transforming data and shipping it to Elasticsearch.',
|
||||
})}
|
||||
{i18n.translate(
|
||||
'searchApiPanels.welcomeBanner.ingestData.ingestIntegrationDescription',
|
||||
{
|
||||
defaultMessage:
|
||||
'Specialized ingestion tools optimized for transforming data and shipping it to Elasticsearch.',
|
||||
}
|
||||
)}
|
||||
</EuiText>
|
||||
</EuiCheckableCard>
|
||||
</EuiFormFieldset>
|
147
packages/kbn-search-api-panels/components/install_client.tsx
Normal file
147
packages/kbn-search-api-panels/components/install_client.tsx
Normal file
|
@ -0,0 +1,147 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { EuiSpacer, EuiCallOut, EuiText, EuiPanelProps } from '@elastic/eui';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import type { HttpStart } from '@kbn/core-http-browser';
|
||||
import type { ApplicationStart } from '@kbn/core-application-browser';
|
||||
import type { SharePluginStart } from '@kbn/share-plugin/public';
|
||||
import { CodeBox } from './code_box';
|
||||
import { OverviewPanel } from './overview_panel';
|
||||
import { LanguageDefinition, Languages } from '../types';
|
||||
import { GithubLink } from './github_link';
|
||||
|
||||
interface InstallClientProps {
|
||||
codeSnippet: string;
|
||||
showTryInConsole: boolean;
|
||||
language: LanguageDefinition;
|
||||
setSelectedLanguage: (language: LanguageDefinition) => void;
|
||||
http: HttpStart;
|
||||
pluginId: string;
|
||||
application?: ApplicationStart;
|
||||
sharePlugin: SharePluginStart;
|
||||
isPanelLeft?: boolean;
|
||||
languages: LanguageDefinition[];
|
||||
overviewPanelProps?: Partial<EuiPanelProps>;
|
||||
}
|
||||
|
||||
const Link: React.FC<{ language: Languages; http: HttpStart; pluginId: string }> = ({
|
||||
language,
|
||||
http,
|
||||
pluginId,
|
||||
}) => {
|
||||
switch (language) {
|
||||
case Languages.CURL:
|
||||
return (
|
||||
<GithubLink
|
||||
href="https://github.com/curl/curl"
|
||||
label={i18n.translate('searchApiPanels.welcomeBanner.githubLink.curl.label', {
|
||||
defaultMessage: 'curl',
|
||||
})}
|
||||
http={http}
|
||||
pluginId={pluginId}
|
||||
/>
|
||||
);
|
||||
case Languages.JAVASCRIPT:
|
||||
return (
|
||||
<GithubLink
|
||||
href="https://github.com/elastic/elasticsearch-js"
|
||||
label={i18n.translate('searchApiPanels.welcomeBanner.githubLink.javascript.label', {
|
||||
defaultMessage: 'elasticsearch',
|
||||
})}
|
||||
http={http}
|
||||
pluginId={pluginId}
|
||||
/>
|
||||
);
|
||||
case Languages.RUBY:
|
||||
return (
|
||||
<GithubLink
|
||||
href="https://github.com/elastic/elasticsearch-ruby"
|
||||
label={i18n.translate('searchApiPanels.welcomeBanner.githubLink.ruby.label', {
|
||||
defaultMessage: 'elasticsearch-ruby',
|
||||
})}
|
||||
http={http}
|
||||
pluginId={pluginId}
|
||||
/>
|
||||
);
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
export const InstallClientPanel: React.FC<InstallClientProps> = ({
|
||||
codeSnippet,
|
||||
showTryInConsole,
|
||||
language,
|
||||
languages,
|
||||
setSelectedLanguage,
|
||||
http,
|
||||
pluginId,
|
||||
application,
|
||||
sharePlugin,
|
||||
isPanelLeft = true,
|
||||
overviewPanelProps,
|
||||
}) => {
|
||||
const panelContent = (
|
||||
<>
|
||||
<CodeBox
|
||||
showTryInConsole={showTryInConsole}
|
||||
codeSnippet={codeSnippet}
|
||||
languageType="shell"
|
||||
languages={languages}
|
||||
selectedLanguage={language}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={pluginId}
|
||||
application={application}
|
||||
sharePlugin={sharePlugin}
|
||||
/>
|
||||
<EuiSpacer />
|
||||
<Link language={language.id} http={http} pluginId={pluginId} />
|
||||
<EuiSpacer />
|
||||
<EuiCallOut
|
||||
iconType="iInCircle"
|
||||
title={i18n.translate('searchApiPanels.welcomeBanner.apiCallOut.title', {
|
||||
defaultMessage: 'Call the API with Console',
|
||||
})}
|
||||
color="primary"
|
||||
>
|
||||
<EuiText size="s">
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.apiCallout.content', {
|
||||
defaultMessage:
|
||||
'Console enables you to call Elasticsearch and Kibana REST APIs directly, without needing to install a language client.',
|
||||
})}
|
||||
</EuiText>
|
||||
</EuiCallOut>
|
||||
</>
|
||||
);
|
||||
return (
|
||||
<OverviewPanel
|
||||
description={i18n.translate('searchApiPanels.welcomeBanner.installClient.description', {
|
||||
defaultMessage:
|
||||
'Elastic builds and maintains clients in several popular languages and our community has contributed many more. Install your favorite language client to get started.',
|
||||
})}
|
||||
links={[
|
||||
{
|
||||
href: language.docLink,
|
||||
label: i18n.translate('searchApiPanels.welcomeBanner.installClient.clientDocLink', {
|
||||
defaultMessage: '{languageName} client documentation',
|
||||
values: { languageName: language.name },
|
||||
}),
|
||||
},
|
||||
]}
|
||||
title={i18n.translate('searchApiPanels.welcomeBanner.installClient.title', {
|
||||
defaultMessage: 'Install a client',
|
||||
})}
|
||||
leftPanelContent={isPanelLeft ? panelContent : undefined}
|
||||
rightPanelContent={!isPanelLeft ? panelContent : undefined}
|
||||
overviewPanelProps={overviewPanelProps}
|
||||
/>
|
||||
);
|
||||
};
|
|
@ -1,10 +1,13 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import {
|
||||
EuiThemeProvider,
|
||||
EuiPanel,
|
||||
|
@ -16,13 +19,22 @@ import {
|
|||
EuiText,
|
||||
EuiLink,
|
||||
} from '@elastic/eui';
|
||||
import { HttpStart } from '@kbn/core-http-browser';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import React from 'react';
|
||||
import { docLinks } from '../../../../common/doc_links';
|
||||
import { LEARN_MORE_LABEL } from '../../../../common/i18n_string';
|
||||
import { GithubLink } from '../shared/github_link';
|
||||
import { LEARN_MORE_LABEL } from '../constants';
|
||||
import { GithubLink } from './github_link';
|
||||
|
||||
export const IntegrationsPanel: React.FC = () => {
|
||||
export interface IntegrationsPanelProps {
|
||||
docLinks: any;
|
||||
http: HttpStart;
|
||||
pluginId: string;
|
||||
}
|
||||
|
||||
export const IntegrationsPanel: React.FC<IntegrationsPanelProps> = ({
|
||||
docLinks,
|
||||
http,
|
||||
pluginId,
|
||||
}) => {
|
||||
return (
|
||||
<EuiThemeProvider colorMode="dark">
|
||||
<EuiPanel paddingSize="xl">
|
||||
|
@ -33,7 +45,7 @@ export const IntegrationsPanel: React.FC = () => {
|
|||
<EuiFlexItem>
|
||||
<EuiTitle size="l">
|
||||
<h3>
|
||||
{i18n.translate('xpack.serverlessSearch.ingestData.logstashTitle', {
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.ingestData.logstashTitle', {
|
||||
defaultMessage: 'Logstash',
|
||||
})}
|
||||
</h3>
|
||||
|
@ -42,7 +54,7 @@ export const IntegrationsPanel: React.FC = () => {
|
|||
<EuiSpacer size="xs" />
|
||||
<EuiText size="s">
|
||||
<p>
|
||||
{i18n.translate('xpack.serverlessSearch.ingestData.logstashDescription', {
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.ingestData.logstashDescription', {
|
||||
defaultMessage:
|
||||
'Add data to your data stream or index to make it searchable. Choose an ingestion method that fits your application and workflow.',
|
||||
})}
|
||||
|
@ -60,9 +72,11 @@ export const IntegrationsPanel: React.FC = () => {
|
|||
<EuiFlexItem>
|
||||
<GithubLink
|
||||
href="https://github.com/elastic/logstash"
|
||||
label={i18n.translate('xpack.serverlessSearch.ingestData.logstashLink', {
|
||||
label={i18n.translate('searchApiPanels.welcomeBanner.ingestData.logstashLink', {
|
||||
defaultMessage: 'Logstash',
|
||||
})}
|
||||
http={http}
|
||||
pluginId={pluginId}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
|
@ -76,14 +90,14 @@ export const IntegrationsPanel: React.FC = () => {
|
|||
<EuiFlexItem>
|
||||
<EuiTitle size="l">
|
||||
<h3>
|
||||
{i18n.translate('xpack.serverlessSearch.ingestData.beatsTitle', {
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.ingestData.beatsTitle', {
|
||||
defaultMessage: 'Beats',
|
||||
})}
|
||||
</h3>
|
||||
</EuiTitle>
|
||||
<EuiSpacer size="xs" />
|
||||
<EuiText size="s">
|
||||
{i18n.translate('xpack.serverlessSearch.ingestData.beatsDescription', {
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.ingestData.beatsDescription', {
|
||||
defaultMessage:
|
||||
'Lightweight, single-purpose data shippers for Elasticsearch. Use Beats to send operational data from your servers.',
|
||||
})}
|
||||
|
@ -100,9 +114,11 @@ export const IntegrationsPanel: React.FC = () => {
|
|||
<EuiFlexItem>
|
||||
<GithubLink
|
||||
href="https://github.com/elastic/beats"
|
||||
label={i18n.translate('xpack.serverlessSearch.ingestData.beatsLink', {
|
||||
label={i18n.translate('searchApiPanels.welcomeBanner.ingestData.beatsLink', {
|
||||
defaultMessage: 'beats',
|
||||
})}
|
||||
http={http}
|
||||
pluginId={pluginId}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
|
@ -116,14 +132,14 @@ export const IntegrationsPanel: React.FC = () => {
|
|||
<EuiFlexItem>
|
||||
<EuiTitle size="l">
|
||||
<h3>
|
||||
{i18n.translate('xpack.serverlessSearch.ingestData.connectorsTitle', {
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.ingestData.connectorsTitle', {
|
||||
defaultMessage: 'Connector Client',
|
||||
})}
|
||||
</h3>
|
||||
</EuiTitle>
|
||||
<EuiSpacer size="xs" />
|
||||
<EuiText size="s">
|
||||
{i18n.translate('xpack.serverlessSearch.ingestData.connectorsDescription', {
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.ingestData.connectorsDescription', {
|
||||
defaultMessage:
|
||||
'Specialized integrations for syncing data from third-party sources to Elasticsearch. Use Elastic Connectors to sync content from a range of databases and object stores.',
|
||||
})}
|
||||
|
@ -140,9 +156,14 @@ export const IntegrationsPanel: React.FC = () => {
|
|||
<EuiFlexItem>
|
||||
<GithubLink
|
||||
href="https://github.com/elastic/connectors-python"
|
||||
label={i18n.translate('xpack.serverlessSearch.ingestData.connectorsPythonLink', {
|
||||
defaultMessage: 'connectors-python',
|
||||
})}
|
||||
label={i18n.translate(
|
||||
'searchApiPanels.welcomeBanner.ingestData.connectorsPythonLink',
|
||||
{
|
||||
defaultMessage: 'connectors-python',
|
||||
}
|
||||
)}
|
||||
http={http}
|
||||
pluginId={pluginId}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
|
@ -1,9 +1,13 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import {
|
||||
EuiFlexGroup,
|
||||
EuiFlexItem,
|
||||
|
@ -14,24 +18,29 @@ import {
|
|||
useEuiTheme,
|
||||
} from '@elastic/eui';
|
||||
|
||||
import React from 'react';
|
||||
import { PLUGIN_ID } from '../../../../common';
|
||||
import { useKibanaServices } from '../../hooks/use_kibana';
|
||||
import { LanguageDefinition } from '../languages/types';
|
||||
import type { HttpStart } from '@kbn/core-http-browser';
|
||||
|
||||
import { LanguageDefinition } from '../types';
|
||||
import './select_client.scss';
|
||||
|
||||
interface SelectClientProps {
|
||||
language: LanguageDefinition;
|
||||
setSelectedLanguage: (language: LanguageDefinition) => void;
|
||||
isSelectedLanguage: boolean;
|
||||
http: HttpStart;
|
||||
pluginId?: string;
|
||||
src?: string;
|
||||
}
|
||||
|
||||
export const LanguageClientPanel: React.FC<SelectClientProps> = ({
|
||||
language,
|
||||
setSelectedLanguage,
|
||||
isSelectedLanguage,
|
||||
http,
|
||||
pluginId,
|
||||
src,
|
||||
}) => {
|
||||
const { euiTheme } = useEuiTheme();
|
||||
const { http } = useKibanaServices();
|
||||
|
||||
return (
|
||||
<EuiFlexGroup gutterSize="xs" direction="row">
|
||||
|
@ -51,7 +60,9 @@ export const LanguageClientPanel: React.FC<SelectClientProps> = ({
|
|||
<EuiFlexItem grow={false}>
|
||||
<EuiImage
|
||||
alt=""
|
||||
src={http.basePath.prepend(`/plugins/${PLUGIN_ID}/assets/${language.iconType}`)}
|
||||
src={
|
||||
src || http.basePath.prepend(`/plugins/${pluginId}/assets/${language.iconType}`)
|
||||
}
|
||||
height={euiTheme.size.xl}
|
||||
width={euiTheme.size.xl}
|
||||
/>
|
|
@ -1,10 +1,13 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import {
|
||||
EuiFlexGroup,
|
||||
EuiFlexItem,
|
||||
|
@ -13,15 +16,17 @@ import {
|
|||
EuiPanel,
|
||||
EuiTitle,
|
||||
EuiLink,
|
||||
EuiPanelProps,
|
||||
} from '@elastic/eui';
|
||||
import React from 'react';
|
||||
import { LEARN_MORE_LABEL } from '../../../../common/i18n_string';
|
||||
import { LEARN_MORE_LABEL } from '../constants';
|
||||
|
||||
interface OverviewPanelProps {
|
||||
description?: React.ReactNode | string;
|
||||
leftPanelContent: React.ReactNode;
|
||||
leftPanelContent?: React.ReactNode;
|
||||
links?: Array<{ label: string; href: string }>;
|
||||
rightPanelContent?: React.ReactNode;
|
||||
title: string;
|
||||
overviewPanelProps?: Partial<EuiPanelProps>;
|
||||
}
|
||||
|
||||
export const OverviewPanel: React.FC<OverviewPanelProps> = ({
|
||||
|
@ -29,15 +34,17 @@ export const OverviewPanel: React.FC<OverviewPanelProps> = ({
|
|||
description,
|
||||
leftPanelContent,
|
||||
links,
|
||||
rightPanelContent,
|
||||
title,
|
||||
overviewPanelProps,
|
||||
}) => {
|
||||
return (
|
||||
<>
|
||||
<EuiSpacer size="xxl" />
|
||||
<EuiFlexGroup alignItems="center">
|
||||
<EuiFlexItem grow={6}>{leftPanelContent}</EuiFlexItem>
|
||||
{leftPanelContent && <EuiFlexItem grow={6}>{leftPanelContent}</EuiFlexItem>}
|
||||
<EuiFlexItem grow={4}>
|
||||
<EuiPanel color="subdued">
|
||||
<EuiPanel color="subdued" {...overviewPanelProps}>
|
||||
<EuiTitle>
|
||||
<h2>{title}</h2>
|
||||
</EuiTitle>
|
||||
|
@ -62,6 +69,7 @@ export const OverviewPanel: React.FC<OverviewPanelProps> = ({
|
|||
) : null}
|
||||
</EuiPanel>
|
||||
</EuiFlexItem>
|
||||
{rightPanelContent && <EuiFlexItem grow={6}> {rightPanelContent}</EuiFlexItem>}
|
||||
</EuiFlexGroup>
|
||||
<EuiSpacer size="xxl" />
|
||||
</>
|
131
packages/kbn-search-api-panels/components/select_client.tsx
Normal file
131
packages/kbn-search-api-panels/components/select_client.tsx
Normal file
|
@ -0,0 +1,131 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import {
|
||||
EuiCallOut,
|
||||
EuiFlexGroup,
|
||||
EuiFlexItem,
|
||||
EuiLink,
|
||||
EuiPanelProps,
|
||||
EuiSpacer,
|
||||
EuiText,
|
||||
} from '@elastic/eui';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
|
||||
import type { HttpStart } from '@kbn/core-http-browser';
|
||||
import { OverviewPanel } from './overview_panel';
|
||||
import './select_client.scss';
|
||||
|
||||
export interface SelectClientPanelProps {
|
||||
docLinks: { elasticsearchClients: string; kibanaRunApiInConsole: string };
|
||||
http: HttpStart;
|
||||
isPanelLeft?: boolean;
|
||||
overviewPanelProps?: Partial<EuiPanelProps>;
|
||||
}
|
||||
|
||||
export const SelectClientPanel: React.FC<SelectClientPanelProps> = ({
|
||||
docLinks,
|
||||
children,
|
||||
http,
|
||||
isPanelLeft = true,
|
||||
overviewPanelProps,
|
||||
}) => {
|
||||
const panelContent = (
|
||||
<>
|
||||
<EuiFlexGroup direction="column">
|
||||
<EuiFlexItem>
|
||||
<EuiText size="s">
|
||||
<strong>
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.selectClient.heading', {
|
||||
defaultMessage: 'Choose one',
|
||||
})}
|
||||
</strong>
|
||||
</EuiText>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
<EuiSpacer size="s" />
|
||||
<EuiFlexGroup gutterSize="xs" direction="row">
|
||||
{children}
|
||||
</EuiFlexGroup>
|
||||
<EuiSpacer size="l" />
|
||||
<EuiCallOut
|
||||
title={i18n.translate('searchApiPanels.welcomeBanner.selectClient.callout.title', {
|
||||
defaultMessage: 'Try it now in Console',
|
||||
})}
|
||||
size="m"
|
||||
iconType="iInCircle"
|
||||
>
|
||||
<p>
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.selectClient.callout.description', {
|
||||
defaultMessage:
|
||||
'With Console, you can get started right away with our REST API’s. No installation required. ',
|
||||
})}
|
||||
|
||||
<span>
|
||||
<EuiLink target="_blank" href={http.basePath.prepend(`/app/dev_tools#/console`)}>
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.selectClient.callout.link', {
|
||||
defaultMessage: 'Try Console now',
|
||||
})}
|
||||
</EuiLink>
|
||||
</span>
|
||||
</p>
|
||||
</EuiCallOut>
|
||||
</>
|
||||
);
|
||||
return (
|
||||
<OverviewPanel
|
||||
description={
|
||||
<FormattedMessage
|
||||
id="searchApiPanels.welcomeBanner.selectClient.description"
|
||||
defaultMessage="Elastic builds and maintains clients in several popular languages and our community has contributed many more. Select your favorite language client or dive into the {console} to get started."
|
||||
values={{
|
||||
console: (
|
||||
<EuiLink href={http.basePath.prepend(`/app/dev_tools#/console`)}>
|
||||
{i18n.translate(
|
||||
'searchApiPanels.welcomeBanner.selectClient.description.console.link',
|
||||
{
|
||||
defaultMessage: 'Console',
|
||||
}
|
||||
)}
|
||||
</EuiLink>
|
||||
),
|
||||
}}
|
||||
/>
|
||||
}
|
||||
leftPanelContent={isPanelLeft ? panelContent : undefined}
|
||||
rightPanelContent={!isPanelLeft ? panelContent : undefined}
|
||||
links={[
|
||||
{
|
||||
href: docLinks.elasticsearchClients,
|
||||
label: i18n.translate(
|
||||
'searchApiPanels.welcomeBanner.selectClient.elasticsearchClientDocLink',
|
||||
{
|
||||
defaultMessage: 'Elasticsearch clients ',
|
||||
}
|
||||
),
|
||||
},
|
||||
{
|
||||
href: docLinks.kibanaRunApiInConsole,
|
||||
label: i18n.translate(
|
||||
'searchApiPanels.welcomeBanner.selectClient.apiRequestConsoleDocLink',
|
||||
{
|
||||
defaultMessage: 'Run API requests in Console ',
|
||||
}
|
||||
),
|
||||
},
|
||||
]}
|
||||
title={i18n.translate('searchApiPanels.welcomeBanner.selectClient.title', {
|
||||
defaultMessage: 'Select your client',
|
||||
})}
|
||||
overviewPanelProps={overviewPanelProps}
|
||||
/>
|
||||
);
|
||||
};
|
|
@ -1,26 +1,31 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { EuiButtonEmpty } from '@elastic/eui';
|
||||
import type { ApplicationStart } from '@kbn/core-application-browser';
|
||||
import type { SharePluginStart } from '@kbn/share-plugin/public';
|
||||
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import { compressToEncodedURIComponent } from 'lz-string';
|
||||
|
||||
import { useKibanaServices } from '../hooks/use_kibana';
|
||||
|
||||
export interface TryInConsoleButtonProps {
|
||||
request: string;
|
||||
application?: ApplicationStart;
|
||||
sharePlugin: SharePluginStart;
|
||||
}
|
||||
export const TryInConsoleButton = ({ request }: TryInConsoleButtonProps) => {
|
||||
const {
|
||||
application,
|
||||
share: { url },
|
||||
} = useKibanaServices();
|
||||
export const TryInConsoleButton = ({
|
||||
request,
|
||||
application,
|
||||
sharePlugin,
|
||||
}: TryInConsoleButtonProps) => {
|
||||
const { url } = sharePlugin;
|
||||
const canShowDevtools = !!application?.capabilities?.dev_tools?.show;
|
||||
if (!canShowDevtools || !url) return null;
|
||||
|
||||
|
@ -37,7 +42,7 @@ export const TryInConsoleButton = ({ request }: TryInConsoleButtonProps) => {
|
|||
return (
|
||||
<EuiButtonEmpty href={consolePreviewLink} iconType="popout" target="_blank">
|
||||
<FormattedMessage
|
||||
id="xpack.serverlessSearch.tryInConsoleButton"
|
||||
id="searchApiPanels.welcomeBanner.tryInConsoleButton"
|
||||
defaultMessage="Try in console"
|
||||
/>
|
||||
</EuiButtonEmpty>
|
19
packages/kbn-search-api-panels/constants.ts
Normal file
19
packages/kbn-search-api-panels/constants.ts
Normal file
|
@ -0,0 +1,19 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
export const LEARN_MORE_LABEL: string = i18n.translate(
|
||||
'searchApiPanels.welcomeBanner.panels.learnMore',
|
||||
{
|
||||
defaultMessage: 'Learn more',
|
||||
}
|
||||
);
|
||||
export const API_KEY_PLACEHOLDER = 'your_api_key';
|
||||
export const ELASTICSEARCH_URL_PLACEHOLDER = 'https://your_deployment_url';
|
||||
export const INDEX_NAME_PLACEHOLDER = 'index_name';
|
83
packages/kbn-search-api-panels/index.tsx
Normal file
83
packages/kbn-search-api-panels/index.tsx
Normal file
|
@ -0,0 +1,83 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
import { EuiFlexGroup, EuiFlexItem, EuiTitle, EuiSpacer, EuiImage, EuiText } from '@elastic/eui';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
export * from './components/code_box';
|
||||
export * from './components/github_link';
|
||||
export * from './components/ingest_data';
|
||||
export * from './components/integrations_panel';
|
||||
export * from './components/language_client_panel';
|
||||
export * from './components/overview_panel';
|
||||
export * from './components/select_client';
|
||||
export * from './components/try_in_console_button';
|
||||
export * from './components/install_client';
|
||||
|
||||
export * from './types';
|
||||
|
||||
export interface WelcomeBannerProps {
|
||||
userProfile: {
|
||||
user: {
|
||||
full_name?: string;
|
||||
username?: string;
|
||||
};
|
||||
};
|
||||
assetBasePath?: string;
|
||||
image?: string;
|
||||
showDescription?: boolean;
|
||||
}
|
||||
|
||||
export const WelcomeBanner: React.FC<WelcomeBannerProps> = ({
|
||||
userProfile,
|
||||
assetBasePath,
|
||||
image,
|
||||
showDescription = true,
|
||||
}) => (
|
||||
<EuiFlexGroup justifyContent="spaceBetween">
|
||||
<EuiFlexItem grow={false}>
|
||||
{/* Reversing column direction here so screenreaders keep h1 as the first element */}
|
||||
<EuiFlexGroup justifyContent="flexStart" direction="columnReverse" gutterSize="s">
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiTitle className="serverlessSearchHeaderTitle" size="s">
|
||||
<h1>
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.header.title', {
|
||||
defaultMessage: 'Get started with Elasticsearch',
|
||||
})}
|
||||
</h1>
|
||||
</EuiTitle>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiTitle size="xxxs">
|
||||
<h2>
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.header.greeting.title', {
|
||||
defaultMessage: 'Hi {name}!',
|
||||
values: { name: userProfile?.user?.full_name || userProfile?.user?.username },
|
||||
})}
|
||||
</h2>
|
||||
</EuiTitle>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
<EuiSpacer />
|
||||
{showDescription && (
|
||||
<EuiText>
|
||||
{i18n.translate('searchApiPanels.welcomeBanner.header.description', {
|
||||
defaultMessage:
|
||||
"Set up your programming language client, ingest some data, and you'll be ready to start searching within minutes.",
|
||||
})}
|
||||
</EuiText>
|
||||
)}
|
||||
<EuiSpacer size="xxl" />
|
||||
</EuiFlexItem>
|
||||
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiImage alt="" src={image ? image : `${assetBasePath}serverless_header.png`} size="554px" />
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
);
|
13
packages/kbn-search-api-panels/jest.config.js
Normal file
13
packages/kbn-search-api-panels/jest.config.js
Normal file
|
@ -0,0 +1,13 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
module.exports = {
|
||||
preset: '@kbn/test',
|
||||
rootDir: '../..',
|
||||
roots: ['<rootDir>/packages/kbn-search-api-panels'],
|
||||
};
|
5
packages/kbn-search-api-panels/kibana.jsonc
Normal file
5
packages/kbn-search-api-panels/kibana.jsonc
Normal file
|
@ -0,0 +1,5 @@
|
|||
{
|
||||
"type": "shared-common",
|
||||
"id": "@kbn/search-api-panels",
|
||||
"owner": "@elastic/enterprise-search-frontend"
|
||||
}
|
6
packages/kbn-search-api-panels/package.json
Normal file
6
packages/kbn-search-api-panels/package.json
Normal file
|
@ -0,0 +1,6 @@
|
|||
{
|
||||
"name": "@kbn/search-api-panels",
|
||||
"private": true,
|
||||
"version": "1.0.0",
|
||||
"license": "SSPL-1.0 OR Elastic License 2.0"
|
||||
}
|
25
packages/kbn-search-api-panels/tsconfig.json
Normal file
25
packages/kbn-search-api-panels/tsconfig.json
Normal file
|
@ -0,0 +1,25 @@
|
|||
{
|
||||
"extends": "../../tsconfig.base.json",
|
||||
"compilerOptions": {
|
||||
"outDir": "target/types",
|
||||
"types": [
|
||||
"jest",
|
||||
"node",
|
||||
"react"
|
||||
]
|
||||
},
|
||||
"include": [
|
||||
"**/*.ts",
|
||||
"**/*.tsx",
|
||||
],
|
||||
"exclude": [
|
||||
"target/**/*"
|
||||
],
|
||||
"kbn_references": [
|
||||
"@kbn/i18n",
|
||||
"@kbn/core-http-browser",
|
||||
"@kbn/core-application-browser",
|
||||
"@kbn/share-plugin",
|
||||
"@kbn/i18n-react"
|
||||
]
|
||||
}
|
|
@ -1,8 +1,9 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
* 2.0 and the Server Side Public License, v 1; you may not use this file except
|
||||
* in compliance with, at your election, the Elastic License 2.0 or the Server
|
||||
* Side Public License, v 1.
|
||||
*/
|
||||
|
||||
export enum Languages {
|
|
@ -1170,6 +1170,8 @@
|
|||
"@kbn/screenshotting-example-plugin/*": ["x-pack/examples/screenshotting_example/*"],
|
||||
"@kbn/screenshotting-plugin": ["x-pack/plugins/screenshotting"],
|
||||
"@kbn/screenshotting-plugin/*": ["x-pack/plugins/screenshotting/*"],
|
||||
"@kbn/search-api-panels": ["packages/kbn-search-api-panels"],
|
||||
"@kbn/search-api-panels/*": ["packages/kbn-search-api-panels/*"],
|
||||
"@kbn/search-examples-plugin": ["examples/search_examples"],
|
||||
"@kbn/search-examples-plugin/*": ["examples/search_examples/*"],
|
||||
"@kbn/search-response-warnings": ["packages/kbn-search-response-warnings"],
|
||||
|
|
|
@ -61,6 +61,7 @@ export const mockKibanaValues = {
|
|||
setDocTitle: jest.fn(),
|
||||
share: sharePluginMock.createStartContract(),
|
||||
uiSettings: uiSettingsServiceMock.createStartContract(),
|
||||
userProfile: {},
|
||||
};
|
||||
|
||||
jest.mock('../../shared/kibana', () => ({
|
||||
|
|
|
@ -0,0 +1,404 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React, { useState } from 'react';
|
||||
|
||||
import { css } from '@emotion/react';
|
||||
import { useActions, useValues } from 'kea';
|
||||
|
||||
import {
|
||||
EuiButton,
|
||||
EuiCodeBlock,
|
||||
EuiFlexGroup,
|
||||
EuiFlexItem,
|
||||
EuiPanel,
|
||||
EuiSpacer,
|
||||
EuiSplitPanel,
|
||||
EuiText,
|
||||
EuiThemeProvider,
|
||||
EuiTitle,
|
||||
} from '@elastic/eui';
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { useKibana } from '@kbn/kibana-react-plugin/public';
|
||||
import {
|
||||
SelectClientPanel,
|
||||
LanguageClientPanel,
|
||||
InstallClientPanel,
|
||||
OverviewPanel,
|
||||
CodeBox,
|
||||
} from '@kbn/search-api-panels';
|
||||
|
||||
import { LanguageDefinition } from '@kbn/search-api-panels';
|
||||
|
||||
import { KibanaDeps } from '../../../../../../../common/types';
|
||||
|
||||
import { icons } from '../../../../../../assets/client_libraries';
|
||||
import { useCloudDetails } from '../../../../../shared/cloud_details/cloud_details';
|
||||
import { docLinks } from '../../../../../shared/doc_links';
|
||||
|
||||
import { HttpLogic } from '../../../../../shared/http';
|
||||
import { KibanaLogic } from '../../../../../shared/kibana';
|
||||
import { IndexViewLogic } from '../../index_view_logic';
|
||||
import { OverviewLogic } from '../../overview.logic';
|
||||
import { GenerateApiKeyModal } from '../generate_api_key_modal/modal';
|
||||
|
||||
import { javascriptDefinition } from './languages/javascript';
|
||||
import { languageDefinitions } from './languages/languages';
|
||||
import { getCodeSnippet, showTryInConsole } from './languages/utils';
|
||||
|
||||
const DEFAULT_URL = 'https://localhost:9200';
|
||||
|
||||
export const APIGettingStarted = () => {
|
||||
const { http } = useValues(HttpLogic);
|
||||
const { apiKey, isGenerateModalOpen } = useValues(OverviewLogic);
|
||||
const { openGenerateModal, closeGenerateModal } = useActions(OverviewLogic);
|
||||
const { indexName } = useValues(IndexViewLogic);
|
||||
const { services } = useKibana<KibanaDeps>();
|
||||
const { isCloud } = useValues(KibanaLogic);
|
||||
|
||||
const cloudContext = useCloudDetails();
|
||||
|
||||
const codeArgs = {
|
||||
apiKey,
|
||||
url: cloudContext.elasticsearchUrl || DEFAULT_URL,
|
||||
};
|
||||
|
||||
const [selectedLanguage, setSelectedLanguage] =
|
||||
useState<LanguageDefinition>(javascriptDefinition);
|
||||
return (
|
||||
<>
|
||||
{isGenerateModalOpen && (
|
||||
<GenerateApiKeyModal indexName={indexName} onClose={closeGenerateModal} />
|
||||
)}
|
||||
<EuiTitle size="l">
|
||||
<h2>
|
||||
{i18n.translate('xpack.enterpriseSearch.content.overview.gettingStarted.pageTitle', {
|
||||
defaultMessage: 'Getting Started with Elastic API',
|
||||
})}
|
||||
</h2>
|
||||
</EuiTitle>
|
||||
<SelectClientPanel
|
||||
docLinks={{
|
||||
elasticsearchClients: docLinks.clientsGuide,
|
||||
kibanaRunApiInConsole: docLinks.consoleGuide,
|
||||
}}
|
||||
http={http}
|
||||
isPanelLeft={false}
|
||||
overviewPanelProps={{ color: 'plain', hasShadow: false }}
|
||||
>
|
||||
{languageDefinitions.map((language, index) => (
|
||||
<EuiFlexItem key={`panelItem.${index}`}>
|
||||
<LanguageClientPanel
|
||||
language={language}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
isSelectedLanguage={selectedLanguage === language}
|
||||
http={http}
|
||||
src={icons[language.id]}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
))}
|
||||
</SelectClientPanel>
|
||||
<InstallClientPanel
|
||||
codeSnippet={getCodeSnippet(selectedLanguage, 'installClient', codeArgs)}
|
||||
showTryInConsole={showTryInConsole('installClient')}
|
||||
languages={languageDefinitions}
|
||||
language={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={''}
|
||||
application={services.application}
|
||||
sharePlugin={services.share}
|
||||
isPanelLeft={false}
|
||||
overviewPanelProps={{ color: 'plain', hasShadow: false }}
|
||||
/>
|
||||
|
||||
<OverviewPanel
|
||||
description={i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.gettingStarted.generateApiKeyPanel.description',
|
||||
{
|
||||
defaultMessage:
|
||||
"You'll need your private API key to securely connect to your project. Copy it somewhere safe.",
|
||||
}
|
||||
)}
|
||||
rightPanelContent={
|
||||
<EuiPanel>
|
||||
<EuiFlexGroup direction="column">
|
||||
<EuiFlexItem>
|
||||
<EuiTitle size="xs">
|
||||
<h5>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.gettingStarted.generateApiKeyPanel.apiKeytitle',
|
||||
{
|
||||
defaultMessage: 'Generate an API key',
|
||||
}
|
||||
)}
|
||||
</h5>
|
||||
</EuiTitle>
|
||||
<EuiSpacer size="s" />
|
||||
<EuiText>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.gettingStarted.generateApiKeyPanel.apiKeydesc',
|
||||
{
|
||||
defaultMessage:
|
||||
'Your private, unique identifier for authentication and authorization.',
|
||||
}
|
||||
)}
|
||||
</EuiText>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<EuiFlexGroup direction="row" gutterSize="s">
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiButton
|
||||
key="viewApiKeys"
|
||||
iconType="plusInCircle"
|
||||
onClick={openGenerateModal}
|
||||
fill
|
||||
>
|
||||
<EuiText>
|
||||
<p>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.documementExample.generateApiKeyButton.createNew',
|
||||
{ defaultMessage: 'New' }
|
||||
)}
|
||||
</p>
|
||||
</EuiText>
|
||||
</EuiButton>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiButton
|
||||
key="viewApiKeys"
|
||||
iconType="popout"
|
||||
iconSide="right"
|
||||
onClick={() =>
|
||||
KibanaLogic.values.navigateToUrl('/app/management/security/api_keys', {
|
||||
shouldNotCreateHref: true,
|
||||
})
|
||||
}
|
||||
>
|
||||
<EuiText>
|
||||
<p>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.documementExample.generateApiKeyButton.viewAll',
|
||||
{ defaultMessage: 'Manage' }
|
||||
)}
|
||||
</p>
|
||||
</EuiText>
|
||||
</EuiButton>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</EuiPanel>
|
||||
}
|
||||
links={[]}
|
||||
title={i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.gettingStarted.generateApiKeyPanel.panelTitle',
|
||||
{
|
||||
defaultMessage: 'Generate an API key',
|
||||
}
|
||||
)}
|
||||
overviewPanelProps={{ color: 'plain', hasShadow: false }}
|
||||
/>
|
||||
|
||||
<OverviewPanel
|
||||
description={
|
||||
isCloud
|
||||
? i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.gettingStarted.cloudId.description',
|
||||
{
|
||||
defaultMessage: "You'll need this to identify your deployment.",
|
||||
}
|
||||
)
|
||||
: i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.gettingStarted.cloudId.descriptionElastic',
|
||||
{
|
||||
defaultMessage: "You'll need this to connect your elasticsearch deployment.",
|
||||
}
|
||||
)
|
||||
}
|
||||
rightPanelContent={
|
||||
<EuiSplitPanel.Outer>
|
||||
<EuiSplitPanel.Inner>
|
||||
<EuiTitle size="xs">
|
||||
<h5>
|
||||
{isCloud
|
||||
? i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.gettingStarted.cloudId.cloudTitle',
|
||||
{
|
||||
defaultMessage: 'Store your unique Cloud ID',
|
||||
}
|
||||
)
|
||||
: i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.gettingStarted.cloudId.elasticTitle',
|
||||
{
|
||||
defaultMessage: 'Store your elasticsearch URL',
|
||||
}
|
||||
)}
|
||||
</h5>
|
||||
</EuiTitle>
|
||||
<EuiText>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.gettingStarted.cloudId.desc',
|
||||
{
|
||||
defaultMessage: 'Unique identifier for your deployment. ',
|
||||
}
|
||||
)}
|
||||
</EuiText>
|
||||
</EuiSplitPanel.Inner>
|
||||
<EuiThemeProvider colorMode="dark">
|
||||
<EuiSplitPanel.Inner paddingSize="none">
|
||||
<EuiCodeBlock
|
||||
isCopyable
|
||||
fontSize="m"
|
||||
// Code block isn't respecting overflow in only this situation
|
||||
css={css`
|
||||
overflow-wrap: anywhere;
|
||||
`}
|
||||
>
|
||||
{codeArgs.url}
|
||||
</EuiCodeBlock>
|
||||
</EuiSplitPanel.Inner>
|
||||
</EuiThemeProvider>
|
||||
</EuiSplitPanel.Outer>
|
||||
}
|
||||
links={[]}
|
||||
title={
|
||||
isCloud
|
||||
? i18n.translate(
|
||||
'xpack.enterpriseSearch.overview.gettingStarted.cloudId.panelTitleCloud',
|
||||
{
|
||||
defaultMessage: 'Copy your Cloud ID',
|
||||
}
|
||||
)
|
||||
: i18n.translate(
|
||||
'xpack.enterpriseSearch.overview.gettingStarted.cloudId.panelTitleElastic',
|
||||
{
|
||||
defaultMessage: 'Copy your elasticsearch URL',
|
||||
}
|
||||
)
|
||||
}
|
||||
overviewPanelProps={{ color: 'plain', hasShadow: false }}
|
||||
/>
|
||||
|
||||
<OverviewPanel
|
||||
description={i18n.translate(
|
||||
'xpack.enterpriseSearch.overview.gettingStarted.configureClient.description',
|
||||
{
|
||||
defaultMessage: 'Initialize your client with your unique API key and Cloud ID',
|
||||
}
|
||||
)}
|
||||
rightPanelContent={
|
||||
<CodeBox
|
||||
languages={languageDefinitions}
|
||||
codeSnippet={getCodeSnippet(selectedLanguage, 'configureClient', codeArgs)}
|
||||
showTryInConsole={showTryInConsole('configureClient')}
|
||||
selectedLanguage={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={''}
|
||||
application={services.application}
|
||||
sharePlugin={services.share}
|
||||
/>
|
||||
}
|
||||
links={[]}
|
||||
title={i18n.translate(
|
||||
'xpack.enterpriseSearch.overview.gettingStarted.configureClient.title',
|
||||
{
|
||||
defaultMessage: 'Configure your client',
|
||||
}
|
||||
)}
|
||||
overviewPanelProps={{ color: 'plain', hasShadow: false }}
|
||||
/>
|
||||
|
||||
<OverviewPanel
|
||||
description={i18n.translate(
|
||||
'xpack.enterpriseSearch.overview.gettingStarted.testConnection.description',
|
||||
{
|
||||
defaultMessage:
|
||||
'Send a test request to confirm your language client and Elasticsearch instance are up and running.',
|
||||
}
|
||||
)}
|
||||
rightPanelContent={
|
||||
<CodeBox
|
||||
languages={languageDefinitions}
|
||||
codeSnippet={getCodeSnippet(selectedLanguage, 'testConnection', codeArgs)}
|
||||
showTryInConsole={showTryInConsole('testConnection')}
|
||||
selectedLanguage={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={''}
|
||||
application={services.application}
|
||||
sharePlugin={services.share}
|
||||
/>
|
||||
}
|
||||
links={[]}
|
||||
title={i18n.translate(
|
||||
'xpack.enterpriseSearch.overview.gettingStarted.testConnection.title',
|
||||
{
|
||||
defaultMessage: 'Test your connection',
|
||||
}
|
||||
)}
|
||||
overviewPanelProps={{ color: 'plain', hasShadow: false }}
|
||||
/>
|
||||
<OverviewPanel
|
||||
description={i18n.translate(
|
||||
'xpack.enterpriseSearch.overview.gettingStarted.ingestData.description',
|
||||
{
|
||||
defaultMessage: 'Add data to your data stream or index to make it searchable',
|
||||
}
|
||||
)}
|
||||
rightPanelContent={
|
||||
<CodeBox
|
||||
languages={languageDefinitions}
|
||||
codeSnippet={getCodeSnippet(selectedLanguage, 'ingestData', codeArgs)}
|
||||
showTryInConsole={showTryInConsole('ingestData')}
|
||||
selectedLanguage={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={''}
|
||||
application={services.application}
|
||||
sharePlugin={services.share}
|
||||
/>
|
||||
}
|
||||
links={[]}
|
||||
title={i18n.translate('xpack.enterpriseSearch.overview.gettingStarted.ingestData.title', {
|
||||
defaultMessage: 'Ingest Data',
|
||||
})}
|
||||
overviewPanelProps={{ color: 'plain', hasShadow: false }}
|
||||
/>
|
||||
|
||||
<OverviewPanel
|
||||
description={i18n.translate(
|
||||
'xpack.enterpriseSearch.overview.gettingStarted.searchQuery.description',
|
||||
{
|
||||
defaultMessage:
|
||||
"Now you're ready to start experimenting with searching and performing aggregations on your Elasticsearch data.",
|
||||
}
|
||||
)}
|
||||
rightPanelContent={
|
||||
<CodeBox
|
||||
languages={languageDefinitions}
|
||||
codeSnippet={getCodeSnippet(selectedLanguage, 'buildSearchQuery', codeArgs)}
|
||||
showTryInConsole={showTryInConsole('buildSearchQuery')}
|
||||
selectedLanguage={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={''}
|
||||
application={services.application}
|
||||
sharePlugin={services.share}
|
||||
/>
|
||||
}
|
||||
links={[]}
|
||||
title={i18n.translate('xpack.enterpriseSearch.overview.gettingStarted.searchQuery.title', {
|
||||
defaultMessage: 'Build your first search query',
|
||||
})}
|
||||
overviewPanelProps={{ color: 'plain', hasShadow: false }}
|
||||
/>
|
||||
</>
|
||||
);
|
||||
};
|
|
@ -0,0 +1,32 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { LanguageDefinition } from '@kbn/search-api-panels';
|
||||
|
||||
export const consoleDefinition: Partial<LanguageDefinition> = {
|
||||
buildSearchQuery: `POST /books/_search?pretty
|
||||
{
|
||||
"query": {
|
||||
"query_string": {
|
||||
"query": "snow"
|
||||
}
|
||||
}
|
||||
}`,
|
||||
ingestData: `POST _bulk?pretty
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "Snow Crash", "author": "Neal Stephenson", "release_date": "1992-06-01", "page_count": 470}
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "Revelation Space", "author": "Alastair Reynolds", "release_date": "2000-03-15", "page_count": 585}
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "1984", "author": "George Orwell", "release_date": "1985-06-01", "page_count": 328}
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "Fahrenheit 451", "author": "Ray Bradbury", "release_date": "1953-10-15", "page_count": 227}
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "Brave New World", "author": "Aldous Huxley", "release_date": "1932-06-01", "page_count": 268}
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "The Handmaid's Tale", "author": "Margaret Atwood", "release_date": "1985-06-01", "page_count": 311}`,
|
||||
};
|
|
@ -0,0 +1,10 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
export const API_KEY_PLACEHOLDER = 'your_api_key';
|
||||
export const ELASTICSEARCH_URL_PLACEHOLDER = 'https://your_deployment_url';
|
||||
export const INDEX_NAME_PLACEHOLDER = 'index_name';
|
|
@ -0,0 +1,60 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
|
||||
import { docLinks } from '../../../../../../shared/doc_links';
|
||||
|
||||
export const curlDefinition: LanguageDefinition = {
|
||||
buildSearchQuery: `curl -X POST "\$\{ES_URL\}/books/_search?pretty" \\
|
||||
-H "Authorization: ApiKey "\$\{API_KEY\}"" \\
|
||||
-H "Content-Type: application/json" \\
|
||||
-d'
|
||||
{
|
||||
"query": {
|
||||
"query_string": {
|
||||
"query": "snow"
|
||||
}
|
||||
}
|
||||
}'`,
|
||||
configureClient: ({ apiKey, url }) => `export ES_URL="${url}"
|
||||
export API_KEY="${apiKey}"`,
|
||||
docLink: docLinks.restApis,
|
||||
iconType: 'curl.svg',
|
||||
id: Languages.CURL,
|
||||
ingestData: `curl -X POST "\$\{ES_URL\}/_bulk?pretty" \\
|
||||
-H "Authorization: ApiKey "\$\{API_KEY\}"" \\
|
||||
-H "Content-Type: application/json" \\
|
||||
-d'
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "Snow Crash", "author": "Neal Stephenson", "release_date": "1992-06-01", "page_count": 470}
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "Revelation Space", "author": "Alastair Reynolds", "release_date": "2000-03-15", "page_count": 585}
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "1984", "author": "George Orwell", "release_date": "1985-06-01", "page_count": 328}
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "Fahrenheit 451", "author": "Ray Bradbury", "release_date": "1953-10-15", "page_count": 227}
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "Brave New World", "author": "Aldous Huxley", "release_date": "1932-06-01", "page_count": 268}
|
||||
{ "index" : { "_index" : "books" } }
|
||||
{"name": "The Handmaid'"'"'s Tale", "author": "Margaret Atwood", "release_date": "1985-06-01", "page_count": 311}
|
||||
'`,
|
||||
ingestDataIndex: '',
|
||||
installClient: `# if cURL is not already installed on your system
|
||||
# then install it with the package manager of your choice
|
||||
|
||||
# example
|
||||
brew install curl`,
|
||||
name: i18n.translate('xpack.enterpriseSearch.languages.cURL', {
|
||||
defaultMessage: 'cURL',
|
||||
}),
|
||||
languageStyling: 'shell',
|
||||
testConnection: `curl "\$\{ES_URL\}" \\
|
||||
-H "Authorization: ApiKey "\$\{API_KEY\}"" \\
|
||||
-H "Content-Type: application/json"`,
|
||||
};
|
|
@ -0,0 +1,71 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
|
||||
import { docLinks } from '../../../../../../shared/doc_links';
|
||||
|
||||
export const goDefinition: LanguageDefinition = {
|
||||
buildSearchQuery: `searchResp, err := es.Search().
|
||||
Index("books").
|
||||
Q("snow").
|
||||
Do(context.Background())
|
||||
|
||||
fmt.Println(searchResp, err)`,
|
||||
configureClient: ({ url, apiKey }) => `import (
|
||||
"context"
|
||||
"fmt"
|
||||
"log"
|
||||
"strings"
|
||||
|
||||
"github.com/elastic/elasticsearch-serverless-go"
|
||||
)
|
||||
|
||||
func main() {
|
||||
cfg := elasticsearch.Config{
|
||||
Address: "${url}",
|
||||
APIKey: "${apiKey}",
|
||||
}
|
||||
es, err := elasticsearch.NewClient(cfg)
|
||||
if err != nil {
|
||||
log.Fatalf("Error creating the client: %s", err)
|
||||
}
|
||||
}`,
|
||||
docLink: docLinks.clientsGoIndex,
|
||||
iconType: 'go.svg',
|
||||
id: Languages.GO,
|
||||
ingestData: `ingestResult, err := es.Bulk().
|
||||
Index("books").
|
||||
Raw(strings.NewReader(\`
|
||||
{"index":{"_id":"9780553351927"}}
|
||||
{"name":"Snow Crash","author":"Neal Stephenson","release_date":"1992-06-01","page_count": 470}
|
||||
{ "index": { "_id": "9780441017225"}}
|
||||
{"name": "Revelation Space", "author": "Alastair Reynolds", "release_date": "2000-03-15", "page_count": 585}
|
||||
{ "index": { "_id": "9780451524935"}}
|
||||
{"name": "1984", "author": "George Orwell", "release_date": "1985-06-01", "page_count": 328}
|
||||
{ "index": { "_id": "9781451673319"}}
|
||||
{"name": "Fahrenheit 451", "author": "Ray Bradbury", "release_date": "1953-10-15", "page_count": 227}
|
||||
{ "index": { "_id": "9780060850524"}}
|
||||
{"name": "Brave New World", "author": "Aldous Huxley", "release_date": "1932-06-01", "page_count": 268}
|
||||
{ "index": { "_id": "9780385490818"}}
|
||||
{"name": "The Handmaid's Tale", "author": "Margaret Atwood", "release_date": "1985-06-01", "page_count": 311}\n\`)).
|
||||
Do(context.Background())
|
||||
|
||||
fmt.Println(ingestResult, err)`,
|
||||
ingestDataIndex: '',
|
||||
installClient: 'go get github.com/elastic/go-elasticsearch/v8@latest',
|
||||
name: i18n.translate('xpack.enterpriseSearch.languages.go', {
|
||||
defaultMessage: 'Go',
|
||||
}),
|
||||
testConnection: `infores, err := es.Info().Do(context.Background())
|
||||
if err != nil {
|
||||
log.Fatalf("Error getting response: %s", err)
|
||||
}
|
||||
|
||||
fmt.Println(infores)`,
|
||||
};
|
|
@ -0,0 +1,86 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
|
||||
import { docLinks } from '../../../../../../shared/doc_links';
|
||||
|
||||
export const javascriptDefinition: LanguageDefinition = {
|
||||
buildSearchQuery: `// Let's search!
|
||||
const searchResult = await client.search({
|
||||
index: 'my-index-name',
|
||||
q: '9HY9SWR'
|
||||
});
|
||||
|
||||
console.log(searchResult.hits.hits)
|
||||
`,
|
||||
configureClient: ({ url, apiKey }) => `const { Client } = require('@elastic/elasticsearch');
|
||||
const client = new Client({
|
||||
node: '${url}',
|
||||
auth: {
|
||||
apiKey: '${apiKey}'
|
||||
}
|
||||
});`,
|
||||
docLink: docLinks.clientsJsIntro,
|
||||
iconType: 'javascript.svg',
|
||||
id: Languages.JAVASCRIPT,
|
||||
ingestData: `// Sample flight data
|
||||
const dataset = [
|
||||
{'flight': '9HY9SWR', 'price': 841.2656419677076, 'delayed': false},
|
||||
{'flight': 'X98CCZO', 'price': 882.9826615595518, 'delayed': false},
|
||||
{'flight': 'UFK2WIZ', 'price': 190.6369038508356, 'delayed': true},
|
||||
];
|
||||
|
||||
// Index with the bulk helper
|
||||
const result = await client.helpers.bulk({
|
||||
datasource: dataset,
|
||||
onDocument (doc) {
|
||||
return { index: { _index: 'my-index-name' }};
|
||||
}
|
||||
});
|
||||
|
||||
console.log(result);
|
||||
/**
|
||||
{
|
||||
total: 3,
|
||||
failed: 0,
|
||||
retry: 0,
|
||||
successful: 3,
|
||||
noop: 0,
|
||||
time: 421,
|
||||
bytes: 293,
|
||||
aborted: false
|
||||
}
|
||||
*/`,
|
||||
ingestDataIndex: '',
|
||||
installClient: 'npm install @elastic/elasticsearch@8',
|
||||
name: i18n.translate('xpack.enterpriseSearch.languages.javascript', {
|
||||
defaultMessage: 'JavaScript',
|
||||
}),
|
||||
testConnection: `const resp = await client.info();
|
||||
|
||||
console.log(resp);
|
||||
/**
|
||||
{
|
||||
name: 'instance-0000000000',
|
||||
cluster_name: 'd9dcd35d12fe46dfaa28ec813f65d57b',
|
||||
cluster_uuid: 'iln8jaivThSezhTkzp0Knw',
|
||||
version: {
|
||||
build_flavor: 'default',
|
||||
build_type: 'docker',
|
||||
build_hash: 'c94b4700cda13820dad5aa74fae6db185ca5c304',
|
||||
build_date: '2022-10-24T16:54:16.433628434Z',
|
||||
build_snapshot: false,
|
||||
lucene_version: '9.4.1',
|
||||
minimum_wire_compatibility_version: '7.17.0',
|
||||
minimum_index_compatibility_version: '7.0.0'
|
||||
},
|
||||
tagline: 'You Know, for Search'
|
||||
}
|
||||
*/`,
|
||||
};
|
|
@ -0,0 +1,26 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
|
||||
import { curlDefinition } from './curl';
|
||||
import { goDefinition } from './go';
|
||||
import { javascriptDefinition } from './javascript';
|
||||
import { phpDefinition } from './php';
|
||||
import { pythonDefinition } from './python';
|
||||
import { rubyDefinition } from './ruby';
|
||||
|
||||
const languageDefinitionRecords: Partial<Record<Languages, LanguageDefinition>> = {
|
||||
[Languages.CURL]: curlDefinition,
|
||||
[Languages.PYTHON]: pythonDefinition,
|
||||
[Languages.JAVASCRIPT]: javascriptDefinition,
|
||||
[Languages.PHP]: phpDefinition,
|
||||
[Languages.GO]: goDefinition,
|
||||
[Languages.RUBY]: rubyDefinition,
|
||||
};
|
||||
|
||||
export const languageDefinitions: LanguageDefinition[] = Object.values(languageDefinitionRecords);
|
|
@ -0,0 +1,118 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
|
||||
import { docLinks } from '../../../../../../shared/doc_links';
|
||||
|
||||
export const phpDefinition: LanguageDefinition = {
|
||||
buildSearchQuery: `$params = [
|
||||
'index' => 'books',
|
||||
'body' => [
|
||||
'q' => 'snow'
|
||||
]
|
||||
];
|
||||
|
||||
$response = $client->search($params);
|
||||
print_r($response->asArray());`,
|
||||
configureClient: ({ url, apiKey }) => `$client = ClientBuilder::create()
|
||||
->setHosts(['${url}'])
|
||||
->setApiKey('${apiKey}')
|
||||
->build();`,
|
||||
docLink: docLinks.clientsPhpOverview,
|
||||
iconType: 'php.svg',
|
||||
id: Languages.PHP,
|
||||
ingestData: `$params = [
|
||||
'body' => [
|
||||
[
|
||||
'index' => [
|
||||
'_index' => 'books',
|
||||
'_id' => '9780553351927',
|
||||
],
|
||||
],
|
||||
[
|
||||
'name' => 'Snow Crash',
|
||||
'author' => 'Neal Stephenson',
|
||||
'release_date' => '1992-06-01',
|
||||
'page_count' => 470,
|
||||
],
|
||||
[
|
||||
'index' => [
|
||||
'_index' => 'books',
|
||||
'_id' => '9780441017225',
|
||||
],
|
||||
],
|
||||
[
|
||||
'name' => 'Revelation Space',
|
||||
'author' => 'Alastair Reynolds',
|
||||
'release_date' => '2000-03-15',
|
||||
'page_count' => 585,
|
||||
],
|
||||
[
|
||||
'index' => [
|
||||
'_index' => 'books',
|
||||
'_id' => '9780451524935',
|
||||
],
|
||||
],
|
||||
[
|
||||
'name' => '1984',
|
||||
'author' => 'George Orwell',
|
||||
'release_date' => '1985-06-01',
|
||||
'page_count' => 328,
|
||||
],
|
||||
[
|
||||
'index' => [
|
||||
'_index' => 'books',
|
||||
'_id' => '9781451673319',
|
||||
],
|
||||
],
|
||||
[
|
||||
'name' => 'Fahrenheit 451',
|
||||
'author' => 'Ray Bradbury',
|
||||
'release_date' => '1953-10-15',
|
||||
'page_count' => 227,
|
||||
],
|
||||
[
|
||||
'index' => [
|
||||
'_index' => 'books',
|
||||
'_id' => '9780060850524',
|
||||
],
|
||||
],
|
||||
[
|
||||
'name' => 'Brave New World',
|
||||
'author' => 'Aldous Huxley',
|
||||
'release_date' => '1932-06-01',
|
||||
'page_count' => 268,
|
||||
],
|
||||
[
|
||||
'index' => [
|
||||
'_index' => 'books',
|
||||
'_id' => '9780385490818',
|
||||
],
|
||||
],
|
||||
[
|
||||
'name' => 'The Handmaid\'s Tale',
|
||||
'author' => 'Margaret Atwood',
|
||||
'release_date' => '1985-06-01',
|
||||
'page_count' => 311,
|
||||
],
|
||||
],
|
||||
];
|
||||
|
||||
$response = $client->bulk($params);
|
||||
echo $response->getStatusCode();
|
||||
echo (string) $response->getBody();`,
|
||||
ingestDataIndex: '',
|
||||
installClient: 'composer require elasticsearch/elasticsearch',
|
||||
name: i18n.translate('xpack.enterpriseSearch.languages.php', {
|
||||
defaultMessage: 'PHP',
|
||||
}),
|
||||
testConnection: `$response = $client->info();
|
||||
echo $response->getStatusCode();
|
||||
echo (string) $response->getBody();`,
|
||||
};
|
|
@ -0,0 +1,50 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
|
||||
import { docLinks } from '../../../../../../shared/doc_links';
|
||||
|
||||
export const pythonDefinition: LanguageDefinition = {
|
||||
buildSearchQuery: `client.search(index="books", q="snow")`,
|
||||
configureClient: ({ url, apiKey }) => `from elasticsearch import Elasticsearch
|
||||
|
||||
client = Elasticsearch(
|
||||
"${url}",
|
||||
api_key="${apiKey}"
|
||||
)`,
|
||||
docLink: docLinks.clientsPythonOverview,
|
||||
iconType: 'python.svg',
|
||||
id: Languages.PYTHON,
|
||||
ingestData: `documents = [
|
||||
{ "index": { "_index": "books", "_id": "9780553351927"}},
|
||||
{"name": "Snow Crash", "author": "Neal Stephenson", "release_date": "1992-06-01", "page_count": 470},
|
||||
{ "index": { "_index": "books", "_id": "9780441017225"}},
|
||||
{"name": "Revelation Space", "author": "Alastair Reynolds", "release_date": "2000-03-15", "page_count": 585},
|
||||
{ "index": { "_index": "books", "_id": "9780451524935"}},
|
||||
{"name": "1984", "author": "George Orwell", "release_date": "1985-06-01", "page_count": 328},
|
||||
{ "index": { "_index": "books", "_id": "9781451673319"}},
|
||||
{"name": "Fahrenheit 451", "author": "Ray Bradbury", "release_date": "1953-10-15", "page_count": 227},
|
||||
{ "index": { "_index": "books", "_id": "9780060850524"}},
|
||||
{"name": "Brave New World", "author": "Aldous Huxley", "release_date": "1932-06-01", "page_count": 268},
|
||||
{ "index": { "_index": "books", "_id": "9780385490818"}},
|
||||
{"name": "The Handmaid's Tale", "author": "Margaret Atwood", "release_date": "1985-06-01", "page_count": 311},
|
||||
]
|
||||
|
||||
client.bulk(operations=documents)`,
|
||||
ingestDataIndex: '',
|
||||
installClient: `python -m pip install elasticsearch
|
||||
|
||||
# If your application uses async/await in Python you can install with the async extra
|
||||
# python -m pip install elasticsearch[async]
|
||||
`,
|
||||
name: i18n.translate('xpack.enterpriseSearch.languages.python', {
|
||||
defaultMessage: 'Python',
|
||||
}),
|
||||
testConnection: `client.info()`,
|
||||
};
|
|
@ -0,0 +1,38 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
|
||||
import { docLinks } from '../../../../../../shared/doc_links';
|
||||
|
||||
export const rubyDefinition: LanguageDefinition = {
|
||||
buildSearchQuery: `client.search(index: 'books', q: 'snow')`,
|
||||
configureClient: ({ url, apiKey }) => `client = ElasticsearchServerless::Client.new(
|
||||
api_key: '${apiKey}',
|
||||
url: '${url}'
|
||||
)
|
||||
`,
|
||||
docLink: docLinks.clientsRubyOverview,
|
||||
iconType: 'ruby.svg',
|
||||
id: Languages.RUBY,
|
||||
ingestData: `documents = [
|
||||
{ index: { _index: 'books', data: {name: "Snow Crash", "author": "Neal Stephenson", "release_date": "1992-06-01", "page_count": 470} } },
|
||||
{ index: { _index: 'books', data: {name: "Revelation Space", "author": "Alastair Reynolds", "release_date": "2000-03-15", "page_count": 585} } },
|
||||
{ index: { _index: 'books', data: {name: "1984", "author": "George Orwell", "release_date": "1985-06-01", "page_count": 328} } },
|
||||
{ index: { _index: 'books', data: {name: "Fahrenheit 451", "author": "Ray Bradbury", "release_date": "1953-10-15", "page_count": 227} } },
|
||||
{ index: { _index: 'books', data: {name: "Brave New World", "author": "Aldous Huxley", "release_date": "1932-06-01", "page_count": 268} } },
|
||||
{ index: { _index: 'books', data: {name: "The Handmaid's Tale", "author": "Margaret Atwood", "release_date": "1985-06-01", "page_count": 311} } }
|
||||
]
|
||||
client.bulk(body: documents)`,
|
||||
ingestDataIndex: '',
|
||||
installClient: `$ gem install elasticsearch -v x.x.x`,
|
||||
name: i18n.translate('xpack.enterpriseSearch.languages.ruby', {
|
||||
defaultMessage: 'Ruby',
|
||||
}),
|
||||
testConnection: `client.info`,
|
||||
};
|
|
@ -0,0 +1,23 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { LanguageDefinition, LanguageDefinitionSnippetArguments } from '@kbn/search-api-panels';
|
||||
|
||||
import { consoleDefinition } from './console';
|
||||
|
||||
export const showTryInConsole = (code: keyof LanguageDefinition) => code in consoleDefinition;
|
||||
|
||||
export const getCodeSnippet = (
|
||||
language: Partial<LanguageDefinition>,
|
||||
key: keyof LanguageDefinition,
|
||||
args: LanguageDefinitionSnippetArguments
|
||||
): string => {
|
||||
const snippetVal = language[key];
|
||||
if (snippetVal === undefined) return '';
|
||||
if (typeof snippetVal === 'string') return snippetVal;
|
||||
return snippetVal(args);
|
||||
};
|
|
@ -1,86 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { useActions, useValues } from 'kea';
|
||||
|
||||
import {
|
||||
EuiPopover,
|
||||
EuiButton,
|
||||
EuiContextMenuPanel,
|
||||
EuiContextMenuItem,
|
||||
EuiText,
|
||||
} from '@elastic/eui';
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
import { KibanaLogic } from '../../../../../shared/kibana';
|
||||
|
||||
import { IndexViewLogic } from '../../index_view_logic';
|
||||
import { OverviewLogic } from '../../overview.logic';
|
||||
|
||||
export const ManageKeysPopover: React.FC = () => {
|
||||
const { isManageKeysPopoverOpen } = useValues(OverviewLogic);
|
||||
const { ingestionMethod } = useValues(IndexViewLogic);
|
||||
const { toggleManageApiKeyPopover, openGenerateModal } = useActions(OverviewLogic);
|
||||
|
||||
return (
|
||||
<EuiPopover
|
||||
isOpen={isManageKeysPopoverOpen}
|
||||
closePopover={toggleManageApiKeyPopover}
|
||||
button={
|
||||
<EuiButton fill iconType="arrowDown" iconSide="right" onClick={toggleManageApiKeyPopover}>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.documentExample.generateApiKeyButton.label',
|
||||
{ defaultMessage: 'Manage API keys' }
|
||||
)}
|
||||
</EuiButton>
|
||||
}
|
||||
>
|
||||
<EuiContextMenuPanel
|
||||
size="s"
|
||||
items={[
|
||||
<EuiContextMenuItem
|
||||
key="viewApiKeys"
|
||||
data-telemetry-id={`entSearchContent-${ingestionMethod}-overview-generateApiKeys-viewApiKeys`}
|
||||
icon="eye"
|
||||
onClick={() =>
|
||||
KibanaLogic.values.navigateToUrl('/app/management/security/api_keys', {
|
||||
shouldNotCreateHref: true,
|
||||
})
|
||||
}
|
||||
>
|
||||
<EuiText>
|
||||
<p>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.documementExample.generateApiKeyButton.viewAll',
|
||||
{ defaultMessage: 'View all API keys' }
|
||||
)}
|
||||
</p>
|
||||
</EuiText>
|
||||
</EuiContextMenuItem>,
|
||||
<EuiContextMenuItem
|
||||
key="createNewApiKey"
|
||||
data-telemetry-id={`entSearchContent-${ingestionMethod}-overview-generateApiKeys-createNewApiKey`}
|
||||
icon="plusInCircle"
|
||||
onClick={openGenerateModal}
|
||||
>
|
||||
<EuiText>
|
||||
<p>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.documementExample.generateApiKeyButton.createNew',
|
||||
{ defaultMessage: 'Create a new API key' }
|
||||
)}
|
||||
</p>
|
||||
</EuiText>
|
||||
</EuiContextMenuItem>,
|
||||
]}
|
||||
/>
|
||||
</EuiPopover>
|
||||
);
|
||||
};
|
|
@ -5,45 +5,24 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import React, { useState } from 'react';
|
||||
import React from 'react';
|
||||
|
||||
import { useActions, useValues } from 'kea';
|
||||
|
||||
import {
|
||||
EuiEmptyPrompt,
|
||||
EuiFlexGroup,
|
||||
EuiFlexItem,
|
||||
EuiLink,
|
||||
EuiPanel,
|
||||
EuiSwitch,
|
||||
EuiText,
|
||||
EuiTitle,
|
||||
} from '@elastic/eui';
|
||||
import { EuiEmptyPrompt, EuiFlexGroup, EuiFlexItem, EuiPanel } from '@elastic/eui';
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
|
||||
import { docLinks } from '../../../shared/doc_links';
|
||||
import { DOCUMENTS_API_JSON_EXAMPLE } from '../new_index/constants';
|
||||
|
||||
import { SettingsLogic } from '../settings/settings_logic';
|
||||
|
||||
import { ClientLibrariesPopover } from './components/client_libraries_popover/popover';
|
||||
import { CurlRequest } from './components/curl_request/curl_request';
|
||||
import { GenerateApiKeyModal } from './components/generate_api_key_modal/modal';
|
||||
import { ManageKeysPopover } from './components/manage_api_keys_popover/popover';
|
||||
|
||||
import { APIGettingStarted } from './components/getting_started/getting_started';
|
||||
import { IndexViewLogic } from './index_view_logic';
|
||||
import { OverviewLogic } from './overview.logic';
|
||||
|
||||
export const GenerateApiKeyPanel: React.FC = () => {
|
||||
const { apiKey, isGenerateModalOpen } = useValues(OverviewLogic);
|
||||
const { indexName, ingestionMethod, isHiddenIndex } = useValues(IndexViewLogic);
|
||||
const { isGenerateModalOpen } = useValues(OverviewLogic);
|
||||
const { indexName, isHiddenIndex } = useValues(IndexViewLogic);
|
||||
const { closeGenerateModal } = useActions(OverviewLogic);
|
||||
const { defaultPipeline } = useValues(SettingsLogic);
|
||||
|
||||
const [optimizedRequest, setOptimizedRequest] = useState(true);
|
||||
|
||||
return (
|
||||
<>
|
||||
{isGenerateModalOpen && (
|
||||
|
@ -51,7 +30,7 @@ export const GenerateApiKeyPanel: React.FC = () => {
|
|||
)}
|
||||
<EuiFlexGroup>
|
||||
<EuiFlexItem>
|
||||
<EuiPanel hasBorder>
|
||||
<EuiPanel hasBorder paddingSize="xl">
|
||||
{isHiddenIndex ? (
|
||||
<EuiEmptyPrompt
|
||||
body={
|
||||
|
@ -71,84 +50,7 @@ export const GenerateApiKeyPanel: React.FC = () => {
|
|||
}
|
||||
/>
|
||||
) : (
|
||||
<EuiFlexGroup direction="column">
|
||||
<EuiFlexItem>
|
||||
<EuiFlexGroup justifyContent="spaceBetween" alignItems="flexStart">
|
||||
<EuiFlexItem>
|
||||
<EuiFlexGroup direction="column">
|
||||
<EuiFlexItem>
|
||||
<EuiTitle size="s">
|
||||
<h2>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.documentExample.title',
|
||||
{ defaultMessage: 'Adding documents to your index' }
|
||||
)}
|
||||
</h2>
|
||||
</EuiTitle>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<EuiText size="s">
|
||||
<p>
|
||||
<FormattedMessage
|
||||
id="xpack.enterpriseSearch.content.overview.documentExample.description.text"
|
||||
defaultMessage="Generate an API key and read the {documentation} on how to send documents to the Elasticsearch API endpoint. Use Elastic {clients} for streamlined integration."
|
||||
values={{
|
||||
clients: (
|
||||
<EuiLink href={docLinks.clientsGuide} external>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.documentExample.description.clientsLink',
|
||||
{ defaultMessage: 'programming language clients' }
|
||||
)}
|
||||
</EuiLink>
|
||||
),
|
||||
documentation: (
|
||||
<EuiLink href={docLinks.indexApi} external>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.documentExample.description.documentationLink',
|
||||
{ defaultMessage: 'documentation' }
|
||||
)}
|
||||
</EuiLink>
|
||||
),
|
||||
}}
|
||||
/>
|
||||
</p>
|
||||
</EuiText>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiFlexGroup justifyContent="flexEnd" alignItems="center">
|
||||
<EuiFlexItem>
|
||||
<ClientLibrariesPopover />
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<ManageKeysPopover />
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</EuiFlexItem>
|
||||
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiSwitch
|
||||
data-telemetry-id={`entSearchContent-${ingestionMethod}-overview-generateApiKey-optimizedRequest`}
|
||||
onChange={(event) => setOptimizedRequest(event.target.checked)}
|
||||
label={i18n.translate(
|
||||
'xpack.enterpriseSearch.content.overview.optimizedRequest.label',
|
||||
{ defaultMessage: 'View Search optimized request' }
|
||||
)}
|
||||
checked={optimizedRequest}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<CurlRequest
|
||||
apiKey={apiKey}
|
||||
document={DOCUMENTS_API_JSON_EXAMPLE}
|
||||
indexName={indexName}
|
||||
pipeline={optimizedRequest ? defaultPipeline : undefined}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
<APIGettingStarted />
|
||||
)}
|
||||
</EuiPanel>
|
||||
</EuiFlexItem>
|
||||
|
|
File diff suppressed because one or more lines are too long
After Width: | Height: | Size: 88 KiB |
|
@ -13,7 +13,7 @@ import { shallow } from 'enzyme';
|
|||
|
||||
import { snakeCase } from 'lodash';
|
||||
|
||||
import { EuiListGroup, EuiPanel } from '@elastic/eui';
|
||||
import { EuiPanel } from '@elastic/eui';
|
||||
|
||||
import { EuiButtonTo, EuiButtonEmptyTo } from '../../../shared/react_router_helpers';
|
||||
|
||||
|
@ -22,20 +22,10 @@ import { ProductCard, ProductCardProps } from './product_card';
|
|||
const MOCK_VALUES: ProductCardProps = {
|
||||
cta: 'Click me',
|
||||
description: 'Mock description',
|
||||
features: ['first feature', 'second feature'],
|
||||
icon: 'logoElasticsearch',
|
||||
name: 'Mock product',
|
||||
productId: 'mockProduct',
|
||||
resourceLinks: [
|
||||
{
|
||||
label: 'Link one',
|
||||
to: 'https://www.elastic.co/guide/one',
|
||||
},
|
||||
{
|
||||
label: 'Link twwo',
|
||||
to: 'https://www.elastic.co/guide/two',
|
||||
},
|
||||
],
|
||||
rightPanelItems: [<div />, <div />],
|
||||
url: '/app/mock_app',
|
||||
};
|
||||
|
||||
|
@ -49,10 +39,8 @@ describe('ProductCard', () => {
|
|||
const card = wrapper.find(EuiPanel);
|
||||
|
||||
expect(card.find('h3').text()).toEqual(MOCK_VALUES.name);
|
||||
expect(card.find(EuiListGroup).children()).toHaveLength(MOCK_VALUES.features.length);
|
||||
expect(card.find('[data-test-subj="productCard-resources"]').text()).toEqual('Resources');
|
||||
expect(card.find('[data-test-subj="productCard-resourceLinks"]').children()).toHaveLength(
|
||||
MOCK_VALUES.resourceLinks.length
|
||||
expect(card.find('[data-test-subj="productCard-rightPanelItems"]').children()).toHaveLength(
|
||||
MOCK_VALUES.rightPanelItems?.length ?? -1
|
||||
);
|
||||
|
||||
const button = card.find(EuiButtonEmptyTo);
|
||||
|
@ -69,6 +57,26 @@ describe('ProductCard', () => {
|
|||
});
|
||||
});
|
||||
|
||||
it('renders a product card without panel', () => {
|
||||
const wrapper = shallow(<ProductCard {...MOCK_VALUES} rightPanelItems={undefined} />);
|
||||
const card = wrapper.find(EuiPanel);
|
||||
|
||||
expect(card.find('[data-test-subj="productCard-rightPanelItems"]')).toHaveLength(0);
|
||||
|
||||
const button = card.find(EuiButtonEmptyTo);
|
||||
|
||||
expect(button).toHaveLength(1);
|
||||
expect(button.prop('to')).toEqual(MOCK_VALUES.url);
|
||||
expect(card.find(EuiButtonTo)).toHaveLength(0);
|
||||
|
||||
button.simulate('click');
|
||||
|
||||
expect(mockTelemetryActions.sendEnterpriseSearchTelemetry).toHaveBeenCalledWith({
|
||||
action: 'clicked',
|
||||
metric: snakeCase(MOCK_VALUES.productId),
|
||||
});
|
||||
});
|
||||
|
||||
it('renders an empty cta', () => {
|
||||
const wrapper = shallow(<ProductCard {...MOCK_VALUES} emptyCta />);
|
||||
const card = wrapper.find(EuiPanel);
|
||||
|
|
|
@ -14,9 +14,6 @@ import {
|
|||
EuiFlexGroup,
|
||||
EuiFlexItem,
|
||||
EuiIcon,
|
||||
EuiLink,
|
||||
EuiListGroup,
|
||||
EuiListGroupItem,
|
||||
EuiPanel,
|
||||
EuiSpacer,
|
||||
EuiText,
|
||||
|
@ -25,30 +22,22 @@ import {
|
|||
IconSize,
|
||||
} from '@elastic/eui';
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
import { EuiButtonTo, EuiButtonEmptyTo } from '../../../shared/react_router_helpers';
|
||||
import { TelemetryLogic } from '../../../shared/telemetry';
|
||||
|
||||
import './product_card.scss';
|
||||
|
||||
interface ProductResourceLink {
|
||||
label: string;
|
||||
to: string;
|
||||
}
|
||||
|
||||
export interface ProductCardProps {
|
||||
cta?: string;
|
||||
description: string;
|
||||
emptyCta?: boolean;
|
||||
features: string[];
|
||||
hasBorder?: boolean;
|
||||
hasShadow?: boolean;
|
||||
icon: IconType;
|
||||
iconSize?: IconSize;
|
||||
name: string;
|
||||
productId: string;
|
||||
resourceLinks: ProductResourceLink[];
|
||||
rightPanelItems?: React.ReactNode[];
|
||||
url?: string;
|
||||
}
|
||||
|
||||
|
@ -56,14 +45,13 @@ export const ProductCard: React.FC<ProductCardProps> = ({
|
|||
cta,
|
||||
description,
|
||||
emptyCta = false,
|
||||
features,
|
||||
hasBorder,
|
||||
hasShadow,
|
||||
icon,
|
||||
iconSize,
|
||||
productId,
|
||||
rightPanelItems,
|
||||
name,
|
||||
resourceLinks,
|
||||
url,
|
||||
}) => {
|
||||
const { sendEnterpriseSearchTelemetry } = useActions(TelemetryLogic);
|
||||
|
@ -86,8 +74,8 @@ export const ProductCard: React.FC<ProductCardProps> = ({
|
|||
</EuiTitle>
|
||||
<EuiSpacer size="s" />
|
||||
<EuiText color="subdued" size="s">
|
||||
{description}
|
||||
</EuiText>
|
||||
{description}{' '}
|
||||
</EuiText>{' '}
|
||||
<EuiSpacer />
|
||||
{cta && url && (
|
||||
<div>
|
||||
|
@ -122,42 +110,19 @@ export const ProductCard: React.FC<ProductCardProps> = ({
|
|||
</div>
|
||||
)}
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem data-test-subj="productCard-features">
|
||||
<EuiListGroup flush className="productCard-features">
|
||||
{features.map((item: string, index: number) => (
|
||||
<EuiListGroupItem
|
||||
wrapText
|
||||
key={index}
|
||||
size="s"
|
||||
label={item}
|
||||
icon={<EuiIcon color="success" type="checkInCircleFilled" />}
|
||||
/>
|
||||
))}
|
||||
</EuiListGroup>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<EuiTitle size="xs">
|
||||
<h4 data-test-subj="productCard-resources">
|
||||
{i18n.translate('xpack.enterpriseSearch.productCard.resourcesTitle', {
|
||||
defaultMessage: 'Resources',
|
||||
{rightPanelItems ? (
|
||||
<EuiFlexItem>
|
||||
<EuiFlexGroup
|
||||
direction="column"
|
||||
gutterSize="m"
|
||||
data-test-subj="productCard-rightPanelItems"
|
||||
>
|
||||
{rightPanelItems.map((rightPanelItem) => {
|
||||
return <EuiFlexItem>{rightPanelItem}</EuiFlexItem>;
|
||||
})}
|
||||
</h4>
|
||||
</EuiTitle>
|
||||
<EuiSpacer size="s" />
|
||||
<EuiFlexGroup
|
||||
direction="column"
|
||||
gutterSize="m"
|
||||
data-test-subj="productCard-resourceLinks"
|
||||
>
|
||||
{resourceLinks.map((resource, index) => (
|
||||
<EuiFlexItem key={index} grow={false}>
|
||||
<EuiLink href={resource.to} target="_blank" external>
|
||||
{resource.label}
|
||||
</EuiLink>
|
||||
</EuiFlexItem>
|
||||
))}
|
||||
</EuiFlexGroup>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
</EuiFlexItem>
|
||||
) : null}
|
||||
</EuiFlexGroup>
|
||||
</EuiPanel>
|
||||
);
|
||||
|
|
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
import { APP_SEARCH_PLUGIN } from '../../../../../common/constants';
|
||||
import { ProductCard } from '../product_card';
|
||||
|
||||
export interface AppSearchProductCardProps {
|
||||
hasBorder: boolean;
|
||||
hasShadow: boolean;
|
||||
}
|
||||
|
||||
export const AppSearchProductCard: React.FC<AppSearchProductCardProps> = ({
|
||||
hasBorder = true,
|
||||
hasShadow = true,
|
||||
}) => (
|
||||
<ProductCard
|
||||
hasBorder={hasBorder}
|
||||
hasShadow={hasShadow}
|
||||
description={i18n.translate('xpack.enterpriseSearch.appSearch.productCardDescription', {
|
||||
defaultMessage:
|
||||
'A bespoke solution for apps and websites, providing the tools you need to design, implement, and effectively manage those user-facing search experiences.',
|
||||
})}
|
||||
emptyCta
|
||||
cta={i18n.translate('xpack.enterpriseSearch.appSearch.cta', {
|
||||
defaultMessage: 'Explore',
|
||||
})}
|
||||
icon="logoAppSearch"
|
||||
name={APP_SEARCH_PLUGIN.NAME}
|
||||
productId={APP_SEARCH_PLUGIN.ID}
|
||||
url={APP_SEARCH_PLUGIN.URL}
|
||||
/>
|
||||
);
|
|
@ -10,12 +10,18 @@ import React from 'react';
|
|||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
import { ANALYTICS_PLUGIN } from '../../../../../common/constants';
|
||||
import { docLinks } from '../../../shared/doc_links';
|
||||
import baLogo from '../../assets/behavioral_analytics_logo.svg';
|
||||
import { ProductCard } from '../product_card';
|
||||
|
||||
export const BehavioralAnalyticsProductCard = () => (
|
||||
export interface BehavioralAnalyticsProductCard {
|
||||
hasBorder: boolean;
|
||||
hasShadow: boolean;
|
||||
}
|
||||
|
||||
export const BehavioralAnalyticsProductCard = ({ hasBorder = true, hasShadow = true }) => (
|
||||
<ProductCard
|
||||
hasBorder={hasBorder}
|
||||
hasShadow={hasShadow}
|
||||
cta={i18n.translate('xpack.enterpriseSearch.behavioralAnalytics.productCardCTA', {
|
||||
defaultMessage: 'Explore Behavioral Analytics',
|
||||
})}
|
||||
|
@ -24,32 +30,10 @@ export const BehavioralAnalyticsProductCard = () => (
|
|||
'Dashboards and tools for visualizing end-user behavior and measuring the performance of your search applications',
|
||||
})}
|
||||
emptyCta
|
||||
features={[
|
||||
i18n.translate('xpack.enterpriseSearch.behavioralAnalytics.features.tracking', {
|
||||
defaultMessage: "Track users' searching and clicking behavior",
|
||||
}),
|
||||
i18n.translate('xpack.enterpriseSearch.behavioralAnalytics.features.dashboard', {
|
||||
defaultMessage: 'Search management dashboards',
|
||||
}),
|
||||
i18n.translate('xpack.enterpriseSearch.behavioralAnalytics.features.contentGaps', {
|
||||
defaultMessage: 'Identify gaps in your content',
|
||||
}),
|
||||
]}
|
||||
icon={baLogo}
|
||||
iconSize="l"
|
||||
name={ANALYTICS_PLUGIN.NAME}
|
||||
productId={ANALYTICS_PLUGIN.ID}
|
||||
resourceLinks={[
|
||||
{
|
||||
label: i18n.translate(
|
||||
'xpack.enterpriseSearch.behavioralAnalytics.resources.gettingStartedLabel',
|
||||
{
|
||||
defaultMessage: 'Getting started with Behavioral Analytics',
|
||||
}
|
||||
),
|
||||
to: docLinks.behavioralAnalytics,
|
||||
},
|
||||
]}
|
||||
url={ANALYTICS_PLUGIN.URL}
|
||||
/>
|
||||
);
|
||||
|
|
|
@ -7,17 +7,15 @@
|
|||
|
||||
import React from 'react';
|
||||
|
||||
import { useValues } from 'kea';
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
import { ELASTICSEARCH_PLUGIN, SEARCH_EXPERIENCES_PLUGIN } from '../../../../../common/constants';
|
||||
import { docLinks } from '../../../shared/doc_links';
|
||||
import { HttpLogic } from '../../../shared/http';
|
||||
import { ELASTICSEARCH_PLUGIN } from '../../../../../common/constants';
|
||||
import { ProductCard } from '../product_card';
|
||||
|
||||
import { BehavioralAnalyticsProductCard } from './behavioral_analytics_product_card';
|
||||
import { SearchApplicationsProductCard } from './search_applications_product_card';
|
||||
|
||||
export const ElasticsearchProductCard = () => {
|
||||
const { http } = useValues(HttpLogic);
|
||||
return (
|
||||
<ProductCard
|
||||
data-test-subj="productCard-elasticsearch"
|
||||
|
@ -25,72 +23,12 @@ export const ElasticsearchProductCard = () => {
|
|||
defaultMessage:
|
||||
'Ideal for bespoke applications, Elasticsearch helps you build highly customizable search and offers many different ingestion methods.',
|
||||
})}
|
||||
features={[
|
||||
i18n.translate('xpack.enterpriseSearch.elasticsearch.features.integrate', {
|
||||
defaultMessage: 'Integrate with databases, websites, and more',
|
||||
}),
|
||||
i18n.translate('xpack.enterpriseSearch.elasticsearch.features.buildTooling', {
|
||||
defaultMessage: 'Build custom tooling',
|
||||
}),
|
||||
i18n.translate('xpack.enterpriseSearch.elasticsearch.features.buildSearchExperiences', {
|
||||
defaultMessage: 'Build custom search experiences',
|
||||
}),
|
||||
i18n.translate('xpack.enterpriseSearch.elasticsearch.features.esre', {
|
||||
defaultMessage: 'The Elasticsearch Relevance Engine™ (ESRE)',
|
||||
}),
|
||||
]}
|
||||
icon="logoElasticsearch"
|
||||
name={ELASTICSEARCH_PLUGIN.NAME}
|
||||
productId={ELASTICSEARCH_PLUGIN.ID}
|
||||
resourceLinks={[
|
||||
{
|
||||
label: i18n.translate(
|
||||
'xpack.enterpriseSearch.elasticsearch.resources.gettingStartedLabel',
|
||||
{
|
||||
defaultMessage: 'Getting started with Elasticsearch',
|
||||
}
|
||||
),
|
||||
to: docLinks.start,
|
||||
},
|
||||
{
|
||||
label: i18n.translate(
|
||||
'xpack.enterpriseSearch.elasticsearch.resources.createNewIndexLabel',
|
||||
{
|
||||
defaultMessage: 'Create a new index',
|
||||
}
|
||||
),
|
||||
to: docLinks.start,
|
||||
},
|
||||
{
|
||||
label: i18n.translate(
|
||||
'xpack.enterpriseSearch.elasticsearch.resources.languageClientLabel',
|
||||
{
|
||||
defaultMessage: 'Set up a language client',
|
||||
}
|
||||
),
|
||||
to: docLinks.languageClients,
|
||||
},
|
||||
{
|
||||
label: i18n.translate('xpack.enterpriseSearch.elasticsearch.resources.searchUILabel', {
|
||||
defaultMessage: 'Search UI for Elasticsearch',
|
||||
}),
|
||||
to: docLinks.searchUIElasticsearch,
|
||||
},
|
||||
{
|
||||
label: i18n.translate('xpack.enterpriseSearch.elasticsearch.resources.elserLabel', {
|
||||
defaultMessage: 'ELSER text expansion',
|
||||
}),
|
||||
to: docLinks.elser,
|
||||
},
|
||||
{
|
||||
label: i18n.translate(
|
||||
'xpack.enterpriseSearch.elasticsearch.resources.searchExperiencesLabel',
|
||||
{
|
||||
defaultMessage: 'Search Experiences',
|
||||
}
|
||||
),
|
||||
to: http.basePath.prepend(SEARCH_EXPERIENCES_PLUGIN.URL),
|
||||
},
|
||||
rightPanelItems={[
|
||||
<SearchApplicationsProductCard hasBorder={false} hasShadow={false} />,
|
||||
<BehavioralAnalyticsProductCard hasBorder={false} hasShadow={false} />,
|
||||
]}
|
||||
/>
|
||||
);
|
||||
|
|
|
@ -0,0 +1,36 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
import {
|
||||
ENTERPRISE_SEARCH_PRODUCT_NAME,
|
||||
ENTERPRISE_SEARCH_CONTENT_PLUGIN,
|
||||
} from '../../../../../common/constants';
|
||||
import { ProductCard } from '../product_card';
|
||||
|
||||
import { AppSearchProductCard } from './app_search_product_card';
|
||||
import { WorkplaceSearchProductCard } from './workplace_search_product_card';
|
||||
|
||||
export const EnterpriseSearchProductCard = () => (
|
||||
<ProductCard
|
||||
description={i18n.translate('xpack.enterpriseSearch.entSearch.productCardDescription', {
|
||||
defaultMessage:
|
||||
'Standalone applications tailored to simpler, user-friendly and business-focused search experiences.',
|
||||
})}
|
||||
emptyCta
|
||||
icon="logoEnterpriseSearch"
|
||||
name={ENTERPRISE_SEARCH_PRODUCT_NAME}
|
||||
productId={ENTERPRISE_SEARCH_CONTENT_PLUGIN.ID}
|
||||
rightPanelItems={[
|
||||
<AppSearchProductCard hasBorder={false} hasShadow={false} />,
|
||||
<WorkplaceSearchProductCard hasBorder={false} hasShadow={false} />,
|
||||
]}
|
||||
/>
|
||||
);
|
|
@ -0,0 +1,120 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { generatePath } from 'react-router-dom';
|
||||
|
||||
import { EuiButton, EuiCard, EuiFlexGroup, EuiFlexItem, EuiIcon } from '@elastic/eui';
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
import {
|
||||
ENTERPRISE_SEARCH_CONTENT_PLUGIN,
|
||||
INGESTION_METHOD_IDS,
|
||||
} from '../../../../../common/constants';
|
||||
|
||||
import apiLogo from '../../../../assets/images/api_cloud.svg';
|
||||
import connectorLogo from '../../../../assets/images/search_connector.svg';
|
||||
import crawlerLogo from '../../../../assets/images/search_crawler.svg';
|
||||
|
||||
import {
|
||||
NEW_API_PATH,
|
||||
NEW_INDEX_METHOD_PATH,
|
||||
NEW_INDEX_SELECT_CONNECTOR_PATH,
|
||||
} from '../../../enterprise_search_content/routes';
|
||||
import { EuiLinkTo } from '../../../shared/react_router_helpers';
|
||||
|
||||
const START_LABEL = i18n.translate('xpack.enterpriseSearch.ingestSelector.startButton', {
|
||||
defaultMessage: 'Start',
|
||||
});
|
||||
|
||||
export const IngestionSelector: React.FC = () => {
|
||||
return (
|
||||
<EuiFlexGroup>
|
||||
<EuiFlexItem>
|
||||
<EuiCard
|
||||
hasBorder
|
||||
icon={<EuiIcon type={apiLogo} size="xxl" />}
|
||||
textAlign="left"
|
||||
title={i18n.translate('xpack.enterpriseSearch.ingestSelector.method.api', {
|
||||
defaultMessage: 'API',
|
||||
})}
|
||||
description={i18n.translate(
|
||||
'xpack.enterpriseSearch.ingestSelector.method.api.description',
|
||||
{
|
||||
defaultMessage:
|
||||
'Add documents programmatically by connecting with the API using your preferred language client.',
|
||||
}
|
||||
)}
|
||||
footer={
|
||||
<EuiLinkTo
|
||||
to={generatePath(ENTERPRISE_SEARCH_CONTENT_PLUGIN.URL + NEW_API_PATH)}
|
||||
shouldNotCreateHref
|
||||
>
|
||||
<EuiButton fullWidth>{START_LABEL}</EuiButton>
|
||||
</EuiLinkTo>
|
||||
}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<EuiCard
|
||||
hasBorder
|
||||
icon={<EuiIcon type={connectorLogo} size="xxl" />}
|
||||
textAlign="left"
|
||||
title={i18n.translate('xpack.enterpriseSearch.ingestSelector.method.connectors', {
|
||||
defaultMessage: 'Connectors',
|
||||
})}
|
||||
description={i18n.translate(
|
||||
'xpack.enterpriseSearch.ingestSelector.method.connectors.description',
|
||||
{
|
||||
defaultMessage:
|
||||
'Extract, transform, index and sync data from a third-party data source.',
|
||||
}
|
||||
)}
|
||||
footer={
|
||||
<EuiLinkTo
|
||||
to={generatePath(
|
||||
ENTERPRISE_SEARCH_CONTENT_PLUGIN.URL + NEW_INDEX_SELECT_CONNECTOR_PATH
|
||||
)}
|
||||
shouldNotCreateHref
|
||||
>
|
||||
<EuiButton fullWidth>{START_LABEL}</EuiButton>
|
||||
</EuiLinkTo>
|
||||
}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<EuiCard
|
||||
hasBorder
|
||||
icon={<EuiIcon type={crawlerLogo} size="xxl" />}
|
||||
textAlign="left"
|
||||
title={i18n.translate('xpack.enterpriseSearch.ingestSelector.method.crawler', {
|
||||
defaultMessage: 'Web Crawler',
|
||||
})}
|
||||
description={i18n.translate(
|
||||
'xpack.enterpriseSearch.ingestSelector.method.crawler.description',
|
||||
{
|
||||
defaultMessage:
|
||||
'Discover, extract, and index searchable content from websites and knowledge bases.',
|
||||
}
|
||||
)}
|
||||
footer={
|
||||
<EuiLinkTo
|
||||
to={generatePath(ENTERPRISE_SEARCH_CONTENT_PLUGIN.URL + NEW_INDEX_METHOD_PATH, {
|
||||
type: INGESTION_METHOD_IDS.CRAWLER,
|
||||
})}
|
||||
shouldNotCreateHref
|
||||
>
|
||||
<EuiButton fullWidth>{START_LABEL}</EuiButton>
|
||||
</EuiLinkTo>
|
||||
}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
);
|
||||
};
|
|
@ -0,0 +1,8 @@
|
|||
.entSearchProductSelectorHeader {
|
||||
background-color: $euiColorPrimary;
|
||||
}
|
||||
|
||||
.entSearchProductSelectorHeader > div {
|
||||
padding-bottom: 0;
|
||||
padding-top: 0;
|
||||
}
|
|
@ -11,15 +11,13 @@ import React from 'react';
|
|||
|
||||
import { shallow } from 'enzyme';
|
||||
|
||||
import { AddContentEmptyPrompt } from '../../../shared/add_content_empty_prompt';
|
||||
import { ErrorStateCallout } from '../../../shared/error_state';
|
||||
|
||||
import { SetupGuideCta } from '../setup_guide';
|
||||
import { TrialCallout } from '../trial_callout';
|
||||
|
||||
import { BehavioralAnalyticsProductCard } from './behavioral_analytics_product_card';
|
||||
import { ElasticsearchProductCard } from './elasticsearch_product_card';
|
||||
import { SearchApplicationsProductCard } from './search_applications_product_card';
|
||||
import { EnterpriseSearchProductCard } from './enterprise_search_product_card';
|
||||
|
||||
import { ProductSelector } from '.';
|
||||
|
||||
|
@ -29,8 +27,7 @@ describe('ProductSelector', () => {
|
|||
const wrapper = shallow(<ProductSelector />);
|
||||
|
||||
expect(wrapper.find(ElasticsearchProductCard)).toHaveLength(1);
|
||||
expect(wrapper.find(SearchApplicationsProductCard)).toHaveLength(1);
|
||||
expect(wrapper.find(BehavioralAnalyticsProductCard)).toHaveLength(1);
|
||||
expect(wrapper.find(EnterpriseSearchProductCard)).toHaveLength(1);
|
||||
expect(wrapper.find(SetupGuideCta)).toHaveLength(1);
|
||||
});
|
||||
|
||||
|
@ -58,23 +55,6 @@ describe('ProductSelector', () => {
|
|||
expect(wrapper.find(ErrorStateCallout)).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('renders add content', () => {
|
||||
setMockValues({ config: { canDeployEntSearch: true, host: 'localhost' } });
|
||||
const wrapper = shallow(<ProductSelector />);
|
||||
|
||||
expect(wrapper.find(AddContentEmptyPrompt)).toHaveLength(1);
|
||||
});
|
||||
|
||||
it('does not render add content when theres a connection error', () => {
|
||||
setMockValues({
|
||||
config: { canDeployEntSearch: true, host: 'localhost' },
|
||||
errorConnectingMessage: '502 Bad Gateway',
|
||||
});
|
||||
const wrapper = shallow(<ProductSelector />);
|
||||
|
||||
expect(wrapper.find(AddContentEmptyPrompt)).toHaveLength(0);
|
||||
});
|
||||
|
||||
describe('access checks when host is set', () => {
|
||||
beforeEach(() => {
|
||||
setMockValues({ config: { canDeployEntSearch: true, host: 'localhost' } });
|
||||
|
@ -84,8 +64,7 @@ describe('ProductSelector', () => {
|
|||
const wrapper = shallow(<ProductSelector />);
|
||||
|
||||
expect(wrapper.find(ElasticsearchProductCard)).toHaveLength(1);
|
||||
expect(wrapper.find(SearchApplicationsProductCard)).toHaveLength(1);
|
||||
expect(wrapper.find(BehavioralAnalyticsProductCard)).toHaveLength(1);
|
||||
expect(wrapper.find(EnterpriseSearchProductCard)).toHaveLength(1);
|
||||
expect(wrapper.find(SetupGuideCta)).toHaveLength(0);
|
||||
});
|
||||
});
|
||||
|
|
|
@ -9,90 +9,121 @@ import React from 'react';
|
|||
|
||||
import { useValues } from 'kea';
|
||||
|
||||
import { EuiFlexGroup, EuiFlexItem, EuiSpacer, EuiTitle } from '@elastic/eui';
|
||||
import {
|
||||
EuiFlexGroup,
|
||||
EuiFlexItem,
|
||||
EuiPageTemplate,
|
||||
EuiSpacer,
|
||||
EuiText,
|
||||
EuiTitle,
|
||||
} from '@elastic/eui';
|
||||
import { Chat } from '@kbn/cloud-chat-plugin/public';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { WelcomeBanner } from '@kbn/search-api-panels';
|
||||
|
||||
import { AddContentEmptyPrompt } from '../../../shared/add_content_empty_prompt';
|
||||
import { ErrorStateCallout } from '../../../shared/error_state';
|
||||
import { HttpLogic } from '../../../shared/http';
|
||||
import { KibanaLogic } from '../../../shared/kibana';
|
||||
import { SetSearchChrome as SetPageChrome } from '../../../shared/kibana_chrome';
|
||||
import { SendEnterpriseSearchTelemetry as SendTelemetry } from '../../../shared/telemetry';
|
||||
|
||||
import headerImage from '../../assets/search_header.svg';
|
||||
|
||||
import { EnterpriseSearchOverviewPageTemplate } from '../layout';
|
||||
import { SetupGuideCta } from '../setup_guide';
|
||||
import { TrialCallout } from '../trial_callout';
|
||||
|
||||
import { BehavioralAnalyticsProductCard } from './behavioral_analytics_product_card';
|
||||
import { ElasticsearchProductCard } from './elasticsearch_product_card';
|
||||
import { SearchApplicationsProductCard } from './search_applications_product_card';
|
||||
import { EnterpriseSearchProductCard } from './enterprise_search_product_card';
|
||||
import { IngestionSelector } from './ingestion_selector';
|
||||
|
||||
import './product_selector.scss';
|
||||
|
||||
export const ProductSelector: React.FC = () => {
|
||||
const { config } = useValues(KibanaLogic);
|
||||
const { config, userProfile } = useValues(KibanaLogic);
|
||||
const { errorConnectingMessage } = useValues(HttpLogic);
|
||||
|
||||
const showErrorConnecting = !!(config.host && errorConnectingMessage);
|
||||
// The create index flow does not work without ent-search, when content is updated
|
||||
// to no longer rely on ent-search we can always show the Add Content component
|
||||
const showAddContent = config.host && !errorConnectingMessage;
|
||||
|
||||
return (
|
||||
<EnterpriseSearchOverviewPageTemplate
|
||||
restrictWidth
|
||||
pageHeader={{
|
||||
pageTitle: i18n.translate('xpack.enterpriseSearch.overview.pageTitle', {
|
||||
defaultMessage: 'Welcome to Search',
|
||||
}),
|
||||
}}
|
||||
>
|
||||
<SetPageChrome />
|
||||
<SendTelemetry action="viewed" metric="overview" />
|
||||
<TrialCallout />
|
||||
{showAddContent && (
|
||||
<>
|
||||
<AddContentEmptyPrompt
|
||||
title={i18n.translate('xpack.enterpriseSearch.overview.emptyPromptTitle', {
|
||||
defaultMessage: 'Add data and start searching',
|
||||
<>
|
||||
<EnterpriseSearchOverviewPageTemplate restrictWidth grow offset={0}>
|
||||
<SetPageChrome />
|
||||
<SendTelemetry action="viewed" metric="overview" />
|
||||
<TrialCallout />
|
||||
<EuiPageTemplate.Section alignment="top" className="entSearchProductSelectorHeader">
|
||||
<EuiText color="ghost">
|
||||
<WelcomeBanner userProfile={userProfile} image={headerImage} showDescription={false} />
|
||||
</EuiText>
|
||||
</EuiPageTemplate.Section>
|
||||
<EuiSpacer size="xl" />
|
||||
<EuiTitle>
|
||||
<h4>
|
||||
{i18n.translate('xpack.enterpriseSearch.productSelector.overview.title', {
|
||||
defaultMessage: 'Ingest your content',
|
||||
})}
|
||||
buttonLabel={i18n.translate('xpack.enterpriseSearch.overview.emptyPromptButtonLabel', {
|
||||
defaultMessage: 'Create an Elasticsearch index',
|
||||
</h4>
|
||||
</EuiTitle>
|
||||
<EuiSpacer size="l" />
|
||||
<EuiText>
|
||||
<p>
|
||||
{i18n.translate('xpack.enterpriseSearch.productSelector.overview.description', {
|
||||
defaultMessage:
|
||||
'The first step in building your search experience is to create a search-optimized Elasticsearch index and import your content into it. Elasticsearch offers several user-friendly options you can choose from that best match your technical expertise and data sources.',
|
||||
})}
|
||||
/>
|
||||
<EuiSpacer size="l" />
|
||||
</>
|
||||
)}
|
||||
{showErrorConnecting && (
|
||||
<>
|
||||
<SendTelemetry action="error" metric="cannot_connect" />
|
||||
<ErrorStateCallout />
|
||||
</>
|
||||
)}
|
||||
<EuiTitle>
|
||||
<h3>
|
||||
{i18n.translate('xpack.enterpriseSearch.overview.productSelector.title', {
|
||||
defaultMessage: "What's next?",
|
||||
})}
|
||||
</h3>
|
||||
</EuiTitle>
|
||||
<EuiSpacer size="xl" />
|
||||
<EuiFlexGroup direction="column">
|
||||
<EuiFlexItem>
|
||||
<ElasticsearchProductCard />
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<SearchApplicationsProductCard />
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<BehavioralAnalyticsProductCard />
|
||||
</EuiFlexItem>
|
||||
{!config.host && config.canDeployEntSearch && (
|
||||
<EuiFlexItem>
|
||||
<SetupGuideCta />
|
||||
</EuiFlexItem>
|
||||
</p>
|
||||
</EuiText>
|
||||
|
||||
<EuiSpacer size="xl" />
|
||||
<IngestionSelector />
|
||||
<EuiSpacer />
|
||||
{showErrorConnecting && (
|
||||
<>
|
||||
<SendTelemetry action="error" metric="cannot_connect" />
|
||||
<ErrorStateCallout />
|
||||
</>
|
||||
)}
|
||||
</EuiFlexGroup>
|
||||
<Chat />
|
||||
</EnterpriseSearchOverviewPageTemplate>
|
||||
<EuiSpacer size="xl" />
|
||||
|
||||
<EuiTitle>
|
||||
<h4>
|
||||
{i18n.translate('xpack.enterpriseSearch.productSelector.overview.createCustom.title', {
|
||||
defaultMessage: 'Create a custom search experience',
|
||||
})}
|
||||
</h4>
|
||||
</EuiTitle>
|
||||
<EuiSpacer size="l" />
|
||||
<EuiText>
|
||||
<p>
|
||||
{i18n.translate(
|
||||
'xpack.enterpriseSearch.productSelector.overview.createCustom.description',
|
||||
{
|
||||
defaultMessage:
|
||||
"Once your index is created and populated, you'll be ready to use the full power of Elasticsearch. Build search applications using our out-of-the-box tools and programming language clients, all backed by a robust set of APIs.",
|
||||
}
|
||||
)}
|
||||
</p>
|
||||
</EuiText>
|
||||
|
||||
<EuiSpacer size="xl" />
|
||||
|
||||
<EuiFlexGroup direction="column">
|
||||
<EuiFlexItem>
|
||||
<ElasticsearchProductCard />
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem>
|
||||
<EnterpriseSearchProductCard />
|
||||
</EuiFlexItem>
|
||||
{!config.host && config.canDeployEntSearch && (
|
||||
<EuiFlexItem>
|
||||
<SetupGuideCta />
|
||||
</EuiFlexItem>
|
||||
)}
|
||||
</EuiFlexGroup>
|
||||
<Chat />
|
||||
</EnterpriseSearchOverviewPageTemplate>
|
||||
</>
|
||||
);
|
||||
};
|
||||
|
|
|
@ -10,12 +10,21 @@ import React from 'react';
|
|||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
import { APPLICATIONS_PLUGIN } from '../../../../../common/constants';
|
||||
import { docLinks } from '../../../shared/doc_links';
|
||||
import searchAppLogo from '../../assets/search_applications_logo.svg';
|
||||
import { ProductCard } from '../product_card';
|
||||
|
||||
export const SearchApplicationsProductCard = () => (
|
||||
export interface SearchApplicationProductCardProps {
|
||||
hasBorder: boolean;
|
||||
hasShadow: boolean;
|
||||
}
|
||||
|
||||
export const SearchApplicationsProductCard: React.FC<SearchApplicationProductCardProps> = ({
|
||||
hasBorder = true,
|
||||
hasShadow = true,
|
||||
}) => (
|
||||
<ProductCard
|
||||
hasBorder={hasBorder}
|
||||
hasShadow={hasShadow}
|
||||
cta={i18n.translate('xpack.enterpriseSearch.searchApplications.productCardCTA', {
|
||||
defaultMessage: 'Explore Search Applications',
|
||||
})}
|
||||
|
@ -24,35 +33,10 @@ export const SearchApplicationsProductCard = () => (
|
|||
'Search Applications help make your Elasticsearch data easily searchable for end users',
|
||||
})}
|
||||
emptyCta
|
||||
features={[
|
||||
i18n.translate('xpack.enterpriseSearch.searchApplications.features.queries', {
|
||||
defaultMessage: 'Build queries using search templates and DLS',
|
||||
}),
|
||||
i18n.translate('xpack.enterpriseSearch.searchApplications.features.indices', {
|
||||
defaultMessage: 'Combine your Elasticsearch indices',
|
||||
}),
|
||||
i18n.translate('xpack.enterpriseSearch.searchApplications.features.docsExplorer', {
|
||||
defaultMessage: 'Easily preview your search results',
|
||||
}),
|
||||
i18n.translate('xpack.enterpriseSearch.searchApplications.features.api', {
|
||||
defaultMessage: 'Elasticsearch Search Application API',
|
||||
}),
|
||||
]}
|
||||
icon={searchAppLogo}
|
||||
iconSize="l"
|
||||
name={APPLICATIONS_PLUGIN.NAV_TITLE}
|
||||
productId={APPLICATIONS_PLUGIN.ID}
|
||||
resourceLinks={[
|
||||
{
|
||||
label: i18n.translate(
|
||||
'xpack.enterpriseSearch.searchApplications.resources.gettingStartedLabel',
|
||||
{
|
||||
defaultMessage: 'Getting started with Search Applications',
|
||||
}
|
||||
),
|
||||
to: docLinks.searchApplications,
|
||||
},
|
||||
]}
|
||||
url={APPLICATIONS_PLUGIN.URL}
|
||||
/>
|
||||
);
|
||||
|
|
|
@ -0,0 +1,40 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import React from 'react';
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
|
||||
import { WORKPLACE_SEARCH_PLUGIN } from '../../../../../common/constants';
|
||||
import { ProductCard } from '../product_card';
|
||||
|
||||
export interface WorkplaceSearchProductCardProps {
|
||||
hasBorder: boolean;
|
||||
hasShadow: boolean;
|
||||
}
|
||||
|
||||
export const WorkplaceSearchProductCard: React.FC<WorkplaceSearchProductCardProps> = ({
|
||||
hasBorder = true,
|
||||
hasShadow = true,
|
||||
}) => (
|
||||
<ProductCard
|
||||
hasBorder={hasBorder}
|
||||
hasShadow={hasShadow}
|
||||
description={i18n.translate('xpack.enterpriseSearch.workplaceSearch.productCardDescription', {
|
||||
defaultMessage:
|
||||
'Tailored for internal business teams, Workplace Search enables instant connectivity to popular productivity tools and third-party sources into a single, unified platform.',
|
||||
})}
|
||||
emptyCta
|
||||
cta={i18n.translate('xpack.enterpriseSearch.workplaceSearch.cta', {
|
||||
defaultMessage: 'Explore',
|
||||
})}
|
||||
icon="logoWorkplaceSearch"
|
||||
name={WORKPLACE_SEARCH_PLUGIN.NAME}
|
||||
productId={WORKPLACE_SEARCH_PLUGIN.ID}
|
||||
url={WORKPLACE_SEARCH_PLUGIN.URL}
|
||||
/>
|
||||
);
|
|
@ -38,6 +38,7 @@ describe('renderApp', () => {
|
|||
licensing: licensingMock.createStart(),
|
||||
security: securityMock.createStart(),
|
||||
share: sharePluginMock.createStartContract(),
|
||||
userProfile: { user: {} },
|
||||
},
|
||||
} as any;
|
||||
const pluginData = {
|
||||
|
|
|
@ -66,7 +66,7 @@ export const renderApp = (
|
|||
const { history } = params;
|
||||
const { application, chrome, http, uiSettings } = core;
|
||||
const { capabilities, navigateToUrl } = application;
|
||||
const { charts, cloud, guidedOnboarding, lens, security, share } = plugins;
|
||||
const { charts, cloud, guidedOnboarding, lens, security, share, userProfile } = plugins;
|
||||
|
||||
const entCloudHost = getCloudEnterpriseSearchHost(plugins.cloud);
|
||||
externalUrl.enterpriseSearchUrl = publicUrl || entCloudHost || config.host || '';
|
||||
|
@ -84,7 +84,6 @@ export const renderApp = (
|
|||
|
||||
resetContext({ createStore: true });
|
||||
const store = getContext().store;
|
||||
|
||||
const unmountKibanaLogic = mountKibanaLogic({
|
||||
application,
|
||||
capabilities,
|
||||
|
@ -109,6 +108,7 @@ export const renderApp = (
|
|||
setDocTitle: chrome.docTitle.change,
|
||||
share,
|
||||
uiSettings,
|
||||
userProfile,
|
||||
});
|
||||
const unmountLicensingLogic = mountLicensingLogic({
|
||||
canManageLicense: core.application.capabilities.management?.stack?.license_management,
|
||||
|
|
|
@ -82,6 +82,7 @@ class DocLinks {
|
|||
public connectorsSharepoint: string;
|
||||
public connectorsSharepointOnline: string;
|
||||
public connectorsWorkplaceSearch: string;
|
||||
public consoleGuide: string;
|
||||
public crawlerExtractionRules: string;
|
||||
public crawlerManaging: string;
|
||||
public crawlerOverview: string;
|
||||
|
@ -114,6 +115,7 @@ class DocLinks {
|
|||
public mlDocumentEnrichment: string;
|
||||
public pluginsIngestAttachment: string;
|
||||
public queryDsl: string;
|
||||
public restApis: string;
|
||||
public rrf: string;
|
||||
public searchApplications: string;
|
||||
public searchApplicationsSearch: string;
|
||||
|
@ -238,6 +240,7 @@ class DocLinks {
|
|||
this.connectorsSharepoint = '';
|
||||
this.connectorsSharepointOnline = '';
|
||||
this.connectorsWorkplaceSearch = '';
|
||||
this.consoleGuide = '';
|
||||
this.crawlerExtractionRules = '';
|
||||
this.crawlerManaging = '';
|
||||
this.crawlerOverview = '';
|
||||
|
@ -270,6 +273,7 @@ class DocLinks {
|
|||
this.mlDocumentEnrichment = '';
|
||||
this.pluginsIngestAttachment = '';
|
||||
this.queryDsl = '';
|
||||
this.restApis = '';
|
||||
this.rrf = '';
|
||||
this.searchUIAppSearch = '';
|
||||
this.searchUIElasticsearch = '';
|
||||
|
@ -396,6 +400,7 @@ class DocLinks {
|
|||
this.connectorsSharepoint = docLinks.links.enterpriseSearch.connectorsSharepoint;
|
||||
this.connectorsSharepointOnline = docLinks.links.enterpriseSearch.connectorsSharepointOnline;
|
||||
this.connectorsWorkplaceSearch = docLinks.links.enterpriseSearch.connectorsWorkplaceSearch;
|
||||
this.consoleGuide = docLinks.links.console.guide;
|
||||
this.crawlerExtractionRules = docLinks.links.enterpriseSearch.crawlerExtractionRules;
|
||||
this.crawlerManaging = docLinks.links.enterpriseSearch.crawlerManaging;
|
||||
this.crawlerOverview = docLinks.links.enterpriseSearch.crawlerOverview;
|
||||
|
@ -428,6 +433,7 @@ class DocLinks {
|
|||
this.mlDocumentEnrichment = docLinks.links.enterpriseSearch.mlDocumentEnrichment;
|
||||
this.pluginsIngestAttachment = docLinks.links.plugins.ingestAttachment;
|
||||
this.queryDsl = docLinks.links.query.queryDsl;
|
||||
this.restApis = docLinks.links.apis.restApis;
|
||||
this.rrf = docLinks.links.elasticsearch.rrf;
|
||||
this.searchUIAppSearch = docLinks.links.searchUI.appSearch;
|
||||
this.searchUIElasticsearch = docLinks.links.searchUI.elasticsearch;
|
||||
|
|
|
@ -21,6 +21,7 @@ import {
|
|||
import { DataPublicPluginStart } from '@kbn/data-plugin/public';
|
||||
import { GuidedOnboardingPluginStart } from '@kbn/guided-onboarding-plugin/public';
|
||||
import { LensPublicStart } from '@kbn/lens-plugin/public';
|
||||
import { GetUserProfileResponse, UserProfileData } from '@kbn/security-plugin/common';
|
||||
import { SecurityPluginStart } from '@kbn/security-plugin/public';
|
||||
import { SharePluginStart } from '@kbn/share-plugin/public';
|
||||
|
||||
|
@ -53,6 +54,7 @@ interface KibanaLogicProps {
|
|||
setDocTitle(title: string): void;
|
||||
share: SharePluginStart;
|
||||
uiSettings: IUiSettingsClient;
|
||||
userProfile: GetUserProfileResponse<UserProfileData>;
|
||||
}
|
||||
|
||||
export interface KibanaValues extends Omit<KibanaLogicProps, 'cloud'> {
|
||||
|
@ -93,6 +95,7 @@ export const KibanaLogic = kea<MakeLogicType<KibanaValues>>({
|
|||
setDocTitle: [props.setDocTitle, {}],
|
||||
share: [props.share, {}],
|
||||
uiSettings: [props.uiSettings, {}],
|
||||
userProfile: [props.userProfile, {}],
|
||||
}),
|
||||
selectors: ({ selectors }) => ({
|
||||
isCloud: [() => [selectors.cloud], (cloud?: Partial<CloudSetup>) => !!cloud?.isCloudEnabled],
|
||||
|
|
|
@ -0,0 +1,6 @@
|
|||
<svg width="128" height="128" viewBox="0 0 128 128" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M118.563 25.0671C115.713 25.0671 113.408 22.7575 113.408 19.9122C113.408 17.0628 115.713 14.7573 118.563 14.7573C121.408 14.7573 123.718 17.0628 123.718 19.9122C123.718 22.7575 121.408 25.0671 118.563 25.0671ZM67.3668 113.143C64.5174 113.143 62.2119 110.833 62.2119 107.988C62.2119 105.139 64.5174 102.833 67.3668 102.833C70.2122 102.833 72.5177 105.139 72.5177 107.988C72.5177 110.833 70.2122 113.143 67.3668 113.143ZM118.563 10.475C113.351 10.475 109.126 14.7004 109.126 19.9122C109.126 21.0243 109.406 22.0594 109.759 23.0497L65.4875 98.9283C61.2093 99.8253 57.9297 103.442 57.9297 107.988C57.9297 113.2 62.1551 117.425 67.3668 117.425C72.5745 117.425 76.7999 113.2 76.7999 107.988C76.7999 106.941 76.5198 105.983 76.2073 105.041L120.702 28.915C124.85 27.9205 128 24.3649 128 19.9122C128 14.7004 123.774 10.475 118.563 10.475Z" fill="#0C544C"/>
|
||||
<path d="M79.9496 25.0671C77.1002 25.0671 74.7947 22.7575 74.7947 19.9122C74.7947 17.0628 77.1002 14.7573 79.9496 14.7573C82.795 14.7573 85.1005 17.0628 85.1005 19.9122C85.1005 22.7575 82.795 25.0671 79.9496 25.0671ZM28.7496 113.143C25.9043 113.143 23.5947 110.833 23.5947 107.988C23.5947 105.139 25.9043 102.833 28.7496 102.833C31.599 102.833 33.9045 105.139 33.9045 107.988C33.9045 110.833 31.599 113.143 28.7496 113.143ZM79.9496 10.475C74.7338 10.475 70.5125 14.7004 70.5125 19.9122C70.5125 21.0243 70.7926 22.0594 71.1457 23.0497L26.8744 98.9283C22.5922 99.8253 19.3125 103.442 19.3125 107.988C19.3125 113.2 23.5379 117.425 28.7496 117.425C33.9614 117.425 38.1868 113.2 38.1868 107.988C38.1868 106.941 37.9067 105.983 37.5942 105.041L82.0887 28.915C86.237 27.9205 89.3868 24.3649 89.3868 19.9122C89.3868 14.7004 85.1573 10.475 79.9496 10.475Z" fill="#073551"/>
|
||||
<path d="M9.43713 40.8443C12.2825 40.8443 14.592 43.1539 14.592 45.9992C14.592 48.8446 12.2825 51.1541 9.43713 51.1541C6.58772 51.1541 4.28222 48.8446 4.28222 45.9992C4.28222 43.1539 6.58772 40.8443 9.43713 40.8443ZM9.43713 55.4363C14.6489 55.4363 18.8743 51.2109 18.8743 45.9992C18.8743 44.9561 18.5901 43.9941 18.2776 43.0524C17.0274 39.306 13.6016 36.5621 9.43713 36.5621C8.77145 36.5621 8.18696 36.8097 7.55782 36.9436C3.27966 37.8366 0 41.4532 0 45.9992C0 51.2109 4.22539 55.4363 9.43713 55.4363Z" fill="#073551"/>
|
||||
<path d="M4.28222 78.9743C4.28222 76.1249 6.59179 73.8194 9.43713 73.8194C12.2825 73.8194 14.592 76.1249 14.592 78.9743C14.592 81.8197 12.2825 84.1252 9.43713 84.1252C6.59179 84.1252 4.28222 81.8197 4.28222 78.9743ZM18.8743 78.9743C18.8743 77.9271 18.5901 76.9692 18.2776 76.0275C17.0274 72.2811 13.6057 69.5372 9.43713 69.5372C8.77145 69.5372 8.18696 69.7848 7.55782 69.9147C3.27966 70.8117 0 74.4283 0 78.9743C0 84.182 4.22539 88.4115 9.43713 88.4115C14.6489 88.4115 18.8743 84.182 18.8743 78.9743Z" fill="#073551"/>
|
||||
</svg>
|
After Width: | Height: | Size: 2.8 KiB |
|
@ -0,0 +1,3 @@
|
|||
<svg width="16" height="16" viewBox="0 0 16 16" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M8 0C3.58203 0 0 3.67167 0 8.2002C0 11.8238 2.292 14.8969 5.47119 15.981C5.87109 16.0561 6.01709 15.8028 6.01709 15.5866C6.01709 15.3914 6.00977 14.7447 6.00586 14.0601C3.78125 14.5555 3.31103 13.0931 3.31103 13.0931C2.94678 12.1461 2.42284 11.8939 2.42284 11.8939C1.6958 11.3854 2.478 11.3954 2.478 11.3954C3.28122 11.4524 3.70409 12.2402 3.70409 12.2402C4.41797 13.4935 5.57714 13.1311 6.03222 12.9209C6.10494 12.3924 6.31197 12.03 6.54003 11.8258C4.76416 11.6186 2.896 10.9149 2.896 7.77276C2.896 6.87686 3.20802 6.14615 3.71875 5.57207C3.6372 5.36386 3.36181 4.52952 3.79784 3.4009C3.79784 3.4009 4.46875 3.18069 5.99803 4.24175C6.63572 4.05907 7.31981 3.96898 7.99998 3.96597C8.67967 3.96898 9.36423 4.06006 10.0029 4.24274C11.5293 3.18068 12.2012 3.4019 12.2012 3.4019C12.6387 4.53152 12.3633 5.36485 12.2812 5.57207C12.7939 6.14615 13.1035 6.87688 13.1035 7.77276C13.1035 10.9229 11.2324 11.6166 9.4502 11.8198C9.7383 12.0741 9.99317 12.5726 9.99317 13.3373C9.99317 14.4334 9.98242 15.3173 9.98242 15.5876C9.98242 15.8058 10.1279 16.0611 10.5332 15.981C13.71 14.8949 16 11.8218 16 8.2002C16 3.67167 12.418 0 8 0Z" fill="#0077CC"/>
|
||||
</svg>
|
After Width: | Height: | Size: 1.2 KiB |
|
@ -5,6 +5,7 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import curl from './curl.svg';
|
||||
import dotnet from './dotnet.svg';
|
||||
import go from './go.svg';
|
||||
import java from './java.svg';
|
||||
|
@ -16,6 +17,7 @@ import ruby from './ruby.svg';
|
|||
import rust from './rust.svg';
|
||||
|
||||
export const icons = {
|
||||
curl,
|
||||
dotnet,
|
||||
go,
|
||||
java,
|
||||
|
|
|
@ -0,0 +1,498 @@
|
|||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M24 47.625C37.2548 47.625 48 36.9638 48 23.8125C48 10.6612 37.2548 0 24 0C10.7452 0 0 10.6612 0 23.8125C0 36.9638 10.7452 47.625 24 47.625Z" fill="#ECF0F6"/>
|
||||
<path d="M42.9517 8.94773C42.9597 8.94711 42.9674 8.94435 42.974 8.93973C42.9806 8.93512 42.9859 8.92881 42.9892 8.92148C42.8729 8.80523 42.7492 8.69648 42.6329 8.58398C42.6126 8.61466 42.6002 8.64994 42.5969 8.68661C42.5937 8.72328 42.5996 8.76018 42.6142 8.79398C42.6317 8.85609 42.6731 8.90873 42.7293 8.94036C42.7856 8.97199 42.852 8.98004 42.9142 8.96273L42.9517 8.94773Z" fill="white"/>
|
||||
<path d="M44.3994 12.6566C44.439 12.6641 44.4797 12.6641 44.5194 12.6566C44.568 12.7084 44.6096 12.7664 44.6431 12.8291C44.6753 12.9086 44.7338 12.9748 44.8089 13.0164C44.884 13.058 44.9711 13.0727 45.0556 13.0578C45.2394 13.0278 45.3106 12.8966 45.2019 12.6453C45.1194 12.5666 44.9956 12.4316 44.8531 12.3153V12.2891C44.8615 12.209 44.8378 12.1289 44.7872 12.0663C44.7365 12.0037 44.6632 11.9638 44.5831 11.9553C44.3919 11.9141 44.1256 12.0378 44.0956 12.1803C44.0805 12.283 44.1029 12.3876 44.1587 12.4751C44.2145 12.5626 44.2999 12.627 44.3994 12.6566Z" fill="white"/>
|
||||
<path d="M45.4381 12.1508C45.5011 12.1143 45.548 12.0554 45.5694 11.9858C45.4006 11.742 45.2281 11.502 45.0481 11.2695C45.008 11.2725 44.9699 11.2882 44.9394 11.3145C44.916 11.331 44.896 11.3519 44.8807 11.3761C44.8653 11.4003 44.8549 11.4273 44.85 11.4555C44.8452 11.4837 44.8459 11.5126 44.8522 11.5406C44.8586 11.5685 44.8703 11.5949 44.8869 11.6183C44.9146 11.6505 44.9492 11.6761 44.9881 11.6933C44.9771 11.7271 44.9731 11.7629 44.9763 11.7983C44.9795 11.8338 44.9899 11.8682 45.0069 11.8995C45.1494 12.1508 45.2656 12.2333 45.4381 12.1508Z" fill="white"/>
|
||||
<path d="M44.5494 11.2209C44.8044 11.3559 44.9244 11.3597 45.0181 11.2209C44.9131 11.0784 44.8044 10.9434 44.6919 10.8047C44.5306 10.9097 44.5456 11.0709 44.5494 11.2209Z" fill="white"/>
|
||||
<path d="M44.0241 10.9166C44.0629 10.9092 44.0994 10.8928 44.1307 10.8687C44.162 10.8446 44.1871 10.8135 44.2041 10.7779C44.2144 10.6764 44.1863 10.5747 44.1254 10.4929C43.9829 10.3616 43.8741 10.4929 43.7504 10.5866C43.7654 10.7741 43.8179 10.9204 44.0241 10.9166Z" fill="white"/>
|
||||
<path d="M20.1256 7.70223C20.1698 7.65113 20.1969 7.58745 20.2029 7.52017C20.209 7.45288 20.1937 7.38539 20.1594 7.32723C19.9756 7.13598 19.7431 7.07973 19.6231 7.19973C19.5737 7.28024 19.5498 7.37381 19.5545 7.46816C19.5592 7.56252 19.5922 7.65325 19.6494 7.72848C19.7222 7.77241 19.8066 7.79341 19.8916 7.78872C19.9765 7.78404 20.0581 7.7539 20.1256 7.70223Z" fill="white"/>
|
||||
<path d="M28.3342 2.64289C28.2142 2.85289 28.2554 2.99539 28.4729 3.12664C28.5415 3.17928 28.6273 3.20425 28.7135 3.19661C28.7996 3.18897 28.8797 3.14928 28.9379 3.08539C28.9823 2.97685 28.989 2.85658 28.9571 2.74377C28.9251 2.63095 28.8563 2.53207 28.7617 2.46289H28.5704C28.473 2.49332 28.3894 2.55703 28.3342 2.64289Z" fill="white"/>
|
||||
<path d="M26.163 4.95445C26.1217 4.99195 26.088 5.1832 26.1405 5.2282C26.193 5.2732 26.3917 5.2282 26.4067 5.17945C26.4217 5.1307 26.4517 4.9507 26.4067 4.9207C26.3665 4.90565 26.3232 4.90085 26.2806 4.90674C26.238 4.91263 26.1976 4.92903 26.163 4.95445Z" fill="white"/>
|
||||
<path d="M27.363 2.62164C27.3519 2.5863 27.3368 2.55234 27.318 2.52039C27.3494 2.48833 27.3737 2.44999 27.3893 2.40789L27.1493 2.40039H26.9918V2.43789C26.9801 2.44457 26.9699 2.45349 26.9618 2.46414C26.909 2.57853 26.8639 2.69629 26.8268 2.81664C26.538 2.91414 26.3805 3.09414 26.4518 3.27039C26.5025 3.36435 26.5818 3.43972 26.6782 3.48557C26.7746 3.53142 26.8832 3.54537 26.988 3.52539C27.1905 3.46164 27.2168 3.34539 27.1005 2.94039C27.2543 2.87289 27.4193 2.83164 27.363 2.62164Z" fill="white"/>
|
||||
<path d="M29.8679 3.55911C29.9879 3.52911 30.1266 3.53661 30.1979 3.42786C30.2691 3.31911 30.4829 3.01161 30.3554 2.80536C30.2279 2.59911 30.0816 2.76036 29.9466 2.74161C29.887 2.73423 29.8265 2.74325 29.7717 2.7677C29.7168 2.79215 29.6697 2.8311 29.6354 2.88036C29.5446 2.89607 29.4608 2.93926 29.3954 3.00411C29.3418 3.0741 29.3128 3.15975 29.3128 3.24786C29.3128 3.33597 29.3418 3.42162 29.3954 3.49161C29.373 3.4935 29.3505 3.49082 29.3292 3.48373C29.308 3.47664 29.2883 3.46528 29.2716 3.45036C29.1704 3.35661 28.9491 3.35661 28.7729 3.58161C28.5966 3.80661 28.7129 4.15536 28.9229 4.16661C29.1329 4.17786 29.1891 4.06536 29.2416 4.11786C29.2941 4.17036 29.3429 4.34286 29.4816 4.33911C29.6204 4.33536 29.7741 3.94161 29.7741 3.87411C29.7741 3.80661 29.6954 3.68661 29.7516 3.61161C29.7926 3.59958 29.8317 3.58191 29.8679 3.55911Z" fill="white"/>
|
||||
<path d="M33.9181 3.52464C33.8395 3.49153 33.7529 3.48205 33.669 3.49737C33.5851 3.51269 33.5075 3.55214 33.4456 3.61089C33.4217 3.699 33.4242 3.79222 33.4528 3.87891C33.4815 3.96561 33.5351 4.04194 33.6069 4.09839C33.63 4.11415 33.6561 4.12503 33.6836 4.13036C33.7111 4.13569 33.7394 4.13536 33.7668 4.12939C33.7942 4.12343 33.8201 4.11195 33.8428 4.09566C33.8656 4.07937 33.8849 4.05861 33.8994 4.03464C34.0569 3.80964 34.0606 3.60714 33.9181 3.52464Z" fill="white"/>
|
||||
<path d="M30.4868 3.52457C30.4268 3.61457 30.4868 3.73832 30.5243 3.82082C30.5618 3.90332 30.7268 3.87332 30.7905 3.78707C30.8069 3.76802 30.819 3.7457 30.826 3.7216C30.833 3.69749 30.8348 3.67217 30.8313 3.64731C30.8277 3.62246 30.8189 3.59865 30.8054 3.57748C30.7919 3.55631 30.774 3.53827 30.753 3.52457C30.663 3.48332 30.5505 3.44582 30.4868 3.52457Z" fill="white"/>
|
||||
<path d="M26.4292 6.04904C26.4891 6.09436 26.5622 6.11889 26.6373 6.11889C26.7125 6.11889 26.7856 6.09436 26.8455 6.04904C26.901 5.96558 26.9336 5.86904 26.9402 5.76904C26.9468 5.66903 26.927 5.56905 26.883 5.47904C26.7973 5.43231 26.6981 5.41686 26.6023 5.43533C26.5065 5.45381 26.4201 5.50506 26.358 5.58029C26.223 5.71529 26.2492 5.88779 26.4292 6.04904Z" fill="white"/>
|
||||
<path d="M19.7056 5.79723C19.6167 5.7421 19.5141 5.71289 19.4094 5.71289C19.3047 5.71289 19.2021 5.7421 19.1131 5.79723C19.0499 5.86636 19.0148 5.95666 19.0148 6.05035C19.0148 6.14404 19.0499 6.23435 19.1131 6.30348C19.1844 6.36842 19.2759 6.40685 19.3722 6.41232C19.4685 6.41778 19.5637 6.38994 19.6419 6.33348C19.7166 6.26758 19.7644 6.17646 19.7762 6.07753C19.788 5.9786 19.7628 5.8788 19.7056 5.79723Z" fill="white"/>
|
||||
<path d="M34.0944 4.31614C34.1535 4.35343 34.2251 4.36569 34.2933 4.35022C34.3615 4.33475 34.4208 4.29281 34.4581 4.23364C34.4954 4.17446 34.5077 4.10289 34.4922 4.03467C34.4767 3.96646 34.4348 3.90718 34.3756 3.86989C34.3108 3.83778 34.2364 3.83113 34.1669 3.85127C34.0975 3.87141 34.0382 3.91685 34.0006 3.97864C33.9702 4.03622 33.9629 4.10327 33.9804 4.16603C33.9978 4.22879 34.0386 4.28249 34.0944 4.31614Z" fill="white"/>
|
||||
<path d="M25.9793 4.00074C26.0053 3.96706 26.0243 3.92857 26.0354 3.88749C26.0465 3.84641 26.0493 3.80355 26.0437 3.76137C26.0381 3.7192 26.0243 3.67854 26.0029 3.64174C25.9815 3.60495 25.9531 3.57275 25.9193 3.54699L25.8855 3.52449C25.8444 3.49217 25.7973 3.46828 25.747 3.45418C25.6967 3.44008 25.644 3.43605 25.5921 3.44232C25.5402 3.44859 25.4901 3.46504 25.4445 3.49072C25.399 3.5164 25.359 3.55081 25.3268 3.59199L25.293 3.64449C25.2348 3.73061 25.2103 3.83512 25.2241 3.93814C25.2379 4.04117 25.2891 4.13551 25.368 4.20324C25.4172 4.23138 25.472 4.24803 25.5285 4.25192C25.5851 4.25582 25.6417 4.24687 25.6943 4.22574C25.7283 4.23367 25.764 4.2319 25.7971 4.22064C25.8302 4.20937 25.8596 4.18905 25.8818 4.16199C25.9267 4.11683 25.9601 4.06152 25.9793 4.00074Z" fill="white"/>
|
||||
<path d="M25.4503 4.51131C25.3907 4.52018 25.3361 4.5499 25.2963 4.59522C25.2564 4.64053 25.234 4.6985 25.2328 4.75881C25.2225 4.80598 25.2308 4.85531 25.256 4.89652C25.2811 4.93773 25.3212 4.96766 25.3678 4.98006C25.5516 5.04006 25.6453 4.93131 25.7428 4.78881C25.6716 4.65006 25.6491 4.48131 25.4503 4.51131Z" fill="white"/>
|
||||
<path d="M24.5841 2.55039C24.5536 2.609 24.5333 2.67242 24.5241 2.73789C24.5119 2.69595 24.4901 2.65743 24.4604 2.62539L24.4004 2.57289L24.0254 2.62539C24.0824 2.70129 24.1233 2.78808 24.1454 2.88039C24.1719 2.91133 24.2056 2.93535 24.2435 2.95038C24.2814 2.96541 24.3224 2.97099 24.3629 2.96664C24.3972 2.9567 24.4292 2.93995 24.4569 2.91741C24.4846 2.89486 24.5074 2.86697 24.5241 2.83539C24.5189 2.87927 24.5251 2.92377 24.5421 2.96453C24.5592 3.00529 24.5866 3.04091 24.6216 3.06789C24.6828 3.08192 24.7467 3.07644 24.8046 3.05222C24.8624 3.02801 24.9112 2.98628 24.9441 2.93289C24.9891 2.75664 25.1166 2.78289 25.2254 2.72664C25.2654 2.70452 25.3009 2.67529 25.3304 2.64039C25.3949 2.67722 25.468 2.69659 25.5423 2.69659C25.6166 2.69659 25.6896 2.67722 25.7541 2.64039C25.791 2.58948 25.8071 2.52647 25.7991 2.46414C25.9416 2.58039 26.1066 2.61039 26.2041 2.52039C26.2383 2.48755 26.2629 2.44609 26.2754 2.40039C25.7054 2.44539 25.1391 2.48664 24.5841 2.55039Z" fill="white"/>
|
||||
<path d="M20.1218 4.36866C20.0908 4.33014 20.0526 4.29811 20.0092 4.27442C19.9658 4.25073 19.9182 4.23585 19.8691 4.23062C19.8199 4.22539 19.7703 4.22993 19.7229 4.24396C19.6755 4.258 19.6314 4.28126 19.593 4.31241C19.5656 4.33515 19.5416 4.36167 19.5218 4.39116C19.4383 4.44496 19.3796 4.52965 19.3585 4.62666C19.3374 4.72367 19.3557 4.82508 19.4093 4.90866C19.4276 4.9382 19.4504 4.96476 19.4768 4.98741C19.5559 5.07222 19.6655 5.12221 19.7815 5.12642C19.8974 5.13064 20.0104 5.08875 20.0955 5.00991C20.1115 4.99461 20.1265 4.97833 20.1405 4.96116C20.2097 4.87689 20.2459 4.77037 20.2425 4.66139C20.239 4.55241 20.1961 4.44839 20.1218 4.36866Z" fill="white"/>
|
||||
<path d="M38.1703 7.09806C38.1847 7.11291 38.2018 7.12473 38.2208 7.1328C38.2398 7.14087 38.2603 7.14503 38.2809 7.14503C38.3016 7.14503 38.322 7.14087 38.341 7.1328C38.36 7.12473 38.3772 7.11291 38.3916 7.09806C38.4088 7.08143 38.4217 7.06082 38.4291 7.03806C38.4403 6.96096 38.4403 6.88265 38.4291 6.80556C38.4026 6.78841 38.373 6.77673 38.3419 6.77122C38.3108 6.7657 38.279 6.76646 38.2482 6.77345C38.2175 6.78044 38.1884 6.79352 38.1628 6.81192C38.1372 6.83031 38.1155 6.85365 38.0991 6.88056C38.0241 6.99306 38.0953 7.04931 38.1703 7.09806Z" fill="white"/>
|
||||
<path d="M37.9607 5.6317C38.0008 5.6338 38.0408 5.62679 38.0778 5.6112C38.1149 5.59561 38.1479 5.57186 38.1744 5.5417C38.1927 5.51248 38.2024 5.47869 38.2024 5.4442C38.2024 5.40972 38.1927 5.37593 38.1744 5.3467C38.0882 5.21545 37.9606 5.2267 37.8219 5.31295C37.8256 5.44045 37.7957 5.5867 37.9607 5.6317Z" fill="white"/>
|
||||
<path d="M37.1541 9.42008C37.2152 9.41919 37.2736 9.39503 37.3175 9.35252C37.3614 9.31002 37.3875 9.25237 37.3903 9.19133C37.3818 9.11041 37.3472 9.03446 37.2917 8.97493C37.2363 8.9154 37.163 8.87553 37.0828 8.86133C37.0066 8.8914 36.9435 8.94734 36.9044 9.01934C36.8653 9.09134 36.8528 9.17479 36.8691 9.25508C36.8874 9.31324 36.9268 9.36244 36.9795 9.39299C37.0323 9.42353 37.0946 9.4332 37.1541 9.42008Z" fill="white"/>
|
||||
<path d="M28.5106 3.32959C28.4932 3.30274 28.4706 3.27959 28.4441 3.26147C28.4177 3.24336 28.388 3.23062 28.3566 3.22401C28.3253 3.21739 28.293 3.21702 28.2615 3.22291C28.23 3.2288 28.2 3.24084 28.1731 3.25834C28.1081 3.32496 28.0675 3.41161 28.058 3.5042C28.0485 3.59679 28.0705 3.68988 28.1206 3.76834C28.1684 3.81877 28.2331 3.84973 28.3024 3.85527C28.3716 3.86081 28.4404 3.84053 28.4956 3.79834C28.5552 3.73565 28.5896 3.65326 28.5924 3.56683C28.5952 3.4804 28.5661 3.39597 28.5106 3.32959Z" fill="white"/>
|
||||
<path d="M36.3444 6.14951C36.4557 6.17755 36.5734 6.16409 36.6756 6.11164C36.7777 6.05919 36.8573 5.97134 36.8994 5.86451C36.9102 5.73644 36.8795 5.60829 36.812 5.49892C36.7445 5.38956 36.6437 5.30476 36.5244 5.25701C36.41 5.24904 36.2966 5.28257 36.205 5.35145C36.1134 5.42034 36.0497 5.51995 36.0256 5.63201C36.007 5.74225 36.0291 5.8555 36.0877 5.95069C36.1463 6.04588 36.2375 6.11653 36.3444 6.14951Z" fill="white"/>
|
||||
<path d="M36.1754 4.46945C36.1487 4.49994 36.1283 4.5354 36.1154 4.57379C36.1024 4.61219 36.0972 4.65277 36.1 4.69319C36.1028 4.73361 36.1135 4.77309 36.1316 4.80934C36.1497 4.8456 36.1748 4.87792 36.2054 4.90445C36.2309 4.92676 36.2601 4.94452 36.2917 4.95695C36.3491 4.99897 36.4174 5.02376 36.4885 5.02841C36.5595 5.03305 36.6304 5.01738 36.6929 4.9832C36.7372 5.01978 36.7929 5.03978 36.8504 5.03978C36.9079 5.03978 36.9636 5.01978 37.0079 4.9832C37.0497 4.95092 37.0779 4.90405 37.0867 4.85195C37.0752 4.79482 37.0601 4.73846 37.0417 4.6832L36.3104 4.3457C36.2559 4.37516 36.2095 4.41768 36.1754 4.46945Z" fill="white"/>
|
||||
<path d="M38.8116 7.64944C38.8525 7.65818 38.8948 7.6587 38.9359 7.65095C38.977 7.6432 39.0161 7.62734 39.051 7.6043C39.0859 7.58127 39.1159 7.55151 39.1392 7.51676C39.1625 7.48202 39.1786 7.44298 39.1866 7.40194C39.1866 7.40194 39.1866 7.40194 39.1866 7.37944C39.1965 7.32574 39.1847 7.27033 39.1537 7.22534C39.1228 7.18035 39.0753 7.14946 39.0216 7.13944C38.9647 7.1183 38.9021 7.11759 38.8447 7.13742C38.7872 7.15725 38.7384 7.1964 38.7066 7.24819C38.6869 7.28118 38.6739 7.31773 38.6683 7.35575C38.6627 7.39378 38.6647 7.43253 38.6741 7.4698C38.6835 7.50706 38.7002 7.5421 38.7231 7.57293C38.7461 7.60375 38.7749 7.62975 38.8079 7.64944H38.8116Z" fill="white"/>
|
||||
<path d="M37.3603 5.09687C37.4088 5.13132 37.4688 5.1455 37.5277 5.1364C37.5865 5.1273 37.6394 5.09563 37.6753 5.04813V5.02562C37.529 4.94687 37.379 4.87188 37.229 4.79688C37.2122 4.85433 37.2161 4.91588 37.2401 4.97073C37.2641 5.02557 37.3067 5.07023 37.3603 5.09687Z" fill="white"/>
|
||||
<path d="M41.7744 8.18585C41.754 8.22525 41.7433 8.26898 41.7433 8.31335C41.7433 8.35771 41.754 8.40144 41.7744 8.44085C41.7799 8.47909 41.8004 8.51357 41.8313 8.53676C41.8623 8.55995 41.9011 8.56995 41.9394 8.5646C41.9607 8.56109 41.981 8.55344 41.9994 8.5421C42.0969 8.48585 42.1794 8.41835 42.1381 8.2871C42.0969 8.15585 41.8231 8.12585 41.7744 8.18585Z" fill="white"/>
|
||||
<path d="M41.8454 9.83627C41.9149 9.83711 41.9833 9.81862 42.0429 9.78286C42.1025 9.7471 42.1509 9.69549 42.1829 9.63377C42.1809 9.56426 42.1576 9.49705 42.1159 9.44134C42.0743 9.38563 42.0165 9.34413 41.9504 9.32252C41.9187 9.31533 41.8858 9.31447 41.8537 9.32001C41.8216 9.32554 41.7909 9.33735 41.7634 9.35477C41.7358 9.37219 41.712 9.39487 41.6933 9.42151C41.6746 9.44816 41.6613 9.47823 41.6542 9.51002C41.6542 9.51002 41.6542 9.52877 41.6542 9.54002C41.646 9.60402 41.6607 9.66884 41.6957 9.72304C41.7307 9.77724 41.7837 9.81735 41.8454 9.83627Z" fill="white"/>
|
||||
<path d="M42.3179 8.44063C42.3674 8.44768 42.4179 8.4412 42.4641 8.42188L42.0629 8.04688C42.0642 8.12981 42.0888 8.2107 42.1339 8.28032C42.179 8.34994 42.2427 8.40549 42.3179 8.44063Z" fill="white"/>
|
||||
<path d="M28.3418 4.65013C28.3533 4.6362 28.3587 4.61831 28.3569 4.60037C28.3552 4.58244 28.3464 4.56594 28.3325 4.5545C28.3185 4.54307 28.3006 4.53763 28.2827 4.53939C28.2648 4.54115 28.2483 4.54996 28.2368 4.56388C28.2242 4.5777 28.2172 4.59576 28.2172 4.6145C28.2172 4.63324 28.2242 4.6513 28.2368 4.66513C28.254 4.67258 28.2729 4.67513 28.2914 4.67248C28.31 4.66983 28.3274 4.66209 28.3418 4.65013Z" fill="white"/>
|
||||
<path d="M39.7566 6.26266C39.4303 6.04141 39.1003 5.83141 38.7628 5.62891L38.8191 5.70391C38.753 5.80056 38.7176 5.91493 38.7176 6.03203C38.7176 6.14913 38.753 6.2635 38.8191 6.36016C38.939 6.47191 39.0983 6.53151 39.2621 6.52589C39.426 6.52026 39.5808 6.44987 39.6928 6.33016L39.7378 6.27766L39.7566 6.26266Z" fill="white"/>
|
||||
<path d="M39.3553 9.43905C39.4016 9.4421 39.4481 9.43597 39.492 9.42103C39.536 9.40608 39.5765 9.3826 39.6114 9.35194C39.6462 9.32128 39.6747 9.28404 39.6951 9.24236C39.7155 9.20067 39.7275 9.15537 39.7303 9.10905C39.7528 8.93655 39.6328 8.82405 39.4003 8.7903C39.1678 8.75655 39.0628 8.84655 39.0516 8.98905C39.0652 9.08204 39.0996 9.17078 39.1522 9.24868C39.2047 9.32658 39.2742 9.39164 39.3553 9.43905Z" fill="white"/>
|
||||
<path d="M37.6118 6.27056C37.6268 6.19504 37.6268 6.11732 37.6118 6.04181C37.5579 6.00764 37.4928 5.99596 37.4304 6.00928C37.368 6.0226 37.3133 6.05986 37.2781 6.11306C37.2256 6.21806 37.2781 6.27431 37.3606 6.32306C37.3773 6.33687 37.3966 6.34724 37.4173 6.35358C37.4381 6.35993 37.4599 6.36212 37.4815 6.36003C37.5031 6.35794 37.5241 6.35161 37.5432 6.3414C37.5623 6.3312 37.5793 6.31732 37.5931 6.30056C37.5999 6.29096 37.6062 6.28094 37.6118 6.27056Z" fill="white"/>
|
||||
<path d="M27.8732 4.62715C27.9293 4.66157 27.9965 4.67299 28.0608 4.65901C28.1251 4.64503 28.1815 4.60674 28.2182 4.55215C28.2451 4.49884 28.2512 4.4374 28.2353 4.37984C28.2193 4.32229 28.1825 4.27274 28.1319 4.2409C28.0886 4.2048 28.0327 4.1873 27.9765 4.19222C27.9203 4.19714 27.8684 4.22407 27.8319 4.26715C27.7939 4.31648 27.7769 4.37883 27.7847 4.44063C27.7924 4.50243 27.8242 4.55868 27.8732 4.59715V4.62715Z" fill="white"/>
|
||||
<path d="M27.3594 3.54647C27.4112 3.58309 27.4753 3.59773 27.5379 3.5872C27.6004 3.57666 27.6562 3.54179 27.6931 3.49022C27.7215 3.43999 27.7287 3.38057 27.7132 3.32502C27.6978 3.26946 27.6609 3.22233 27.6106 3.19397C27.5528 3.1629 27.4851 3.15571 27.422 3.17393C27.3589 3.19216 27.3055 3.23435 27.2731 3.29147C27.2482 3.33544 27.2412 3.38739 27.2538 3.43637C27.2664 3.48534 27.2975 3.52751 27.3406 3.55397L27.3594 3.54647Z" fill="white"/>
|
||||
<path d="M23.7744 2.66992L23.4406 2.72617C23.555 2.74755 23.6733 2.72761 23.7744 2.66992Z" fill="white"/>
|
||||
<path d="M28.2743 2.51711C28.2964 2.49119 28.3165 2.46361 28.3344 2.43461C28.0906 2.43461 27.8431 2.43461 27.5844 2.41211C27.5958 2.44523 27.6137 2.4758 27.6369 2.50211C27.7225 2.58299 27.835 2.62928 27.9527 2.63205C28.0705 2.63482 28.185 2.59387 28.2743 2.51711Z" fill="white"/>
|
||||
<path d="M23.4779 3.18779C23.5102 3.13238 23.5226 3.06759 23.5131 3.00416C23.5035 2.94073 23.4726 2.88247 23.4254 2.83904C23.3241 2.77529 23.0841 2.80529 23.0504 2.88779C23.0211 2.95747 23.0155 3.03485 23.0345 3.10802C23.0534 3.18119 23.0959 3.2461 23.1554 3.29279C23.2122 3.32058 23.2777 3.32517 23.3379 3.30557C23.3981 3.28598 23.4483 3.24374 23.4779 3.18779Z" fill="white"/>
|
||||
<path d="M39.3441 14.2958C39.3114 14.3173 39.2848 14.3469 39.2671 14.3817C39.2493 14.4166 39.241 14.4555 39.2428 14.4945C39.2428 14.547 39.3891 14.6783 39.4528 14.6558C39.5166 14.6333 39.5466 14.4608 39.5278 14.4233C39.5091 14.3858 39.3966 14.2845 39.3441 14.2958Z" fill="white"/>
|
||||
<path d="M32.9918 7.52541C33.0563 7.42439 33.1116 7.3177 33.1568 7.20666C33.1783 7.10622 33.1678 7.00155 33.1268 6.90738C33.0858 6.81321 33.0163 6.73426 32.928 6.68166C32.8881 6.65102 32.838 6.63669 32.7878 6.64156C32.7377 6.64643 32.6913 6.67014 32.658 6.70791C32.4719 6.91823 32.3531 7.17944 32.3168 7.45791C32.3168 7.50139 32.3244 7.54453 32.3393 7.58541C32.3643 7.6607 32.4168 7.72376 32.4864 7.762C32.5559 7.80023 32.6373 7.81083 32.7143 7.79166C32.7397 7.78429 32.7637 7.77289 32.7855 7.75791C32.8088 7.75596 32.8314 7.74931 32.8521 7.73835C32.8727 7.72739 32.8909 7.71236 32.9055 7.69416C32.9306 7.67336 32.9512 7.64767 32.966 7.61866C32.9808 7.58965 32.9896 7.55792 32.9918 7.52541Z" fill="white"/>
|
||||
<path d="M32.7742 9.24033C32.8867 9.14283 32.7742 8.82408 32.6729 8.81283C32.5717 8.80158 32.3692 9.08283 32.4592 9.18783C32.4966 9.23302 32.549 9.2632 32.6069 9.27285C32.6648 9.28249 32.7242 9.27094 32.7742 9.24033Z" fill="white"/>
|
||||
<path d="M32.8642 10.6087C32.8773 10.5726 32.8811 10.5337 32.8752 10.4957C32.8693 10.4576 32.8539 10.4217 32.8304 10.3912C32.8011 10.3633 32.7622 10.3477 32.7217 10.3477C32.6812 10.3477 32.6422 10.3633 32.6129 10.3912C32.6009 10.4033 32.5907 10.4173 32.5829 10.4325C32.5492 10.4925 32.4929 10.665 32.6204 10.74C32.7479 10.815 32.8379 10.65 32.8642 10.6087Z" fill="white"/>
|
||||
<path d="M32.6319 8.10701C32.6132 8.03951 32.4782 8.04701 32.4482 8.06576C32.4231 8.08238 32.403 8.10539 32.3898 8.13243C32.3766 8.15946 32.3709 8.18952 32.3732 8.21951C32.3732 8.27576 32.4857 8.28701 32.5344 8.27576C32.5669 8.26212 32.594 8.23825 32.6116 8.20778C32.6292 8.17731 32.6363 8.14192 32.6319 8.10701Z" fill="white"/>
|
||||
<path d="M36.123 13.1098C36.123 13.136 36.1718 13.2185 36.1943 13.2185C36.2168 13.2185 36.318 13.181 36.333 13.1398C36.3456 13.1064 36.3448 13.0694 36.3308 13.0366C36.3169 13.0038 36.2908 12.9776 36.258 12.9635C36.1493 12.9335 36.1493 13.061 36.123 13.1098Z" fill="white"/>
|
||||
<path d="M36.749 12.4395C36.7435 12.4723 36.751 12.5059 36.7699 12.5332C36.7888 12.5605 36.8177 12.5794 36.8503 12.5858C36.8675 12.5909 36.8856 12.5926 36.9035 12.5906C36.9213 12.5886 36.9386 12.5831 36.9544 12.5744C36.9701 12.5657 36.9839 12.5539 36.995 12.5397C37.0061 12.5256 37.0143 12.5094 37.019 12.492C37.021 12.4796 37.021 12.4669 37.019 12.4545C37.0233 12.4183 37.0131 12.3818 36.9906 12.353C36.9681 12.3242 36.9352 12.3055 36.899 12.3008C36.8611 12.3007 36.8246 12.3149 36.7967 12.3407C36.7689 12.3664 36.7519 12.4017 36.749 12.4395Z" fill="white"/>
|
||||
<path d="M37.1616 10.6504C37.1878 10.4741 37.1166 10.3654 36.9628 10.3429C36.7453 10.3091 36.4978 10.4516 36.4791 10.6204C36.4603 10.7891 36.6403 10.9429 36.8166 10.9616C36.9028 10.9629 36.9862 10.9315 37.0502 10.8738C37.1142 10.8161 37.154 10.7362 37.1616 10.6504Z" fill="white"/>
|
||||
<path d="M34.6492 3.96743C34.6492 3.99368 34.6492 4.03493 34.698 4.03868C34.7153 4.04227 34.7334 4.03926 34.7487 4.03025C34.7639 4.02124 34.7753 4.00686 34.7805 3.98993C34.7798 3.97151 34.7727 3.95391 34.7603 3.9402C34.748 3.9265 34.7312 3.91755 34.713 3.91493C34.6905 3.89993 34.6492 3.94868 34.6492 3.96743Z" fill="white"/>
|
||||
<path d="M25.6794 7.57953C25.6497 7.59946 25.6287 7.62979 25.6203 7.66451C25.612 7.69924 25.617 7.73582 25.6344 7.76703C25.6906 7.84953 25.7881 7.76703 25.8294 7.73328C25.8405 7.7139 25.8464 7.69191 25.8464 7.66953C25.8464 7.64715 25.8405 7.62516 25.8294 7.60578C25.8075 7.59136 25.7829 7.5816 25.7571 7.57708C25.7313 7.57257 25.7048 7.5734 25.6794 7.57953Z" fill="white"/>
|
||||
<path d="M26.103 5.72326C26.1539 5.65395 26.176 5.5677 26.1648 5.48247C26.1537 5.39724 26.11 5.31962 26.043 5.26576C25.9398 5.21631 25.8228 5.20386 25.7115 5.23049C25.6002 5.25712 25.5014 5.32121 25.4318 5.41201C25.4187 5.45953 25.4151 5.50917 25.4212 5.55808C25.4273 5.60699 25.443 5.65421 25.4674 5.69705C25.4918 5.73989 25.5244 5.77751 25.5633 5.80774C25.6022 5.83798 25.6468 5.86024 25.6943 5.87326C25.7696 5.8939 25.8494 5.89054 25.9227 5.86366C25.9959 5.83677 26.059 5.78769 26.103 5.72326Z" fill="white"/>
|
||||
<path d="M25.2742 6.52469C25.1905 6.44134 25.0772 6.39453 24.9592 6.39453C24.8411 6.39453 24.7278 6.44134 24.6442 6.52469L24.6179 6.55469C24.5769 6.58866 24.5431 6.63045 24.5184 6.67763C24.4937 6.72481 24.4787 6.77642 24.4741 6.82948C24.4696 6.88253 24.4756 6.93595 24.492 6.98664C24.5083 7.03732 24.5345 7.08425 24.5692 7.12469C24.5758 7.13633 24.5848 7.14653 24.5954 7.15469C24.6863 7.23957 24.8051 7.28832 24.9294 7.29178C25.0537 7.29523 25.175 7.25315 25.2704 7.17344C25.3418 7.08056 25.3808 6.96685 25.3815 6.8497C25.3822 6.73254 25.3445 6.61839 25.2742 6.52469Z" fill="white"/>
|
||||
<path d="M30.7416 6.37604C30.5766 6.05729 30.2841 6.28604 30.2541 6.04979C30.2241 5.81354 30.4529 5.89229 30.3929 5.56229C30.3329 5.23229 30.0179 5.09354 29.8379 5.25479C29.6579 5.41604 29.7329 5.62979 29.6841 5.62979C29.6354 5.62979 29.3879 5.70479 29.4216 5.88854C29.3766 5.86604 29.3241 5.85479 29.2979 5.88854C29.2808 5.95531 29.2888 6.02603 29.3204 6.08729C29.343 6.10758 29.3715 6.1203 29.4017 6.12366C29.432 6.12702 29.4625 6.12086 29.4891 6.10604V6.07604C29.6166 6.22229 29.8266 6.14729 29.8641 6.22979C29.8889 6.40544 29.924 6.57949 29.9691 6.75104C29.9851 6.80713 30.0132 6.85904 30.0514 6.90306C30.0897 6.94708 30.1371 6.98214 30.1905 7.00576C30.2438 7.02938 30.3017 7.04098 30.36 7.03973C30.4183 7.03848 30.4756 7.02442 30.5279 6.99854C30.6348 6.95525 30.7201 6.87128 30.7651 6.7651C30.8101 6.65891 30.8111 6.5392 30.7679 6.43229C30.7607 6.41284 30.7519 6.39403 30.7416 6.37604Z" fill="white"/>
|
||||
<path d="M30.2128 8.91036C30.1828 8.95536 30.1491 9.05661 30.2128 9.10911C30.2443 9.1277 30.2815 9.13415 30.3174 9.12725C30.3533 9.12034 30.3855 9.10056 30.4078 9.07161C30.4416 9.03411 30.5091 8.90286 30.4078 8.82786C30.3066 8.75286 30.2391 8.86536 30.2128 8.91036Z" fill="white"/>
|
||||
<path d="M29.024 5.23563C29.0736 5.17038 29.1004 5.09069 29.1004 5.00875C29.1004 4.92681 29.0736 4.84712 29.024 4.78188C28.8215 4.61688 28.5928 4.78188 28.4803 4.85313C28.3678 4.92438 28.4803 5.22813 28.694 5.32563C28.7473 5.35755 28.8111 5.36718 28.8714 5.35244C28.9318 5.3377 28.9839 5.29978 29.0165 5.24688L29.024 5.23563Z" fill="white"/>
|
||||
<path d="M28.6793 7.95011V8.04386C28.6904 8.04946 28.7026 8.05238 28.7149 8.05238C28.7273 8.05238 28.7395 8.04946 28.7506 8.04386C28.7506 8.01011 28.7806 7.96511 28.7506 7.94261C28.7206 7.92011 28.7131 7.94636 28.6793 7.95011Z" fill="white"/>
|
||||
<path d="M36.5693 7.06838C36.5808 7.05044 36.5908 7.03163 36.5993 7.01213C36.6893 6.99338 36.8356 6.95213 36.8431 6.86963C36.8506 6.78713 36.6481 6.69713 36.5731 6.68963H36.5243C36.4438 6.65186 36.355 6.63547 36.2663 6.64204C36.1776 6.64861 36.0921 6.67791 36.0181 6.72713C35.9923 6.76267 35.9738 6.803 35.9638 6.84577C35.9538 6.88854 35.9524 6.93287 35.9597 6.97618C35.967 7.01949 35.983 7.0609 36.0065 7.09798C36.03 7.13506 36.0608 7.16707 36.0968 7.19213C36.1091 7.20302 36.123 7.21188 36.1381 7.21838C36.2618 7.30838 36.4418 7.24838 36.5693 7.06838Z" fill="white"/>
|
||||
<path d="M38.6129 12.8441C38.6129 12.9416 38.6129 13.0616 38.7479 13.0578C38.794 13.0627 38.8404 13.0515 38.8794 13.0263C38.9183 13.001 38.9473 12.9632 38.9617 12.9191C38.9617 12.8591 38.8942 12.7503 38.8679 12.6903C38.6842 12.6641 38.6279 12.7503 38.6129 12.8441Z" fill="white"/>
|
||||
<path d="M42.2056 11.2234C42.303 11.2409 42.4035 11.2192 42.4849 11.163C42.5664 11.1068 42.6224 11.0207 42.6406 10.9234C42.6443 10.8985 42.6443 10.8732 42.6406 10.8484C42.6556 10.7728 42.6556 10.6951 42.6406 10.6196C42.7453 10.6459 42.8557 10.638 42.9556 10.5971C43.0044 10.5687 43.0436 10.5264 43.0683 10.4757C43.093 10.4249 43.1021 10.368 43.0944 10.3121C43.2062 10.3095 43.3145 10.2719 43.4039 10.2046C43.4933 10.1374 43.5595 10.0438 43.5931 9.93711C43.618 9.82433 43.5978 9.70629 43.5369 9.6082C43.4759 9.51011 43.379 9.43974 43.2669 9.41211C43.137 9.42052 43.012 9.46451 42.9055 9.53925C42.799 9.614 42.7152 9.71662 42.6631 9.83586C42.6515 9.90645 42.6633 9.97892 42.6969 10.0421H42.6744C42.6173 10.076 42.5681 10.1215 42.5299 10.1759C42.4918 10.2302 42.4656 10.2919 42.4531 10.3571C42.389 10.323 42.319 10.3014 42.2469 10.2934C42.1212 10.2818 41.9961 10.3202 41.8986 10.4002C41.801 10.4802 41.7389 10.5954 41.7256 10.7209C41.7069 10.9271 41.9506 11.1821 42.2056 11.2234Z" fill="white"/>
|
||||
<path d="M39.7867 11.8466C40.1617 11.9178 40.1617 11.8916 40.1617 11.5766C40.0042 11.4641 39.8767 11.5091 39.7642 11.6591C39.3442 11.4753 39.1455 11.6591 39.1905 12.1353C39.1663 12.1558 39.1399 12.1734 39.1117 12.1878C38.988 12.2366 38.973 12.3378 38.988 12.4541C39.003 12.5703 39.0705 12.6153 39.1755 12.6528C39.4267 12.7353 39.5505 12.6791 39.603 12.4203C39.6705 12.2291 39.7305 12.0341 39.7867 11.8466Z" fill="white"/>
|
||||
<path d="M39.1865 10.0986C39.2041 10.0012 39.1824 9.90076 39.1262 9.81927C39.07 9.73778 38.9838 9.68182 38.8865 9.66358C38.7605 9.65383 38.6355 9.69269 38.5371 9.77218C38.4388 9.85168 38.3747 9.96578 38.3578 10.0911C38.3633 10.1974 38.4027 10.2991 38.4701 10.3814C38.5376 10.4637 38.6296 10.5223 38.7328 10.5486C38.9615 10.5748 39.149 10.3911 39.1865 10.0986Z" fill="white"/>
|
||||
<path d="M41.8192 13.0388C41.7855 12.9563 41.6317 12.9338 41.5042 12.99C41.4679 13.0005 41.4373 13.0249 41.419 13.058C41.4007 13.091 41.3963 13.13 41.4067 13.1663C41.4053 13.1775 41.4053 13.1888 41.4067 13.2C41.4592 13.3013 41.5342 13.3763 41.6655 13.3313C41.7207 13.3075 41.7662 13.2655 41.7941 13.2123C41.8221 13.159 41.831 13.0978 41.8192 13.0388Z" fill="white"/>
|
||||
<path d="M41.6281 11.9885C41.5714 11.9806 41.5137 11.9841 41.4584 11.9987C41.403 12.0134 41.3512 12.0389 41.3058 12.0738C41.2604 12.1087 41.2224 12.1523 41.1941 12.202C41.1657 12.2518 41.1476 12.3067 41.1406 12.3635C41.1406 12.3635 41.1406 12.3935 41.1406 12.4085C41.1397 12.5138 41.1774 12.6157 41.2465 12.6951C41.3155 12.7746 41.4113 12.826 41.5156 12.8397C41.7256 12.866 41.9319 12.6485 41.9619 12.3747C41.9682 12.3313 41.9658 12.2871 41.9549 12.2447C41.9439 12.2022 41.9246 12.1623 41.8981 12.1274C41.8715 12.0925 41.8383 12.0632 41.8003 12.0413C41.7624 12.0194 41.7204 12.0053 41.6769 11.9997L41.6281 11.9885Z" fill="white"/>
|
||||
<path d="M24.5617 8.36927C24.4979 8.42927 24.5317 8.58302 24.6329 8.68052C24.6534 8.7098 24.6846 8.72979 24.7197 8.73611C24.7549 8.74244 24.7911 8.73458 24.8204 8.71427L24.8542 8.68052C24.9292 8.59427 24.9742 8.49677 24.8842 8.39177C24.8413 8.35133 24.7858 8.32699 24.727 8.32288C24.6682 8.31878 24.6098 8.33517 24.5617 8.36927Z" fill="white"/>
|
||||
<path d="M15.7566 6.33056C15.8804 6.38306 16.1016 6.16181 16.0566 6.06431C16.0116 5.96681 15.7191 5.92931 15.6629 6.06431C15.6458 6.11273 15.6457 6.16553 15.6628 6.21396C15.6798 6.2624 15.713 6.30354 15.7566 6.33056Z" fill="white"/>
|
||||
<path d="M12.6478 7.71084C12.5991 7.79334 12.5128 8.01459 12.5728 8.08584C12.6328 8.15709 12.8578 8.03709 12.8653 8.00334C12.8953 7.89834 12.9553 7.76709 12.8653 7.67334C12.8505 7.65716 12.8318 7.64497 12.811 7.63788C12.7902 7.6308 12.768 7.62904 12.7464 7.63277C12.7247 7.6365 12.7044 7.6456 12.6871 7.65924C12.6699 7.67288 12.6564 7.69062 12.6478 7.71084Z" fill="white"/>
|
||||
<path d="M35.0579 4.73698C35.0496 4.82272 35.0734 4.90847 35.1247 4.97771C35.1759 5.04695 35.251 5.09477 35.3354 5.11198C35.394 5.13383 35.459 5.13148 35.516 5.10547C35.5729 5.07945 35.6172 5.03189 35.6391 4.97323C35.6511 4.88072 35.6308 4.78691 35.5816 4.70765C35.5324 4.6284 35.4573 4.56855 35.3691 4.53823C35.302 4.52823 35.2335 4.54284 35.1763 4.57936C35.1191 4.61589 35.077 4.67187 35.0579 4.73698Z" fill="white"/>
|
||||
<path d="M37.4017 8.15335C37.4007 8.18241 37.4054 8.21139 37.4156 8.23861C37.4258 8.26584 37.4413 8.29079 37.4611 8.31203C37.481 8.33328 37.5048 8.3504 37.5313 8.36243C37.5578 8.37445 37.5864 8.38114 37.6154 8.3821C37.6894 8.37647 37.7586 8.3433 37.8092 8.28914C37.8599 8.23498 37.8885 8.16378 37.8892 8.0896C37.8367 8.0446 37.7654 7.9396 37.6717 7.90585C37.5779 7.8721 37.4129 7.9996 37.4017 8.15335Z" fill="white"/>
|
||||
<path d="M35.2266 3.8993L34.9266 3.7793C35.0116 3.84962 35.1165 3.89158 35.2266 3.8993Z" fill="white"/>
|
||||
<path d="M37.6154 6.55879C37.5187 6.54902 37.4217 6.57274 37.3404 6.62599C37.2592 6.67924 37.1987 6.75878 37.1691 6.85129C37.1713 6.94801 37.2045 7.04147 37.264 7.1178C37.3234 7.19413 37.4059 7.24927 37.4991 7.27504C37.6379 7.29754 37.8104 7.13254 37.8366 6.94879C37.8629 6.76504 37.7954 6.58879 37.6154 6.55879Z" fill="white"/>
|
||||
<path d="M40.7392 9.86206C40.7251 9.95868 40.7451 10.0572 40.7957 10.1407C40.8464 10.2242 40.9245 10.2875 41.0167 10.3196C41.148 10.3383 41.3917 10.0721 41.3917 9.90706C41.3864 9.82549 41.3516 9.74865 41.2938 9.69081C41.236 9.63297 41.1592 9.59806 41.0777 9.59256C40.9961 9.58706 40.9153 9.61135 40.8503 9.66092C40.7853 9.71048 40.7405 9.78195 40.7242 9.86206H40.7392Z" fill="white"/>
|
||||
<path d="M41.2792 11.3998C41.2304 11.4261 41.1404 11.4823 41.1704 11.5348C41.1875 11.5601 41.2113 11.5801 41.2391 11.5927C41.2669 11.6053 41.2976 11.6099 41.3279 11.6061C41.3692 11.6061 41.4779 11.4973 41.4479 11.4448C41.4268 11.4223 41.3998 11.4061 41.37 11.3981C41.3402 11.3902 41.3087 11.3908 41.2792 11.3998Z" fill="white"/>
|
||||
<path d="M18.4306 9.41306C18.4741 9.37236 18.5014 9.31734 18.5076 9.2581C18.5138 9.19886 18.4985 9.13938 18.4644 9.09056C18.4215 9.04118 18.3612 9.01043 18.2961 9.00483C18.2309 8.99923 18.1662 9.01922 18.1156 9.06056C18.0725 9.08702 18.0414 9.12919 18.0288 9.17816C18.0162 9.22714 18.0231 9.27909 18.0481 9.32306L18.0856 9.36806C18.1224 9.41857 18.1775 9.45271 18.2392 9.46322C18.3008 9.47372 18.3641 9.45976 18.4156 9.42431L18.4306 9.41306Z" fill="white"/>
|
||||
<path d="M20.5494 6.16806C20.5299 6.19095 20.5152 6.21746 20.5059 6.24606C20.4967 6.27466 20.4933 6.3048 20.4957 6.33474C20.4981 6.36469 20.5064 6.39387 20.5202 6.4206C20.5339 6.44734 20.5527 6.47111 20.5756 6.49056H20.5944C20.6881 6.55806 20.7894 6.63681 20.8756 6.55431C21.0219 6.39681 21.0369 6.24306 20.9469 6.14931C20.924 6.12284 20.896 6.10122 20.8646 6.08572C20.8332 6.07023 20.7991 6.06116 20.7641 6.05907C20.7292 6.05697 20.6942 6.06188 20.6612 6.07351C20.6281 6.08515 20.5978 6.10327 20.5719 6.12681L20.5494 6.16806Z" fill="white"/>
|
||||
<path d="M18.4867 10.7879C18.5265 10.7371 18.5482 10.6743 18.5482 10.6098C18.5482 10.5452 18.5265 10.4825 18.4867 10.4316C18.4448 10.3915 18.3891 10.3691 18.3311 10.3691C18.2731 10.3691 18.2173 10.3915 18.1754 10.4316C18.124 10.479 18.0926 10.5442 18.0878 10.6139C18.0829 10.6836 18.1049 10.7526 18.1492 10.8066C18.1989 10.8431 18.2597 10.8611 18.3213 10.8577C18.3828 10.8543 18.4413 10.8296 18.4867 10.7879Z" fill="white"/>
|
||||
<path d="M19.8216 4.00047C19.8725 4.04822 19.9323 4.08544 19.9976 4.10999C20.0629 4.13453 20.1324 4.14591 20.2021 4.14347C20.2718 4.14103 20.3403 4.12482 20.4038 4.09577C20.4672 4.06672 20.5242 4.02541 20.5716 3.97422C20.6543 3.89624 20.7077 3.79216 20.7227 3.67949C20.7377 3.56681 20.7135 3.4524 20.6541 3.35547C20.3316 3.45297 20.0091 3.55797 19.6941 3.67047C19.6887 3.73156 19.6974 3.79307 19.7195 3.85028C19.7416 3.90749 19.7766 3.95886 19.8216 4.00047Z" fill="white"/>
|
||||
<path d="M16.0191 9.6416C15.9705 9.69193 15.9434 9.75915 15.9434 9.8291C15.9434 9.89905 15.9705 9.96627 16.0191 10.0166C16.04 10.0416 16.0657 10.0622 16.0947 10.0771C16.1237 10.0921 16.1554 10.101 16.1879 10.1035C16.2204 10.1059 16.2531 10.1018 16.284 10.0914C16.3149 10.081 16.3434 10.0645 16.3678 10.0429C16.3775 10.0351 16.3863 10.0263 16.3941 10.0166C16.4376 9.96894 16.4617 9.90674 16.4617 9.84223C16.4617 9.77771 16.4376 9.71552 16.3941 9.66785C16.3739 9.64175 16.3488 9.61988 16.3201 9.60349C16.2915 9.5871 16.2599 9.57651 16.2272 9.57234C16.1944 9.56816 16.1612 9.57047 16.1293 9.57913C16.0975 9.5878 16.0677 9.60266 16.0416 9.62285L16.0191 9.6416Z" fill="white"/>
|
||||
<path d="M23.2155 9.29641C23.2027 9.32416 23.1977 9.35487 23.201 9.38525C23.2043 9.41563 23.2158 9.44455 23.2342 9.46891C23.2755 9.50266 23.3617 9.56641 23.403 9.52141C23.4178 9.49506 23.4255 9.46536 23.4255 9.43516C23.4255 9.40495 23.4178 9.37525 23.403 9.34891C23.3992 9.31516 23.2567 9.24766 23.2155 9.29641Z" fill="white"/>
|
||||
<path d="M21.8768 8.19337C21.8209 8.15368 21.753 8.13461 21.6846 8.1394C21.6162 8.14418 21.5516 8.17253 21.5018 8.21962C21.4446 8.27832 21.4102 8.35546 21.4047 8.43722C21.3992 8.51899 21.423 8.60004 21.4718 8.66587C21.5439 8.72288 21.6317 8.75664 21.7234 8.76266C21.8152 8.76869 21.9066 8.7467 21.9856 8.69962C22.0681 8.60587 22.0118 8.33212 21.8768 8.19337Z" fill="white"/>
|
||||
<path d="M21.5956 11.1366C21.5791 11.1673 21.5721 11.2022 21.5754 11.2369C21.5787 11.2717 21.5923 11.3046 21.6144 11.3316C21.6386 11.3444 21.6657 11.3511 21.6931 11.3511C21.7206 11.3511 21.7476 11.3444 21.7719 11.3316C21.7866 11.3087 21.7944 11.282 21.7944 11.2547C21.7944 11.2275 21.7866 11.2008 21.7719 11.1778C21.7569 11.1478 21.6444 11.0766 21.5956 11.1366Z" fill="white"/>
|
||||
<path d="M21.0405 5.02496C20.9717 4.97205 20.8874 4.94336 20.8005 4.94336C20.7137 4.94336 20.6294 4.97205 20.5605 5.02496C20.518 5.09312 20.5 5.17378 20.5095 5.25358C20.5191 5.33338 20.5556 5.40751 20.613 5.46371C20.6559 5.50025 20.7115 5.51838 20.7677 5.51417C20.8239 5.50996 20.8761 5.48374 20.913 5.44121C21.0855 5.24621 21.1268 5.10371 21.0405 5.02496Z" fill="white"/>
|
||||
<path d="M17.3057 6.01535C17.2753 5.98451 17.2391 5.96001 17.1992 5.9433C17.1593 5.92658 17.1164 5.91797 17.0732 5.91797C17.0299 5.91797 16.987 5.92658 16.9471 5.9433C16.9072 5.96001 16.871 5.98451 16.8407 6.01535C16.8301 6.02209 16.8211 6.03104 16.8144 6.0416C16.748 6.10254 16.7058 6.18534 16.6955 6.27487C16.6851 6.36439 16.7074 6.45464 16.7582 6.5291C16.8374 6.58426 16.9316 6.61384 17.0282 6.61384C17.1247 6.61384 17.2189 6.58426 17.2982 6.5291C17.3321 6.503 17.3606 6.47046 17.3821 6.43334C17.4035 6.39623 17.4173 6.35526 17.4229 6.31277C17.4285 6.27029 17.4256 6.22712 17.4145 6.18574C17.4034 6.14436 17.3843 6.10557 17.3582 6.0716L17.3057 6.01535Z" fill="white"/>
|
||||
<path d="M16.5404 5.07844C16.6103 5.15629 16.7078 5.20378 16.8121 5.21078C16.9165 5.21779 17.0195 5.18375 17.0991 5.11594C17.1816 5.23219 17.2191 5.40094 17.4141 5.33344C17.4671 5.31933 17.513 5.28641 17.5434 5.24084C17.5738 5.19528 17.5865 5.1402 17.5791 5.08594C17.5791 4.88344 17.3954 4.88344 17.2416 4.87219C17.2466 4.8167 17.2362 4.76092 17.2116 4.71094L16.5254 5.06344C16.5293 5.06941 16.5344 5.07451 16.5404 5.07844Z" fill="white"/>
|
||||
<path d="M23.3991 5.344C23.3016 5.1865 23.1553 5.16775 22.9603 5.344C22.886 5.5039 22.8209 5.66791 22.7653 5.83525C22.7561 5.86306 22.7526 5.89244 22.755 5.92164C22.7574 5.95083 22.7657 5.97924 22.7794 6.00515C22.793 6.03107 22.8118 6.05396 22.8345 6.07245C22.8572 6.09094 22.8834 6.10465 22.9116 6.11275C22.9399 6.12354 22.97 6.1286 23.0003 6.12764C23.0306 6.12668 23.0604 6.11972 23.0879 6.10716C23.1155 6.09461 23.1403 6.0767 23.1609 6.05449C23.1814 6.03227 23.1974 6.00619 23.2078 5.97775C23.2375 5.91037 23.2781 5.8483 23.3278 5.794C23.3875 5.73722 23.4268 5.66239 23.4396 5.58107C23.4525 5.49974 23.4383 5.41643 23.3991 5.344Z" fill="white"/>
|
||||
<path d="M16.4544 7.05692C16.4374 7.01974 16.4133 6.98626 16.3833 6.95841C16.3534 6.93056 16.3183 6.90888 16.28 6.8946C16.2417 6.88032 16.2009 6.87373 16.1601 6.8752C16.1192 6.87667 16.0791 6.88618 16.0419 6.90317C15.9821 6.93128 15.9323 6.9771 15.8994 7.03442C15.808 7.18235 15.7385 7.34277 15.6931 7.51067C15.6768 7.61351 15.6939 7.71887 15.7418 7.81132C15.7897 7.90377 15.866 7.97845 15.9594 8.02442C16.0644 8.06942 16.3344 8.07692 16.3531 7.84817C16.2219 7.47317 16.4994 7.47317 16.4919 7.19567C16.4885 7.14744 16.4757 7.10032 16.4544 7.05692Z" fill="white"/>
|
||||
<path d="M17.5944 7.98033C17.6126 7.96605 17.6278 7.94832 17.6392 7.92816C17.6506 7.90799 17.6578 7.88578 17.6606 7.8628C17.6634 7.83981 17.6617 7.8165 17.6554 7.79421C17.6492 7.77191 17.6386 7.75105 17.6244 7.73283L17.5944 7.70283C17.558 7.68931 17.519 7.68463 17.4806 7.6892C17.4421 7.69376 17.4052 7.70744 17.3731 7.72908C17.3244 7.77033 17.2531 7.93158 17.3019 7.99158C17.3506 8.05158 17.5344 8.02533 17.5944 7.98033Z" fill="white"/>
|
||||
<path d="M18.4531 7.49317C18.3331 7.36942 18.1606 7.39192 17.9993 7.55317C17.9706 7.5739 17.9465 7.6002 17.9282 7.6305C17.91 7.66079 17.8981 7.69446 17.8932 7.72949C17.8883 7.76451 17.8905 7.80016 17.8997 7.83431C17.9089 7.86845 17.9249 7.90038 17.9468 7.92817C18.0237 7.98505 18.1147 8.01969 18.21 8.02829C18.3052 8.03688 18.401 8.01912 18.4868 7.97692C18.5167 7.94759 18.5405 7.91259 18.5568 7.87395C18.573 7.83532 18.5814 7.79383 18.5814 7.75192C18.5814 7.71002 18.573 7.66853 18.5568 7.62989C18.5405 7.59126 18.5167 7.55625 18.4868 7.52692L18.4531 7.49317Z" fill="white"/>
|
||||
<path d="M14.9431 8.37846C14.9307 8.39167 14.9238 8.4091 14.9238 8.42721C14.9238 8.44532 14.9307 8.46275 14.9431 8.47596C14.9431 8.49471 15.0181 8.47596 15.0331 8.47596C15.0396 8.46999 15.0448 8.46274 15.0483 8.45468C15.0518 8.44661 15.0537 8.4379 15.0537 8.42909C15.0537 8.42028 15.0518 8.41157 15.0483 8.4035C15.0448 8.39543 15.0396 8.38818 15.0331 8.38221C15.0205 8.37007 15.0037 8.36328 14.9862 8.36328C14.9688 8.36328 14.9519 8.37007 14.9394 8.38221L14.9431 8.37846Z" fill="white"/>
|
||||
<path d="M35.2228 9.56278C35.2737 9.4711 35.2884 9.36369 35.2642 9.26169C35.2399 9.15968 35.1783 9.07045 35.0916 9.01153C35.0428 8.97694 34.9878 8.95231 34.9295 8.93905C34.8713 8.92579 34.811 8.92417 34.7521 8.93427C34.6932 8.94437 34.6369 8.96601 34.5864 8.99793C34.5359 9.02985 34.4922 9.07143 34.4578 9.12028V9.14278C34.4005 9.22182 34.3762 9.32012 34.3902 9.41676C34.4042 9.5134 34.4554 9.60077 34.5328 9.66028C34.6422 9.72328 34.7696 9.74791 34.8946 9.73024C35.0196 9.71257 35.1351 9.65363 35.2228 9.56278Z" fill="white"/>
|
||||
<path d="M35.0544 11.2837C35.1144 11.2904 35.1748 11.2757 35.2249 11.242C35.2751 11.2084 35.3116 11.158 35.3281 11.1C35.3354 11.0724 35.3371 11.0436 35.3331 11.0154C35.329 10.9871 35.3194 10.96 35.3047 10.9355C35.29 10.911 35.2706 10.8898 35.2476 10.8729C35.2246 10.8561 35.1984 10.844 35.1706 10.8375C35.1111 10.8309 35.0512 10.8458 35.0017 10.8795C34.9522 10.9132 34.9164 10.9634 34.9006 11.0212C34.8594 11.1412 34.9419 11.2837 35.0544 11.2837Z" fill="white"/>
|
||||
<path d="M35.733 8.98549C35.7363 8.92648 35.7196 8.8681 35.6855 8.81978C35.6515 8.77146 35.6022 8.73604 35.5455 8.71924C35.4808 8.71558 35.4166 8.73246 35.362 8.76748C35.3075 8.8025 35.2654 8.85387 35.2418 8.91424C35.2341 8.97371 35.2498 9.03383 35.2854 9.08204C35.321 9.13026 35.3739 9.16284 35.433 9.17299C35.4973 9.1839 35.5634 9.17083 35.6187 9.13627C35.674 9.10171 35.7146 9.04806 35.733 8.98549Z" fill="white"/>
|
||||
<path d="M35.4328 10.9005C35.4723 10.8966 35.5099 10.8819 35.5416 10.8581C35.5734 10.8343 35.598 10.8023 35.6128 10.7655C35.6128 10.6943 35.4703 10.6155 35.4216 10.6193C35.3905 10.6298 35.3629 10.6487 35.3417 10.6738C35.3206 10.6989 35.3067 10.7293 35.3016 10.7618C35.3086 10.7947 35.3246 10.8251 35.3478 10.8495C35.3709 10.874 35.4003 10.8916 35.4328 10.9005Z" fill="white"/>
|
||||
<path d="M34.1393 6.64808C34.1087 6.66079 34.0809 6.67943 34.0575 6.70293C34.0341 6.72642 34.0156 6.75431 34.0031 6.78498C33.9905 6.81566 33.9842 6.84851 33.9844 6.88165C33.9846 6.91479 33.9913 6.94756 34.0043 6.97808C34.0158 7.00984 34.0352 7.03821 34.0605 7.06058C34.1009 7.09194 34.1478 7.11393 34.1977 7.12496C34.2476 7.13598 34.2994 7.13577 34.3493 7.12433C34.4123 7.10206 34.464 7.05593 34.4934 6.99589C34.5227 6.93584 34.5273 6.86667 34.5062 6.80327C34.4851 6.73986 34.4399 6.68729 34.3804 6.65686C34.3209 6.62644 34.2518 6.62059 34.188 6.64058L34.1393 6.64808Z" fill="white"/>
|
||||
<path d="M34.1466 10.3384C34.3304 10.3384 34.3004 10.1697 34.3566 10.1022C34.3917 10.0633 34.4187 10.0179 34.4362 9.96858C34.4537 9.91925 34.4612 9.86695 34.4584 9.81468C34.4557 9.76242 34.4426 9.71122 34.4199 9.66403C34.3973 9.61683 34.3656 9.57457 34.3266 9.53966C34.2594 9.50666 34.1834 9.49613 34.1098 9.50963C34.0362 9.52314 33.9689 9.55996 33.9179 9.61466C33.8631 9.6589 33.8274 9.72255 33.8183 9.79239C33.8092 9.86223 33.8274 9.93289 33.8691 9.98966C33.8991 10.0872 33.9666 10.3422 34.1466 10.3384Z" fill="white"/>
|
||||
<path d="M33.7231 8.47136C33.7944 8.47136 33.8094 8.22011 33.7756 8.07011C33.7898 8.09174 33.8061 8.11185 33.8244 8.13011C33.8244 8.13011 33.9406 8.09636 33.9406 8.07011C33.9406 8.04386 33.9406 7.92011 33.8806 7.89011C33.8206 7.86011 33.7456 7.96511 33.7456 7.98761L33.7231 7.95761C33.6369 7.89011 33.4419 8.03636 33.4119 8.22386C33.3819 8.41136 33.6294 8.49011 33.7231 8.47136Z" fill="white"/>
|
||||
<path d="M40.1129 11.5204C40.1356 11.5047 40.1545 11.4841 40.1681 11.4601C40.1817 11.436 40.1898 11.4092 40.1916 11.3817C40.1916 11.3479 40.0754 11.2542 40.0379 11.2692C40.0004 11.2842 39.9854 11.4154 39.9966 11.4642C40.0064 11.4856 40.0234 11.503 40.0446 11.5133C40.0658 11.5235 40.09 11.5261 40.1129 11.5204Z" fill="white"/>
|
||||
<path d="M35.1066 6.71313C35.0563 6.67311 34.9922 6.65459 34.9282 6.66162C34.8643 6.66864 34.8058 6.70064 34.7653 6.75063C34.728 6.80419 34.7122 6.8699 34.7212 6.93458C34.7303 6.99926 34.7635 7.05814 34.8141 7.09938C34.8719 7.13889 34.9424 7.1554 35.0118 7.14569C35.0811 7.13598 35.1443 7.10075 35.1891 7.04688C35.2231 6.99197 35.2343 6.92593 35.2203 6.86287C35.2063 6.79981 35.1682 6.74472 35.1141 6.70938L35.1066 6.71313Z" fill="white"/>
|
||||
<path d="M38.2529 8.95922C38.2863 8.96267 38.3202 8.95948 38.3524 8.94985C38.3847 8.94022 38.4147 8.92433 38.4409 8.90309C38.467 8.88185 38.4886 8.85567 38.5046 8.82606C38.5206 8.79644 38.5307 8.76396 38.5341 8.73047C38.5376 8.69698 38.5344 8.66314 38.5247 8.63089C38.5151 8.59863 38.4992 8.56858 38.478 8.54247C38.4567 8.51635 38.4306 8.49467 38.4009 8.47868C38.3713 8.46268 38.3388 8.45267 38.3054 8.44922C38.2405 8.45185 38.1786 8.47681 38.1301 8.51987C38.0816 8.56292 38.0494 8.62143 38.0391 8.68547C38.0317 8.75002 38.0499 8.81491 38.0899 8.86613C38.1299 8.91735 38.1884 8.95079 38.2529 8.95922Z" fill="white"/>
|
||||
<path d="M40.0791 13.3201C40.1082 13.3093 40.1347 13.2928 40.1572 13.2714C40.1796 13.25 40.1975 13.2243 40.2097 13.1959C40.2219 13.1674 40.2282 13.1367 40.2282 13.1057C40.2282 13.0747 40.2219 13.0441 40.2097 13.0156C40.1975 12.9871 40.1796 12.9614 40.1572 12.94C40.1348 12.9187 40.1082 12.9021 40.0792 12.8913C40.0501 12.8805 40.0192 12.8757 39.9882 12.8772C39.9573 12.8787 39.927 12.8865 39.8991 12.9001C39.8736 12.9054 39.8493 12.9158 39.8279 12.9307C39.8064 12.9455 39.7881 12.9645 39.7742 12.9865C39.7602 13.0086 39.7507 13.0332 39.7464 13.0589C39.7421 13.0847 39.743 13.111 39.7491 13.1364C39.7475 13.1513 39.7475 13.1664 39.7491 13.1814C39.7592 13.2106 39.775 13.2376 39.7956 13.2606C39.8162 13.2837 39.8412 13.3024 39.8692 13.3157C39.8971 13.3289 39.9274 13.3365 39.9583 13.3379C39.9892 13.3393 40.0201 13.3346 40.0491 13.3239L40.0791 13.3201Z" fill="white"/>
|
||||
<path d="M38.0244 7.77822C37.9974 7.76588 37.9672 7.76249 37.9382 7.76857C37.9092 7.77464 37.8829 7.78985 37.8631 7.81197C37.8331 7.84197 37.8031 7.97696 37.8631 8.01071C37.9231 8.04446 38.0319 7.98072 38.0544 7.94322C38.0625 7.91527 38.0641 7.88581 38.0589 7.85717C38.0537 7.82854 38.0418 7.8015 38.0244 7.77822Z" fill="white"/>
|
||||
<path d="M37.8406 10.1736C37.8851 10.0515 37.8947 9.91939 37.8682 9.79218C37.8417 9.66496 37.7802 9.54768 37.6906 9.45355C37.5845 9.39699 37.4607 9.38336 37.3449 9.41546C37.229 9.44757 37.1299 9.52296 37.0681 9.62605C37.0155 9.73199 37.0002 9.85258 37.0247 9.96828C37.0492 10.084 37.1121 10.188 37.2031 10.2636C37.301 10.3319 37.4212 10.3606 37.5395 10.3439C37.6578 10.3272 37.7654 10.2664 37.8406 10.1736Z" fill="white"/>
|
||||
<path d="M35.9092 7.96818C35.952 7.92468 35.976 7.86609 35.976 7.80505C35.976 7.74401 35.952 7.68542 35.9092 7.64193C35.848 7.58915 35.7686 7.56225 35.6879 7.56693C35.5454 7.56693 35.5042 7.69443 35.5154 7.96443C35.6429 8.02443 35.7742 8.12568 35.9092 7.96818Z" fill="white"/>
|
||||
<path d="M37.799 12.4427C37.8403 12.4427 37.9828 12.4427 37.9828 12.364C37.9797 12.3328 37.9661 12.3037 37.9443 12.2812C37.9226 12.2587 37.8938 12.2443 37.8628 12.2402C37.829 12.2402 37.7053 12.2402 37.7015 12.3002C37.7038 12.3305 37.7141 12.3595 37.7312 12.3846C37.7483 12.4096 37.7717 12.4296 37.799 12.4427Z" fill="white"/>
|
||||
<path d="M31.443 7.02309C31.4243 7.00921 31.4031 6.99916 31.3805 6.99352C31.3579 6.98789 31.3344 6.98678 31.3114 6.99027C31.2884 6.99376 31.2663 7.00177 31.2464 7.01383C31.2265 7.0259 31.2092 7.0418 31.1955 7.06059L31.173 7.10184C31.1563 7.14096 31.1476 7.18305 31.1476 7.22559C31.1476 7.26813 31.1563 7.31022 31.173 7.34934C31.2223 7.38239 31.2804 7.40004 31.3398 7.40004C31.3993 7.40004 31.4573 7.38239 31.5067 7.34934C31.5419 7.30008 31.5562 7.23887 31.5464 7.17911C31.5365 7.11936 31.5034 7.06595 31.4542 7.03059L31.443 7.02309Z" fill="white"/>
|
||||
<path d="M30.9482 4.27446C30.8853 4.22744 30.8073 4.20526 30.7291 4.21218C30.6509 4.2191 30.578 4.25463 30.5244 4.31196C30.4767 4.38601 30.4553 4.47391 30.4634 4.5616C30.4716 4.6493 30.5089 4.73173 30.5694 4.79571C30.6583 4.84872 30.7632 4.86804 30.8651 4.85014C30.9669 4.83225 31.059 4.77832 31.1244 4.69821C31.1807 4.58946 31.0982 4.38696 30.9482 4.27446Z" fill="white"/>
|
||||
<path d="M31.1879 8.06582C31.2558 8.08076 31.3262 8.08076 31.3942 8.06582C31.4992 7.91582 31.4917 7.76957 31.3942 7.74332C31.3465 7.73052 31.2968 7.72724 31.2479 7.73367C31.199 7.74011 31.1519 7.75613 31.1092 7.78082C31.0267 7.82582 31.0792 8.02457 31.1879 8.06582Z" fill="white"/>
|
||||
<path d="M40.3792 10.8532C40.4017 10.7032 40.203 10.6469 40.1205 10.6019C40.038 10.5569 39.918 10.6432 39.8955 10.7707C39.873 10.8982 39.9292 10.9994 40.0567 10.9882C40.1842 10.9769 40.3567 11.0032 40.3792 10.8532Z" fill="white"/>
|
||||
<path d="M31.0192 9.65894C31.1092 9.45269 30.8205 9.28394 30.723 9.33269C30.6255 9.38144 30.5542 9.65519 30.6555 9.73394C30.7567 9.81269 30.9292 9.86894 31.0192 9.65894Z" fill="white"/>
|
||||
<path d="M29.5267 7.41075C29.6092 7.29825 29.5268 7.03575 29.3693 6.93075C29.3073 6.88071 29.2282 6.857 29.1489 6.86471C29.0697 6.87243 28.9966 6.91096 28.9455 6.972C28.8892 7.05225 28.8642 7.15034 28.8752 7.24775C28.8863 7.34517 28.9326 7.43517 29.0055 7.50075C29.09 7.54576 29.1872 7.56135 29.2815 7.54505C29.3759 7.52876 29.4622 7.48151 29.5267 7.41075Z" fill="white"/>
|
||||
<path d="M29.4556 10.5646C29.4825 10.5732 29.5112 10.5747 29.5388 10.5688C29.5665 10.5628 29.5921 10.5497 29.6131 10.5308C29.6238 10.5167 29.6316 10.5005 29.6359 10.4833C29.6402 10.4661 29.641 10.4482 29.6382 10.4306C29.6354 10.4131 29.6291 10.3963 29.6196 10.3813C29.6101 10.3663 29.5977 10.3534 29.5831 10.3433C29.4893 10.2908 29.4331 10.3883 29.4106 10.4258C29.4053 10.4509 29.4066 10.4768 29.4145 10.5012C29.4224 10.5255 29.4366 10.5474 29.4556 10.5646Z" fill="white"/>
|
||||
<path d="M31.3903 6.09045C31.4428 6.04545 31.3903 5.94045 31.3491 5.90295C31.3288 5.88858 31.3045 5.88086 31.2797 5.88086C31.2548 5.88086 31.2306 5.88858 31.2103 5.90295C31.1766 5.93295 31.2103 6.02295 31.2103 6.06795C31.2103 6.11295 31.3378 6.15045 31.3903 6.09045Z" fill="white"/>
|
||||
<path d="M31.878 6.09714C31.9461 6.14531 32.0306 6.16447 32.1128 6.15041C32.1951 6.13635 32.2684 6.09022 32.3167 6.02214C32.3288 6.00731 32.3389 5.99092 32.3467 5.97339C32.448 5.79714 32.4292 5.61715 32.2942 5.54215C32.1949 5.49849 32.084 5.48842 31.9785 5.51346C31.8729 5.5385 31.7784 5.59728 31.7092 5.68089C31.6886 5.7592 31.694 5.84205 31.7244 5.91708C31.7548 5.99211 31.8087 6.05528 31.878 6.09714Z" fill="white"/>
|
||||
<path d="M33.198 3.29313C33.2244 3.31881 33.2565 3.33796 33.2917 3.34903C33.3268 3.3601 33.3641 3.36278 33.4005 3.35688C33.4417 3.35413 33.4816 3.34125 33.5167 3.31937C33.1417 3.20687 32.7667 3.10938 32.3692 3.01562C32.318 3.09858 32.3011 3.19822 32.3221 3.29343C32.3431 3.38863 32.4004 3.47192 32.4817 3.52563C32.6083 3.61067 32.763 3.64297 32.913 3.61562C32.9273 3.63039 32.9455 3.64079 32.9655 3.64563C33.0067 3.64563 33.138 3.64562 33.1492 3.57063C33.1489 3.55612 33.1454 3.54186 33.1389 3.52889C33.1325 3.51591 33.1232 3.50455 33.1117 3.49563H33.1492C33.1812 3.43292 33.1979 3.36353 33.198 3.29313Z" fill="white"/>
|
||||
<path d="M34.0229 5.64815C34.0377 5.629 34.0491 5.60743 34.0566 5.5844C34.0747 5.63342 34.1028 5.67812 34.1391 5.71565C34.1162 5.77054 34.1022 5.8288 34.0979 5.88815C34.0855 5.97181 34.1053 6.05706 34.1533 6.12667C34.2013 6.19628 34.274 6.24506 34.3566 6.26315H34.4204C34.5081 6.26492 34.5937 6.23586 34.6622 6.18105C34.7307 6.12623 34.7778 6.04913 34.7954 5.96315C34.8129 5.97092 34.8293 5.98101 34.8441 5.99315C34.8938 6.06172 34.9684 6.10802 35.0519 6.12205C35.1354 6.13608 35.221 6.11672 35.2904 6.06815C35.3394 6.0335 35.3772 5.98527 35.3991 5.9294C35.4157 5.95714 35.4389 5.98034 35.4666 5.9969C35.5296 6.01394 35.5966 6.00914 35.6565 5.98326C35.7164 5.95738 35.7658 5.91196 35.7966 5.8544C35.8418 5.79187 35.8608 5.71417 35.8496 5.63784C35.8384 5.5615 35.7979 5.49255 35.7366 5.44565C35.6812 5.41549 35.6162 5.40801 35.5553 5.4248C35.4945 5.44158 35.4425 5.48132 35.4104 5.53565C35.3572 5.47138 35.287 5.42331 35.2079 5.3969C35.0943 5.36657 34.9957 5.29591 34.9304 5.19815C34.8793 5.12812 34.8111 5.07238 34.7323 5.03627C34.6535 5.00016 34.5668 4.98488 34.4804 4.9919C34.3937 4.99602 34.3101 5.02511 34.2395 5.07568C34.169 5.12624 34.1146 5.19612 34.0829 5.2769V5.3219C34.0612 5.2175 33.9992 5.12588 33.9104 5.0669C33.7791 4.9844 33.6066 5.0669 33.4866 5.24315C33.43 5.31264 33.4023 5.40128 33.4093 5.49066C33.4162 5.58004 33.4574 5.6633 33.5241 5.72315C33.6052 5.76189 33.6961 5.77545 33.785 5.76209C33.8739 5.74872 33.9567 5.70903 34.0229 5.64815Z" fill="white"/>
|
||||
<path d="M35.2192 7.84154C35.3279 7.84154 35.4292 7.79279 35.4179 7.68029C35.4067 7.56779 35.3504 7.36904 35.2604 7.36154C35.1704 7.35404 35.0617 7.54904 35.0279 7.63154C34.9942 7.71404 35.1067 7.83779 35.2192 7.84154Z" fill="white"/>
|
||||
<path d="M31.6492 4.74461C31.6492 4.69586 31.5817 4.63961 31.5367 4.62086C31.5218 4.61507 31.5057 4.61255 31.4897 4.61347C31.4737 4.61438 31.458 4.61872 31.4438 4.62617C31.4296 4.63363 31.4172 4.64404 31.4073 4.65671C31.3975 4.66938 31.3905 4.684 31.3867 4.69961C31.3867 4.77836 31.488 4.81211 31.533 4.82336C31.558 4.82355 31.5826 4.81613 31.6033 4.80207C31.6241 4.788 31.6401 4.76797 31.6492 4.74461Z" fill="white"/>
|
||||
<path d="M32.1406 4.67957C32.2401 4.75639 32.3636 4.79551 32.4892 4.79002C32.6148 4.78453 32.7344 4.73478 32.8268 4.64957C32.8827 4.53749 32.8991 4.40979 32.8732 4.28724C32.8473 4.1647 32.7808 4.0545 32.6843 3.97457C32.5764 3.92504 32.4547 3.91442 32.3398 3.9445C32.225 3.97458 32.1241 4.04351 32.0543 4.13957C31.9986 4.22408 31.9766 4.32638 31.9926 4.42633C32.0085 4.52627 32.0613 4.61662 32.1406 4.67957Z" fill="white"/>
|
||||
<path d="M31.8591 3.36742C31.883 3.32826 31.8995 3.28505 31.9078 3.23992C32.0878 3.29992 32.1853 3.19117 32.2828 3.04492L32.2566 2.98867C31.8816 2.90242 31.5328 2.82742 31.1653 2.76367C31.1301 2.78644 31.0996 2.81572 31.0753 2.84992C31.0122 2.93797 30.9867 3.04745 31.0043 3.15432C31.0218 3.26119 31.0811 3.35672 31.1691 3.41992L31.2291 3.45742C31.2743 3.49776 31.3278 3.52774 31.3858 3.54525C31.4438 3.56277 31.505 3.5674 31.565 3.55883C31.625 3.55026 31.6824 3.52869 31.7332 3.49563C31.784 3.46257 31.8269 3.41881 31.8591 3.36742Z" fill="white"/>
|
||||
<path d="M28.5704 7.73216C28.5601 7.71586 28.5467 7.70177 28.5309 7.69068C28.5151 7.67959 28.4973 7.67173 28.4785 7.66754C28.4597 7.66336 28.4402 7.66294 28.4212 7.66631C28.4022 7.66968 28.3841 7.67676 28.3679 7.68716C28.3493 7.69812 28.3338 7.7136 28.3229 7.73216C28.2741 7.79591 28.1991 7.98716 28.2479 8.03591C28.2966 8.08466 28.4879 8.03591 28.5666 8.00591C28.6454 7.97591 28.6491 7.83716 28.5704 7.73216Z" fill="white"/>
|
||||
<path d="M40.2103 9.42745C40.2516 9.42745 40.3603 9.3337 40.3228 9.26995C40.3 9.24386 40.2704 9.22473 40.2372 9.21478C40.204 9.20483 40.1687 9.20445 40.1353 9.2137C40.1133 9.23063 40.0962 9.25307 40.0856 9.27876C40.0751 9.30444 40.0715 9.33245 40.0753 9.35995C40.0898 9.38213 40.11 9.40006 40.1337 9.41192C40.1574 9.42378 40.1839 9.42914 40.2103 9.42745Z" fill="white"/>
|
||||
<path d="M27.2319 6.63784C27.1928 6.6304 27.1526 6.63123 27.1138 6.64027C27.075 6.64931 27.0386 6.66637 27.0069 6.69034C26.9281 6.76159 27.0069 6.95659 27.1006 6.98284C27.1643 6.98917 27.2286 6.98017 27.2881 6.95659C27.3706 6.80659 27.3369 6.66034 27.2319 6.63784Z" fill="white"/>
|
||||
<path d="M42.0666 14.5092C42.0893 14.4935 42.1081 14.4729 42.1218 14.4489C42.1354 14.4248 42.1435 14.398 42.1453 14.3705C42.1431 14.3528 42.1372 14.3358 42.1282 14.3204C42.1191 14.3051 42.107 14.2917 42.0926 14.2812C42.0782 14.2707 42.0619 14.2632 42.0445 14.2592C42.0271 14.2552 42.0091 14.2548 41.9916 14.258C41.8941 14.2805 41.9391 14.4042 41.9466 14.453C41.9616 14.4702 41.98 14.484 42.0007 14.4937C42.0213 14.5034 42.0438 14.5087 42.0666 14.5092Z" fill="white"/>
|
||||
<path d="M40.6492 14.085C40.6899 14.0815 40.7294 14.0694 40.7649 14.0493C40.8005 14.0292 40.8314 14.0018 40.8554 13.9688C40.9417 13.7963 40.8554 13.6837 40.6642 13.5938C40.5329 13.6762 40.3792 13.725 40.4129 13.9088C40.4222 13.9628 40.4518 14.0113 40.4958 14.0441C40.5398 14.0769 40.5947 14.0916 40.6492 14.085Z" fill="white"/>
|
||||
<path d="M40.7056 8.51562C40.7057 8.43327 40.6823 8.35259 40.6381 8.28313C40.6945 8.28855 40.7508 8.27213 40.7955 8.23724C40.8401 8.20236 40.8697 8.15167 40.8781 8.09563C40.8823 8.06238 40.8799 8.02864 40.871 7.99632C40.8622 7.964 40.8471 7.93374 40.8265 7.90727C40.806 7.8808 40.7804 7.85864 40.7513 7.84206C40.7222 7.82548 40.6901 7.8148 40.6568 7.81062C40.6283 7.80506 40.5991 7.80506 40.5706 7.81062C40.4018 7.83687 40.3418 7.73562 40.2368 7.63812C40.2706 7.59687 40.3006 7.55562 40.3306 7.51062C40.3584 7.51078 40.3857 7.50297 40.4093 7.48812C40.4128 7.51416 40.4204 7.53948 40.4318 7.56313C40.4619 7.61232 40.5067 7.65077 40.5599 7.67299C40.6131 7.69521 40.6719 7.70007 40.7281 7.68687C40.8443 7.64188 40.8443 7.43937 40.8218 7.33437C40.7898 7.2766 40.7452 7.22673 40.6913 7.18845C40.6374 7.15016 40.5757 7.12442 40.5106 7.11312C40.5106 7.04937 40.5331 7.05312 40.6193 6.96687L40.6493 6.89937C40.4881 6.77937 40.3231 6.66313 40.1581 6.54688C40.0639 6.60412 39.9843 6.68242 39.9256 6.77562C39.9034 6.81986 39.8919 6.86865 39.8918 6.91812C39.7681 6.91812 39.6968 7.00062 39.6668 7.16562C39.6302 7.2558 39.6301 7.35668 39.6664 7.44695C39.7028 7.53722 39.7729 7.60981 39.8618 7.64937H39.8993C39.8169 7.68687 39.7299 7.71335 39.6406 7.72812C39.5808 7.72264 39.5211 7.74013 39.4737 7.77705C39.4264 7.81397 39.3948 7.86754 39.3856 7.92687C39.3624 7.99196 39.3593 8.0625 39.3767 8.12936C39.3941 8.19621 39.4311 8.25631 39.4831 8.30187C39.8918 8.60937 40.0418 8.60188 40.4018 8.24937L40.4356 8.22688C40.3907 8.27635 40.3551 8.33352 40.3306 8.39562C40.3124 8.43295 40.3096 8.47596 40.323 8.51529C40.3363 8.55462 40.3647 8.58709 40.4018 8.60562H40.4468C40.47 8.61551 40.4948 8.62074 40.52 8.621C40.5452 8.62126 40.5701 8.61655 40.5935 8.60715C40.6168 8.59774 40.6381 8.58382 40.656 8.56619C40.674 8.54855 40.6883 8.52755 40.6981 8.50438C40.7007 8.50805 40.7032 8.5118 40.7056 8.51562Z" fill="white"/>
|
||||
<path d="M40.4768 10.9018C40.4943 10.8943 40.5083 10.8804 40.5159 10.863C40.5236 10.8456 40.5243 10.826 40.518 10.808C40.507 10.7935 40.4914 10.783 40.4738 10.7782C40.4561 10.7735 40.4374 10.7747 40.4205 10.7818C40.398 10.7818 40.3905 10.853 40.4205 10.868C40.4505 10.883 40.443 10.9168 40.4768 10.9018Z" fill="white"/>
|
||||
<path d="M41.1515 11.1041C41.2123 11.0599 41.2595 10.9997 41.288 10.9301C41.3165 10.8606 41.3251 10.7845 41.3128 10.7104C41.281 10.6526 41.2279 10.6096 41.1647 10.5907C41.1016 10.5717 41.0336 10.5784 40.9753 10.6091C40.9192 10.6366 40.8763 10.6852 40.8559 10.7442C40.8355 10.8032 40.8393 10.8679 40.8665 10.9241V10.9429C40.9453 11.0929 41.054 11.1566 41.1515 11.1041Z" fill="white"/>
|
||||
<path d="M18.4943 5.58339C18.5556 5.52973 18.5952 5.4555 18.6055 5.37468C18.6159 5.29386 18.5963 5.21204 18.5505 5.14464C18.5047 5.09177 18.4407 5.05814 18.3711 5.05049C18.3016 5.04284 18.2317 5.06174 18.1755 5.10339C18.1194 5.17078 18.0887 5.2557 18.0887 5.34339C18.0887 5.43109 18.1194 5.51601 18.1755 5.58339C18.216 5.62191 18.2697 5.64339 18.3255 5.64339C18.3814 5.64339 18.4351 5.62191 18.4755 5.58339H18.4943Z" fill="white"/>
|
||||
<path d="M14.2041 6.52539L14.1066 6.59664C14.146 6.58404 14.1802 6.55905 14.2041 6.52539Z" fill="white"/>
|
||||
<path d="M18.6707 6.76093C18.6452 6.74094 18.6159 6.72623 18.5847 6.71766C18.5535 6.7091 18.5208 6.70684 18.4887 6.71103C18.4566 6.71522 18.4256 6.72577 18.3976 6.74207C18.3696 6.75836 18.3452 6.78007 18.3257 6.80593C18.3064 6.8251 18.2911 6.84789 18.2806 6.87298C18.2702 6.89808 18.2648 6.925 18.2648 6.95218C18.2648 6.97936 18.2702 7.00628 18.2806 7.03138C18.2911 7.05647 18.3064 7.07926 18.3257 7.09843H18.3482C18.3964 7.14217 18.4593 7.1664 18.5244 7.1664C18.5895 7.1664 18.6524 7.14217 18.7007 7.09843C18.7378 7.04826 18.7553 6.98619 18.7498 6.92398C18.7443 6.86177 18.7161 6.80375 18.6707 6.76093Z" fill="white"/>
|
||||
<path d="M14.7743 10.171C14.8229 10.1381 14.8568 10.0876 14.8687 10.0302C14.8806 9.97274 14.8696 9.91292 14.838 9.86347L14.8193 9.84097C14.7935 9.81849 14.7622 9.80319 14.7287 9.79661C14.6951 9.79003 14.6604 9.7924 14.628 9.80347C14.5924 9.82046 14.5613 9.84561 14.5371 9.87688C14.513 9.90816 14.4966 9.94467 14.4893 9.98347C14.4818 10.1447 14.6768 10.1972 14.7743 10.171Z" fill="white"/>
|
||||
<path d="M14.4778 7.83818C14.5253 7.76489 14.5435 7.67645 14.529 7.59035C14.5144 7.50425 14.468 7.42676 14.3991 7.37318C14.3708 7.34086 14.3364 7.31443 14.2979 7.29542C14.2594 7.27641 14.2175 7.26519 14.1747 7.26241C14.1318 7.25962 14.0888 7.26532 14.0482 7.27918C14.0075 7.29304 13.97 7.31479 13.9378 7.34318C13.9269 7.35221 13.9168 7.36226 13.9078 7.37318C13.8414 7.42689 13.7987 7.5045 13.7889 7.58934C13.7791 7.67417 13.8029 7.75948 13.8553 7.82693C13.9408 7.90248 14.0504 7.94511 14.1645 7.94717C14.2786 7.94923 14.3896 7.91059 14.4778 7.83818Z" fill="white"/>
|
||||
<path d="M43.8891 11.5606C43.8957 11.5025 43.8897 11.4436 43.8716 11.388C43.8535 11.3323 43.8237 11.2812 43.7841 11.2381C43.8224 11.2156 43.8532 11.1822 43.8726 11.1421C43.8919 11.1021 43.899 11.0572 43.8928 11.0131C43.8928 10.8444 43.7316 10.8106 43.5778 10.7656C43.4766 10.8819 43.3378 10.9906 43.4503 11.1406C43.4583 11.1568 43.4698 11.1709 43.4841 11.1819C43.4193 11.224 43.3639 11.2791 43.3213 11.3436C43.2787 11.4081 43.2499 11.4807 43.2366 11.5569C43.2351 11.5889 43.2399 11.6209 43.2508 11.651C43.2616 11.6812 43.2784 11.7089 43.3 11.7326C43.3216 11.7563 43.3476 11.7755 43.3766 11.7891C43.4057 11.8027 43.4371 11.8104 43.4691 11.8119C43.5132 11.8242 43.5593 11.8274 43.6047 11.8213C43.6501 11.8152 43.6937 11.7999 43.733 11.7764C43.7723 11.7529 43.8064 11.7217 43.8333 11.6846C43.8601 11.6475 43.8791 11.6053 43.8891 11.5606Z" fill="white"/>
|
||||
<path d="M44.0507 13.6277C44.089 13.6164 44.1244 13.5968 44.1542 13.5702C44.184 13.5436 44.2076 13.5107 44.2232 13.4739C44.2607 13.3052 44.1182 13.2639 43.9944 13.2227C43.8632 13.3052 43.7882 13.4064 43.8669 13.5452C43.8886 13.5727 43.9167 13.5946 43.9487 13.609C43.9807 13.6233 44.0156 13.6297 44.0507 13.6277Z" fill="white"/>
|
||||
<path d="M43.7767 12.8288C43.7876 12.818 43.7962 12.8052 43.8021 12.791C43.808 12.7769 43.8111 12.7617 43.8111 12.7463C43.8111 12.731 43.808 12.7158 43.8021 12.7017C43.7962 12.6875 43.7876 12.6746 43.7767 12.6638H43.7505C43.7145 12.6565 43.6774 12.6563 43.6413 12.6634C43.6053 12.6705 43.571 12.6847 43.5405 12.7051C43.4767 12.7351 43.4055 12.7538 43.3717 12.8213C43.338 12.8888 43.4205 12.9826 43.5292 12.9788C43.5784 12.9715 43.6255 12.9544 43.668 12.9287C43.7105 12.9029 43.7475 12.869 43.7767 12.8288Z" fill="white"/>
|
||||
<path d="M42.7644 11.5943C42.7006 11.6505 42.6294 11.7105 42.6369 11.7893C42.6444 11.868 42.8619 11.9655 42.9706 11.9055C43.0794 11.8455 43.0531 11.7668 43.0194 11.688C43.0142 11.6667 43.0047 11.6467 42.9917 11.6291C42.9786 11.6115 42.9622 11.5967 42.9433 11.5856C42.9245 11.5744 42.9036 11.5671 42.8819 11.5641C42.8602 11.5611 42.8381 11.5624 42.8169 11.568L42.7644 11.5943Z" fill="white"/>
|
||||
<path d="M43.2741 14.373C43.5029 14.2943 43.5854 14.0318 43.4766 13.7468C43.4605 13.6965 43.4346 13.65 43.4003 13.6099C43.366 13.5698 43.3241 13.5369 43.2769 13.5132C43.2298 13.4895 43.1784 13.4753 43.1258 13.4717C43.0732 13.468 43.0203 13.4748 42.9704 13.4918H42.9291C42.8163 13.545 42.7269 13.6378 42.6778 13.7525C42.6287 13.8672 42.6234 13.9959 42.6629 14.1143C42.7214 14.2193 42.8133 14.3018 42.9241 14.3487C43.0348 14.3955 43.158 14.4041 43.2741 14.373Z" fill="white"/>
|
||||
<path d="M42.843 12.8445C42.8933 12.8337 42.9373 12.8038 42.966 12.7611C42.9947 12.7185 43.0057 12.6664 42.9968 12.6158C42.9984 12.6008 42.9984 12.5857 42.9968 12.5708C42.9766 12.5199 42.938 12.4786 42.8886 12.4549C42.8393 12.4313 42.7828 12.4271 42.7305 12.4433C42.633 12.4658 42.543 12.717 42.6143 12.7883C42.6458 12.8141 42.6827 12.8325 42.7223 12.8423C42.7619 12.852 42.8031 12.8528 42.843 12.8445Z" fill="white"/>
|
||||
<path d="M28.2742 8.50417C28.3239 8.50391 28.3722 8.48774 28.412 8.45805C28.4518 8.42836 28.4811 8.3867 28.4955 8.33917C28.5301 8.27498 28.5433 8.20138 28.533 8.12917C28.4167 8.12917 28.233 7.99042 28.158 8.09167C28.083 8.19292 28.1955 8.36542 28.2105 8.46667L28.2742 8.50417Z" fill="white"/>
|
||||
<path d="M19.2931 4.03586C19.3079 4.00153 19.3156 3.96452 19.3156 3.92711C19.3156 3.8897 19.3079 3.85269 19.2931 3.81836C18.9181 3.95711 18.5431 4.10711 18.1981 4.26461C18.2778 4.35979 18.3833 4.43008 18.5018 4.46711C18.661 4.47736 18.8198 4.44229 18.9598 4.36596C19.0999 4.28964 19.2154 4.17518 19.2931 4.03586Z" fill="white"/>
|
||||
<path d="M42.753 13.0657C42.7449 13.1583 42.7715 13.2507 42.8276 13.3248C42.8837 13.399 42.9654 13.4496 43.0568 13.4669C43.2368 13.5044 43.353 13.4032 43.398 13.1707C43.428 13.0132 43.323 12.7957 43.203 12.7694C43.1055 12.7604 43.0079 12.7848 42.9261 12.8386C42.8443 12.8925 42.7833 12.9725 42.753 13.0657Z" fill="white"/>
|
||||
<path d="M25.439 10.2297C25.463 10.2099 25.4828 10.1854 25.4973 10.1579C25.5118 10.1303 25.5207 10.1001 25.5235 10.0691C25.5262 10.0381 25.5229 10.0068 25.5135 9.97712C25.5042 9.94741 25.4891 9.91984 25.469 9.896C25.4269 9.85421 25.3712 9.82895 25.312 9.82482C25.2528 9.82069 25.1941 9.83797 25.1465 9.8735C25.1239 9.89614 25.1059 9.92303 25.0936 9.95263C25.0813 9.98223 25.075 10.014 25.075 10.046C25.075 10.078 25.0813 10.1098 25.0936 10.1394C25.1059 10.169 25.1239 10.1959 25.1465 10.2185C25.1605 10.2395 25.1785 10.2575 25.1995 10.2715C25.2205 10.2855 25.244 10.2953 25.2687 10.3002C25.2935 10.305 25.319 10.305 25.3437 10.3C25.3684 10.295 25.3919 10.2851 25.4128 10.271C25.4236 10.2587 25.4324 10.2448 25.439 10.2297Z" fill="white"/>
|
||||
<path d="M24.8766 5.37014C24.8733 5.25966 24.8299 5.15417 24.7544 5.07345C24.6789 4.99274 24.5765 4.94236 24.4665 4.93178C24.3565 4.92119 24.2464 4.95112 24.1569 5.01595C24.0673 5.08078 24.0046 5.17606 23.9803 5.28389C23.9391 5.45639 24.1641 5.65889 24.4078 5.70389C24.5129 5.71328 24.6179 5.68481 24.7039 5.62361C24.7898 5.56241 24.8511 5.47252 24.8766 5.37014Z" fill="white"/>
|
||||
<path d="M26.3992 7.02372C26.3984 6.95022 26.3733 6.87904 26.3279 6.82122C26.2877 6.76662 26.2281 6.72943 26.1614 6.71723C26.0947 6.70504 26.0258 6.71876 25.9689 6.75561C25.912 6.79245 25.8712 6.84964 25.855 6.91549C25.8388 6.98135 25.8483 7.05091 25.8817 7.10997C25.9049 7.14501 25.9357 7.17447 25.9717 7.19623C26.0542 7.27498 26.2492 7.20747 26.3992 7.02372Z" fill="white"/>
|
||||
<path d="M24.2766 6.63084C24.2964 6.6072 24.3073 6.57733 24.3073 6.54647C24.3073 6.5156 24.2964 6.48573 24.2766 6.46209C24.2203 6.42084 24.1341 6.50709 24.1041 6.54459C24.0941 6.56707 24.0913 6.59208 24.096 6.61622C24.1007 6.64037 24.1127 6.66249 24.1303 6.67959C24.1491 6.70584 24.2391 6.66459 24.2766 6.63084Z" fill="white"/>
|
||||
<path d="M24.0631 7.09961C24.0143 7.06211 23.9318 7.09961 23.9018 7.13336C23.8718 7.16711 23.8456 7.29836 23.9018 7.33211C23.9581 7.36586 24.0706 7.30211 24.0893 7.26461C24.1081 7.22711 24.1156 7.13336 24.0631 7.09961Z" fill="white"/>
|
||||
<path d="M19.4392 8.77543C19.5667 8.64418 19.5967 8.42668 19.4992 8.33668C19.4138 8.26915 19.3081 8.23242 19.1992 8.23242C19.0903 8.23242 18.9846 8.26915 18.8992 8.33668C18.8716 8.36725 18.8506 8.40311 18.8373 8.44206C18.8241 8.48101 18.8188 8.52226 18.822 8.56329C18.8252 8.60432 18.8366 8.64428 18.8557 8.68075C18.8748 8.71722 18.901 8.74943 18.9329 8.77543C18.9912 8.84041 19.0729 8.87966 19.16 8.88458C19.2472 8.8895 19.3327 8.85969 19.3979 8.80168C19.4129 8.79493 19.4267 8.78609 19.4392 8.77543Z" fill="white"/>
|
||||
<path d="M24.2954 6.07961C24.2714 6.04751 24.2403 6.02135 24.2045 6.00315C24.1687 5.98495 24.1293 5.97519 24.0892 5.97461C23.9204 6.00086 23.9354 6.14711 23.9392 6.27836C24.0629 6.36836 24.1867 6.40211 24.2879 6.27836C24.3058 6.24855 24.3159 6.2147 24.3172 6.17995C24.3185 6.1452 24.311 6.11068 24.2954 6.07961Z" fill="white"/>
|
||||
<path d="M26.3468 9.00067C26.3689 9.01791 26.3943 9.03062 26.4214 9.03807C26.4484 9.04551 26.4767 9.04755 26.5046 9.04407C26.5324 9.04059 26.5593 9.03165 26.5837 9.01777C26.6081 9.00389 26.6296 8.98534 26.6468 8.96317C26.7293 8.83192 26.7143 8.58817 26.6205 8.54692C26.5513 8.53486 26.4802 8.54134 26.4143 8.56572C26.3484 8.59009 26.2902 8.63148 26.2455 8.68567C26.213 8.73647 26.2018 8.79807 26.2144 8.85707C26.2271 8.91607 26.2625 8.96768 26.313 9.00067H26.3468Z" fill="white"/>
|
||||
<path d="M27.8991 5.92916C27.9963 5.90906 28.0874 5.8667 28.1654 5.80541C28.2479 5.73791 28.2404 5.63666 28.1391 5.56166C28.1137 5.53714 28.0826 5.5192 28.0486 5.5094C28.0146 5.4996 27.9788 5.49823 27.9441 5.50541C27.922 5.45891 27.8868 5.41983 27.8429 5.39291C27.7827 5.35856 27.7124 5.34614 27.644 5.35776C27.5756 5.36938 27.5134 5.40433 27.4679 5.45666C27.3291 5.65916 27.3329 5.89541 27.4679 5.98166C27.5381 6.01148 27.6149 6.02232 27.6905 6.0131C27.7662 6.00389 27.8382 5.97494 27.8991 5.92916Z" fill="white"/>
|
||||
<path d="M27.5654 5.13828C27.5905 5.11738 27.6111 5.09167 27.626 5.06267C27.6409 5.03367 27.6499 5.00198 27.6523 4.96946C27.6547 4.93694 27.6506 4.90426 27.6402 4.87335C27.6298 4.84245 27.6133 4.81394 27.5917 4.78953L27.5654 4.76328C27.5172 4.71954 27.4543 4.69531 27.3892 4.69531C27.324 4.69531 27.2612 4.71954 27.2129 4.76328C27.1676 4.81521 27.1426 4.88183 27.1426 4.95078C27.1426 5.01974 27.1676 5.08635 27.2129 5.13828C27.2321 5.16146 27.2557 5.18062 27.2823 5.19468C27.3089 5.20873 27.338 5.2174 27.368 5.22019C27.3979 5.22297 27.4281 5.21982 27.4569 5.21092C27.4856 5.20201 27.5123 5.18752 27.5354 5.16828C27.5473 5.16027 27.5574 5.15009 27.5654 5.13828Z" fill="white"/>
|
||||
<path d="M28.1843 6.89955C28.201 6.9109 28.2198 6.91884 28.2396 6.92291C28.2594 6.92698 28.2798 6.9271 28.2997 6.92327C28.3195 6.91944 28.3385 6.91173 28.3553 6.90058C28.3722 6.88943 28.3867 6.87507 28.398 6.8583C28.4092 6.84403 28.4169 6.82734 28.4205 6.80955C28.4505 6.73455 28.5143 6.5358 28.4205 6.4908C28.3268 6.4458 28.1468 6.5583 28.098 6.6258C28.074 6.6737 28.0696 6.72905 28.0857 6.78014C28.1018 6.83123 28.1371 6.87406 28.1843 6.89955Z" fill="white"/>
|
||||
<path d="M26.8005 6.17328C26.7105 6.09828 26.6205 6.17328 26.5642 6.26328C26.508 6.35328 26.5342 6.50703 26.6355 6.52953C26.7367 6.55203 26.8867 6.60828 26.9392 6.47703C26.9917 6.34578 26.8642 6.22578 26.8005 6.17328Z" fill="white"/>
|
||||
<path d="M26.8529 10.2378C26.9017 10.2116 26.9767 10.0353 26.9317 9.98656C26.8867 9.93781 26.7142 9.96406 26.6879 9.98656C26.6617 10.0091 26.6017 10.1591 26.6354 10.2041C26.665 10.2293 26.701 10.2458 26.7394 10.2517C26.7778 10.2577 26.8171 10.2529 26.8529 10.2378Z" fill="white"/>
|
||||
<path d="M27.0031 4.15142C26.8923 4.09375 26.7655 4.07461 26.6426 4.09701C26.5197 4.11942 26.4077 4.1821 26.3244 4.27517C26.1781 4.46642 26.2644 4.75142 26.5269 4.94267C26.569 4.97448 26.6169 4.99768 26.668 5.01094C26.7191 5.0242 26.7722 5.02726 26.8245 5.01995C26.8767 5.01263 26.927 4.99509 26.9725 4.96832C27.0179 4.94154 27.0577 4.90607 27.0894 4.86392C27.1656 4.75549 27.199 4.62269 27.183 4.49112C27.1671 4.35955 27.103 4.23853 27.0031 4.15142Z" fill="white"/>
|
||||
<path d="M24.0403 7.73553C24.0544 7.69451 24.0587 7.65075 24.0528 7.60777C24.047 7.56479 24.0311 7.52378 24.0065 7.48803C23.9801 7.44482 23.9377 7.41384 23.8885 7.40189C23.8393 7.38994 23.7873 7.39799 23.744 7.42428L23.7028 7.45803C23.6624 7.49471 23.6376 7.54544 23.6334 7.59981C23.6293 7.65419 23.646 7.70811 23.6803 7.75053C23.7365 7.83678 24.0028 7.82553 24.0403 7.73553Z" fill="white"/>
|
||||
<path d="M21.4303 6.14986C21.3888 6.19921 21.366 6.26162 21.366 6.32611C21.366 6.3906 21.3888 6.45302 21.4303 6.50236C21.5766 6.62986 21.7228 6.55486 21.8653 6.50236C21.8953 6.21361 21.8653 6.10486 21.7078 6.05986C21.658 6.04293 21.6041 6.04254 21.5541 6.05876C21.5041 6.07498 21.4607 6.10694 21.4303 6.14986Z" fill="white"/>
|
||||
<path d="M22.3529 5.80089C22.5329 5.60589 22.5554 5.45589 22.4204 5.32089C22.3484 5.27431 22.2636 5.25176 22.178 5.25647C22.0924 5.26119 22.0105 5.29294 21.9441 5.34714C21.9076 5.42547 21.8941 5.51262 21.9054 5.59832C21.9167 5.68402 21.9523 5.76471 22.0079 5.83089C22.052 5.87396 22.1112 5.89806 22.1729 5.89806C22.2345 5.89806 22.2937 5.87396 22.3379 5.83089L22.3529 5.80089Z" fill="white"/>
|
||||
<path d="M21.5844 7.48945C21.7419 7.38445 21.8619 7.2832 21.7869 7.11445C21.7658 7.08141 21.7371 7.05393 21.7031 7.03434C21.6692 7.01476 21.631 7.00365 21.5919 7.00195C21.5426 7.01385 21.4963 7.0356 21.4557 7.06589C21.4151 7.09619 21.381 7.13439 21.3556 7.1782C21.2881 7.3507 21.4569 7.39945 21.5844 7.48945Z" fill="white"/>
|
||||
<path d="M21.4454 4.65024C21.5285 4.65375 21.6086 4.68206 21.6755 4.73152C21.7423 4.78097 21.7928 4.84932 21.8204 4.92774C21.8742 4.99256 21.9481 5.03743 22.0304 5.05511C22.1127 5.0728 22.1986 5.06228 22.2742 5.02524C22.3605 4.94676 22.4129 4.83786 22.4204 4.72149C22.4381 4.70025 22.4521 4.67615 22.4617 4.65024C22.4813 4.59599 22.4789 4.53623 22.4551 4.48369C22.4313 4.43115 22.3879 4.38999 22.3342 4.36899H22.2742C22.2578 4.34035 22.2322 4.31809 22.2016 4.30584C22.1709 4.29359 22.1371 4.29205 22.1054 4.30149C22.0224 4.31984 21.9363 4.3196 21.8533 4.3008C21.7703 4.282 21.6925 4.2451 21.6254 4.19274C21.6047 4.17678 21.5809 4.16517 21.5556 4.15859C21.5302 4.15202 21.5038 4.15061 21.4779 4.15446C21.452 4.15831 21.4272 4.16734 21.4049 4.181C21.3825 4.19466 21.3632 4.21268 21.3479 4.23399C21.3378 4.24814 21.329 4.26321 21.3217 4.27899C21.2617 4.40649 21.3067 4.61649 21.4454 4.65024Z" fill="white"/>
|
||||
<path d="M20.3392 8.80452C20.2899 8.763 20.2275 8.74023 20.163 8.74023C20.0985 8.74023 20.0361 8.763 19.9867 8.80452C19.9414 8.85645 19.9164 8.92307 19.9164 8.99202C19.9164 9.06097 19.9414 9.12759 19.9867 9.17952C20.0294 9.22099 20.0866 9.24418 20.1461 9.24418C20.2056 9.24418 20.2628 9.22099 20.3055 9.17952C20.3321 9.16082 20.3548 9.13705 20.3722 9.10959C20.3896 9.08212 20.4014 9.0515 20.407 9.01946C20.4126 8.98741 20.4118 8.95459 20.4046 8.92286C20.3975 8.89113 20.3842 8.86111 20.3655 8.83452L20.3392 8.80452Z" fill="white"/>
|
||||
<path d="M23.7743 10.6495C23.7835 10.6289 23.7883 10.6065 23.7883 10.5839C23.7883 10.5613 23.7835 10.5389 23.7743 10.5183C23.7511 10.5037 23.7251 10.4941 23.698 10.4902C23.6708 10.4864 23.6432 10.4883 23.6168 10.4958C23.5831 10.5145 23.5418 10.6495 23.5681 10.6795C23.5943 10.7095 23.7181 10.6683 23.7743 10.6495Z" fill="white"/>
|
||||
<path d="M20.3056 10.1141C20.3219 10.1038 20.336 10.0903 20.3471 10.0746C20.3582 10.0588 20.366 10.041 20.3702 10.0222C20.3744 10.0034 20.3748 9.9839 20.3715 9.96491C20.3681 9.94593 20.361 9.9278 20.3506 9.91157C20.3397 9.893 20.3242 9.87752 20.3056 9.86657C20.2194 9.79532 20.1256 9.74282 20.0206 9.83282C19.9855 9.88716 19.9694 9.9516 19.9748 10.0161C19.9803 10.0805 20.0069 10.1414 20.0506 10.1891C20.096 10.1989 20.1431 10.1972 20.1877 10.1841C20.2322 10.171 20.2728 10.1469 20.3056 10.1141Z" fill="white"/>
|
||||
<path d="M19.9718 11.658C20.0065 11.6114 20.0252 11.5548 20.0252 11.4967C20.0252 11.4386 20.0065 11.3821 19.9718 11.3355C19.8893 11.2455 19.7018 11.3355 19.5968 11.3767C19.542 11.4254 19.5052 11.491 19.4922 11.5631C19.4793 11.6353 19.491 11.7096 19.5255 11.7742C19.608 11.8755 19.9005 11.733 19.9718 11.658Z" fill="white"/>
|
||||
<path d="M23.088 7.71001C22.998 7.63501 22.9305 7.68376 22.8668 7.74376C22.8489 7.75549 22.8336 7.77064 22.8217 7.78834C22.8097 7.80604 22.8014 7.82593 22.7973 7.84686C22.7931 7.86779 22.7931 7.88934 22.7973 7.91027C22.8015 7.93119 22.8098 7.95108 22.8218 7.96876C22.8338 7.98642 22.8491 8.00168 22.8668 8.01376C22.938 8.05501 23.0243 8.10001 23.0918 8.06251C23.1302 8.01159 23.1506 7.94939 23.1499 7.88562C23.1493 7.82186 23.1275 7.76011 23.088 7.71001Z" fill="white"/>
|
||||
<path d="M23.7255 4.36137C23.7557 4.37426 23.7882 4.38091 23.8211 4.38091C23.854 4.38091 23.8865 4.37426 23.9167 4.36137C24.0442 4.29762 24.1042 4.62762 24.2917 4.54887C24.4792 4.47012 24.6367 4.65012 24.8505 4.53012C25.0642 4.41012 25.188 4.15512 25.023 4.02012C24.8652 3.90307 24.6716 3.84472 24.4755 3.85512C24.4335 3.85391 24.392 3.86429 24.3555 3.88512C24.3939 3.81664 24.4099 3.73782 24.4012 3.65977C24.3924 3.58172 24.3594 3.50839 24.3067 3.45012C24.183 3.36762 23.9767 3.45012 23.8567 3.62637C23.8024 3.59885 23.7407 3.58946 23.6806 3.59959C23.6205 3.60971 23.5653 3.63881 23.523 3.68262C23.464 3.75234 23.429 3.8391 23.4229 3.9302C23.4168 4.02129 23.4401 4.11194 23.4892 4.18887C23.4164 4.17957 23.3425 4.18763 23.2734 4.2124C23.2043 4.23716 23.142 4.27793 23.0917 4.33137C23.0243 4.42345 22.9924 4.53684 23.0021 4.65058C23.0117 4.76432 23.0622 4.87073 23.1442 4.95012C23.2175 5.01705 23.3131 5.05417 23.4124 5.05417C23.5116 5.05417 23.6072 5.01705 23.6805 4.95012C23.7337 4.86243 23.7656 4.76342 23.7734 4.66113C23.7812 4.55883 23.7648 4.45613 23.7255 4.36137Z" fill="white"/>
|
||||
<path d="M22.7766 3.8743L23.0391 3.62305C23.0048 3.55307 22.9659 3.48543 22.9228 3.42055C22.8944 3.38521 22.8575 3.3577 22.8155 3.34064C22.7735 3.32358 22.7278 3.31752 22.6828 3.32305C22.6832 3.27859 22.6747 3.23451 22.658 3.19332C22.6413 3.15213 22.6166 3.11466 22.5853 3.08305L22.5516 3.0493C22.5617 3.01898 22.5632 2.98645 22.5559 2.95533C22.5486 2.9242 22.5328 2.89572 22.5103 2.87305L21.8391 3.0268C21.8448 3.03725 21.8541 3.04526 21.8653 3.0493C22.0678 3.1093 22.0453 3.28555 22.0791 3.4243C22.0848 3.48934 22.116 3.54948 22.1658 3.59162C22.2157 3.63376 22.2802 3.65449 22.3453 3.6493C22.3838 3.64723 22.4212 3.63564 22.4541 3.61555L22.5028 3.59305C22.5102 3.63334 22.5284 3.6709 22.5553 3.7018C22.6214 3.76851 22.6957 3.82649 22.7766 3.8743Z" fill="white"/>
|
||||
<path d="M23.7744 7.02421C23.8681 7.02421 23.9056 6.92296 23.8606 6.82171C23.8393 6.77525 23.8086 6.73364 23.7706 6.69947C23.7325 6.66529 23.6879 6.63925 23.6394 6.62296C23.6241 6.61901 23.6082 6.61811 23.5926 6.62031C23.577 6.62251 23.562 6.62777 23.5484 6.63578C23.5348 6.64379 23.5229 6.6544 23.5135 6.667C23.504 6.6796 23.4971 6.69394 23.4931 6.70921C23.4914 6.71661 23.4914 6.72431 23.4931 6.73171C23.4931 6.80671 23.5494 6.85546 23.6094 6.91171C23.6694 6.96796 23.7069 7.02046 23.7744 7.02421Z" fill="white"/>
|
||||
<path d="M23.0579 10.4861C23.0636 10.4792 23.0678 10.4712 23.0704 10.4627C23.073 10.4542 23.0739 10.4452 23.073 10.4363C23.0721 10.4274 23.0695 10.4188 23.0653 10.4109C23.0611 10.4031 23.0554 10.3961 23.0485 10.3904C23.0416 10.3848 23.0337 10.3805 23.0251 10.3779C23.0166 10.3753 23.0076 10.3745 22.9988 10.3753C22.9899 10.3762 22.9813 10.3788 22.9734 10.383C22.9655 10.3872 22.9586 10.3929 22.9529 10.3998C22.9402 10.4136 22.9332 10.4317 22.9332 10.4504C22.9332 10.4692 22.9402 10.4872 22.9529 10.5011C22.9529 10.5011 23.0429 10.5048 23.0579 10.4861Z" fill="white"/>
|
||||
<path d="M22.953 10.009C23.0693 9.89275 23.088 9.76524 23.0055 9.69774C22.9409 9.65909 22.8671 9.63867 22.7918 9.63867C22.7165 9.63867 22.6426 9.65909 22.578 9.69774C22.5571 9.72261 22.5413 9.75136 22.5315 9.78235C22.5216 9.81333 22.518 9.84595 22.5208 9.87833C22.5236 9.91072 22.5327 9.94224 22.5477 9.97109C22.5627 9.99994 22.5832 10.0256 22.608 10.0465C22.6522 10.0896 22.7114 10.1137 22.773 10.1137C22.8347 10.1137 22.8939 10.0896 22.938 10.0465L22.953 10.009Z" fill="white"/>
|
||||
<path d="M36.708 12.7007C36.768 12.7307 36.948 12.7644 36.978 12.7007C37.008 12.6369 36.9405 12.4944 36.8992 12.4344C36.858 12.3744 36.738 12.3894 36.663 12.4794C36.6449 12.4941 36.6313 12.5135 36.6235 12.5354C36.6156 12.5573 36.614 12.5809 36.6186 12.6037C36.6232 12.6264 36.634 12.6475 36.6497 12.6646C36.6655 12.6817 36.6856 12.6942 36.708 12.7007Z" fill="#0066B1"/>
|
||||
<path d="M30.5242 14.5198C30.6967 14.6398 30.8279 14.6323 30.8992 14.5198C30.9435 14.4482 30.9624 14.3638 30.9529 14.2801C30.9434 14.1964 30.906 14.1184 30.8467 14.0586C30.7698 14.0217 30.6831 14.0106 30.5993 14.0268C30.5156 14.043 30.4393 14.0857 30.3817 14.1486C30.3576 14.2173 30.3588 14.2924 30.3849 14.3604C30.411 14.4283 30.4603 14.4849 30.5242 14.5198Z" fill="#0066B1"/>
|
||||
<path d="M34.788 10.5109C34.788 10.5109 34.8292 10.3984 34.788 10.3647C34.7467 10.3309 34.6642 10.3984 34.638 10.4322C34.6257 10.4498 34.6191 10.4707 34.6191 10.4922C34.6191 10.5136 34.6257 10.5346 34.638 10.5522C34.683 10.5747 34.7542 10.5409 34.788 10.5109Z" fill="#0066B1"/>
|
||||
<path d="M34.0982 13.2756C34.0982 13.2568 34.0982 13.2081 34.0757 13.2006C34.0532 13.1931 34.0156 13.2006 34.0006 13.2006C33.9887 13.2125 33.9821 13.2287 33.9821 13.2456C33.9821 13.2625 33.9887 13.2787 34.0006 13.2906C34.0494 13.3318 34.0869 13.3018 34.0982 13.2756Z" fill="#0066B1"/>
|
||||
<path d="M39.1079 13.7204C39.1243 13.6912 39.133 13.6583 39.133 13.6248C39.133 13.5913 39.1243 13.5584 39.1079 13.5292C39.0741 13.4917 38.9129 13.4579 38.8791 13.5067C38.8454 13.5554 38.8791 13.6942 38.9316 13.7129C38.9841 13.7317 39.0741 13.7542 39.1079 13.7204Z" fill="#0066B1"/>
|
||||
<path d="M31.2143 13.6499C31.2143 13.6499 31.2143 13.5862 31.2143 13.5449L30.9594 13.5974C30.9594 13.6724 30.9594 13.7624 30.9856 13.7924C31.0119 13.8224 31.1806 13.6987 31.2143 13.6499Z" fill="#0066B1"/>
|
||||
<path d="M32.3503 14.1483C32.4018 14.0636 32.4211 13.9631 32.4046 13.8653C32.388 13.7675 32.3368 13.679 32.2603 13.6158C32.1792 13.5582 32.0796 13.5325 31.9807 13.5435C31.8818 13.5546 31.7904 13.6017 31.7241 13.6758C31.6591 13.7508 31.6234 13.8467 31.6234 13.9458C31.6234 14.045 31.6591 14.1409 31.7241 14.2158C31.8215 14.2744 31.9355 14.2996 32.0485 14.2874C32.1616 14.2752 32.2676 14.2264 32.3503 14.1483Z" fill="#0066B1"/>
|
||||
<path d="M34.9191 13.4288C34.9904 13.4551 35.1816 13.4926 35.2304 13.4288C35.2791 13.3651 35.1404 13.2076 35.0841 13.1588C35.0279 13.1101 34.9266 13.1213 34.8779 13.2226C34.8291 13.3238 34.8254 13.3913 34.9191 13.4288Z" fill="#0066B1"/>
|
||||
<path d="M32.8643 12.082C32.7893 12.2583 32.718 12.4345 32.6543 12.6183C32.7106 12.6137 32.7651 12.5965 32.8138 12.568C32.8625 12.5394 32.9041 12.5002 32.9355 12.4533C32.9746 12.3944 32.9891 12.3225 32.9757 12.2531C32.9624 12.1837 32.9224 12.1223 32.8643 12.082Z" fill="#0066B1"/>
|
||||
<path d="M35.1293 12.1507C35.1293 12.1169 35.1593 12.0382 35.1293 12.0044C35.0993 11.9707 35.0168 12.0044 34.9905 12.0307C34.9643 12.0569 34.9343 12.1732 34.9905 12.2032C35.0468 12.2332 35.1105 12.1507 35.1293 12.1507Z" fill="#0066B1"/>
|
||||
<path d="M34.6756 14.0622C34.7042 14.0184 34.7143 13.9651 34.7037 13.9138C34.6932 13.8626 34.6629 13.8175 34.6194 13.7885C34.596 13.7685 34.5686 13.7537 34.5391 13.7451C34.5095 13.7364 34.4785 13.7342 34.448 13.7384C34.4175 13.7427 34.3883 13.7533 34.3622 13.7697C34.3362 13.7861 34.3139 13.8079 34.2969 13.8335C34.269 13.8826 34.2593 13.9401 34.2696 13.9956C34.2799 14.0512 34.3095 14.1013 34.3531 14.1372C34.4068 14.166 34.4692 14.1742 34.5285 14.1604C34.5878 14.1466 34.6401 14.1117 34.6756 14.0622Z" fill="#0066B1"/>
|
||||
<path d="M32.9205 13.5943C32.9875 13.6383 33.0674 13.6581 33.1471 13.6506C33.2269 13.6431 33.3017 13.6087 33.3593 13.553C33.3968 13.5038 33.4138 13.442 33.4068 13.3805C33.3998 13.319 33.3694 13.2626 33.3218 13.223C33.2581 13.1815 33.1811 13.1655 33.1061 13.178C33.0312 13.1905 32.9636 13.2306 32.9168 13.2905C32.896 13.3101 32.8795 13.3338 32.8683 13.36C32.8572 13.3863 32.8516 13.4146 32.8519 13.4432C32.8523 13.4718 32.8586 13.4999 32.8704 13.5259C32.8822 13.5519 32.8993 13.5752 32.9205 13.5943Z" fill="#0066B1"/>
|
||||
<g clip-path="url(#clip0_1526_242627)">
|
||||
<path d="M46.4017 19.4774C46.4617 19.3799 46.3755 19.3011 46.278 19.2599C46.1805 19.2186 46.0305 19.2599 46.0267 19.3686C46.023 19.4774 45.9855 19.6274 46.1205 19.6611C46.2555 19.6949 46.3567 19.5599 46.4017 19.4774Z" fill="white"/>
|
||||
<path d="M46.0004 19.9733C46.0022 19.9339 45.9958 19.8946 45.9816 19.8578C45.9674 19.821 45.9457 19.7876 45.9179 19.7596C45.8354 19.6921 45.6554 19.7821 45.6442 19.8946C45.6443 19.9583 45.6625 20.0207 45.6967 20.0746C45.8542 20.1346 45.9929 20.0783 46.0004 19.9733Z" fill="white"/>
|
||||
<path d="M46.7731 18.7311C46.8463 18.7654 46.9297 18.7709 47.0068 18.7466C47.0838 18.7223 47.149 18.67 47.1893 18.5999C47.2231 18.4914 47.2188 18.3747 47.1772 18.269C47.1356 18.1633 47.0592 18.075 46.9606 18.0186C46.8973 18.0018 46.8304 18.0046 46.7688 18.0268C46.7071 18.0489 46.6537 18.0892 46.6156 18.1424C46.5572 18.1036 46.4914 18.0772 46.4224 18.065C46.3533 18.0527 46.2825 18.0548 46.2143 18.0711C46.1117 18.1215 46.0307 18.2075 45.9866 18.313C45.9425 18.4185 45.9381 18.5364 45.9743 18.6449C46.0157 18.7517 46.0957 18.8392 46.1985 18.8898C46.3013 18.9405 46.4193 18.9508 46.5293 18.9186C46.6269 18.8809 46.7116 18.8158 46.7731 18.7311Z" fill="white"/>
|
||||
<path d="M43.0154 8.94773C43.0234 8.94711 43.0312 8.94435 43.0377 8.93974C43.0443 8.93512 43.0496 8.92882 43.0529 8.92149C42.9367 8.80524 42.8129 8.69648 42.6967 8.58398C42.6763 8.61466 42.6639 8.64994 42.6607 8.68661C42.6574 8.72328 42.6633 8.76018 42.6779 8.79398C42.6861 8.82501 42.7005 8.85407 42.7201 8.87945C42.7397 8.90483 42.7643 8.92601 42.7923 8.94174C42.8202 8.95748 42.8511 8.96744 42.883 8.97105C42.9148 8.97465 42.9471 8.97183 42.9779 8.96274L43.0154 8.94773Z" fill="white"/>
|
||||
<path d="M45.2504 18.8097C45.1979 18.9184 45.2992 19.1022 45.4979 19.1847C45.5708 19.1782 45.6382 19.1431 45.6854 19.0872C45.728 19.0361 45.7499 18.971 45.7469 18.9046C45.7439 18.8382 45.7162 18.7754 45.6692 18.7284C45.6222 18.6814 45.5593 18.6537 45.493 18.6507C45.4266 18.6477 45.3615 18.6696 45.3104 18.7122C45.2929 18.7329 45.2778 18.7555 45.2654 18.7797L45.2504 18.8097Z" fill="white"/>
|
||||
<path d="M46.2142 17.7454C46.2735 17.7557 46.3345 17.7453 46.3871 17.716C46.4397 17.6866 46.4806 17.6401 46.5029 17.5841C46.514 17.56 46.5198 17.5338 46.5198 17.5073C46.5198 17.4807 46.514 17.4545 46.5029 17.4304C46.4204 17.3404 46.3229 17.2654 46.2254 17.1754C46.2254 16.8716 46.1241 16.6579 45.9441 16.6504C45.8765 16.6559 45.8111 16.6767 45.7526 16.7111C45.6942 16.7455 45.6443 16.7927 45.6067 16.8491C45.5891 16.8506 45.572 16.8557 45.5565 16.8641C45.541 16.8725 45.5275 16.884 45.5166 16.8979C45.5094 16.9111 45.5057 16.9259 45.5057 16.941C45.5057 16.9561 45.5094 16.9709 45.5166 16.9841C45.5057 17.0119 45.4982 17.0408 45.4941 17.0704C45.4941 17.2804 45.5804 17.3441 46.0004 17.3854C46.0192 17.5504 45.9967 17.7191 46.2142 17.7454Z" fill="white"/>
|
||||
<path d="M45.5281 15.464C45.3293 15.5502 45.2618 15.6627 45.3256 15.8052C45.3356 15.8443 45.3533 15.881 45.3776 15.9132C45.402 15.9454 45.4325 15.9724 45.4675 15.9927C45.5024 16.0129 45.541 16.026 45.581 16.0312C45.621 16.0363 45.6617 16.0335 45.7006 16.0227H45.7343C45.7941 15.9625 45.8389 15.889 45.8649 15.8082C45.891 15.7274 45.8976 15.6416 45.8843 15.5577C45.8393 15.434 45.7081 15.3852 45.5281 15.464Z" fill="white"/>
|
||||
<path d="M44.448 12.6566C44.4872 12.6678 44.5288 12.6678 44.568 12.6566C44.6134 12.7109 44.6548 12.7686 44.6917 12.8291C44.7239 12.9086 44.7824 12.9748 44.8575 13.0164C44.9326 13.058 45.0197 13.0727 45.1042 13.0578C45.288 13.0278 45.3592 12.8966 45.2505 12.6453C45.168 12.5666 45.0442 12.4316 44.9017 12.3153V12.2891C44.9091 12.2086 44.8845 12.1285 44.8332 12.0661C44.782 12.0036 44.7083 11.9638 44.628 11.9553C44.4367 11.9141 44.1705 12.0378 44.1405 12.1803C44.1247 12.2836 44.1473 12.389 44.2039 12.4767C44.2606 12.5645 44.3474 12.6284 44.448 12.6566Z" fill="white"/>
|
||||
<path d="M47.1106 14.625C47.0977 14.6928 47.1095 14.763 47.1439 14.8228C47.1783 14.8827 47.233 14.9282 47.2981 14.9512C47.3283 14.9624 47.3616 14.9624 47.3918 14.9512C47.3281 14.82 47.2606 14.6925 47.1931 14.5762C47.1761 14.5757 47.1594 14.5801 47.1448 14.5887C47.1302 14.5973 47.1183 14.6099 47.1106 14.625Z" fill="white"/>
|
||||
<path d="M48.3779 17.2502C48.2691 16.9502 48.1529 16.6577 48.0329 16.3652L47.8941 16.444C47.8169 16.492 47.7617 16.5686 47.7406 16.6571C47.7196 16.7456 47.7343 16.8388 47.7816 16.9165C47.8044 16.9517 47.8337 16.9822 47.8679 17.0065C48.0271 17.1086 48.1984 17.1905 48.3779 17.2502Z" fill="white"/>
|
||||
<path d="M47.0394 16.0156C47.0837 16.0757 47.1415 16.1245 47.2081 16.1581C47.2696 16.2026 47.3348 16.2415 47.4031 16.2743C47.6244 16.3906 47.7781 16.3718 47.8981 16.2143C47.9141 16.1867 47.9279 16.1579 47.9394 16.1281C47.8569 15.9331 47.7669 15.7531 47.6769 15.5506C47.5409 15.4371 47.4154 15.3116 47.3019 15.1756C47.1781 15.0218 46.9269 14.9281 46.8219 15.0218C46.7839 15.072 46.7633 15.1333 46.7633 15.1962C46.7633 15.2592 46.7839 15.3204 46.8219 15.3706C46.9681 15.4756 46.8969 15.5881 46.9119 15.7081C46.929 15.8194 46.9727 15.9249 47.0394 16.0156Z" fill="white"/>
|
||||
<path d="M44.6131 11.2209C44.8681 11.3559 44.9881 11.3597 45.0818 11.2209C44.9768 11.0784 44.8681 10.9434 44.7556 10.8047C44.5943 10.9097 44.6093 11.0709 44.6131 11.2209Z" fill="white"/>
|
||||
<path d="M44.0729 10.9342C44.112 10.9274 44.1487 10.9112 44.1801 10.8871C44.2115 10.8629 44.2365 10.8314 44.2529 10.7954C44.2614 10.6941 44.2335 10.593 44.1742 10.5104C44.0317 10.3792 43.9229 10.5104 43.7992 10.6042C43.8292 10.7729 43.8817 10.9342 44.0729 10.9342Z" fill="white"/>
|
||||
<path d="M20.1891 7.70223C20.2332 7.65114 20.2603 7.58745 20.2663 7.52017C20.2724 7.45288 20.2572 7.3854 20.2228 7.32723C20.0391 7.13598 19.8066 7.07973 19.6866 7.19973C19.6356 7.27971 19.6107 7.37356 19.6154 7.46829C19.6201 7.56301 19.6542 7.65394 19.7128 7.72848C19.7857 7.77241 19.87 7.79341 19.955 7.78873C20.0399 7.78404 20.1215 7.75391 20.1891 7.70223Z" fill="white"/>
|
||||
<path d="M28.3979 2.64289C28.2779 2.85289 28.3191 2.99539 28.5366 3.12664C28.6055 3.17845 28.6912 3.20291 28.7771 3.19529C28.8629 3.18767 28.9429 3.14852 29.0016 3.08539C29.0447 2.97667 29.0507 2.85681 29.0189 2.74431C28.987 2.6318 28.919 2.53291 28.8254 2.46289H28.6341C28.5361 2.49211 28.4521 2.55612 28.3979 2.64289Z" fill="white"/>
|
||||
<path d="M46.4317 20.9469C46.5255 20.8944 46.5855 20.8006 46.518 20.7069C46.4505 20.6131 46.3005 20.4781 46.218 20.5194C46.1355 20.5606 46.1467 20.7256 46.1542 20.8306C46.1317 20.8201 46.1072 20.8144 46.0823 20.8136C46.0575 20.8129 46.0327 20.8172 46.0096 20.8264C45.9864 20.8355 45.9654 20.8492 45.9477 20.8667C45.93 20.8842 45.9161 20.9051 45.9067 20.9281C45.903 20.9377 45.903 20.9485 45.9067 20.9581C45.8972 20.9765 45.8915 20.9966 45.8899 21.0173C45.8883 21.0379 45.891 21.0587 45.8976 21.0783C45.9043 21.0979 45.9148 21.116 45.9286 21.1314C45.9424 21.1468 45.9592 21.1593 45.978 21.1681C45.994 21.1719 46.0107 21.1719 46.0267 21.1681C46.1055 21.1681 46.3117 21.2169 46.3417 21.1119C46.3464 21.0579 46.3332 21.0039 46.3042 20.9581C46.3467 20.9698 46.3919 20.9658 46.4317 20.9469Z" fill="white"/>
|
||||
<path d="M26.2267 4.95298C26.1855 4.99048 26.1517 5.18173 26.2042 5.22673C26.2567 5.27173 26.4555 5.22672 26.4705 5.17797C26.4855 5.12922 26.5155 4.94923 26.4705 4.91923C26.4303 4.90383 26.3869 4.89885 26.3442 4.90475C26.3016 4.91065 26.2612 4.92725 26.2267 4.95298Z" fill="white"/>
|
||||
<path d="M27.4267 2.62196C27.4149 2.58688 27.3998 2.55298 27.3817 2.5207C27.4139 2.48927 27.4383 2.45074 27.4529 2.4082H27.213H27.0554V2.44571C27.0438 2.45238 27.0336 2.4613 27.0255 2.47195C26.9701 2.58523 26.9249 2.70319 26.8904 2.82445C26.6017 2.92195 26.4442 3.10196 26.5154 3.27821C26.5648 3.3734 26.6439 3.44985 26.7407 3.4959C26.8375 3.54194 26.9467 3.55504 27.0517 3.5332C27.2542 3.46945 27.2804 3.3532 27.1642 2.9482C27.3179 2.8732 27.4829 2.83196 27.4267 2.62196Z" fill="white"/>
|
||||
<path d="M29.9315 3.55911C30.0515 3.52911 30.1903 3.53661 30.2615 3.42786C30.3328 3.31911 30.5465 3.01161 30.419 2.80536C30.2915 2.59911 30.1453 2.76036 30.0103 2.74161C29.9506 2.73336 29.8898 2.74199 29.8348 2.76651C29.7798 2.79104 29.7328 2.83048 29.699 2.88036C29.6079 2.89511 29.5239 2.93845 29.459 3.00411C29.4055 3.0741 29.3765 3.15975 29.3765 3.24786C29.3765 3.33596 29.4055 3.42162 29.459 3.49161C29.4366 3.4954 29.4136 3.49363 29.392 3.48643C29.3704 3.47924 29.3509 3.46685 29.3353 3.45036C29.234 3.35661 29.0128 3.35661 28.8365 3.58161C28.6603 3.80661 28.7765 4.15536 28.9865 4.16661C29.1965 4.17786 29.2528 4.06536 29.3053 4.11786C29.3578 4.17036 29.4065 4.34286 29.5453 4.33911C29.684 4.33536 29.834 3.94161 29.834 3.87411C29.834 3.80661 29.7553 3.68661 29.8115 3.61161C29.8538 3.59991 29.8942 3.58223 29.9315 3.55911Z" fill="white"/>
|
||||
<path d="M33.9817 3.52539C33.9437 3.49684 33.9001 3.47679 33.8538 3.46663C33.8074 3.45647 33.7594 3.45643 33.713 3.46652C33.6666 3.4766 33.623 3.49657 33.585 3.52507C33.547 3.55356 33.5157 3.58991 33.4931 3.63163C33.4704 3.67335 33.4571 3.71946 33.4539 3.76682C33.4507 3.81417 33.4577 3.86166 33.4746 3.90603C33.4914 3.95041 33.5176 3.99064 33.5514 4.02396C33.5852 4.05729 33.6258 4.08293 33.6704 4.09914C33.6934 4.1143 33.7193 4.12468 33.7464 4.12968C33.7735 4.13467 33.8013 4.13419 33.8283 4.12824C33.8552 4.1223 33.8806 4.11102 33.9031 4.09507C33.9256 4.07913 33.9447 4.05883 33.9592 4.03539C34.1204 3.81039 34.1242 3.60789 33.9817 3.52539Z" fill="white"/>
|
||||
<path d="M30.5505 3.52542C30.4905 3.61542 30.5505 3.73917 30.588 3.82167C30.6255 3.90417 30.7905 3.87417 30.8542 3.78792C30.8706 3.76888 30.8827 3.74655 30.8897 3.72245C30.8967 3.69835 30.8985 3.67302 30.895 3.64817C30.8914 3.62331 30.8826 3.5995 30.8691 3.57834C30.8556 3.55717 30.8378 3.53913 30.8167 3.52542C30.7267 3.48417 30.6142 3.43542 30.5505 3.52542Z" fill="white"/>
|
||||
<path d="M26.4929 6.05975C26.5528 6.10507 26.6259 6.1296 26.701 6.1296C26.7761 6.1296 26.8492 6.10507 26.9091 6.05975C26.9646 5.97629 26.9973 5.87975 27.0039 5.77975C27.0104 5.67974 26.9907 5.57976 26.9466 5.48975C26.8608 5.44374 26.7618 5.42868 26.6661 5.44712C26.5705 5.46556 26.4842 5.51637 26.4216 5.591C26.2866 5.71475 26.3129 5.88725 26.4929 6.05975Z" fill="white"/>
|
||||
<path d="M19.7693 5.79723C19.6803 5.7421 19.5777 5.71289 19.4731 5.71289C19.3684 5.71289 19.2658 5.7421 19.1768 5.79723C19.1136 5.86636 19.0785 5.95666 19.0785 6.05035C19.0785 6.14405 19.1136 6.23434 19.1768 6.30347C19.2474 6.36973 19.3391 6.40905 19.4357 6.41453C19.5324 6.42002 19.6279 6.39132 19.7056 6.33348C19.7796 6.26712 19.8269 6.17608 19.8386 6.07738C19.8503 5.97868 19.8257 5.87908 19.7693 5.79723Z" fill="white"/>
|
||||
<path d="M34.158 4.31651C34.1876 4.33696 34.2211 4.35108 34.2565 4.35801C34.2918 4.36494 34.3282 4.36452 34.3634 4.35679C34.3986 4.34905 34.4318 4.33415 34.461 4.31303C34.4901 4.29191 34.5146 4.26501 34.533 4.23401C34.5524 4.20403 34.5656 4.17049 34.572 4.13535C34.5783 4.10021 34.5777 4.06416 34.57 4.02928C34.5623 3.99441 34.5478 3.9614 34.5273 3.93217C34.5068 3.90294 34.4807 3.87808 34.4505 3.85901C34.3855 3.82776 34.3114 3.82158 34.2422 3.84165C34.173 3.86172 34.1136 3.90662 34.0755 3.96776C34.0406 4.02505 34.0297 4.09379 34.0451 4.15907C34.0606 4.22435 34.1011 4.28091 34.158 4.31651Z" fill="white"/>
|
||||
<path d="M47.1892 16.8967C47.2656 16.8576 47.3263 16.7934 47.3611 16.7149C47.3959 16.6364 47.4027 16.5484 47.3804 16.4654C47.3525 16.4013 47.3045 16.3479 47.2436 16.3134C47.1828 16.2789 47.1123 16.2651 47.0429 16.2742C46.8067 16.3567 46.6679 16.5404 46.7204 16.6942C46.764 16.7761 46.8341 16.8408 46.9193 16.8776C47.0045 16.9144 47.0996 16.9212 47.1892 16.8967Z" fill="white"/>
|
||||
<path d="M26.0431 4.00074C26.069 3.96737 26.088 3.92918 26.099 3.8884C26.11 3.84762 26.1128 3.80506 26.1072 3.76319C26.1016 3.72131 26.0878 3.68097 26.0665 3.6445C26.0451 3.60803 26.0168 3.57616 25.9831 3.55074L25.9493 3.52449C25.9082 3.49218 25.8611 3.46828 25.8108 3.45418C25.7605 3.44008 25.7078 3.43605 25.6559 3.44232C25.604 3.44859 25.5539 3.46504 25.5083 3.49072C25.4628 3.51641 25.4228 3.55082 25.3906 3.59199C25.3767 3.60767 25.3653 3.62538 25.3568 3.64449C25.2969 3.73005 25.2714 3.83499 25.2853 3.93849C25.2992 4.04199 25.3515 4.13649 25.4318 4.20324C25.4801 4.23368 25.5352 4.25167 25.5921 4.2556C25.649 4.25953 25.7061 4.24927 25.7581 4.22574C25.7921 4.23461 25.828 4.2333 25.8614 4.22197C25.8947 4.21064 25.924 4.18978 25.9456 4.16199C25.9893 4.11586 26.0225 4.06086 26.0431 4.00074Z" fill="white"/>
|
||||
<path d="M25.5144 4.51131C25.4548 4.52018 25.4002 4.54991 25.3603 4.59522C25.3205 4.64054 25.298 4.6985 25.2969 4.75882C25.2866 4.80598 25.2949 4.85531 25.32 4.89652C25.3452 4.93774 25.3853 4.96766 25.4319 4.98006C25.6157 5.04006 25.7094 4.93132 25.8069 4.78882C25.7357 4.65007 25.6982 4.48131 25.5144 4.51131Z" fill="white"/>
|
||||
<path d="M24.6478 2.55086C24.6155 2.60875 24.5952 2.67249 24.5878 2.73836C24.574 2.6971 24.5524 2.6589 24.5241 2.62586L24.4641 2.57336L24.0891 2.62586C24.1454 2.70217 24.1861 2.78882 24.2091 2.88086C24.2356 2.9118 24.2693 2.93582 24.3072 2.95085C24.345 2.96587 24.386 2.97145 24.4265 2.96711C24.4609 2.95717 24.4928 2.94042 24.5205 2.91788C24.5482 2.89533 24.5711 2.86743 24.5878 2.83586C24.5821 2.87976 24.5882 2.92439 24.6053 2.96522C24.6224 3.00605 24.65 3.04163 24.6853 3.06836C24.7464 3.08297 24.8106 3.07777 24.8686 3.0535C24.9266 3.02924 24.9753 2.98716 25.0078 2.93336C25.0528 2.75711 25.1803 2.78336 25.2891 2.72711C25.329 2.70499 25.3646 2.67576 25.3941 2.64086C25.4579 2.67958 25.5312 2.70006 25.6059 2.70006C25.6806 2.70006 25.7539 2.67958 25.8178 2.64086C25.855 2.59012 25.8711 2.52696 25.8628 2.46461C26.0053 2.58086 26.1703 2.61086 26.2678 2.52086C26.3007 2.49149 26.3253 2.45398 26.3391 2.41211C25.7691 2.44586 25.2028 2.48711 24.6478 2.55086Z" fill="white"/>
|
||||
<path d="M20.1856 4.36866C20.1547 4.33014 20.1164 4.29811 20.073 4.27442C20.0297 4.25073 19.9821 4.23585 19.9329 4.23062C19.8838 4.22539 19.8341 4.22993 19.7867 4.24396C19.7393 4.258 19.6952 4.28126 19.6569 4.31241C19.6295 4.33515 19.6055 4.36167 19.5856 4.39116C19.5438 4.41781 19.5077 4.45249 19.4793 4.4932C19.451 4.5339 19.431 4.57983 19.4205 4.62831C19.4101 4.67679 19.4093 4.72685 19.4184 4.77562C19.4274 4.82439 19.446 4.87088 19.4731 4.91241C19.4925 4.94003 19.5152 4.96522 19.5406 4.98741C19.5795 5.02985 19.6265 5.06413 19.6788 5.08826C19.7311 5.11239 19.7877 5.12589 19.8453 5.12799C19.9028 5.13008 19.9602 5.12072 20.0142 5.10045C20.0681 5.08018 20.1174 5.04941 20.1594 5.00991L20.2044 4.96117C20.2735 4.87689 20.3098 4.77037 20.3063 4.66139C20.3029 4.55241 20.26 4.44839 20.1856 4.36866Z" fill="white"/>
|
||||
<path d="M47.0053 19.2753C46.9603 19.2978 46.9416 19.4253 46.9603 19.4928C46.9617 19.5085 46.9663 19.5237 46.9737 19.5375C46.9811 19.5514 46.9912 19.5636 47.0035 19.5734C47.0158 19.5832 47.0299 19.5904 47.0451 19.5946C47.0602 19.5988 47.076 19.5999 47.0916 19.5978C47.1168 19.5957 47.1406 19.5851 47.1591 19.5678C47.2191 19.5153 47.3691 19.3766 47.3278 19.2941C47.2866 19.2116 47.0728 19.2341 47.0053 19.2753Z" fill="white"/>
|
||||
<path d="M38.2341 7.09884C38.2484 7.1137 38.2656 7.12551 38.2846 7.13358C38.3036 7.14165 38.324 7.14581 38.3447 7.14581C38.3653 7.14581 38.3858 7.14165 38.4048 7.13358C38.4238 7.12551 38.441 7.1137 38.4553 7.09884C38.472 7.08179 38.4848 7.06131 38.4928 7.03884C38.504 6.96174 38.504 6.88343 38.4928 6.80634C38.4385 6.77252 38.373 6.76143 38.3106 6.77546C38.2481 6.7895 38.1937 6.82752 38.1591 6.88134C38.0728 6.99384 38.1591 7.05009 38.2341 7.09884Z" fill="white"/>
|
||||
<path d="M38.0243 5.6317C38.0643 5.63301 38.1041 5.62564 38.141 5.6101C38.1779 5.59457 38.211 5.57123 38.2381 5.5417C38.2548 5.51194 38.2636 5.47836 38.2636 5.4442C38.2636 5.41005 38.2548 5.37647 38.2381 5.34671C38.1518 5.21546 38.0243 5.2267 37.8856 5.31295C37.8893 5.44045 37.8593 5.5867 38.0243 5.6317Z" fill="white"/>
|
||||
<path d="M37.2181 9.43571C37.2792 9.43482 37.3377 9.41066 37.3816 9.36815C37.4255 9.32564 37.4515 9.26799 37.4543 9.20695C37.4458 9.12604 37.4112 9.05008 37.3558 8.99055C37.3003 8.93102 37.227 8.89115 37.1469 8.87695C37.0707 8.90703 37.0075 8.96297 36.9684 9.03497C36.9293 9.10696 36.9168 9.19042 36.9331 9.2707C36.9506 9.32937 36.9899 9.37912 37.0428 9.4098C37.0958 9.44047 37.1585 9.44974 37.2181 9.43571Z" fill="white"/>
|
||||
<path d="M28.5742 3.3296C28.5567 3.30274 28.5341 3.27959 28.5077 3.26147C28.4812 3.24336 28.4515 3.23062 28.4202 3.22401C28.3888 3.21739 28.3565 3.21702 28.325 3.22291C28.2935 3.2288 28.2635 3.24084 28.2366 3.25834C28.171 3.32461 28.13 3.41132 28.1205 3.50409C28.1109 3.59686 28.1334 3.6901 28.1841 3.76834C28.2315 3.81953 28.2963 3.85103 28.3658 3.85659C28.4353 3.86215 28.5043 3.84136 28.5591 3.79835C28.6146 3.73355 28.6462 3.65181 28.649 3.5666C28.6517 3.48139 28.6253 3.3978 28.5742 3.3296Z" fill="white"/>
|
||||
<path d="M36.4081 6.14931C36.5195 6.17819 36.6376 6.16511 36.7399 6.11255C36.8422 6.06 36.9217 5.97164 36.9631 5.86431C36.9727 5.73643 36.9416 5.60879 36.8743 5.49966C36.8069 5.39054 36.7067 5.30553 36.5881 5.25681C36.4739 5.24962 36.3609 5.28345 36.2695 5.35221C36.178 5.42096 36.1141 5.52012 36.0893 5.63181C36.0699 5.74213 36.0916 5.85576 36.1504 5.95114C36.2091 6.04652 36.3008 6.11704 36.4081 6.14931Z" fill="white"/>
|
||||
<path d="M36.2391 4.46945C36.2122 4.4997 36.1915 4.53497 36.1783 4.57323C36.165 4.61149 36.1594 4.65199 36.1619 4.69241C36.1643 4.73283 36.1747 4.77237 36.1925 4.80875C36.2102 4.84514 36.235 4.87766 36.2654 4.90446C36.2917 4.92763 36.3222 4.94546 36.3554 4.95695C36.4129 4.99898 36.4811 5.02376 36.5522 5.02841C36.6232 5.03305 36.6941 5.01738 36.7566 4.98321C36.8009 5.01978 36.8566 5.03979 36.9141 5.03979C36.9716 5.03979 37.0273 5.01978 37.0716 4.98321C37.1129 4.95044 37.1409 4.9038 37.1504 4.85196C37.1389 4.79483 37.1239 4.73847 37.1054 4.68321L36.3741 4.3457C36.3196 4.37516 36.2732 4.41768 36.2391 4.46945Z" fill="white"/>
|
||||
<path d="M38.8754 7.65058C38.9574 7.6673 39.0427 7.65111 39.1128 7.60551C39.183 7.55991 39.2324 7.48854 39.2504 7.40682C39.2486 7.39817 39.2486 7.38923 39.2504 7.38058C39.2592 7.32646 39.2464 7.27106 39.2149 7.22622C39.1833 7.18137 39.1355 7.15064 39.0816 7.14058C39.0246 7.12016 38.9623 7.1198 38.905 7.13958C38.8477 7.15935 38.7989 7.19806 38.7666 7.24932C38.7471 7.28254 38.7343 7.31929 38.729 7.35747C38.7237 7.39564 38.726 7.43449 38.7357 7.47178C38.7455 7.50907 38.7625 7.54406 38.7858 7.57474C38.8092 7.60543 38.8383 7.6312 38.8716 7.65058H38.8754Z" fill="white"/>
|
||||
<path d="M37.4242 5.09672C37.4481 5.11425 37.4752 5.1269 37.5039 5.13394C37.5327 5.14098 37.5625 5.14227 37.5918 5.13774C37.6211 5.13322 37.6492 5.12296 37.6745 5.10755C37.6997 5.09214 37.7217 5.0719 37.7392 5.04797V5.02172C37.5929 4.94297 37.4429 4.86797 37.2929 4.79297C37.2743 4.85091 37.2774 4.91364 37.3015 4.96951C37.3256 5.02537 37.3692 5.07057 37.4242 5.09672Z" fill="white"/>
|
||||
<path d="M41.8228 8.18585C41.8024 8.22525 41.7918 8.26897 41.7918 8.31334C41.7918 8.35771 41.8024 8.40144 41.8228 8.44085C41.8251 8.46 41.8312 8.47848 41.8409 8.49519C41.8505 8.5119 41.8634 8.52648 41.8788 8.53805C41.8943 8.54962 41.9119 8.55794 41.9306 8.5625C41.9493 8.56706 41.9688 8.56777 41.9878 8.56459C42.0089 8.56045 42.0292 8.55285 42.0478 8.54209C42.1453 8.48584 42.2278 8.41835 42.1866 8.2871C42.1453 8.15585 41.8866 8.12585 41.8228 8.18585Z" fill="white"/>
|
||||
<path d="M41.9091 9.83628C41.9786 9.83711 42.047 9.81862 42.1066 9.78286C42.1662 9.7471 42.2146 9.69549 42.2466 9.63377C42.2446 9.56426 42.2213 9.49705 42.1796 9.44134C42.138 9.38563 42.0802 9.34413 42.0141 9.32252C41.9823 9.31533 41.9495 9.31447 41.9174 9.32001C41.8853 9.32554 41.8546 9.33735 41.8271 9.35477C41.7996 9.37219 41.7757 9.39487 41.757 9.42151C41.7383 9.44816 41.7249 9.47823 41.7179 9.51002C41.7162 9.51996 41.7162 9.53009 41.7179 9.54002C41.7081 9.60423 41.7222 9.66979 41.7574 9.72435C41.7926 9.77891 41.8466 9.81872 41.9091 9.83628Z" fill="white"/>
|
||||
<path d="M42.3816 8.44141C42.4295 8.45413 42.4799 8.45413 42.5278 8.44141L42.1266 8.06641C42.1313 8.1461 42.1575 8.22303 42.2024 8.28905C42.2473 8.35507 42.3092 8.40772 42.3816 8.44141Z" fill="white"/>
|
||||
<path d="M28.4055 4.64927C28.4144 4.63664 28.4192 4.62158 28.4192 4.60615C28.4192 4.59071 28.4144 4.57565 28.4055 4.56302C28.3911 4.5501 28.3724 4.54297 28.353 4.54297C28.3337 4.54297 28.315 4.5501 28.3005 4.56302C28.2879 4.57684 28.2809 4.59491 28.2809 4.61365C28.2809 4.63239 28.2879 4.65044 28.3005 4.66427C28.3177 4.67172 28.3366 4.67427 28.3552 4.67162C28.3737 4.66897 28.3911 4.66124 28.4055 4.64927Z" fill="white"/>
|
||||
<path d="M39.8206 6.26265C39.4943 6.0414 39.1643 5.83141 38.8268 5.62891L38.8831 5.70391C38.817 5.80056 38.7816 5.91493 38.7816 6.03203C38.7816 6.14913 38.817 6.2635 38.8831 6.36016C38.9422 6.41595 39.0118 6.45946 39.0879 6.48817C39.164 6.51689 39.245 6.53024 39.3262 6.52745C39.4075 6.52466 39.4874 6.50579 39.5613 6.47192C39.6352 6.43806 39.7017 6.38987 39.7568 6.33015L39.8018 6.27765L39.8206 6.26265Z" fill="white"/>
|
||||
<path d="M39.4193 9.4353C39.4655 9.43887 39.5118 9.43323 39.5557 9.41871C39.5997 9.40418 39.6402 9.38106 39.6751 9.3507C39.71 9.32034 39.7386 9.28334 39.759 9.24185C39.7795 9.20036 39.7915 9.15522 39.7943 9.10905C39.8168 8.93655 39.6968 8.82405 39.4643 8.7903C39.2318 8.75655 39.1269 8.84655 39.1156 8.98905C39.1292 9.08155 39.1636 9.16975 39.2162 9.24704C39.2688 9.32433 39.3383 9.3887 39.4193 9.4353Z" fill="white"/>
|
||||
<path d="M37.6755 6.27002C37.6867 6.19419 37.6867 6.11711 37.6755 6.04127C37.6489 6.02387 37.6192 6.0119 37.588 6.00606C37.5568 6.00021 37.5248 6.00061 37.4937 6.00724C37.4627 6.01387 37.4333 6.02658 37.4072 6.04466C37.3811 6.06273 37.3588 6.0858 37.3417 6.11253C37.2892 6.21753 37.3417 6.27377 37.4242 6.32252C37.4408 6.33682 37.46 6.34761 37.4808 6.35425C37.5016 6.36088 37.5236 6.36322 37.5453 6.36111C37.567 6.35901 37.5881 6.35251 37.6073 6.34201C37.6265 6.33151 37.6433 6.31722 37.6567 6.30003C37.6643 6.29092 37.6706 6.28083 37.6755 6.27002Z" fill="white"/>
|
||||
<path d="M27.9479 4.62747C28.0039 4.66189 28.0711 4.67331 28.1354 4.65933C28.1997 4.64536 28.2561 4.60707 28.2929 4.55247C28.3198 4.49916 28.3259 4.43772 28.3099 4.38017C28.294 4.32261 28.2571 4.27306 28.2066 4.24122C28.1626 4.2049 28.1062 4.1873 28.0494 4.19221C27.9925 4.19712 27.9399 4.22415 27.9029 4.26747V4.28622C27.8835 4.31076 27.8691 4.33892 27.8607 4.36904C27.8522 4.39917 27.8499 4.43067 27.8537 4.46172C27.8575 4.49277 27.8675 4.52274 27.883 4.54991C27.8985 4.57708 27.9193 4.60089 27.9441 4.61997L27.9479 4.62747Z" fill="white"/>
|
||||
<path d="M47.6431 21.526C47.7132 21.5694 47.7956 21.5885 47.8776 21.5804C47.9596 21.5723 48.0367 21.5373 48.0969 21.481C48.2319 21.256 48.0481 21.0498 47.9469 20.9485C47.8456 20.8473 47.5719 21.0123 47.5081 21.2298C47.4893 21.2871 47.4927 21.3494 47.5177 21.4043C47.5427 21.4592 47.5875 21.5026 47.6431 21.526Z" fill="white"/>
|
||||
<path d="M46.8931 20.6244C46.978 20.6405 47.0658 20.6288 47.1436 20.5909C47.2213 20.5531 47.2847 20.4912 47.3243 20.4144C47.3429 20.3523 47.3421 20.286 47.322 20.2243C47.3019 20.1627 47.2635 20.1086 47.2119 20.0694C46.9906 19.9644 46.7581 20.0019 46.6943 20.1519C46.6738 20.2415 46.6819 20.3354 46.7176 20.4202C46.7532 20.505 46.8146 20.5764 46.8931 20.6244Z" fill="white"/>
|
||||
<path d="M47.6505 17.6516C47.6864 17.6321 47.7175 17.6048 47.7416 17.5717C47.7656 17.5386 47.7819 17.5006 47.7892 17.4603C47.7889 17.4265 47.7807 17.3933 47.765 17.3633C47.7494 17.3333 47.7268 17.3074 47.6992 17.2878C47.5567 17.2203 47.4555 17.2879 47.3805 17.4416C47.448 17.5541 47.4892 17.6853 47.6505 17.6516Z" fill="white"/>
|
||||
<path d="M47.2978 21.9865C47.3576 21.9616 47.4067 21.9163 47.4362 21.8586C47.4657 21.8009 47.4738 21.7346 47.4591 21.6715C47.4309 21.6191 47.3863 21.5775 47.332 21.5531C47.2778 21.5287 47.217 21.5229 47.1591 21.5365C47.1013 21.566 47.0544 21.6132 47.0254 21.6713C46.9964 21.7293 46.9867 21.7951 46.9978 21.859C47.0233 21.9136 47.068 21.9568 47.1234 21.9803C47.1788 22.0039 47.2409 22.0061 47.2978 21.9865Z" fill="white"/>
|
||||
<path d="M48.4303 19.3908C48.4703 19.2728 48.4704 19.145 48.4304 19.027C48.3904 18.9091 48.3126 18.8076 48.2091 18.7383L48.1453 18.712C48.114 18.6599 48.064 18.6216 48.0056 18.6049C47.9471 18.5882 47.8845 18.5943 47.8303 18.622C47.7593 18.6563 47.699 18.7094 47.656 18.7755C47.6131 18.8416 47.589 18.9182 47.5866 18.997V19.0158C47.536 19.1119 47.5253 19.2241 47.5569 19.328C47.5885 19.4319 47.6598 19.5191 47.7553 19.5708C47.8711 19.6249 48.0021 19.6364 48.1255 19.6035C48.249 19.5706 48.3569 19.4953 48.4303 19.3908Z" fill="white"/>
|
||||
<path d="M23.8228 2.68555L23.4891 2.74179C23.6035 2.76454 23.7222 2.74453 23.8228 2.68555Z" fill="white"/>
|
||||
<path d="M28.3228 2.51711C28.3449 2.49119 28.365 2.46361 28.3828 2.43461C28.1391 2.43461 27.8916 2.43461 27.6328 2.41211C27.6443 2.44523 27.6621 2.4758 27.6853 2.50211C27.7705 2.58376 27.8832 2.63059 28.0012 2.63336C28.1191 2.63614 28.2339 2.59467 28.3228 2.51711Z" fill="white"/>
|
||||
<path d="M23.5416 3.18778C23.5739 3.13238 23.5863 3.06759 23.5768 3.00416C23.5672 2.94073 23.5363 2.88247 23.4891 2.83904C23.3878 2.77529 23.1478 2.80528 23.1141 2.88778C23.0841 2.95737 23.0782 3.03494 23.0972 3.10827C23.1162 3.18159 23.1591 3.24651 23.2191 3.29278C23.2761 3.31963 23.3412 3.32372 23.4011 3.30421C23.4611 3.2847 23.5113 3.24306 23.5416 3.18778Z" fill="white"/>
|
||||
<path d="M39.408 14.3105C39.3748 14.3314 39.3478 14.3609 39.33 14.3959C39.3121 14.4309 39.3041 14.47 39.3068 14.5092C39.3068 14.5617 39.453 14.693 39.5168 14.6705C39.5805 14.648 39.6105 14.4755 39.5918 14.438C39.573 14.4005 39.4605 14.2842 39.408 14.3105Z" fill="white"/>
|
||||
<path d="M33.0555 7.52541C33.1186 7.42357 33.1738 7.317 33.2205 7.20666C33.2409 7.10625 33.2299 7.00199 33.189 6.90806C33.148 6.81412 33.0792 6.73507 32.9917 6.68166C32.9518 6.65102 32.9017 6.63669 32.8516 6.64156C32.8014 6.64643 32.7551 6.67014 32.7217 6.70791C32.5343 6.91732 32.4152 7.17899 32.3805 7.45791C32.3805 7.50139 32.3882 7.54454 32.403 7.58541C32.4265 7.66176 32.4787 7.72598 32.5487 7.76448C32.6187 7.80297 32.7009 7.81272 32.778 7.79166C32.8046 7.7843 32.8299 7.77292 32.853 7.75791C32.8763 7.75596 32.8989 7.7493 32.9195 7.73834C32.9402 7.72738 32.9583 7.71235 32.973 7.69416C32.9977 7.67331 33.0178 7.64754 33.032 7.61848C33.0462 7.58943 33.0542 7.55773 33.0555 7.52541Z" fill="white"/>
|
||||
<path d="M32.823 9.24033C32.9355 9.14283 32.823 8.82408 32.7218 8.81283C32.6205 8.80158 32.418 9.08283 32.508 9.18783C32.5454 9.23302 32.5979 9.2632 32.6557 9.27285C32.7136 9.28249 32.773 9.27094 32.823 9.24033Z" fill="white"/>
|
||||
<path d="M32.9278 10.6083C32.94 10.572 32.9432 10.5333 32.9374 10.4954C32.9315 10.4576 32.9167 10.4217 32.8941 10.3908C32.8798 10.3765 32.8629 10.3651 32.8442 10.3574C32.8255 10.3497 32.8055 10.3457 32.7853 10.3457C32.7651 10.3457 32.7451 10.3497 32.7265 10.3574C32.7078 10.3651 32.6909 10.3765 32.6766 10.3908C32.6635 10.4005 32.6532 10.4134 32.6466 10.4283C32.6128 10.4883 32.5566 10.6608 32.6841 10.7358C32.8116 10.8108 32.9016 10.6495 32.9278 10.6083Z" fill="white"/>
|
||||
<path d="M32.6956 8.10701C32.6768 8.03951 32.5418 8.04701 32.5118 8.06576C32.4861 8.08177 32.4655 8.10468 32.4522 8.13187C32.439 8.15905 32.4336 8.18942 32.4368 8.2195C32.4368 8.27575 32.5493 8.28701 32.5981 8.27576C32.6305 8.26212 32.6576 8.23825 32.6752 8.20778C32.6928 8.17731 32.6999 8.14192 32.6956 8.10701Z" fill="white"/>
|
||||
<path d="M36.1981 13.1097C36.1981 13.136 36.2468 13.2185 36.2693 13.2185C36.2918 13.2185 36.3931 13.181 36.4081 13.1398C36.4206 13.1064 36.4198 13.0694 36.4058 13.0366C36.3919 13.0038 36.3658 12.9776 36.3331 12.9635C36.1981 12.9335 36.1981 13.061 36.1981 13.1097Z" fill="white"/>
|
||||
<path d="M36.8131 12.4356C36.8076 12.4684 36.8151 12.502 36.834 12.5293C36.8529 12.5566 36.8817 12.5755 36.9143 12.5819C36.9311 12.587 36.9487 12.5888 36.9661 12.587C36.9835 12.5853 37.0004 12.58 37.0158 12.5717C37.0312 12.5633 37.0447 12.5519 37.0557 12.5382C37.0666 12.5245 37.0746 12.5087 37.0793 12.4919C37.0811 12.4782 37.0811 12.4643 37.0793 12.4506C37.0825 12.414 37.0715 12.3775 37.0484 12.3489C37.0253 12.3202 36.9921 12.3016 36.9556 12.2969C36.9195 12.3001 36.8856 12.3156 36.8597 12.3409C36.8337 12.3662 36.8173 12.3996 36.8131 12.4356Z" fill="white"/>
|
||||
<path d="M37.2256 10.6504C37.2519 10.4741 37.1807 10.3654 37.0269 10.3429C36.8094 10.3091 36.5619 10.4516 36.5432 10.6204C36.5244 10.7891 36.7044 10.9429 36.8807 10.9616C36.9668 10.9629 37.0503 10.9315 37.1143 10.8738C37.1783 10.8161 37.2181 10.7362 37.2256 10.6504Z" fill="white"/>
|
||||
<path d="M34.6981 3.96743C34.6981 3.99368 34.6981 4.03493 34.7468 4.03868C34.7552 4.0409 34.7639 4.04139 34.7725 4.04011C34.7811 4.03884 34.7893 4.03583 34.7967 4.03126C34.804 4.0267 34.8104 4.02068 34.8154 4.01358C34.8203 4.00647 34.8238 3.99842 34.8256 3.98993C34.8249 3.97151 34.8177 3.95391 34.8054 3.9402C34.7931 3.9265 34.7763 3.91755 34.7581 3.91493C34.7543 3.89993 34.6981 3.94868 34.6981 3.96743Z" fill="white"/>
|
||||
<path d="M25.7431 7.57811C25.7128 7.59743 25.6911 7.62778 25.6827 7.66276C25.6743 7.69774 25.6798 7.73462 25.6981 7.76561C25.7544 7.84811 25.8519 7.76561 25.8931 7.73186C25.9025 7.71191 25.9073 7.69014 25.9073 7.6681C25.9073 7.64607 25.9025 7.6243 25.8931 7.60435C25.848 7.57748 25.7946 7.56814 25.7431 7.57811Z" fill="white"/>
|
||||
<path d="M26.1669 5.72248C26.216 5.65255 26.237 5.56675 26.2259 5.48205C26.2148 5.39734 26.1723 5.31988 26.1069 5.26498C26.0033 5.21759 25.8868 5.20624 25.7761 5.23275C25.6653 5.25925 25.5665 5.32209 25.4956 5.41123C25.4719 5.49683 25.4794 5.58806 25.5167 5.66868C25.554 5.74929 25.6187 5.81405 25.6993 5.85141C25.7799 5.88878 25.8711 5.89633 25.9567 5.87271C26.0424 5.8491 26.1168 5.79586 26.1669 5.72248Z" fill="white"/>
|
||||
<path d="M25.3228 6.52502C25.2386 6.44143 25.1247 6.39453 25.006 6.39453C24.8873 6.39453 24.7734 6.44143 24.6891 6.52502L24.6666 6.55126C24.5841 6.61993 24.5322 6.71853 24.5224 6.8254C24.5126 6.93228 24.5455 7.03869 24.6141 7.12127C24.6231 7.13219 24.6332 7.14223 24.6441 7.15127C24.735 7.23615 24.8537 7.2849 24.978 7.28835C25.1024 7.29181 25.2236 7.24972 25.3191 7.17002C25.389 7.07722 25.4272 6.96433 25.4279 6.84813C25.4285 6.73194 25.3917 6.61862 25.3228 6.52502Z" fill="white"/>
|
||||
<path d="M30.8053 6.37603C30.6403 6.05728 30.3478 6.28603 30.3178 6.04978C30.2878 5.81353 30.5165 5.89228 30.4565 5.56228C30.3965 5.23228 30.0815 5.09354 29.9015 5.25479C29.7215 5.41604 29.7965 5.62979 29.7478 5.62979C29.699 5.62979 29.4515 5.70478 29.4853 5.88853C29.4403 5.86603 29.3878 5.85478 29.3615 5.88853C29.3444 5.9553 29.3524 6.02603 29.384 6.08729C29.4067 6.10758 29.4352 6.1203 29.4654 6.12366C29.4957 6.12702 29.5262 6.12085 29.5528 6.10603V6.06103C29.6803 6.20728 29.8903 6.13229 29.9278 6.21479C29.9526 6.39044 29.9876 6.56449 30.0328 6.73604C30.0487 6.79213 30.0768 6.84403 30.1151 6.88805C30.1533 6.93208 30.2008 6.96714 30.2541 6.99076C30.3075 7.01438 30.3653 7.02598 30.4236 7.02473C30.4819 7.02348 30.5393 7.00942 30.5915 6.98354C30.6984 6.94025 30.7838 6.85628 30.8288 6.75009C30.8738 6.64391 30.8748 6.5242 30.8315 6.41728L30.8053 6.37603Z" fill="white"/>
|
||||
<path d="M30.2768 8.91036C30.2468 8.95536 30.2131 9.05661 30.2768 9.10911C30.3081 9.12854 30.3455 9.13548 30.3817 9.12852C30.4178 9.12157 30.45 9.10125 30.4718 9.07161C30.5056 9.03411 30.5731 8.90286 30.4718 8.82786C30.3706 8.75286 30.3031 8.86536 30.2768 8.91036Z" fill="white"/>
|
||||
<path d="M29.0728 5.23563C29.1224 5.17038 29.1493 5.0907 29.1493 5.00876C29.1493 4.92681 29.1224 4.84712 29.0728 4.78188C28.8703 4.61688 28.6416 4.78188 28.5291 4.85313C28.4166 4.92438 28.5291 5.22813 28.7428 5.32563C28.7691 5.34193 28.7984 5.35284 28.8289 5.3577C28.8594 5.36257 28.8906 5.36129 28.9206 5.35396C28.9507 5.34663 28.9789 5.33338 29.0038 5.31499C29.0286 5.29661 29.0496 5.27345 29.0654 5.24688L29.0728 5.23563Z" fill="white"/>
|
||||
<path d="M28.743 7.93579V8.02954C28.754 8.03514 28.7662 8.03806 28.7786 8.03806C28.791 8.03806 28.8032 8.03514 28.8142 8.02954C28.8142 7.99579 28.8442 7.95079 28.8142 7.92829C28.7842 7.90579 28.7767 7.93579 28.743 7.93579Z" fill="white"/>
|
||||
<path d="M36.6328 7.06875C36.6328 7.06875 36.6515 7.03125 36.6628 7.0125C36.7528 7.0125 36.899 6.9525 36.9065 6.87C36.914 6.7875 36.7115 6.6975 36.6365 6.69C36.6243 6.68624 36.6113 6.68624 36.599 6.69C36.5183 6.65328 36.4296 6.63747 36.3411 6.64402C36.2526 6.65058 36.1672 6.67928 36.0928 6.7275C36.0668 6.76281 36.0481 6.80295 36.0378 6.84558C36.0274 6.8882 36.0257 6.93245 36.0327 6.97574C36.0397 7.01903 36.0552 7.0605 36.0784 7.09772C36.1016 7.13494 36.132 7.16716 36.1678 7.1925L36.2128 7.21875C36.3253 7.30875 36.5053 7.24875 36.6328 7.06875Z" fill="white"/>
|
||||
<path d="M46.379 32.7743C46.409 32.7143 46.3153 32.6393 46.274 32.613C46.2496 32.6072 46.224 32.6084 46.2001 32.6163C46.1763 32.6243 46.1551 32.6387 46.139 32.658C46.1454 32.7146 46.1705 32.7674 46.2103 32.808C46.2228 32.8189 46.2377 32.8268 46.2538 32.8311C46.2698 32.8353 46.2866 32.8358 46.3029 32.8326C46.3192 32.8293 46.3346 32.8224 46.3478 32.8123C46.3609 32.8022 46.3717 32.7892 46.379 32.7743Z" fill="white"/>
|
||||
<path d="M38.6766 12.8441C38.6766 12.9416 38.6766 13.0616 38.8116 13.0578C38.8577 13.0627 38.9041 13.0515 38.943 13.0263C38.9819 13.001 39.011 12.9632 39.0253 12.9191C39.0253 12.8591 38.9578 12.7503 38.9316 12.6903C38.7478 12.6641 38.6916 12.7503 38.6766 12.8441Z" fill="white"/>
|
||||
<path d="M46.773 25.6161C46.8105 25.5111 46.803 25.4098 46.7055 25.3573C46.4729 25.2036 46.2004 25.1215 45.9217 25.1211C45.878 25.1281 45.836 25.1434 45.7979 25.1661C45.7608 25.1831 45.7273 25.2072 45.6995 25.2371C45.6716 25.2671 45.6499 25.3022 45.6356 25.3405C45.6214 25.3788 45.6148 25.4195 45.6162 25.4604C45.6177 25.5012 45.6272 25.5414 45.6442 25.5786C45.6738 25.6477 45.7288 25.7028 45.7979 25.7323C45.9509 25.8173 46.115 25.8804 46.2855 25.9198C46.3882 25.9262 46.4904 25.9004 46.5778 25.8459C46.6651 25.7915 46.7334 25.7111 46.773 25.6161Z" fill="white"/>
|
||||
<path d="M46.4165 30.8108C46.4236 30.7825 46.4219 30.7527 46.4119 30.7253C46.4019 30.6979 46.3839 30.6741 46.3603 30.657C46.3228 30.6308 46.184 30.6233 46.1578 30.6758C46.1315 30.7283 46.214 30.837 46.2515 30.852C46.2797 30.8644 46.3112 30.8671 46.3411 30.8596C46.371 30.8522 46.3975 30.835 46.4165 30.8108Z" fill="white"/>
|
||||
<path d="M48.483 27.3786C48.544 27.3169 48.5889 27.2413 48.6137 27.1582C48.6386 27.0752 48.6426 26.9873 48.6255 26.9023C48.6086 26.8173 48.5674 26.7391 48.5068 26.6772C48.4462 26.6152 48.3689 26.5723 48.2843 26.5536H48.2393C48.3387 26.5159 48.4203 26.4423 48.468 26.3473C48.528 26.2048 48.4343 26.0436 48.2318 25.9498C48.1592 25.9178 48.0784 25.9097 48.0009 25.9265C47.9234 25.9434 47.8533 25.9843 47.8005 26.0436C47.7658 26.1353 47.7621 26.2359 47.7898 26.33C47.8176 26.4241 47.8753 26.5066 47.9543 26.5648C47.975 26.5767 47.998 26.5844 48.0218 26.5873C47.9604 26.6226 47.9078 26.6713 47.868 26.7298C47.7657 26.8844 47.7243 27.0715 47.7518 27.2548C47.7561 27.3228 47.7405 27.3906 47.7068 27.4498C47.6506 27.513 47.6218 27.5959 47.6267 27.6802C47.6316 27.7646 47.6699 27.8436 47.733 27.8998C47.7651 27.9295 47.8036 27.9513 47.8455 27.9636C47.8186 27.9813 47.7987 28.0078 47.7893 28.0386C47.7518 28.1436 47.8418 28.2861 47.9768 28.3461C48.0425 28.3766 48.1174 28.3817 48.1867 28.3602C48.256 28.3387 48.3148 28.2922 48.3518 28.2298C48.3769 28.1691 48.3773 28.1009 48.3527 28.0399C48.3282 27.9789 48.2807 27.93 48.2205 27.9036C48.2742 27.8411 48.3115 27.7664 48.3293 27.6861C48.3382 27.5674 48.3934 27.4569 48.483 27.3786Z" fill="white"/>
|
||||
<path d="M46.2893 28.4748C46.2481 28.3361 46.1393 28.3098 45.8693 28.3586C45.8393 28.4973 45.7531 28.6435 45.9256 28.7335C45.9729 28.7698 46.0326 28.7857 46.0916 28.778C46.1507 28.7703 46.2042 28.7395 46.2406 28.6923C46.2849 28.6291 46.3024 28.5509 46.2893 28.4748Z" fill="white"/>
|
||||
<path d="M42.2693 11.2234C42.3667 11.2409 42.4671 11.2192 42.5486 11.163C42.6301 11.1068 42.6861 11.0207 42.7043 10.9234C42.7061 10.8984 42.7061 10.8733 42.7043 10.8484C42.7155 10.7725 42.7155 10.6954 42.7043 10.6196C42.809 10.6459 42.9194 10.638 43.0193 10.5971C43.068 10.5687 43.1073 10.5264 43.132 10.4757C43.1567 10.4249 43.1657 10.368 43.158 10.3121C43.2701 10.31 43.3786 10.2726 43.4681 10.2053C43.5577 10.138 43.6237 10.0441 43.6568 9.93711C43.6807 9.82441 43.6601 9.70683 43.5993 9.60898C43.5385 9.51112 43.4422 9.44058 43.3306 9.41211C43.2007 9.42052 43.0757 9.46451 42.9692 9.53925C42.8627 9.614 42.7788 9.71662 42.7268 9.83586C42.7111 9.90639 42.7232 9.98024 42.7605 10.0421H42.738C42.6813 10.0763 42.6323 10.122 42.5942 10.1763C42.5561 10.2305 42.5297 10.2921 42.5168 10.3571C42.4518 10.3252 42.3822 10.3037 42.3105 10.2934C42.1849 10.2818 42.0598 10.3202 41.9623 10.4002C41.8647 10.4802 41.8026 10.5954 41.7893 10.7209C41.7705 10.9346 42.0143 11.1821 42.2693 11.2234Z" fill="white"/>
|
||||
<path d="M39.8504 11.8466C40.2254 11.9178 40.2254 11.8916 40.2254 11.5766C40.0679 11.4641 39.9404 11.5091 39.8279 11.6591C39.4079 11.4753 39.2092 11.6591 39.2542 12.1353C39.2297 12.1554 39.2033 12.173 39.1754 12.1878C39.0517 12.2366 39.0366 12.3378 39.0516 12.4541C39.0666 12.5703 39.1341 12.6153 39.2391 12.6528C39.4904 12.7353 39.6142 12.6791 39.6667 12.4203C39.7342 12.2291 39.7941 12.0341 39.8504 11.8466Z" fill="white"/>
|
||||
<path d="M39.2504 10.0996C39.2591 10.0511 39.2581 10.0014 39.2475 9.95327C39.2369 9.90515 39.2169 9.85959 39.1887 9.81919C39.1605 9.77879 39.1246 9.74435 39.0831 9.71783C39.0415 9.69131 38.9952 9.67324 38.9467 9.66464C38.8869 9.65037 38.8248 9.6485 38.7643 9.65914C38.7038 9.66978 38.6461 9.6927 38.5948 9.72649C38.5434 9.76029 38.4996 9.80423 38.4659 9.85563C38.4322 9.90702 38.4094 9.96477 38.3989 10.0253C38.3883 10.0859 38.3903 10.1479 38.4047 10.2077C38.4191 10.2674 38.4456 10.3236 38.4825 10.3727C38.5194 10.4218 38.566 10.4629 38.6194 10.4933C38.6728 10.5237 38.7318 10.5429 38.7929 10.5496C39.0254 10.5609 39.1979 10.3921 39.2504 10.0996Z" fill="white"/>
|
||||
<path d="M41.883 13.0388C41.8493 12.9563 41.6955 12.9338 41.568 12.99C41.5498 12.9948 41.5327 13.0031 41.5178 13.0147C41.5029 13.0262 41.4905 13.0407 41.4814 13.0572C41.4723 13.0737 41.4666 13.0919 41.4647 13.1106C41.4629 13.1294 41.4648 13.1483 41.4705 13.1663C41.4678 13.1774 41.4678 13.1889 41.4705 13.2C41.523 13.3013 41.598 13.3763 41.7293 13.3313C41.785 13.3081 41.8309 13.2662 41.8589 13.2128C41.887 13.1594 41.8955 13.0978 41.883 13.0388Z" fill="white"/>
|
||||
<path d="M41.6016 20.0808C41.5716 20.0808 41.4892 20.1633 41.5117 20.227C41.5342 20.2908 41.6579 20.272 41.7029 20.257C41.7236 20.2435 41.74 20.2243 41.75 20.2016C41.76 20.179 41.7632 20.1539 41.7592 20.1295C41.7404 20.0883 41.6504 20.077 41.6016 20.0808Z" fill="white"/>
|
||||
<path d="M41.6917 11.989C41.6349 11.9806 41.577 11.9837 41.5214 11.9981C41.4659 12.0126 41.4138 12.038 41.3683 12.073C41.3228 12.108 41.2848 12.1518 41.2566 12.2018C41.2284 12.2518 41.2106 12.307 41.2041 12.364C41.2023 12.3789 41.2023 12.3941 41.2041 12.409C41.2024 12.5145 41.2398 12.6169 41.309 12.6965C41.3782 12.7761 41.4744 12.8273 41.5791 12.8402C41.7891 12.8665 41.9954 12.649 42.0254 12.3752C42.0317 12.3316 42.0292 12.2871 42.018 12.2444C42.0068 12.2017 41.9872 12.1617 41.9603 12.1267C41.9333 12.0918 41.8997 12.0626 41.8613 12.0408C41.8229 12.0191 41.7805 12.0053 41.7367 12.0002L41.6917 11.989Z" fill="white"/>
|
||||
<path d="M24.6254 8.37016C24.5616 8.43016 24.5953 8.58392 24.6966 8.68142C24.7064 8.69632 24.7191 8.70908 24.734 8.71891C24.7488 8.72874 24.7655 8.73544 24.7831 8.7386C24.8006 8.74175 24.8186 8.74131 24.836 8.73728C24.8534 8.73325 24.8697 8.72573 24.8841 8.71516C24.8972 8.70589 24.9086 8.69448 24.9179 8.68142C24.9929 8.59517 25.0379 8.49766 24.9479 8.39266C24.9046 8.35285 24.8492 8.32894 24.7906 8.32485C24.7319 8.32076 24.6737 8.33674 24.6254 8.37016Z" fill="white"/>
|
||||
<path d="M47.0166 22.8816C47.2454 22.8216 47.2041 23.0541 47.5191 22.9454C47.8341 22.8366 47.9316 22.5029 47.7441 22.3566C47.5566 22.2104 47.3691 22.3004 47.3429 22.2554C47.3166 22.2104 47.2266 21.9704 47.0504 22.0341C46.6754 22.1691 46.8854 22.4729 46.7841 22.5441C46.6829 22.6154 46.4391 22.6266 46.2854 22.7241C46.0716 22.8591 45.9516 23.0991 46.1204 23.3129C46.1546 23.3622 46.1995 23.4032 46.2516 23.4329C46.2743 23.4614 46.304 23.4834 46.3379 23.4966C46.4504 23.5566 46.6379 23.7404 46.7916 23.6429C46.9454 23.5454 46.8366 23.4179 46.8479 23.3354C46.9979 23.1404 46.8179 22.9341 47.0166 22.8816Z" fill="white"/>
|
||||
<path d="M15.8206 6.33056C15.9443 6.38306 16.1656 6.16181 16.1206 6.06431C16.0756 5.96681 15.7831 5.92931 15.7456 6.06431C15.7266 6.1107 15.7237 6.16209 15.7373 6.21033C15.7509 6.25856 15.7802 6.30087 15.8206 6.33056Z" fill="white"/>
|
||||
<path d="M45.1717 25.2749C45.1192 25.2974 45.1192 25.3987 45.138 25.4437C45.1568 25.474 45.1847 25.4976 45.2177 25.5111C45.2507 25.5245 45.2871 25.5272 45.3217 25.5187C45.3855 25.4887 45.3555 25.3574 45.3217 25.3274C45.3026 25.3076 45.279 25.2925 45.253 25.2833C45.2269 25.2742 45.1991 25.2713 45.1717 25.2749Z" fill="white"/>
|
||||
<path d="M45.5093 24.2512C45.5177 24.1522 45.4897 24.0536 45.4306 23.9737C45.3668 23.9025 45.1793 23.9737 45.1531 24.0937C45.1503 24.1632 45.1631 24.2324 45.1906 24.2962C45.3556 24.3787 45.4981 24.3525 45.5093 24.2512Z" fill="white"/>
|
||||
<path d="M12.7119 7.71084C12.6631 7.79334 12.5769 8.01459 12.6369 8.08584C12.6969 8.15709 12.9219 8.03709 12.9294 8.00334C12.9594 7.89834 13.0194 7.76709 12.9294 7.67334C12.9145 7.65717 12.8958 7.64497 12.875 7.63788C12.8543 7.63079 12.832 7.62904 12.8104 7.63277C12.7887 7.6365 12.7684 7.6456 12.7512 7.65924C12.734 7.67288 12.7204 7.69062 12.7119 7.71084Z" fill="white"/>
|
||||
<path d="M47.8229 24.8099C47.8528 24.7058 47.8477 24.5948 47.8084 24.4938C47.7691 24.3929 47.6978 24.3077 47.6054 24.2511C47.5268 24.245 47.4482 24.2638 47.3809 24.3049C47.3136 24.3459 47.2609 24.4072 47.2304 24.4799C47.211 24.5165 47.1991 24.5566 47.1954 24.5978C47.1917 24.6391 47.1963 24.6807 47.2088 24.7201C47.2214 24.7596 47.2417 24.7962 47.2686 24.8277C47.2955 24.8592 47.3284 24.885 47.3654 24.9036C47.3827 24.9143 47.4017 24.9219 47.4216 24.9261C47.4551 24.9469 47.4926 24.9604 47.5316 24.9657C47.5706 24.9711 47.6103 24.9682 47.6481 24.9573C47.686 24.9463 47.7211 24.9275 47.7512 24.9021C47.7813 24.8767 47.8057 24.8453 47.8229 24.8099Z" fill="white"/>
|
||||
<path d="M47.3016 30.7528C47.1928 30.7153 47.1441 30.7828 47.1066 30.8653C47.0946 30.883 47.0863 30.9029 47.0821 30.9238C47.0779 30.9447 47.0779 30.9663 47.0821 30.9872C47.0862 31.0081 47.0945 31.028 47.1065 31.0457C47.1184 31.0634 47.1337 31.0786 47.1516 31.0903C47.1699 31.1017 47.1903 31.1093 47.2116 31.1128C47.289 31.1126 47.3661 31.1012 47.4403 31.0791C47.4654 31.0199 47.4661 30.9531 47.4422 30.8934C47.4183 30.8337 47.3718 30.7859 47.3128 30.7603L47.3016 30.7528Z" fill="white"/>
|
||||
<path d="M35.1218 4.73554C35.1128 4.82144 35.1362 4.90762 35.1876 4.97705C35.239 5.04648 35.3145 5.09412 35.3993 5.11054C35.4281 5.12197 35.4589 5.12754 35.4898 5.12692C35.5208 5.1263 35.5513 5.11951 35.5796 5.10693C35.6079 5.09435 35.6334 5.07625 35.6546 5.05369C35.6758 5.03113 35.6923 5.00456 35.7031 4.97554C35.7031 4.97554 35.7031 4.97554 35.7031 4.95304C35.7144 4.86063 35.6937 4.76713 35.6446 4.68803C35.5955 4.60893 35.5209 4.54896 35.4331 4.51804C35.3634 4.50885 35.2928 4.52608 35.2352 4.56633C35.1776 4.60659 35.1372 4.66695 35.1218 4.73554Z" fill="white"/>
|
||||
<path d="M37.4655 8.15336C37.464 8.18254 37.4684 8.21172 37.4784 8.23918C37.4884 8.26663 37.5038 8.29178 37.5238 8.31313C37.5437 8.33448 37.5678 8.35159 37.5945 8.36344C37.6212 8.37529 37.65 8.38164 37.6793 8.38211C37.7535 8.37733 37.8232 8.34442 37.8741 8.29008C37.9249 8.23573 37.9532 8.16404 37.953 8.08961C37.9005 8.04461 37.8292 7.9396 37.7355 7.90585C37.6417 7.8721 37.4768 7.99961 37.4655 8.15336Z" fill="white"/>
|
||||
<path d="M35.2906 3.8993L34.9906 3.7793C35.0739 3.8525 35.1798 3.89487 35.2906 3.8993Z" fill="white"/>
|
||||
<path d="M37.6978 6.55909C37.6011 6.54859 37.5037 6.57202 37.4223 6.62538C37.3409 6.67873 37.2806 6.75868 37.2516 6.85159C37.2537 6.94831 37.287 7.04177 37.3464 7.11809C37.4059 7.19442 37.4883 7.24957 37.5816 7.27534C37.7203 7.29784 37.8928 7.13284 37.9191 6.94909C37.9453 6.76534 37.8591 6.58909 37.6978 6.55909Z" fill="white"/>
|
||||
<path d="M40.8031 9.86321C40.7882 9.95992 40.8078 10.0588 40.8586 10.1425C40.9093 10.2261 40.9879 10.2892 41.0806 10.3207C41.2118 10.3207 41.4556 10.0732 41.4556 9.90821C41.4518 9.86284 41.4391 9.81867 41.4182 9.77824C41.3972 9.73781 41.3685 9.70191 41.3336 9.67263C41.2988 9.64335 41.2585 9.62125 41.215 9.60762C41.1716 9.59399 41.1259 9.58909 41.0806 9.59321C41.0068 9.59832 40.9368 9.62751 40.8812 9.67629C40.8257 9.72507 40.7877 9.79074 40.7731 9.86321H40.8031Z" fill="white"/>
|
||||
<path d="M41.3429 11.3993C41.2941 11.4256 41.2041 11.4818 41.2341 11.5343C41.2509 11.5599 41.2746 11.5802 41.3025 11.5928C41.3304 11.6054 41.3613 11.6098 41.3916 11.6056C41.4329 11.6056 41.5416 11.4968 41.5116 11.4443C41.4903 11.4221 41.4633 11.4062 41.4335 11.3983C41.4038 11.3903 41.3724 11.3907 41.3429 11.3993Z" fill="white"/>
|
||||
<path d="M18.4944 9.41236C18.5379 9.37166 18.5652 9.31665 18.5714 9.25741C18.5776 9.19817 18.5622 9.13868 18.5281 9.08986C18.4861 9.04568 18.4295 9.01827 18.3688 9.01275C18.308 9.00723 18.2474 9.02397 18.1981 9.05986C18.176 9.07226 18.1567 9.089 18.1412 9.10908C18.1258 9.12915 18.1146 9.15216 18.1083 9.17669C18.102 9.20122 18.1007 9.22678 18.1045 9.25181C18.1084 9.27685 18.1172 9.30085 18.1306 9.32236C18.1388 9.34051 18.1517 9.35608 18.1681 9.36736C18.1854 9.39294 18.2076 9.41482 18.2335 9.43172C18.2593 9.44862 18.2883 9.4602 18.3187 9.46578C18.349 9.47137 18.3802 9.47085 18.4104 9.46425C18.4405 9.45765 18.4691 9.44511 18.4944 9.42736V9.41236Z" fill="white"/>
|
||||
<path d="M20.613 6.16805C20.5733 6.21382 20.5533 6.2735 20.5576 6.33396C20.5618 6.39443 20.5898 6.45075 20.6355 6.49055H20.658C20.7518 6.55805 20.853 6.63681 20.9393 6.55431C21.0855 6.39681 21.1005 6.24306 21.0105 6.14931C20.9876 6.12284 20.9597 6.10122 20.9283 6.08572C20.8969 6.07023 20.8627 6.06116 20.8278 6.05907C20.7928 6.05697 20.7578 6.06188 20.7248 6.07351C20.6918 6.08515 20.6614 6.10326 20.6355 6.1268L20.613 6.16805Z" fill="white"/>
|
||||
<path d="M18.5505 10.7889C18.5931 10.7357 18.6163 10.6696 18.6163 10.6014C18.6163 10.5333 18.5931 10.4671 18.5505 10.4139C18.5084 10.3727 18.4518 10.3496 18.3929 10.3496C18.3341 10.3496 18.2775 10.3727 18.2355 10.4139C18.1832 10.4608 18.1513 10.5261 18.1464 10.5961C18.1415 10.6661 18.164 10.7353 18.2092 10.7889C18.2571 10.8289 18.3175 10.8508 18.3798 10.8508C18.4422 10.8508 18.5026 10.8289 18.5505 10.7889Z" fill="white"/>
|
||||
<path d="M19.8854 4.00047C19.9362 4.04822 19.996 4.08545 20.0613 4.10999C20.1266 4.13453 20.1961 4.14591 20.2658 4.14347C20.3356 4.14103 20.4041 4.12482 20.4675 4.09577C20.5309 4.06672 20.588 4.02541 20.6354 3.97422C20.7175 3.89586 20.7704 3.79184 20.7854 3.67935C20.8004 3.56685 20.7766 3.4526 20.7179 3.35547C20.3954 3.45297 20.0729 3.55797 19.7579 3.67047C19.7503 3.73172 19.758 3.79388 19.7803 3.85145C19.8025 3.90902 19.8386 3.9602 19.8854 4.00047Z" fill="white"/>
|
||||
<path d="M16.0831 9.6416C16.0581 9.66604 16.0383 9.69521 16.0248 9.72741C16.0112 9.7596 16.0043 9.79418 16.0043 9.8291C16.0043 9.86402 16.0112 9.8986 16.0248 9.93079C16.0383 9.96299 16.0581 9.99216 16.0831 10.0166C16.104 10.0416 16.1297 10.0622 16.1587 10.0771C16.1877 10.0921 16.2194 10.101 16.2519 10.1035C16.2844 10.1059 16.3171 10.1018 16.348 10.0914C16.3789 10.081 16.4074 10.0645 16.4318 10.0428L16.4581 10.0166C16.5 9.96819 16.5231 9.90628 16.5231 9.84223C16.5231 9.77817 16.5 9.71626 16.4581 9.66785C16.4379 9.64174 16.4127 9.61988 16.3841 9.60349C16.3554 9.5871 16.3239 9.57651 16.2911 9.57234C16.2584 9.56816 16.2252 9.57047 16.1933 9.57913C16.1615 9.5878 16.1317 9.60266 16.1056 9.62285L16.0831 9.6416Z" fill="white"/>
|
||||
<path d="M23.2791 9.29641C23.2645 9.3237 23.2585 9.35477 23.2618 9.38555C23.2652 9.41633 23.2777 9.44538 23.2979 9.4689C23.3391 9.50265 23.4254 9.5664 23.4666 9.5214C23.4814 9.49506 23.4892 9.46536 23.4892 9.43515C23.4892 9.40495 23.4814 9.37525 23.4666 9.34891C23.4479 9.31516 23.3204 9.24766 23.2791 9.29641Z" fill="white"/>
|
||||
<path d="M21.9479 8.19337C21.892 8.15369 21.8241 8.13461 21.7557 8.1394C21.6873 8.14418 21.6227 8.17253 21.5729 8.21962C21.515 8.27793 21.4801 8.35517 21.4746 8.43715C21.4691 8.51913 21.4933 8.60034 21.5429 8.66587C21.6145 8.72387 21.7024 8.75826 21.7944 8.76431C21.8864 8.77035 21.978 8.74775 22.0566 8.69962C22.1316 8.60587 22.0754 8.33212 21.9479 8.19337Z" fill="white"/>
|
||||
<path d="M21.6591 11.1366C21.6399 11.1655 21.6297 11.1994 21.6297 11.2341C21.6297 11.2688 21.6399 11.3027 21.6591 11.3316C21.6834 11.3444 21.7104 11.3511 21.7379 11.3511C21.7653 11.3511 21.7923 11.3444 21.8166 11.3316C21.8294 11.308 21.8361 11.2816 21.8361 11.2547C21.8361 11.2279 21.8294 11.2014 21.8166 11.1778C21.8204 11.1478 21.7079 11.0766 21.6591 11.1366Z" fill="white"/>
|
||||
<path d="M21.1041 5.02409C21.0345 4.97292 20.9504 4.94531 20.8641 4.94531C20.7777 4.94531 20.6937 4.97292 20.6241 5.02409C20.5808 5.09203 20.5624 5.17286 20.572 5.25284C20.5816 5.33282 20.6185 5.40702 20.6766 5.46284C20.6976 5.4814 20.7221 5.49557 20.7487 5.50451C20.7753 5.51344 20.8034 5.51696 20.8313 5.51487C20.8593 5.51277 20.8866 5.5051 20.9115 5.49229C20.9364 5.47949 20.9586 5.46183 20.9766 5.44034C21.1491 5.24534 21.1978 5.10284 21.1041 5.02409Z" fill="white"/>
|
||||
<path d="M17.3693 6.01411C17.3069 5.95251 17.2227 5.91797 17.1349 5.91797C17.0472 5.91797 16.963 5.95251 16.9006 6.01411L16.8781 6.04036C16.8117 6.1013 16.7695 6.18411 16.7591 6.27363C16.7488 6.36315 16.771 6.4534 16.8218 6.52786C16.901 6.58303 16.9953 6.6126 17.0918 6.6126C17.1883 6.6126 17.2826 6.58303 17.3618 6.52786C17.3989 6.49653 17.4287 6.45748 17.4492 6.41343C17.4696 6.36939 17.4802 6.32142 17.4802 6.27286C17.4802 6.2243 17.4696 6.17632 17.4492 6.13228C17.4287 6.08824 17.3989 6.04919 17.3618 6.01786L17.3693 6.01411Z" fill="white"/>
|
||||
<path d="M16.6041 5.07844C16.6739 5.15629 16.7714 5.20378 16.8758 5.21078C16.9802 5.21779 17.0832 5.18375 17.1628 5.11594C17.2453 5.23219 17.2828 5.40094 17.4778 5.33344C17.5307 5.31933 17.5767 5.28641 17.607 5.24084C17.6374 5.19528 17.6501 5.1402 17.6428 5.08594C17.6428 4.88344 17.4591 4.88344 17.3053 4.87219C17.3103 4.81671 17.2999 4.76092 17.2753 4.71094L16.5891 5.06344L16.6041 5.07844Z" fill="white"/>
|
||||
<path d="M23.4479 5.344C23.3504 5.1865 23.2041 5.16775 23.0091 5.344C22.9354 5.50417 22.8704 5.66815 22.8141 5.83525C22.8048 5.86281 22.8012 5.89196 22.8033 5.92096C22.8055 5.94997 22.8135 5.97824 22.8268 6.00412C22.84 6.02999 22.8584 6.05294 22.8807 6.0716C22.903 6.09026 22.9288 6.10425 22.9566 6.11276C23.0139 6.13351 23.077 6.13101 23.1323 6.10576C23.1877 6.08052 23.231 6.03456 23.2529 5.97776C23.2822 5.91014 23.3227 5.84799 23.3729 5.794C23.4331 5.73768 23.4731 5.66307 23.4867 5.58172C23.5002 5.50037 23.4866 5.41682 23.4479 5.344Z" fill="white"/>
|
||||
<path d="M16.5181 7.05768C16.4831 6.98327 16.4203 6.92552 16.3432 6.89679C16.2661 6.86806 16.1809 6.87062 16.1056 6.90393C16.0458 6.93204 15.9961 6.97786 15.9631 7.03518C15.8715 7.18301 15.802 7.34346 15.7569 7.51143C15.7387 7.61442 15.7549 7.72052 15.803 7.81338C15.8512 7.90623 15.9285 7.98066 16.0231 8.02518C16.1281 8.07018 16.3981 8.07768 16.4169 7.84893C16.2856 7.47393 16.5631 7.47393 16.5556 7.19643C16.5507 7.14847 16.538 7.10162 16.5181 7.05768Z" fill="white"/>
|
||||
<path d="M17.6581 7.97909C17.6763 7.96481 17.6915 7.94708 17.7029 7.92692C17.7143 7.90675 17.7216 7.88454 17.7244 7.86156C17.7271 7.83858 17.7254 7.81526 17.7191 7.79296C17.7129 7.77067 17.7024 7.74981 17.6881 7.7316L17.6581 7.7016C17.6216 7.68894 17.5828 7.68473 17.5444 7.68928C17.5061 7.69382 17.4693 7.70701 17.4368 7.72784C17.3881 7.76909 17.3168 7.93034 17.3656 7.99034C17.4143 8.05034 17.5981 8.02409 17.6581 7.97909Z" fill="white"/>
|
||||
<path d="M18.5168 7.49318C18.3968 7.36943 18.2244 7.39192 18.0631 7.55317C18.0063 7.59574 17.9686 7.65896 17.9581 7.72914C17.9475 7.79931 17.9651 7.87081 18.0068 7.92817C18.0835 7.98544 18.1746 8.02032 18.27 8.02893C18.3653 8.03754 18.4611 8.01953 18.5468 7.97692C18.6064 7.91718 18.6398 7.83627 18.6398 7.75192C18.6398 7.66757 18.6064 7.58667 18.5468 7.52692L18.5168 7.49318Z" fill="white"/>
|
||||
<path d="M15.0068 8.37812C14.9944 8.39132 14.9875 8.40876 14.9875 8.42687C14.9875 8.44498 14.9944 8.46241 15.0068 8.47562C15.0068 8.49437 15.0818 8.47562 15.0968 8.47562C15.1089 8.46304 15.1157 8.44623 15.1157 8.42875C15.1157 8.41126 15.1089 8.39445 15.0968 8.38187C15.0908 8.37539 15.0836 8.37023 15.0755 8.36669C15.0674 8.36315 15.0587 8.36133 15.0499 8.36133C15.0411 8.36133 15.0324 8.36315 15.0243 8.36669C15.0162 8.37023 15.009 8.37539 15.003 8.38187L15.0068 8.37812Z" fill="white"/>
|
||||
<path d="M35.2868 9.56327C35.336 9.4712 35.3498 9.36432 35.3257 9.26277C35.3015 9.16123 35.241 9.07203 35.1556 9.01202C35.0569 8.94313 34.935 8.91592 34.8164 8.93628C34.6978 8.95664 34.5919 9.02292 34.5218 9.12077V9.14327C34.4645 9.22231 34.4403 9.32061 34.4543 9.41725C34.4683 9.51389 34.5194 9.60126 34.5968 9.66077C34.7059 9.72509 34.8335 9.75047 34.9589 9.73276C35.0843 9.71505 35.1999 9.65529 35.2868 9.56327Z" fill="white"/>
|
||||
<path d="M35.1178 11.2837C35.1778 11.2904 35.2383 11.2757 35.2884 11.242C35.3385 11.2084 35.3751 11.158 35.3916 11.1C35.3983 11.0721 35.3994 11.0433 35.3949 11.015C35.3904 10.9867 35.3804 10.9596 35.3654 10.9352C35.3505 10.9108 35.3308 10.8897 35.3076 10.8729C35.2844 10.8561 35.2582 10.8441 35.2303 10.8375C35.1708 10.8309 35.1109 10.8458 35.0614 10.8795C35.0119 10.9132 34.9761 10.9634 34.9603 11.0212C34.9228 11.1412 35.0053 11.2837 35.1178 11.2837Z" fill="white"/>
|
||||
<path d="M35.7967 8.98549C35.7987 8.92676 35.7814 8.86897 35.7476 8.82092C35.7138 8.77286 35.6652 8.73717 35.6092 8.71924C35.5445 8.71558 35.4803 8.73246 35.4257 8.76748C35.3712 8.8025 35.3291 8.85387 35.3055 8.91424C35.2968 8.97387 35.3121 9.03448 35.3479 9.08293C35.3837 9.13137 35.4372 9.16374 35.4967 9.17299C35.561 9.1839 35.6271 9.17084 35.6824 9.13628C35.7376 9.10172 35.7783 9.04806 35.7967 8.98549Z" fill="white"/>
|
||||
<path d="M35.4969 10.9005C35.5361 10.8958 35.5733 10.8808 35.6049 10.8571C35.6365 10.8334 35.6613 10.8018 35.6768 10.7655C35.6768 10.6943 35.5344 10.6155 35.4856 10.6193C35.4545 10.6298 35.4269 10.6487 35.4057 10.6738C35.3846 10.6989 35.3707 10.7293 35.3656 10.7618C35.3727 10.7947 35.3886 10.8251 35.4118 10.8495C35.4349 10.874 35.4644 10.8916 35.4969 10.9005Z" fill="white"/>
|
||||
<path d="M34.203 6.64839C34.1721 6.66074 34.1439 6.67912 34.1201 6.70246C34.0964 6.7258 34.0775 6.75363 34.0646 6.78434C34.0516 6.81505 34.045 6.84802 34.0449 6.88133C34.0449 6.91464 34.0514 6.94763 34.0643 6.97838C34.0786 7.00959 34.099 7.03764 34.1243 7.06088C34.1647 7.09225 34.2115 7.11424 34.2615 7.12526C34.3114 7.13629 34.3632 7.13607 34.413 7.12463C34.4529 7.10358 34.4871 7.07311 34.5126 7.03587C34.5381 6.99862 34.5541 6.95572 34.5593 6.91088C34.5526 6.83497 34.5169 6.76454 34.4596 6.71426C34.4024 6.66397 34.3279 6.6377 34.2518 6.64088L34.203 6.64839Z" fill="white"/>
|
||||
<path d="M34.2104 10.3391C34.3942 10.3391 34.3642 10.1704 34.4204 10.1029C34.4901 10.0246 34.526 9.92197 34.5204 9.81733C34.5148 9.71269 34.4681 9.6145 34.3904 9.54413H34.3717C34.3038 9.51494 34.2287 9.50649 34.156 9.51983C34.0832 9.53317 34.0161 9.56772 33.9629 9.61913C33.9089 9.6639 33.8738 9.72746 33.8648 9.79704C33.8558 9.86662 33.8734 9.93704 33.9142 9.99413C33.9479 10.0879 34.0304 10.3429 34.2104 10.3391Z" fill="white"/>
|
||||
<path d="M33.7868 8.47136C33.858 8.47136 33.873 8.22011 33.8393 8.07011C33.8513 8.09322 33.8679 8.11364 33.888 8.13011C33.888 8.13011 34.0043 8.09636 34.0043 8.07011C34.0043 8.04386 34.0043 7.92011 33.9443 7.89011C33.8843 7.86011 33.8093 7.96511 33.8093 7.98761L33.7868 7.95761C33.7005 7.89011 33.5055 8.03636 33.4755 8.22386C33.4455 8.41136 33.693 8.49011 33.7868 8.47136Z" fill="white"/>
|
||||
<path d="M40.1765 11.5204C40.1993 11.5047 40.2181 11.4841 40.2318 11.4601C40.2454 11.436 40.2534 11.4093 40.2553 11.3817C40.2553 11.3479 40.139 11.2542 40.1015 11.2692C40.064 11.2842 40.049 11.4154 40.0603 11.4642C40.0701 11.4856 40.0871 11.503 40.1083 11.5133C40.1295 11.5235 40.1536 11.5261 40.1765 11.5204Z" fill="white"/>
|
||||
<path d="M35.1706 6.71345C35.1196 6.67321 35.0549 6.65459 34.9904 6.66161C34.9258 6.66862 34.8666 6.70071 34.8255 6.75095C34.7863 6.80387 34.7695 6.87007 34.7786 6.9353C34.7877 7.00052 34.8221 7.05956 34.8743 7.0997C34.9321 7.13921 35.0026 7.15572 35.072 7.14601C35.1413 7.1363 35.2045 7.10107 35.2493 7.0472C35.2664 7.02021 35.2779 6.99009 35.2832 6.95859C35.2885 6.9271 35.2874 6.89486 35.2801 6.86378C35.2727 6.83269 35.2593 6.80339 35.2405 6.77757C35.2217 6.75176 35.1979 6.72996 35.1706 6.71345Z" fill="white"/>
|
||||
<path d="M38.3166 8.95922C38.3501 8.96285 38.384 8.9598 38.4163 8.95024C38.4487 8.94068 38.4788 8.92481 38.5049 8.90353C38.5311 8.88226 38.5528 8.85601 38.5687 8.8263C38.5847 8.7966 38.5946 8.76402 38.5978 8.73047C38.6032 8.66317 38.5824 8.59639 38.5398 8.54402C38.4972 8.49164 38.436 8.45769 38.3691 8.44922C38.3042 8.45185 38.2423 8.47681 38.1938 8.51987C38.1453 8.56292 38.1132 8.62143 38.1028 8.68547C38.0986 8.71752 38.1009 8.75008 38.1094 8.78126C38.1179 8.81244 38.1325 8.84161 38.1524 8.86709C38.1723 8.89256 38.197 8.91383 38.2252 8.92965C38.2534 8.94546 38.2845 8.95551 38.3166 8.95922Z" fill="white"/>
|
||||
<path d="M40.143 13.3201C40.1734 13.3106 40.2015 13.2948 40.2254 13.2738C40.2494 13.2528 40.2687 13.2271 40.2821 13.1982C40.2955 13.1693 40.3027 13.138 40.3034 13.1061C40.304 13.0743 40.2979 13.0426 40.2856 13.0133C40.2733 12.9839 40.2549 12.9574 40.2318 12.9356C40.2087 12.9137 40.1812 12.8969 40.1512 12.8862C40.1212 12.8756 40.0892 12.8713 40.0575 12.8737C40.0257 12.8761 39.9948 12.8851 39.9667 12.9001C39.941 12.9058 39.9167 12.9166 39.8953 12.9319C39.8738 12.9471 39.8555 12.9664 39.8415 12.9887C39.8276 13.0111 39.8182 13.0359 39.814 13.0619C39.8097 13.0879 39.8106 13.1145 39.8167 13.1401C39.8131 13.1536 39.8131 13.1678 39.8167 13.1814C39.8372 13.2405 39.8803 13.2891 39.9365 13.3165C39.9927 13.3439 40.0576 13.3479 40.1167 13.3276L40.143 13.3201Z" fill="white"/>
|
||||
<path d="M38.0728 7.77711C38.046 7.76415 38.0156 7.76043 37.9865 7.76653C37.9573 7.77264 37.931 7.78822 37.9116 7.81086C37.8816 7.84086 37.8516 7.97586 37.9116 8.00961C37.9716 8.04336 38.0803 7.97961 38.1028 7.94211C38.111 7.91417 38.1125 7.88471 38.1073 7.85607C38.1021 7.82743 38.0903 7.8004 38.0728 7.77711Z" fill="white"/>
|
||||
<path d="M37.9044 10.1853C37.9489 10.0632 37.9585 9.93111 37.932 9.8039C37.9055 9.67668 37.844 9.5594 37.7544 9.46527C37.6483 9.40871 37.5245 9.39508 37.4087 9.42718C37.2928 9.45929 37.1937 9.53467 37.1319 9.63777C37.0772 9.74325 37.0607 9.86443 37.0854 9.98066C37.11 10.0969 37.1741 10.201 37.2669 10.2753C37.3645 10.3445 37.485 10.3738 37.6035 10.357C37.7221 10.3403 37.8297 10.2788 37.9044 10.1853Z" fill="white"/>
|
||||
<path d="M35.9728 7.96796C36.0148 7.92401 36.0382 7.86559 36.0382 7.80484C36.0382 7.74408 36.0148 7.68566 35.9728 7.64171C35.911 7.58994 35.8321 7.56319 35.7516 7.56672C35.6091 7.56672 35.5678 7.69421 35.5791 7.96421C35.7066 8.02421 35.8228 8.12546 35.9728 7.96796Z" fill="white"/>
|
||||
<path d="M37.8631 12.4349C37.9044 12.4349 38.0469 12.4349 38.0469 12.3562C38.0438 12.325 38.0302 12.2959 38.0084 12.2734C37.9866 12.2509 37.9579 12.2365 37.9269 12.2324C37.8931 12.2324 37.7694 12.2324 37.7656 12.2924C37.7671 12.3229 37.777 12.3523 37.7943 12.3774C37.8115 12.4026 37.8353 12.4225 37.8631 12.4349Z" fill="white"/>
|
||||
<path d="M31.5069 7.02359C31.4688 6.9965 31.4217 6.98527 31.3756 6.99227C31.3294 6.99926 31.2877 7.02394 31.2594 7.06108C31.2484 7.0726 31.2406 7.08684 31.2369 7.10233C31.2183 7.14094 31.2086 7.18324 31.2086 7.22609C31.2086 7.26894 31.2183 7.31124 31.2369 7.34984C31.2863 7.38289 31.3443 7.40053 31.4038 7.40053C31.4632 7.40053 31.5213 7.38289 31.5706 7.34984C31.5879 7.32522 31.6001 7.29744 31.6066 7.2681C31.6131 7.23875 31.6138 7.20841 31.6086 7.1788C31.6034 7.1492 31.5924 7.12092 31.5762 7.09557C31.56 7.07023 31.539 7.04831 31.5144 7.03108L31.5069 7.02359Z" fill="white"/>
|
||||
<path d="M31.0118 4.27446C30.949 4.22744 30.871 4.20526 30.7928 4.21218C30.7146 4.2191 30.6417 4.25463 30.5881 4.31196C30.5404 4.38601 30.5189 4.47391 30.5271 4.5616C30.5352 4.6493 30.5726 4.73173 30.6331 4.79571C30.7221 4.84796 30.8268 4.86684 30.9285 4.84897C31.0302 4.83111 31.1222 4.77767 31.1881 4.69821C31.2443 4.58946 31.1618 4.38696 31.0118 4.27446Z" fill="white"/>
|
||||
<path d="M31.2516 8.06582C31.3196 8.08076 31.3899 8.08076 31.4579 8.06582C31.5629 7.91582 31.5554 7.76957 31.4579 7.74332C31.4102 7.73052 31.3605 7.72724 31.3116 7.73367C31.2627 7.74011 31.2156 7.75613 31.1729 7.78082C31.0904 7.82582 31.1429 8.02457 31.2516 8.06582Z" fill="white"/>
|
||||
<path d="M40.4429 10.8532C40.4654 10.7032 40.2666 10.6469 40.1841 10.6019C40.1016 10.5569 39.9816 10.6432 39.9591 10.7707C39.9366 10.8982 39.9929 10.9994 40.1204 10.9882C40.2479 10.9769 40.4204 11.0032 40.4429 10.8532Z" fill="white"/>
|
||||
<path d="M31.0829 9.65894C31.1729 9.45269 30.8841 9.28394 30.7866 9.33269C30.6891 9.38144 30.6179 9.65519 30.7191 9.73394C30.8204 9.81269 30.9929 9.86894 31.0829 9.65894Z" fill="white"/>
|
||||
<path d="M29.5904 7.41075C29.6729 7.29825 29.5904 7.03575 29.4329 6.93075C29.371 6.88071 29.2919 6.857 29.2126 6.86471C29.1333 6.87243 29.0603 6.91095 29.0092 6.972C28.9528 7.05225 28.9278 7.15034 28.9389 7.24776C28.95 7.34517 28.9963 7.43516 29.0692 7.50075C29.1535 7.54642 29.2508 7.56238 29.3454 7.54605C29.4399 7.52973 29.5262 7.48207 29.5904 7.41075Z" fill="white"/>
|
||||
<path d="M29.5191 10.5607C29.546 10.569 29.5746 10.5702 29.6022 10.5643C29.6298 10.5584 29.6554 10.5455 29.6766 10.5269C29.6973 10.498 29.7057 10.4621 29.7001 10.427C29.6945 10.3919 29.6752 10.3604 29.6466 10.3394C29.5528 10.2869 29.4966 10.3844 29.4741 10.4219C29.467 10.4469 29.4675 10.4734 29.4755 10.4981C29.4835 10.5228 29.4987 10.5446 29.5191 10.5607Z" fill="white"/>
|
||||
<path d="M31.4544 6.09015C31.5069 6.04515 31.4544 5.94015 31.4131 5.90265C31.3923 5.88968 31.3683 5.88281 31.3438 5.88281C31.3192 5.88281 31.2952 5.88968 31.2744 5.90265C31.2406 5.93265 31.2744 6.02265 31.2744 6.06765C31.2744 6.11265 31.4019 6.15015 31.4544 6.09015Z" fill="white"/>
|
||||
<path d="M31.9416 6.09798C32.0093 6.14653 32.0935 6.16629 32.1757 6.15294C32.2579 6.13959 32.3315 6.09421 32.3804 6.02673C32.3804 6.02673 32.3991 5.99298 32.4104 5.97423C32.5116 5.79798 32.4929 5.59922 32.3579 5.54297C32.2586 5.49869 32.1476 5.48829 32.0419 5.51336C31.9362 5.53844 31.8416 5.5976 31.7729 5.68173C31.7523 5.76003 31.7576 5.84288 31.788 5.91791C31.8184 5.99294 31.8723 6.05611 31.9416 6.09798Z" fill="white"/>
|
||||
<path d="M33.2616 3.29312C33.2881 3.31881 33.3202 3.33796 33.3553 3.34903C33.3905 3.3601 33.4277 3.36278 33.4641 3.35687C33.5053 3.35355 33.5451 3.34071 33.5804 3.31937C33.2054 3.20687 32.8304 3.10938 32.4329 3.01562C32.3817 3.09858 32.3648 3.19822 32.3858 3.29342C32.4068 3.38863 32.464 3.47192 32.5454 3.52563C32.6076 3.56868 32.6778 3.59882 32.7519 3.61428C32.826 3.62974 32.9024 3.63019 32.9766 3.61562C32.9897 3.63191 33.0085 3.64263 33.0291 3.64562C33.0704 3.64562 33.2016 3.64562 33.2129 3.57062C33.2105 3.54172 33.1971 3.51486 33.1754 3.49562H33.2129C33.2449 3.43291 33.2616 3.36352 33.2616 3.29312Z" fill="white"/>
|
||||
<path d="M34.0868 5.64669C34.1017 5.62755 34.1131 5.60598 34.1206 5.58294C34.1371 5.63269 34.1654 5.67771 34.2031 5.7142C34.1766 5.7679 34.1625 5.82684 34.1618 5.88669C34.1525 5.92957 34.1519 5.97386 34.1599 6.017C34.1679 6.06013 34.1844 6.10123 34.2085 6.13789C34.2326 6.17455 34.2638 6.20604 34.3002 6.23052C34.3366 6.255 34.3775 6.27197 34.4206 6.28044C34.4417 6.28432 34.4632 6.28432 34.4843 6.28044C34.5721 6.28221 34.6576 6.25317 34.7261 6.19835C34.7947 6.14353 34.8418 6.06642 34.8593 5.98044L34.9081 6.01044C34.9317 6.04509 34.962 6.07462 34.9973 6.09725C35.0325 6.11989 35.072 6.13517 35.1134 6.14217C35.1547 6.14917 35.197 6.14776 35.2378 6.13801C35.2785 6.12826 35.3169 6.11039 35.3506 6.08545C35.3997 6.05001 35.4386 6.00211 35.4631 5.94669C35.4774 5.97611 35.5012 5.99988 35.5306 6.0142C35.5936 6.03195 35.6608 6.02748 35.7209 6.00153C35.781 5.97558 35.8303 5.92973 35.8606 5.8717C35.9058 5.80916 35.9248 5.73147 35.9136 5.65514C35.9024 5.5788 35.8618 5.50985 35.8006 5.46295C35.7443 5.43193 35.6781 5.42438 35.6163 5.44194C35.5545 5.45949 35.5021 5.50074 35.4706 5.5567C35.4156 5.49442 35.346 5.44674 35.2681 5.41794C35.1539 5.38892 35.0548 5.31796 34.9906 5.21919C34.9388 5.14996 34.8704 5.0948 34.7918 5.05878C34.7132 5.02275 34.6268 5.00699 34.5406 5.01295C34.4536 5.01612 34.3696 5.04484 34.2989 5.09553C34.2282 5.14622 34.174 5.21663 34.1431 5.29795V5.34294C34.1199 5.23917 34.0583 5.14805 33.9706 5.08795C33.8393 5.00545 33.6668 5.08795 33.5468 5.2642C33.5 5.3294 33.4774 5.40889 33.4829 5.48897C33.4883 5.56906 33.5216 5.64473 33.5768 5.70295C33.6574 5.74665 33.7495 5.76468 33.8406 5.75463C33.9318 5.74458 34.0177 5.70691 34.0868 5.64669Z" fill="white"/>
|
||||
<path d="M35.2829 7.84154C35.3917 7.84154 35.4929 7.79279 35.4817 7.68029C35.4704 7.56779 35.4142 7.36904 35.3242 7.36154C35.2342 7.35404 35.1254 7.54904 35.0917 7.63154C35.0579 7.71404 35.1704 7.83779 35.2829 7.84154Z" fill="white"/>
|
||||
<path d="M31.6981 4.74461C31.6981 4.69586 31.6306 4.63961 31.5856 4.62086C31.5706 4.61507 31.5546 4.61255 31.5385 4.61347C31.5225 4.61438 31.5069 4.61872 31.4927 4.62617C31.4785 4.63363 31.466 4.64404 31.4562 4.65671C31.4463 4.66937 31.4393 4.684 31.4355 4.6996C31.4355 4.77835 31.5368 4.81211 31.5818 4.82336C31.6066 4.82258 31.6308 4.81477 31.6513 4.80083C31.6719 4.78689 31.6881 4.7674 31.6981 4.74461Z" fill="white"/>
|
||||
<path d="M32.2043 4.67957C32.3036 4.75711 32.4272 4.79668 32.553 4.79118C32.6788 4.78568 32.7985 4.73547 32.8906 4.64957C32.9465 4.53749 32.9628 4.40979 32.9369 4.28724C32.9111 4.16469 32.8445 4.0545 32.7481 3.97457C32.6402 3.92504 32.5185 3.91442 32.4036 3.9445C32.2887 3.97458 32.1878 4.04351 32.1181 4.13957C32.0597 4.22323 32.0361 4.32626 32.0522 4.42699C32.0683 4.52771 32.1228 4.61827 32.2043 4.67957Z" fill="white"/>
|
||||
<path d="M31.9228 3.36742C31.9451 3.32751 31.9615 3.28455 31.9715 3.23992C32.1515 3.29992 32.249 3.19117 32.3465 3.04492L32.3203 2.98867C31.9453 2.90242 31.5965 2.82742 31.229 2.76367C31.193 2.78543 31.1623 2.81488 31.139 2.84992C31.1071 2.89311 31.0841 2.94221 31.0713 2.99437C31.0586 3.04654 31.0563 3.10072 31.0647 3.15376C31.0731 3.2068 31.0919 3.25765 31.1201 3.30334C31.1483 3.34903 31.1854 3.38867 31.229 3.41992C31.248 3.43591 31.2696 3.44858 31.2928 3.45742C31.338 3.49776 31.3915 3.52774 31.4495 3.54525C31.5076 3.56277 31.5687 3.5674 31.6287 3.55883C31.6887 3.55026 31.7461 3.52869 31.7969 3.49562C31.8477 3.46256 31.8906 3.41881 31.9228 3.36742Z" fill="white"/>
|
||||
<path d="M46.7319 27.9007C46.7643 27.9118 46.7987 27.9164 46.833 27.9141C46.8672 27.9118 46.9007 27.9027 46.9314 27.8873C46.9621 27.872 46.9895 27.8506 47.0119 27.8246C47.0343 27.7986 47.0512 27.7683 47.0618 27.7357C47.0797 27.6818 47.0798 27.6236 47.0623 27.5697C47.0448 27.5157 47.0104 27.4688 46.9643 27.4357C46.9061 27.4065 46.8391 27.4003 46.7765 27.4184C46.7139 27.4364 46.6605 27.4774 46.6268 27.5332C46.5948 27.5964 46.5878 27.6694 46.6073 27.7375C46.6268 27.8056 46.6713 27.8639 46.7319 27.9007Z" fill="white"/>
|
||||
<path d="M28.634 7.73274C28.6126 7.70059 28.5795 7.67797 28.5418 7.66959C28.5041 7.6612 28.4646 7.6677 28.4315 7.68773C28.413 7.69869 28.3975 7.71417 28.3865 7.73274C28.3378 7.79649 28.2628 7.98774 28.3115 8.03649C28.3603 8.08524 28.5515 8.03649 28.6303 8.00649C28.709 7.97649 28.6978 7.83774 28.634 7.73274Z" fill="white"/>
|
||||
<path d="M46.7694 27.2015C46.844 27.1846 46.9087 27.1387 46.9495 27.074C46.9903 27.0093 47.0037 26.9311 46.9869 26.8566C46.9869 26.8566 46.9869 26.8378 46.9869 26.8265C46.9496 26.7715 46.8922 26.7333 46.827 26.72C46.7619 26.7067 46.6941 26.7194 46.6382 26.7553C46.61 26.7742 46.5858 26.7984 46.5669 26.8265C46.5403 26.8701 46.5244 26.9192 46.5205 26.9701C46.5166 27.0209 46.5248 27.072 46.5444 27.119C46.573 27.1492 46.6082 27.1723 46.6473 27.1866C46.6863 27.2009 46.7281 27.206 46.7694 27.2015Z" fill="white"/>
|
||||
<path d="M46.9115 29.2759C46.9603 29.3166 47.0232 29.3363 47.0865 29.3307C47.1497 29.3251 47.2082 29.2946 47.249 29.2459C47.2645 29.228 47.2772 29.2077 47.2865 29.186C47.3106 29.1009 47.3133 29.0111 47.2943 28.9248C47.2754 28.8384 47.2353 28.7581 47.1778 28.6909C47.0975 28.653 47.0056 28.6478 46.9216 28.6765C46.8376 28.7052 46.7681 28.7656 46.7278 28.8447C46.7262 28.8521 46.7262 28.8598 46.7278 28.8672C46.6265 29.0247 46.6978 29.1747 46.9115 29.2759Z" fill="white"/>
|
||||
<path d="M44.9353 21.6784C44.9369 21.663 44.9354 21.6475 44.9309 21.6327C44.9264 21.6179 44.919 21.6041 44.9091 21.5922C44.8828 21.5585 44.8378 21.5922 44.8191 21.6222C44.8135 21.6332 44.8105 21.6454 44.8105 21.6578C44.8105 21.6702 44.8135 21.6824 44.8191 21.6935C44.8678 21.6972 44.9166 21.7084 44.9353 21.6784Z" fill="white"/>
|
||||
<path d="M45.6217 26.5904C45.6742 26.4929 45.5017 26.3241 45.3104 26.3204C45.1192 26.3166 45.0854 26.5679 45.1154 26.6579C45.1454 26.7479 45.5729 26.6841 45.6217 26.5904Z" fill="white"/>
|
||||
<path d="M47.3655 33.2058C47.5005 33.1458 47.463 33.1833 47.5868 33.2695C47.6098 33.2929 47.6372 33.3114 47.6675 33.3241C47.6977 33.3368 47.7302 33.3433 47.763 33.3433C47.7958 33.3433 47.8283 33.3368 47.8585 33.3241C47.8888 33.3114 47.9162 33.2929 47.9393 33.2695C47.9749 33.2349 47.9997 33.1906 48.0105 33.142C48.0327 33.0218 48.0103 32.8975 47.9475 32.7926C47.8847 32.6877 47.7858 32.6093 47.6693 32.572C47.5255 32.5456 47.3771 32.5746 47.254 32.6532C47.1308 32.7319 47.042 32.8543 47.0055 32.9958C46.9755 33.202 47.2343 33.2695 47.3655 33.2058Z" fill="white"/>
|
||||
<path d="M45.1154 19.4971C45.0609 19.4149 44.9787 19.3549 44.8837 19.328C44.7888 19.3012 44.6874 19.3093 44.5979 19.3508C44.5536 19.374 44.5142 19.4056 44.4821 19.444C44.45 19.4823 44.4258 19.5266 44.4108 19.5743C44.3959 19.622 44.3904 19.6722 44.3949 19.722C44.3993 19.7718 44.4135 19.8203 44.4366 19.8646C44.4598 19.9089 44.4914 19.9482 44.5298 19.9803C44.5681 20.0124 44.6124 20.0366 44.6601 20.0516C44.7078 20.0666 44.758 20.072 44.8078 20.0676C44.8576 20.0632 44.9061 20.049 44.9504 20.0258C45.0413 19.9765 45.1093 19.8937 45.1401 19.7949C45.1709 19.6962 45.1621 19.5894 45.1154 19.4971Z" fill="white"/>
|
||||
<path d="M40.2743 9.43479C40.3156 9.43479 40.4243 9.34104 40.3868 9.27729C40.3638 9.25155 40.3341 9.23268 40.301 9.22275C40.2679 9.21283 40.2327 9.21223 40.1993 9.22104C40.1773 9.23796 40.1602 9.26041 40.1497 9.28609C40.1391 9.31177 40.1356 9.33979 40.1393 9.36729C40.1533 9.39005 40.1733 9.40845 40.1972 9.42038C40.221 9.43231 40.2478 9.43731 40.2743 9.43479Z" fill="white"/>
|
||||
<path d="M44.5529 27.4693C44.4665 27.4249 44.3662 27.4156 44.2732 27.4436C44.1802 27.4716 44.1016 27.5346 44.0541 27.6193C44.0025 27.7381 43.9937 27.871 44.0293 27.9955C44.0649 28.12 44.1426 28.2283 44.2491 28.3018C44.347 28.3385 44.4552 28.3373 44.5523 28.2984C44.6494 28.2596 44.7285 28.1859 44.7741 28.0918C44.8284 27.9857 44.8388 27.8626 44.803 27.7489C44.7672 27.6352 44.6881 27.5402 44.5829 27.4843C44.5719 27.4817 44.5616 27.4765 44.5529 27.4693Z" fill="white"/>
|
||||
<path d="M43.2329 28.6502C43.2157 28.6223 43.1921 28.5989 43.1641 28.582C43.1361 28.565 43.1044 28.555 43.0717 28.5527C43.0417 28.5666 43.0155 28.5875 42.9953 28.6136C42.9751 28.6397 42.9614 28.6703 42.9554 28.7027C42.9554 28.744 43.0417 28.864 43.1129 28.864C43.1842 28.864 43.2442 28.6952 43.2329 28.6502Z" fill="white"/>
|
||||
<path d="M27.2955 6.63813C27.2166 6.6265 27.1362 6.64526 27.0705 6.69063C26.9918 6.76188 27.0705 6.95689 27.1643 6.98314C27.228 6.99057 27.2925 6.98153 27.3518 6.95688C27.4343 6.81063 27.4005 6.66063 27.2955 6.63813Z" fill="white"/>
|
||||
<path d="M47.9393 29.8306C47.8305 29.7931 47.7818 29.8644 47.7443 29.9431C47.7319 29.9611 47.7233 29.9815 47.7191 30.003C47.7148 30.0244 47.715 30.0465 47.7195 30.0679C47.7241 30.0893 47.733 30.1096 47.7456 30.1275C47.7582 30.1453 47.7744 30.1604 47.793 30.1718C47.8097 30.1838 47.829 30.1915 47.8493 30.1943C47.9271 30.1947 48.0044 30.182 48.078 30.1569C48.1031 30.0976 48.1038 30.0309 48.0799 29.9712C48.056 29.9115 48.0096 29.8637 47.9506 29.8381L47.9393 29.8306Z" fill="white"/>
|
||||
<path d="M41.0132 17.0017C41.0315 16.9986 41.0491 16.9918 41.0648 16.9817C41.0804 16.9716 41.0939 16.9585 41.1044 16.9431C41.1149 16.9277 41.1222 16.9103 41.1259 16.8921C41.1295 16.8738 41.1295 16.8549 41.1257 16.8367C41.1208 16.814 41.1119 16.7924 41.0994 16.7729C41.0582 16.7017 40.9082 16.5629 40.8444 16.5892C40.7807 16.6154 40.7506 16.8142 40.7581 16.8967C40.7656 16.9792 40.8819 17.0429 41.0132 17.0017Z" fill="white"/>
|
||||
<path d="M44.0203 30.9794C44.1473 31.0067 44.2794 30.9976 44.4015 30.9532C44.5236 30.9087 44.6306 30.8307 44.7103 30.7281C44.7462 30.6182 44.7408 30.499 44.6953 30.3928C44.6497 30.2865 44.5671 30.2005 44.4628 30.1506C44.3499 30.1143 44.228 30.1167 44.1166 30.1574C44.0052 30.1982 43.9106 30.275 43.8478 30.3756C43.7968 30.4798 43.7862 30.5991 43.818 30.7107C43.8499 30.8222 43.9219 30.9179 44.0203 30.9794Z" fill="white"/>
|
||||
<path d="M42.1307 14.5082C42.1534 14.4925 42.1722 14.4718 42.1859 14.4478C42.1995 14.4238 42.2076 14.397 42.2094 14.3694C42.203 14.3346 42.1835 14.3036 42.1549 14.2826C42.1263 14.2617 42.0908 14.2525 42.0556 14.2569C41.9581 14.2794 42.0032 14.4032 42.0107 14.4519C42.0248 14.4701 42.0431 14.4847 42.0639 14.4944C42.0848 14.5042 42.1076 14.5089 42.1307 14.5082Z" fill="white"/>
|
||||
<path d="M40.698 14.085C40.7387 14.0815 40.7782 14.0694 40.8138 14.0493C40.8494 14.0292 40.8802 14.0018 40.9043 13.9688C40.9905 13.7963 40.9042 13.6837 40.713 13.5938C40.5817 13.6762 40.428 13.725 40.4618 13.9087C40.4701 13.9633 40.4996 14.0123 40.5438 14.0453C40.588 14.0783 40.6434 14.0925 40.698 14.085Z" fill="white"/>
|
||||
<path d="M40.769 8.51547C40.7657 8.43365 40.7425 8.35387 40.7015 8.28297C40.7579 8.28839 40.8143 8.27197 40.8589 8.23709C40.9036 8.2022 40.9331 8.15151 40.9415 8.09547C40.949 8.02851 40.9301 7.96127 40.8888 7.90805C40.8475 7.85483 40.787 7.81982 40.7203 7.81047C40.6916 7.80665 40.6626 7.80665 40.634 7.81047C40.4653 7.83672 40.4053 7.73547 40.3003 7.63797C40.3345 7.59773 40.3658 7.55512 40.394 7.51047C40.4218 7.51005 40.449 7.50228 40.4728 7.48797C40.4727 7.51464 40.4805 7.54074 40.4953 7.56297C40.5245 7.61302 40.5692 7.65219 40.6227 7.67452C40.6761 7.69685 40.7354 7.70114 40.7915 7.68672C40.9078 7.64172 40.9078 7.43922 40.8853 7.33422C40.8528 7.27677 40.8081 7.22718 40.7543 7.18894C40.7005 7.15071 40.6389 7.12477 40.574 7.11297C40.574 7.04922 40.5965 7.05297 40.6828 6.96672L40.7128 6.89547C40.5515 6.77547 40.3865 6.65922 40.2215 6.54297C40.1274 6.60022 40.0478 6.67852 39.989 6.77172C39.9669 6.81596 39.9553 6.86475 39.9553 6.91422C39.8315 6.91422 39.7603 6.99672 39.7303 7.16172C39.7104 7.20701 39.6997 7.25577 39.6988 7.30521C39.6978 7.35465 39.7067 7.40378 39.7248 7.44979C39.7429 7.49579 39.7699 7.53777 39.8044 7.57328C39.8388 7.60879 39.8799 7.63715 39.9253 7.65672H39.9628C39.8801 7.69367 39.7932 7.72013 39.704 7.73547C39.6442 7.72998 39.5846 7.74748 39.5372 7.7844C39.4898 7.82131 39.4583 7.87489 39.449 7.93422C39.4248 7.99917 39.4212 8.07001 39.4386 8.13711C39.456 8.2042 39.4937 8.2643 39.5465 8.30922C39.9553 8.61672 40.1053 8.60922 40.4653 8.25672L40.499 8.23422C40.4545 8.28394 40.4189 8.34104 40.394 8.40297C40.3844 8.42164 40.3786 8.44203 40.377 8.46296C40.3754 8.48389 40.378 8.50493 40.3846 8.52485C40.3913 8.54476 40.4018 8.56315 40.4157 8.57892C40.4295 8.5947 40.4464 8.60756 40.4653 8.61672C40.4802 8.61931 40.4954 8.61931 40.5103 8.61672C40.5331 8.62654 40.5577 8.63171 40.5826 8.63193C40.6075 8.63214 40.6322 8.6274 40.6552 8.61797C40.6783 8.60855 40.6992 8.59463 40.7168 8.57703C40.7344 8.55943 40.7483 8.53851 40.7578 8.51547H40.769Z" fill="white"/>
|
||||
<path d="M42.348 18.525C42.3892 18.525 42.4905 18.42 42.468 18.3638C42.4455 18.3075 42.3105 18.2963 42.273 18.315C42.2455 18.3283 42.2231 18.35 42.2089 18.377C42.1947 18.404 42.1896 18.4349 42.1942 18.465C42.198 18.525 42.3067 18.525 42.348 18.525Z" fill="white"/>
|
||||
<path d="M40.5404 10.9019C40.5569 10.8945 40.57 10.8811 40.5769 10.8643C40.5839 10.8476 40.5842 10.8289 40.5779 10.8119C40.5668 10.7974 40.5512 10.7869 40.5336 10.7821C40.5159 10.7774 40.4972 10.7786 40.4804 10.7857C40.4579 10.7857 40.4504 10.8569 40.4804 10.8719C40.5104 10.8869 40.5066 10.9357 40.5404 10.9019Z" fill="white"/>
|
||||
<path d="M41.2154 11.1044C41.2734 11.0621 41.3189 11.0049 41.3473 10.939C41.3756 10.873 41.3858 10.8006 41.3766 10.7294C41.3436 10.673 41.2904 10.6313 41.2278 10.6125C41.1652 10.5937 41.0978 10.5993 41.0391 10.6282C40.9828 10.6564 40.9398 10.7056 40.9195 10.7653C40.8991 10.8249 40.903 10.8902 40.9304 10.9469C41.0091 11.0932 41.1179 11.1569 41.2154 11.1044Z" fill="white"/>
|
||||
<path d="M43.7316 16.2752C43.8065 16.212 43.8572 16.1247 43.875 16.0283C43.8927 15.9319 43.8765 15.8323 43.8291 15.7465C43.7466 15.574 43.5778 15.5365 43.3603 15.6452C43.2985 15.6833 43.2507 15.7405 43.2243 15.8082C43.198 15.8759 43.1944 15.9503 43.2141 16.0202C43.2749 16.0998 43.3532 16.1642 43.443 16.2084C43.5327 16.2527 43.6315 16.2755 43.7316 16.2752Z" fill="white"/>
|
||||
<path d="M43.5516 24.1502C43.7691 24.2102 43.8966 23.9027 43.8328 23.809C43.7691 23.7152 43.4916 23.689 43.4241 23.809C43.3566 23.929 43.3228 24.094 43.5516 24.1502Z" fill="white"/>
|
||||
<path d="M42.4906 22.8857C42.506 22.8949 42.5231 22.9008 42.5408 22.9031C42.5586 22.9054 42.5766 22.9041 42.5938 22.8992C42.611 22.8942 42.627 22.8859 42.6409 22.8745C42.6547 22.8632 42.6661 22.8491 42.6743 22.8332C42.7081 22.732 42.6068 22.6907 42.5618 22.672C42.5356 22.671 42.5095 22.6771 42.4864 22.6896C42.4633 22.7021 42.444 22.7207 42.4306 22.7432C42.4271 22.7702 42.4308 22.7975 42.4414 22.8226C42.4519 22.8476 42.4689 22.8694 42.4906 22.8857Z" fill="white"/>
|
||||
<path d="M43.2817 17.1741C43.2292 17.1028 43.0679 16.9528 42.9779 16.9903C42.8879 17.0278 42.9254 17.2603 42.9516 17.3428C42.9602 17.365 42.9738 17.385 42.9914 17.4011C43.0089 17.4172 43.03 17.429 43.0529 17.4355C43.0758 17.442 43.1 17.4432 43.1234 17.4388C43.1468 17.4344 43.1689 17.4247 43.1879 17.4103C43.2967 17.3466 43.3229 17.2678 43.2817 17.1741Z" fill="white"/>
|
||||
<path d="M42.9479 14.6849C42.9854 14.5349 42.8279 14.3661 42.6066 14.3099C42.5419 14.3037 42.477 14.32 42.4229 14.3563C42.3689 14.3925 42.3291 14.4464 42.3104 14.5086C42.2938 14.5885 42.3058 14.6716 42.3441 14.7435C42.3825 14.8154 42.4448 14.8717 42.5203 14.9024C42.6054 14.9158 42.6926 14.902 42.7694 14.8629C42.8461 14.8239 42.9086 14.7616 42.9479 14.6849Z" fill="white"/>
|
||||
<path d="M42.8768 26.1191C42.9147 26.1261 42.9537 26.1236 42.9904 26.1119C43.027 26.1001 43.0602 26.0794 43.0868 26.0516C43.0994 26.036 43.1088 26.018 43.1143 25.9987C43.1198 25.9793 43.1214 25.9591 43.119 25.9392C43.1165 25.9193 43.1101 25.9 43.1 25.8826C43.09 25.8652 43.0766 25.85 43.0606 25.8379C43.0483 25.827 43.0344 25.8181 43.0193 25.8116C42.9556 25.7854 42.7756 25.7554 42.7193 25.8904C42.6631 26.0254 42.8206 26.1004 42.8768 26.1191Z" fill="white"/>
|
||||
<path d="M44.4817 15.7752C44.4555 15.7227 44.2942 15.6214 44.2342 15.6552C44.2056 15.6918 44.1857 15.7345 44.176 15.78C44.1662 15.8254 44.1669 15.8725 44.178 15.9177C44.2042 15.9402 44.3767 16.0452 44.4255 16.0039C44.452 15.9728 44.4709 15.9359 44.4807 15.8962C44.4905 15.8565 44.4908 15.8151 44.4817 15.7752Z" fill="white"/>
|
||||
<path d="M46.2219 24.1956C46.243 24.1543 46.247 24.1063 46.2329 24.062C46.2189 24.0178 46.188 23.9809 46.1469 23.9593H46.1056C46.0644 23.951 46.0219 23.9511 45.9807 23.9594C45.9395 23.9678 45.9004 23.9843 45.8657 24.0081C45.8376 24.062 45.8283 24.1236 45.8392 24.1834C45.8501 24.2431 45.8805 24.2975 45.9256 24.3381C45.9544 24.3493 45.9851 24.3544 46.0159 24.3532C46.0467 24.352 46.0769 24.3445 46.1047 24.3311C46.1325 24.3178 46.1572 24.2988 46.1774 24.2755C46.1975 24.2522 46.2127 24.225 46.2219 24.1956Z" fill="white"/>
|
||||
<path d="M46.0193 22.1294C46.0592 22.0611 46.0705 21.9799 46.0508 21.9034C46.0312 21.8269 45.9821 21.7612 45.9143 21.7206C45.838 21.6871 45.7538 21.676 45.6715 21.6887C45.5891 21.7013 45.512 21.7371 45.4493 21.7919C45.4268 21.7431 45.3856 21.6719 45.3143 21.6869C45.2431 21.7019 45.2356 21.8219 45.2506 21.8406C45.2661 21.8627 45.2862 21.8811 45.3095 21.8947C45.3327 21.9083 45.3587 21.9167 45.3856 21.9194C45.3675 22.004 45.3758 22.0921 45.4093 22.1719C45.4428 22.2517 45.5 22.3193 45.5731 22.3656C45.6893 22.4219 45.9481 22.2981 46.0193 22.1294Z" fill="white"/>
|
||||
<path d="M45.1493 15.2729C45.1624 15.2148 45.1549 15.1539 45.1283 15.1006C45.1016 15.0473 45.0574 15.0049 45.0031 14.9804C44.9627 14.9525 44.9129 14.9416 44.8645 14.95C44.8161 14.9585 44.773 14.9855 44.7443 15.0254C44.6243 15.1717 44.6881 15.3029 44.7856 15.4492C44.9469 15.4342 45.1118 15.4567 45.1493 15.2729Z" fill="white"/>
|
||||
<path d="M45.0367 16.747C45.0029 16.7245 44.8641 16.7132 44.8379 16.7694C44.8116 16.8257 44.8941 16.9307 44.9316 16.9457C44.9593 16.9578 44.9902 16.9604 45.0194 16.9529C45.0486 16.9454 45.0745 16.9284 45.0929 16.9044C45.1229 16.8482 45.0742 16.7732 45.0367 16.747Z" fill="white"/>
|
||||
<path d="M45.1344 18.5555C45.2882 18.4992 45.3594 18.383 45.3219 18.2592C45.2839 18.1745 45.2184 18.1051 45.1361 18.0622C45.0538 18.0194 44.9594 18.0055 44.8682 18.023C44.8016 18.0484 44.7471 18.0981 44.7157 18.1622C44.6844 18.2262 44.6786 18.2998 44.6994 18.368C44.7357 18.4477 44.8003 18.511 44.8807 18.5457C44.9611 18.5803 45.0516 18.5838 45.1344 18.5555Z" fill="white"/>
|
||||
<path d="M18.5728 5.58339C18.6334 5.52928 18.6725 5.45512 18.6828 5.37452C18.6931 5.29392 18.674 5.2123 18.629 5.14464C18.5832 5.09177 18.5192 5.05814 18.4496 5.05049C18.3801 5.04284 18.3102 5.06174 18.254 5.10339C18.1979 5.17078 18.1672 5.2557 18.1672 5.34339C18.1672 5.43109 18.1979 5.51601 18.254 5.58339C18.2723 5.60462 18.2946 5.62198 18.3197 5.63444C18.3448 5.64691 18.3721 5.65423 18.4001 5.65598C18.428 5.65772 18.4561 5.65386 18.4825 5.64461C18.5089 5.63537 18.5333 5.62093 18.554 5.60214L18.5728 5.58339Z" fill="white"/>
|
||||
<path d="M14.2678 6.52461V6.50586L14.1703 6.57711C14.2067 6.56801 14.2402 6.54996 14.2678 6.52461Z" fill="white"/>
|
||||
<path d="M44.5605 14.427C44.6584 14.459 44.7642 14.4577 44.8613 14.423C44.9583 14.3884 45.0412 14.3225 45.0967 14.2357C45.1533 14.2322 45.2084 14.2158 45.2578 14.1879C45.3071 14.1599 45.3495 14.1212 45.3817 14.0745C45.4347 13.979 45.481 13.8801 45.5205 13.7782C45.5735 13.783 45.6269 13.7726 45.6742 13.7482L45.7605 13.707C45.8127 13.7145 45.8657 13.7145 45.918 13.707C45.8747 13.757 45.8508 13.8209 45.8505 13.887C45.8505 14.0295 45.5355 13.9657 45.5392 14.1645C45.543 14.3632 45.3217 14.4495 45.3555 14.6895C45.3892 14.9295 45.5767 15.1395 45.768 15.0382C45.9293 14.9386 46.0512 14.7863 46.113 14.607C46.1571 14.6389 46.2118 14.6524 46.2657 14.6447C46.3195 14.637 46.3683 14.6087 46.4017 14.5657C46.4167 14.5426 46.4281 14.5173 46.4355 14.4907C46.4375 14.4353 46.418 14.3812 46.3809 14.3399C46.3438 14.2986 46.2921 14.2734 46.2367 14.2695C46.4205 14.2245 46.7692 14.082 46.6455 13.7632C46.6019 13.6834 46.5342 13.6193 46.452 13.5802C46.3698 13.5412 46.2774 13.5291 46.188 13.5458C46.2195 13.4802 46.2359 13.4085 46.2359 13.3357C46.2359 13.263 46.2195 13.1913 46.188 13.1257C46.1545 13.0689 46.1083 13.0207 46.053 12.9849C45.9976 12.9491 45.9347 12.9267 45.8692 12.9195C45.8355 12.8887 45.7992 12.8611 45.7605 12.837C45.6954 12.8006 45.6187 12.7912 45.5467 12.8107C45.4316 12.84 45.3327 12.9135 45.2716 13.0154C45.2104 13.1173 45.1921 13.2392 45.2205 13.3545C45.2253 13.4091 45.2354 13.4631 45.2505 13.5157C45.1492 13.5157 45.0517 13.5457 44.958 13.5682H44.928C44.8288 13.562 44.7299 13.5837 44.6425 13.6307C44.555 13.6778 44.4824 13.7484 44.433 13.8345C44.373 13.9304 44.3528 14.046 44.3766 14.1566C44.4004 14.2672 44.4663 14.3642 44.5605 14.427Z" fill="white"/>
|
||||
<path d="M18.7344 6.76136C18.6825 6.72196 18.6172 6.70459 18.5527 6.71302C18.4881 6.72144 18.4294 6.75498 18.3894 6.80637C18.3697 6.82527 18.354 6.84797 18.3432 6.8731C18.3325 6.89824 18.327 6.92529 18.327 6.95262C18.327 6.97995 18.3325 7.00699 18.3432 7.03212C18.354 7.05726 18.3697 7.07996 18.3894 7.09887H18.4119C18.4602 7.14261 18.523 7.16683 18.5882 7.16683C18.6533 7.16683 18.7161 7.14261 18.7644 7.09887C18.8008 7.04841 18.8178 6.98651 18.8123 6.92452C18.8068 6.86253 18.7791 6.80461 18.7344 6.76136Z" fill="white"/>
|
||||
<path d="M14.8229 10.1842C14.847 10.1683 14.8676 10.1478 14.8837 10.1239C14.8997 10.0999 14.9109 10.0731 14.9164 10.0448C14.922 10.0166 14.9219 9.98748 14.9162 9.95925C14.9104 9.93103 14.8991 9.90423 14.8829 9.8804C14.8837 9.87167 14.8837 9.86289 14.8829 9.85415C14.857 9.832 14.8257 9.81692 14.7922 9.81035C14.7587 9.80379 14.7241 9.80596 14.6917 9.81665C14.656 9.83364 14.6249 9.85879 14.6008 9.89007C14.5767 9.92134 14.5603 9.95786 14.5529 9.99665C14.5454 10.1429 14.7404 10.1842 14.8229 10.1842Z" fill="white"/>
|
||||
<path d="M14.5418 7.83818C14.5884 7.76464 14.6062 7.67643 14.5916 7.59057C14.5771 7.50471 14.5313 7.42727 14.463 7.37318C14.4348 7.34086 14.4004 7.31443 14.3619 7.29542C14.3234 7.27641 14.2815 7.26519 14.2386 7.26241C14.1958 7.25962 14.1528 7.26532 14.1122 7.27918C14.0715 7.29304 14.034 7.31479 14.0018 7.34318C13.9909 7.35221 13.9808 7.36226 13.9718 7.37318C13.9381 7.39918 13.9099 7.43167 13.8889 7.46873C13.868 7.5058 13.8547 7.54668 13.8498 7.58898C13.8449 7.63127 13.8485 7.67412 13.8604 7.71499C13.8724 7.75586 13.8924 7.79392 13.9193 7.82693C14.0044 7.9032 14.1142 7.94629 14.2284 7.94836C14.3427 7.95043 14.4539 7.91132 14.5418 7.83818Z" fill="white"/>
|
||||
<path d="M44.6278 25.6731C44.6278 25.5643 44.3166 25.4106 44.2191 25.5156C44.1813 25.5608 44.1605 25.6179 44.1605 25.6768C44.1605 25.7358 44.1813 25.7929 44.2191 25.8381C44.3316 25.9356 44.6316 25.7818 44.6278 25.6731Z" fill="white"/>
|
||||
<path d="M43.953 11.5606C43.9584 11.5025 43.9519 11.444 43.9338 11.3885C43.9157 11.3331 43.8865 11.2819 43.848 11.2381C43.8863 11.2156 43.9171 11.1822 43.9365 11.1421C43.9558 11.1021 43.9629 11.0572 43.9567 11.0131C43.9567 10.8444 43.7955 10.8106 43.6417 10.7656C43.5405 10.8819 43.4017 10.9906 43.5142 11.1406C43.5221 11.1568 43.5337 11.1709 43.548 11.1819C43.4831 11.224 43.4277 11.2791 43.3851 11.3436C43.3426 11.4081 43.3137 11.4807 43.3005 11.5569C43.2984 11.589 43.3029 11.6212 43.3136 11.6516C43.3243 11.682 43.3409 11.7099 43.3626 11.7337C43.3843 11.7575 43.4106 11.7767 43.4399 11.7901C43.4691 11.8035 43.5008 11.8109 43.533 11.8119C43.5771 11.8242 43.6232 11.8274 43.6686 11.8213C43.7139 11.8152 43.7576 11.7999 43.7969 11.7764C43.8362 11.7529 43.8703 11.7217 43.8971 11.6846C43.9239 11.6475 43.9429 11.6053 43.953 11.5606Z" fill="white"/>
|
||||
<path d="M44.1143 13.6277C44.1523 13.6157 44.1873 13.5958 44.2171 13.5693C44.2468 13.5428 44.2706 13.5103 44.2868 13.4739C44.3243 13.3052 44.1818 13.2639 44.0581 13.2227C43.9268 13.3052 43.8518 13.4064 43.9306 13.5452C43.9516 13.5735 43.9795 13.5959 44.0117 13.6104C44.0438 13.6248 44.0792 13.6308 44.1143 13.6277Z" fill="white"/>
|
||||
<path d="M43.8404 12.8285C43.8612 12.8068 43.8729 12.7779 43.8729 12.7478C43.8729 12.7178 43.8612 12.6889 43.8404 12.6672L43.8141 12.6485C43.7782 12.6409 43.741 12.6406 43.7049 12.6477C43.6689 12.6548 43.6346 12.6691 43.6041 12.6897C43.5404 12.7197 43.4691 12.7385 43.4354 12.806C43.4016 12.8735 43.4841 12.9672 43.5929 12.9635C43.6898 12.9524 43.7786 12.9039 43.8404 12.8285Z" fill="white"/>
|
||||
<path d="M42.828 11.5947C42.7643 11.6509 42.6931 11.7109 42.7006 11.7897C42.7081 11.8684 42.9255 11.9659 43.0343 11.9059C43.143 11.8459 43.1168 11.7672 43.083 11.6884C43.0774 11.6675 43.0677 11.6479 43.0544 11.6307C43.0412 11.6135 43.0247 11.5991 43.0059 11.5883C42.9871 11.5775 42.9663 11.5705 42.9448 11.5678C42.9233 11.565 42.9015 11.5665 42.8806 11.5722C42.8616 11.5757 42.8437 11.5834 42.828 11.5947Z" fill="white"/>
|
||||
<path d="M43.323 14.373C43.5518 14.2943 43.6343 14.0318 43.5255 13.7468C43.4913 13.6465 43.4191 13.5636 43.3245 13.516C43.2298 13.4683 43.1203 13.4596 43.0193 13.4918H42.978C42.8646 13.5444 42.7747 13.637 42.7255 13.752C42.6764 13.8669 42.6715 13.996 42.7118 14.1143C42.7693 14.2202 42.8611 14.3035 42.9722 14.3505C43.0832 14.3975 43.2069 14.4055 43.323 14.373Z" fill="white"/>
|
||||
<path d="M43.7993 17.0259C43.8075 17.0569 43.8219 17.086 43.8415 17.1114C43.8611 17.1367 43.8857 17.1579 43.9136 17.1737C43.9416 17.1894 43.9724 17.1994 44.0043 17.203C44.0362 17.2066 44.0685 17.2037 44.0993 17.1946H44.1368C44.1935 17.1643 44.2377 17.115 44.2617 17.0554C44.2857 16.9957 44.288 16.9295 44.268 16.8684C44.2336 16.8033 44.1755 16.7539 44.1058 16.7302C44.0361 16.7065 43.96 16.7103 43.893 16.7409C43.8451 16.7685 43.809 16.8129 43.7917 16.8655C43.7744 16.9181 43.7771 16.9752 43.7993 17.0259Z" fill="white"/>
|
||||
<path d="M42.9065 12.8445C42.9315 12.8396 42.9553 12.8298 42.9765 12.8155C42.9976 12.8013 43.0157 12.783 43.0297 12.7617C43.0437 12.7404 43.0532 12.7165 43.0578 12.6914C43.0624 12.6664 43.062 12.6406 43.0565 12.6158C43.0582 12.6008 43.0582 12.5857 43.0565 12.5708C43.0363 12.5199 42.9977 12.4786 42.9484 12.4549C42.899 12.4313 42.8426 12.4271 42.7903 12.4433C42.6928 12.4658 42.6028 12.717 42.674 12.7883C42.706 12.8146 42.7435 12.8334 42.7838 12.8431C42.8241 12.8529 42.8661 12.8533 42.9065 12.8445Z" fill="white"/>
|
||||
<path d="M28.3231 8.50417C28.3727 8.50391 28.421 8.48774 28.4608 8.45805C28.5006 8.42836 28.5299 8.3867 28.5443 8.33917C28.5792 8.27507 28.5924 8.20139 28.5818 8.12917C28.4656 8.12917 28.2818 7.99042 28.2068 8.09167C28.1318 8.19292 28.2443 8.36542 28.2593 8.46667L28.3231 8.50417Z" fill="white"/>
|
||||
<path d="M44.0504 23.4794C44.0916 23.5094 44.2341 23.5581 44.2941 23.4794C44.3541 23.4006 44.2266 23.2844 44.1779 23.2619C44.1291 23.2394 44.0241 23.2244 43.9829 23.3069C43.9725 23.339 43.9735 23.3737 43.9858 23.4052C43.9981 23.4366 44.0209 23.4628 44.0504 23.4794Z" fill="white"/>
|
||||
<path d="M19.3567 4.03586C19.3716 4.00153 19.3792 3.96452 19.3792 3.92711C19.3792 3.8897 19.3716 3.85269 19.3567 3.81836C18.9817 3.95711 18.6067 4.10711 18.2617 4.26461C18.3405 4.36095 18.4463 4.43148 18.5655 4.46711C18.7246 4.47736 18.8834 4.44229 19.0235 4.36596C19.1635 4.28963 19.2791 4.17518 19.3567 4.03586Z" fill="white"/>
|
||||
<path d="M44.7106 21.4642C44.7106 21.3517 44.8043 21.1529 44.7106 21.0892C44.6168 21.0254 44.4443 21.1604 44.3356 21.1904V21.2692C44.3731 21.4117 44.4218 21.4304 44.5268 21.4679C44.5868 21.4873 44.6515 21.486 44.7106 21.4642Z" fill="white"/>
|
||||
<path d="M43.5368 19.4367C43.5226 19.46 43.5131 19.4859 43.509 19.513C43.5049 19.54 43.5062 19.5675 43.5128 19.5941C43.5194 19.6206 43.5313 19.6455 43.5476 19.6674C43.564 19.6893 43.5845 19.7078 43.6081 19.7217H43.6343C43.7768 19.7854 44.0093 19.7217 44.0431 19.6392C44.0464 19.5696 44.0302 19.5004 43.9965 19.4395C43.9627 19.3785 43.9126 19.3282 43.8518 19.2942C43.7964 19.2693 43.7336 19.2667 43.6763 19.287C43.619 19.3072 43.5718 19.3487 43.5443 19.4029C43.5381 19.413 43.5354 19.4249 43.5368 19.4367Z" fill="white"/>
|
||||
<path d="M44.3803 22.0014C44.3941 21.9433 44.387 21.8821 44.3602 21.8286C44.3335 21.7752 44.2888 21.7328 44.234 21.7089C44.1936 21.681 44.1439 21.6701 44.0955 21.6786C44.0471 21.687 44.0039 21.714 43.9753 21.7539C43.8515 21.9002 43.919 22.0314 44.0165 22.1777C44.1778 22.1589 44.3428 22.1852 44.3803 22.0014Z" fill="white"/>
|
||||
<path d="M42.8167 13.064C42.8085 13.1566 42.8351 13.249 42.8913 13.3231C42.9474 13.3973 43.0291 13.4479 43.1204 13.4652C43.3004 13.5027 43.4167 13.4015 43.4617 13.169C43.4917 13.0115 43.3867 12.794 43.2667 12.7677C43.1691 12.758 43.0711 12.7821 42.9891 12.8361C42.9072 12.89 42.8463 12.9705 42.8167 13.064Z" fill="white"/>
|
||||
<path d="M43.9866 17.8237C43.9641 17.8237 43.9566 17.895 43.9641 17.9137C43.9716 17.9325 44.0129 17.9625 44.0429 17.9475C44.0601 17.9408 44.074 17.9276 44.0817 17.9108C44.0894 17.894 44.0902 17.8749 44.0841 17.8575C44.0733 17.8426 44.0581 17.8313 44.0407 17.8253C44.0232 17.8192 44.0044 17.8187 43.9866 17.8237Z" fill="white"/>
|
||||
<path d="M25.5032 10.2307C25.5504 10.1906 25.5801 10.1336 25.5857 10.0718C25.5913 10.0101 25.5724 9.94864 25.5331 9.9007C25.4906 9.8596 25.435 9.8348 25.376 9.83069C25.317 9.82657 25.2585 9.84339 25.2107 9.87819C25.1875 9.90057 25.1691 9.92738 25.1566 9.95701C25.144 9.98665 25.1375 10.0185 25.1375 10.0507C25.1375 10.0829 25.144 10.1147 25.1566 10.1444C25.1691 10.174 25.1875 10.2008 25.2107 10.2232C25.2239 10.2445 25.2414 10.2628 25.262 10.2771C25.2826 10.2914 25.306 10.3013 25.3306 10.3062C25.3551 10.3111 25.3805 10.3109 25.405 10.3057C25.4295 10.3004 25.4527 10.2902 25.4731 10.2757C25.4865 10.2633 25.4968 10.2478 25.5032 10.2307Z" fill="white"/>
|
||||
<path d="M24.948 5.37014C24.9448 5.25966 24.9014 5.15417 24.8258 5.07345C24.7503 4.99274 24.648 4.94236 24.538 4.93177C24.4279 4.92119 24.3178 4.95112 24.2283 5.01595C24.1388 5.08078 24.076 5.17605 24.0518 5.28389C24.0105 5.45639 24.2355 5.65889 24.4793 5.70389C24.5845 5.71407 24.6899 5.68591 24.776 5.62459C24.8622 5.56327 24.9232 5.47291 24.948 5.37014Z" fill="white"/>
|
||||
<path d="M26.448 7.02468C26.4472 6.95118 26.4221 6.87999 26.3767 6.82218C26.3385 6.76251 26.278 6.72049 26.2088 6.70537C26.1395 6.69025 26.067 6.70327 26.0074 6.74156C25.9477 6.77985 25.9057 6.84027 25.8906 6.90954C25.8754 6.97881 25.8884 7.05126 25.9267 7.11093C25.9492 7.14798 25.9817 7.17789 26.0205 7.19718C26.118 7.27593 26.313 7.20843 26.448 7.02468Z" fill="white"/>
|
||||
<path d="M24.3404 6.63084C24.3589 6.60662 24.369 6.57697 24.369 6.54646C24.369 6.51596 24.3589 6.48631 24.3404 6.46209C24.2841 6.42084 24.1979 6.50709 24.1679 6.54459C24.1567 6.56682 24.1532 6.59214 24.158 6.61657C24.1627 6.641 24.1754 6.66316 24.1941 6.67959C24.1979 6.70584 24.3029 6.66459 24.3404 6.63084Z" fill="white"/>
|
||||
<path d="M24.1267 7.09961C24.078 7.06211 23.9955 7.09961 23.9655 7.13336C23.9355 7.16711 23.9092 7.29836 23.9655 7.33211C24.0217 7.36586 24.1342 7.30211 24.153 7.26461C24.1717 7.22711 24.198 7.13336 24.1267 7.09961Z" fill="white"/>
|
||||
<path d="M19.503 8.77543C19.6305 8.64418 19.6605 8.42668 19.563 8.33668C19.4776 8.26916 19.3719 8.23242 19.263 8.23242C19.1541 8.23242 19.0484 8.26916 18.963 8.33668C18.9109 8.39791 18.8852 8.47728 18.8916 8.55741C18.8979 8.63754 18.9357 8.71189 18.9968 8.76418C19.0551 8.82917 19.1367 8.86841 19.2238 8.87333C19.311 8.87825 19.3965 8.84844 19.4618 8.79043L19.503 8.77543Z" fill="white"/>
|
||||
<path d="M24.3591 6.07961C24.334 6.04866 24.3026 6.02331 24.2671 6.00523C24.2316 5.98714 24.1926 5.97671 24.1528 5.97461C23.9841 6.00086 23.9991 6.14711 24.0028 6.27836C24.1266 6.36836 24.2503 6.40211 24.3516 6.27836C24.3686 6.24821 24.3781 6.21445 24.3794 6.17989C24.3807 6.14532 24.3737 6.11095 24.3591 6.07961Z" fill="white"/>
|
||||
<path d="M26.4106 9.00067C26.4326 9.0184 26.4579 9.03152 26.485 9.03925C26.5122 9.04698 26.5406 9.04916 26.5686 9.04566C26.5966 9.04216 26.6236 9.03305 26.648 9.01888C26.6724 9.00471 26.6937 8.98576 26.7106 8.96317C26.7931 8.83192 26.7781 8.58817 26.6844 8.54692C26.6152 8.53486 26.544 8.54134 26.4781 8.56572C26.4123 8.59009 26.354 8.63148 26.3094 8.68567C26.2925 8.71074 26.2807 8.73891 26.2748 8.76854C26.2688 8.79818 26.2688 8.8287 26.2748 8.85834C26.2807 8.88798 26.2924 8.91615 26.3093 8.94122C26.3262 8.9663 26.3479 8.98778 26.3731 9.00442L26.4106 9.00067Z" fill="white"/>
|
||||
<path d="M27.948 5.92826C28.0456 5.9097 28.1371 5.86718 28.2142 5.80452C28.2967 5.73702 28.2892 5.63576 28.188 5.56076C28.1623 5.53651 28.1312 5.51875 28.0973 5.50896C28.0634 5.49918 28.0276 5.49765 27.993 5.50451C27.9686 5.45951 27.9339 5.42095 27.8917 5.39201C27.8317 5.35694 27.7612 5.3441 27.6926 5.35575C27.6241 5.36741 27.5618 5.40281 27.5167 5.45576C27.378 5.65826 27.3817 5.89451 27.5167 5.98076C27.5867 6.01135 27.6637 6.02261 27.7395 6.01338C27.8154 6.00414 27.8873 5.97475 27.948 5.92826Z" fill="white"/>
|
||||
<path d="M27.6293 5.1385C27.6782 5.09517 27.7082 5.03454 27.7131 4.96944C27.718 4.90435 27.6974 4.8399 27.6556 4.78975C27.6459 4.78197 27.6371 4.77317 27.6293 4.7635C27.58 4.72198 27.5176 4.69922 27.4531 4.69922C27.3886 4.69922 27.3262 4.72198 27.2768 4.7635C27.2299 4.81468 27.2039 4.88158 27.2039 4.951C27.2039 5.02042 27.2299 5.08732 27.2768 5.1385C27.2954 5.162 27.3185 5.18149 27.3448 5.1958C27.3711 5.2101 27.4 5.21892 27.4298 5.22172C27.4596 5.22453 27.4897 5.22126 27.5182 5.21211C27.5466 5.20296 27.573 5.18812 27.5956 5.1685L27.6293 5.1385Z" fill="white"/>
|
||||
<path d="M28.2479 6.89956C28.2813 6.92285 28.3225 6.93198 28.3625 6.92495C28.4026 6.91792 28.4382 6.89531 28.4617 6.86205L28.4842 6.80955C28.5142 6.73455 28.5779 6.5358 28.4842 6.4908C28.3904 6.4458 28.2104 6.5583 28.1617 6.6258C28.1377 6.6737 28.1333 6.72905 28.1494 6.78014C28.1655 6.83124 28.2008 6.87406 28.2479 6.89956Z" fill="white"/>
|
||||
<path d="M26.8641 6.17328C26.7741 6.09828 26.6841 6.17328 26.6279 6.26328C26.5716 6.35328 26.5979 6.50703 26.6991 6.52953C26.8004 6.55203 26.9504 6.60828 27.0029 6.47703C27.0554 6.34578 26.9279 6.22578 26.8641 6.17328Z" fill="white"/>
|
||||
<path d="M26.9166 10.2378C26.9654 10.2116 27.0404 10.0353 26.9954 9.98656C26.9504 9.93781 26.7779 9.96406 26.7516 9.98656C26.7254 10.0091 26.6654 10.1591 26.6991 10.2041C26.7287 10.2293 26.7647 10.2458 26.8031 10.2517C26.8415 10.2577 26.8808 10.2529 26.9166 10.2378Z" fill="white"/>
|
||||
<path d="M27.0668 4.15051C26.9558 4.09348 26.8291 4.0747 26.7064 4.09707C26.5837 4.11945 26.4718 4.18174 26.3881 4.27426C26.2418 4.46551 26.3281 4.75051 26.5906 4.94176C26.6323 4.97347 26.68 4.99659 26.7307 5.0098C26.7815 5.02301 26.8344 5.02604 26.8863 5.01872C26.9383 5.0114 26.9882 4.99388 27.0334 4.96715C27.0785 4.94043 27.1179 4.90503 27.1493 4.86301C27.2251 4.75474 27.2586 4.6224 27.2434 4.49108C27.2282 4.35976 27.1654 4.23859 27.0668 4.15051Z" fill="white"/>
|
||||
<path d="M24.1042 7.73643C24.1175 7.69528 24.1213 7.65168 24.1155 7.60884C24.1097 7.566 24.0943 7.52503 24.0705 7.48893C24.0427 7.4462 23.9996 7.41576 23.9501 7.4039C23.9005 7.39204 23.8483 7.39966 23.8042 7.42518L23.7667 7.45893C23.7255 7.4951 23.7001 7.54595 23.6959 7.6006C23.6917 7.65525 23.7091 7.70938 23.7442 7.75143C23.8005 7.83768 24.0667 7.82643 24.1042 7.73643Z" fill="white"/>
|
||||
<path d="M21.4941 6.14986C21.4504 6.19814 21.4261 6.26097 21.4261 6.32612C21.4261 6.39126 21.4504 6.45408 21.4941 6.50236C21.6404 6.62986 21.7866 6.55486 21.9291 6.50236C21.9591 6.21361 21.9291 6.10486 21.7716 6.05986C21.7218 6.04293 21.6679 6.04254 21.6179 6.05876C21.5679 6.07498 21.5245 6.10694 21.4941 6.14986Z" fill="white"/>
|
||||
<path d="M22.4167 5.80112C22.5967 5.60612 22.6192 5.45612 22.4842 5.32112C22.4119 5.27564 22.3272 5.25374 22.2419 5.25844C22.1566 5.26314 22.0749 5.29422 22.008 5.34738C21.9705 5.42549 21.9566 5.51283 21.9679 5.59873C21.9792 5.68464 22.0153 5.76538 22.0717 5.83112C22.093 5.85278 22.1184 5.86998 22.1464 5.88172C22.1744 5.89346 22.2045 5.89951 22.2349 5.89951C22.2652 5.89951 22.2953 5.89346 22.3233 5.88172C22.3513 5.86998 22.3767 5.85278 22.398 5.83112C22.398 5.83112 22.4092 5.80862 22.4167 5.80112Z" fill="white"/>
|
||||
<path d="M21.6481 7.48945C21.8056 7.38445 21.9256 7.2832 21.8506 7.11445C21.8293 7.08162 21.8005 7.05431 21.7666 7.03475C21.7327 7.0152 21.6947 7.00395 21.6556 7.00195C21.6063 7.01385 21.56 7.0356 21.5194 7.0659C21.4788 7.09619 21.4448 7.13439 21.4193 7.1782C21.3518 7.3507 21.5206 7.39945 21.6481 7.48945Z" fill="white"/>
|
||||
<path d="M21.5091 4.65001C21.5919 4.6545 21.6716 4.68319 21.7382 4.73251C21.8049 4.78184 21.8556 4.84964 21.8841 4.92751C21.9347 4.99072 22.0045 5.03585 22.0829 5.05612C22.1613 5.0764 22.2442 5.07075 22.3191 5.04001C22.4024 4.95938 22.4543 4.85168 22.4654 4.73626C22.4922 4.716 22.5129 4.68875 22.5254 4.65751C22.5446 4.6033 22.5416 4.54366 22.517 4.49166C22.4924 4.43965 22.4482 4.3995 22.3941 4.38001H22.3379C22.321 4.35184 22.2954 4.32998 22.2649 4.31779C22.2344 4.3056 22.2007 4.30374 22.1691 4.31251C22.086 4.33086 21.9999 4.33063 21.9169 4.31183C21.834 4.29303 21.7562 4.25613 21.6891 4.20376C21.6459 4.17325 21.5926 4.16052 21.5402 4.1682C21.4879 4.17588 21.4405 4.20338 21.4079 4.24501C21.3989 4.25922 21.3913 4.2743 21.3854 4.29001C21.3254 4.40626 21.3704 4.61626 21.5091 4.65001Z" fill="white"/>
|
||||
<path d="M20.403 8.80452C20.3536 8.763 20.2912 8.74023 20.2267 8.74023C20.1622 8.74023 20.0998 8.763 20.0505 8.80452C20.0051 8.85645 19.9801 8.92307 19.9801 8.99202C19.9801 9.06098 20.0051 9.12759 20.0505 9.17952C20.0932 9.22099 20.1503 9.24417 20.2098 9.24417C20.2694 9.24417 20.3265 9.22099 20.3692 9.17952C20.4216 9.14057 20.4567 9.08279 20.4672 9.01841C20.4777 8.95402 20.4627 8.88807 20.4255 8.83452L20.403 8.80452Z" fill="white"/>
|
||||
<path d="M23.8232 10.6495C23.8324 10.6289 23.8371 10.6065 23.8371 10.5839C23.8371 10.5613 23.8324 10.5389 23.8232 10.5183C23.8 10.5037 23.7739 10.4941 23.7468 10.4902C23.7197 10.4864 23.692 10.4883 23.6656 10.4958C23.6319 10.4958 23.5907 10.6495 23.6169 10.6795C23.6432 10.7095 23.7819 10.6683 23.8232 10.6495Z" fill="white"/>
|
||||
<path d="M20.3693 10.1141C20.4012 10.0933 20.4237 10.0609 20.4321 10.0238C20.4405 9.98671 20.4341 9.94779 20.4143 9.91532C20.4034 9.89567 20.388 9.87894 20.3693 9.86657C20.283 9.79532 20.1893 9.74282 20.0843 9.83282C20.0492 9.88716 20.0331 9.9516 20.0385 10.0161C20.0439 10.0805 20.0706 10.1414 20.1143 10.1891C20.1597 10.1986 20.2067 10.1967 20.2512 10.1836C20.2957 10.1705 20.3362 10.1466 20.3693 10.1141Z" fill="white"/>
|
||||
<path d="M20.0354 11.658C20.0685 11.6107 20.0863 11.5544 20.0863 11.4967C20.0863 11.4391 20.0685 11.3828 20.0354 11.3355C19.9529 11.2455 19.7654 11.3355 19.6604 11.3767C19.6039 11.4258 19.5659 11.4929 19.553 11.5666C19.54 11.6403 19.5528 11.7163 19.5892 11.7817C19.6717 11.8755 19.9642 11.733 20.0354 11.658Z" fill="white"/>
|
||||
<path d="M23.1517 7.71001C23.0617 7.63501 22.9942 7.68376 22.9305 7.74376C22.8946 7.76752 22.8695 7.80433 22.8604 7.84636C22.8513 7.88838 22.8589 7.9323 22.8817 7.96876C22.8941 7.98748 22.9108 8.00293 22.9305 8.01377C23.0017 8.05502 23.088 8.10001 23.1555 8.06251C23.1933 8.01134 23.2133 7.94925 23.2127 7.88564C23.212 7.82203 23.1906 7.76037 23.1517 7.71001Z" fill="white"/>
|
||||
<path d="M23.789 4.36137C23.8193 4.37427 23.8518 4.38091 23.8847 4.38091C23.9175 4.38091 23.9501 4.37427 23.9803 4.36137C24.1078 4.29762 24.1678 4.62762 24.3553 4.54887C24.5428 4.47012 24.7003 4.65012 24.914 4.53012C25.1278 4.41012 25.2515 4.15512 25.0865 4.02012C24.9288 3.90307 24.7352 3.84472 24.539 3.85512C24.4971 3.8548 24.4559 3.86513 24.419 3.88512C24.4575 3.81664 24.4735 3.73782 24.4647 3.65977C24.456 3.58172 24.4229 3.50839 24.3703 3.45012C24.2465 3.36762 24.0403 3.45012 23.9203 3.62637C23.8656 3.60054 23.8043 3.59209 23.7446 3.60214C23.6849 3.6122 23.6298 3.64029 23.5865 3.68262C23.527 3.75207 23.4916 3.83889 23.4855 3.93014C23.4794 4.02138 23.503 4.11214 23.5528 4.18887C23.4611 4.1762 23.3677 4.19337 23.2866 4.23784C23.2054 4.28232 23.1406 4.35174 23.102 4.43584C23.0633 4.51994 23.0527 4.61426 23.0717 4.70485C23.0908 4.79544 23.1385 4.87749 23.2078 4.93887C23.281 5.0058 23.3767 5.04292 23.4759 5.04292C23.5752 5.04292 23.6708 5.0058 23.744 4.93887C23.7955 4.85257 23.8263 4.75556 23.8341 4.65539C23.8419 4.55522 23.8265 4.4546 23.789 4.36137Z" fill="white"/>
|
||||
<path d="M22.8406 3.8743L23.1031 3.62305C23.0656 3.55555 23.0281 3.48805 22.9869 3.42055C22.9583 3.38548 22.9213 3.35817 22.8793 3.34113C22.8374 3.3241 22.7919 3.31788 22.7469 3.32305C22.746 3.23357 22.7112 3.14777 22.6494 3.08305L22.6156 3.0493C22.6249 3.01889 22.626 2.98657 22.6188 2.95561C22.6115 2.92465 22.5962 2.89616 22.5744 2.87305L21.9031 3.0268C21.9056 3.03222 21.9093 3.03705 21.9138 3.04093C21.9183 3.04482 21.9236 3.04767 21.9294 3.0493C22.1319 3.1093 22.1094 3.28555 22.1431 3.4243C22.145 3.45701 22.1535 3.48901 22.168 3.51838C22.1825 3.54776 22.2028 3.57391 22.2276 3.59526C22.2525 3.61661 22.2814 3.63274 22.3126 3.64267C22.3439 3.6526 22.3768 3.65613 22.4094 3.65305C22.4482 3.6497 22.4855 3.63681 22.5181 3.61555L22.5669 3.59305C22.5727 3.63386 22.591 3.67187 22.6194 3.7018C22.6837 3.77051 22.7583 3.82872 22.8406 3.8743Z" fill="white"/>
|
||||
<path d="M23.8228 7.02421C23.9165 7.02421 23.954 6.92296 23.909 6.82171C23.8877 6.77525 23.857 6.73365 23.819 6.69947C23.7809 6.66529 23.7363 6.63925 23.6878 6.62296C23.6725 6.61901 23.6566 6.61811 23.641 6.62031C23.6254 6.62251 23.6104 6.62777 23.5968 6.63578C23.5832 6.64379 23.5713 6.65439 23.5619 6.66699C23.5524 6.67959 23.5455 6.69394 23.5415 6.70921C23.5398 6.71661 23.5398 6.72431 23.5415 6.73171C23.5415 6.80671 23.5978 6.85546 23.6578 6.91171C23.7178 6.96796 23.7703 7.02046 23.8228 7.02421Z" fill="white"/>
|
||||
<path d="M23.1215 10.4852C23.1304 10.4726 23.1352 10.4575 23.1352 10.4421C23.1352 10.4266 23.1304 10.4116 23.1215 10.399C23.1071 10.386 23.0884 10.3789 23.069 10.3789C23.0497 10.3789 23.031 10.386 23.0165 10.399C23.0039 10.4128 22.9969 10.4308 22.9969 10.4496C22.9969 10.4683 23.0039 10.4864 23.0165 10.5002C23.0165 10.5002 23.1065 10.504 23.1215 10.4852Z" fill="white"/>
|
||||
<path d="M23.0168 10.009C23.133 9.89275 23.1517 9.76525 23.0692 9.69775C23.0046 9.65909 22.9308 9.63867 22.8555 9.63867C22.7802 9.63867 22.7063 9.65909 22.6418 9.69775C22.6203 9.7224 22.6041 9.7511 22.594 9.78214C22.5839 9.81319 22.5801 9.84594 22.5829 9.87847C22.5857 9.911 22.595 9.94264 22.6103 9.9715C22.6255 10.0004 22.6464 10.0259 22.6717 10.0465C22.7152 10.0893 22.7738 10.1133 22.8349 10.1133C22.8959 10.1133 22.9545 10.0893 22.998 10.0465L23.0168 10.009Z" fill="white"/>
|
||||
<path d="M35.7671 11.6083C35.1484 11.3977 34.4858 11.3499 33.8433 11.4696C33.5857 10.0547 32.8647 8.76569 31.7939 7.80565C30.7231 6.8456 29.3634 6.26905 27.9288 6.1668C26.4943 6.06454 25.0666 6.44241 23.8704 7.24087C22.6743 8.03934 21.7778 9.21302 21.3221 10.5771C21.2257 10.8639 21.1492 11.1571 21.0933 11.4546C20.5723 11.3736 20.0403 11.4005 19.5301 11.5333C19.0199 11.6662 18.5424 11.9023 18.1271 12.2271C17.502 12.7172 17.0434 13.3882 16.8139 14.1486C16.5843 14.909 16.595 15.7217 16.8446 16.4758C17.0115 16.9755 17.2781 17.436 17.6283 17.8296C17.9804 18.2224 18.4093 18.539 18.8885 18.7595C19.3678 18.9801 19.8871 19.1001 20.4146 19.1121H34.6646C35.5689 19.0878 36.4358 18.746 37.1133 18.1465C37.7909 17.547 38.2357 16.7281 38.3699 15.8335C38.5041 14.9388 38.3191 14.0255 37.8473 13.2536C37.3755 12.4817 36.647 11.9006 35.7896 11.6121L35.7671 11.6083Z" fill="#20377D"/>
|
||||
<path d="M35.3728 19.5329C34.3061 19.1724 33.1648 19.091 32.0578 19.2967C31.6094 16.8586 30.3636 14.6386 28.5162 12.9856C26.6688 11.3327 24.3245 10.3404 21.8518 10.1648C19.379 9.98923 16.918 10.6403 14.8556 12.0156C12.7932 13.391 11.2462 15.4127 10.4578 17.7629C10.2927 18.2534 10.1611 18.7546 10.0641 19.2629C9.16549 19.1223 8.24759 19.1682 7.36757 19.3979C6.48755 19.6276 5.66428 20.0361 4.94906 20.5979C4.23315 21.1587 3.63982 21.8604 3.20575 22.6595C2.77167 23.4587 2.50605 24.3383 2.4253 25.2442C2.34613 26.1498 2.45341 27.0621 2.74054 27.9247C3.02767 28.7872 3.48857 29.5818 4.09475 30.2593C4.70092 30.9368 5.43953 31.4829 6.26498 31.8639C7.09043 32.2448 7.9852 32.4525 8.89405 32.4742H33.4416C35.0023 32.4305 36.498 31.8389 37.6663 30.803C38.8347 29.7671 39.6012 28.3531 39.8315 26.8088C40.0618 25.2645 39.7413 23.6883 38.9261 22.3567C38.1108 21.025 36.8529 20.0227 35.3728 19.5254V19.5329Z" fill="#7DE2D1"/>
|
||||
<path d="M14.2643 19.8628C14.2305 19.7878 14.1818 19.7128 14.073 19.7466C14.0203 19.7726 13.9794 19.8176 13.9585 19.8726C13.9376 19.9276 13.9384 19.9884 13.9605 20.0428C14.0336 20.0639 14.1098 20.0715 14.1855 20.0654C14.283 20.0429 14.3055 19.9528 14.2643 19.8628Z" fill="#42D4C6"/>
|
||||
<path d="M15.6929 22.788C15.78 22.7389 15.8456 22.6589 15.8769 22.5639C15.9081 22.4688 15.9027 22.3656 15.8617 22.2743C15.8108 22.1839 15.731 22.1132 15.6351 22.0737C15.5391 22.0343 15.4327 22.0283 15.3329 22.0568C15.2855 22.0728 15.2418 22.0981 15.2044 22.1312C15.1669 22.1643 15.1364 22.2046 15.1148 22.2497C15.0931 22.2948 15.0807 22.3437 15.0782 22.3937C15.0758 22.4436 15.0833 22.4936 15.1004 22.5405C15.1659 22.6334 15.2562 22.7058 15.3611 22.7496C15.4659 22.7934 15.5809 22.8067 15.6929 22.788Z" fill="#42D4C6"/>
|
||||
<path d="M13.9492 15.8581C13.9155 15.8244 13.8742 15.7831 13.8142 15.8131C13.804 15.817 13.7947 15.8231 13.7871 15.831C13.7795 15.8389 13.7737 15.8484 13.7701 15.8587C13.7665 15.8691 13.7653 15.8801 13.7664 15.891C13.7676 15.9019 13.7711 15.9125 13.7767 15.9219C13.803 15.9556 13.8555 16.0269 13.9267 16.0044C13.998 15.9819 13.9642 15.8731 13.9492 15.8581Z" fill="#42D4C6"/>
|
||||
<path d="M14.3919 15.4357C14.4481 15.3232 14.2156 15.1357 14.0844 15.1807C13.9531 15.2257 13.8631 15.4019 13.9268 15.4919C13.9906 15.5819 14.3356 15.5482 14.3919 15.4357Z" fill="#42D4C6"/>
|
||||
<path d="M14.3993 21.6079C14.3432 21.5662 14.2739 21.5462 14.2043 21.5517C14.3387 21.7067 14.4639 21.8695 14.5793 22.0392C14.5861 21.9581 14.5734 21.8766 14.542 21.8015C14.5107 21.7265 14.4617 21.6601 14.3993 21.6079Z" fill="#42D4C6"/>
|
||||
<path d="M15.7303 20.4295C15.7546 20.4395 15.7807 20.4443 15.8069 20.4436C15.8332 20.4429 15.859 20.4366 15.8826 20.4253C15.9063 20.414 15.9274 20.3979 15.9444 20.3779C15.9615 20.3579 15.9741 20.3346 15.9816 20.3095C15.9932 20.2727 15.9965 20.2337 15.9913 20.1955C15.9861 20.1573 15.9726 20.1206 15.9516 20.0882C15.8353 19.9832 15.7078 20.032 15.5766 20.1295C15.5728 20.2495 15.5916 20.3807 15.7303 20.4295Z" fill="#42D4C6"/>
|
||||
<path d="M14.8942 18.1918C14.8604 18.0455 14.7854 17.9743 14.6354 17.9855C14.5489 17.9985 14.4711 18.0453 14.419 18.1156C14.367 18.1859 14.345 18.274 14.3579 18.3605C14.3804 18.5443 14.4854 18.5593 14.4892 18.6793C14.4929 18.7993 14.5604 18.833 14.6842 18.8593C14.8079 18.8855 14.9917 18.9193 15.0254 18.7468C15.0592 18.5743 14.9467 18.533 14.8942 18.5293C14.8417 18.5255 14.7704 18.4355 14.8304 18.4243C14.8904 18.413 14.9242 18.338 14.8942 18.1918Z" fill="#42D4C6"/>
|
||||
<path d="M15.8653 18.7618C15.9106 18.7728 15.9583 18.7676 16.0001 18.747C16.0419 18.7265 16.0752 18.6919 16.0941 18.6493C16.1278 18.548 16.0753 18.4955 15.8578 18.4355C15.8293 18.4526 15.8059 18.4768 15.7898 18.5059C15.7738 18.5349 15.7657 18.5677 15.7665 18.6009C15.7672 18.634 15.7768 18.6664 15.7942 18.6947C15.8115 18.723 15.8361 18.7461 15.8653 18.7618Z" fill="#42D4C6"/>
|
||||
<path d="M16.6005 24.1947C16.6767 24.1586 16.7385 24.0978 16.7759 24.0223C16.8133 23.9468 16.8242 23.8609 16.8068 23.7784C16.7618 23.6734 16.4543 23.6134 16.323 23.6809C16.2681 23.7241 16.2302 23.7852 16.216 23.8536C16.2018 23.922 16.2122 23.9932 16.2454 24.0547C16.2786 24.1161 16.3324 24.1639 16.3974 24.1895C16.4624 24.2151 16.5343 24.2169 16.6005 24.1947Z" fill="#42D4C6"/>
|
||||
<path d="M14.2944 20.1859C14.2247 20.258 14.1822 20.3522 14.1744 20.4522C14.1683 20.5217 14.1783 20.5917 14.2037 20.6568C14.2291 20.7218 14.2691 20.7801 14.3207 20.8272C14.4257 20.9434 14.4144 21.1009 14.5569 21.1647C14.6821 21.2219 14.8222 21.2379 14.957 21.2102C15.0918 21.1826 15.2144 21.1128 15.3069 21.0109C15.3688 20.9491 15.4142 20.8728 15.4391 20.789C15.464 20.7052 15.4675 20.6165 15.4494 20.5309C15.4044 20.3547 15.1719 20.3434 15.0744 20.1897C14.8232 19.8147 14.5007 19.9647 14.2944 20.1859Z" fill="#42D4C6"/>
|
||||
<path d="M15.9928 17.7601C16.0266 17.7339 16.0903 17.7039 16.0678 17.6401C16.0646 17.6293 16.059 17.6193 16.0516 17.6108C16.0441 17.6023 16.0349 17.5955 16.0246 17.5909C16.0143 17.5863 16.0031 17.5839 15.9918 17.584C15.9805 17.5841 15.9693 17.5866 15.9591 17.5914C15.9216 17.5914 15.8278 17.6626 15.8503 17.7189C15.8728 17.7751 15.9703 17.7714 15.9928 17.7601Z" fill="#42D4C6"/>
|
||||
<path d="M16.0717 23.393C16.0305 23.303 15.8392 23.2055 15.7642 23.2393C15.7134 23.2714 15.674 23.3189 15.6518 23.3748C15.6296 23.4307 15.6256 23.4922 15.6405 23.5505C15.6506 23.5794 15.6668 23.6059 15.6878 23.6281C15.7089 23.6503 15.7345 23.6679 15.7628 23.6796C15.7911 23.6912 15.8216 23.6968 15.8522 23.6959C15.8828 23.695 15.9129 23.6876 15.9405 23.6743C15.9921 23.6505 16.0337 23.6092 16.0577 23.5577C16.0817 23.5062 16.0867 23.4478 16.0717 23.393Z" fill="#42D4C6"/>
|
||||
<path d="M16.9267 22.4842C16.9069 22.4411 16.8784 22.4025 16.8429 22.3711C16.8074 22.3396 16.7657 22.3159 16.7206 22.3014C16.6754 22.287 16.6277 22.2821 16.5806 22.2871C16.5334 22.292 16.4878 22.3068 16.4467 22.3304C16.3911 22.3455 16.3398 22.3733 16.2967 22.4114C16.2536 22.4496 16.2199 22.4972 16.1981 22.5505C16.1763 22.6038 16.1671 22.6614 16.1712 22.7188C16.1753 22.7763 16.1926 22.832 16.2217 22.8817C16.2723 22.9793 16.3588 23.0535 16.4631 23.0885C16.5674 23.1234 16.6812 23.1165 16.7804 23.0692C16.8648 23.0006 16.9247 22.9065 16.951 22.801C16.9774 22.6956 16.9689 22.5844 16.9267 22.4842Z" fill="#42D4C6"/>
|
||||
<path d="M15.9892 21.338C15.8692 21.428 15.9142 21.5555 15.9517 21.6868C16.0867 21.7093 16.2292 21.758 16.3004 21.6005C16.3042 21.5858 16.3042 21.5703 16.3004 21.5555C16.4206 21.6047 16.5553 21.6047 16.6754 21.5555C16.6997 21.5419 16.721 21.5236 16.7382 21.5016C16.7553 21.4797 16.7679 21.4545 16.7753 21.4276C16.7826 21.4008 16.7845 21.3727 16.7809 21.3451C16.7773 21.3175 16.7682 21.2909 16.7542 21.2668C16.7285 21.1926 16.6751 21.1313 16.6052 21.0957C16.5353 21.06 16.4543 21.0528 16.3792 21.0755C16.3331 21.0976 16.2924 21.1295 16.26 21.169C16.2276 21.2086 16.2042 21.2547 16.1917 21.3043C16.1578 21.2921 16.1215 21.2888 16.086 21.2947C16.0506 21.3006 16.0172 21.3155 15.9892 21.338Z" fill="#42D4C6"/>
|
||||
<path d="M16.7468 20.6447C16.8298 20.609 16.897 20.5446 16.9363 20.4633C16.9756 20.382 16.9842 20.2893 16.9606 20.2022C16.9164 20.117 16.8412 20.052 16.7505 20.0206C16.6598 19.9892 16.5605 19.9938 16.4731 20.0334C16.4394 20.0488 16.4093 20.0711 16.3847 20.0988C16.3601 20.1265 16.3415 20.1591 16.3302 20.1944C16.3189 20.2297 16.3151 20.267 16.3191 20.3038C16.323 20.3407 16.3346 20.3763 16.3531 20.4084C16.4131 20.5509 16.6268 20.6859 16.7468 20.6447Z" fill="#42D4C6"/>
|
||||
<path d="M16.7242 25.8412C16.7876 25.7887 16.8387 25.7228 16.8737 25.6482C16.9087 25.5737 16.9268 25.4923 16.9267 25.4099C16.9083 25.3718 16.8821 25.3379 16.8498 25.3105C16.8175 25.2831 16.7799 25.2627 16.7393 25.2507C16.6987 25.2387 16.656 25.2354 16.614 25.2408C16.572 25.2463 16.5316 25.2604 16.4954 25.2824C16.3604 25.3499 16.3304 25.4887 16.4129 25.6762C16.4954 25.8637 16.6117 25.8974 16.7242 25.8412Z" fill="#42D4C6"/>
|
||||
<path d="M12.1268 19.087C11.9543 19.1583 11.9206 19.2558 12.0031 19.462C12.0856 19.6683 12.2018 19.7095 12.3256 19.6533C12.3917 19.6024 12.4434 19.5352 12.4756 19.4583C12.5079 19.3813 12.5195 19.2973 12.5093 19.2145C12.4938 19.18 12.4713 19.149 12.4432 19.1235C12.4151 19.0981 12.3821 19.0788 12.3461 19.0668C12.3101 19.0548 12.2721 19.0504 12.2344 19.0539C12.1966 19.0574 12.16 19.0687 12.1268 19.087Z" fill="#42D4C6"/>
|
||||
<path d="M12.2616 17.8014C12.3854 17.7414 12.5166 17.4451 12.4641 17.3476C12.4071 17.2847 12.3304 17.2431 12.2466 17.2295C12.1628 17.2158 12.0769 17.2311 12.0029 17.2726C11.8529 17.3476 11.8229 17.4939 11.9241 17.6814C11.9591 17.7359 12.0113 17.7773 12.0723 17.7991C12.1334 17.8208 12.2 17.8216 12.2616 17.8014Z" fill="#42D4C6"/>
|
||||
<path d="M17.4928 25.2268C17.451 25.2422 17.4129 25.2662 17.381 25.2972C17.349 25.3283 17.3239 25.3657 17.3073 25.407C17.2907 25.4484 17.283 25.4927 17.2846 25.5372C17.2862 25.5818 17.2971 25.6255 17.3166 25.6655C17.3368 25.7123 17.366 25.7546 17.4026 25.7901C17.4391 25.8256 17.4823 25.8536 17.5297 25.8724C17.577 25.8912 17.6276 25.9005 17.6786 25.8997C17.7295 25.899 17.7798 25.8882 17.8266 25.868C17.8734 25.8478 17.9157 25.8186 17.9512 25.7821C17.9867 25.7455 18.0147 25.7023 18.0335 25.6549C18.0523 25.6076 18.0616 25.557 18.0608 25.506C18.0601 25.4551 18.0493 25.4048 18.0291 25.358C17.9503 25.1855 17.7253 25.1218 17.4928 25.2268Z" fill="#42D4C6"/>
|
||||
<path d="M19.3716 24.0595C19.3154 23.8345 19.2254 23.7783 18.9966 23.8495C18.7679 23.9208 18.6591 23.947 18.4941 23.992C18.3816 23.692 18.3479 23.6808 18.1191 23.8308C18.1191 23.9958 18.1979 24.0708 18.3629 24.0858C18.4229 24.4795 18.6441 24.5433 18.9779 24.2845C19.0039 24.2935 19.029 24.3048 19.0529 24.3183C19.0909 24.3475 19.1388 24.3608 19.1865 24.3552C19.2341 24.3496 19.2777 24.3256 19.3079 24.2883C19.3412 24.2617 19.3654 24.2253 19.3768 24.1842C19.3883 24.1431 19.3865 24.0995 19.3716 24.0595Z" fill="#42D4C6"/>
|
||||
<path d="M17.448 29.1224C17.388 29.1711 17.2493 29.3174 17.2868 29.3849C17.3243 29.4524 17.5155 29.4449 17.5943 29.4336C17.673 29.4224 17.7068 29.2761 17.658 29.1936C17.6093 29.1111 17.5343 29.0624 17.448 29.1224Z" fill="#42D4C6"/>
|
||||
<path d="M17.6578 26.9694C17.6029 27.0128 17.5635 27.0727 17.5453 27.1402C17.527 27.2077 17.531 27.2793 17.5565 27.3444C17.6136 27.3817 17.6813 27.3989 17.7492 27.3935C17.817 27.388 17.8812 27.3602 17.9315 27.3144C17.9674 27.2756 17.9873 27.2248 17.9873 27.1719C17.9873 27.1191 17.9674 27.0682 17.9315 27.0294C17.9008 26.9881 17.8562 26.9593 17.8059 26.9483C17.7556 26.9373 17.703 26.9448 17.6578 26.9694Z" fill="#42D4C6"/>
|
||||
<path d="M15.0178 31.2973C15.0051 31.3063 14.9959 31.3195 14.9918 31.3345C14.9877 31.3496 14.9889 31.3656 14.9953 31.3798C15.0059 31.3891 15.0186 31.3957 15.0323 31.399C15.0461 31.4023 15.0604 31.4021 15.0741 31.3985C15.0858 31.3912 15.0949 31.3804 15.1003 31.3676C15.1056 31.3549 15.107 31.3408 15.1041 31.3273C15.1009 31.3192 15.096 31.3119 15.0898 31.3059C15.0835 31.2998 15.0761 31.2952 15.0679 31.2924C15.0597 31.2895 15.0509 31.2885 15.0423 31.2893C15.0336 31.2902 15.0253 31.2929 15.0178 31.2973Z" fill="#42D4C6"/>
|
||||
<path d="M14.5641 29.7266C14.4854 29.8428 14.3991 29.9553 14.3129 30.0678C14.4741 30.0603 14.5341 30.0041 14.5641 29.7266Z" fill="#42D4C6"/>
|
||||
<path d="M14.6469 29.6209C14.7631 29.6209 14.8681 29.6021 14.8831 29.4446C14.8884 29.3899 14.8766 29.3349 14.8494 29.2871C14.7819 29.3996 14.7181 29.5121 14.6469 29.6209Z" fill="#42D4C6"/>
|
||||
<path d="M14.4253 31.2638C14.3982 31.2141 14.3541 31.1757 14.3011 31.1558C14.2481 31.1358 14.1897 31.1356 14.1366 31.1551C14.0838 31.1858 14.0442 31.235 14.0255 31.2931C14.0069 31.3513 14.0103 31.4143 14.0353 31.4701C14.0579 31.5161 14.0978 31.5513 14.1462 31.5681C14.1946 31.585 14.2477 31.5821 14.294 31.5601C14.3235 31.5512 14.3507 31.536 14.3737 31.5156C14.3968 31.4953 14.4152 31.4702 14.4276 31.442C14.4401 31.4139 14.4463 31.3834 14.4459 31.3527C14.4455 31.3219 14.4385 31.2916 14.4253 31.2638Z" fill="#42D4C6"/>
|
||||
<path d="M14.4481 32.0059C14.3881 32.0509 14.2569 32.1971 14.2906 32.2721C14.3244 32.3471 14.5269 32.3134 14.5981 32.2721C14.6694 32.2309 14.7144 32.1596 14.6544 32.0659C14.5944 31.9721 14.5269 31.9346 14.4481 32.0059Z" fill="#42D4C6"/>
|
||||
<path d="M15.8468 24.9633C15.8376 24.9303 15.8194 24.9005 15.7942 24.8773C15.7691 24.8542 15.7379 24.8385 15.7043 24.832C15.7043 24.937 15.738 25.042 15.7493 25.147C15.7691 25.1437 15.7879 25.1358 15.8042 25.124C15.8205 25.1123 15.8338 25.0969 15.8433 25.0792C15.8527 25.0614 15.8579 25.0417 15.8585 25.0216C15.8591 25.0015 15.8551 24.9816 15.8468 24.9633Z" fill="#42D4C6"/>
|
||||
<path d="M16.0568 25.8263C16.0906 25.4513 16.0381 25.3162 15.7606 25.2188C15.7793 25.4363 15.7906 25.6538 15.7906 25.8713C15.7906 25.9425 15.7906 26.0138 15.7906 26.0813C15.8041 26.0847 15.8183 26.0847 15.8318 26.0813C15.9481 26.0325 16.0418 25.9725 16.0568 25.8263Z" fill="#42D4C6"/>
|
||||
<path d="M6.16052 19.8563L6.21677 19.8301L6.16052 19.8563Z" fill="#42D4C6"/>
|
||||
<path d="M4.12421 21.3822C4.21421 21.2809 4.30421 21.1834 4.39796 21.0859C4.32296 21.1759 4.21796 21.2809 4.12421 21.3822Z" fill="#42D4C6"/>
|
||||
<path d="M18.4456 28.6834C18.4921 28.66 18.5284 28.6204 18.5477 28.572C18.567 28.5237 18.5681 28.47 18.5506 28.4209C18.5288 28.3684 18.4886 28.3256 18.4375 28.3008C18.3863 28.2759 18.3279 28.2706 18.2731 28.2859C18.2273 28.3105 18.1913 28.3498 18.1708 28.3975C18.1504 28.4452 18.1468 28.4984 18.1606 28.5484C18.1884 28.5976 18.2307 28.6369 18.2817 28.6611C18.3327 28.6853 18.39 28.6931 18.4456 28.6834Z" fill="#42D4C6"/>
|
||||
<path d="M18.618 30.9565C18.5669 30.945 18.5133 30.9523 18.4671 30.9771C18.421 31.0019 18.3853 31.0425 18.3667 31.0915C18.3447 31.1272 18.3371 31.1699 18.3455 31.211C18.3538 31.2521 18.3775 31.2885 18.4117 31.3128C18.543 31.4178 18.6555 31.3578 18.7867 31.2678C18.7605 31.129 18.7792 30.9865 18.618 30.9565Z" fill="#42D4C6"/>
|
||||
<path d="M10.128 18.9939C10.1092 19.0802 10.0867 19.1664 10.068 19.2527L10.2892 19.2864C10.315 19.2624 10.3357 19.2334 10.3498 19.2012C10.364 19.1689 10.3715 19.1341 10.3717 19.0989C10.2967 19.0277 10.2142 18.9639 10.128 18.9939Z" fill="#42D4C6"/>
|
||||
<path d="M18.8205 26.4709C18.6817 26.5347 18.633 26.6359 18.6855 26.7597C18.738 26.8834 18.9817 27.0522 19.1167 26.9884C19.1759 26.9415 19.2173 26.8759 19.2344 26.8023C19.2514 26.7287 19.243 26.6516 19.2105 26.5834C19.1714 26.5192 19.1096 26.472 19.0374 26.4512C18.9652 26.4304 18.8878 26.4374 18.8205 26.4709Z" fill="#42D4C6"/>
|
||||
<path d="M18.4568 30.2099C18.494 30.1785 18.518 30.1344 18.5243 30.0862C18.5243 30.0674 18.4456 30.0187 18.4268 30.0262C18.4081 30.0337 18.3068 30.0862 18.3218 30.1574C18.3368 30.2287 18.4381 30.2212 18.4568 30.2099Z" fill="#42D4C6"/>
|
||||
<path d="M3.19813 22.6685C3.15313 22.7473 3.11563 22.8335 3.07812 22.916C3.14187 22.7848 3.20938 22.6573 3.28063 22.541C3.26188 22.5785 3.22813 22.6198 3.19813 22.6685Z" fill="#42D4C6"/>
|
||||
<path d="M2.68048 23.9258C2.71798 23.8058 2.76299 23.6895 2.80424 23.5508C2.76674 23.6858 2.71798 23.802 2.68048 23.9258Z" fill="#42D4C6"/>
|
||||
<path d="M2.4668 24.9486C2.4668 24.8811 2.48555 24.8136 2.4968 24.7461C2.4818 24.8098 2.4743 24.8848 2.4668 24.9486Z" fill="#42D4C6"/>
|
||||
<path d="M12.5731 18.5481C12.5576 18.5679 12.5492 18.5923 12.5492 18.6174C12.5492 18.6426 12.5576 18.667 12.5731 18.6868C12.5985 18.7024 12.6277 18.7106 12.6575 18.7106C12.6873 18.7106 12.7165 18.7024 12.7419 18.6868C12.7794 18.6531 12.7419 18.5706 12.7156 18.5368C12.694 18.5225 12.6683 18.5159 12.6425 18.5179C12.6166 18.52 12.5922 18.5306 12.5731 18.5481Z" fill="#42D4C6"/>
|
||||
<path d="M14.4478 16.7583C14.594 16.7358 14.7628 16.7583 14.8865 16.6158V16.4058C15.044 16.2858 15.1303 16.1133 15.0703 16.0308C15.0494 15.9907 15.015 15.9592 14.9731 15.942C14.9312 15.9249 14.8846 15.9231 14.8415 15.9371C14.669 15.9746 14.6278 16.0421 14.6203 16.2521C14.5185 16.3426 14.4221 16.439 14.3315 16.5408C14.3171 16.5618 14.3087 16.5863 14.3072 16.6118C14.3058 16.6372 14.3114 16.6625 14.3234 16.685C14.3354 16.7075 14.3534 16.7262 14.3753 16.7391C14.3972 16.752 14.4223 16.7587 14.4478 16.7583Z" fill="#42D4C6"/>
|
||||
<path d="M16.3829 28.7632C16.4019 28.7603 16.4197 28.7522 16.4344 28.7399C16.4491 28.7276 16.4602 28.7114 16.4663 28.6933C16.4725 28.6751 16.4736 28.6556 16.4695 28.6368C16.4654 28.6181 16.4562 28.6009 16.4429 28.587C16.3979 28.5382 16.2742 28.4107 16.1992 28.4482C16.1242 28.4857 16.1617 28.6732 16.1992 28.7295C16.2367 28.7857 16.3229 28.7782 16.3829 28.7632Z" fill="#42D4C6"/>
|
||||
<path d="M15.3479 30.2098C15.2767 30.247 15.2193 30.306 15.1842 30.3783C15.1491 30.4505 15.1381 30.5321 15.1529 30.611C15.177 30.6679 15.2216 30.7137 15.2778 30.7394C15.334 30.765 15.3978 30.7687 15.4566 30.7498C15.5223 30.7154 15.5737 30.6589 15.6018 30.5903C15.6299 30.5217 15.633 30.4454 15.6104 30.3748C15.6047 30.3463 15.5932 30.3194 15.5767 30.2955C15.5603 30.2716 15.5391 30.2513 15.5146 30.2359C15.49 30.2205 15.4626 30.2102 15.4339 30.2057C15.4052 30.2012 15.376 30.2026 15.3479 30.2098Z" fill="#42D4C6"/>
|
||||
<path d="M16.1991 27.7762C16.1565 27.7149 16.0933 27.671 16.0211 27.6524C15.9488 27.6338 15.8722 27.6418 15.8054 27.6749C15.6141 27.7649 15.5541 27.8774 15.6141 28.0237C15.6528 28.0978 15.7151 28.1569 15.7912 28.1916C15.8673 28.2262 15.9528 28.2344 16.0341 28.2149C16.1074 28.1714 16.1636 28.1043 16.1936 28.0245C16.2236 27.9448 16.2256 27.8572 16.1991 27.7762Z" fill="#42D4C6"/>
|
||||
<path d="M15.8655 26.6356C15.8477 26.5834 15.8099 26.5403 15.7605 26.5156C15.7605 26.6431 15.723 26.7669 15.7043 26.8906C15.7548 26.8708 15.7977 26.8354 15.8267 26.7895C15.8557 26.7437 15.8693 26.6898 15.8655 26.6356Z" fill="#42D4C6"/>
|
||||
<path d="M15.4342 28.8749C15.3353 28.9276 15.2559 29.0107 15.2079 29.1121C15.16 29.2134 15.146 29.3275 15.168 29.4374C15.2132 29.526 15.2892 29.5951 15.3817 29.6317C15.4742 29.6683 15.5769 29.6698 15.6705 29.6362C15.7621 29.5977 15.8361 29.5264 15.8777 29.4361C15.9194 29.3459 15.9257 29.2433 15.8955 29.1487C15.8659 29.0542 15.8025 28.9739 15.7173 28.9234C15.6322 28.8728 15.5313 28.8556 15.4342 28.8749Z" fill="#42D4C6"/>
|
||||
<path d="M16.428 30.3669C16.3645 30.419 16.3198 30.4905 16.3008 30.5704C16.2818 30.6504 16.2896 30.7343 16.323 30.8094C16.3704 30.876 16.4407 30.9229 16.5203 30.9411C16.6 30.9594 16.6837 30.9477 16.7553 30.9084C16.827 30.8691 16.8818 30.8049 16.9092 30.7279C16.9367 30.6509 16.9349 30.5664 16.9043 30.4907C16.8818 30.4506 16.8514 30.4155 16.815 30.3874C16.7787 30.3594 16.737 30.3389 16.6925 30.3274C16.648 30.3158 16.6017 30.3134 16.5562 30.3202C16.5108 30.3269 16.4672 30.3429 16.428 30.3669Z" fill="#42D4C6"/>
|
||||
<path d="M16.773 26.3507C16.7261 26.3802 16.6914 26.4257 16.6756 26.4788C16.6597 26.5319 16.6637 26.589 16.6867 26.6394C16.7186 26.6858 16.7655 26.7197 16.8195 26.7354C16.8735 26.7511 16.9312 26.7477 16.983 26.7257C17.0333 26.7013 17.072 26.6582 17.0909 26.6057C17.1099 26.5531 17.1075 26.4952 17.0842 26.4444C17.0549 26.3912 17.0059 26.3516 16.9477 26.3341C16.8895 26.3166 16.8268 26.3225 16.773 26.3507Z" fill="#42D4C6"/>
|
||||
<path d="M17.7519 19.4281C17.8045 19.388 17.8436 19.3327 17.8637 19.2696C17.8838 19.2066 17.8841 19.1389 17.8644 19.0757C17.8462 19.016 17.8086 18.9642 17.7577 18.9282C17.7068 18.8922 17.6454 18.8742 17.5831 18.8769C17.4884 18.8774 17.394 18.8888 17.3019 18.9107C17.2723 18.8742 17.2397 18.8403 17.2044 18.8094C17.1423 18.7521 17.0644 18.7148 16.9809 18.7021C16.8974 18.6894 16.812 18.7019 16.7356 18.7381C16.6649 18.785 16.6074 18.8493 16.5686 18.9248C16.5299 19.0004 16.5112 19.0846 16.5144 19.1694C16.519 19.2342 16.5486 19.2947 16.5969 19.3382C16.632 19.3768 16.6749 19.4077 16.7227 19.4289C16.7704 19.45 16.8221 19.4609 16.8744 19.4609C16.9266 19.4609 16.9783 19.45 17.0261 19.4289C17.0739 19.4077 17.1167 19.3768 17.1519 19.3382L17.2531 19.2444C17.308 19.3116 17.3669 19.3755 17.4294 19.4356C17.4493 19.4594 17.4742 19.4784 17.5025 19.4912C17.5307 19.504 17.5615 19.5103 17.5924 19.5096C17.6234 19.5089 17.6539 19.5012 17.6815 19.4871C17.7091 19.473 17.7331 19.4528 17.7519 19.4281Z" fill="#42D4C6"/>
|
||||
<path d="M16.6117 27.1098C16.5827 27.1876 16.5699 27.2706 16.5742 27.3536C16.6005 27.4698 16.7692 27.5073 16.8855 27.4436C16.9082 27.4308 16.9281 27.4136 16.9439 27.3928C16.9598 27.3721 16.9712 27.3484 16.9775 27.3231C16.9838 27.2978 16.9849 27.2715 16.9807 27.2458C16.9765 27.2201 16.967 27.1955 16.953 27.1736C16.9147 27.1218 16.8582 27.0865 16.7949 27.0746C16.7316 27.0628 16.6661 27.0754 16.6117 27.1098Z" fill="#42D4C6"/>
|
||||
<path d="M13.1806 31.561C13.0268 31.636 12.9968 31.786 13.0981 31.9735C13.1335 32.0276 13.1857 32.0686 13.2466 32.0903C13.3076 32.1119 13.3739 32.1131 13.4356 32.0935C13.5593 32.0335 13.6906 31.7185 13.6381 31.6397C13.5817 31.5771 13.506 31.5353 13.423 31.5211C13.34 31.5068 13.2546 31.5208 13.1806 31.561Z" fill="#42D4C6"/>
|
||||
<path d="M17.4179 18.2279C17.4632 18.239 17.5109 18.2337 17.5527 18.2132C17.5945 18.1926 17.6278 18.158 17.6467 18.1154C17.6543 18.0836 17.6534 18.0503 17.6438 18.019C17.6343 17.9876 17.6166 17.9594 17.5925 17.9372C17.5684 17.9151 17.5388 17.8997 17.5068 17.8928C17.4748 17.8859 17.4415 17.8877 17.4104 17.8979C17.382 17.9154 17.3587 17.9401 17.3427 17.9694C17.3268 17.9987 17.3188 18.0317 17.3196 18.0651C17.3203 18.0984 17.3298 18.131 17.3471 18.1596C17.3643 18.1882 17.3887 18.2117 17.4179 18.2279Z" fill="#42D4C6"/>
|
||||
<path d="M13.323 31.2481C13.368 31.1956 13.428 31.0756 13.3905 31.0344L13.368 31.0156C13.2817 31.0869 13.1917 31.1506 13.1055 31.2181C13.1655 31.2594 13.323 31.2744 13.323 31.2481Z" fill="#42D4C6"/>
|
||||
<path d="M3.57306 22.1016C3.59556 22.0678 3.62181 22.0378 3.64431 22.0078C3.59931 22.0341 3.57306 22.0716 3.57306 22.1016Z" fill="#42D4C6"/>
|
||||
<path d="M3.3967 22.362C3.43045 22.3057 3.4642 22.2457 3.5017 22.1895C3.4642 22.2457 3.42669 22.302 3.39294 22.3582L3.3967 22.362Z" fill="#42D4C6"/>
|
||||
<path d="M21.1755 25.9874C21.1446 25.9497 21.1002 25.9255 21.0517 25.9199C21.0217 25.9199 20.9355 25.9762 20.958 26.0587C20.9805 26.1412 21.0855 26.0999 21.1267 26.0924C21.168 26.0849 21.198 26.0024 21.1755 25.9874Z" fill="#42D4C6"/>
|
||||
<path d="M11.9504 31.9355C11.7179 32.0443 11.4817 32.1418 11.2379 32.228C11.2399 32.268 11.2487 32.3074 11.2642 32.3443C11.2926 32.4048 11.3366 32.4565 11.3917 32.4943H11.8942C11.9536 32.4336 11.9957 32.3582 12.0161 32.2757C12.0366 32.1933 12.0346 32.1069 12.0104 32.0255C11.9949 31.9928 11.9747 31.9625 11.9504 31.9355Z" fill="#42D4C6"/>
|
||||
<path d="M13.698 17.4945C13.5855 17.4495 13.4843 17.3557 13.3868 17.397C13.356 17.4071 13.3282 17.4247 13.3059 17.4483C13.2837 17.4719 13.2676 17.5006 13.2593 17.532C13.2368 17.5882 13.188 17.6332 13.1993 17.727C13.2084 17.7943 13.2323 17.8588 13.2692 17.9159C13.3062 17.9729 13.3553 18.0211 13.413 18.057C13.4677 18.0854 13.5291 18.0983 13.5906 18.0944C13.652 18.0904 13.7113 18.0697 13.7618 18.0345C13.8022 18.0031 13.8336 17.9616 13.8527 17.9142C13.8718 17.8667 13.8779 17.8151 13.8705 17.7645C13.8671 17.7085 13.8494 17.6544 13.8193 17.6071C13.7891 17.5599 13.7474 17.5211 13.698 17.4945Z" fill="#42D4C6"/>
|
||||
<path d="M17.6019 21.0374C17.6407 21.1123 17.7036 21.1719 17.7805 21.2066C17.8574 21.2413 17.9438 21.2491 18.0256 21.2287C18.0962 21.1904 18.1508 21.1282 18.1797 21.0533C18.2085 20.9784 18.2098 20.8957 18.1831 20.8199C18.1269 20.6699 17.9994 20.6324 17.8081 20.7074C17.6769 20.7562 17.5644 20.9362 17.6019 21.0374Z" fill="#42D4C6"/>
|
||||
<path d="M10.6717 32.377C10.5629 32.4032 10.4542 32.4295 10.3454 32.4482C10.3437 32.4594 10.3437 32.4708 10.3454 32.482H10.6979C10.6979 32.4595 10.6979 32.4407 10.6979 32.4182C10.6917 32.403 10.6828 32.389 10.6717 32.377Z" fill="#42D4C6"/>
|
||||
<path d="M19.6718 24.0903C19.6118 24.1128 19.578 24.2178 19.548 24.2628C19.6118 24.4128 19.7018 24.4128 19.7805 24.3828C19.8593 24.3528 19.9343 24.2703 19.8743 24.184C19.8143 24.0978 19.7205 24.0603 19.6718 24.0903Z" fill="#42D4C6"/>
|
||||
<path d="M17.8791 22.1482C17.8424 22.165 17.8097 22.1895 17.7832 22.2199C17.7566 22.2503 17.7368 22.2861 17.7251 22.3247C17.7134 22.3633 17.7101 22.404 17.7153 22.4441C17.7205 22.4841 17.7342 22.5226 17.7554 22.557C17.7768 22.6043 17.8078 22.6467 17.8465 22.6814C17.8851 22.7161 17.9306 22.7424 17.9799 22.7586C18.0293 22.7748 18.0815 22.7806 18.1332 22.7756C18.1849 22.7706 18.235 22.7549 18.2804 22.7295C18.357 22.682 18.414 22.6084 18.4409 22.5223C18.4677 22.4363 18.4627 22.3434 18.4266 22.2607C18.3667 22.1759 18.2768 22.1172 18.1751 22.0963C18.0734 22.0754 17.9676 22.0939 17.8791 22.1482Z" fill="#42D4C6"/>
|
||||
<path d="M20.2305 25.7294C20.2147 25.7371 20.2006 25.7481 20.1893 25.7617C20.1781 25.7754 20.1699 25.7912 20.1653 25.8083C20.1606 25.8253 20.1597 25.8432 20.1626 25.8606C20.1654 25.878 20.172 25.8947 20.1818 25.9094C20.2008 25.9325 20.2271 25.9485 20.2565 25.9547C20.2858 25.9608 20.3164 25.9567 20.343 25.9431C20.37 25.9322 20.3918 25.9113 20.4037 25.8847C20.4155 25.8581 20.4167 25.828 20.4068 25.8006C20.4019 25.7829 20.3929 25.7666 20.3807 25.7529C20.3684 25.7392 20.3532 25.7285 20.3362 25.7216C20.3192 25.7148 20.3008 25.7119 20.2825 25.7132C20.2642 25.7145 20.2464 25.7201 20.2305 25.7294Z" fill="#42D4C6"/>
|
||||
<path d="M17.4968 24.0005C17.3768 24.053 17.4256 24.2256 17.4293 24.3081C17.4331 24.3906 17.5568 24.4355 17.6581 24.3943C17.7593 24.353 17.8118 24.2668 17.7443 24.1768C17.6768 24.0868 17.6168 23.9518 17.4968 24.0005Z" fill="#42D4C6"/>
|
||||
<path d="M19.7169 25.0653C19.6978 25.0838 19.6845 25.1075 19.6785 25.1334C19.6726 25.1594 19.6742 25.1865 19.6831 25.2115C19.7056 25.2528 19.7581 25.3278 19.8031 25.3015C19.8242 25.2865 19.8406 25.2659 19.8505 25.242C19.8604 25.2182 19.8635 25.192 19.8594 25.1665C19.8519 25.129 19.7619 25.039 19.7169 25.0653Z" fill="#42D4C6"/>
|
||||
<path d="M20.0168 27.6079C19.9921 27.6154 19.9692 27.628 19.9496 27.6448C19.93 27.6615 19.914 27.6822 19.9028 27.7054C19.8915 27.7287 19.8851 27.754 19.8841 27.7798C19.8831 27.8056 19.8874 27.8313 19.8968 27.8554C19.9195 27.9018 19.958 27.9387 20.0055 27.9593C20.0529 27.9799 20.1061 27.983 20.1556 27.9679C20.1809 27.9614 20.2046 27.9495 20.2249 27.9329C20.2452 27.9164 20.2616 27.8956 20.273 27.872C20.2845 27.8484 20.2906 27.8227 20.291 27.7965C20.2915 27.7703 20.2862 27.7443 20.2756 27.7204C20.2534 27.6734 20.215 27.6361 20.1674 27.6154C20.1198 27.5947 20.0662 27.592 20.0168 27.6079Z" fill="#42D4C6"/>
|
||||
<path d="M19.7318 28.7822C19.5331 28.7559 19.3156 28.9209 19.3343 29.0822C19.3392 29.149 19.3656 29.2126 19.4095 29.2632C19.4535 29.3139 19.5126 29.349 19.5781 29.3634C19.6373 29.3844 19.7024 29.3817 19.7597 29.3558C19.817 29.33 19.8621 29.283 19.8856 29.2247C19.9343 29.1272 20.0881 28.9584 20.0018 28.8272C19.9156 28.6959 19.8068 28.7934 19.7318 28.7822Z" fill="#42D4C6"/>
|
||||
<path d="M19.3229 20.929C19.3889 20.9038 19.4439 20.8561 19.4782 20.7944C19.5125 20.7327 19.5239 20.6608 19.5104 20.5915C19.4809 20.5192 19.4277 20.4591 19.3596 20.4209C19.2915 20.3828 19.2125 20.3689 19.1354 20.3815C19.0079 20.4227 18.9554 20.6177 19.0229 20.8015C19.0477 20.8566 19.0923 20.9003 19.1479 20.924C19.2036 20.9476 19.266 20.9494 19.3229 20.929Z" fill="#42D4C6"/>
|
||||
<path d="M19.3678 22.5141C19.4916 22.5741 19.5966 22.6641 19.7166 22.5516C19.7352 22.5366 19.7506 22.5182 19.7621 22.4972C19.7735 22.4763 19.7806 22.4533 19.783 22.4296C19.7855 22.4058 19.7832 22.3819 19.7763 22.359C19.7694 22.3362 19.758 22.315 19.7428 22.2966C19.7215 22.2681 19.6945 22.2443 19.6635 22.2269C19.6325 22.2095 19.5982 22.1987 19.5628 22.1953C19.3978 22.2141 19.3641 22.3453 19.3678 22.5141Z" fill="#42D4C6"/>
|
||||
<path d="M11.579 16.935C11.6653 16.8975 11.6765 16.83 11.6278 16.7363C11.6015 16.7363 11.5603 16.695 11.534 16.7063C11.436 16.734 11.3315 16.7274 11.2378 16.6875C11.1928 16.6875 11.0953 16.7475 11.069 16.8037C11.0584 16.838 11.0553 16.8741 11.0598 16.9097C11.0643 16.9453 11.0764 16.9795 11.0953 17.01C11.1178 17.0475 11.2115 17.0625 11.2678 17.0513C11.3746 17.0214 11.4788 16.9825 11.579 16.935Z" fill="#42D4C6"/>
|
||||
<path d="M10.9341 18.9297C10.7916 19.0385 10.7316 19.151 10.7804 19.226C10.8302 19.2713 10.8921 19.3015 10.9585 19.3128C11.025 19.3241 11.0933 19.3161 11.1554 19.2897C11.193 19.2434 11.216 19.1869 11.2213 19.1274C11.2267 19.068 11.2141 19.0083 11.1854 18.956C11.1728 18.9349 11.1555 18.917 11.1349 18.9038C11.1142 18.8905 11.0907 18.8823 11.0663 18.8798C11.0419 18.8772 11.0173 18.8804 10.9943 18.8891C10.9714 18.8977 10.9507 18.9117 10.9341 18.9297Z" fill="#42D4C6"/>
|
||||
<path d="M12.0219 15.4878C12.0456 15.4791 12.0673 15.4658 12.0857 15.4485C12.1041 15.4312 12.1188 15.4104 12.129 15.3872C12.1391 15.3641 12.1445 15.3392 12.1448 15.314C12.1451 15.2887 12.1403 15.2637 12.1307 15.2403C12.1216 15.2185 12.108 15.1989 12.0907 15.1829C12.0734 15.1668 12.0529 15.1546 12.0305 15.1471C12.0081 15.1397 11.9843 15.1371 11.9609 15.1396C11.9374 15.1421 11.9147 15.1496 11.8944 15.1616C11.8748 15.169 11.8569 15.1803 11.8419 15.1948C11.8268 15.2094 11.8149 15.2268 11.8068 15.2461C11.7987 15.2654 11.7947 15.2862 11.7949 15.3071C11.7952 15.328 11.7997 15.3487 11.8081 15.3678C11.8132 15.3904 11.823 15.4116 11.8368 15.4301C11.8506 15.4487 11.8682 15.4641 11.8883 15.4754C11.9085 15.4867 11.9308 15.4937 11.9538 15.4958C11.9768 15.4979 12 15.4952 12.0219 15.4878Z" fill="#42D4C6"/>
|
||||
<path d="M11.823 18.0974C11.628 18.1987 11.5418 18.3487 11.6055 18.4724C11.6223 18.5086 11.6463 18.541 11.6761 18.5676C11.7059 18.5942 11.7408 18.6144 11.7787 18.627C11.8165 18.6396 11.8566 18.6443 11.8964 18.6408C11.9361 18.6373 11.9748 18.6257 12.0099 18.6067C12.045 18.5878 12.0759 18.5618 12.1006 18.5305C12.1253 18.4991 12.1433 18.463 12.1536 18.4245C12.1638 18.3859 12.1661 18.3456 12.1602 18.3061C12.1543 18.2667 12.1403 18.2288 12.1193 18.1949C12.0881 18.1477 12.0419 18.1123 11.9881 18.0946C11.9343 18.0769 11.8762 18.0779 11.823 18.0974Z" fill="#42D4C6"/>
|
||||
<path d="M10.938 18.1343C10.9606 18.1293 10.9817 18.1196 11.0002 18.1057C11.0186 18.0918 11.0338 18.0742 11.0448 18.0539C11.0559 18.0337 11.0624 18.0113 11.064 17.9883C11.0657 17.9653 11.0623 17.9422 11.0543 17.9206C11.0055 17.7481 10.923 17.6506 10.8368 17.6656C10.7803 17.6964 10.7327 17.7412 10.6986 17.7957C10.6644 17.8502 10.6449 17.9126 10.6418 17.9768C10.6568 18.0593 10.8293 18.1531 10.938 18.1343Z" fill="#42D4C6"/>
|
||||
<path d="M12.089 16.1355C11.9428 16.203 11.909 16.338 11.9953 16.5105C12.0815 16.683 12.194 16.6867 12.3703 16.6005C12.5465 16.5142 12.5503 16.4317 12.5128 16.3342C12.4672 16.2654 12.4035 16.2105 12.3288 16.1754C12.254 16.1403 12.1711 16.1265 12.089 16.1355Z" fill="#42D4C6"/>
|
||||
<path d="M11.5942 16.1855C11.6879 16.1405 11.7779 15.9493 11.7404 15.878C11.7017 15.8248 11.647 15.7852 11.5844 15.765C11.5217 15.7448 11.4542 15.745 11.3917 15.7655C11.3431 15.7945 11.3077 15.8412 11.293 15.8958C11.2783 15.9504 11.2855 16.0086 11.3129 16.058C11.3373 16.109 11.3789 16.1497 11.4303 16.173C11.4818 16.1964 11.5398 16.2008 11.5942 16.1855Z" fill="#42D4C6"/>
|
||||
<path d="M13.5028 19.6272C13.4274 19.5766 13.3469 19.5339 13.2628 19.4997C13.1955 19.4752 13.1219 19.4741 13.0538 19.4965C12.9858 19.519 12.9273 19.5637 12.8878 19.6235C12.8464 19.6931 12.8304 19.7749 12.8427 19.855C12.8551 19.935 12.8949 20.0083 12.9553 20.0622C13.0214 20.1064 13.1023 20.1226 13.1803 20.1072C13.2863 20.0855 13.3794 20.023 13.4398 19.9332C13.5001 19.8434 13.5227 19.7335 13.5028 19.6272Z" fill="#42D4C6"/>
|
||||
<path d="M13.5442 19.0084C13.5442 18.9484 13.4917 18.9296 13.4317 18.9484C13.42 18.9497 13.4088 18.9538 13.399 18.9603C13.3891 18.9668 13.381 18.9755 13.3751 18.9857C13.3693 18.9959 13.3659 19.0074 13.3653 19.0191C13.3647 19.0309 13.3669 19.0426 13.3717 19.0534C13.3717 19.1134 13.4205 19.1396 13.4842 19.1209C13.497 19.1201 13.5093 19.116 13.52 19.1091C13.5307 19.1021 13.5395 19.0926 13.5455 19.0813C13.5515 19.0701 13.5546 19.0575 13.5543 19.0447C13.5541 19.0319 13.5506 19.0194 13.5442 19.0084Z" fill="#42D4C6"/>
|
||||
<path d="M13.3231 20.3095C13.2726 20.3208 13.2253 20.3436 13.185 20.3761C13.1447 20.4086 13.1124 20.45 13.0906 20.497C13.2936 20.6468 13.4877 20.8083 13.6719 20.9807C13.7368 20.9447 13.7885 20.8889 13.8196 20.8215C13.8506 20.754 13.8593 20.6784 13.8444 20.6057C13.8024 20.5057 13.7285 20.4224 13.6342 20.3688C13.5399 20.3153 13.4305 20.2944 13.3231 20.3095Z" fill="#42D4C6"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1526_242627">
|
||||
<rect width="47.3812" height="45" fill="white" transform="translate(0.375 1.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 212 KiB |
|
@ -0,0 +1,365 @@
|
|||
<svg width="48" height="49" viewBox="0 0 48 49" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<g clip-path="url(#clip0_1526_243674)">
|
||||
<path d="M24 47.8108C37.2548 47.8108 48 37.1079 48 23.9054C48 10.7028 37.2548 0 24 0C10.7452 0 0 10.7028 0 23.9054C0 37.1079 10.7452 47.8108 24 47.8108Z" fill="#ECF0F6"/>
|
||||
<path d="M44.472 18.1482C44.536 18.0407 44.44 17.957 44.34 17.9132C44.24 17.8694 44.076 17.9132 44.068 18.0287C44.06 18.1443 44.024 18.3076 44.168 18.3395C44.312 18.3713 44.424 18.2239 44.472 18.1482Z" fill="white"/>
|
||||
<path d="M44.044 18.6736C44.0451 18.5875 44.012 18.5044 43.952 18.4425C43.864 18.3747 43.672 18.4704 43.66 18.5859C43.6642 18.653 43.6833 18.7183 43.716 18.7772C43.872 18.8409 44.036 18.7851 44.044 18.6736Z" fill="white"/>
|
||||
<path d="M44.864 17.3506C44.9427 17.3873 45.0323 17.3933 45.1152 17.3675C45.1981 17.3417 45.2683 17.2859 45.312 17.2112C45.3507 17.0948 45.3479 16.9686 45.3042 16.854C45.2605 16.7393 45.1785 16.6432 45.072 16.5817C45.0045 16.566 44.9338 16.57 44.8685 16.5933C44.8033 16.6166 44.7461 16.6583 44.704 16.7132C44.6427 16.6715 44.5731 16.6436 44.4999 16.6312C44.4267 16.6188 44.3517 16.6223 44.28 16.6414C44.1701 16.6936 44.083 16.7838 44.0351 16.8953C43.9873 17.0068 43.9819 17.1319 44.02 17.247C44.0657 17.3594 44.1512 17.4512 44.2604 17.5048C44.3695 17.5584 44.4947 17.5702 44.612 17.5379C44.7114 17.4992 44.7985 17.4345 44.864 17.3506Z" fill="white"/>
|
||||
<path d="M40.86 6.96076L40.896 6.93289C40.772 6.80938 40.644 6.68984 40.496 6.57031C40.4781 6.6048 40.4688 6.64306 40.4688 6.68188C40.4688 6.7207 40.4781 6.75894 40.496 6.79343C40.5064 6.82993 40.5246 6.86376 40.5493 6.8926C40.5741 6.92143 40.6048 6.9446 40.6394 6.96049C40.6739 6.97639 40.7115 6.98464 40.7496 6.98469C40.7877 6.98474 40.8253 6.97657 40.86 6.96076Z" fill="white"/>
|
||||
<path d="M43.244 17.416C43.188 17.5315 43.2919 17.7268 43.5079 17.8383C43.5519 17.8144 43.6639 17.7945 43.7079 17.7307C43.7541 17.6636 43.7723 17.5814 43.7589 17.5012C43.7455 17.4209 43.7015 17.349 43.636 17.3004C43.5677 17.2686 43.4902 17.2628 43.4179 17.2841C43.3457 17.3054 43.2838 17.3523 43.244 17.416Z" fill="white"/>
|
||||
<path d="M44.272 16.304C44.3349 16.3168 44.4004 16.307 44.4567 16.2764C44.5131 16.2458 44.5568 16.1963 44.58 16.1367C44.5919 16.1104 44.5981 16.0819 44.5981 16.053C44.5981 16.0242 44.5919 15.9956 44.58 15.9694C44.4869 15.8732 44.3881 15.7827 44.284 15.6984C44.284 15.3757 44.18 15.1526 43.984 15.1406C43.9122 15.1473 43.8428 15.1701 43.7811 15.2074C43.7195 15.2446 43.6671 15.2954 43.628 15.3558C43.6087 15.3551 43.5895 15.3592 43.5721 15.3675C43.5547 15.3758 43.5396 15.3882 43.528 15.4036C43.521 15.4178 43.5173 15.4335 43.5173 15.4494C43.5173 15.4653 43.521 15.481 43.528 15.4952C43.5225 15.5255 43.5225 15.5566 43.528 15.5869C43.528 15.81 43.616 15.8817 44.064 15.9255C44.06 16.0968 44.036 16.2801 44.272 16.304Z" fill="white"/>
|
||||
<path d="M43.536 13.8806C43.324 13.9762 43.256 14.0917 43.32 14.2431C43.384 14.3945 43.596 14.542 43.76 14.4623C43.8237 14.3982 43.8715 14.3202 43.8993 14.2343C43.9271 14.1485 43.9342 14.0573 43.92 13.9682C43.872 13.8328 43.728 13.7929 43.536 13.8806Z" fill="white"/>
|
||||
<path d="M42.408 10.8962C42.4498 10.9081 42.4942 10.9081 42.536 10.8962C42.5893 10.9516 42.6338 11.0147 42.668 11.0834C42.703 11.1673 42.7657 11.2367 42.8457 11.2801C42.9257 11.3236 43.0183 11.3385 43.108 11.3225C43.304 11.2906 43.38 11.1512 43.264 10.8842C43.176 10.8006 43.048 10.6571 42.896 10.5336C42.8947 10.5244 42.8947 10.515 42.896 10.5057C42.9038 10.4196 42.877 10.334 42.8215 10.2675C42.766 10.2011 42.6864 10.1592 42.6 10.1511C42.4 10.1073 42.112 10.2388 42.08 10.3902C42.0658 10.4996 42.0909 10.6104 42.151 10.703C42.211 10.7957 42.3021 10.8641 42.408 10.8962Z" fill="white"/>
|
||||
<path d="M43.512 10.3661C43.5765 10.3226 43.6255 10.2598 43.652 10.1868C43.468 9.92781 43.284 9.67679 43.092 9.42578C43.0499 9.43188 43.0101 9.44831 42.976 9.47359C42.9498 9.49233 42.9279 9.5163 42.9116 9.54394C42.8952 9.57158 42.8849 9.60231 42.8811 9.63416C42.8773 9.66602 42.8803 9.69829 42.8897 9.72895C42.8992 9.75961 42.9149 9.788 42.936 9.81226C42.9659 9.84724 43.0026 9.8757 43.044 9.89592C43.0149 9.96608 43.0149 10.0449 43.044 10.1151C43.184 10.3701 43.324 10.4497 43.512 10.3661Z" fill="white"/>
|
||||
<path d="M45.224 12.9973C45.2124 13.0697 45.2259 13.1439 45.2622 13.2076C45.2986 13.2713 45.3557 13.3208 45.424 13.348C45.4569 13.3561 45.4912 13.3561 45.524 13.348L45.312 12.9495C45.28 12.9177 45.248 12.9336 45.224 12.9973Z" fill="white"/>
|
||||
<path d="M46.576 15.786C46.46 15.4672 46.336 15.1565 46.208 14.8457C46.1568 14.8716 46.1073 14.9009 46.06 14.9333C46.0091 14.9635 45.9666 15.0059 45.9363 15.0566C45.906 15.1073 45.8889 15.1647 45.8865 15.2237C45.8841 15.2827 45.8966 15.3413 45.9227 15.3942C45.9488 15.4472 45.9877 15.4928 46.036 15.527C46.205 15.6344 46.3863 15.7214 46.576 15.786Z" fill="white"/>
|
||||
<path d="M45.152 14.4669C45.2009 14.5288 45.2605 14.5814 45.328 14.6223C45.3964 14.666 45.4672 14.7059 45.54 14.7419C45.772 14.8694 45.94 14.8454 46.064 14.6781C46.0842 14.6505 46.0991 14.6194 46.108 14.5865C46.02 14.3793 45.924 14.1881 45.832 13.9729C45.6776 13.8546 45.5355 13.7211 45.408 13.5745C45.28 13.4111 45.008 13.3155 44.9 13.4111C44.8594 13.4644 44.8375 13.5295 44.8375 13.5964C44.8375 13.6633 44.8594 13.7283 44.9 13.7816C45.06 13.8932 44.984 14.0127 44.996 14.1402C45.0222 14.2596 45.0755 14.3714 45.152 14.4669Z" fill="white"/>
|
||||
<path d="M42.56 9.37584C42.836 9.51529 42.96 9.51927 43.064 9.37584L42.716 8.93359C42.544 9.04515 42.56 9.21647 42.56 9.37584Z" fill="white"/>
|
||||
<path d="M41.984 9.04799C42.052 9.04799 42.168 8.95633 42.172 8.90055C42.1793 8.84704 42.1756 8.79261 42.1612 8.74056C42.1467 8.68851 42.1219 8.63993 42.088 8.59777C41.936 8.45832 41.824 8.59775 41.688 8.70134C41.724 8.89656 41.78 9.05197 41.984 9.04799Z" fill="white"/>
|
||||
<path d="M16.508 5.63395C16.5581 5.58124 16.5889 5.51325 16.5954 5.44096C16.6019 5.36867 16.5839 5.29629 16.544 5.23552C16.352 5.02834 16.104 4.96857 15.976 5.09606C15.918 5.181 15.889 5.28227 15.8934 5.38488C15.8977 5.4875 15.9351 5.586 16 5.6658C16.0779 5.71246 16.1682 5.73441 16.2589 5.72871C16.3497 5.72302 16.4365 5.68997 16.508 5.63395Z" fill="white"/>
|
||||
<path d="M25.264 0.247958C25.14 0.46709 25.184 0.618482 25.416 0.761915C25.4902 0.815624 25.5817 0.840416 25.673 0.831609C25.7644 0.822802 25.8494 0.781006 25.912 0.714106C25.9559 0.598346 25.9613 0.471615 25.9275 0.352549C25.8936 0.233482 25.8223 0.128383 25.724 0.0527344H25.52C25.4146 0.0864636 25.3241 0.155428 25.264 0.247958Z" fill="white"/>
|
||||
<path d="M44.5 19.7061C44.604 19.6503 44.668 19.5507 44.592 19.4551C44.516 19.3595 44.36 19.2081 44.276 19.2519C44.192 19.2957 44.196 19.4711 44.208 19.5826C44.1 19.5268 43.984 19.5826 43.932 19.7221C43.9211 19.7459 43.916 19.772 43.9171 19.7982C43.9183 19.8244 43.9255 19.8499 43.9384 19.8728C43.9512 19.8956 43.9693 19.9152 43.9911 19.9299C44.0129 19.9445 44.0379 19.9538 44.064 19.9571C44.144 19.9571 44.368 20.0129 44.396 19.8974C44.4006 19.8695 44.3994 19.841 44.3925 19.8136C44.3857 19.7862 44.3732 19.7604 44.356 19.738C44.4062 19.7432 44.4567 19.7321 44.5 19.7061Z" fill="white"/>
|
||||
<path d="M22.952 2.714C22.908 2.75783 22.872 2.95704 22.928 3.00485C22.984 3.05266 23.196 3.00485 23.208 2.95704C23.22 2.90923 23.256 2.71001 23.208 2.67814C23.1658 2.66175 23.1201 2.65644 23.0753 2.66272C23.0304 2.669 22.988 2.68667 22.952 2.714Z" fill="white"/>
|
||||
<path d="M24.228 0.246635C24.2178 0.209751 24.2015 0.174764 24.18 0.143041C24.2157 0.109139 24.2419 0.0665743 24.256 0.0195312H24H23.836C23.8341 0.0327394 23.8341 0.04618 23.836 0.0593881C23.836 0.0593881 23.808 0.0593667 23.804 0.0872563C23.7478 0.209305 23.6984 0.334333 23.656 0.461775C23.352 0.569349 23.184 0.760601 23.256 0.943875C23.3125 1.04379 23.3999 1.12293 23.505 1.16957C23.6102 1.21621 23.7277 1.22789 23.84 1.20286C24.052 1.13911 24.08 1.01558 23.96 0.585285C24.112 0.501616 24.292 0.457799 24.228 0.246635Z" fill="white"/>
|
||||
<path d="M26.9 1.23042C27.028 1.19854 27.176 1.21051 27.252 1.09098C27.328 0.971453 27.556 0.648721 27.42 0.433573C27.284 0.218424 27.132 0.385765 26.988 0.361859C26.9244 0.353101 26.8595 0.362287 26.8008 0.388341C26.7422 0.414395 26.692 0.456274 26.656 0.509274C26.5589 0.525205 26.4693 0.571218 26.4 0.64076C26.3429 0.715118 26.312 0.806135 26.312 0.899745C26.312 0.993355 26.3429 1.08435 26.4 1.15871C26.3766 1.16317 26.3526 1.16148 26.3301 1.15379C26.3077 1.1461 26.2876 1.13268 26.272 1.11488C26.164 1.01528 25.924 1.01529 25.736 1.25435C25.548 1.4934 25.672 1.8679 25.896 1.87985C26.12 1.8918 26.184 1.76831 26.24 1.82409C26.296 1.87987 26.344 2.06313 26.492 2.05915C26.64 2.05516 26.804 1.66073 26.796 1.5651C26.788 1.46948 26.712 1.36589 26.772 1.2862C26.8178 1.27592 26.8613 1.25698 26.9 1.23042Z" fill="white"/>
|
||||
<path d="M31.224 1.18296C31.1399 1.14926 31.0479 1.13999 30.9587 1.15621C30.8695 1.17243 30.7867 1.21349 30.72 1.27462C30.6939 1.36821 30.6963 1.4674 30.7269 1.55962C30.7575 1.65184 30.815 1.73292 30.892 1.79256C30.916 1.81299 30.9443 1.82782 30.9748 1.83597C31.0053 1.84411 31.0372 1.84537 31.0683 1.83964C31.0993 1.83391 31.1287 1.82136 31.1542 1.80287C31.1798 1.78438 31.2009 1.76043 31.216 1.73279C31.372 1.5017 31.372 1.28257 31.224 1.18296Z" fill="white"/>
|
||||
<path d="M27.564 1.20709C27.5419 1.25813 27.5336 1.31403 27.54 1.36925C27.5463 1.42446 27.5669 1.47708 27.6 1.52186C27.652 1.61749 27.816 1.57763 27.888 1.486C27.9084 1.46717 27.9239 1.44369 27.9332 1.41759C27.9425 1.39148 27.9453 1.36354 27.9413 1.33612C27.9374 1.30871 27.9269 1.28262 27.9106 1.26016C27.8944 1.23769 27.8728 1.21948 27.848 1.20709C27.772 1.16725 27.628 1.11147 27.564 1.20709Z" fill="white"/>
|
||||
<path d="M23.236 3.88081C23.299 3.92927 23.3763 3.95557 23.4559 3.95557C23.5356 3.95557 23.613 3.92927 23.676 3.88081C23.7355 3.7923 23.7706 3.68969 23.7776 3.58336C23.7847 3.47703 23.7634 3.37073 23.716 3.2752C23.6246 3.22556 23.5187 3.20915 23.4165 3.22878C23.3144 3.24841 23.2222 3.30286 23.1559 3.38279C23.0119 3.52223 23.04 3.70551 23.236 3.88081Z" fill="white"/>
|
||||
<path d="M16.064 3.61008C15.9697 3.54969 15.86 3.51758 15.748 3.51758C15.6359 3.51758 15.5262 3.54969 15.432 3.61008C15.3657 3.68329 15.3289 3.7784 15.3289 3.87702C15.3289 3.97564 15.3657 4.07077 15.432 4.14398C15.5072 4.21427 15.6046 4.25628 15.7075 4.26282C15.8104 4.26936 15.9124 4.24002 15.996 4.17982C16.0757 4.10981 16.1267 4.01299 16.1392 3.90788C16.1518 3.80277 16.125 3.69675 16.064 3.61008Z" fill="white"/>
|
||||
<path d="M31.408 2.0392C31.4736 2.07839 31.5519 2.09075 31.6265 2.07366C31.7011 2.05658 31.7661 2.01139 31.808 1.94757C31.8285 1.91548 31.8424 1.87965 31.8489 1.84215C31.8554 1.80466 31.8543 1.76625 31.8457 1.72917C31.8371 1.6921 31.8213 1.65707 31.799 1.62616C31.7767 1.59526 31.7485 1.56909 31.716 1.54915C31.6466 1.51684 31.5677 1.51073 31.4941 1.53198C31.4206 1.55324 31.3573 1.6004 31.316 1.66468C31.2789 1.72665 31.2678 1.80064 31.285 1.8707C31.3022 1.94076 31.3464 2.00128 31.408 2.0392Z" fill="white"/>
|
||||
<path d="M45.3079 15.4064C45.3903 15.3647 45.4556 15.2959 45.4928 15.2116C45.53 15.1274 45.5368 15.0329 45.5119 14.9442C45.4838 14.8751 45.4328 14.8176 45.3673 14.7813C45.3018 14.7451 45.2258 14.7323 45.1519 14.745C44.8999 14.8287 44.7519 15.0239 44.8079 15.1873C44.8548 15.2741 44.9295 15.3428 45.0201 15.3825C45.1107 15.4222 45.212 15.4306 45.3079 15.4064Z" fill="white"/>
|
||||
<path d="M22.756 1.70207C22.7863 1.66282 22.8078 1.61748 22.8189 1.56917C22.8299 1.52087 22.8303 1.47075 22.8201 1.42227C22.8098 1.37379 22.7891 1.32811 22.7594 1.28838C22.7297 1.24864 22.6917 1.21577 22.648 1.19208C22.5995 1.15461 22.5434 1.12808 22.4835 1.11433C22.4237 1.10058 22.3616 1.09993 22.3015 1.11244C22.2414 1.12494 22.1848 1.1503 22.1355 1.18675C22.0862 1.2232 22.0454 1.26988 22.016 1.32356C21.9546 1.4149 21.9293 1.52558 21.9448 1.63439C21.9603 1.7432 22.0155 1.84249 22.1 1.91322C22.1506 1.94591 22.2088 1.96526 22.2689 1.96944C22.3291 1.97363 22.3894 1.96249 22.444 1.93713C22.4801 1.94513 22.5175 1.94344 22.5527 1.93224C22.5878 1.92103 22.6194 1.90073 22.644 1.87339C22.6946 1.82607 22.733 1.76731 22.756 1.70207Z" fill="white"/>
|
||||
<path d="M22.188 2.23858C22.125 2.24787 22.0673 2.27887 22.0249 2.32619C21.9825 2.37352 21.9581 2.43417 21.956 2.49756C21.945 2.54872 21.9543 2.60213 21.9819 2.64665C22.0094 2.69118 22.0532 2.7234 22.104 2.73661C22.296 2.79637 22.4 2.68082 22.504 2.52942C22.424 2.38599 22.388 2.21467 22.188 2.23858Z" fill="white"/>
|
||||
<path d="M21.264 0.159461C21.2316 0.217247 21.2112 0.280915 21.204 0.346708C21.1906 0.300217 21.1659 0.257768 21.132 0.223198L21.068 0.171401L20.668 0.223198C20.7307 0.303184 20.7757 0.395526 20.8 0.494122C20.8 0.549902 20.956 0.597709 21.028 0.58974C21.1054 0.56921 21.1715 0.519108 21.212 0.450302C21.2074 0.496252 21.2146 0.542595 21.2328 0.585071C21.2509 0.627547 21.2795 0.664782 21.316 0.693334C21.3812 0.71018 21.4501 0.705281 21.5123 0.679376C21.5744 0.65347 21.6263 0.607992 21.66 0.549908C21.708 0.366633 21.848 0.390543 21.96 0.33078C22.0038 0.307317 22.0431 0.276273 22.076 0.239126C22.1441 0.280269 22.2223 0.302036 22.302 0.302036C22.3816 0.302036 22.4598 0.280269 22.528 0.239126C22.5473 0.212326 22.5612 0.182012 22.5687 0.14988C22.5763 0.117748 22.5774 0.0844404 22.572 0.0518788C22.728 0.17539 22.9 0.207249 23.008 0.111628C23.0418 0.0793689 23.0678 0.0398618 23.084 -0.00390625C22.46 0.0478887 21.872 0.0917289 21.264 0.159461Z" fill="white"/>
|
||||
<path d="M16.504 2.09129C16.4134 2.01313 16.2967 1.97156 16.1768 1.97478C16.057 1.97801 15.9427 2.02578 15.8565 2.1087C15.7702 2.19162 15.7182 2.30369 15.7107 2.42286C15.7032 2.54204 15.7408 2.65968 15.816 2.75266C15.8625 2.80076 15.9188 2.83845 15.9811 2.86319C16.0434 2.88793 16.1102 2.89918 16.1772 2.89616C16.2442 2.89315 16.3098 2.87594 16.3696 2.8457C16.4294 2.81547 16.482 2.77289 16.524 2.72081C16.5986 2.63163 16.6378 2.51829 16.6341 2.40227C16.6304 2.28624 16.5841 2.17559 16.504 2.09129Z" fill="white"/>
|
||||
<path d="M45.112 17.9218C45.068 17.9457 45.048 18.0812 45.064 18.1529C45.0676 18.176 45.0774 18.1977 45.0923 18.2158C45.1071 18.2338 45.1266 18.2476 45.1486 18.2558C45.1706 18.2639 45.1944 18.266 45.2175 18.2619C45.2406 18.2579 45.2622 18.2477 45.28 18.2326C45.344 18.1808 45.504 18.0293 45.46 17.9417C45.416 17.854 45.184 17.8899 45.112 17.9218Z" fill="white"/>
|
||||
<path d="M35.756 4.99582C35.7775 5.0143 35.8032 5.02734 35.8308 5.0338C35.8585 5.04026 35.8873 5.03995 35.9148 5.0329C35.9423 5.02585 35.9677 5.01228 35.9888 4.99334C36.0099 4.97439 36.0261 4.95063 36.036 4.9241C36.0502 4.84237 36.0502 4.75882 36.036 4.67708C36.006 4.65871 35.9726 4.64659 35.9378 4.64146C35.9029 4.63633 35.8675 4.6383 35.8334 4.64724C35.7994 4.65618 35.7675 4.6719 35.7398 4.69347C35.712 4.71504 35.689 4.74199 35.672 4.7727C35.612 4.88027 35.676 4.94402 35.756 4.99582Z" fill="white"/>
|
||||
<path d="M35.532 3.43348C35.5756 3.43442 35.6188 3.42601 35.6588 3.40882C35.6989 3.39164 35.7347 3.36607 35.764 3.33387C35.7808 3.30192 35.7896 3.26637 35.7896 3.23028C35.7896 3.1942 35.7808 3.15865 35.764 3.12669C35.668 2.98724 35.532 3.00319 35.388 3.09084C35.388 3.23427 35.36 3.38567 35.532 3.43348Z" fill="white"/>
|
||||
<path d="M34.672 7.46287C34.816 7.43896 34.916 7.35928 34.92 7.21984C34.92 7.00867 34.676 6.86922 34.592 6.86523C34.5139 6.90207 34.4498 6.96312 34.4094 7.03925C34.369 7.11539 34.3545 7.20251 34.368 7.28756C34.3883 7.34884 34.4305 7.40056 34.4865 7.43288C34.5426 7.46521 34.6086 7.47588 34.672 7.46287Z" fill="white"/>
|
||||
<path d="M25.472 0.98712C25.4527 0.95811 25.4278 0.933263 25.3986 0.91407C25.3695 0.894876 25.3367 0.881726 25.3024 0.875404C25.268 0.869083 25.2328 0.86972 25.1987 0.877277C25.1646 0.884833 25.1324 0.899163 25.104 0.919395C25.0336 0.988769 24.9896 1.08028 24.9794 1.17836C24.9692 1.27643 24.9934 1.37498 25.048 1.45726C25.0984 1.51164 25.1676 1.54512 25.2417 1.55103C25.3158 1.55693 25.3894 1.53483 25.448 1.48914C25.5137 1.42332 25.5526 1.33551 25.5571 1.24275C25.5615 1.14998 25.5312 1.05887 25.472 0.98712Z" fill="white"/>
|
||||
<path d="M33.812 3.98112C33.9297 4.01096 34.0544 3.99708 34.1626 3.94209C34.2708 3.8871 34.3552 3.79476 34.4 3.6823C34.41 3.54699 34.3767 3.41201 34.3048 3.29675C34.233 3.18149 34.1262 3.09189 34 3.04085C33.8772 3.0305 33.7549 3.06534 33.6561 3.13875C33.5573 3.21217 33.489 3.31907 33.464 3.43927C33.4458 3.55631 33.4711 3.67596 33.5352 3.77573C33.5992 3.87551 33.6977 3.94854 33.812 3.98112Z" fill="white"/>
|
||||
<path d="M33.632 2.19976C33.5975 2.2391 33.5728 2.28601 33.56 2.33667C33.5472 2.38733 33.5466 2.44029 33.5583 2.49121C33.57 2.54214 33.5937 2.58957 33.6274 2.62963C33.661 2.66969 33.7037 2.70125 33.752 2.7217C33.8133 2.76634 33.8861 2.79265 33.9619 2.79759C34.0377 2.80253 34.1133 2.7859 34.18 2.74959C34.2282 2.78642 34.2872 2.80637 34.348 2.80637C34.4087 2.80637 34.4678 2.78642 34.516 2.74959C34.56 2.71772 34.608 2.64997 34.6 2.60614C34.5877 2.54675 34.5717 2.4882 34.552 2.43083C34.296 2.30334 34.036 2.18781 33.776 2.07227C33.7169 2.10042 33.667 2.14461 33.632 2.19976Z" fill="white"/>
|
||||
<path d="M36.44 5.58204C36.4841 5.58935 36.5291 5.58763 36.5724 5.57699C36.6158 5.56634 36.6565 5.54701 36.6921 5.52015C36.7277 5.4933 36.7573 5.4595 36.7793 5.42082C36.8013 5.38213 36.8152 5.33937 36.82 5.29517C36.8251 5.26687 36.8246 5.23785 36.8182 5.20979C36.8119 5.18173 36.8 5.1552 36.7832 5.1318C36.7665 5.1084 36.7451 5.08859 36.7205 5.07353C36.6959 5.05848 36.6686 5.04849 36.64 5.04416C36.5804 5.0208 36.5143 5.0192 36.4536 5.03961C36.3928 5.06002 36.3413 5.10115 36.308 5.15573C36.2873 5.19208 36.2744 5.23224 36.2699 5.27377C36.2653 5.31529 36.2694 5.35731 36.2817 5.39723C36.2941 5.43714 36.3145 5.47412 36.3417 5.5059C36.3689 5.53768 36.4024 5.56359 36.44 5.58204Z" fill="white"/>
|
||||
<path d="M34.896 2.8696C34.9486 2.9048 35.0126 2.91861 35.0751 2.90824C35.1376 2.89787 35.1937 2.86409 35.232 2.81381V2.78592C35.076 2.70225 34.916 2.62656 34.76 2.54688C34.7398 2.60796 34.7425 2.67425 34.7675 2.73354C34.7925 2.79283 34.8381 2.84114 34.896 2.8696Z" fill="white"/>
|
||||
<path d="M39.592 6.14863C39.5709 6.19069 39.5599 6.23708 39.5599 6.2841C39.5599 6.33113 39.5709 6.3775 39.592 6.41955C39.5967 6.4449 39.6075 6.46875 39.6234 6.48903C39.6394 6.50931 39.6601 6.52544 39.6837 6.53601C39.7073 6.54659 39.7331 6.5513 39.7589 6.54975C39.7848 6.54821 39.8098 6.54045 39.832 6.52714C39.94 6.47136 40.028 6.39566 39.98 6.25621C39.932 6.11676 39.652 6.08488 39.592 6.14863Z" fill="white"/>
|
||||
<path d="M39.676 7.90465C39.7512 7.90592 39.8253 7.88605 39.8897 7.84729C39.954 7.80852 40.0061 7.75245 40.04 7.68552C40.0373 7.61182 40.0121 7.54068 39.9678 7.48159C39.9235 7.42251 39.8622 7.37831 39.792 7.35485C39.7555 7.3461 39.7175 7.34532 39.6806 7.35259C39.6438 7.35986 39.6089 7.37501 39.5785 7.39697C39.5481 7.41893 39.5228 7.44717 39.5044 7.4798C39.4861 7.51242 39.475 7.54862 39.472 7.58592C39.4631 7.65444 39.4787 7.72388 39.516 7.78214C39.5533 7.84039 39.6099 7.88375 39.676 7.90465Z" fill="white"/>
|
||||
<path d="M40.184 6.42186C40.2354 6.43309 40.2886 6.43309 40.34 6.42186L39.912 6.02344C39.919 6.10756 39.9478 6.18845 39.9954 6.25825C40.0431 6.32805 40.1081 6.38441 40.184 6.42186Z" fill="white"/>
|
||||
<path d="M25.272 2.39522C25.272 2.39522 25.304 2.32747 25.272 2.30357C25.2652 2.29593 25.2569 2.28983 25.2476 2.28564C25.2383 2.28146 25.2282 2.2793 25.218 2.2793C25.2078 2.2793 25.1976 2.28146 25.1883 2.28564C25.179 2.28983 25.1707 2.29593 25.164 2.30357C25.1516 2.318 25.1448 2.33637 25.1448 2.35536C25.1448 2.37436 25.1516 2.39273 25.164 2.40716C25.192 2.42708 25.26 2.41116 25.272 2.39522Z" fill="white"/>
|
||||
<path d="M37.448 4.10302C37.104 3.86795 36.748 3.64484 36.392 3.42969C36.392 3.45359 36.428 3.48149 36.448 3.50938C36.3787 3.61327 36.3417 3.73525 36.3417 3.85999C36.3417 3.98474 36.3787 4.10671 36.448 4.21061C36.5158 4.2731 36.596 4.32071 36.6834 4.35038C36.7709 4.38006 36.8636 4.39113 36.9556 4.38287C37.0475 4.37461 37.1368 4.3472 37.2175 4.30243C37.2982 4.25766 37.3685 4.1965 37.424 4.12294C37.424 4.12294 37.444 4.11099 37.448 4.10302Z" fill="white"/>
|
||||
<path d="M37.02 7.47838C37.0706 7.48278 37.1216 7.4767 37.1697 7.46051C37.2179 7.44432 37.2621 7.41838 37.2997 7.38432C37.3373 7.35026 37.3674 7.30882 37.3881 7.26261C37.4088 7.2164 37.4197 7.16641 37.42 7.1158C37.444 6.92854 37.316 6.80902 37.068 6.77316C36.82 6.73731 36.712 6.83292 36.696 6.98432C36.7097 7.0855 36.7458 7.18238 36.8019 7.26786C36.858 7.35334 36.9325 7.42527 37.02 7.47838Z" fill="white"/>
|
||||
<path d="M35.16 4.11645C35.172 4.03455 35.172 3.95134 35.16 3.86943C35.1301 3.85025 35.0966 3.83737 35.0615 3.83159C35.0264 3.82582 34.9905 3.82726 34.9561 3.83585C34.9216 3.84444 34.8892 3.85998 34.861 3.88152C34.8328 3.90306 34.8093 3.93013 34.792 3.96106C34.736 4.07262 34.792 4.13238 34.88 4.18418C34.968 4.23597 35.128 4.232 35.16 4.11645Z" fill="white"/>
|
||||
<path d="M24.772 2.36578C24.8316 2.40178 24.9027 2.41399 24.9709 2.39995C25.0392 2.38591 25.0996 2.34665 25.14 2.29008C25.1703 2.2335 25.178 2.16763 25.1617 2.10561C25.1454 2.04359 25.1062 1.98995 25.052 1.9554C25.0275 1.93491 24.9989 1.91981 24.9681 1.91107C24.9373 1.90232 24.905 1.90011 24.8733 1.90462C24.8416 1.90913 24.8112 1.92025 24.7841 1.93723C24.757 1.95422 24.7338 1.97669 24.716 2.00321C24.6947 2.03024 24.6791 2.06137 24.6703 2.09464C24.6615 2.12791 24.6597 2.16261 24.665 2.19661C24.6702 2.2306 24.6825 2.26317 24.7009 2.29227C24.7193 2.32137 24.7435 2.3464 24.772 2.36578Z" fill="white"/>
|
||||
<path d="M45.796 20.3277C45.956 20.4153 46.196 20.3954 46.276 20.2759C46.424 20.0368 46.224 19.8217 46.12 19.7141C46.016 19.6065 45.72 19.7818 45.652 20.0129C45.6319 20.0738 45.6355 20.14 45.6622 20.1983C45.6889 20.2567 45.7367 20.3028 45.796 20.3277Z" fill="white"/>
|
||||
<path d="M46.9961 18.893C47.0572 18.8489 47.1001 18.7842 47.117 18.711C47.134 18.6377 47.1237 18.5608 47.088 18.4946C46.9929 18.4564 46.8904 18.4401 46.788 18.4468C46.644 18.4747 46.596 18.6739 46.668 18.8213C46.6847 18.8476 46.7065 18.8703 46.732 18.8882C46.7576 18.9061 46.7865 18.9187 46.817 18.9254C46.8475 18.9321 46.879 18.9327 46.9098 18.9271C46.9405 18.9215 46.9698 18.9099 46.9961 18.893Z" fill="white"/>
|
||||
<path d="M46.336 16.3437C46.232 16.531 46.384 16.8378 46.644 16.9613C46.6939 16.9878 46.7495 17.0017 46.806 17.0017C46.8625 17.0017 46.9182 16.9878 46.968 16.9613C46.884 16.6864 46.792 16.4155 46.7 16.1445C46.6275 16.145 46.5562 16.1634 46.4927 16.1982C46.4291 16.233 46.3753 16.283 46.336 16.3437Z" fill="white"/>
|
||||
<path d="M44.996 19.3718C45.0866 19.3882 45.18 19.3755 45.2627 19.3353C45.3455 19.2952 45.4132 19.2298 45.456 19.1486C45.4772 19.0824 45.4766 19.0111 45.4543 18.9451C45.432 18.8792 45.3892 18.8221 45.332 18.7821C45.1 18.6705 44.848 18.7104 44.78 18.8697C44.7591 18.9654 44.7686 19.0652 44.8073 19.1552C44.846 19.2452 44.912 19.3209 44.996 19.3718Z" fill="white"/>
|
||||
<path d="M45.804 16.2033C45.868 16.2033 45.9319 16.0798 45.9479 16.0041C45.9498 15.9677 45.9424 15.9314 45.9263 15.8986C45.9102 15.8659 45.886 15.8377 45.856 15.8168C45.7 15.7451 45.592 15.8168 45.512 15.9802C45.572 16.1037 45.628 16.2511 45.804 16.2033Z" fill="white"/>
|
||||
<path d="M45.424 20.8095C45.4894 20.7851 45.5433 20.7373 45.5751 20.6754C45.607 20.6135 45.6144 20.5419 45.596 20.4748C45.5672 20.4192 45.5201 20.3751 45.4626 20.3497C45.4052 20.3244 45.3408 20.3193 45.28 20.3354C45.2183 20.3655 45.168 20.4149 45.137 20.476C45.106 20.5371 45.0958 20.6066 45.108 20.674C45.1329 20.733 45.1797 20.78 45.2386 20.8052C45.2975 20.8305 45.364 20.832 45.424 20.8095Z" fill="white"/>
|
||||
<path d="M46.632 18.0527C46.6761 17.9275 46.6768 17.7912 46.634 17.6656C46.5913 17.5399 46.5075 17.4321 46.396 17.3595C46.3761 17.348 46.3545 17.34 46.332 17.3356C46.2972 17.2806 46.2435 17.2401 46.1809 17.2218C46.1183 17.2034 46.0511 17.2085 45.992 17.236C45.9151 17.2759 45.8506 17.3359 45.8055 17.4096C45.7604 17.4834 45.7364 17.568 45.736 17.6543C45.7083 17.7043 45.6909 17.7594 45.685 17.8162C45.679 17.873 45.6846 17.9305 45.7014 17.9851C45.7182 18.0398 45.7459 18.0905 45.7827 18.1343C45.8196 18.178 45.8649 18.214 45.916 18.24C46.0382 18.2983 46.1774 18.3116 46.3085 18.2773C46.4397 18.243 46.5543 18.1634 46.632 18.0527Z" fill="white"/>
|
||||
<path d="M24.224 1.21981C24.2521 1.24034 24.2842 1.25482 24.3183 1.26235C24.3523 1.26988 24.3876 1.2703 24.4218 1.26356C24.456 1.25682 24.4885 1.24307 24.5171 1.22319C24.5457 1.20332 24.5698 1.17775 24.588 1.1481C24.6037 1.12037 24.6134 1.08971 24.6166 1.05805C24.6198 1.0264 24.6165 0.99441 24.6067 0.964113C24.5969 0.933816 24.581 0.905867 24.5599 0.881992C24.5388 0.858116 24.513 0.838845 24.484 0.82538C24.4221 0.793388 24.3502 0.786283 24.2832 0.805561C24.2162 0.824839 24.1592 0.869032 24.124 0.928974C24.1092 0.954168 24.1001 0.982217 24.0972 1.01124C24.0943 1.04026 24.0977 1.06956 24.1072 1.09716C24.1167 1.12475 24.1321 1.14999 24.1522 1.17115C24.1724 1.19232 24.1968 1.20892 24.224 1.21981Z" fill="white"/>
|
||||
<path d="M47.416 18.663C47.388 18.5474 47.364 18.4319 47.336 18.3203C47.3026 18.3767 47.2923 18.4438 47.3072 18.5076C47.3221 18.5714 47.3611 18.627 47.416 18.663Z" fill="white"/>
|
||||
<path d="M20.396 0.287494C20.396 0.287494 20.396 0.287499 20.396 0.267578L20.036 0.331339C20.1574 0.360237 20.2852 0.344663 20.396 0.287494Z" fill="white"/>
|
||||
<path d="M25.22 0.123289C25.2422 0.0956786 25.2623 0.0663584 25.28 0.0356232L24.48 0.0117188C24.4904 0.0477056 24.5097 0.0805758 24.536 0.107361C24.6275 0.1944 24.7483 0.244265 24.8749 0.247212C25.0014 0.25016 25.1245 0.20597 25.22 0.123289Z" fill="white"/>
|
||||
<path d="M20.084 0.841382C20.1211 0.782577 20.1358 0.71249 20.1256 0.643799C20.1153 0.575109 20.0807 0.512349 20.028 0.466863C19.9627 0.439425 19.8913 0.429772 19.821 0.438873C19.7507 0.447974 19.6841 0.475503 19.628 0.51866C19.5981 0.592895 19.5928 0.674729 19.613 0.75216C19.6331 0.82959 19.6777 0.898556 19.74 0.948964C19.8005 0.976865 19.8693 0.981306 19.9329 0.961414C19.9965 0.941523 20.0504 0.898719 20.084 0.841382Z" fill="white"/>
|
||||
<path d="M47.964 22.5586C47.9436 22.6356 47.9436 22.7166 47.964 22.7937C47.972 22.7259 47.968 22.6502 47.964 22.5586Z" fill="white"/>
|
||||
<path d="M37.008 12.6376C36.952 12.6376 36.892 12.785 36.9 12.8488C36.908 12.9125 37.056 13.048 37.124 13.0201C37.192 12.9922 37.228 12.8129 37.204 12.777C37.18 12.7412 37.072 12.6256 37.008 12.6376Z" fill="white"/>
|
||||
<path d="M30.54 5.33458C30.6081 5.22818 30.6669 5.11621 30.716 4.9999C30.7399 4.89259 30.7292 4.78053 30.6854 4.67966C30.6416 4.57878 30.5669 4.49425 30.472 4.43813C30.4295 4.4063 30.3764 4.39186 30.3236 4.39779C30.2708 4.40371 30.2223 4.42954 30.188 4.46999C29.9864 4.69184 29.8579 4.96997 29.82 5.26683C29.8209 5.31461 29.8303 5.36186 29.848 5.4063C29.8629 5.4541 29.8888 5.49785 29.9234 5.53416C29.958 5.57046 30.0005 5.59834 30.0476 5.61567C30.0948 5.633 30.1454 5.6393 30.1953 5.63408C30.2453 5.62886 30.2935 5.61228 30.336 5.58559C30.3614 5.5836 30.3862 5.57657 30.4088 5.56495C30.4315 5.55332 30.4516 5.53729 30.468 5.51784C30.4916 5.49357 30.5101 5.46487 30.5225 5.43341C30.5349 5.40195 30.5408 5.36836 30.54 5.33458Z" fill="white"/>
|
||||
<path d="M30.008 7.27104C30.128 7.16347 30.0081 6.8248 29.8961 6.81285C29.7841 6.8009 29.572 7.09971 29.668 7.21127C29.709 7.25889 29.7653 7.29088 29.8273 7.30178C29.8893 7.31268 29.9532 7.30182 30.008 7.27104Z" fill="white"/>
|
||||
<path d="M32.012 1.66959C32.0118 1.686 32.0166 1.70209 32.0259 1.71564C32.0352 1.72919 32.0485 1.73954 32.064 1.74529C32.0851 1.74766 32.1063 1.742 32.1233 1.72943C32.1404 1.71687 32.1521 1.69834 32.156 1.67756C32.156 1.62975 32.104 1.60186 32.08 1.59787C32.056 1.59389 32.012 1.64568 32.012 1.66959Z" fill="white"/>
|
||||
<path d="M22.436 5.50546C22.4194 5.51454 22.4048 5.5269 22.3931 5.54177C22.3814 5.55664 22.3728 5.5737 22.368 5.59196C22.3631 5.61022 22.362 5.62928 22.3648 5.64796C22.3675 5.66665 22.3741 5.68459 22.384 5.70068C22.448 5.78834 22.548 5.70068 22.596 5.6688C22.6066 5.64708 22.6121 5.62324 22.6121 5.59908C22.6121 5.57493 22.6066 5.55109 22.596 5.52937C22.5726 5.51427 22.5462 5.50433 22.5186 5.50021C22.491 5.49609 22.4628 5.49787 22.436 5.50546Z" fill="white"/>
|
||||
<path d="M22.884 3.53486C22.9375 3.46026 22.9606 3.36822 22.9488 3.27729C22.9369 3.18636 22.8909 3.10329 22.82 3.04481C22.7101 2.99476 22.5865 2.98286 22.469 3.01103C22.3516 3.0392 22.2469 3.1058 22.172 3.20018C22.1476 3.29038 22.1559 3.38625 22.1953 3.471C22.2347 3.55576 22.3027 3.62403 22.3875 3.66389C22.4723 3.70375 22.5685 3.71267 22.6593 3.68909C22.75 3.6655 22.8295 3.61092 22.884 3.53486Z" fill="white"/>
|
||||
<path d="M22.004 4.39029C21.9564 4.34412 21.8996 4.30837 21.8373 4.28538C21.775 4.26239 21.7086 4.25266 21.6423 4.25678C21.5759 4.26091 21.5112 4.27882 21.4523 4.30936C21.3933 4.3399 21.3414 4.3824 21.3 4.43411C21.2544 4.47273 21.2174 4.52036 21.1913 4.57398C21.1652 4.62761 21.1505 4.68604 21.1483 4.7456C21.146 4.80515 21.1562 4.86453 21.1782 4.91995C21.2002 4.97538 21.2335 5.02565 21.276 5.06759C21.375 5.15579 21.5032 5.20457 21.636 5.20457C21.7688 5.20457 21.897 5.15579 21.996 5.06759C22.0711 4.97093 22.1125 4.85251 22.114 4.73028C22.1154 4.60804 22.0768 4.48868 22.004 4.39029Z" fill="white"/>
|
||||
<path d="M25.984 3.0124C26.096 2.86897 26.112 2.61398 25.984 2.53429C25.768 2.355 25.52 2.53429 25.4 2.606C25.28 2.67772 25.4 3.00444 25.628 3.11201C25.6579 3.12895 25.6908 3.1398 25.725 3.14396C25.7591 3.14812 25.7938 3.14549 25.8269 3.13623C25.86 3.12697 25.8909 3.11126 25.9179 3.09C25.9449 3.06875 25.9673 3.04237 25.984 3.0124Z" fill="white"/>
|
||||
<path d="M25.636 5.90035C25.636 5.94019 25.636 5.97604 25.636 5.99597C25.636 6.01589 25.708 5.99597 25.712 5.99597C25.716 5.99597 25.74 5.91229 25.712 5.88838C25.684 5.86448 25.672 5.89238 25.636 5.90035Z" fill="white"/>
|
||||
<path d="M34.052 4.95979C34.063 4.94067 34.0723 4.92068 34.08 4.90002C34.176 4.90002 34.336 4.83627 34.344 4.7526C34.352 4.66893 34.132 4.56535 34.056 4.55738C34.0414 4.55468 34.0265 4.55468 34.012 4.55738C33.9253 4.5171 33.8295 4.49997 33.7342 4.50765C33.6388 4.51533 33.5471 4.54756 33.468 4.6012C33.4411 4.64166 33.4228 4.68714 33.414 4.73488C33.4053 4.78262 33.4064 4.83163 33.4172 4.87893C33.4281 4.92624 33.4485 4.97087 33.4771 5.0101C33.5058 5.04934 33.5422 5.08238 33.584 5.10721C33.72 5.21876 33.916 5.15103 34.052 4.95979Z" fill="white"/>
|
||||
<path d="M44.444 32.2912C44.48 32.2235 44.376 32.1438 44.332 32.1199C44.307 32.1114 44.28 32.1111 44.2548 32.119C44.2296 32.1268 44.2076 32.1425 44.192 32.1637C44.192 32.2115 44.224 32.2912 44.268 32.3231C44.312 32.355 44.412 32.355 44.444 32.2912Z" fill="white"/>
|
||||
<path d="M44.864 24.6667C44.904 24.5552 44.896 24.4476 44.796 24.3918C44.5481 24.2255 44.2548 24.1393 43.956 24.1448C43.9101 24.1532 43.8657 24.168 43.824 24.1886C43.7663 24.2157 43.7175 24.2585 43.6833 24.3121C43.6492 24.3657 43.6311 24.4279 43.6311 24.4914C43.6311 24.5549 43.6492 24.6171 43.6833 24.6707C43.7175 24.7243 43.7663 24.7672 43.824 24.7942C43.987 24.8808 44.1604 24.9464 44.34 24.9894C44.4504 24.9977 44.5605 24.9709 44.6546 24.9129C44.7488 24.8549 44.822 24.7687 44.864 24.6667Z" fill="white"/>
|
||||
<path d="M44.484 30.1723C44.516 30.1165 44.484 30.0329 44.424 30.009C44.364 29.9851 44.24 29.9731 44.212 30.009C44.184 30.0448 44.268 30.1803 44.312 30.2002C44.34 30.2137 44.3716 30.2182 44.4024 30.2133C44.4331 30.2083 44.4616 30.194 44.484 30.1723Z" fill="white"/>
|
||||
<path d="M46.692 26.5421C46.7576 26.4763 46.8055 26.3951 46.8313 26.306C46.8572 26.2169 46.8602 26.1227 46.84 26.0321C46.8228 25.9422 46.7795 25.8592 46.7155 25.7933C46.6516 25.7275 46.5697 25.6817 46.48 25.6616H46.428C46.5341 25.6197 46.621 25.5402 46.672 25.4385C46.74 25.2871 46.636 25.1158 46.42 25.0202C46.3426 24.9862 46.2564 24.9775 46.1737 24.9954C46.0911 25.0133 46.0162 25.0568 45.96 25.1198C45.9249 25.2175 45.922 25.3237 45.9514 25.4233C45.9809 25.5228 46.0413 25.6104 46.124 25.6736L46.2 25.6935C46.1343 25.7306 46.0782 25.7825 46.036 25.8449C45.9292 26.0102 45.8839 26.2076 45.908 26.4027C45.9126 26.4749 45.896 26.547 45.86 26.6099C45.8227 26.6518 45.7965 26.7024 45.7837 26.7569C45.7708 26.8115 45.7718 26.8684 45.7865 26.9225C45.8012 26.9766 45.8291 27.0262 45.8677 27.0669C45.9064 27.1076 45.9546 27.1381 46.008 27.1557C45.9821 27.1773 45.9616 27.2046 45.948 27.2354C45.9377 27.3045 45.9521 27.3751 45.9886 27.4348C46.0251 27.4945 46.0815 27.5395 46.148 27.5621C46.2178 27.5965 46.2983 27.6029 46.3727 27.5799C46.4472 27.5569 46.5099 27.5063 46.548 27.4386C46.5605 27.4062 46.5664 27.3716 46.5651 27.337C46.5638 27.3023 46.5554 27.2682 46.5404 27.2369C46.5254 27.2056 46.5042 27.1776 46.478 27.1547C46.4517 27.1319 46.4212 27.1146 46.388 27.1039C46.4461 27.0382 46.486 26.9586 46.504 26.8728C46.5107 26.8078 46.5309 26.7448 46.5633 26.6879C46.5956 26.631 46.6395 26.5814 46.692 26.5421Z" fill="white"/>
|
||||
<path d="M47.872 25.4004C47.8082 25.3746 47.7369 25.3743 47.6728 25.3995C47.6088 25.4248 47.5569 25.4736 47.528 25.5359C47.4992 25.6048 47.4981 25.6821 47.5249 25.7518C47.5517 25.8215 47.6044 25.8783 47.672 25.9104C47.7451 25.9403 47.827 25.9403 47.9 25.9104L47.936 25.4482C47.9179 25.4285 47.8962 25.4123 47.872 25.4004Z" fill="white"/>
|
||||
<path d="M47.216 29.0896C47.1862 29.1462 47.1799 29.2123 47.1987 29.2734C47.2174 29.3346 47.2595 29.3859 47.316 29.4163H47.352L47.472 28.9023C47.4152 28.9035 47.3601 28.9221 47.3142 28.9556C47.2684 28.9891 47.2341 29.0359 47.216 29.0896Z" fill="white"/>
|
||||
<path d="M44.348 27.7024C44.308 27.555 44.188 27.5311 43.904 27.5789C43.868 27.7263 43.776 27.8857 43.964 27.9773C44.0161 28.0152 44.081 28.031 44.1447 28.0213C44.2084 28.0116 44.2657 27.9771 44.304 27.9255C44.3457 27.8591 44.3614 27.7797 44.348 27.7024Z" fill="white"/>
|
||||
<path d="M40.064 9.37953C40.1216 9.38614 40.18 9.3809 40.2355 9.36416C40.291 9.34741 40.3424 9.31952 40.3867 9.28218C40.4309 9.24484 40.467 9.19885 40.4927 9.14707C40.5184 9.09529 40.5331 9.03879 40.536 8.9811C40.5505 8.89939 40.5505 8.8158 40.536 8.73408C40.6492 8.76021 40.7676 8.75188 40.876 8.71018C40.9276 8.67958 40.9692 8.63461 40.9955 8.58081C41.0218 8.52701 41.0317 8.46672 41.024 8.40737C41.1435 8.40515 41.2592 8.36546 41.3547 8.29393C41.4502 8.2224 41.5207 8.12266 41.556 8.00895C41.5802 7.8882 41.5567 7.76283 41.4904 7.65892C41.4241 7.55501 41.32 7.4806 41.2 7.45117C41.0612 7.4609 40.9278 7.5084 40.8142 7.58849C40.7006 7.66859 40.6113 7.77818 40.556 7.90536C40.5461 7.97905 40.5586 8.05403 40.592 8.12052H40.568C40.5075 8.15787 40.4553 8.2072 40.4147 8.26545C40.3741 8.32371 40.346 8.38964 40.332 8.45917C40.2641 8.4246 40.1912 8.40042 40.116 8.38746C39.9816 8.37514 39.8477 8.41582 39.743 8.50073C39.6383 8.58564 39.5711 8.70803 39.556 8.84166C39.528 9.0608 39.792 9.33171 40.064 9.37953Z" fill="white"/>
|
||||
<path d="M37.472 10.0353C37.872 10.115 37.872 10.0871 37.872 9.74847C37.708 9.62894 37.572 9.67676 37.448 9.83613C37 9.64091 36.788 9.83614 36.84 10.3421C36.8145 10.3642 36.7862 10.3829 36.756 10.3979C36.62 10.4537 36.604 10.5573 36.62 10.6848C36.6283 10.7361 36.6523 10.7836 36.6889 10.8207C36.7254 10.8578 36.7726 10.8827 36.824 10.8919C37.092 10.9836 37.224 10.9238 37.28 10.6489C37.356 10.4417 37.42 10.2385 37.472 10.0353Z" fill="white"/>
|
||||
<path d="M36.844 8.18291C36.8543 8.12963 36.8535 8.07483 36.8418 8.02185C36.83 7.96888 36.8076 7.91887 36.7758 7.87485C36.7439 7.83083 36.7034 7.79375 36.6567 7.76588C36.6099 7.73802 36.558 7.71994 36.504 7.71277C36.3698 7.70149 36.2364 7.74254 36.1319 7.82726C36.0275 7.91198 35.9601 8.03377 35.944 8.16698C35.9499 8.27991 35.9919 8.388 36.0639 8.47545C36.1358 8.56291 36.234 8.62514 36.344 8.65305C36.6 8.6889 36.8 8.49368 36.844 8.18291Z" fill="white"/>
|
||||
<path d="M39.652 11.3028C39.616 11.2151 39.448 11.1952 39.312 11.255C39.2896 11.2606 39.2689 11.2716 39.2517 11.2869C39.2344 11.3022 39.2211 11.3214 39.2129 11.3428C39.2047 11.3643 39.2017 11.3875 39.2044 11.4103C39.207 11.4331 39.2151 11.455 39.228 11.4741C39.284 11.5817 39.364 11.6614 39.5 11.6136C39.5567 11.5863 39.6026 11.5409 39.6301 11.4845C39.6577 11.4281 39.6654 11.3641 39.652 11.3028Z" fill="white"/>
|
||||
<path d="M39.348 18.7859C39.32 18.7859 39.228 18.8735 39.256 18.9452C39.284 19.0169 39.408 18.9891 39.46 18.9731C39.4818 18.9586 39.4987 18.938 39.5087 18.9139C39.5187 18.8898 39.5212 18.8632 39.516 18.8376C39.5 18.7938 39.404 18.7819 39.348 18.7859Z" fill="white"/>
|
||||
<path d="M39.4479 10.2074C39.3876 10.1944 39.3253 10.1939 39.2648 10.2058C39.2043 10.2178 39.1469 10.2419 39.0961 10.2768C39.0453 10.3117 39.0022 10.3565 38.9695 10.4086C38.9368 10.4607 38.9151 10.5189 38.9058 10.5796C38.8965 10.6404 38.8998 10.7024 38.9155 10.7618C38.9311 10.8212 38.9588 10.8768 38.9969 10.9252C39.0349 10.9735 39.0825 11.0136 39.1367 11.043C39.1909 11.0724 39.2505 11.0903 39.3119 11.0959C39.5359 11.1238 39.756 10.8967 39.792 10.6018C39.7975 10.553 39.7928 10.5036 39.7782 10.4567C39.7636 10.4098 39.7393 10.3664 39.707 10.3293C39.6746 10.2922 39.6349 10.2622 39.5903 10.2412C39.5457 10.2203 39.4972 10.2087 39.4479 10.2074Z" fill="white"/>
|
||||
<path d="M21.24 6.34357C21.172 6.40732 21.212 6.57068 21.32 6.67427C21.3333 6.69317 21.3509 6.7086 21.3715 6.71926C21.392 6.72991 21.4149 6.7355 21.438 6.7355C21.4612 6.7355 21.484 6.72991 21.5045 6.71926C21.5251 6.7086 21.5427 6.69317 21.556 6.67427C21.5788 6.65651 21.5978 6.63427 21.6117 6.60893C21.6256 6.58358 21.6341 6.55565 21.6367 6.5269C21.6393 6.49815 21.636 6.46919 21.6269 6.44177C21.6179 6.41434 21.6033 6.38905 21.584 6.36747C21.5373 6.32645 21.4782 6.30188 21.4161 6.29756C21.3539 6.29324 21.2921 6.30941 21.24 6.34357Z" fill="white"/>
|
||||
<path d="M45.128 21.7615C45.372 21.6977 45.324 21.9487 45.66 21.8332C45.996 21.7177 46.0999 21.3591 45.9039 21.2037C45.7079 21.0483 45.504 21.1439 45.472 21.0961C45.44 21.0483 45.348 20.7973 45.16 20.865C44.76 21.0045 44.984 21.3272 44.88 21.4069C44.776 21.4866 44.5079 21.4906 44.3479 21.5942C44.2878 21.6156 44.2338 21.6511 44.1903 21.6977C44.1468 21.7442 44.1151 21.8004 44.0978 21.8617C44.0806 21.9229 44.0784 21.9873 44.0913 22.0496C44.1041 22.1119 44.1318 22.1702 44.172 22.2197C44.21 22.2693 44.256 22.3123 44.308 22.3472C44.3364 22.3754 44.3688 22.3996 44.4039 22.4189C44.5199 22.4787 44.72 22.6739 44.884 22.5703C45.048 22.4667 44.9319 22.3352 44.9479 22.2436C45.1039 22.0364 44.912 21.8173 45.128 21.7615Z" fill="white"/>
|
||||
<path d="M11.872 4.17891C12.004 4.2307 12.2361 3.99565 12.1881 3.89206C12.1401 3.78847 11.8281 3.74862 11.7881 3.89206C11.77 3.94259 11.7683 3.99752 11.7834 4.04903C11.7985 4.10053 11.8295 4.14597 11.872 4.17891Z" fill="white"/>
|
||||
<path d="M43.156 24.3161C43.1 24.34 43.104 24.4475 43.12 24.4954C43.1409 24.5267 43.1708 24.5511 43.2057 24.5653C43.2407 24.5795 43.2791 24.5829 43.316 24.575C43.384 24.5432 43.356 24.4037 43.316 24.3718C43.2956 24.3507 43.2705 24.3347 43.2427 24.325C43.2149 24.3153 43.1852 24.3122 43.156 24.3161Z" fill="white"/>
|
||||
<path d="M43.516 23.2157C43.5268 23.1109 43.4983 23.0059 43.436 22.9208C43.368 22.8451 43.164 22.9208 43.14 23.0483C43.1347 23.1235 43.1485 23.1989 43.18 23.2675C43.352 23.3551 43.504 23.3232 43.516 23.2157Z" fill="white"/>
|
||||
<path d="M8.53603 5.64112C8.48403 5.72877 8.388 5.96783 8.456 6.03954C8.524 6.11126 8.75601 5.98776 8.76801 5.94791C8.79601 5.83636 8.86001 5.70089 8.76801 5.5973C8.67601 5.49371 8.56403 5.59729 8.53603 5.64112Z" fill="white"/>
|
||||
<path d="M47.584 21.984C47.72 22.0597 47.824 22.004 47.856 21.9044C47.888 21.8048 47.92 21.6773 47.816 21.6255C47.7896 21.6199 47.7624 21.6199 47.736 21.6255C47.7805 21.5776 47.8116 21.5189 47.8264 21.4553C47.8411 21.3917 47.8389 21.3254 47.82 21.2629C47.8301 21.2743 47.8423 21.2838 47.856 21.2908C47.828 21.0557 47.796 20.8246 47.764 20.5896C47.7452 20.5793 47.7289 20.565 47.7164 20.5477C47.7039 20.5304 47.6954 20.5105 47.6916 20.4895C47.6878 20.4685 47.6887 20.4469 47.6943 20.4263C47.6999 20.4057 47.71 20.3866 47.724 20.3704C47.724 20.3704 47.724 20.3505 47.724 20.3425C47.724 20.231 47.688 20.1194 47.668 20.0039C47.6211 19.9464 47.5642 19.8978 47.5 19.8604C47.4183 19.8156 47.3242 19.7988 47.232 19.8126C47.2337 19.8007 47.2337 19.7887 47.232 19.7768C47.1801 19.7069 47.1066 19.6558 47.0229 19.6313C46.9391 19.6069 46.8496 19.6104 46.768 19.6413C46.7164 19.7109 46.6906 19.7962 46.6949 19.8826C46.6993 19.9691 46.7336 20.0513 46.792 20.1154C46.8313 20.1501 46.88 20.1723 46.932 20.1792C46.968 20.3346 47.06 20.3824 47.016 20.4382C46.972 20.4939 46.796 20.5776 46.824 20.7211C46.852 20.8645 47.284 20.9681 47.356 20.9482C47.428 20.9282 47.592 20.8007 47.672 20.9482C47.7021 21.0006 47.725 21.0569 47.74 21.1155C47.7067 21.0758 47.6607 21.0487 47.6098 21.0385C47.5589 21.0284 47.506 21.0359 47.46 21.0597C47.3565 21.096 47.2698 21.1686 47.2161 21.2639C47.1623 21.3592 47.1452 21.4707 47.168 21.5776C47.2067 21.6335 47.2598 21.6778 47.3218 21.7059C47.3838 21.7339 47.4523 21.7447 47.52 21.737C47.42 21.7609 47.472 21.9283 47.584 21.984Z" fill="white"/>
|
||||
<path d="M45.972 23.8294C46.0035 23.7183 45.9975 23.6001 45.9548 23.4928C45.9122 23.3855 45.8353 23.2952 45.736 23.2357C45.6526 23.2289 45.5691 23.2483 45.4974 23.2911C45.4256 23.334 45.3692 23.3982 45.336 23.4748C45.3126 23.5185 45.2994 23.5668 45.2973 23.6163C45.2952 23.6658 45.3043 23.7151 45.3239 23.7606C45.3434 23.8061 45.373 23.8466 45.4104 23.8792C45.4478 23.9118 45.4921 23.9356 45.54 23.9489C45.728 24.0326 45.912 23.9808 45.972 23.8294Z" fill="white"/>
|
||||
<path d="M45.432 30.1281C45.316 30.0883 45.264 30.164 45.224 30.2476C45.2073 30.2707 45.1967 30.2976 45.1933 30.3258C45.1899 30.3541 45.1938 30.3827 45.2046 30.409C45.2155 30.4353 45.2329 30.4585 45.2551 30.4762C45.2774 30.494 45.3039 30.5058 45.332 30.5106C45.4148 30.5122 45.4972 30.5001 45.576 30.4747C45.5903 30.4427 45.5979 30.4081 45.5983 30.373C45.5987 30.3379 45.592 30.3031 45.5786 30.2707C45.5651 30.2383 45.5452 30.2089 45.52 30.1844C45.4948 30.1599 45.4648 30.1408 45.432 30.1281Z" fill="white"/>
|
||||
<path d="M32.436 2.48149C32.4329 2.57143 32.4605 2.65978 32.5142 2.73213C32.568 2.80448 32.6448 2.85656 32.732 2.87991C32.7654 2.89104 32.8006 2.89542 32.8356 2.8928C32.8707 2.89018 32.9049 2.88062 32.9362 2.86466C32.9675 2.8487 32.9953 2.82668 33.0179 2.79988C33.0405 2.77308 33.0576 2.74204 33.068 2.70859C33.0791 2.61104 33.0566 2.51263 33.0043 2.42942C32.952 2.34621 32.873 2.28312 32.78 2.25042C32.7038 2.23737 32.6255 2.2541 32.5614 2.29716C32.4973 2.34021 32.4524 2.40624 32.436 2.48149Z" fill="white"/>
|
||||
<path d="M34.936 6.11256C34.9349 6.14409 34.9402 6.17552 34.9516 6.20497C34.963 6.23441 34.9802 6.2613 35.0022 6.28397C35.0242 6.30665 35.0506 6.32468 35.0798 6.33699C35.109 6.3493 35.1403 6.35563 35.172 6.35561C35.2516 6.35059 35.3264 6.31577 35.3813 6.25812C35.4362 6.20048 35.4671 6.12428 35.468 6.04483C35.412 5.99702 35.336 5.88946 35.236 5.8536C35.136 5.81774 34.948 5.94921 34.936 6.11256Z" fill="white"/>
|
||||
<path d="M32.62 1.59421L32.296 1.4707C32.387 1.54705 32.5011 1.59057 32.62 1.59421Z" fill="white"/>
|
||||
<path d="M35.164 4.42244C35.0613 4.41148 34.958 4.43653 34.8719 4.49325C34.7857 4.54997 34.7221 4.63483 34.692 4.73322C34.6926 4.83632 34.7268 4.93643 34.7896 5.01839C34.8524 5.10036 34.9403 5.1597 35.04 5.18743C35.192 5.21133 35.376 5.03601 35.4 4.84477C35.432 4.58977 35.356 4.45033 35.164 4.42244Z" fill="white"/>
|
||||
<path d="M38.496 7.93327C38.4813 8.03591 38.5033 8.14042 38.5582 8.22854C38.613 8.31666 38.6972 8.38278 38.796 8.41537C38.932 8.41537 39.196 8.15641 39.196 7.97712C39.1866 7.89219 39.1474 7.81328 39.0853 7.75434C39.0231 7.69541 38.9421 7.66022 38.8565 7.65498C38.7709 7.64974 38.6861 7.67478 38.6172 7.7257C38.5483 7.77661 38.4998 7.85013 38.48 7.93327H38.496Z" fill="white"/>
|
||||
<path d="M39.072 9.56574C39.024 9.59363 38.928 9.65339 38.96 9.70917C38.9776 9.7357 39.0023 9.75684 39.0313 9.77021C39.0602 9.78357 39.0923 9.78865 39.124 9.78487C39.168 9.78487 39.284 9.66933 39.252 9.61355C39.2292 9.58999 39.2004 9.57307 39.1687 9.56465C39.137 9.55622 39.1035 9.5566 39.072 9.56574Z" fill="white"/>
|
||||
<path d="M14.7 7.44998C14.7479 7.4077 14.7782 7.34905 14.7849 7.28562C14.7916 7.22219 14.7741 7.15857 14.736 7.10732C14.691 7.05513 14.6273 7.02257 14.5585 7.01661C14.4897 7.01066 14.4213 7.03178 14.368 7.07546C14.3401 7.09137 14.3163 7.11364 14.2987 7.14044C14.281 7.16724 14.27 7.19783 14.2665 7.22969C14.263 7.26155 14.2671 7.29377 14.2784 7.32375C14.2898 7.35373 14.3082 7.38061 14.332 7.40217C14.3521 7.43059 14.3779 7.45453 14.4077 7.4725C14.4376 7.49047 14.4709 7.50207 14.5054 7.50657C14.54 7.51106 14.5752 7.50836 14.6087 7.49862C14.6422 7.48888 14.6732 7.47231 14.7 7.44998Z" fill="white"/>
|
||||
<path d="M16.96 4.00485C16.938 4.03106 16.9217 4.0616 16.9123 4.09449C16.9029 4.12738 16.9006 4.16188 16.9055 4.19573C16.9104 4.22957 16.9225 4.26201 16.9408 4.29091C16.9592 4.3198 16.9834 4.34453 17.012 4.36345C17.112 4.43915 17.22 4.51882 17.312 4.43117C17.464 4.26383 17.484 4.10047 17.384 4.00087C17.3571 3.97135 17.3242 3.94782 17.2875 3.93185C17.2508 3.91588 17.2112 3.90784 17.1712 3.90822C17.1311 3.90859 17.0916 3.91738 17.0552 3.93404C17.0188 3.9507 16.9864 3.97483 16.96 4.00485Z" fill="white"/>
|
||||
<path d="M16.188 1.70101C16.242 1.7525 16.3058 1.79261 16.3757 1.81897C16.4456 1.84533 16.5201 1.85738 16.5948 1.8544C16.6695 1.85143 16.7428 1.83349 16.8103 1.80166C16.8779 1.76982 16.9383 1.72475 16.988 1.66913C17.0762 1.58637 17.1334 1.47609 17.1501 1.35655C17.1669 1.237 17.1421 1.11535 17.08 1.01172C16.732 1.11531 16.392 1.22688 16.052 1.3464C16.0465 1.41188 16.0559 1.47774 16.0795 1.53912C16.103 1.6005 16.1401 1.65584 16.188 1.70101Z" fill="white"/>
|
||||
<path d="M12.128 7.6974C12.0762 7.75087 12.0472 7.82229 12.0472 7.89661C12.0472 7.97093 12.0762 8.04235 12.128 8.09582C12.1528 8.12447 12.1835 8.14745 12.218 8.16321C12.2525 8.17896 12.29 8.18713 12.328 8.18713C12.366 8.18713 12.4035 8.17896 12.438 8.16321C12.4725 8.14745 12.5032 8.12447 12.528 8.09582C12.5744 8.04518 12.6001 7.97909 12.6001 7.91054C12.6001 7.842 12.5744 7.77593 12.528 7.72529C12.5049 7.69537 12.4757 7.67067 12.4423 7.65282C12.4089 7.63498 12.3721 7.62438 12.3343 7.62175C12.2965 7.61911 12.2586 7.62449 12.223 7.63753C12.1875 7.65057 12.1551 7.67098 12.128 7.6974Z" fill="white"/>
|
||||
<path d="M17.472 2.77755C17.3972 2.72285 17.3068 2.69336 17.214 2.69336C17.1212 2.69336 17.0308 2.72285 16.956 2.77755C16.9111 2.8504 16.8925 2.93639 16.9034 3.02119C16.9144 3.10599 16.9541 3.18451 17.016 3.24372C17.0397 3.26452 17.0675 3.2801 17.0977 3.28944C17.1278 3.29878 17.1596 3.30166 17.1909 3.2979C17.2223 3.29414 17.2525 3.2838 17.2796 3.2676C17.3066 3.2514 17.3299 3.22968 17.348 3.20386C17.532 3.03653 17.576 2.87715 17.472 2.77755Z" fill="white"/>
|
||||
<path d="M13.5 3.83335C13.4656 3.79825 13.4243 3.77079 13.3785 3.75279C13.3328 3.73478 13.2837 3.72662 13.2346 3.72888C13.1854 3.73114 13.1373 3.74377 13.0935 3.7659C13.0496 3.78802 13.0109 3.81915 12.98 3.85726C12.9049 3.92276 12.8572 4.01384 12.8461 4.11262C12.8349 4.2114 12.8613 4.31075 12.92 4.39115C13.0049 4.44871 13.1052 4.47948 13.208 4.47948C13.3107 4.47948 13.4111 4.44871 13.496 4.39115C13.5394 4.35875 13.5746 4.3168 13.599 4.26859C13.6234 4.22039 13.6363 4.16721 13.6367 4.11323C13.6371 4.05924 13.6249 4.0059 13.6012 3.95735C13.5775 3.9088 13.5428 3.86637 13.5 3.83335Z" fill="white"/>
|
||||
<path d="M12.672 2.84547C12.856 3.05663 13.072 3.00483 13.268 2.88929C13.36 3.00881 13.396 3.18811 13.604 3.11639C13.6607 3.10145 13.7102 3.06664 13.7432 3.01834C13.7763 2.97005 13.7908 2.91148 13.784 2.85342C13.784 2.63827 13.584 2.63827 13.424 2.62632C13.424 2.57054 13.4 2.51476 13.392 2.45898C13.144 2.57851 12.9 2.70202 12.66 2.82951L12.672 2.84547Z" fill="white"/>
|
||||
<path d="M12.5961 4.94884C12.5713 4.89024 12.5302 4.83989 12.4777 4.80369C12.4252 4.76748 12.3635 4.74691 12.2997 4.7444C12.2359 4.74189 12.1727 4.75754 12.1175 4.78951C12.0623 4.82148 12.0174 4.86846 11.9881 4.92494C11.8929 5.08332 11.8189 5.25344 11.768 5.43094C11.7555 5.5395 11.7778 5.6492 11.8317 5.74437C11.8856 5.83955 11.9683 5.91533 12.068 5.96085C12.18 6.00866 12.468 6.01662 12.468 5.77358C12.328 5.37516 12.624 5.37516 12.616 5.08432C12.6173 5.03835 12.6105 4.99251 12.5961 4.94884Z" fill="white"/>
|
||||
<path d="M13.812 5.92889C13.8344 5.91137 13.8526 5.88899 13.8651 5.86345C13.8776 5.83791 13.884 5.80988 13.884 5.78147C13.884 5.75307 13.8776 5.72501 13.8651 5.69947C13.8526 5.67393 13.8344 5.65158 13.812 5.63406C13.7729 5.62026 13.7311 5.61594 13.6901 5.62149C13.649 5.62703 13.6099 5.64226 13.576 5.66592C13.528 5.70576 13.448 5.87708 13.5 5.94482C13.552 6.01255 13.744 5.96076 13.812 5.92889Z" fill="white"/>
|
||||
<path d="M14.728 5.42714C14.596 5.29167 14.412 5.31559 14.24 5.48691C14.1801 5.53273 14.1406 5.60016 14.1301 5.67469C14.1196 5.74922 14.139 5.82488 14.184 5.88533C14.2658 5.94599 14.3627 5.98323 14.4642 5.99306C14.5657 6.00289 14.668 5.98492 14.76 5.9411C14.7953 5.90706 14.8228 5.86582 14.8405 5.82019C14.8583 5.77455 14.866 5.72563 14.8629 5.67678C14.8599 5.62794 14.8462 5.58032 14.8229 5.53722C14.7996 5.49413 14.7673 5.45657 14.728 5.42714Z" fill="white"/>
|
||||
<path d="M10.984 6.35115C10.972 6.36653 10.9655 6.38546 10.9655 6.40494C10.9655 6.42442 10.972 6.44335 10.984 6.45873C10.984 6.45873 11.068 6.45873 11.08 6.45873C11.0861 6.45193 11.0907 6.444 11.0936 6.43541C11.0966 6.42682 11.0979 6.41775 11.0973 6.40869C11.0967 6.39962 11.0944 6.39075 11.0904 6.38259C11.0864 6.37443 11.0808 6.36711 11.074 6.3611C11.0672 6.35508 11.0592 6.35048 11.0506 6.34753C11.042 6.34457 11.0329 6.34332 11.0238 6.34388C11.0147 6.34443 11.0058 6.34678 10.9976 6.35076C10.9894 6.35474 10.9821 6.36028 10.976 6.36708L10.984 6.35115Z" fill="white"/>
|
||||
<path d="M32.612 7.61004C32.666 7.51324 32.6816 7.39975 32.6557 7.29204C32.6298 7.18433 32.5642 7.09024 32.472 7.02836C32.4182 6.98961 32.357 6.96236 32.2922 6.94836C32.2274 6.93435 32.1603 6.93389 32.0953 6.947C32.0303 6.9601 31.9687 6.98649 31.9144 7.0245C31.8601 7.0625 31.8144 7.11129 31.78 7.1678C31.7201 7.25149 31.6949 7.35502 31.7098 7.45675C31.7247 7.55847 31.7785 7.65051 31.86 7.71364C31.9781 7.78537 32.1175 7.81425 32.2545 7.79537C32.3915 7.77649 32.5178 7.71102 32.612 7.61004Z" fill="white"/>
|
||||
<path d="M33.16 7.01965C33.1628 6.95607 33.1442 6.89338 33.1073 6.84145C33.0704 6.78952 33.0171 6.7513 32.956 6.7328C32.8871 6.72951 32.8188 6.74769 32.7608 6.78482C32.7027 6.82195 32.6577 6.87618 32.632 6.93996C32.6265 7.00314 32.6442 7.06616 32.6817 7.11741C32.7192 7.16866 32.774 7.20469 32.836 7.21886C32.905 7.22976 32.9756 7.21566 33.0351 7.17911C33.0945 7.14255 33.1388 7.08597 33.16 7.01965Z" fill="white"/>
|
||||
<path d="M31.472 4.51749C31.4313 4.5343 31.3955 4.561 31.3678 4.59514C31.3401 4.62928 31.3214 4.66978 31.3134 4.71296C31.3055 4.75613 31.3085 4.80061 31.3222 4.84233C31.3359 4.88404 31.36 4.92167 31.392 4.95178C31.4336 4.98638 31.4829 5.0106 31.5358 5.02238C31.5887 5.03416 31.6436 5.03316 31.696 5.01951C31.7389 4.99709 31.7758 4.9648 31.8037 4.9253C31.8315 4.8858 31.8494 4.84022 31.856 4.7924C31.8527 4.74759 31.8396 4.70405 31.8176 4.66483C31.7956 4.62562 31.7652 4.59169 31.7286 4.56547C31.6919 4.53925 31.65 4.52138 31.6057 4.51309C31.5613 4.5048 31.5157 4.50629 31.472 4.51749Z" fill="white"/>
|
||||
<path d="M31.472 8.43426C31.664 8.43426 31.632 8.25497 31.692 8.18325C31.7329 8.14223 31.7644 8.09283 31.7842 8.03846C31.804 7.9841 31.8117 7.92609 31.8068 7.86846C31.8018 7.81083 31.7844 7.75497 31.7555 7.70475C31.7267 7.65453 31.6873 7.61117 31.64 7.57767C31.5668 7.54302 31.4848 7.5313 31.4048 7.54411C31.3248 7.55691 31.2506 7.59364 31.192 7.64938C31.1337 7.69638 31.0955 7.76365 31.0851 7.8376C31.0747 7.91155 31.0929 7.98667 31.136 8.0478C31.2 8.17131 31.272 8.43824 31.472 8.43426Z" fill="white"/>
|
||||
<path d="M31.012 6.45135C31.088 6.45135 31.104 6.1844 31.068 6.02504C31.0833 6.04783 31.1007 6.06916 31.12 6.08877C31.1443 6.08816 31.1683 6.08255 31.1903 6.07226C31.2123 6.06197 31.2319 6.04726 31.248 6.02902C31.248 5.97723 31.248 5.86567 31.184 5.8338C31.12 5.80193 31.036 5.91347 31.04 5.94136C31.0339 5.92824 31.0258 5.91615 31.016 5.90551C30.924 5.8338 30.72 5.98917 30.684 6.18838C30.648 6.38759 30.912 6.47127 31.012 6.45135Z" fill="white"/>
|
||||
<path d="M37.828 9.69458C37.872 9.65872 37.924 9.59099 37.916 9.54717C37.908 9.50334 37.792 9.41168 37.748 9.42762C37.704 9.44356 37.692 9.57903 37.704 9.63481C37.716 9.69059 37.812 9.70653 37.828 9.69458Z" fill="white"/>
|
||||
<path d="M32.492 4.58276C32.4365 4.54023 32.3666 4.521 32.297 4.52919C32.2275 4.53738 32.164 4.57233 32.12 4.62659C32.0801 4.68348 32.0633 4.7533 32.073 4.82203C32.0826 4.89075 32.118 4.95329 32.172 4.99712C32.2342 5.03738 32.309 5.05391 32.3824 5.04366C32.4559 5.03341 32.5233 4.99709 32.572 4.94136C32.6073 4.88274 32.6187 4.81287 32.6038 4.74616C32.5889 4.67945 32.5489 4.62098 32.492 4.58276Z" fill="white"/>
|
||||
<path d="M35.844 6.96763C35.9181 6.97205 35.9909 6.94743 36.047 6.89903C36.103 6.85063 36.1379 6.78229 36.144 6.70865C36.1439 6.64027 36.1192 6.57419 36.0744 6.52232C36.0297 6.47046 35.9678 6.43623 35.9 6.42578C35.8315 6.42947 35.7665 6.45637 35.7155 6.50204C35.6646 6.54771 35.6309 6.60939 35.62 6.67679C35.6155 6.71054 35.6177 6.74484 35.6265 6.77773C35.6354 6.81063 35.6507 6.84147 35.6715 6.86849C35.6923 6.8955 35.7182 6.91815 35.7478 6.93517C35.7774 6.95218 35.8101 6.96321 35.844 6.96763Z" fill="white"/>
|
||||
<path d="M37.7961 11.6017C37.8532 11.5764 37.8995 11.5316 37.9266 11.4754C37.9537 11.4192 37.9599 11.3552 37.9441 11.2949C37.9314 11.2627 37.9123 11.2334 37.8879 11.2087C37.8635 11.1841 37.8343 11.1647 37.8021 11.1516C37.7699 11.1386 37.7354 11.1322 37.7006 11.1329C37.6659 11.1335 37.6317 11.1412 37.6 11.1555C37.5688 11.1617 37.5395 11.1751 37.5145 11.1946C37.4894 11.2141 37.4692 11.2392 37.4556 11.2679C37.442 11.2965 37.4353 11.3279 37.4361 11.3596C37.4369 11.3913 37.4451 11.4224 37.46 11.4503C37.4711 11.483 37.4888 11.513 37.512 11.5386C37.5352 11.5641 37.5635 11.5846 37.595 11.5988C37.6265 11.613 37.6606 11.6206 37.6952 11.6211C37.7298 11.6216 37.7641 11.615 37.7961 11.6017Z" fill="white"/>
|
||||
<path d="M35.58 5.71387C35.528 5.67403 35.44 5.71388 35.408 5.74974C35.376 5.7856 35.348 5.92505 35.408 5.96091C35.468 5.99677 35.588 5.92902 35.608 5.88918C35.6231 5.86089 35.6285 5.82849 35.6235 5.79686C35.6184 5.76524 35.6032 5.73609 35.58 5.71387Z" fill="white"/>
|
||||
<path d="M35.408 8.25937C35.456 8.12974 35.4665 7.9893 35.4382 7.85404C35.4099 7.71878 35.344 7.59416 35.248 7.4944C35.1342 7.4341 35.0016 7.41949 34.8774 7.45357C34.7532 7.48766 34.6467 7.56786 34.58 7.67769C34.525 7.79113 34.5093 7.91952 34.5354 8.04279C34.5615 8.16606 34.6278 8.27725 34.724 8.35897C34.8299 8.4305 34.9589 8.45994 35.0855 8.44151C35.212 8.42307 35.3271 8.35809 35.408 8.25937Z" fill="white"/>
|
||||
<path d="M33.344 5.91605C33.3894 5.87051 33.4149 5.80893 33.4149 5.74473C33.4149 5.68053 33.3894 5.61895 33.344 5.57341C33.3127 5.54406 33.2754 5.52177 33.2347 5.50802C33.1939 5.49427 33.1507 5.48938 33.108 5.49372C32.952 5.51364 32.912 5.6252 32.92 5.91605C33.072 5.96784 33.204 6.08339 33.344 5.91605Z" fill="white"/>
|
||||
<path d="M38.112 8.98061C38.136 8.82523 37.928 8.76149 37.836 8.71368C37.744 8.66586 37.624 8.76149 37.6 8.89297C37.576 9.02445 37.632 9.136 37.772 9.12803C37.912 9.12006 38.088 9.13998 38.112 8.98061Z" fill="white"/>
|
||||
<path d="M26.12 5.29543C26.204 5.1759 26.12 4.89702 25.948 4.78546C25.9146 4.75867 25.8763 4.73881 25.8351 4.72709C25.7939 4.71537 25.7507 4.71202 25.7082 4.71722C25.6656 4.72242 25.6246 4.73609 25.5874 4.75739C25.5503 4.77869 25.5179 4.80721 25.492 4.84124C25.4328 4.92679 25.4066 5.03079 25.4184 5.13405C25.4302 5.23732 25.479 5.33285 25.556 5.40301C25.6481 5.45219 25.7545 5.46833 25.8572 5.44875C25.9599 5.42917 26.0526 5.37504 26.12 5.29543Z" fill="white"/>
|
||||
<path d="M30.452 0.949126C30.4805 0.97591 30.5148 0.995905 30.5522 1.00763C30.5896 1.01936 30.6292 1.02252 30.668 1.01685C30.7117 1.01265 30.7541 0.99907 30.792 0.977019C30.392 0.861476 29.992 0.753903 29.592 0.654297C29.5629 0.69818 29.5428 0.747356 29.5329 0.799012C29.523 0.850668 29.5234 0.903769 29.5342 0.955254C29.545 1.00674 29.5659 1.0556 29.5957 1.099C29.6256 1.14239 29.6637 1.17945 29.708 1.20809C29.8429 1.29845 30.008 1.33278 30.168 1.30373L30.224 1.33957C30.268 1.33957 30.412 1.33959 30.42 1.25592C30.4197 1.24091 30.4163 1.22611 30.4101 1.21241C30.4039 1.19872 30.3951 1.18642 30.384 1.17623C30.384 1.17623 30.408 1.17622 30.416 1.14435C30.4443 1.08334 30.4567 1.01618 30.452 0.949126Z" fill="white"/>
|
||||
<path d="M31.336 3.43467C31.349 3.41328 31.3597 3.39058 31.368 3.36694C31.389 3.41906 31.4203 3.46646 31.4599 3.50638C31.4346 3.56605 31.4184 3.62919 31.412 3.69365C31.402 3.74508 31.4035 3.79804 31.4163 3.84883C31.4292 3.89962 31.453 3.947 31.4862 3.98763C31.5193 4.02827 31.561 4.06117 31.6083 4.08403C31.6556 4.10689 31.7074 4.11914 31.7599 4.11995C31.8535 4.12182 31.9448 4.09098 32.0179 4.03274C32.091 3.9745 32.1412 3.89256 32.1599 3.80121L32.216 3.8291C32.2523 3.87195 32.2988 3.90513 32.3512 3.92565C32.4036 3.94617 32.4604 3.9534 32.5163 3.94668C32.5722 3.93997 32.6256 3.91952 32.6716 3.88718C32.7176 3.85483 32.7549 3.8116 32.78 3.76138C32.7949 3.79155 32.8186 3.81654 32.8479 3.83309C32.9151 3.85356 32.9874 3.84957 33.0519 3.82183C33.1164 3.7941 33.1688 3.74442 33.1999 3.68169C33.2248 3.64917 33.243 3.61202 33.2533 3.57243C33.2635 3.53283 33.2657 3.49159 33.2598 3.45113C33.2538 3.41067 33.2398 3.3718 33.2185 3.33681C33.1972 3.30183 33.1692 3.27145 33.136 3.24742C33.0739 3.21522 33.0015 3.20887 32.9348 3.22979C32.868 3.25071 32.8123 3.29717 32.78 3.35897C32.722 3.29381 32.6493 3.24328 32.568 3.21155C32.4459 3.18359 32.3397 3.10924 32.272 3.00437C32.168 2.82109 31.972 2.80117 31.788 2.78125C31.6988 2.78895 31.6138 2.82194 31.5429 2.87631C31.472 2.93068 31.4182 3.00417 31.388 3.08804C31.3863 3.10393 31.3863 3.11996 31.388 3.13585C31.3635 3.02446 31.2978 2.92632 31.2039 2.86094C31.0599 2.77727 30.8759 2.86095 30.7479 3.04821C30.7029 3.12019 30.6822 3.2046 30.6887 3.28915C30.6951 3.37371 30.7285 3.454 30.784 3.51835C30.8734 3.5629 30.9744 3.57875 31.0733 3.56377C31.1721 3.54879 31.2639 3.5037 31.336 3.43467Z" fill="white"/>
|
||||
<path d="M32.612 5.78145C32.728 5.78145 32.836 5.73365 32.82 5.61014C32.804 5.48662 32.748 5.27943 32.652 5.27545C32.556 5.27147 32.444 5.47069 32.404 5.55834C32.364 5.64599 32.492 5.77747 32.612 5.78145Z" fill="white"/>
|
||||
<path d="M30.0361 2.56113C30.1436 2.64116 30.2761 2.68067 30.4101 2.67265C30.5441 2.66463 30.6709 2.60959 30.768 2.51731C30.8288 2.3988 30.8473 2.2632 30.8204 2.13284C30.7935 2.00248 30.7228 1.88516 30.62 1.80015C30.5043 1.74725 30.3738 1.73579 30.2507 1.76773C30.1275 1.79968 30.0192 1.87308 29.9441 1.97546C29.8811 2.06622 29.8555 2.17758 29.8726 2.28658C29.8897 2.39557 29.9483 2.49386 30.0361 2.56113Z" fill="white"/>
|
||||
<path d="M29.028 1.04372C29.0505 1.00111 29.0667 0.95547 29.076 0.908243C29.268 0.97199 29.372 0.856468 29.476 0.705067L29.472 0.645294C29.088 0.552329 28.7 0.472654 28.308 0.40625C28.2713 0.431525 28.2389 0.46245 28.212 0.49788C28.1525 0.6075 28.1364 0.735377 28.1669 0.856251C28.1974 0.977125 28.2723 1.08221 28.3767 1.15076C28.4812 1.21932 28.6078 1.24636 28.7313 1.22654C28.8548 1.20672 28.9664 1.14149 29.044 1.04372H29.028Z" fill="white"/>
|
||||
<path d="M44.82 27.1002C44.884 27.1216 44.9536 27.1192 45.016 27.0936C45.0784 27.0679 45.1294 27.0206 45.1596 26.9605C45.1898 26.9003 45.1971 26.8314 45.1803 26.7663C45.1635 26.7011 45.1236 26.6443 45.068 26.6061C45.0058 26.576 44.9345 26.57 44.8681 26.5891C44.8016 26.6082 44.7446 26.6512 44.708 26.7097C44.6766 26.7773 44.6706 26.854 44.6912 26.9257C44.7117 26.9973 44.7574 27.0593 44.82 27.1002Z" fill="white"/>
|
||||
<path d="M25.516 5.66863C25.5025 5.64637 25.4834 5.62796 25.4606 5.61518C25.4379 5.6024 25.4122 5.5957 25.386 5.5957C25.3599 5.5957 25.3342 5.6024 25.3114 5.61518C25.2886 5.62796 25.2695 5.64637 25.256 5.66863C25.2 5.73636 25.12 5.94354 25.176 5.99135C25.232 6.03916 25.432 5.99137 25.512 5.9595C25.592 5.92762 25.608 5.78019 25.516 5.66863Z" fill="white"/>
|
||||
<path d="M44.864 26.3515C44.9062 26.3422 44.9459 26.324 44.9804 26.2982C45.015 26.2724 45.0436 26.2396 45.0645 26.2019C45.0853 26.1642 45.0978 26.1225 45.1012 26.0796C45.1046 26.0367 45.0987 25.9936 45.084 25.9531C45.0614 25.915 45.0295 25.8831 44.9913 25.8603C44.9532 25.8375 44.9099 25.8245 44.8654 25.8225C44.821 25.8206 44.7767 25.8296 44.7367 25.849C44.6966 25.8683 44.6621 25.8972 44.636 25.9332C44.6094 25.98 44.5934 26.0322 44.5892 26.0859C44.5851 26.1396 44.5928 26.1936 44.612 26.244C44.6424 26.2805 44.6811 26.3094 44.725 26.3281C44.7688 26.3468 44.8165 26.3548 44.864 26.3515Z" fill="white"/>
|
||||
<path d="M45.012 28.5584C45.043 28.5832 45.0792 28.6006 45.118 28.6093C45.1567 28.6179 45.197 28.6176 45.2356 28.6084C45.2742 28.5992 45.3102 28.5812 45.3408 28.556C45.3714 28.5308 45.3957 28.4989 45.412 28.4628C45.4411 28.3721 45.4458 28.2754 45.4254 28.1824C45.405 28.0893 45.3604 28.0033 45.2961 27.9329C45.252 27.9113 45.2039 27.899 45.1548 27.8968C45.1057 27.8947 45.0567 27.9026 45.0109 27.9202C44.9651 27.9378 44.9234 27.9646 44.8885 27.999C44.8536 28.0335 44.8262 28.0747 44.808 28.1202C44.712 28.2676 44.804 28.4509 45.012 28.5584Z" fill="white"/>
|
||||
<path d="M42.9079 20.4836C42.9279 20.4517 42.908 20.4318 42.876 20.3959C42.844 20.3601 42.8 20.3959 42.784 20.4238C42.768 20.4517 42.784 20.4995 42.784 20.4995C42.784 20.4995 42.8839 20.5194 42.9079 20.4836Z" fill="white"/>
|
||||
<path d="M43.636 25.7029C43.696 25.6033 43.512 25.42 43.308 25.4161C43.104 25.4121 43.064 25.679 43.096 25.7786C43.128 25.8782 43.58 25.8025 43.636 25.7029Z" fill="white"/>
|
||||
<path d="M45.5 32.7346C45.64 32.6669 45.6 32.7067 45.732 32.7984C45.864 32.89 46.104 32.9418 46.184 32.6669C46.2097 32.5395 46.1871 32.4071 46.1207 32.2953C46.0542 32.1834 45.9485 32.1001 45.824 32.0613C45.6705 32.0358 45.5129 32.0677 45.3816 32.1508C45.2502 32.2339 45.1542 32.3623 45.112 32.5115C45.072 32.7266 45.356 32.7983 45.5 32.7346Z" fill="white"/>
|
||||
<path d="M43.096 18.1765C43.0398 18.0881 42.9531 18.0231 42.8522 17.9938C42.7513 17.9645 42.6432 17.9728 42.548 18.0171C42.452 18.0663 42.3795 18.1514 42.3465 18.2537C42.3135 18.3561 42.3227 18.4673 42.372 18.563C42.4213 18.6586 42.5068 18.7308 42.6096 18.7637C42.7123 18.7966 42.824 18.7874 42.92 18.7383C42.9704 18.7148 43.0153 18.6812 43.0518 18.6395C43.0884 18.5978 43.1159 18.5489 43.1324 18.4961C43.149 18.4432 43.1543 18.3875 43.148 18.3325C43.1418 18.2774 43.1241 18.2243 43.096 18.1765Z" fill="white"/>
|
||||
<path d="M37.932 7.46662C37.98 7.46662 38.092 7.36702 38.056 7.29928C38.0317 7.27156 38.0001 7.25123 37.9647 7.24065C37.9293 7.23008 37.8916 7.22969 37.856 7.23951C37.8327 7.25782 37.8143 7.28158 37.8024 7.3087C37.7905 7.33581 37.7856 7.36542 37.788 7.3949C37.8029 7.41909 37.8242 7.43864 37.8497 7.45132C37.8751 7.464 37.9037 7.46929 37.932 7.46662Z" fill="white"/>
|
||||
<path d="M42.4961 26.634C42.4039 26.5868 42.297 26.577 42.1977 26.6067C42.0985 26.6365 42.0147 26.7034 41.964 26.7934C41.9109 26.9202 41.903 27.0613 41.9416 27.1932C41.9801 27.3252 42.0629 27.44 42.176 27.5185C42.28 27.5578 42.395 27.5571 42.4985 27.5166C42.602 27.4761 42.6867 27.3987 42.7361 27.2994C42.7667 27.2405 42.7848 27.1759 42.7893 27.1097C42.7937 27.0434 42.7844 26.977 42.7618 26.9146C42.7393 26.8521 42.7041 26.7949 42.6583 26.7467C42.6126 26.6984 42.5574 26.6601 42.4961 26.634Z" fill="white"/>
|
||||
<path d="M47.196 27.9456C47.108 28.1409 47.16 28.3719 47.3 28.4277C47.3902 28.453 47.4865 28.446 47.572 28.4078C47.612 28.1887 47.652 27.9696 47.688 27.7464C47.6439 27.72 47.5941 27.7042 47.5427 27.7002C47.4914 27.6962 47.4398 27.7042 47.392 27.7236C47.3443 27.7429 47.3017 27.773 47.2677 27.8116C47.2337 27.8501 47.2092 27.896 47.196 27.9456Z" fill="white"/>
|
||||
<path d="M41.072 27.8888C41.0564 27.8577 41.0325 27.8315 41.0028 27.8132C40.9731 27.7949 40.9389 27.7852 40.904 27.7852C40.871 27.7973 40.8421 27.8182 40.8202 27.8456C40.7984 27.873 40.7844 27.9058 40.78 27.9405C40.78 27.9844 40.868 28.1119 40.948 28.1119C41.028 28.1119 41.1 27.9366 41.072 27.8888Z" fill="white"/>
|
||||
<path d="M46.74 30.9932C46.708 31.1406 46.656 31.2841 46.616 31.4275C46.5911 31.4514 46.5721 31.4808 46.5608 31.5134C46.5494 31.546 46.5459 31.5808 46.5506 31.6149C46.5553 31.6491 46.568 31.6817 46.5877 31.71C46.6074 31.7384 46.6335 31.7617 46.664 31.7781C46.776 31.4514 46.888 31.1247 46.988 30.794C46.9287 30.7884 46.8696 30.8061 46.8233 30.8433C46.7769 30.8805 46.7471 30.9343 46.74 30.9932Z" fill="white"/>
|
||||
<path d="M47.008 24.2518C47.1348 24.2947 47.2725 24.2932 47.3983 24.2475C47.5241 24.2019 47.6306 24.1148 47.7 24.0008C47.7357 23.8796 47.7281 23.7498 47.6785 23.6335C47.6289 23.5173 47.5404 23.4218 47.428 23.3633C47.3289 23.313 47.2141 23.3027 47.1075 23.3346C47.0009 23.3665 46.9108 23.4382 46.856 23.5346C46.7926 23.6529 46.7731 23.7896 46.8009 23.9208C46.8287 24.0519 46.902 24.1692 47.008 24.2518Z" fill="white"/>
|
||||
<path d="M24.088 4.50534C24.0463 4.49744 24.0034 4.49831 23.9621 4.50792C23.9208 4.51753 23.8819 4.53566 23.848 4.56113C23.768 4.63683 23.848 4.84001 23.952 4.8679C24.0186 4.87511 24.086 4.86554 24.148 4.84003C24.236 4.68066 24.2 4.52925 24.088 4.50534Z" fill="white"/>
|
||||
<path d="M46.112 29.148C45.996 29.1082 45.944 29.1799 45.904 29.2636C45.8874 29.287 45.877 29.3141 45.8737 29.3426C45.8704 29.371 45.8743 29.3998 45.885 29.4264C45.8958 29.4529 45.913 29.4763 45.9352 29.4945C45.9574 29.5127 45.9838 29.5251 46.012 29.5305C46.0946 29.5305 46.1768 29.5184 46.256 29.4947C46.2709 29.4627 46.279 29.428 46.2797 29.3927C46.2805 29.3575 46.2738 29.3225 46.2603 29.2899C46.2467 29.2573 46.2266 29.2279 46.2011 29.2035C46.1756 29.1791 46.1452 29.1602 46.112 29.148Z" fill="white"/>
|
||||
<path d="M38.72 15.5148C38.7462 15.5107 38.7709 15.4999 38.7915 15.4834C38.8122 15.4669 38.8282 15.4452 38.8379 15.4207C38.8476 15.3961 38.8507 15.3694 38.8468 15.3433C38.843 15.3172 38.8324 15.2925 38.816 15.2718C38.772 15.2001 38.608 15.0486 38.544 15.0805C38.48 15.1124 38.444 15.3156 38.448 15.4032C38.452 15.4909 38.584 15.5626 38.72 15.5148Z" fill="white"/>
|
||||
<path d="M41.928 30.3676C42.0634 30.3947 42.2038 30.3842 42.3336 30.3371C42.4635 30.29 42.5777 30.2082 42.6639 30.1006C42.7081 29.9799 42.704 29.8469 42.6527 29.7291C42.6013 29.6113 42.5066 29.5175 42.388 29.4672C42.2681 29.4281 42.1386 29.4304 42.0202 29.4738C41.9019 29.5172 41.8018 29.5991 41.736 29.7062C41.6792 29.8204 41.6675 29.9516 41.703 30.074C41.7385 30.1964 41.8188 30.3011 41.928 30.3676Z" fill="white"/>
|
||||
<path d="M39.912 12.8643C39.9364 12.8474 39.9568 12.8256 39.972 12.8001C39.9872 12.7747 39.9967 12.7463 40 12.7169C39.9931 12.6791 39.9717 12.6455 39.9403 12.6232C39.909 12.6008 39.8701 12.5916 39.832 12.5974C39.728 12.6253 39.776 12.7528 39.788 12.8046C39.8 12.8564 39.892 12.8803 39.912 12.8643Z" fill="white"/>
|
||||
<path d="M38.416 12.4145C38.4595 12.4111 38.5017 12.3983 38.5397 12.3769C38.5777 12.3556 38.6105 12.3263 38.636 12.291C38.728 12.1077 38.616 11.9882 38.432 11.8926C38.292 11.9802 38.128 12.032 38.168 12.2273C38.1769 12.2844 38.2078 12.3359 38.254 12.3708C38.3003 12.4057 38.3583 12.4214 38.416 12.4145Z" fill="white"/>
|
||||
<path d="M38.46 6.49767C38.4589 6.41035 38.434 6.32497 38.388 6.25065C38.54 6.25065 38.624 6.17893 38.644 6.05144C38.6486 6.00859 38.643 5.96526 38.6276 5.92496C38.6123 5.88466 38.5877 5.84852 38.5558 5.81944C38.5239 5.79036 38.4856 5.76916 38.4439 5.75755C38.4022 5.74595 38.3584 5.74426 38.316 5.75262C38.136 5.78051 38.072 5.67293 37.964 5.57332C38.0004 5.53005 38.0326 5.48335 38.06 5.43388C38.0895 5.4326 38.1183 5.42441 38.144 5.40998C38.1503 5.43701 38.1583 5.46361 38.168 5.48965C38.2003 5.54269 38.2487 5.58405 38.3063 5.60771C38.3639 5.63136 38.4275 5.63607 38.488 5.62113C38.608 5.57332 38.612 5.35817 38.588 5.24661C38.5534 5.18512 38.5051 5.13235 38.4469 5.09229C38.3886 5.05224 38.3219 5.02597 38.252 5.01552C38.252 4.94381 38.28 4.9478 38.368 4.85617C38.3883 4.83851 38.4046 4.81678 38.416 4.79241C38.248 4.66491 38.072 4.54539 37.896 4.42188C37.7933 4.47793 37.7076 4.56052 37.648 4.66094C37.6234 4.70761 37.6111 4.75967 37.612 4.81235C37.48 4.81235 37.4 4.90397 37.372 5.07529C37.3513 5.12464 37.3409 5.1776 37.3413 5.23105C37.3416 5.2845 37.3528 5.33735 37.374 5.38642C37.3953 5.43549 37.4263 5.47978 37.4651 5.51669C37.5039 5.55359 37.5497 5.58234 37.6 5.60122C37.5129 5.64068 37.4217 5.67008 37.328 5.68886C37.264 5.68203 37.1998 5.70025 37.1491 5.73966C37.0983 5.77906 37.0649 5.83656 37.056 5.90003C37.0295 5.96897 37.0254 6.04439 37.044 6.1158C37.0626 6.18722 37.1032 6.25108 37.16 6.29846C37.592 6.62915 37.752 6.61719 38.14 6.24267L38.172 6.21877C38.125 6.27132 38.0859 6.33037 38.056 6.39407C38.0434 6.41771 38.0368 6.44407 38.0369 6.47082C38.0369 6.49757 38.0435 6.52391 38.0562 6.54752C38.0688 6.57113 38.087 6.59127 38.1093 6.6062C38.1316 6.62113 38.1573 6.63039 38.184 6.63314C38.2108 6.64507 38.2399 6.65094 38.2693 6.65038C38.2987 6.64983 38.3276 6.64284 38.3539 6.62991C38.3803 6.61698 38.4034 6.59844 38.4217 6.57558C38.4401 6.55273 38.4531 6.52612 38.46 6.49767Z" fill="white"/>
|
||||
<path d="M40.148 17.1233C40.192 17.1233 40.296 17.0078 40.276 16.952C40.256 16.8962 40.108 16.8763 40.068 16.8962C40.028 16.9161 39.96 16.9918 39.984 17.0556C40.0008 17.0826 40.0256 17.1036 40.0551 17.1158C40.0845 17.1279 40.117 17.1306 40.148 17.1233Z" fill="white"/>
|
||||
<path d="M38.216 9.03187C38.2255 9.02835 38.2343 9.02295 38.2417 9.01599C38.2491 9.00903 38.2551 9.00065 38.2592 8.99136C38.2633 8.98207 38.2655 8.97206 38.2656 8.96191C38.2658 8.95176 38.2638 8.94167 38.26 8.93227C38.2487 8.91611 38.2324 8.9042 38.2135 8.89842C38.1947 8.89264 38.1744 8.89332 38.156 8.90039C38.1436 8.91265 38.1349 8.92804 38.1307 8.94489C38.1264 8.96173 38.1269 8.97942 38.132 8.99603C38.132 8.99603 38.184 9.04781 38.216 9.03187Z" fill="white"/>
|
||||
<path d="M38.936 9.25077C39.0026 9.20447 39.0543 9.13994 39.0848 9.06498C39.1153 8.99002 39.1234 8.90786 39.108 8.82844C39.0743 8.76802 39.018 8.7233 38.9514 8.70391C38.8847 8.68452 38.8131 8.69205 38.752 8.72487C38.7208 8.74027 38.6931 8.76195 38.6707 8.78856C38.6483 8.81517 38.6317 8.84611 38.6219 8.87944C38.6122 8.91276 38.6094 8.94775 38.6139 8.98218C38.6184 9.01661 38.63 9.04972 38.648 9.07945C38.716 9.23483 38.836 9.30256 38.936 9.25077Z" fill="white"/>
|
||||
<path d="M41.62 14.7225C41.6996 14.656 41.7538 14.5643 41.7734 14.4627C41.7931 14.3611 41.7771 14.2559 41.728 14.1647C41.64 13.9774 41.46 13.9376 41.228 14.0531C41.1622 14.0939 41.1112 14.1546 41.0824 14.2262C41.0536 14.2979 41.0486 14.3768 41.068 14.4516C41.14 14.6149 41.5 14.7862 41.62 14.7225Z" fill="white"/>
|
||||
<path d="M41.428 23.1126C41.664 23.1803 41.796 22.8496 41.728 22.754C41.66 22.6584 41.3641 22.6265 41.2961 22.754C41.2281 22.8815 41.196 23.0489 41.428 23.1126Z" fill="white"/>
|
||||
<path d="M40.3 21.7625C40.3169 21.7719 40.3356 21.7778 40.3549 21.7797C40.3741 21.7816 40.3936 21.7794 40.412 21.7734C40.4305 21.7675 40.4474 21.7577 40.4619 21.7449C40.4763 21.732 40.488 21.7163 40.496 21.6987C40.536 21.5951 40.424 21.5473 40.38 21.5274C40.3515 21.5268 40.3234 21.5335 40.2982 21.5467C40.273 21.56 40.2516 21.5793 40.236 21.6031C40.2321 21.6329 40.2359 21.6632 40.2471 21.6911C40.2583 21.719 40.2765 21.7436 40.3 21.7625Z" fill="white"/>
|
||||
<path d="M41.144 15.7015C41.088 15.6258 40.912 15.4624 40.82 15.5023C40.728 15.5421 40.76 15.7891 40.788 15.8768C40.7956 15.9016 40.8093 15.9242 40.8279 15.9424C40.8465 15.9606 40.8694 15.9738 40.8944 15.981C40.9195 15.9881 40.946 15.9889 40.9714 15.9832C40.9968 15.9775 41.0204 15.9656 41.04 15.9485C41.14 15.8887 41.216 15.7851 41.144 15.7015Z" fill="white"/>
|
||||
<path d="M40.792 13.0443C40.832 12.8889 40.668 12.7096 40.432 12.6459C40.3619 12.6393 40.2917 12.6571 40.2333 12.6964C40.175 12.7356 40.1321 12.7938 40.112 12.861C40.1 12.9427 40.1155 13.0261 40.156 13.0982C40.1965 13.1702 40.2598 13.2269 40.336 13.2594C40.4251 13.2763 40.5172 13.2646 40.5992 13.2259C40.6811 13.1873 40.7487 13.1237 40.792 13.0443Z" fill="white"/>
|
||||
<path d="M40.712 25.2003C40.7524 25.2074 40.7939 25.2045 40.8329 25.192C40.872 25.1795 40.9073 25.1577 40.936 25.1285C40.9521 25.108 40.963 25.084 40.9678 25.0584C40.9727 25.0328 40.9714 25.0065 40.9639 24.9815C40.9565 24.9566 40.9432 24.9338 40.9251 24.915C40.907 24.8962 40.8847 24.882 40.86 24.8735C40.792 24.8496 40.604 24.8138 40.544 24.9612C40.484 25.1086 40.672 25.1803 40.712 25.2003Z" fill="white"/>
|
||||
<path d="M42.42 14.2156C42.396 14.1558 42.224 14.0522 42.156 14.0841C42.1247 14.1234 42.1033 14.1696 42.0936 14.2188C42.0838 14.268 42.086 14.3188 42.1 14.367C42.164 14.4228 42.312 14.4984 42.364 14.4546C42.3918 14.4221 42.4115 14.3835 42.4212 14.3419C42.4309 14.3003 42.4305 14.257 42.42 14.2156Z" fill="white"/>
|
||||
<path d="M44.272 23.1565C44.2866 23.1315 44.295 23.1034 44.2964 23.0746C44.2977 23.0457 44.2921 23.017 44.2799 22.9908C44.2677 22.9646 44.2494 22.9417 44.2264 22.924C44.2035 22.9064 44.1765 22.8946 44.148 22.8895C44.1043 22.8792 44.059 22.8781 44.0149 22.8863C43.9708 22.8946 43.9289 22.9119 43.892 22.9373C43.84 22.9891 43.848 23.2401 43.956 23.288C44.0154 23.3118 44.0819 23.3113 44.141 23.2867C44.2002 23.2621 44.2472 23.2153 44.272 23.1565Z" fill="white"/>
|
||||
<path d="M46.232 22.9563C46.2914 22.93 46.3394 22.8834 46.3673 22.8249C46.3952 22.7665 46.4011 22.7 46.384 22.6375C46.3745 22.6074 46.359 22.5794 46.3385 22.5554C46.3179 22.5313 46.2927 22.5116 46.2643 22.4975C46.2359 22.4833 46.205 22.4751 46.1733 22.4731C46.1417 22.4712 46.1099 22.4756 46.08 22.4861C46.0224 22.513 45.9763 22.5595 45.9499 22.6171C45.9235 22.6748 45.9186 22.7399 45.936 22.8009C45.9436 22.8314 45.9576 22.8601 45.9771 22.8849C45.9966 22.9096 46.0211 22.93 46.049 22.9447C46.077 22.9594 46.1078 22.968 46.1393 22.97C46.1708 22.972 46.2024 22.9673 46.232 22.9563Z" fill="white"/>
|
||||
<path d="M46.712 19.2561C46.7286 19.2287 46.7394 19.1982 46.7435 19.1664C46.7477 19.1347 46.7451 19.1024 46.7361 19.0717C46.7271 19.041 46.7117 19.0125 46.6911 18.988C46.6704 18.9635 46.6448 18.9436 46.616 18.9294C46.5857 18.913 46.5524 18.9028 46.518 18.8996C46.4837 18.8963 46.4491 18.9 46.4162 18.9104C46.3833 18.9209 46.3529 18.9378 46.3267 18.9602C46.3006 18.9827 46.2792 19.0101 46.264 19.0409C46.2381 19.1048 46.2369 19.176 46.2605 19.2407C46.2841 19.3055 46.331 19.3592 46.3921 19.3916C46.4527 19.4133 46.5194 19.4114 46.5787 19.3863C46.638 19.3611 46.6856 19.3147 46.712 19.2561Z" fill="white"/>
|
||||
<path d="M44.06 20.9647C44.0821 20.9277 44.0965 20.8867 44.1024 20.844C44.1083 20.8014 44.1056 20.758 44.0944 20.7164C44.0832 20.6748 44.0638 20.6359 44.0373 20.6019C44.0108 20.5679 43.9777 20.5396 43.94 20.5185C43.8585 20.4839 43.7688 20.4726 43.6812 20.486C43.5935 20.4993 43.5114 20.5368 43.444 20.5942C43.42 20.5424 43.38 20.4667 43.304 20.4826C43.228 20.4986 43.22 20.6261 43.232 20.646C43.2497 20.6692 43.2719 20.6886 43.2974 20.7029C43.3228 20.7173 43.3509 20.7264 43.38 20.7297C43.3604 20.8192 43.3686 20.9125 43.4036 20.9972C43.4387 21.0819 43.4988 21.154 43.576 21.2038C43.712 21.2715 43.968 21.144 44.06 20.9647Z" fill="white"/>
|
||||
<path d="M43.136 13.6785C43.1504 13.6162 43.1423 13.5509 43.113 13.494C43.0837 13.4371 43.0352 13.3924 42.976 13.3677C42.9326 13.3391 42.8798 13.3281 42.8285 13.337C42.7771 13.3459 42.7312 13.374 42.7 13.4155C42.572 13.5749 42.644 13.7104 42.744 13.8658C42.92 13.8458 43.092 13.8737 43.136 13.6785Z" fill="white"/>
|
||||
<path d="M43.0159 15.2481C42.9759 15.2203 42.8319 15.2123 42.8039 15.2681C42.7759 15.3238 42.8599 15.4394 42.9039 15.4553C42.9334 15.4682 42.9664 15.4709 42.9975 15.4629C43.0287 15.455 43.0563 15.4369 43.076 15.4115C43.086 15.3815 43.0855 15.349 43.0746 15.3193C43.0637 15.2897 43.043 15.2646 43.0159 15.2481Z" fill="white"/>
|
||||
<path d="M43.12 17.1632C43.1544 17.1568 43.187 17.1433 43.2159 17.1236C43.2447 17.1039 43.2691 17.0784 43.2876 17.0488C43.306 17.0192 43.3181 16.9861 43.323 16.9516C43.3278 16.9171 43.3255 16.882 43.316 16.8484C43.2773 16.7581 43.2082 16.684 43.1206 16.6389C43.033 16.5938 42.9324 16.5806 42.836 16.6014C42.7646 16.6268 42.706 16.6788 42.6724 16.7465C42.6388 16.8141 42.6329 16.8921 42.656 16.964C42.6946 17.0487 42.7636 17.116 42.8494 17.1528C42.9351 17.1896 43.0316 17.1933 43.12 17.1632Z" fill="white"/>
|
||||
<path d="M46.672 22.459C46.792 22.5148 46.996 22.3952 47.072 22.2239C47.118 22.1505 47.1338 22.0622 47.1159 21.9776C47.098 21.8929 47.0478 21.8184 46.976 21.7697C46.8905 21.7314 46.7947 21.7223 46.7035 21.7439C46.6123 21.7655 46.5309 21.8166 46.472 21.8893C46.4312 21.9923 46.429 22.1066 46.4657 22.2111C46.5024 22.3157 46.5756 22.4037 46.672 22.459Z" fill="white"/>
|
||||
<path d="M14.768 3.38696C14.8334 3.32995 14.8756 3.25107 14.8866 3.16521C14.8977 3.07934 14.8769 2.99241 14.828 2.92081C14.8047 2.89171 14.7758 2.86747 14.743 2.84951C14.7103 2.83155 14.6743 2.82022 14.6371 2.81615C14.6 2.81208 14.5624 2.81536 14.5265 2.8258C14.4906 2.83624 14.4571 2.85361 14.428 2.87697C14.3681 2.94856 14.3353 3.03879 14.3353 3.13196C14.3353 3.22514 14.3681 3.31537 14.428 3.38696C14.45 3.40973 14.4764 3.42784 14.5056 3.44022C14.5348 3.45259 14.5662 3.45899 14.598 3.45899C14.6297 3.45899 14.6611 3.45259 14.6904 3.44022C14.7196 3.42784 14.746 3.40973 14.768 3.38696Z" fill="white"/>
|
||||
<path d="M10.196 4.3676C10.196 4.3676 10.196 4.36758 10.196 4.34766L10.088 4.42336C10.1281 4.41398 10.1652 4.39483 10.196 4.3676Z" fill="white"/>
|
||||
<path d="M42.508 12.7774C42.6124 12.8115 42.7253 12.81 42.8289 12.7732C42.9324 12.7364 43.0207 12.6664 43.08 12.5742C43.1397 12.5698 43.1976 12.5522 43.2495 12.5225C43.3014 12.4929 43.346 12.452 43.38 12.4029C43.4412 12.3039 43.4908 12.1983 43.528 12.0881C43.5846 12.0814 43.6408 12.0707 43.696 12.0563L43.788 12.0125C43.8437 12.0201 43.9002 12.0201 43.956 12.0125C43.9074 12.0642 43.8816 12.133 43.884 12.2037C43.884 12.3551 43.5439 12.2874 43.5519 12.4985C43.5599 12.7097 43.3159 12.8013 43.3519 13.0563C43.3879 13.3113 43.588 13.5344 43.792 13.4269C43.9652 13.3223 44.0956 13.1599 44.16 12.9687C44.1887 12.9911 44.2228 13.0058 44.2588 13.0116C44.2949 13.0173 44.3318 13.0139 44.3662 13.0015C44.4006 12.9892 44.4312 12.9684 44.4553 12.941C44.4794 12.9137 44.4961 12.8807 44.5039 12.8451C44.5062 12.8144 44.502 12.7835 44.4914 12.7545C44.4809 12.7255 44.4643 12.699 44.4428 12.6768C44.4212 12.6546 44.3953 12.6372 44.3665 12.6257C44.3378 12.6142 44.3069 12.6089 44.276 12.6101C44.468 12.5623 44.844 12.4109 44.708 12.0722C44.663 11.9871 44.5915 11.9189 44.5041 11.8779C44.4168 11.8369 44.3185 11.8254 44.224 11.8451C44.2597 11.7761 44.2784 11.6996 44.2784 11.622C44.2784 11.5443 44.2597 11.4678 44.224 11.3989C44.1882 11.3378 44.1383 11.2861 44.0785 11.248C44.0187 11.2099 43.9506 11.1865 43.88 11.1797C43.8452 11.1474 43.8077 11.1181 43.768 11.0921C43.698 11.055 43.6168 11.0451 43.54 11.0642C43.416 11.0961 43.3097 11.1756 43.2445 11.2854C43.1793 11.3952 43.1604 11.5263 43.192 11.6499C43.192 11.7017 43.216 11.7574 43.224 11.8172C43.116 11.8172 43.012 11.8451 42.912 11.873H42.88C42.724 11.8252 42.4799 11.9686 42.3519 12.1599C42.2945 12.2633 42.2786 12.3846 42.3076 12.4993C42.3366 12.614 42.4082 12.7134 42.508 12.7774Z" fill="white"/>
|
||||
<path d="M14.96 4.62991C14.9325 4.60888 14.9011 4.59351 14.8677 4.58473C14.8342 4.57594 14.7993 4.57389 14.765 4.57872C14.7308 4.58354 14.6978 4.59515 14.6681 4.61284C14.6383 4.63052 14.6125 4.65393 14.592 4.68171C14.5682 4.70227 14.5492 4.72767 14.5361 4.75619C14.5231 4.78471 14.5164 4.8157 14.5164 4.84704C14.5164 4.87839 14.5231 4.90937 14.5361 4.93789C14.5492 4.96642 14.5682 4.99183 14.592 5.0124C14.6446 5.05652 14.7112 5.08069 14.78 5.08069C14.8488 5.08069 14.9153 5.05652 14.968 5.0124C15.0177 4.96057 15.0448 4.89121 15.0433 4.81951C15.0418 4.74782 15.0118 4.67963 14.96 4.62991Z" fill="white"/>
|
||||
<path d="M10.784 8.2556C10.8126 8.2376 10.837 8.21359 10.8553 8.18523C10.8736 8.15687 10.8855 8.12484 10.89 8.09143C10.8946 8.05802 10.8917 8.02404 10.8817 7.99183C10.8717 7.95962 10.8548 7.92997 10.832 7.90499C10.804 7.88211 10.7706 7.86651 10.735 7.85956C10.6995 7.85261 10.6627 7.85453 10.628 7.86516C10.564 7.90101 10.48 7.99264 10.484 8.05639C10.488 8.21576 10.696 8.28349 10.784 8.2556Z" fill="white"/>
|
||||
<path d="M47.812 25.3034C47.8589 25.3224 47.907 25.3383 47.956 25.3512L47.98 24.7695C47.8673 24.8102 47.7715 24.8874 47.708 24.9887C47.6924 25.0158 47.6827 25.0459 47.6796 25.0769C47.6764 25.108 47.6799 25.1394 47.6897 25.1691C47.6995 25.1987 47.7155 25.226 47.7365 25.2492C47.7576 25.2723 47.7833 25.2908 47.812 25.3034Z" fill="white"/>
|
||||
<path d="M10.484 5.7809C10.5367 5.70427 10.5589 5.61086 10.5463 5.51883C10.5337 5.4268 10.4873 5.34271 10.416 5.28288C10.3816 5.24709 10.34 5.21904 10.2939 5.20063C10.2477 5.18222 10.1982 5.17388 10.1485 5.17614C10.0989 5.17841 10.0503 5.19123 10.0061 5.21376C9.96182 5.2363 9.92292 5.26802 9.89201 5.30678C9.85574 5.33472 9.82549 5.36968 9.80314 5.40955C9.78079 5.44941 9.76679 5.49337 9.76193 5.53877C9.75707 5.58418 9.76145 5.6301 9.77487 5.67376C9.78828 5.71742 9.81047 5.75792 9.84001 5.79284C9.9328 5.8639 10.0471 5.90143 10.1641 5.89926C10.2811 5.89709 10.3939 5.85535 10.484 5.7809Z" fill="white"/>
|
||||
<path d="M42.58 24.7261C42.58 24.6106 42.248 24.4472 42.14 24.5588C42.0997 24.6068 42.0775 24.6675 42.0775 24.7301C42.0775 24.7927 42.0997 24.8534 42.14 24.9014C42.272 25.005 42.584 24.8416 42.58 24.7261Z" fill="white"/>
|
||||
<path d="M41.872 9.73731C41.8777 9.6753 41.8704 9.61278 41.8504 9.55376C41.8304 9.49475 41.7983 9.44057 41.756 9.39468C41.7972 9.36984 41.8305 9.33372 41.8517 9.29065C41.873 9.24757 41.8814 9.19932 41.876 9.15162C41.876 8.97233 41.7 8.93648 41.54 8.88867C41.428 9.01617 41.284 9.12773 41.4 9.28709C41.4112 9.30231 41.4247 9.31573 41.44 9.32693C41.3706 9.37184 41.3111 9.4303 41.265 9.49878C41.219 9.56726 41.1873 9.64434 41.172 9.72535C41.1709 9.75936 41.1766 9.79325 41.1887 9.82508C41.2008 9.85691 41.2191 9.88606 41.2425 9.91085C41.2659 9.93564 41.2939 9.9556 41.3251 9.96957C41.3562 9.98355 41.3899 9.99128 41.424 9.99231C41.644 10.0322 41.844 9.91262 41.872 9.73731Z" fill="white"/>
|
||||
<path d="M42.028 11.9284C42.0694 11.9175 42.1077 11.897 42.1396 11.8686C42.1716 11.8402 42.1964 11.8047 42.212 11.765C42.252 11.5857 42.104 11.5459 41.972 11.498C41.832 11.5857 41.752 11.6973 41.836 11.8447C41.8583 11.8737 41.8875 11.8966 41.9211 11.9113C41.9547 11.9259 41.9915 11.9318 42.028 11.9284Z" fill="white"/>
|
||||
<path d="M41.736 11.0808C41.7474 11.0662 41.7554 11.0493 41.7593 11.0313C41.7633 11.0133 41.7632 10.9946 41.759 10.9767C41.7547 10.9587 41.7465 10.9419 41.7349 10.9275C41.7233 10.9131 41.7087 10.9015 41.692 10.8935C41.654 10.8836 41.6143 10.8821 41.5756 10.889C41.5369 10.8959 41.5002 10.911 41.468 10.9334C41.4 10.9652 41.324 10.9852 41.288 11.0609C41.252 11.1366 41.34 11.2282 41.456 11.2242C41.51 11.2204 41.5626 11.2057 41.6108 11.1811C41.6589 11.1564 41.7015 11.1223 41.736 11.0808Z" fill="white"/>
|
||||
<path d="M40.672 9.77411C40.604 9.82989 40.524 9.89364 40.536 9.97731C40.548 10.061 40.776 10.1646 40.892 10.1048C41.008 10.045 40.976 9.95741 40.94 9.86975C40.9339 9.84207 40.9208 9.81638 40.902 9.7951C40.8832 9.77382 40.8593 9.75765 40.8325 9.74809C40.8057 9.73853 40.777 9.7359 40.7489 9.74045C40.7208 9.74501 40.6943 9.75658 40.672 9.77411Z" fill="white"/>
|
||||
<path d="M41.2 12.7249C41.2598 12.6967 41.3132 12.6566 41.3567 12.6069C41.4002 12.5573 41.433 12.4992 41.4529 12.4364C41.4728 12.3735 41.4794 12.3072 41.4724 12.2417C41.4654 12.1762 41.4448 12.1128 41.412 12.0555C41.3927 11.999 41.3618 11.947 41.3212 11.903C41.2807 11.859 41.2313 11.8238 41.1764 11.7999C41.1215 11.7759 41.0621 11.7636 41.0021 11.7637C40.9422 11.7638 40.8829 11.7763 40.828 11.8005C40.7078 11.8571 40.6127 11.9559 40.5611 12.0779C40.5094 12.1999 40.5047 12.3367 40.548 12.4619C40.6112 12.5723 40.7099 12.6583 40.8282 12.706C40.9465 12.7537 41.0775 12.7604 41.2 12.7249Z" fill="white"/>
|
||||
<path d="M41.692 15.5268C41.7025 15.5628 41.7206 15.5961 41.745 15.6246C41.7695 15.653 41.7998 15.676 41.8339 15.6918C41.868 15.7076 41.9051 15.7161 41.9427 15.7165C41.9803 15.7169 42.0176 15.7093 42.052 15.6942C42.1135 15.6619 42.1617 15.609 42.188 15.5449C42.2143 15.4808 42.2172 15.4095 42.196 15.3435C42.1586 15.2751 42.0964 15.2235 42.0221 15.199C41.9478 15.1746 41.867 15.1793 41.796 15.2121C41.7412 15.241 41.6997 15.2899 41.6804 15.3486C41.661 15.4073 41.6652 15.4711 41.692 15.5268Z" fill="white"/>
|
||||
<path d="M40.74 11.0957C40.7709 11.0896 40.8 11.0765 40.8252 11.0575C40.8503 11.0386 40.8708 11.0141 40.885 10.9861C40.8993 10.9581 40.907 10.9272 40.9075 10.8958C40.908 10.8644 40.9013 10.8333 40.888 10.8048C40.8665 10.7517 40.8259 10.7084 40.7742 10.6834C40.7224 10.6584 40.6632 10.6533 40.608 10.6694C40.5 10.6933 40.404 10.9642 40.484 11.0359C40.5187 11.0657 40.56 11.0867 40.6046 11.0971C40.6492 11.1075 40.6957 11.107 40.74 11.0957Z" fill="white"/>
|
||||
<path d="M25.192 6.48536C25.2454 6.48711 25.2979 6.47072 25.3408 6.43887C25.3836 6.40702 25.4144 6.36159 25.428 6.31006C25.4676 6.24282 25.4818 6.16368 25.468 6.08694C25.348 6.08694 25.152 5.93953 25.068 6.04711C24.984 6.15468 25.104 6.33796 25.12 6.44553L25.192 6.48536Z" fill="white"/>
|
||||
<path d="M41.96 22.3986C42.004 22.4305 42.156 22.4783 42.22 22.3787C42.284 22.2791 42.148 22.1715 42.1 22.1516C42.052 22.1317 41.932 22.1078 41.892 22.1954C41.8769 22.2318 41.8754 22.2723 41.8879 22.3097C41.9004 22.347 41.926 22.3786 41.96 22.3986Z" fill="white"/>
|
||||
<path d="M15.624 1.74086C15.6526 1.66647 15.6526 1.58415 15.624 1.50977C15.224 1.6532 14.824 1.81256 14.456 1.9799C14.5405 2.08172 14.6532 2.15656 14.78 2.19507C14.9492 2.20493 15.1177 2.16764 15.2668 2.08741C15.4159 2.00718 15.5396 1.88719 15.624 1.74086Z" fill="white"/>
|
||||
<path d="M42.672 20.2603C42.672 20.1368 42.772 19.9256 42.672 19.8618C42.572 19.7981 42.388 19.9415 42.272 19.9734V20.0571C42.2785 20.1091 42.302 20.1576 42.3388 20.195C42.3757 20.2325 42.4239 20.2568 42.476 20.2643C42.5404 20.2814 42.6083 20.2801 42.672 20.2603Z" fill="white"/>
|
||||
<path d="M41.412 18.1009C41.397 18.1285 41.3878 18.1588 41.3849 18.19C41.382 18.2213 41.3855 18.2527 41.3953 18.2825C41.405 18.3124 41.4207 18.3399 41.4415 18.3635C41.4622 18.387 41.4876 18.4062 41.516 18.4197C41.672 18.4874 41.916 18.4197 41.956 18.328C41.996 18.2364 41.872 18.0213 41.752 17.9615C41.7207 17.9467 41.6866 17.9385 41.652 17.9376C41.6174 17.9367 41.583 17.943 41.5509 17.9561C41.5189 17.9692 41.49 17.9889 41.4661 18.0139C41.4421 18.0388 41.4237 18.0685 41.412 18.1009Z" fill="white"/>
|
||||
<path d="M42.316 20.8265C42.3304 20.7642 42.3223 20.6988 42.293 20.642C42.2637 20.5851 42.2152 20.5404 42.156 20.5157C42.1129 20.4861 42.0598 20.4745 42.0082 20.4834C41.9566 20.4924 41.9106 20.5211 41.88 20.5635C41.752 20.7189 41.82 20.8583 41.924 21.0137C42.096 20.9938 42.272 21.0217 42.316 20.8265Z" fill="white"/>
|
||||
<path d="M40.644 11.3321C40.6398 11.4302 40.6703 11.5266 40.7302 11.6046C40.7902 11.6825 40.8758 11.737 40.972 11.7584C41.164 11.7982 41.284 11.6946 41.332 11.4436C41.364 11.2763 41.252 11.0452 41.124 11.0173C41.0201 11.0084 40.9162 11.0347 40.8292 11.0918C40.7421 11.1489 40.6769 11.2335 40.644 11.3321Z" fill="white"/>
|
||||
<path d="M41.892 16.3865C41.868 16.3865 41.86 16.4622 41.892 16.4822C41.9001 16.4967 41.9125 16.5084 41.9276 16.5155C41.9426 16.5226 41.9596 16.5249 41.976 16.522C41.9949 16.5133 42.0096 16.4976 42.0171 16.4783C42.0245 16.459 42.0242 16.4375 42.016 16.4184C42.0102 16.408 42.0023 16.3988 41.9928 16.3915C41.9834 16.3841 41.9725 16.3788 41.9609 16.3758C41.9493 16.3728 41.9372 16.3723 41.9253 16.3741C41.9135 16.3759 41.9022 16.3802 41.892 16.3865Z" fill="white"/>
|
||||
<path d="M22.176 8.32252C22.2024 8.30003 22.224 8.27249 22.2396 8.24154C22.2552 8.21059 22.2643 8.17684 22.2666 8.1423C22.2688 8.10776 22.264 8.07312 22.2526 8.04043C22.2412 8.00774 22.2233 7.97767 22.2 7.95199C22.1546 7.90832 22.0952 7.88197 22.0323 7.8776C21.9694 7.87323 21.907 7.89111 21.856 7.92808C21.8307 7.95192 21.8105 7.98064 21.7967 8.01249C21.783 8.04435 21.7759 8.07865 21.7759 8.11334C21.7759 8.14802 21.783 8.18235 21.7967 8.21421C21.8105 8.24606 21.8307 8.27478 21.856 8.29861C21.8736 8.32356 21.8967 8.34431 21.9233 8.35936C21.95 8.37442 21.9797 8.38341 22.0103 8.3857C22.0409 8.38798 22.0716 8.38349 22.1002 8.37257C22.1289 8.36164 22.1547 8.34456 22.176 8.32252Z" fill="white"/>
|
||||
<path d="M21.58 3.15546C21.5718 3.0304 21.5158 2.91322 21.4236 2.828C21.3313 2.74278 21.2098 2.69601 21.084 2.69729C20.808 2.72518 20.82 3.44234 21.084 3.51405C21.1957 3.52125 21.3064 3.48933 21.3969 3.42386C21.4875 3.35838 21.5522 3.26345 21.58 3.15546Z" fill="white"/>
|
||||
<path d="M23.184 4.9129C23.184 4.86509 23.1839 4.75352 23.1039 4.70173C23.0457 4.64502 22.9674 4.61328 22.886 4.61328C22.8045 4.61328 22.7262 4.64502 22.668 4.70173C22.6291 4.7642 22.6135 4.83824 22.6237 4.911C22.6339 4.98377 22.6694 5.05069 22.724 5.10015C22.832 5.18382 23.044 5.10813 23.184 4.9129Z" fill="white"/>
|
||||
<path d="M15.78 6.78897C15.8454 6.73196 15.8876 6.65309 15.8987 6.56722C15.9097 6.48135 15.8889 6.39443 15.84 6.32282C15.7492 6.2504 15.6363 6.21094 15.52 6.21094C15.4037 6.21094 15.2908 6.2504 15.2 6.32282C15.1531 6.38834 15.1328 6.46912 15.1432 6.54893C15.1535 6.62875 15.1939 6.7017 15.256 6.75313C15.286 6.79269 15.3242 6.82538 15.368 6.84899C15.4118 6.8726 15.4601 6.88656 15.5098 6.88996C15.5595 6.89336 15.6093 6.88611 15.6559 6.86869C15.7025 6.85126 15.7449 6.82408 15.78 6.78897Z" fill="white"/>
|
||||
<path d="M23.144 7.02011C23.1692 7.03936 23.1982 7.05315 23.2291 7.0606C23.2599 7.06805 23.292 7.069 23.3233 7.06337C23.3545 7.05774 23.3843 7.04566 23.4106 7.02792C23.4369 7.01018 23.4592 6.98716 23.476 6.96034C23.564 6.82089 23.548 6.56192 23.448 6.51809C23.348 6.47427 23.132 6.55395 23.048 6.66551C23.0285 6.69439 23.0154 6.72711 23.0097 6.76147C23.0039 6.79582 23.0056 6.83102 23.0147 6.86465C23.0238 6.89827 23.0401 6.92955 23.0624 6.95637C23.0847 6.9832 23.1126 7.00493 23.144 7.02011Z" fill="white"/>
|
||||
<path d="M24.816 3.74912C24.92 3.72908 25.0175 3.68395 25.1 3.61765C25.1213 3.60221 25.1382 3.58153 25.149 3.55764C25.1598 3.53375 25.1643 3.50748 25.1618 3.48138C25.1594 3.45527 25.1502 3.43022 25.1352 3.40871C25.1201 3.38721 25.0998 3.36997 25.076 3.35867C25.049 3.33239 25.0158 3.31345 24.9793 3.30369C24.9429 3.29392 24.9046 3.29364 24.868 3.30288C24.8416 3.25307 24.8031 3.21062 24.756 3.17937C24.6912 3.14502 24.6168 3.13305 24.5444 3.1453C24.472 3.15756 24.4058 3.19337 24.356 3.24712C24.212 3.46227 24.212 3.71326 24.356 3.8049C24.4306 3.83782 24.5127 3.85001 24.5937 3.84019C24.6747 3.83037 24.7515 3.7989 24.816 3.74912Z" fill="white"/>
|
||||
<path d="M24.444 2.90754C24.4743 2.88462 24.4993 2.85545 24.5173 2.82201C24.5352 2.78858 24.5456 2.75167 24.5479 2.71382C24.5502 2.67598 24.5442 2.6381 24.5304 2.60277C24.5166 2.56743 24.4953 2.53548 24.468 2.50912C24.4134 2.45928 24.342 2.43164 24.268 2.43164C24.1939 2.43164 24.1226 2.45928 24.068 2.50912C24.0211 2.56501 23.9955 2.63551 23.9955 2.70833C23.9955 2.78115 24.0211 2.85165 24.068 2.90754C24.0909 2.9351 24.1196 2.95729 24.1521 2.97252C24.1846 2.98775 24.2201 2.99567 24.256 2.99567C24.2919 2.99567 24.3274 2.98775 24.3599 2.97252C24.3924 2.95729 24.4211 2.9351 24.444 2.90754Z" fill="white"/>
|
||||
<path d="M25.104 4.77337C25.1262 4.78823 25.1516 4.79761 25.1782 4.80071C25.2048 4.8038 25.2317 4.80052 25.2567 4.79117C25.2818 4.78182 25.3042 4.76667 25.3221 4.74694C25.3401 4.72721 25.3531 4.70348 25.36 4.67775C25.388 4.60205 25.456 4.38692 25.36 4.3391C25.264 4.29129 25.068 4.41081 25.02 4.48253C25.0041 4.50654 24.9936 4.5337 24.9893 4.56212C24.9849 4.59055 24.9868 4.61958 24.9948 4.64721C25.0028 4.67485 25.0167 4.70043 25.0355 4.72221C25.0544 4.74399 25.0777 4.76144 25.104 4.77337Z" fill="white"/>
|
||||
<path d="M23.628 4.00723C23.532 3.92754 23.436 4.00722 23.38 4.10285C23.324 4.19847 23.344 4.36581 23.452 4.38573C23.56 4.40566 23.724 4.4694 23.776 4.32995C23.828 4.1905 23.7 4.06301 23.628 4.00723Z" fill="white"/>
|
||||
<path d="M23.6881 8.32632C23.7361 8.29843 23.816 8.11116 23.768 8.05936C23.72 8.00757 23.536 8.03944 23.508 8.05936C23.48 8.07928 23.42 8.24265 23.452 8.29444C23.485 8.32012 23.5242 8.3366 23.5657 8.3422C23.6072 8.3478 23.6494 8.34233 23.6881 8.32632Z" fill="white"/>
|
||||
<path d="M23.844 1.86398C23.7268 1.8016 23.5917 1.78065 23.461 1.80453C23.3302 1.8284 23.2114 1.89571 23.124 1.99547C22.964 2.20265 23.056 2.50145 23.336 2.70465C23.3819 2.73876 23.434 2.76347 23.4895 2.77734C23.545 2.7912 23.6027 2.79396 23.6592 2.78543C23.7158 2.77691 23.7701 2.75727 23.819 2.72768C23.8679 2.69808 23.9104 2.65911 23.944 2.61302C24.023 2.49784 24.0564 2.35768 24.038 2.21944C24.0195 2.08119 23.9505 1.95461 23.844 1.86398Z" fill="white"/>
|
||||
<path d="M16.74 6.8099C16.6854 6.76006 16.6141 6.73242 16.54 6.73242C16.466 6.73242 16.3946 6.76006 16.34 6.8099C16.2932 6.86579 16.2675 6.93629 16.2675 7.00911C16.2675 7.08193 16.2932 7.15243 16.34 7.20832C16.3856 7.25238 16.4465 7.27702 16.51 7.27702C16.5735 7.27702 16.6345 7.25238 16.68 7.20832C16.7129 7.18828 16.7409 7.16132 16.7622 7.12931C16.7835 7.0973 16.7975 7.06102 16.8032 7.02304C16.809 6.98507 16.8063 6.94633 16.7953 6.9095C16.7844 6.87268 16.7655 6.83867 16.74 6.8099Z" fill="white"/>
|
||||
<path d="M16.7039 8.21643C16.7254 8.20226 16.743 8.18302 16.7552 8.16043C16.7673 8.13784 16.7737 8.11258 16.7737 8.08694C16.7737 8.0613 16.7673 8.03607 16.7552 8.01348C16.743 7.99088 16.7254 7.97162 16.7039 7.95745C16.6119 7.87776 16.512 7.82199 16.396 7.91762C16.28 8.01324 16.348 8.26425 16.432 8.29612C16.516 8.328 16.6239 8.25229 16.7039 8.21643Z" fill="white"/>
|
||||
<path d="M20.952 2.28348C21.136 2.20379 21.32 2.39105 21.544 2.26356C21.768 2.13606 21.908 1.86514 21.732 1.72171C21.5642 1.59643 21.3573 1.53432 21.148 1.5464C21.096 1.54242 20.756 2.36714 20.952 2.28348Z" fill="white"/>
|
||||
<path d="M19.228 0.991784C19.2269 0.897939 19.1896 0.808098 19.124 0.740776L19.088 0.700943C19.0979 0.668641 19.0991 0.634278 19.0913 0.601386C19.0836 0.568494 19.0673 0.538233 19.044 0.513672C18.804 0.565467 18.564 0.621264 18.328 0.681027H18.352C18.568 0.744775 18.544 0.936013 18.58 1.09937C18.616 1.26272 19.316 0.979832 19.228 0.991784Z" fill="white"/>
|
||||
<path d="M18.12 40.261H9.95996V38.2689H18.12C18.3435 38.2678 18.5576 38.1789 18.7156 38.0215C18.8737 37.864 18.9629 37.6508 18.964 37.4282V22.1367H20.964V37.4282C20.9629 38.1792 20.663 38.8991 20.1298 39.4301C19.5967 39.9611 18.8739 40.2599 18.12 40.261Z" fill="#7DE2D1"/>
|
||||
<path d="M25.136 25.1797H23.136V45.7981H25.136V25.1797Z" fill="#7DE2D1"/>
|
||||
<path d="M36.952 35.0286H30.08C29.325 35.0276 28.6012 34.7284 28.0673 34.1966C27.5334 33.6648 27.2331 32.9439 27.232 32.1918V18.6973H29.232V32.1918C29.232 32.4159 29.3213 32.6307 29.4803 32.7891C29.6394 32.9475 29.8551 33.0365 30.08 33.0365H36.952V35.0286Z" fill="#7DE2D1"/>
|
||||
<path d="M30.02 0.949219H25.96V10.1847H30.02V0.949219Z" fill="#20377D"/>
|
||||
<path d="M21.4 0.949219H17.34V10.1847H21.4V0.949219Z" fill="#20377D"/>
|
||||
<path d="M12.444 10.2188H35.2V16.4341C35.2005 17.923 34.9063 19.3973 34.3343 20.7729C33.7623 22.1484 32.9237 23.3981 31.8664 24.4505C30.809 25.5029 29.5538 26.3373 28.1725 26.9061C26.7911 27.4749 25.3107 27.7669 23.816 27.7653C20.7999 27.7653 17.9074 26.5719 15.7748 24.4476C13.6421 22.3234 12.444 19.4423 12.444 16.4381V10.2188Z" fill="#7DE2D1"/>
|
||||
<path d="M19.472 26.1096C19.3523 26.0906 19.2297 26.1163 19.1279 26.1818C19.026 26.2472 18.952 26.3478 18.92 26.4642C18.9093 26.5323 18.9204 26.6021 18.9519 26.6634C19.1439 26.7591 19.352 26.8427 19.544 26.9224C19.6049 26.879 19.6565 26.8238 19.6957 26.7602C19.7349 26.6965 19.7608 26.6257 19.772 26.5519C19.7818 26.5032 19.7819 26.453 19.7721 26.4043C19.7623 26.3556 19.7429 26.3094 19.7149 26.2682C19.687 26.227 19.6511 26.1918 19.6094 26.1646C19.5677 26.1374 19.521 26.1187 19.472 26.1096Z" fill="#42D4C6"/>
|
||||
<path d="M18.528 23.7531C18.5032 23.7369 18.4753 23.7258 18.4461 23.7205C18.4168 23.7151 18.3868 23.7156 18.3578 23.7219C18.3287 23.7282 18.3013 23.7402 18.2769 23.7572C18.2526 23.7742 18.2319 23.7958 18.216 23.8209C18.1969 23.847 18.1833 23.8768 18.1762 23.9084C18.1692 23.94 18.1687 23.9727 18.175 24.0045C18.1812 24.0363 18.1939 24.0664 18.2124 24.0931C18.2308 24.1197 18.2546 24.1423 18.2822 24.1593C18.3099 24.1764 18.3407 24.1876 18.3729 24.1922C18.4051 24.1968 18.4379 24.1948 18.4692 24.1862C18.5005 24.1776 18.5297 24.1627 18.555 24.1423C18.5803 24.1219 18.601 24.0966 18.616 24.0679C18.6399 24.0133 18.6442 23.9523 18.6281 23.895C18.6121 23.8376 18.5768 23.7876 18.528 23.7531Z" fill="#42D4C6"/>
|
||||
<path d="M18.272 25.0812C17.848 25.3003 17.796 25.4278 17.952 25.878C17.9504 25.8899 17.9504 25.902 17.952 25.9139C17.928 25.8576 17.8956 25.8053 17.856 25.7585C17.8427 25.7396 17.8251 25.7242 17.8045 25.7135C17.784 25.7029 17.7612 25.6973 17.738 25.6973C17.7149 25.6973 17.692 25.7029 17.6715 25.7135C17.6509 25.7242 17.6333 25.7396 17.62 25.7585C17.5962 25.7874 17.5797 25.8216 17.572 25.8581C17.8067 26.0148 18.0467 26.1623 18.292 26.3004C18.285 26.2719 18.2727 26.2449 18.256 26.2207C18.2581 26.2088 18.2581 26.1967 18.256 26.1848C18.304 26.0374 18.412 26.0255 18.532 25.9737C18.676 26.2964 18.884 26.3522 19.12 26.1609C19.1433 26.1417 19.1647 26.1204 19.184 26.0972C19.2161 26.0728 19.2414 26.0407 19.2574 26.0039C19.2735 25.9671 19.2798 25.9268 19.2758 25.8868C19.2718 25.8469 19.2575 25.8086 19.2345 25.7757C19.2114 25.7428 19.1803 25.7163 19.144 25.6988C19.0895 25.6588 19.0304 25.6254 18.968 25.5991C18.9721 25.5821 18.9721 25.5644 18.968 25.5474C18.974 25.4875 18.9572 25.4277 18.9208 25.3797C18.8845 25.3317 18.8314 25.2991 18.772 25.2884C18.7442 25.2839 18.7159 25.2839 18.688 25.2884C18.6834 25.2583 18.6729 25.2295 18.6571 25.2035C18.6413 25.1776 18.6206 25.1549 18.596 25.137C18.5526 25.0985 18.4992 25.073 18.442 25.0631C18.3847 25.0533 18.3259 25.0595 18.272 25.0812Z" fill="#42D4C6"/>
|
||||
<path d="M15.572 20.3906C15.572 20.3906 15.46 20.3906 15.456 20.3906C15.4449 20.4143 15.4392 20.4402 15.4392 20.4663C15.4392 20.4925 15.4449 20.5183 15.456 20.542C15.4804 20.5647 15.5126 20.5773 15.546 20.5773C15.5794 20.5773 15.6116 20.5647 15.636 20.542C15.704 20.4942 15.608 20.4225 15.572 20.3906Z" fill="#42D4C6"/>
|
||||
<path d="M16.096 20.737C15.856 20.7012 15.696 20.7808 15.66 20.9362C15.6606 21.0259 15.6965 21.1117 15.76 21.1753L15.724 21.2032C15.711 21.2182 15.7017 21.236 15.6969 21.2552C15.692 21.2743 15.6917 21.2944 15.696 21.3137C15.7003 21.3331 15.709 21.3511 15.7215 21.3665C15.734 21.3819 15.7499 21.3942 15.768 21.4024C15.7835 21.4125 15.8012 21.4191 15.8196 21.4215C15.838 21.424 15.8567 21.4222 15.8744 21.4165C15.892 21.4108 15.9082 21.4012 15.9216 21.3884C15.9351 21.3756 15.9454 21.3599 15.952 21.3426C15.9559 21.3242 15.9559 21.3052 15.952 21.2868C16.0256 21.2637 16.0921 21.2223 16.1453 21.1665C16.1984 21.1108 16.2365 21.0425 16.256 20.9681C16.2624 20.9423 16.2633 20.9155 16.2585 20.8894C16.2537 20.8633 16.2434 20.8385 16.2283 20.8166C16.2132 20.7948 16.1935 20.7764 16.1707 20.7626C16.1479 20.7489 16.1225 20.7402 16.096 20.737Z" fill="#42D4C6"/>
|
||||
<path d="M15.272 21.6735C15.3531 21.7319 15.4484 21.7676 15.5479 21.7771C15.5084 21.8259 15.4811 21.8832 15.468 21.9445C15.4621 21.9801 15.4621 22.0164 15.468 22.052C15.44 22.0799 15.408 22.2114 15.468 22.2353C15.4821 22.243 15.4979 22.247 15.514 22.247C15.53 22.247 15.5459 22.243 15.56 22.2353C15.624 22.3344 15.7246 22.4045 15.84 22.4305C15.9327 22.4431 16.0267 22.4188 16.1015 22.3629C16.1764 22.3069 16.2261 22.2239 16.24 22.1317C16.276 21.8568 16.136 21.6217 15.924 21.6018C15.8652 21.5955 15.8057 21.6051 15.752 21.6297C15.7626 21.5972 15.7656 21.5627 15.7608 21.5289C15.7559 21.495 15.7433 21.4627 15.724 21.4345C15.699 21.3848 15.6572 21.3456 15.6059 21.3237C15.5547 21.3018 15.4973 21.2987 15.444 21.315C15.284 21.3628 15.296 21.5182 15.272 21.6735Z" fill="#42D4C6"/>
|
||||
<path d="M15.872 23.0604C15.8565 23.1751 15.8856 23.2913 15.9533 23.3853C16.0209 23.4793 16.122 23.5441 16.236 23.5664C16.2898 23.5731 16.3444 23.5687 16.3965 23.5536C16.4486 23.5386 16.497 23.5132 16.5389 23.4789C16.5808 23.4446 16.6153 23.4022 16.6402 23.3542C16.6652 23.3062 16.68 23.2537 16.684 23.1999C16.716 22.925 16.5919 22.7417 16.3599 22.7138C16.25 22.7013 16.1393 22.7299 16.0492 22.7939C15.9591 22.8579 15.896 22.9528 15.872 23.0604Z" fill="#42D4C6"/>
|
||||
<path d="M17.576 22.1913C17.6315 22.1148 17.658 22.0211 17.6507 21.927C17.6434 21.8329 17.6027 21.7444 17.536 21.6773C17.5003 21.6606 17.4614 21.652 17.422 21.652C17.3826 21.652 17.3436 21.6606 17.308 21.6773C17.2891 21.613 17.2544 21.5545 17.2068 21.5072C17.1593 21.4598 17.1005 21.4251 17.036 21.4064C16.9176 21.4035 16.8018 21.4417 16.7084 21.5144C16.615 21.587 16.5499 21.6897 16.524 21.8048C16.5254 21.9164 16.5662 22.024 16.6394 22.1085C16.7126 22.1931 16.8134 22.2492 16.924 22.267C17.0194 22.279 17.116 22.2564 17.196 22.2032C17.2123 22.2202 17.2296 22.2362 17.248 22.2511C17.38 22.3268 17.496 22.3108 17.576 22.1913Z" fill="#42D4C6"/>
|
||||
<path d="M20.828 27.3399L21.004 27.3917C20.9645 27.3561 20.9132 27.3362 20.86 27.3359L20.828 27.3399Z" fill="#42D4C6"/>
|
||||
<path d="M19.048 24.3628C18.888 24.3309 18.688 24.4066 18.648 24.5261C18.588 24.7612 18.808 24.8927 18.924 24.9564C18.941 24.964 18.9594 24.9679 18.978 24.9679C18.9966 24.9679 19.015 24.964 19.032 24.9564C19.0317 25.0047 19.0436 25.0523 19.0667 25.0948C19.0898 25.1373 19.1232 25.1733 19.164 25.1995C19.1844 25.2138 19.2075 25.224 19.2319 25.2293C19.2563 25.2347 19.2815 25.2352 19.3061 25.2307C19.3307 25.2263 19.3541 25.217 19.375 25.2034C19.396 25.1898 19.414 25.1722 19.428 25.1516C19.4692 25.1137 19.4954 25.0623 19.502 25.0068C19.5086 24.9513 19.4951 24.8953 19.464 24.8488C19.4363 24.8083 19.3974 24.7765 19.3519 24.7575C19.3065 24.7384 19.2565 24.7327 19.208 24.7413C19.2272 24.6959 19.2368 24.6471 19.236 24.5978C19.2388 24.5426 19.2212 24.4882 19.1866 24.4449C19.152 24.4016 19.1027 24.3724 19.048 24.3628Z" fill="#42D4C6"/>
|
||||
<path d="M21.136 26.7734C21.0978 26.7736 21.0601 26.7827 21.0261 26.8C20.992 26.8173 20.9626 26.8423 20.94 26.873C20.9095 26.9213 20.8991 26.9796 20.9111 27.0354C20.923 27.0912 20.9563 27.1402 21.004 27.1719C21.0624 27.2036 21.1307 27.2123 21.1952 27.196C21.2598 27.1798 21.3157 27.1398 21.352 27.0842C21.412 27.0125 21.312 26.7854 21.136 26.7734Z" fill="#42D4C6"/>
|
||||
<path d="M14.916 21.5101C14.9495 21.5198 14.9851 21.5202 15.0188 21.5112C15.0526 21.5023 15.0832 21.4844 15.1075 21.4594C15.1318 21.4344 15.1487 21.4033 15.1566 21.3694C15.1644 21.3355 15.1628 21.3001 15.152 21.267C15.1338 21.2374 15.1082 21.2129 15.0777 21.1958C15.0473 21.1788 15.0129 21.1699 14.978 21.1699C14.9431 21.1699 14.9087 21.1788 14.8783 21.1958C14.8478 21.2129 14.8222 21.2374 14.804 21.267C14.7916 21.3142 14.796 21.3642 14.8164 21.4085C14.8369 21.4528 14.872 21.4887 14.916 21.5101Z" fill="#42D4C6"/>
|
||||
<path d="M17.38 24.0454C17.4385 23.9449 17.4558 23.8258 17.4282 23.713C17.4006 23.6001 17.3304 23.5022 17.232 23.4398C17.1392 23.4023 17.0366 23.3961 16.9398 23.4219C16.8431 23.4478 16.7575 23.5045 16.696 23.5832C16.6508 23.6612 16.636 23.7531 16.6544 23.8413C16.6729 23.9295 16.7233 24.0078 16.796 24.0614C16.7359 24.0543 16.6749 24.0627 16.6189 24.0857C16.5629 24.1088 16.5137 24.1456 16.476 24.1928C16.364 24.3721 16.544 24.4399 16.584 24.5594C16.6029 24.6284 16.647 24.688 16.7077 24.7263C16.7683 24.7647 16.8412 24.779 16.912 24.7665C17.076 24.7347 17.216 24.6271 17.312 24.643H17.344C17.3371 24.6935 17.3426 24.7449 17.36 24.7928C17.3774 24.8406 17.4063 24.8836 17.444 24.9179C17.4632 24.9888 17.5031 25.0524 17.5587 25.1006C17.6142 25.1489 17.6829 25.1796 17.756 25.1889C18.012 25.2486 18.26 25.0096 18.188 24.8343C18.116 24.659 17.996 24.647 18.02 24.5833C18.044 24.5195 18.172 24.412 18.112 24.2964C18.052 24.1809 17.664 24.2088 17.608 24.2446C17.552 24.2805 17.452 24.4319 17.352 24.3442C17.3012 24.2926 17.2569 24.2351 17.22 24.1729C17.2851 24.1476 17.3409 24.1031 17.38 24.0454Z" fill="#42D4C6"/>
|
||||
<path d="M15.832 24.4623L16.1 24.7173C16.176 24.6575 16.14 24.534 16.044 24.4663C15.948 24.3985 15.872 24.4065 15.832 24.4623Z" fill="#42D4C6"/>
|
||||
<path d="M20.052 27.0216C20.0385 27.0465 20.0291 27.0734 20.024 27.1012C20.184 27.157 20.344 27.2128 20.504 27.2606C20.5345 27.2772 20.5666 27.2906 20.6 27.3005C20.724 27.3005 20.884 27.165 20.904 27.0176C20.9138 26.9711 20.9135 26.9231 20.9031 26.8768C20.8926 26.8304 20.8723 26.7869 20.8435 26.7491C20.8146 26.7113 20.778 26.6801 20.7359 26.6577C20.6939 26.6353 20.6475 26.6221 20.6 26.6191C20.42 26.6191 20.248 26.7148 20.24 26.8502C20.24 26.8502 20.24 26.8901 20.24 26.91C20.2023 26.9133 20.1658 26.9251 20.1332 26.9444C20.1007 26.9637 20.0729 26.9901 20.052 27.0216Z" fill="#42D4C6"/>
|
||||
<path d="M17.272 25.2676C17.2079 25.2686 17.1449 25.2838 17.0875 25.312C17.0301 25.3403 16.9797 25.3809 16.94 25.4309C17.108 25.5545 17.276 25.678 17.448 25.7975C17.4711 25.7473 17.4847 25.6932 17.488 25.6381C17.508 25.4588 17.404 25.2795 17.272 25.2676Z" fill="#42D4C6"/>
|
||||
<path d="M17.764 22.8145C17.648 22.8145 17.508 22.9499 17.48 23.1173C17.4612 23.1896 17.4711 23.2663 17.5076 23.3316C17.5441 23.3969 17.6044 23.4457 17.676 23.4679C17.7587 23.481 17.8433 23.4656 17.9161 23.4243C17.9888 23.383 18.0452 23.3183 18.076 23.2408C18.0851 23.144 18.0585 23.0473 18.001 22.9688C17.9436 22.8903 17.8593 22.8354 17.764 22.8145Z" fill="#42D4C6"/>
|
||||
<path d="M12.504 16.623C12.504 16.8462 12.504 17.0613 12.532 17.2805C12.5844 17.229 12.6245 17.1665 12.6494 17.0975C12.6743 17.0286 12.6834 16.9549 12.676 16.882C12.6662 16.8296 12.6459 16.7797 12.6164 16.7352C12.5868 16.6907 12.5486 16.6525 12.504 16.623Z" fill="#42D4C6"/>
|
||||
<path d="M18.512 22.5357C18.456 22.5273 18.3989 22.5402 18.3522 22.572C18.3054 22.6038 18.2725 22.6521 18.26 22.707C18.2362 22.7585 18.2334 22.8171 18.252 22.8705C18.2707 22.924 18.3094 22.9682 18.36 22.9939C18.4315 23.019 18.5093 23.02 18.5815 22.997C18.6537 22.974 18.7164 22.9282 18.76 22.8664C18.7632 22.7913 18.7402 22.7174 18.6951 22.6571C18.6499 22.5969 18.5852 22.554 18.512 22.5357Z" fill="#42D4C6"/>
|
||||
<path d="M18.344 21.2832C18.156 21.2832 18.016 21.355 18.008 21.4944C18.0086 21.5946 18.0429 21.6917 18.1052 21.7704C18.1675 21.849 18.2543 21.9047 18.352 21.9287C18.4266 21.9173 18.4952 21.8813 18.5467 21.8263C18.5982 21.7714 18.6297 21.7008 18.636 21.6259C18.6437 21.5836 18.6419 21.5401 18.6307 21.4986C18.6195 21.4571 18.5992 21.4186 18.5713 21.3858C18.5434 21.3531 18.5085 21.3269 18.4692 21.3091C18.4299 21.2914 18.3872 21.2826 18.344 21.2832Z" fill="#42D4C6"/>
|
||||
<path d="M19.472 19.3471C19.472 19.4428 19.648 19.5503 19.82 19.5025C19.992 19.4547 19.952 19.2196 19.904 19.1479C19.856 19.0762 19.472 19.2475 19.472 19.3471Z" fill="#42D4C6"/>
|
||||
<path d="M16.764 15.5455C16.7313 15.5581 16.7017 15.5776 16.6772 15.6027C16.6528 15.6277 16.6341 15.6577 16.6223 15.6906C16.6105 15.7235 16.606 15.7585 16.6091 15.7933C16.6121 15.8281 16.6227 15.8618 16.64 15.8922C16.6378 15.95 16.6582 16.0065 16.697 16.0496C16.7358 16.0927 16.7899 16.1191 16.8479 16.1232C16.8766 16.1251 16.905 16.1166 16.928 16.0993C17.0017 16.0524 17.0614 15.9866 17.1008 15.9088C17.1402 15.831 17.1578 15.744 17.1519 15.6571C17.0959 15.4977 16.952 15.4579 16.764 15.5455Z" fill="#42D4C6"/>
|
||||
<path d="M16.32 16.8573C16.3161 16.8879 16.3185 16.9189 16.3273 16.9485C16.336 16.9781 16.3508 17.0055 16.3707 17.0291C16.3907 17.0527 16.4153 17.0719 16.4431 17.0855C16.4708 17.0992 16.5011 17.1069 16.532 17.1083C16.64 17.1083 16.66 17.0366 16.676 16.9569C16.692 16.8773 16.62 16.7458 16.516 16.7657C16.4465 16.7866 16.3805 16.8174 16.32 16.8573Z" fill="#42D4C6"/>
|
||||
<path d="M16.124 13.9731C16.024 14.0648 16.044 14.0209 15.912 13.9731C15.78 13.9253 15.568 13.9492 15.572 14.1962C15.5874 14.3061 15.6419 14.4068 15.7256 14.4799C15.8093 14.5531 15.9167 14.5938 16.028 14.5947C16.1623 14.5769 16.2851 14.5099 16.3724 14.4067C16.4597 14.3036 16.5052 14.1717 16.5 14.0369C16.472 13.8735 16.228 13.8815 16.124 13.9731Z" fill="#42D4C6"/>
|
||||
<path d="M16.484 14.5581C16.4481 14.5454 16.4098 14.5406 16.3718 14.544C16.3339 14.5475 16.2971 14.5591 16.264 14.578C16.2422 14.6027 16.2266 14.6322 16.2182 14.664C16.2099 14.6958 16.2091 14.7291 16.216 14.7613C16.2451 14.8746 16.2839 14.9853 16.332 15.092C16.372 15.1876 16.4441 15.1996 16.5441 15.1518C16.5441 15.1239 16.588 15.08 16.576 15.0521C16.5511 14.947 16.5609 14.8366 16.604 14.7374C16.616 14.6896 16.544 14.59 16.484 14.5581Z" fill="#42D4C6"/>
|
||||
<path d="M19.816 21.4346C19.7887 21.4319 19.761 21.4346 19.7347 21.4425C19.7085 21.4505 19.684 21.4635 19.6628 21.4809C19.6416 21.4984 19.6241 21.5198 19.6113 21.5439C19.5984 21.5681 19.5905 21.5947 19.588 21.6219C19.5823 21.6463 19.5824 21.6717 19.5884 21.696C19.5943 21.7203 19.6059 21.7429 19.6223 21.7619C19.6387 21.7809 19.6593 21.7959 19.6825 21.8055C19.7058 21.815 19.7309 21.819 19.756 21.8171C19.7955 21.814 19.834 21.8028 19.8691 21.7843C19.9042 21.7658 19.9351 21.7403 19.96 21.7096C19.992 21.6538 19.916 21.4506 19.816 21.4346Z" fill="#42D4C6"/>
|
||||
<path d="M21.676 27.5142H21.608C21.784 27.5501 21.96 27.5819 22.14 27.6098C22.0023 27.5225 21.8372 27.4885 21.676 27.5142Z" fill="#42D4C6"/>
|
||||
<path d="M19.92 23.8379C19.9077 23.8993 19.9101 23.9628 19.927 24.0231C19.9439 24.0834 19.9748 24.1389 20.0172 24.1851C20.0597 24.2313 20.1125 24.2669 20.1714 24.2889C20.2303 24.311 20.2935 24.3189 20.356 24.312C20.3475 24.3196 20.3406 24.3288 20.3358 24.3391C20.331 24.3493 20.3283 24.3605 20.328 24.3718C20.328 24.4714 20.496 24.571 20.568 24.583C20.64 24.5949 20.752 24.5192 20.76 24.3997C20.768 24.2802 20.68 24.2324 20.592 24.2363C20.5364 24.2414 20.4814 24.2521 20.428 24.2682C20.4473 24.253 20.4647 24.2356 20.48 24.2164C20.5243 24.139 20.5412 24.0491 20.5282 23.961C20.5151 23.8729 20.4728 23.7917 20.408 23.7303C20.3265 23.6904 20.2337 23.6793 20.145 23.6989C20.0563 23.7184 19.977 23.7675 19.92 23.8379Z" fill="#42D4C6"/>
|
||||
<path d="M15.776 20.4148C15.7784 20.4794 15.8039 20.541 15.8479 20.5885C15.8919 20.636 15.9516 20.6663 16.016 20.6738C16.0759 20.6794 16.1356 20.6611 16.182 20.6231C16.2285 20.585 16.2579 20.5302 16.264 20.4706C16.2708 20.4063 16.2519 20.3419 16.2115 20.2912C16.1712 20.2405 16.1124 20.2077 16.048 20.1997C15.984 20.1958 15.9208 20.2157 15.8706 20.2554C15.8204 20.2951 15.7867 20.3519 15.776 20.4148Z" fill="#42D4C6"/>
|
||||
<path d="M20.56 21.4279C20.56 21.3562 20.492 21.2925 20.472 21.2566C20.304 21.2287 20.184 21.2925 20.204 21.3841C20.2202 21.4736 20.2703 21.5535 20.344 21.6072C20.424 21.655 20.568 21.5315 20.56 21.4279Z" fill="#42D4C6"/>
|
||||
<path d="M19.912 22.3746C19.8686 22.3377 19.8178 22.3105 19.7629 22.2948C19.7081 22.2791 19.6505 22.2753 19.594 22.2836C19.5376 22.2919 19.4835 22.3121 19.4356 22.3429C19.3876 22.3737 19.3469 22.4144 19.316 22.4622C19.116 22.7292 19.42 22.8845 19.236 23.0001C19.052 23.1156 19.024 22.8965 18.772 23.0758C18.52 23.2551 18.528 23.5818 18.732 23.6615C18.8001 23.6798 18.8719 23.6798 18.94 23.6615C18.9645 23.7357 19.0159 23.7982 19.084 23.8368C19.1496 23.8127 19.2137 23.7848 19.276 23.7531C19.2999 23.7684 19.3276 23.7765 19.356 23.7765C19.3844 23.7765 19.4122 23.7684 19.436 23.7531C19.728 23.534 19.464 23.3228 19.532 23.2312C19.6 23.1395 19.816 23.0638 19.932 22.9364C19.9727 22.9009 20.0049 22.8569 20.0263 22.8075C20.0478 22.7581 20.0579 22.7045 20.056 22.6507C20.0541 22.5969 20.0402 22.5443 20.0153 22.4965C19.9904 22.4487 19.9551 22.4071 19.912 22.3746Z" fill="#42D4C6"/>
|
||||
<path d="M19.472 21.639C19.5013 21.5868 19.5132 21.5266 19.506 21.4672C19.4988 21.4078 19.4729 21.3522 19.432 21.3083C19.3845 21.2793 19.3279 21.269 19.2732 21.2793C19.2184 21.2896 19.1696 21.3198 19.136 21.3641C19.1012 21.414 19.0861 21.4748 19.0934 21.5351C19.1008 21.5953 19.1302 21.6508 19.176 21.6908C19.2241 21.7163 19.2793 21.7251 19.3329 21.7157C19.3866 21.7063 19.4355 21.6793 19.472 21.639Z" fill="#42D4C6"/>
|
||||
<path d="M20.024 20.2047C19.976 20.2485 20.024 20.3561 20.064 20.376C20.0874 20.3905 20.1145 20.3981 20.142 20.3981C20.1696 20.3981 20.1966 20.3905 20.22 20.376C20.26 20.3441 20.22 20.2525 20.22 20.2206C20.22 20.1887 20.068 20.1688 20.024 20.2047Z" fill="#42D4C6"/>
|
||||
<path d="M12.5 15.207V15.6692C12.604 15.5616 12.584 15.4461 12.5 15.2269C12.512 15.219 12.504 15.215 12.5 15.207Z" fill="#42D4C6"/>
|
||||
<path d="M26.3079 25.7462C26.3495 25.7773 26.3971 25.7995 26.4476 25.8114C26.4982 25.8232 26.5508 25.8245 26.6019 25.8152C26.653 25.8058 26.7016 25.786 26.7447 25.757C26.7877 25.728 26.8242 25.6904 26.8519 25.6466C26.9113 25.5479 26.9324 25.4309 26.911 25.3179C26.8896 25.2048 26.8273 25.1034 26.736 25.033C26.6361 24.9842 26.5226 24.9702 26.4138 24.9933C26.305 25.0164 26.2071 25.0753 26.136 25.1605C26.1036 25.2089 26.0822 25.2638 26.0734 25.3213C26.0646 25.3788 26.0686 25.4375 26.085 25.4933C26.1013 25.5491 26.1298 25.6007 26.1683 25.6444C26.2068 25.688 26.2545 25.7228 26.3079 25.7462Z" fill="#42D4C6"/>
|
||||
<path d="M26.272 24.5946C26.32 24.5547 26.272 24.4591 26.232 24.4233C26.2135 24.4097 26.191 24.4023 26.168 24.4023C26.145 24.4023 26.1226 24.4097 26.104 24.4233C26.072 24.4511 26.104 24.5348 26.104 24.5747C26.104 24.6145 26.236 24.6384 26.272 24.5946Z" fill="#42D4C6"/>
|
||||
<path d="M26.904 22.1611C26.936 22.1054 26.864 21.942 26.816 21.8822C26.768 21.8225 26.64 21.8344 26.564 21.93C26.5479 21.9463 26.5362 21.9664 26.5299 21.9884C26.5237 22.0104 26.5231 22.0336 26.5283 22.0559C26.5335 22.0782 26.5442 22.0987 26.5596 22.1158C26.5749 22.1328 26.5943 22.1456 26.616 22.1532C26.672 22.197 26.872 22.2289 26.904 22.1611Z" fill="#42D4C6"/>
|
||||
<path d="M24.728 22.9814C24.804 23.0092 25.008 23.0411 25.06 22.9814C25.112 22.9216 24.96 22.7463 24.896 22.6945C24.832 22.6427 24.728 22.6586 24.68 22.7662C24.632 22.8738 24.624 22.9575 24.728 22.9814Z" fill="#42D4C6"/>
|
||||
<path d="M24.92 21.5983C24.94 21.5624 24.948 21.4748 24.92 21.4429C24.892 21.411 24.796 21.4429 24.768 21.4748C24.74 21.5066 24.716 21.6262 24.768 21.658C24.82 21.6899 24.9 21.6302 24.92 21.5983Z" fill="#42D4C6"/>
|
||||
<path d="M30.164 25.6951C30.1452 25.6862 30.1247 25.6816 30.104 25.6816C30.0832 25.6816 30.0628 25.6862 30.044 25.6951C30.044 25.7389 30.044 25.8146 30.044 25.8425H30.068L30.208 25.7469C30.1945 25.7287 30.1798 25.7114 30.164 25.6951Z" fill="#42D4C6"/>
|
||||
<path d="M27.072 27.2754C27.3787 27.1825 27.6787 27.0789 27.972 26.9646C27.9849 26.9408 27.9917 26.9141 27.9917 26.887C27.9917 26.8598 27.9849 26.8331 27.972 26.8093C27.94 26.7734 27.836 26.7814 27.752 26.8093C27.6598 26.7721 27.5585 26.7636 27.4614 26.7849C27.3643 26.8063 27.2759 26.8564 27.208 26.9288C27.156 26.9689 27.1159 27.0224 27.0919 27.0834C27.068 27.1444 27.0611 27.2108 27.072 27.2754Z" fill="#42D4C6"/>
|
||||
<path d="M27.564 26.3526C27.628 26.2809 27.564 26.0418 27.476 26.0299C27.4362 26.0241 27.3955 26.0283 27.3578 26.0422C27.32 26.0561 27.2864 26.0793 27.26 26.1095C27.241 26.1289 27.2267 26.1523 27.2181 26.1779C27.2094 26.2036 27.2067 26.2309 27.2102 26.2577C27.2137 26.2845 27.2232 26.3102 27.238 26.3329C27.2529 26.3555 27.2727 26.3745 27.296 26.3884C27.3371 26.417 27.3873 26.4291 27.437 26.4225C27.4866 26.4158 27.5319 26.3909 27.564 26.3526Z" fill="#42D4C6"/>
|
||||
<path d="M14.272 10.9756C14.396 10.9756 14.46 10.7007 14.364 10.5254H13.896C13.8647 10.5527 13.8408 10.5875 13.8268 10.6266C13.8128 10.6656 13.8091 10.7076 13.816 10.7485C13.872 11.0035 14.144 11.0035 14.272 10.9756Z" fill="#42D4C6"/>
|
||||
<path d="M18.524 11.9455C18.5437 11.9331 18.5592 11.9151 18.5685 11.8937C18.5778 11.8724 18.5804 11.8488 18.576 11.826C18.576 11.7861 18.476 11.7782 18.428 11.7822C18.38 11.7862 18.328 11.8579 18.348 11.9176C18.368 11.9774 18.484 11.9575 18.524 11.9455Z" fill="#42D4C6"/>
|
||||
<path d="M13.224 10.8455C13.112 10.7818 12.792 11.0009 12.764 11.0567C12.736 11.1125 12.724 11.2957 12.592 11.2718C12.5604 11.2662 12.5294 11.2569 12.5 11.2439V11.8017C12.588 11.7021 12.644 11.5866 12.712 11.5627C12.78 11.5388 12.892 11.5308 12.924 11.6543C12.956 11.7778 13.124 11.8934 13.376 11.8137C13.628 11.734 13.72 11.4153 13.564 11.2838C13.408 11.1523 13.304 11.228 13.292 11.1563C13.28 11.0846 13.332 10.9132 13.224 10.8455Z" fill="#42D4C6"/>
|
||||
<path d="M18.364 17.8615C18.436 17.977 18.544 17.9651 18.764 17.8615C18.764 17.73 18.792 17.5746 18.608 17.5268C18.5544 17.5089 18.4959 17.5126 18.4451 17.5372C18.3942 17.5618 18.3551 17.6053 18.336 17.6583C18.3268 17.6923 18.3245 17.7278 18.3293 17.7627C18.3341 17.7976 18.3459 17.8312 18.364 17.8615Z" fill="#42D4C6"/>
|
||||
<path d="M23.872 22.8455C23.872 22.8455 23.872 22.7778 23.84 22.7699C23.8287 22.7608 23.8145 22.7559 23.8 22.7559C23.7855 22.7559 23.7714 22.7608 23.76 22.7699C23.7482 22.783 23.7417 22.8 23.7417 22.8177C23.7417 22.8353 23.7482 22.8523 23.76 22.8655C23.7684 22.8721 23.7782 22.8769 23.7886 22.8795C23.7991 22.8821 23.8099 22.8825 23.8205 22.8806C23.8311 22.8787 23.8412 22.8746 23.85 22.8686C23.8589 22.8626 23.8664 22.8547 23.872 22.8455Z" fill="#42D4C6"/>
|
||||
<path d="M32.884 23.112C32.8289 23.1359 32.7844 23.1791 32.7593 23.2335C32.7342 23.2879 32.7302 23.3497 32.748 23.4069C32.832 23.2993 32.916 23.1877 32.996 23.0762C32.956 23.0769 32.917 23.0894 32.884 23.112Z" fill="#42D4C6"/>
|
||||
<path d="M23.4441 25.1405C23.4283 25.2169 23.4313 25.2959 23.4529 25.3709C23.4744 25.4458 23.514 25.5144 23.568 25.5708C23.672 25.6465 23.7881 25.6027 23.8841 25.4513C23.9801 25.2999 23.9881 25.1644 23.8841 25.0848C23.7801 25.0051 23.5201 25.0011 23.4441 25.1405Z" fill="#42D4C6"/>
|
||||
<path d="M18.976 11.5905C19.016 11.5905 19.108 11.4949 19.088 11.4431C19.068 11.3913 18.944 11.3793 18.908 11.3952C18.8825 11.4077 18.8618 11.428 18.8488 11.4531C18.8359 11.4782 18.8314 11.5068 18.836 11.5347C18.8499 11.558 18.8712 11.5761 18.8965 11.5862C18.9218 11.5963 18.9497 11.5978 18.976 11.5905Z" fill="#42D4C6"/>
|
||||
<path d="M18.84 14.5907C18.9 14.6146 19.02 14.515 19.108 14.4592C19.1198 14.4538 19.1304 14.4459 19.139 14.4362C19.1476 14.4264 19.154 14.4149 19.1578 14.4024C19.1616 14.39 19.1626 14.3769 19.1609 14.364C19.1593 14.3512 19.1548 14.3388 19.148 14.3277C19.108 14.2778 19.052 14.243 18.9894 14.2292C18.9268 14.2154 18.8613 14.2235 18.804 14.252C18.7785 14.2739 18.7588 14.3016 18.7464 14.3327C18.734 14.3638 18.7294 14.3975 18.733 14.4307C18.7365 14.464 18.7481 14.496 18.7667 14.5238C18.7853 14.5517 18.8105 14.5746 18.84 14.5907Z" fill="#42D4C6"/>
|
||||
<path d="M14.428 16.2919C14.46 16.3357 14.548 16.2919 14.588 16.268C14.6062 16.2454 14.6161 16.2172 14.6161 16.1883C14.6161 16.1593 14.6062 16.1312 14.588 16.1086C14.5672 16.0914 14.541 16.082 14.514 16.082C14.487 16.082 14.4608 16.0914 14.44 16.1086C14.4198 16.1344 14.4078 16.1657 14.4057 16.1984C14.4035 16.2311 14.4113 16.2636 14.428 16.2919Z" fill="#42D4C6"/>
|
||||
<path d="M21.288 25.4789C21.0976 25.4867 20.9085 25.5147 20.724 25.5625C20.6712 25.487 20.6021 25.4243 20.5219 25.3788C20.4416 25.3333 20.3521 25.3062 20.26 25.2996C20.25 25.219 20.2156 25.1434 20.1612 25.0829C20.1069 25.0223 20.0353 24.9798 19.956 24.9609C19.832 24.9609 19.644 25.1203 19.632 25.2637C19.6316 25.3238 19.6504 25.3824 19.6856 25.4311C19.7208 25.4798 19.7707 25.516 19.828 25.5346H19.892C19.8474 25.6223 19.8241 25.7192 19.8241 25.8175C19.8241 25.9158 19.8474 26.0128 19.892 26.1004C19.9137 26.1405 19.923 26.1861 19.9187 26.2315C19.9145 26.2769 19.8968 26.32 19.868 26.3554C19.8413 26.421 19.8413 26.4944 19.8683 26.56C19.8952 26.6255 19.9468 26.6779 20.012 26.706C20.144 26.7618 20.212 26.706 20.264 26.5905C20.291 26.5073 20.3361 26.4311 20.396 26.3674C20.548 26.2558 20.716 26.1642 20.884 26.0566C21.176 26.2638 21.332 26.2996 21.46 26.1323C21.4683 26.1771 21.4881 26.2191 21.5176 26.254C21.547 26.289 21.5851 26.3156 21.628 26.3315C21.6717 26.3369 21.716 26.33 21.756 26.3116C21.789 26.356 21.831 26.3932 21.8792 26.4206C21.9274 26.4481 21.9808 26.4652 22.036 26.471C22.2615 26.4864 22.4851 26.5224 22.704 26.5785C22.88 26.6303 23.104 26.5785 23.152 26.447C23.1538 26.3888 23.1364 26.3315 23.1024 26.284C23.0685 26.2366 23.0199 26.2014 22.964 26.1841C22.796 26.1841 22.792 26.0566 22.724 25.9689C22.6474 25.8941 22.5542 25.8382 22.452 25.8056C22.3864 25.7835 22.3169 25.7754 22.248 25.7817C22.1788 25.7757 22.1092 25.7757 22.04 25.7817C21.9365 25.7832 21.8375 25.8246 21.764 25.8972C21.7133 25.8679 21.6578 25.8476 21.6 25.8374C21.6093 25.7925 21.6081 25.746 21.5965 25.7016C21.5848 25.6572 21.5631 25.6161 21.5329 25.5814C21.5027 25.5468 21.4649 25.5195 21.4225 25.5017C21.38 25.4839 21.334 25.4761 21.288 25.4789Z" fill="#42D4C6"/>
|
||||
<path d="M22.512 24.2322C22.428 24.1047 22.356 23.9652 22.176 24.0569C22.1247 24.0788 22.0826 24.1178 22.0571 24.1672C22.0315 24.2167 22.0241 24.2735 22.036 24.3278C22.036 24.3716 22.084 24.4354 22.12 24.4473C22.2335 24.4716 22.3484 24.4889 22.464 24.4991C22.612 24.7382 22.808 24.8458 22.952 24.7581C23.0268 24.6919 23.0782 24.6034 23.0984 24.5057C23.1186 24.408 23.1065 24.3065 23.064 24.2162C22.968 24.0449 22.856 24.0449 22.512 24.2322Z" fill="#42D4C6"/>
|
||||
<path d="M22.752 25.0522C22.752 25.1399 22.896 25.2873 23.012 25.3072C23.0419 25.3117 23.0725 25.3099 23.1017 25.3019C23.1308 25.2939 23.158 25.2798 23.1814 25.2606C23.2048 25.2415 23.2239 25.2176 23.2374 25.1907C23.2509 25.1637 23.2586 25.1342 23.26 25.104C23.2657 25.0773 23.2659 25.0496 23.2604 25.0227C23.255 24.9959 23.244 24.9705 23.2283 24.948C23.2125 24.9256 23.1922 24.9067 23.1688 24.8924C23.1453 24.8781 23.1192 24.8687 23.092 24.865C22.948 24.849 22.76 24.9486 22.752 25.0522Z" fill="#42D4C6"/>
|
||||
<path d="M20.928 25.2961C20.9366 25.3318 20.9528 25.3652 20.9756 25.3941C20.9984 25.423 21.0272 25.4466 21.06 25.4634C21.148 25.4992 21.284 25.3718 21.264 25.2682C21.254 25.2267 21.2317 25.1892 21.2 25.1606C21.2236 25.1661 21.2483 25.1661 21.272 25.1606C21.416 25.1606 21.456 25.0291 21.436 24.8817C21.336 24.8219 21.224 24.7423 21.12 24.8578C21.1039 24.8921 21.0956 24.9295 21.0956 24.9674C21.0956 25.0052 21.1039 25.0426 21.12 25.0769C21.12 25.0769 21.14 25.1008 21.152 25.1128C21 25.1287 20.904 25.2044 20.928 25.2961Z" fill="#42D4C6"/>
|
||||
<path d="M28.624 26.646C28.6651 26.612 28.6982 26.5693 28.7209 26.5211C28.7436 26.4729 28.7554 26.4203 28.7554 26.3671C28.7554 26.3138 28.7436 26.2612 28.7209 26.213C28.6982 26.1648 28.6651 26.1222 28.624 26.0882C28.5569 26.0201 28.4676 25.9782 28.3721 25.9702C28.2767 25.9621 28.1816 25.9885 28.104 26.0444C28.037 26.1331 28.0057 26.2434 28.016 26.354C28.0264 26.4645 28.0777 26.5672 28.16 26.642C28.1882 26.6758 28.2235 26.7031 28.2635 26.7219C28.3034 26.7408 28.3469 26.7507 28.3911 26.7511C28.4353 26.7515 28.4789 26.7423 28.5192 26.7241C28.5594 26.706 28.5952 26.6793 28.624 26.646Z" fill="#42D4C6"/>
|
||||
<path d="M12.784 17.53C12.7627 17.475 12.7294 17.4254 12.6865 17.3847C12.6436 17.3441 12.5922 17.3134 12.536 17.2949C12.5699 17.7915 12.6367 18.2853 12.736 18.7731C12.7497 18.7562 12.7644 18.7403 12.78 18.7253C13.18 18.4504 13.024 18.1236 12.78 17.8965C12.7486 17.8713 12.7151 17.8486 12.68 17.8288C12.7184 17.7897 12.7476 17.7427 12.7656 17.691C12.7836 17.6393 12.7899 17.5844 12.784 17.53Z" fill="#42D4C6"/>
|
||||
<path d="M14.072 15.3437C14.156 15.3437 14.344 15.3039 14.356 15.1883C14.368 15.0728 14.216 15.021 14.148 14.9971C14.1281 14.9868 14.1061 14.9811 14.0837 14.9805C14.0613 14.9799 14.0391 14.9844 14.0187 14.9936C13.9982 15.0028 13.9802 15.0165 13.9659 15.0337C13.9516 15.0509 13.9413 15.071 13.936 15.0927C13.904 15.2003 13.976 15.3517 14.072 15.3437Z" fill="#42D4C6"/>
|
||||
<path d="M20.808 20.4234C20.7602 20.4057 20.7077 20.4057 20.66 20.4234C20.66 20.4234 20.66 20.535 20.66 20.5469C20.66 20.5589 20.78 20.6226 20.836 20.5469C20.892 20.4712 20.828 20.4314 20.808 20.4234Z" fill="#42D4C6"/>
|
||||
<path d="M21.944 25.6392C21.9979 25.6751 22.0623 25.6919 22.1269 25.6868C22.1915 25.6818 22.2524 25.6551 22.3 25.6113C22.44 25.424 22.456 25.2128 22.332 25.1252C22.2553 25.0874 22.1684 25.0752 22.0842 25.0903C21.9999 25.1053 21.9228 25.1469 21.864 25.2089C21.8241 25.2784 21.8102 25.3598 21.8248 25.4386C21.8395 25.5174 21.8817 25.5884 21.944 25.6392Z" fill="#42D4C6"/>
|
||||
<path d="M14.544 22.1291C14.508 22.0096 14.272 21.9737 14.212 22.0932C14.152 22.2128 14.268 22.3642 14.428 22.3682C14.508 22.3721 14.572 22.2247 14.544 22.1291Z" fill="#42D4C6"/>
|
||||
<path d="M14.472 13.5352C14.412 13.5352 14.36 13.6228 14.344 13.6666C14.328 13.7105 14.368 13.7662 14.412 13.7662C14.4384 13.7671 14.4646 13.7609 14.4878 13.7483C14.511 13.7357 14.5304 13.7171 14.544 13.6945C14.556 13.6627 14.528 13.5431 14.472 13.5352Z" fill="#42D4C6"/>
|
||||
<path d="M14.18 14.6174C14.2008 14.6037 14.2184 14.5857 14.2315 14.5646C14.2447 14.5435 14.2531 14.5199 14.2561 14.4952C14.2591 14.4706 14.2568 14.4456 14.2492 14.422C14.2416 14.3984 14.2289 14.3766 14.212 14.3584C14.1 14.207 13.98 14.1393 13.9 14.191C13.8527 14.2446 13.8207 14.3098 13.8073 14.3799C13.794 14.45 13.7997 14.5224 13.824 14.5895C13.8739 14.6288 13.9343 14.6525 13.9978 14.6575C14.0612 14.6625 14.1246 14.6485 14.18 14.6174Z" fill="#42D4C6"/>
|
||||
<path d="M13.948 17.0638C13.948 17.1276 14 17.1515 14.064 17.1316C14.128 17.1117 14.152 17.0798 14.132 17.0121C14.1306 16.9996 14.1263 16.9877 14.1193 16.9773C14.1124 16.9668 14.1032 16.9581 14.0922 16.9519C14.0813 16.9457 14.0691 16.9421 14.0566 16.9415C14.044 16.9409 14.0315 16.9432 14.02 16.9483C13.956 16.9802 13.928 16.9802 13.948 17.0638Z" fill="#42D4C6"/>
|
||||
<path d="M16.992 18.3349C16.8994 18.2232 16.8006 18.1168 16.696 18.0162C16.6735 17.9964 16.6455 17.9838 16.6157 17.9798C16.5859 17.9759 16.5556 17.9809 16.5286 17.9941C16.5016 18.0073 16.4792 18.0282 16.4642 18.0541C16.4491 18.08 16.4421 18.1098 16.444 18.1397C16.444 18.2951 16.444 18.4744 16.584 18.6058C16.584 18.6058 16.584 18.6337 16.584 18.6536C16.5824 18.6836 16.5869 18.7136 16.5972 18.7418C16.6074 18.77 16.6233 18.7958 16.6438 18.8178C16.6644 18.8397 16.6892 18.8573 16.7167 18.8695C16.7442 18.8817 16.7739 18.8882 16.804 18.8887C16.7724 18.9586 16.76 19.0356 16.768 19.1118C16.7884 19.2187 16.7684 19.3294 16.712 19.4226C16.6728 19.4926 16.6522 19.5715 16.6522 19.6517C16.6522 19.7319 16.6728 19.8108 16.712 19.8808C16.7483 19.9536 16.806 20.0136 16.8775 20.0528C16.949 20.0919 17.0309 20.1084 17.112 20.0999H17.156C17.0783 20.1601 17.0257 20.2466 17.008 20.343C17.008 20.4864 17.12 20.6019 17.324 20.6298C17.3742 20.6349 17.4249 20.6297 17.473 20.6147C17.5212 20.5996 17.5657 20.5749 17.604 20.5422C17.6463 20.5651 17.6955 20.5721 17.7425 20.5619C17.7895 20.5516 17.8312 20.5248 17.86 20.4864C17.8894 20.4392 17.9008 20.383 17.8919 20.3281C17.8831 20.2732 17.8548 20.2233 17.812 20.1876C17.7821 20.165 17.7469 20.1506 17.7097 20.1457C17.6725 20.1408 17.6347 20.1456 17.6 20.1597C17.5563 20.0871 17.486 20.0343 17.404 20.0123H17.34C17.3838 19.964 17.4165 19.907 17.436 19.8449C17.4817 19.6807 17.4676 19.5057 17.396 19.3509C17.3784 19.2897 17.3784 19.2248 17.396 19.1636C17.444 18.9843 17.396 18.8568 17.268 18.7931C17.2979 18.7676 17.3201 18.7344 17.3321 18.6971C17.3441 18.6598 17.3455 18.62 17.336 18.5819C17.288 18.3907 17.22 18.3429 16.992 18.3349Z" fill="#42D4C6"/>
|
||||
<path d="M14.0479 18.5505C14.0922 18.5741 14.1417 18.5864 14.192 18.5863C14.1961 18.6176 14.2105 18.6467 14.2329 18.669C14.2553 18.6914 14.2845 18.7057 14.316 18.7098C14.452 18.7377 14.512 18.6859 14.536 18.6302C14.5506 18.6555 14.5708 18.6773 14.595 18.6938C14.6192 18.7104 14.6469 18.7213 14.676 18.7258C14.7237 18.7282 14.771 18.7162 14.8117 18.6913C14.8524 18.6664 14.8846 18.6298 14.9039 18.5863C14.9371 18.5844 14.9696 18.5757 14.9993 18.5608C15.0289 18.546 15.0553 18.5252 15.0766 18.4998C15.098 18.4745 15.1139 18.445 15.1234 18.4133C15.1329 18.3816 15.1358 18.3483 15.132 18.3154C15.1261 18.2692 15.111 18.2246 15.0876 18.1842C15.0642 18.1439 15.033 18.1086 14.9957 18.0804C14.9585 18.0522 14.916 18.0317 14.8707 18.02C14.8254 18.0084 14.7783 18.0059 14.732 18.0126H14.664C14.6295 17.9398 14.5789 17.8757 14.516 17.8253H14.492C14.5647 17.7975 14.6276 17.7491 14.6731 17.6861C14.7186 17.6231 14.7446 17.5482 14.7479 17.4707C14.76 17.4062 14.76 17.34 14.7479 17.2755C14.7727 17.2881 14.8002 17.2947 14.828 17.2947C14.8558 17.2947 14.8832 17.2881 14.908 17.2755C14.941 17.2535 14.9694 17.2251 14.9913 17.1921C15.0133 17.159 15.0285 17.122 15.0359 17.083C15.0434 17.0441 15.0429 17.0041 15.0347 16.9653C15.0265 16.9265 15.0106 16.8898 14.988 16.8572C14.9421 16.7975 14.8801 16.752 14.8093 16.7259C14.7385 16.6998 14.6618 16.6942 14.588 16.7098C14.5252 16.7311 14.4715 16.7731 14.4359 16.8289C14.4003 16.8846 14.3848 16.9508 14.392 17.0165C14.293 17.0121 14.1956 17.0424 14.1166 17.1021C14.0377 17.1618 13.9823 17.2471 13.96 17.3432C13.9449 17.4238 13.9531 17.507 13.9836 17.5831C14.014 17.6593 14.0655 17.7253 14.132 17.7735C14.0868 17.7876 14.045 17.8107 14.0092 17.8416C13.9734 17.8724 13.9444 17.9103 13.924 17.9528C13.8626 18.049 13.8412 18.1651 13.8644 18.2767C13.8875 18.3882 13.9533 18.4864 14.0479 18.5505Z" fill="#42D4C6"/>
|
||||
<path d="M19.404 19.9053C19.3887 19.8398 19.3484 19.7828 19.2917 19.7464C19.2349 19.71 19.1662 19.6969 19.1 19.7101C18.988 19.7101 18.748 19.6782 18.7 19.8336C18.652 19.989 18.78 20.0288 18.812 20.1005C18.8331 20.1435 18.8631 20.1815 18.9 20.2121C18.8062 20.2888 18.746 20.3988 18.732 20.5189C18.732 20.6225 18.76 20.7061 18.86 20.73C19.1076 20.8057 19.3724 20.8057 19.62 20.73C19.6555 20.7093 19.689 20.6853 19.72 20.6583C19.7607 20.6211 19.7899 20.5731 19.8043 20.52C19.8187 20.4669 19.8177 20.4108 19.8013 20.3582C19.785 20.3056 19.754 20.2588 19.712 20.223C19.67 20.1873 19.6187 20.1641 19.564 20.1563C19.516 20.1563 19.468 20.1563 19.42 20.1364C19.4399 20.0597 19.4343 19.9786 19.404 19.9053Z" fill="#42D4C6"/>
|
||||
<path d="M20.64 23.0775C20.6214 23.0727 20.6018 23.0732 20.5835 23.0788C20.5651 23.0844 20.5487 23.095 20.536 23.1094C20.4829 23.1398 20.4369 23.1811 20.401 23.2305C20.3652 23.28 20.3403 23.3365 20.328 23.3962C20.3192 23.4323 20.3176 23.4699 20.3235 23.5066C20.3294 23.5433 20.3426 23.5785 20.3624 23.61C20.3822 23.6416 20.4081 23.6689 20.4386 23.6903C20.4691 23.7118 20.5036 23.7269 20.54 23.7349C20.728 23.7588 20.94 23.6273 20.94 23.4759C20.9434 23.3865 20.9163 23.2986 20.8634 23.2263C20.8104 23.154 20.7345 23.1016 20.648 23.0775H20.64Z" fill="#42D4C6"/>
|
||||
<path d="M15.532 23.7532C15.5651 23.7536 15.5978 23.7458 15.6271 23.7305C15.6564 23.7152 15.6815 23.6929 15.7 23.6656C15.776 23.5739 15.736 23.4783 15.672 23.3906C15.608 23.303 15.54 23.1954 15.468 23.1038C15.396 23.0121 15.316 22.8886 15.152 22.9125C15.1062 22.9102 15.0632 22.8902 15.032 22.8567C14.9863 22.8126 14.9368 22.7727 14.884 22.7372C14.8946 22.7042 14.8932 22.6686 14.88 22.6365C14.8669 22.6045 14.8428 22.5781 14.812 22.5619C14.736 22.5101 14.624 22.4862 14.58 22.5898C14.5599 22.6493 14.5599 22.7136 14.58 22.7731C14.5499 22.7944 14.5218 22.8184 14.496 22.8448C14.7681 23.2351 15.0633 23.609 15.38 23.9644C15.4461 23.9064 15.4981 23.8342 15.532 23.7532Z" fill="#42D4C6"/>
|
||||
<path d="M21.348 23.8942C21.47 23.9611 21.6129 23.9796 21.748 23.946C21.748 23.946 21.748 23.946 21.772 23.946C21.892 23.9819 21.988 23.8106 22.076 23.7548V23.6831V23.6512C22.0894 23.5726 22.0812 23.4919 22.0524 23.4176C22.0235 23.3432 21.975 23.278 21.912 23.2289C21.8247 23.1693 21.7183 23.1441 21.6134 23.1581C21.5085 23.172 21.4126 23.2242 21.344 23.3046C21.2701 23.3853 21.2294 23.4909 21.2301 23.6002C21.2309 23.7095 21.2729 23.8145 21.348 23.8942Z" fill="#42D4C6"/>
|
||||
<path d="M20.352 21.714C20.308 21.8017 20.308 21.9053 20.408 21.9411C20.508 21.977 20.696 22.0049 20.736 21.9411C20.776 21.8774 20.66 21.7061 20.604 21.6423C20.548 21.5786 20.4 21.6184 20.352 21.714Z" fill="#42D4C6"/>
|
||||
<path d="M23.82 27.7389H24.004C23.924 27.6672 23.764 27.7389 23.664 27.7389H23.82Z" fill="#42D4C6"/>
|
||||
<path d="M21.072 16.6663C21.008 16.6663 21.004 16.8456 21.024 16.8855C21.046 16.9063 21.0731 16.9209 21.1026 16.9279C21.1322 16.9349 21.163 16.934 21.1921 16.9253C21.2165 16.9063 21.2353 16.8811 21.2466 16.8524C21.2579 16.8236 21.2611 16.7924 21.256 16.762C21.252 16.7261 21.14 16.6424 21.072 16.6663Z" fill="#42D4C6"/>
|
||||
<path d="M20.22 17.4669C20.1258 17.4652 20.0341 17.4966 19.9609 17.5556C19.8878 17.6147 19.8378 17.6975 19.82 17.7896C19.8091 17.8461 19.8101 17.9042 19.8228 17.9603C19.8356 18.0164 19.8597 18.0693 19.8939 18.1156C19.928 18.162 19.9714 18.2008 20.0213 18.2297C20.0712 18.2586 20.1266 18.277 20.184 18.2836C20.2279 18.2929 20.2732 18.2933 20.3173 18.2848C20.3613 18.2763 20.4032 18.2591 20.4405 18.2343C20.4778 18.2094 20.5097 18.1773 20.5344 18.1399C20.559 18.1026 20.5759 18.0607 20.584 18.0167C20.612 17.7776 20.416 17.4788 20.22 17.4669Z" fill="#42D4C6"/>
|
||||
<path d="M19.696 15.0371C19.5778 15.0471 19.4646 15.0897 19.3693 15.16C19.2739 15.2304 19.2001 15.3258 19.156 15.4355C19.1494 15.5484 19.1877 15.6593 19.2625 15.7443C19.3374 15.8293 19.4428 15.8816 19.556 15.8897C19.6659 15.8924 19.7735 15.8581 19.8613 15.7923C19.9492 15.7265 20.0121 15.6331 20.04 15.5272C20.0557 15.4173 20.0288 15.3056 19.9649 15.2146C19.9011 15.1237 19.805 15.0602 19.696 15.0371Z" fill="#42D4C6"/>
|
||||
<path d="M18.128 18.4819C18.0681 18.4752 18.008 18.4924 17.9607 18.5297C17.9135 18.567 17.883 18.6215 17.876 18.6811C17.8626 18.7397 17.8727 18.8012 17.904 18.8525C17.9354 18.9038 17.9856 18.9409 18.044 18.956C18.1038 18.967 18.1655 18.955 18.2167 18.9225C18.2679 18.89 18.3048 18.8393 18.32 18.7807C18.3303 18.7161 18.3164 18.65 18.281 18.5949C18.2457 18.5398 18.1912 18.4996 18.128 18.4819Z" fill="#42D4C6"/>
|
||||
<path d="M18.204 19.5188C18.2327 19.5446 18.2674 19.5629 18.305 19.5719C18.3425 19.581 18.3818 19.5805 18.4191 19.5706C18.4565 19.5607 18.4908 19.5417 18.5189 19.5152C18.547 19.4888 18.568 19.4558 18.58 19.4192C18.5908 19.3737 18.5909 19.3263 18.5805 19.2808C18.5701 19.2352 18.5494 19.1926 18.52 19.1562C18.4861 19.1309 18.4466 19.114 18.4049 19.1071C18.3631 19.1002 18.3203 19.1033 18.28 19.1164C18.2463 19.1359 18.2173 19.1625 18.1948 19.1942C18.1723 19.226 18.157 19.2621 18.1498 19.3003C18.1426 19.3384 18.1437 19.3777 18.153 19.4154C18.1624 19.4531 18.1798 19.4883 18.204 19.5188Z" fill="#42D4C6"/>
|
||||
<path d="M23.248 21.7617C23.212 21.7617 23.108 21.7617 23.1 21.8653C23.092 21.9689 23.2 21.9729 23.24 21.9769C23.28 21.9808 23.344 21.9131 23.344 21.8773C23.344 21.8414 23.288 21.7617 23.248 21.7617Z" fill="#42D4C6"/>
|
||||
<path d="M22.588 22.881C22.5661 22.9018 22.5487 22.9269 22.5367 22.9546C22.5248 22.9823 22.5187 23.0122 22.5187 23.0424C22.5187 23.0725 22.5248 23.1024 22.5367 23.1301C22.5487 23.1578 22.5661 23.1829 22.588 23.2037C22.6607 23.2489 22.7467 23.2681 22.8319 23.2579C22.917 23.2478 22.996 23.209 23.056 23.1479C23.0932 23.094 23.1089 23.0282 23.1001 22.9634C23.0912 22.8985 23.0583 22.8393 23.008 22.7973C22.9397 22.758 22.8595 22.7448 22.7822 22.7602C22.7048 22.7756 22.6358 22.8185 22.588 22.881Z" fill="#42D4C6"/>
|
||||
<path d="M17.992 15.3879C17.9677 15.3924 17.9446 15.402 17.9242 15.416C17.9039 15.4301 17.8868 15.4482 17.874 15.4692C17.8611 15.4903 17.8529 15.5138 17.8498 15.5382C17.8467 15.5626 17.8488 15.5875 17.8559 15.611C17.8644 15.6369 17.8781 15.6608 17.8962 15.6812C17.9143 15.7016 17.9364 15.7181 17.9611 15.7297C17.9858 15.7413 18.0127 15.7477 18.04 15.7485C18.0673 15.7493 18.0945 15.7446 18.1199 15.7345C18.143 15.7252 18.1638 15.7112 18.181 15.6933C18.1982 15.6754 18.2113 15.6541 18.2197 15.6307C18.228 15.6074 18.2312 15.5825 18.2292 15.5579C18.2272 15.5332 18.2199 15.5092 18.2079 15.4875C18.2013 15.4661 18.1903 15.4464 18.1756 15.4295C18.1608 15.4127 18.1426 15.3991 18.1222 15.3898C18.1019 15.3804 18.0797 15.3753 18.0573 15.375C18.0349 15.3747 18.0126 15.3791 17.992 15.3879Z" fill="#42D4C6"/>
|
||||
<path d="M22.432 21.5428C22.3954 21.516 22.3533 21.4975 22.3087 21.4885C22.2641 21.4796 22.2181 21.4805 22.1739 21.4911C22.1297 21.5017 22.0884 21.5219 22.0528 21.5501C22.0173 21.5783 21.9883 21.6139 21.968 21.6544C21.9224 21.7396 21.9123 21.8392 21.9401 21.9317C21.9678 22.0242 22.031 22.1021 22.116 22.1484C22.2007 22.1794 22.2935 22.1809 22.3792 22.1527C22.4649 22.1244 22.5385 22.0682 22.588 21.9931C22.6115 21.9541 22.6261 21.9106 22.6308 21.8654C22.6356 21.8203 22.6303 21.7746 22.6154 21.7317C22.6006 21.6888 22.5764 21.6496 22.5447 21.617C22.513 21.5844 22.4746 21.5591 22.432 21.5428Z" fill="#42D4C6"/>
|
||||
<path d="M22.948 27.2886C22.832 27.201 22.624 27.2886 22.512 27.448C22.4855 27.478 22.4678 27.5147 22.4608 27.554C22.4537 27.5933 22.4576 27.6338 22.472 27.6711C22.66 27.695 22.848 27.7109 23.036 27.7229C23.0524 27.6484 23.053 27.5713 23.0379 27.4965C23.0227 27.4218 22.9921 27.351 22.948 27.2886Z" fill="#42D4C6"/>
|
||||
<path d="M21.572 19.5273C21.46 19.6269 21.32 19.6907 21.384 19.8501C21.4031 19.9029 21.4408 19.9469 21.4901 19.9741C21.5394 20.0012 21.597 20.0095 21.652 19.9975C21.6969 19.9975 21.7401 19.98 21.7723 19.9487C21.8044 19.9175 21.823 19.8749 21.824 19.8301C21.844 19.6548 21.724 19.5911 21.572 19.5273Z" fill="#42D4C6"/>
|
||||
<path d="M21.708 21.6699C21.66 21.6699 21.524 21.6699 21.492 21.7496C21.46 21.8293 21.608 21.905 21.656 21.909C21.704 21.913 21.8 21.909 21.816 21.8173C21.818 21.7841 21.8083 21.7512 21.7886 21.7243C21.7689 21.6974 21.7404 21.6782 21.708 21.6699Z" fill="#42D4C6"/>
|
||||
<path d="M21.808 21.3162C21.888 21.3799 22.144 21.3162 22.172 21.2166C22.2 21.117 22.172 20.9337 21.964 20.9417C21.756 20.9496 21.728 21.2524 21.808 21.3162Z" fill="#42D4C6"/>
|
||||
<path d="M22.028 19.0254C21.9936 19.0292 21.9607 19.0414 21.9321 19.0608C21.9035 19.0803 21.8801 19.1064 21.864 19.1369C21.8549 19.1578 21.851 19.1806 21.8527 19.2034C21.8544 19.2261 21.8617 19.2481 21.874 19.2674C21.8862 19.2866 21.903 19.3026 21.9229 19.3139C21.9428 19.3252 21.9652 19.3315 21.988 19.3322C22.052 19.3322 22.22 19.3322 22.232 19.1808C22.244 19.0294 22.084 19.0254 22.028 19.0254Z" fill="#42D4C6"/>
|
||||
<path d="M20.916 19.6341C20.788 19.5783 20.564 19.7935 20.596 19.8891C20.628 19.9847 20.944 20.0365 20.996 19.917C21.0185 19.868 21.0228 19.8127 21.0082 19.7609C20.9935 19.7091 20.9608 19.6642 20.916 19.6341Z" fill="#42D4C6"/>
|
||||
<path d="M13.632 15.4826C13.46 15.5543 13.38 15.6739 13.416 15.7934C13.3737 15.8097 13.3371 15.8381 13.3108 15.8749C13.2845 15.9117 13.2696 15.9554 13.268 16.0006C13.2617 16.0322 13.2622 16.0649 13.2695 16.0963C13.2768 16.1277 13.2908 16.1572 13.3105 16.1829C13.3302 16.2085 13.3551 16.2297 13.3837 16.245C13.4122 16.2602 13.4437 16.2693 13.476 16.2715C13.5407 16.2653 13.6013 16.2369 13.6473 16.1911C13.6932 16.1453 13.7218 16.085 13.728 16.0205C13.7771 16.0382 13.8309 16.0382 13.88 16.0205C13.9159 16.004 13.948 15.9804 13.9743 15.951C14.0006 15.9217 14.0206 15.8872 14.0329 15.8499C14.0453 15.8125 14.0499 15.773 14.0463 15.7338C14.0427 15.6946 14.031 15.6566 14.012 15.6221C13.944 15.4388 13.84 15.387 13.632 15.4826Z" fill="#42D4C6"/>
|
||||
<path d="M14.08 12.7143C14.109 12.7679 14.1576 12.8083 14.2158 12.8268C14.274 12.8454 14.3372 12.8408 14.392 12.8139C14.4144 12.8027 14.4342 12.787 14.4501 12.7678C14.466 12.7486 14.4777 12.7263 14.4845 12.7023C14.4913 12.6783 14.493 12.6531 14.4894 12.6285C14.4859 12.6038 14.4772 12.5801 14.464 12.559C14.453 12.5307 14.4364 12.505 14.4153 12.4832C14.3942 12.4615 14.3689 12.4442 14.3409 12.4323C14.313 12.4204 14.283 12.4142 14.2526 12.4141C14.2222 12.4139 14.1921 12.4198 14.164 12.4315C14.1393 12.444 14.1174 12.4614 14.0997 12.4826C14.082 12.5038 14.0688 12.5284 14.0609 12.5549C14.0531 12.5814 14.0507 12.6092 14.054 12.6366C14.0573 12.664 14.0661 12.6904 14.08 12.7143Z" fill="#42D4C6"/>
|
||||
<path d="M13.792 13.455C13.7833 13.4926 13.7835 13.5317 13.7925 13.5693C13.8015 13.6068 13.8191 13.6418 13.8438 13.6714C13.8686 13.7011 13.8999 13.7247 13.9353 13.7404C13.9707 13.7561 14.0092 13.7634 14.0479 13.7618C14.1439 13.6622 14.24 13.5546 14.124 13.4271C14.008 13.2996 13.892 13.3634 13.792 13.455Z" fill="#42D4C6"/>
|
||||
<path d="M14.324 11.3424C14.2736 11.3673 14.235 11.4108 14.2164 11.4636C14.1977 11.5164 14.2004 11.5744 14.224 11.6253C14.232 11.652 14.2455 11.6768 14.2636 11.698C14.2818 11.7192 14.3042 11.7363 14.3295 11.7484C14.3548 11.7604 14.3823 11.767 14.4103 11.7677C14.4383 11.7685 14.4661 11.7634 14.492 11.7528C14.5204 11.7431 14.5465 11.7277 14.5687 11.7076C14.5909 11.6874 14.6087 11.663 14.6211 11.6357C14.6334 11.6085 14.6401 11.579 14.6406 11.5491C14.6411 11.5192 14.6354 11.4896 14.624 11.4619C14.5986 11.4077 14.5535 11.3652 14.4977 11.343C14.442 11.3208 14.3799 11.3206 14.324 11.3424Z" fill="#42D4C6"/>
|
||||
<path d="M16.272 10.8322C16.3 10.9358 16.408 10.9238 16.496 10.884C16.584 10.8441 16.648 10.7126 16.58 10.6449C16.5411 10.5983 16.4952 10.558 16.444 10.5254H16.32C16.196 10.6051 16.228 10.7565 16.272 10.8322Z" fill="#42D4C6"/>
|
||||
<path d="M15.032 10.8858C15.0617 10.9386 15.1077 10.9803 15.1633 11.0048C15.2188 11.0292 15.2809 11.035 15.34 11.0212C15.548 10.9376 15.668 10.7543 15.608 10.6228C15.5881 10.5881 15.5608 10.5581 15.528 10.5352H15.072C15.0388 10.5866 15.0179 10.645 15.0109 10.7058C15.004 10.7666 15.0112 10.8282 15.032 10.8858Z" fill="#42D4C6"/>
|
||||
<path d="M16.964 10.6066C16.9803 10.6756 17.0226 10.7356 17.0822 10.7742C17.1419 10.8128 17.2141 10.827 17.284 10.8138C17.3353 10.7912 17.3785 10.7536 17.4078 10.7059C17.4371 10.6582 17.4511 10.6027 17.448 10.5469H16.968C16.9627 10.5663 16.9613 10.5867 16.964 10.6066Z" fill="#42D4C6"/>
|
||||
<path d="M14.672 15.0834C14.6049 15.1357 14.5563 15.2079 14.5333 15.2896C14.5102 15.3713 14.514 15.4582 14.544 15.5376C14.5805 15.5771 14.6251 15.6083 14.6748 15.6289C14.7245 15.6496 14.7782 15.6592 14.832 15.6572C14.8162 15.7118 14.8162 15.7698 14.832 15.8245C14.868 15.936 15.152 16.0357 15.28 15.9918C15.3431 15.9724 15.4025 15.9428 15.456 15.9042C15.576 15.9958 15.76 16.0635 15.856 16.0237C15.924 15.9649 15.9702 15.8848 15.9869 15.7966C16.0036 15.7084 15.9898 15.6171 15.948 15.5376C15.872 15.3783 15.72 15.3424 15.524 15.438V15.3384C15.5375 15.3119 15.5447 15.2826 15.5452 15.2529C15.5456 15.2232 15.5393 15.1937 15.5265 15.1668C15.5138 15.1399 15.495 15.1162 15.4717 15.0977C15.4484 15.0791 15.4211 15.066 15.392 15.0595C15.3284 15.0446 15.2615 15.0545 15.205 15.0871C15.1485 15.1196 15.1067 15.1725 15.088 15.2348L15.06 15.3065C14.964 15.1113 14.816 15.0197 14.672 15.0834Z" fill="#42D4C6"/>
|
||||
<path d="M17.756 15.7617C17.712 15.7617 17.632 15.7856 17.62 15.8414C17.608 15.8972 17.676 15.953 17.712 15.9649C17.748 15.9769 17.876 15.9649 17.884 15.8932C17.892 15.8215 17.792 15.7856 17.756 15.7617Z" fill="#42D4C6"/>
|
||||
<path d="M17.28 14.0128C17.208 13.8853 17.06 13.7977 16.956 13.8415C16.8903 13.8747 16.8365 13.9274 16.8021 13.9923C16.7677 14.0573 16.7544 14.1313 16.764 14.2041C16.816 14.3356 17.024 14.3794 17.212 14.2997C17.2418 14.2896 17.2679 14.271 17.2871 14.2462C17.3063 14.2214 17.3178 14.1915 17.32 14.1602C17.3293 14.1555 17.3374 14.1488 17.3436 14.1405C17.3499 14.1322 17.3541 14.1226 17.356 14.1124C17.36 14.0766 17.32 14.0367 17.28 14.0128Z" fill="#42D4C6"/>
|
||||
<path d="M15.34 11.686C15.2277 11.7321 15.1361 11.8175 15.0824 11.926C15.0287 12.0345 15.0164 12.1588 15.048 12.2756C15.1038 12.377 15.1919 12.457 15.2983 12.5032C15.4047 12.5493 15.5235 12.559 15.636 12.5306C15.848 12.4589 15.928 12.1959 15.828 11.9131C15.7897 11.8215 15.7184 11.7474 15.6282 11.7054C15.5379 11.6634 15.4351 11.6565 15.34 11.686Z" fill="#42D4C6"/>
|
||||
<path d="M17.304 17.4904C17.2853 17.5035 17.2711 17.522 17.2632 17.5433C17.2553 17.5647 17.2542 17.588 17.26 17.61C17.26 17.6458 17.3 17.6578 17.336 17.6578C17.38 17.7733 17.464 17.8889 17.536 17.9048C17.5727 17.9125 17.6106 17.9123 17.6472 17.904C17.6838 17.8958 17.7182 17.8797 17.748 17.857C17.748 17.9725 17.796 18.0841 17.856 18.1159C17.916 18.1478 18.18 17.9367 18.132 17.7972C18.1136 17.746 18.0816 17.7008 18.0393 17.6664C17.997 17.632 17.9461 17.6097 17.892 17.602C17.892 17.4705 17.784 17.355 17.596 17.3191C17.5655 17.3095 17.5334 17.3065 17.5016 17.3101C17.4699 17.3137 17.4392 17.3239 17.4117 17.34C17.3842 17.3562 17.3604 17.3779 17.3418 17.4038C17.3233 17.4297 17.3103 17.4593 17.304 17.4904Z" fill="#42D4C6"/>
|
||||
<path d="M17.264 14.8336C17.209 14.858 17.1644 14.901 17.1381 14.9549C17.1118 15.0088 17.1054 15.0702 17.12 15.1284C17.1533 15.183 17.2013 15.2273 17.2586 15.2561C17.3158 15.285 17.3801 15.2974 17.444 15.2918C17.5019 15.2523 17.5455 15.1954 17.5686 15.1295C17.5916 15.0635 17.5928 14.9919 17.572 14.9252C17.5432 14.8725 17.4947 14.8333 17.437 14.8161C17.3793 14.799 17.3171 14.8052 17.264 14.8336Z" fill="#42D4C6"/>
|
||||
<path d="M15.236 14.0723C15.144 14.0723 15.04 14.2715 15.06 14.383C15.0642 14.4076 15.0738 14.431 15.0883 14.4515C15.1027 14.4719 15.1215 14.4888 15.1434 14.5011C15.1653 14.5133 15.1896 14.5205 15.2146 14.5221C15.2396 14.5238 15.2647 14.5198 15.288 14.5105C15.472 14.4667 15.576 14.379 15.56 14.2874C15.5289 14.227 15.4828 14.1756 15.4261 14.1379C15.3694 14.1003 15.3039 14.0777 15.236 14.0723Z" fill="#42D4C6"/>
|
||||
<path d="M16.556 11.5353C16.392 11.6149 16.3 11.7982 16.364 11.9337C16.4174 12.0247 16.5006 12.0946 16.5997 12.1317C16.6988 12.1687 16.8077 12.1705 16.908 12.1369C16.9706 12.0941 17.0161 12.0307 17.0366 11.9579C17.057 11.8851 17.0511 11.8074 17.02 11.7385C17.0069 11.692 16.9836 11.6489 16.9518 11.6125C16.9201 11.576 16.8806 11.5471 16.8362 11.5276C16.7918 11.5082 16.7437 11.4988 16.6952 11.5001C16.6468 11.5014 16.5992 11.5134 16.556 11.5353Z" fill="#42D4C6"/>
|
||||
<path d="M15.7479 12.9199C15.7075 12.934 15.6706 12.9565 15.6396 12.9861C15.6086 13.0156 15.5843 13.0513 15.5684 13.091C15.5525 13.1306 15.5453 13.1732 15.5473 13.2159C15.5493 13.2585 15.5604 13.3002 15.58 13.3382C15.5961 13.3887 15.6231 13.435 15.6591 13.474C15.6952 13.5129 15.7393 13.5436 15.7885 13.5637C15.8377 13.5838 15.8907 13.593 15.9438 13.5905C15.997 13.5881 16.0489 13.574 16.096 13.5494C16.1843 13.5123 16.2563 13.4448 16.2989 13.3592C16.3415 13.2737 16.3518 13.1757 16.328 13.0832C16.269 12.989 16.1769 12.9201 16.0697 12.8899C15.9624 12.8597 15.8477 12.8704 15.7479 12.9199Z" fill="#42D4C6"/>
|
||||
<path d="M30.212 24.3317C30.088 24.4513 30.104 24.5987 30.252 24.7302C30.4 24.8616 30.52 24.8337 30.652 24.6784C30.6983 24.6415 30.7288 24.5882 30.7369 24.5297C30.7451 24.4712 30.7305 24.4117 30.696 24.3636C30.6255 24.316 30.5434 24.2879 30.4583 24.2823C30.3733 24.2767 30.2882 24.2938 30.212 24.3317Z" fill="#42D4C6"/>
|
||||
<path d="M31.872 22.6495C31.756 22.7411 31.728 22.9483 31.824 23.016C31.92 23.0838 32.256 22.9244 32.272 22.7889C32.288 22.6535 31.972 22.5578 31.872 22.6495Z" fill="#42D4C6"/>
|
||||
<path d="M31.968 23.3747C31.9466 23.3572 31.9197 23.3477 31.892 23.3477C31.8643 23.3477 31.8374 23.3572 31.816 23.3747C31.8068 23.3821 31.7994 23.3916 31.7943 23.4022C31.7892 23.4129 31.7866 23.4246 31.7866 23.4364C31.7866 23.4483 31.7892 23.4599 31.7943 23.4706C31.7994 23.4813 31.8068 23.4907 31.816 23.4982C31.852 23.5221 31.932 23.5739 31.992 23.5261C32.052 23.4783 31.992 23.3826 31.968 23.3747Z" fill="#42D4C6"/>
|
||||
<path d="M30.476 25.5984L30.788 25.3594C30.6938 25.3794 30.6076 25.4265 30.54 25.4948C30.5122 25.5249 30.4905 25.5601 30.476 25.5984Z" fill="#42D4C6"/>
|
||||
<path d="M12.5 13.6816V14.5901C12.5622 14.6505 12.6404 14.6919 12.7254 14.7096C12.8105 14.7272 12.8988 14.7203 12.98 14.6897C13.073 14.6394 13.1461 14.5593 13.1875 14.4624C13.229 14.3654 13.2362 14.2573 13.208 14.1558C13.1743 14.0766 13.119 14.0084 13.0482 13.9591C12.9775 13.9098 12.8942 13.8813 12.808 13.8769C12.7723 13.8256 12.7266 13.7819 12.6737 13.7484C12.6208 13.7149 12.5618 13.6922 12.5 13.6816Z" fill="#42D4C6"/>
|
||||
<path d="M29.872 25.096C29.784 25.1595 29.6765 25.1905 29.568 25.1836C29.516 25.1836 29.448 25.2991 29.444 25.3629C29.4456 25.4007 29.4553 25.4377 29.4726 25.4714C29.4899 25.5051 29.5142 25.5347 29.544 25.5581C29.575 25.5696 29.6082 25.5734 29.641 25.5693C29.6737 25.5651 29.705 25.5531 29.732 25.5342C29.8286 25.4674 29.9183 25.3914 30 25.3071C30.072 25.2354 30.056 25.1637 29.976 25.092C29.936 25.092 29.872 25.076 29.872 25.096Z" fill="#42D4C6"/>
|
||||
<path d="M13.008 12.0968C12.9174 12.1582 12.8498 12.2479 12.8158 12.3517C12.7818 12.4555 12.7832 12.5676 12.82 12.6705C12.8679 12.7342 12.9384 12.7774 13.017 12.7914C13.0957 12.8055 13.1768 12.7893 13.244 12.7462C13.444 12.6466 13.484 12.5151 13.384 12.3039C13.284 12.0928 13.128 12.037 13.008 12.0968Z" fill="#42D4C6"/>
|
||||
<path d="M29.22 26.2473C29.1945 26.2357 29.1661 26.2318 29.1384 26.236C29.1107 26.2403 29.0849 26.2525 29.064 26.2712C29.04 26.3031 29.004 26.4305 29.064 26.4584H29.0921L29.224 26.3907C29.24 26.3469 29.268 26.2672 29.22 26.2473Z" fill="#42D4C6"/>
|
||||
<path d="M15.724 18.0078C15.6273 18.0198 15.5368 18.0616 15.4651 18.1273C15.3934 18.193 15.3441 18.2794 15.324 18.3744C15.3195 18.4113 15.3229 18.4488 15.3338 18.4844C15.3448 18.5201 15.363 18.553 15.3875 18.5811C15.412 18.6093 15.4422 18.632 15.476 18.6479C15.5098 18.6637 15.5466 18.6723 15.584 18.6732C15.796 18.705 15.92 18.6094 15.948 18.3823C15.976 18.1552 15.872 18.0198 15.724 18.0078Z" fill="#42D4C6"/>
|
||||
<path d="M14.272 19.6024C14.2602 19.6501 14.2647 19.7004 14.285 19.7452C14.3054 19.79 14.3402 19.8267 14.384 19.8494C14.496 19.8853 14.552 19.8494 14.624 19.6064C14.6064 19.5756 14.581 19.55 14.5503 19.532C14.5196 19.514 14.4847 19.5043 14.4492 19.5039C14.4136 19.5035 14.3785 19.5124 14.3474 19.5297C14.3163 19.5469 14.2904 19.572 14.272 19.6024Z" fill="#42D4C6"/>
|
||||
<path d="M13.784 19.2237C13.7764 19.1168 13.7326 19.0157 13.66 18.9368C13.6083 18.8844 13.5457 18.844 13.4766 18.8185C13.4074 18.793 13.3334 18.783 13.26 18.7894C13.096 18.7894 12.976 18.6698 12.828 18.7376C12.796 18.7376 12.764 18.7734 12.732 18.7894C12.8078 19.1539 12.9026 19.5144 13.016 19.8691C13.0824 19.8444 13.1532 19.8335 13.224 19.8372H13.328C13.312 19.8736 13.3072 19.9138 13.3144 19.9529C13.3215 19.9919 13.3402 20.028 13.368 20.0564C13.38 20.0786 13.3967 20.0979 13.4171 20.1129C13.4375 20.1279 13.4609 20.1383 13.4858 20.1432C13.5106 20.1482 13.5362 20.1476 13.5608 20.1415C13.5854 20.1355 13.6083 20.1241 13.628 20.1082C13.704 20.0513 13.7543 19.9668 13.768 19.8731C13.7666 19.8375 13.7544 19.8032 13.7329 19.7748C13.7115 19.7463 13.6818 19.725 13.648 19.7137C13.7034 19.6458 13.7441 19.5672 13.7675 19.4829C13.7909 19.3985 13.7965 19.3103 13.784 19.2237Z" fill="#42D4C6"/>
|
||||
<path d="M29.66 23.4277C29.6435 23.4429 29.6304 23.4614 29.6214 23.482C29.6124 23.5026 29.6078 23.5248 29.6078 23.5472C29.6078 23.5696 29.6124 23.5918 29.6214 23.6124C29.6304 23.6329 29.6435 23.6514 29.66 23.6667C29.6727 23.6877 29.6899 23.7057 29.7102 23.7195C29.7306 23.7333 29.7537 23.7426 29.778 23.7468C29.8022 23.7509 29.8271 23.7498 29.851 23.7436C29.8748 23.7373 29.8969 23.7261 29.916 23.7106C29.9373 23.6933 29.9549 23.6719 29.9675 23.6476C29.9802 23.6233 29.9877 23.5967 29.9895 23.5695C29.9914 23.5422 29.9876 23.5148 29.9784 23.489C29.9692 23.4633 29.9548 23.4397 29.936 23.4197C29.9185 23.4001 29.8969 23.3845 29.8728 23.3741C29.8486 23.3637 29.8224 23.3587 29.7961 23.3595C29.7698 23.3602 29.744 23.3667 29.7205 23.3785C29.697 23.3903 29.6763 23.4071 29.66 23.4277Z" fill="#42D4C6"/>
|
||||
<path d="M13.64 20.3679C13.5886 20.419 13.5521 20.4831 13.5345 20.5533C13.5169 20.6235 13.5188 20.6971 13.54 20.7663C13.4881 20.7135 13.4233 20.6751 13.352 20.6548H13.304C13.461 21.045 13.6386 21.4267 13.836 21.7983C13.8586 21.8145 13.8845 21.8254 13.912 21.8301C13.9772 21.8265 14.0393 21.8009 14.088 21.7574C14.1367 21.714 14.1692 21.6553 14.18 21.5911C14.1791 21.528 14.1532 21.4679 14.108 21.4237C14.1082 21.3248 14.0988 21.226 14.08 21.1289C14.1179 21.0978 14.1539 21.0645 14.188 21.0293C14.2085 21.0063 14.2259 20.9809 14.24 20.9536C14.2285 20.9748 14.2204 20.9976 14.216 21.0213C14.192 21.1488 14.328 21.2883 14.492 21.3162C14.5363 21.3255 14.5821 21.325 14.6263 21.3149C14.6704 21.3048 14.7118 21.2852 14.7476 21.2575C14.7834 21.2298 14.8127 21.1947 14.8335 21.1546C14.8543 21.1145 14.866 21.0704 14.868 21.0253C14.896 20.8659 14.8 20.6827 14.676 20.6667H14.624C14.6801 20.6288 14.7274 20.5793 14.7626 20.5216C14.7978 20.4638 14.8201 20.3992 14.828 20.332C14.836 20.2832 14.836 20.2334 14.828 20.1846C14.9148 20.2328 15.0126 20.258 15.112 20.258C15.2114 20.258 15.3091 20.2328 15.396 20.1846C15.4411 20.1407 15.4751 20.0867 15.4953 20.0272C15.5154 19.9676 15.5211 19.9042 15.512 19.842C15.5209 19.8284 15.5257 19.8125 15.5257 19.7962C15.5257 19.7799 15.5209 19.764 15.512 19.7504C15.4938 19.7111 15.468 19.6759 15.436 19.6468C15.368 19.5312 15.3 19.4356 15.38 19.2842C15.46 19.1328 15.348 19.081 15.228 19.0332C15.068 19.1009 15.02 19.2085 15.088 19.34C14.9667 19.4153 14.8528 19.5021 14.7479 19.599C14.7076 19.6615 14.6814 19.732 14.671 19.8056C14.6606 19.8792 14.6665 19.9541 14.688 20.0253C14.6088 19.965 14.5116 19.9327 14.412 19.9336C14.088 19.9336 13.98 20.0053 13.94 20.2723C13.94 20.2723 13.94 20.3042 13.94 20.3201C13.8961 20.316 13.8519 20.316 13.808 20.3201C13.7481 20.3166 13.6889 20.3334 13.64 20.3679ZM13.728 21.0771C13.7299 21.0652 13.7299 21.0531 13.728 21.0412L13.7479 21.0652L13.728 21.0771ZM14.312 20.7105H14.38H14.44C14.3737 20.7534 14.3165 20.8089 14.272 20.8739C14.2968 20.8229 14.3104 20.7672 14.312 20.7105Z" fill="#42D4C6"/>
|
||||
<path d="M15.6479 16.8763C15.5877 16.8321 15.5148 16.8083 15.44 16.8086C15.3682 16.8155 15.299 16.8385 15.2374 16.8757C15.1757 16.913 15.1233 16.9635 15.084 17.0237C15.0493 17.0801 15.031 17.1449 15.031 17.211C15.031 17.2771 15.0493 17.3419 15.084 17.3983C15.111 17.437 15.1484 17.4674 15.192 17.4859C15.2035 17.5284 15.2269 17.5666 15.2595 17.5963C15.2921 17.6259 15.3325 17.6457 15.376 17.6533C15.4059 17.6543 15.4358 17.6495 15.4639 17.639C15.4919 17.6286 15.5177 17.6128 15.5396 17.5924C15.5615 17.5721 15.5792 17.5476 15.5916 17.5205C15.604 17.4933 15.6109 17.464 15.612 17.4341C15.6337 17.4137 15.6513 17.3894 15.664 17.3624C15.712 17.2469 15.812 17.1353 15.772 17.0357C15.7656 17.0012 15.751 16.9687 15.7294 16.941C15.7079 16.9132 15.6799 16.8911 15.6479 16.8763Z" fill="#42D4C6"/>
|
||||
<path d="M13.424 16.4272C13.3509 16.3815 13.2639 16.3628 13.1784 16.3745C13.0928 16.3861 13.0141 16.4274 12.956 16.491C12.9078 16.5594 12.8878 16.6435 12.9 16.7261C12.9223 16.8385 12.988 16.9379 13.083 17.0027C13.1779 17.0675 13.2946 17.0926 13.408 17.0727C13.4617 16.9931 13.5085 16.9091 13.548 16.8217C13.5746 16.7516 13.5769 16.6747 13.5544 16.6031C13.5319 16.5316 13.486 16.4697 13.424 16.4272Z" fill="#42D4C6"/>
|
||||
<path d="M13.496 17.3794C13.4361 17.3676 13.374 17.3798 13.323 17.4134C13.2721 17.4469 13.2365 17.4991 13.224 17.5587C13.22 17.5784 13.22 17.5987 13.224 17.6184C13.1893 17.5821 13.1448 17.5564 13.0959 17.5444C13.047 17.5324 12.9957 17.5346 12.948 17.5507C12.9243 17.6281 12.9135 17.7089 12.916 17.7898C12.936 17.8934 13.036 17.9172 13.132 17.8774C13.1672 17.8679 13.1987 17.8479 13.2223 17.8202C13.2459 17.7924 13.2604 17.7582 13.264 17.722C13.2812 17.7484 13.3035 17.7711 13.3296 17.7889C13.3557 17.8067 13.3851 17.8192 13.416 17.8256C13.4432 17.8313 13.4713 17.8314 13.4985 17.8257C13.5257 17.82 13.5513 17.8088 13.5739 17.7926C13.5965 17.7765 13.6154 17.7559 13.6296 17.7321C13.6437 17.7083 13.6527 17.6818 13.656 17.6543C13.665 17.6258 13.668 17.5957 13.6647 17.566C13.6614 17.5362 13.652 17.5075 13.6369 17.4817C13.6218 17.4558 13.6015 17.4334 13.5773 17.4158C13.553 17.3981 13.5254 17.3857 13.496 17.3794Z" fill="#42D4C6"/>
|
||||
<path d="M13.1079 14.9885C13.0787 14.9815 13.0484 14.9805 13.0188 14.9857C12.9892 14.9908 12.961 15.002 12.9359 15.0184C12.9108 15.0348 12.8893 15.0562 12.8728 15.0812C12.8563 15.1062 12.8452 15.1343 12.84 15.1638C12.8342 15.1928 12.8343 15.2227 12.8402 15.2518C12.8462 15.2808 12.8578 15.3083 12.8746 15.3328C12.8913 15.3573 12.9128 15.3782 12.9378 15.3943C12.9627 15.4105 12.9907 15.4215 13.02 15.4267C13.0799 15.4313 13.1396 15.4162 13.1902 15.3839C13.2407 15.3515 13.2792 15.3036 13.2999 15.2474C13.3045 15.2179 13.3031 15.1877 13.2959 15.1587C13.2887 15.1296 13.2758 15.1023 13.258 15.0782C13.2401 15.0542 13.2177 15.0338 13.192 15.0184C13.1662 15.003 13.1376 14.9928 13.1079 14.9885Z" fill="#42D4C6"/>
|
||||
<path d="M13.472 13.1677C13.4624 13.1423 13.4476 13.1193 13.4287 13.0998C13.4098 13.0803 13.3872 13.0649 13.3621 13.0545C13.337 13.044 13.3101 13.0388 13.2829 13.0391C13.2557 13.0394 13.2288 13.0452 13.204 13.0561C13.1836 13.0635 13.1647 13.0742 13.148 13.088C13.064 13.088 12.968 13.2832 12.984 13.3151C13.02 13.4067 13.052 13.5382 13.164 13.5621C13.1899 13.5673 13.2168 13.5629 13.2397 13.5497C13.2625 13.5365 13.2797 13.5154 13.288 13.4904C13.3184 13.4963 13.3496 13.4963 13.38 13.4904C13.4084 13.4763 13.4335 13.4564 13.4537 13.4321C13.4739 13.4078 13.4888 13.3796 13.4975 13.3492C13.5061 13.3189 13.5083 13.2871 13.5039 13.2558C13.4995 13.2245 13.4887 13.1945 13.472 13.1677Z" fill="#42D4C6"/>
|
||||
<path d="M26.588 25.8966C26.5517 25.9276 26.5225 25.9661 26.5025 26.0094C26.4825 26.0528 26.4722 26.0999 26.4722 26.1476C26.4722 26.1952 26.4825 26.2424 26.5025 26.2857C26.5225 26.329 26.5517 26.3675 26.588 26.3986C26.6021 26.4088 26.6168 26.4181 26.632 26.4265C26.5886 26.4754 26.562 26.5368 26.556 26.6018C26.5551 26.6181 26.5579 26.6343 26.5643 26.6494C26.5707 26.6644 26.5804 26.6778 26.5927 26.6886C26.6051 26.6993 26.6197 26.7072 26.6355 26.7114C26.6513 26.7157 26.6679 26.7164 26.684 26.7133C26.752 26.7133 26.788 26.6376 26.824 26.5779C26.86 26.5181 26.86 26.5221 26.872 26.4982C26.9261 26.4946 26.9771 26.472 27.016 26.4344C27.0812 26.3521 27.1167 26.2504 27.1167 26.1456C27.1167 26.0407 27.0812 25.939 27.016 25.8567C26.9515 25.8117 26.8731 25.791 26.7947 25.7983C26.7163 25.8056 26.643 25.8404 26.588 25.8966Z" fill="#42D4C6"/>
|
||||
<path d="M25.168 25.7461C25.0623 25.776 24.9723 25.8452 24.9165 25.9394C24.8606 26.0336 24.8433 26.1455 24.868 26.2521C24.8899 26.3421 24.9409 26.4225 25.0132 26.4808C25.0855 26.5391 25.175 26.5722 25.268 26.5748C25.368 26.5748 25.448 26.4912 25.5 26.3756C25.5145 26.3779 25.5294 26.3779 25.544 26.3756C25.6027 26.3359 25.6434 26.2749 25.6576 26.2057C25.6718 26.1365 25.6583 26.0645 25.62 26.0051C25.5876 25.969 25.5439 25.9451 25.496 25.9373C25.4615 25.8809 25.4135 25.8338 25.3563 25.8004C25.299 25.7671 25.2343 25.7484 25.168 25.7461Z" fill="#42D4C6"/>
|
||||
<path d="M24.86 23.9181C24.8365 24.0048 24.8431 24.0967 24.8787 24.1792C24.9143 24.2616 24.9767 24.3297 25.056 24.3723C25.208 24.4679 25.36 24.4082 25.456 24.213C25.4836 24.1494 25.49 24.0787 25.4741 24.0112C25.4583 23.9438 25.4211 23.8832 25.368 23.8385C25.2834 23.8079 25.1925 23.7992 25.1037 23.8131C25.0148 23.827 24.931 23.8632 24.86 23.9181Z" fill="#42D4C6"/>
|
||||
<path d="M25.744 26.7175C25.716 26.7852 25.624 26.9287 25.744 27.0004C25.6744 26.9847 25.6015 26.9961 25.54 27.0323C25.5205 27.0136 25.4971 26.9994 25.4714 26.9905C25.4458 26.9817 25.4186 26.9785 25.3916 26.9812C25.3646 26.9838 25.3385 26.9923 25.3151 27.0059C25.2917 27.0195 25.2715 27.038 25.256 27.0601C25.2427 27.1165 25.2427 27.1751 25.256 27.2315C25.2956 27.2693 25.3458 27.2943 25.4 27.3032C25.4329 27.3851 25.4938 27.4529 25.572 27.4944C25.668 27.4944 25.812 27.5462 25.972 27.5662L26.22 27.5144C26.2402 27.4971 26.2563 27.4757 26.2674 27.4516C26.2784 27.4275 26.2841 27.4014 26.284 27.3749C26.2909 27.319 26.2754 27.2626 26.241 27.2179C26.2066 27.1732 26.156 27.1438 26.1 27.1358C26.0339 27.1221 25.9704 27.0979 25.912 27.0641L25.848 27.0402C25.929 27.0327 26.0057 27.0007 26.068 26.9486C26.152 26.8849 26.1 26.7852 26.032 26.7215C25.964 26.6577 25.784 26.6299 25.744 26.7175Z" fill="#42D4C6"/>
|
||||
<path d="M25.572 24.0851C25.528 24.1249 25.572 24.2444 25.572 24.2683C25.572 24.2922 25.6841 24.3241 25.7281 24.2683C25.7721 24.2126 25.7521 24.1488 25.7281 24.1169C25.7041 24.0851 25.612 24.0452 25.572 24.0851Z" fill="#42D4C6"/>
|
||||
<path d="M24.456 24.4717C24.4505 24.5083 24.4542 24.5456 24.4668 24.5804C24.4793 24.6152 24.5004 24.6463 24.528 24.6709C24.576 24.6988 24.752 24.6948 24.784 24.6391C24.7871 24.5958 24.7801 24.5523 24.7634 24.5122C24.7468 24.4721 24.7209 24.4364 24.688 24.408C24.616 24.396 24.472 24.412 24.456 24.4717Z" fill="#42D4C6"/>
|
||||
<path d="M24.076 23.4266C24.0461 23.4784 24.0361 23.5393 24.0479 23.5979C24.0597 23.6565 24.0924 23.7089 24.14 23.7453C24.198 23.7759 24.2654 23.7839 24.329 23.7677C24.3926 23.7515 24.4479 23.7123 24.484 23.6577C24.5124 23.6105 24.5212 23.554 24.5085 23.5005C24.4958 23.4469 24.4626 23.4003 24.416 23.3708C24.3908 23.35 24.3615 23.3348 24.33 23.3263C24.2984 23.3178 24.2654 23.3161 24.2332 23.3214C24.201 23.3267 24.1702 23.3388 24.1431 23.357C24.116 23.3751 24.0931 23.3988 24.076 23.4266Z" fill="#42D4C6"/>
|
||||
<path d="M24.464 25.0801C24.352 25.1757 24.212 25.2434 24.276 25.4028C24.295 25.4548 24.3321 25.4982 24.3805 25.5253C24.429 25.5523 24.4856 25.5612 24.54 25.5502C24.585 25.5493 24.6281 25.5316 24.6607 25.5007C24.6932 25.4697 24.713 25.4277 24.716 25.3829C24.732 25.2076 24.616 25.1398 24.464 25.0801Z" fill="#42D4C6"/>
|
||||
<path d="M24.348 19.8058C24.3382 19.8269 24.3352 19.8505 24.3395 19.8734C24.3438 19.8962 24.3552 19.9172 24.372 19.9333C24.404 19.9532 24.48 19.9333 24.516 19.8855C24.552 19.8377 24.56 19.766 24.516 19.7301C24.472 19.6943 24.376 19.77 24.348 19.8058Z" fill="#42D4C6"/>
|
||||
<path d="M28.932 22.9568C28.896 23.0086 28.96 23.156 28.992 23.1759C29.024 23.1959 29.168 23.2158 29.2 23.1759C29.2148 23.1431 29.2204 23.1068 29.2162 23.071C29.212 23.0352 29.1981 23.0013 29.176 22.9727C29.14 22.9568 28.968 22.921 28.932 22.9568Z" fill="#42D4C6"/>
|
||||
<path d="M28.672 24.7852C28.6135 24.8316 28.5737 24.8973 28.5597 24.9704C28.5458 25.0435 28.5587 25.1192 28.596 25.1837C28.6506 25.23 28.7176 25.2592 28.7887 25.2677C28.8599 25.2762 28.932 25.2636 28.996 25.2315C29.1 25.1359 29.064 24.9247 28.924 24.7813C28.9076 24.7643 28.8879 24.7508 28.8661 24.7417C28.8443 24.7326 28.8208 24.7282 28.7971 24.7285C28.7735 24.7289 28.7502 24.7341 28.7286 24.7439C28.7071 24.7536 28.6878 24.7677 28.672 24.7852Z" fill="#42D4C6"/>
|
||||
<path d="M29.38 24.2205C29.3366 24.21 29.2909 24.2131 29.2493 24.2296C29.2078 24.246 29.1724 24.2748 29.148 24.3121C29.1187 24.3581 29.1067 24.4129 29.114 24.4668C29.1213 24.5207 29.1475 24.5704 29.188 24.607C29.2325 24.636 29.2858 24.6483 29.3386 24.6418C29.3914 24.6352 29.4401 24.6101 29.476 24.5711C29.5152 24.5968 29.5611 24.6105 29.608 24.6105C29.6549 24.6105 29.7008 24.5968 29.74 24.5711C29.7675 24.5493 29.79 24.5219 29.8061 24.4907C29.8221 24.4596 29.8313 24.4254 29.8331 24.3904C29.8349 24.3554 29.8292 24.3205 29.8164 24.2878C29.8036 24.2552 29.784 24.2257 29.7588 24.2012C29.7337 24.1767 29.7036 24.1579 29.6705 24.1459C29.6375 24.1338 29.6023 24.129 29.5672 24.1315C29.5321 24.1341 29.4981 24.1441 29.4672 24.1608C29.4363 24.1775 29.4093 24.2006 29.388 24.2285L29.38 24.2205Z" fill="#42D4C6"/>
|
||||
<path d="M28.38 22.9576C28.3713 22.9482 28.3608 22.9407 28.3491 22.9355C28.3374 22.9304 28.3248 22.9277 28.312 22.9277C28.2992 22.9277 28.2865 22.9304 28.2748 22.9355C28.2631 22.9407 28.2526 22.9482 28.244 22.9576C28.212 23.0131 28.2001 23.0777 28.2103 23.1408C28.2205 23.2039 28.2521 23.2616 28.2999 23.3043C28.3291 23.321 28.362 23.3302 28.3956 23.3311C28.4293 23.3321 28.4626 23.3248 28.4927 23.3098C28.5228 23.2948 28.5487 23.2726 28.5682 23.2453C28.5876 23.2179 28.5998 23.1861 28.6039 23.1529C28.6039 23.1011 28.464 23.0254 28.38 22.9576Z" fill="#42D4C6"/>
|
||||
<path d="M27.116 24.4152C27.0975 24.4055 27.0769 24.4004 27.056 24.4004C27.035 24.4004 27.0145 24.4055 26.996 24.4152C26.985 24.4383 26.9792 24.4635 26.9792 24.489C26.9792 24.5145 26.985 24.5397 26.996 24.5627C27.0075 24.5743 27.0212 24.5834 27.0363 24.5897C27.0514 24.5959 27.0676 24.5992 27.084 24.5992C27.1003 24.5992 27.1165 24.5959 27.1316 24.5897C27.1467 24.5834 27.1604 24.5743 27.172 24.5627C27.248 24.5149 27.148 24.4471 27.116 24.4152Z" fill="#42D4C6"/>
|
||||
<path d="M23.916 25.8901C23.9032 25.9125 23.8938 25.9366 23.888 25.9618C23.8681 25.9396 23.8438 25.9219 23.8165 25.9098C23.7893 25.8977 23.7598 25.8914 23.73 25.8914C23.7002 25.8914 23.6707 25.8977 23.6435 25.9098C23.6163 25.9219 23.5919 25.9396 23.572 25.9618C23.5515 25.9801 23.5351 26.0025 23.5238 26.0276C23.5126 26.0526 23.5068 26.0798 23.5068 26.1072C23.5068 26.1347 23.5126 26.1618 23.5238 26.1868C23.5351 26.2119 23.5515 26.2343 23.572 26.2526C23.6138 26.2916 23.6641 26.3201 23.719 26.336C23.7739 26.352 23.8318 26.3548 23.888 26.3443C23.8861 26.3681 23.8861 26.3921 23.888 26.416C23.888 26.5594 24.096 26.5833 23.98 26.7108C23.864 26.8383 23.664 27.1292 23.928 27.3124C24.0026 27.3498 24.0871 27.363 24.1696 27.3501C24.2521 27.3372 24.3285 27.299 24.388 27.2407C24.396 27.3082 24.4192 27.373 24.4559 27.4303C24.4927 27.4875 24.5419 27.5358 24.6 27.5714C24.6974 27.6118 24.806 27.6163 24.9064 27.5842C25.0068 27.5521 25.0924 27.4854 25.148 27.3961C25.1937 27.3179 25.2084 27.2254 25.1891 27.1369C25.1699 27.0485 25.1182 26.9704 25.044 26.918C24.9535 26.8845 24.8561 26.8739 24.7604 26.8871C24.6648 26.9003 24.574 26.9369 24.496 26.9937C24.5043 26.9336 24.49 26.8727 24.456 26.8224C24.372 26.7188 24.656 26.5993 24.552 26.4479C24.448 26.2965 24.552 26.1172 24.42 25.9498C24.288 25.7825 24.008 25.7147 23.916 25.8901Z" fill="#42D4C6"/>
|
||||
<path d="M27.904 25.1368C27.8762 25.1832 27.8651 25.2376 27.8723 25.2912C27.8796 25.3447 27.9049 25.3942 27.944 25.4316C28.016 25.4794 28.144 25.4316 28.216 25.3041C28.2288 25.2889 28.2379 25.2708 28.2425 25.2514C28.2471 25.232 28.247 25.2119 28.2424 25.1925C28.2377 25.1731 28.2285 25.1551 28.2156 25.1399C28.2027 25.1247 28.1864 25.1127 28.168 25.1049C28.076 25.0531 27.98 25.0332 27.904 25.1368Z" fill="#42D4C6"/>
|
||||
<path d="M25.928 26.1442C25.9034 26.1722 25.8855 26.2054 25.8758 26.2413C25.8661 26.2772 25.8648 26.3149 25.872 26.3514C25.932 26.5028 26.06 26.459 26.176 26.4271C26.236 26.2996 26.24 26.1801 26.108 26.1123C26.0776 26.103 26.0455 26.1011 26.0142 26.1066C25.9828 26.1121 25.9533 26.125 25.928 26.1442Z" fill="#42D4C6"/>
|
||||
<path d="M36.668 8.26367H11.052V11.5427H36.668V8.26367Z" fill="#20377D"/>
|
||||
<path d="M9.55203 42.1179C11.1117 42.1179 12.376 40.8586 12.376 39.3051C12.376 37.7516 11.1117 36.4922 9.55203 36.4922C7.99238 36.4922 6.72803 37.7516 6.72803 39.3051C6.72803 40.8586 7.99238 42.1179 9.55203 42.1179Z" fill="#20377D"/>
|
||||
<path d="M24.136 48.7878C25.6957 48.7878 26.96 47.5285 26.96 45.975C26.96 44.4215 25.6957 43.1621 24.136 43.1621C22.5764 43.1621 21.312 44.4215 21.312 45.975C21.312 47.5285 22.5764 48.7878 24.136 48.7878Z" fill="#20377D"/>
|
||||
<path d="M37.532 36.8699C39.0917 36.8699 40.356 35.6105 40.356 34.057C40.356 32.5035 39.0917 31.2441 37.532 31.2441C35.9724 31.2441 34.708 32.5035 34.708 34.057C34.708 35.6105 35.9724 36.8699 37.532 36.8699Z" fill="#20377D"/>
|
||||
<path d="M23.884 11.9883L19.28 20.136H23.884V25.4988L28.548 17.7734H23.884V11.9883Z" fill="#20377D"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1526_243674">
|
||||
<rect width="48" height="48.7869" fill="white"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 160 KiB |
|
@ -0,0 +1,415 @@
|
|||
<svg width="48" height="48" viewBox="0 0 48 48" fill="none" xmlns="http://www.w3.org/2000/svg">
|
||||
<path d="M25.185 1.74445C25.065 1.95445 25.1062 2.09695 25.3237 2.2282C25.3926 2.28001 25.4783 2.30447 25.5642 2.29685C25.65 2.28924 25.73 2.25008 25.7887 2.18695C25.8324 2.07832 25.8388 1.95826 25.8069 1.8456C25.775 1.73294 25.7067 1.63405 25.6125 1.56445H25.4212C25.3234 1.59399 25.2395 1.65792 25.185 1.74445Z" fill="white"/>
|
||||
<path d="M23.0137 4.05454C22.9724 4.09204 22.9387 4.28329 22.9912 4.32829C23.0437 4.37329 23.2425 4.32829 23.2575 4.27954C23.2725 4.23079 23.3025 4.05079 23.2575 4.02079C23.2173 4.00539 23.1739 4.00041 23.1312 4.00632C23.0886 4.01222 23.0482 4.02881 23.0137 4.05454Z" fill="white"/>
|
||||
<path d="M24.2138 1.72125C24.2034 1.68565 24.1882 1.65159 24.1688 1.62C24.2006 1.58823 24.2249 1.54981 24.2401 1.5075L24.0001 1.5H23.8426C23.8426 1.5 23.8426 1.52625 23.8426 1.5375C23.8309 1.54418 23.8207 1.5531 23.8126 1.56375C23.7589 1.67777 23.7138 1.79559 23.6776 1.91625C23.3888 2.01375 23.2313 2.19375 23.3026 2.37C23.3528 2.46437 23.432 2.54009 23.5286 2.586C23.6251 2.63191 23.7339 2.64558 23.8388 2.625C24.0413 2.56125 24.0676 2.445 23.9513 2.04C24.1051 1.9725 24.2701 1.93125 24.2138 1.72125Z" fill="white"/>
|
||||
<path d="M26.7188 2.65872C26.8388 2.62872 26.9775 2.63622 27.0488 2.52747C27.12 2.41872 27.3338 2.11122 27.2063 1.90497C27.0788 1.69872 26.9325 1.85997 26.7975 1.84122C26.7379 1.83341 26.6773 1.84224 26.6224 1.86673C26.5674 1.89121 26.5203 1.9304 26.4863 1.97997C26.3955 1.99568 26.3117 2.03887 26.2463 2.10372C26.1933 2.17412 26.165 2.26 26.1656 2.3481C26.1663 2.43621 26.196 2.52164 26.25 2.59122C26.2277 2.59358 26.205 2.59112 26.1837 2.58401C26.1623 2.57689 26.1428 2.56528 26.1263 2.54997C26.025 2.45622 25.8038 2.45622 25.6275 2.68122C25.4513 2.90622 25.5675 3.25497 25.7775 3.26622C25.9875 3.27747 26.0438 3.16497 26.0963 3.21747C26.1488 3.26997 26.1975 3.44247 26.3363 3.43872C26.475 3.43497 26.625 3.04122 26.625 2.97372C26.625 2.90622 26.5463 2.78622 26.6025 2.71122C26.6434 2.69897 26.6825 2.68131 26.7188 2.65872Z" fill="white"/>
|
||||
<path d="M30.7687 2.62492C30.69 2.59274 30.6036 2.58377 30.5199 2.59905C30.4362 2.61433 30.3586 2.65323 30.2962 2.71117C30.2718 2.79926 30.274 2.89263 30.3028 2.97943C30.3315 3.06623 30.3853 3.14254 30.4575 3.19867C30.481 3.21374 30.5074 3.22396 30.5349 3.22873C30.5625 3.2335 30.5907 3.23271 30.6179 3.22643C30.6452 3.22014 30.6709 3.20847 30.6936 3.19212C30.7162 3.17576 30.7354 3.15504 30.75 3.13117C30.9075 2.90992 30.9112 2.70742 30.7687 2.62492Z" fill="white"/>
|
||||
<path d="M27.3375 2.62418C27.2775 2.71418 27.3375 2.83793 27.375 2.92043C27.4125 3.00293 27.5775 2.97293 27.6412 2.88668C27.705 2.80043 27.6937 2.66543 27.6037 2.62418C27.5137 2.58293 27.4012 2.54543 27.3375 2.62418Z" fill="white"/>
|
||||
<path d="M23.28 5.14865C23.3397 5.19457 23.4128 5.21946 23.4881 5.21946C23.5634 5.21946 23.6366 5.19457 23.6962 5.14865C23.7521 5.06534 23.785 4.96877 23.7915 4.86869C23.7981 4.76861 23.7782 4.66856 23.7337 4.57865C23.6481 4.53192 23.5488 4.51647 23.453 4.53494C23.3572 4.55342 23.2709 4.60467 23.2087 4.6799C23.0737 4.8149 23.1 4.9874 23.28 5.14865Z" fill="white"/>
|
||||
<path d="M16.5563 4.89818C16.4676 4.84221 16.3649 4.8125 16.26 4.8125C16.1552 4.8125 16.0525 4.84221 15.9638 4.89818C15.9006 4.96731 15.8655 5.05761 15.8655 5.15131C15.8655 5.245 15.9006 5.3353 15.9638 5.40443C16.0347 5.47003 16.1263 5.50889 16.2228 5.51437C16.3193 5.51984 16.4146 5.49158 16.4925 5.43443C16.5673 5.36854 16.6151 5.27741 16.6268 5.17848C16.6386 5.07955 16.6135 4.97976 16.5563 4.89818Z" fill="white"/>
|
||||
<path d="M30.945 3.41574C30.9743 3.43421 31.0069 3.44673 31.041 3.45258C31.0752 3.45842 31.1101 3.45749 31.1439 3.44983C31.1777 3.44217 31.2096 3.42793 31.2379 3.40793C31.2662 3.38792 31.2902 3.36255 31.3087 3.33324C31.3272 3.30394 31.3397 3.27129 31.3455 3.23715C31.3514 3.20302 31.3504 3.16806 31.3428 3.13428C31.3351 3.10051 31.3209 3.06857 31.3009 3.04029C31.2809 3.01202 31.2555 2.98796 31.2262 2.96949C31.1614 2.93739 31.087 2.93074 31.0175 2.95088C30.9481 2.97102 30.8887 3.01646 30.8512 3.07824C30.8208 3.13583 30.8135 3.20288 30.831 3.26564C30.8484 3.3284 30.8892 3.3821 30.945 3.41574Z" fill="white"/>
|
||||
<path d="M22.83 3.10175C22.8581 3.06537 22.878 3.02341 22.8886 2.97867C22.8991 2.93393 22.9 2.88746 22.8911 2.84236C22.8823 2.79726 22.8638 2.75458 22.8371 2.71718C22.8104 2.67978 22.776 2.64852 22.7362 2.6255C22.691 2.59008 22.6386 2.5649 22.5827 2.55168C22.5267 2.53846 22.4686 2.53752 22.4123 2.54893C22.356 2.56033 22.3028 2.58381 22.2564 2.61775C22.2101 2.65168 22.1716 2.69527 22.1437 2.7455C22.0855 2.83162 22.061 2.93614 22.0748 3.03916C22.0886 3.14218 22.1399 3.23653 22.2187 3.30425C22.2672 3.33408 22.3223 3.35171 22.3791 3.35562C22.4359 3.35954 22.4928 3.34964 22.545 3.32675C22.579 3.33468 22.6147 3.33292 22.6478 3.32165C22.681 3.31038 22.7103 3.29007 22.7325 3.263C22.7771 3.21758 22.8105 3.16236 22.83 3.10175Z" fill="white"/>
|
||||
<path d="M22.3013 3.61092C22.2416 3.61978 22.187 3.64951 22.1472 3.69483C22.1074 3.74014 22.0849 3.79811 22.0838 3.85842C22.0735 3.90559 22.0818 3.95492 22.1069 3.99613C22.1321 4.03734 22.1721 4.06727 22.2188 4.07967C22.4025 4.13967 22.4963 4.03092 22.5938 3.88842C22.5225 3.74967 22.5 3.58092 22.3013 3.61092Z" fill="white"/>
|
||||
<path d="M21.435 1.65047C21.4038 1.70883 21.3835 1.77236 21.375 1.83797C21.3629 1.79597 21.341 1.75743 21.3112 1.72547L21.2512 1.67297L20.8762 1.72547C20.9339 1.80096 20.9748 1.8879 20.9962 1.98047C21.023 2.01116 21.0567 2.03501 21.0945 2.05001C21.1323 2.06502 21.1732 2.07075 21.2137 2.06672C21.2479 2.05658 21.2798 2.03977 21.3075 2.01724C21.3352 1.99471 21.3581 1.96692 21.375 1.93547C21.37 1.97932 21.3764 2.0237 21.3935 2.0644C21.4106 2.10509 21.4377 2.14074 21.4725 2.16797C21.5336 2.18258 21.5978 2.17738 21.6558 2.15311C21.7137 2.12885 21.7625 2.08677 21.795 2.03297C21.84 1.85672 21.9675 1.88297 22.0762 1.82672C22.1162 1.8046 22.1518 1.77537 22.1812 1.74047C22.2455 1.77803 22.3186 1.79783 22.3931 1.79783C22.4676 1.79783 22.5407 1.77803 22.605 1.74047C22.6422 1.68973 22.6583 1.62657 22.65 1.56422C22.7925 1.68047 22.9575 1.71047 23.055 1.62047C23.0883 1.59146 23.1129 1.55383 23.1262 1.51172C22.5562 1.54547 21.99 1.58672 21.435 1.65047Z" fill="white"/>
|
||||
<path d="M16.9725 3.46927C16.9358 3.42396 16.8891 3.38781 16.8361 3.36369C16.783 3.33958 16.7251 3.32816 16.6668 3.33034C16.6086 3.33253 16.5517 3.34825 16.5006 3.37627C16.4495 3.40429 16.4056 3.44384 16.3725 3.49177C16.3238 3.52316 16.283 3.56541 16.2534 3.61519C16.2238 3.66497 16.2061 3.72094 16.2017 3.77871C16.1974 3.83647 16.2065 3.89446 16.2283 3.94813C16.2501 4.00179 16.284 4.04967 16.3275 4.08802C16.3705 4.13407 16.423 4.17031 16.4813 4.19426C16.5396 4.21822 16.6024 4.22933 16.6653 4.22684C16.7283 4.22435 16.79 4.20831 16.8463 4.17983C16.9025 4.15134 16.9519 4.11108 16.9912 4.06177C17.0604 3.9775 17.0966 3.87097 17.0932 3.76199C17.0897 3.65302 17.0468 3.549 16.9725 3.46927Z" fill="white"/>
|
||||
<path d="M35.0213 6.19919C35.0404 6.21766 35.064 6.23097 35.0897 6.23788C35.1154 6.24478 35.1424 6.24507 35.1682 6.2387C35.1941 6.23234 35.2179 6.21953 35.2374 6.20147C35.257 6.18341 35.2716 6.1607 35.28 6.13544C35.2913 6.05835 35.2913 5.98003 35.28 5.90294C35.2521 5.8851 35.2207 5.87324 35.188 5.86812C35.1552 5.86299 35.1217 5.86471 35.0897 5.87317C35.0576 5.88163 35.0276 5.89663 35.0017 5.91725C34.9757 5.93786 34.9543 5.96364 34.9388 5.99294C34.875 6.09419 34.9463 6.15044 35.0213 6.19919Z" fill="white"/>
|
||||
<path d="M34.8112 4.73327C34.8513 4.73509 34.8913 4.72795 34.9283 4.71239C34.9652 4.69682 34.9983 4.67321 35.025 4.64327C35.0425 4.61375 35.0517 4.58007 35.0517 4.54577C35.0517 4.51146 35.0425 4.47778 35.025 4.44827C34.9387 4.31702 34.8112 4.32827 34.6725 4.41452C34.6762 4.54202 34.6462 4.68827 34.8112 4.73327Z" fill="white"/>
|
||||
<path d="M25.3612 2.43013C25.3434 2.40253 25.3203 2.3788 25.2931 2.36037C25.2659 2.34195 25.2353 2.3292 25.2031 2.32289C25.1709 2.31659 25.1377 2.31686 25.1056 2.32369C25.0735 2.33052 25.0431 2.34376 25.0162 2.36263C24.9512 2.42924 24.9106 2.51589 24.9011 2.60848C24.8916 2.70107 24.9136 2.79416 24.9637 2.87263C25.0115 2.92305 25.0762 2.95401 25.1454 2.95955C25.2147 2.96509 25.2835 2.94481 25.3387 2.90263C25.4004 2.84068 25.4368 2.75802 25.441 2.67071C25.4451 2.5834 25.4167 2.49766 25.3612 2.43013Z" fill="white"/>
|
||||
<path d="M33.1951 5.24912C33.3064 5.27801 33.4245 5.26492 33.5269 5.21237C33.6292 5.15981 33.7086 5.07146 33.7501 4.96412C33.7603 4.83615 33.7294 4.70825 33.662 4.59901C33.5945 4.48976 33.494 4.40486 33.3751 4.35662C33.2607 4.34865 33.1473 4.38218 33.0557 4.45106C32.9641 4.51995 32.9004 4.61956 32.8763 4.73162C32.8577 4.84186 32.8798 4.95511 32.9384 5.0503C32.997 5.14549 33.0882 5.21614 33.1951 5.24912Z" fill="white"/>
|
||||
<path d="M33.0262 3.56906C32.9939 3.60599 32.9709 3.6501 32.9592 3.69772C32.9474 3.74534 32.9472 3.79509 32.9586 3.8428C32.97 3.89051 32.9926 3.93481 33.0246 3.972C33.0566 4.00919 33.097 4.03818 33.1425 4.05656C33.1999 4.09858 33.2682 4.12337 33.3393 4.12802C33.4103 4.13266 33.4812 4.11699 33.5437 4.08281C33.588 4.11939 33.6437 4.13939 33.7012 4.13939C33.7587 4.13939 33.8144 4.11939 33.8587 4.08281C33.9008 4.05078 33.929 4.00379 33.9375 3.95156C33.926 3.89443 33.9109 3.83807 33.8925 3.78281C33.6425 3.66531 33.3987 3.55281 33.1612 3.44531C33.1073 3.4756 33.0611 3.51796 33.0262 3.56906Z" fill="white"/>
|
||||
<path d="M34.2112 4.19633C34.2598 4.23077 34.3198 4.24495 34.3786 4.23585C34.4374 4.22675 34.4904 4.19508 34.5262 4.14758C34.5262 4.14758 34.5262 4.12883 34.5262 4.12133C34.38 4.04258 34.23 3.96758 34.08 3.89258C34.0622 3.95055 34.0656 4.01296 34.0896 4.06863C34.1137 4.1243 34.1568 4.16957 34.2112 4.19633Z" fill="white"/>
|
||||
<path d="M25.1925 3.75027C25.202 3.73787 25.2071 3.72272 25.2071 3.70714C25.2071 3.69157 25.202 3.67642 25.1925 3.66402C25.1785 3.65028 25.1597 3.64258 25.14 3.64258C25.1204 3.64258 25.1016 3.65028 25.0875 3.66402C25.0749 3.67784 25.0679 3.6959 25.0679 3.71464C25.0679 3.73338 25.0749 3.75144 25.0875 3.76527C25.125 3.78402 25.1775 3.76902 25.1925 3.75027Z" fill="white"/>
|
||||
<path d="M36.6075 5.36227C36.2812 5.14102 35.9512 4.93102 35.6137 4.72852C35.6343 4.75213 35.6531 4.77719 35.67 4.80352C35.6049 4.90055 35.5701 5.01477 35.5701 5.13164C35.5701 5.24851 35.6049 5.36273 35.67 5.45977C35.7336 5.51921 35.809 5.56457 35.8914 5.59287C35.9737 5.62116 36.0611 5.63176 36.1478 5.62398C36.2345 5.61619 36.3186 5.59019 36.3946 5.54768C36.4706 5.50516 36.5367 5.4471 36.5887 5.37727L36.6075 5.36227Z" fill="white"/>
|
||||
<path d="M34.4625 5.37094C34.4758 5.29527 34.4758 5.21786 34.4625 5.14219C34.4348 5.1242 34.4037 5.11213 34.3711 5.10674C34.3385 5.10134 34.3051 5.10274 34.2731 5.11083C34.241 5.11893 34.211 5.13355 34.1849 5.15379C34.1588 5.17403 34.1371 5.19944 34.1213 5.22844C34.0688 5.33344 34.1213 5.38969 34.2038 5.43844C34.2239 5.45504 34.2477 5.46663 34.2732 5.47226C34.2987 5.47788 34.3251 5.47738 34.3504 5.47079C34.3756 5.4642 34.399 5.45171 34.4185 5.43436C34.438 5.417 34.4531 5.39526 34.4625 5.37094Z" fill="white"/>
|
||||
<path d="M24.7237 3.7272C24.78 3.76071 24.847 3.77161 24.911 3.75769C24.975 3.74377 25.0314 3.70607 25.0687 3.6522C25.0965 3.59907 25.1031 3.53734 25.0871 3.47954C25.0711 3.42174 25.0337 3.37219 24.9825 3.34095C24.9595 3.32167 24.9327 3.30745 24.9038 3.29921C24.8749 3.29098 24.8446 3.28892 24.8149 3.29316C24.7852 3.29741 24.7567 3.30787 24.7313 3.32385C24.7059 3.33984 24.6842 3.361 24.6675 3.38595C24.6476 3.41163 24.6333 3.44112 24.6253 3.47258C24.6174 3.50404 24.616 3.53681 24.6213 3.56882C24.6266 3.60084 24.6384 3.63143 24.656 3.65868C24.6736 3.68592 24.6967 3.70925 24.7237 3.7272Z" fill="white"/>
|
||||
<path d="M24.21 2.64725C24.2366 2.66603 24.2667 2.67922 24.2985 2.686C24.3303 2.69278 24.3632 2.69303 24.3951 2.68671C24.427 2.6804 24.4573 2.66766 24.4842 2.64928C24.511 2.63089 24.5338 2.60724 24.5513 2.57975C24.5659 2.55365 24.5751 2.5248 24.5781 2.49501C24.5811 2.46521 24.578 2.43511 24.5688 2.4066C24.5597 2.37808 24.5447 2.35176 24.5249 2.32929C24.5051 2.30682 24.4809 2.28868 24.4538 2.276C24.3959 2.24494 24.3282 2.23774 24.2651 2.25596C24.2021 2.27419 24.1486 2.31638 24.1163 2.3735C24.1024 2.39722 24.0939 2.42363 24.0911 2.45095C24.0884 2.47827 24.0916 2.50585 24.1005 2.53182C24.1094 2.55779 24.1238 2.58154 24.1427 2.60146C24.1616 2.62138 24.1845 2.637 24.21 2.64725Z" fill="white"/>
|
||||
<path d="M20.625 1.76953L20.2913 1.82578C20.4057 1.84683 20.5238 1.82691 20.625 1.76953Z" fill="white"/>
|
||||
<path d="M25.1251 1.61672C25.1475 1.59105 25.1675 1.56345 25.1851 1.53422C24.9413 1.53422 24.6938 1.53422 24.4351 1.51172C24.4472 1.54455 24.4649 1.57501 24.4876 1.60172C24.5732 1.6826 24.6857 1.72889 24.8034 1.73166C24.9212 1.73443 25.0357 1.69348 25.1251 1.61672Z" fill="white"/>
|
||||
<path d="M20.3287 2.2874C20.3617 2.23219 20.3746 2.16722 20.365 2.10361C20.3554 2.03999 20.324 1.98168 20.2762 1.93865C20.175 1.8749 19.935 1.9049 19.9012 1.9874C19.8719 2.05708 19.8663 2.13446 19.8853 2.20763C19.9043 2.2808 19.9468 2.34571 20.0062 2.3924C20.0632 2.41925 20.1283 2.42333 20.1883 2.40382C20.2482 2.38431 20.2984 2.34267 20.3287 2.2874Z" fill="white"/>
|
||||
<path d="M31.5 3.06786C31.5 3.09411 31.5 3.13536 31.5487 3.13911C31.5582 3.1413 31.568 3.14143 31.5774 3.1395C31.5869 3.13758 31.5959 3.13364 31.6037 3.12795C31.6115 3.12226 31.618 3.11495 31.6228 3.10652C31.6275 3.0981 31.6304 3.08875 31.6312 3.07911C31.6312 3.03036 31.5862 3.00786 31.5637 3.00411C31.5412 3.00036 31.5 3.04911 31.5 3.06786Z" fill="white"/>
|
||||
<path d="M22.9537 4.82193C23.0037 4.75231 23.0253 4.66629 23.0141 4.58133C23.003 4.49637 22.96 4.41883 22.8937 4.36443C22.7904 4.31569 22.6736 4.30361 22.5624 4.3302C22.4513 4.35679 22.3526 4.42045 22.2825 4.51068C22.2588 4.59629 22.2663 4.68753 22.3036 4.76814C22.3409 4.84875 22.4056 4.91351 22.4862 4.95087C22.5668 4.98824 22.658 4.99578 22.7436 4.97217C22.8292 4.94856 22.9037 4.89532 22.9537 4.82193Z" fill="white"/>
|
||||
<path d="M22.1249 5.62448C22.0804 5.58164 22.0274 5.54854 21.9693 5.52726C21.9113 5.50598 21.8495 5.497 21.7878 5.50088C21.7261 5.50476 21.6658 5.52141 21.6109 5.54979C21.556 5.57817 21.5076 5.61765 21.4687 5.66573C21.4254 5.7021 21.3901 5.74714 21.3653 5.79795C21.3404 5.84876 21.3265 5.90421 21.3244 5.96074C21.3223 6.01726 21.332 6.07361 21.353 6.12614C21.374 6.17866 21.4057 6.22622 21.4462 6.26573C21.5371 6.35061 21.6558 6.39936 21.7801 6.40282C21.9045 6.40627 22.0257 6.36418 22.1212 6.28448C22.1953 6.19064 22.236 6.07471 22.2366 5.95512C22.2373 5.83554 22.198 5.71916 22.1249 5.62448Z" fill="white"/>
|
||||
<path d="M27.5925 5.47565C27.4275 5.1569 27.135 5.38565 27.105 5.1494C27.075 4.91315 27.3038 4.9919 27.2438 4.6619C27.1838 4.3319 26.8688 4.19315 26.6888 4.3544C26.5088 4.51565 26.5838 4.7294 26.535 4.7294C26.4863 4.7294 26.2388 4.8044 26.2725 4.98815C26.2275 4.96565 26.175 4.9544 26.1488 4.98815C26.1225 5.0219 26.1488 5.1569 26.1713 5.1869C26.194 5.20719 26.2224 5.2199 26.2527 5.22327C26.2829 5.22663 26.3135 5.22047 26.34 5.20565C26.3414 5.19569 26.3414 5.1856 26.34 5.17565C26.4675 5.3219 26.6775 5.2469 26.715 5.3294C26.7525 5.4119 26.745 5.68565 26.82 5.85065C26.9213 6.08315 27.1463 6.22565 27.3788 6.09815C27.4367 6.07486 27.489 6.03938 27.532 5.99411C27.575 5.94884 27.6077 5.89484 27.628 5.83578C27.6483 5.77672 27.6556 5.71399 27.6495 5.65185C27.6434 5.5897 27.624 5.52961 27.5925 5.47565Z" fill="white"/>
|
||||
<path d="M25.875 4.33524C25.9245 4.26999 25.9514 4.1903 25.9514 4.10836C25.9514 4.02642 25.9245 3.94673 25.875 3.88149C25.6725 3.71649 25.4437 3.88149 25.3312 3.95274C25.2187 4.02399 25.3312 4.32774 25.545 4.42524C25.5723 4.44177 25.6028 4.45257 25.6345 4.45698C25.6661 4.4614 25.6984 4.45933 25.7292 4.45092C25.7601 4.4425 25.7889 4.42791 25.814 4.40803C25.839 4.38814 25.8598 4.36338 25.875 4.33524Z" fill="white"/>
|
||||
<path d="M33.42 6.16799C33.4314 6.15005 33.4415 6.13124 33.45 6.11174C33.54 6.09299 33.6862 6.05174 33.6937 5.96924C33.7012 5.88674 33.4987 5.79674 33.4237 5.78924C33.4116 5.78523 33.3984 5.78523 33.3862 5.78924C33.3057 5.75147 33.2169 5.73508 33.1282 5.74165C33.0395 5.74822 32.954 5.77752 32.88 5.82674C32.8521 5.8658 32.833 5.91043 32.8239 5.95756C32.8148 6.0047 32.816 6.05324 32.8274 6.09987C32.8388 6.1465 32.8601 6.19012 32.8899 6.22776C32.9197 6.26541 32.9572 6.29618 33 6.31799C33.1125 6.40799 33.2925 6.34799 33.42 6.16799Z" fill="white"/>
|
||||
<path d="M12.6075 5.43017C12.7313 5.48267 12.9525 5.26142 12.9075 5.16392C12.8625 5.06642 12.57 5.02892 12.5138 5.16392C12.4974 5.21239 12.4977 5.26496 12.5147 5.31323C12.5317 5.3615 12.5644 5.40267 12.6075 5.43017Z" fill="white"/>
|
||||
<path d="M31.9087 3.8362C31.9005 3.92195 31.9243 4.0077 31.9755 4.07693C32.0268 4.14617 32.1018 4.194 32.1862 4.2112C32.2169 4.22283 32.2497 4.22793 32.2824 4.22618C32.3152 4.22444 32.3473 4.21589 32.3765 4.20107C32.4058 4.18625 32.4317 4.16549 32.4525 4.14012C32.4733 4.11475 32.4886 4.08532 32.4974 4.0537C32.5094 3.96119 32.4891 3.86739 32.4399 3.78813C32.3907 3.70887 32.3157 3.64903 32.2274 3.6187C32.1566 3.60747 32.0841 3.62374 32.0249 3.66417C31.9656 3.7046 31.9241 3.76614 31.9087 3.8362Z" fill="white"/>
|
||||
<path d="M32.0775 3.00086L31.7775 2.88086C31.862 2.95208 31.9672 2.99417 32.0775 3.00086Z" fill="white"/>
|
||||
<path d="M34.4663 5.6584C34.3696 5.64863 34.2726 5.67235 34.1913 5.7256C34.1101 5.77885 34.0496 5.85839 34.02 5.9509C34.0222 6.04762 34.0554 6.14108 34.1149 6.21741C34.1743 6.29374 34.2568 6.34888 34.35 6.37465C34.4888 6.39715 34.6613 6.23215 34.6875 6.0484C34.7138 5.86465 34.6463 5.6884 34.4663 5.6584Z" fill="white"/>
|
||||
<path d="M17.4 5.2687C17.3792 5.29312 17.3637 5.32166 17.3546 5.35247C17.3455 5.38327 17.343 5.41565 17.3472 5.44749C17.3515 5.47932 17.3624 5.50991 17.3792 5.53726C17.3961 5.5646 17.4185 5.58809 17.445 5.6062C17.5388 5.6737 17.64 5.75245 17.7263 5.66995C17.8725 5.51245 17.8875 5.3587 17.7975 5.26495C17.7726 5.23662 17.7419 5.21399 17.7074 5.1986C17.673 5.18322 17.6356 5.17544 17.5979 5.17579C17.5602 5.17615 17.523 5.18463 17.4888 5.20066C17.4547 5.2167 17.4244 5.2399 17.4 5.2687Z" fill="white"/>
|
||||
<path d="M16.6725 3.10188C16.7236 3.1494 16.7836 3.18633 16.849 3.21056C16.9144 3.23479 16.984 3.24583 17.0537 3.24304C17.1235 3.24025 17.1919 3.22369 17.2552 3.19431C17.3185 3.16494 17.3754 3.12332 17.4225 3.07187C17.5052 2.99389 17.5586 2.88982 17.5736 2.77714C17.5886 2.66447 17.5644 2.55005 17.505 2.45312C17.1825 2.55062 16.86 2.65563 16.545 2.76813C16.5387 2.82985 16.547 2.89218 16.5691 2.95013C16.5913 3.00809 16.6267 3.06005 16.6725 3.10188Z" fill="white"/>
|
||||
<path d="M17.8912 4.12555C17.8221 4.07324 17.7378 4.04492 17.6512 4.04492C17.5645 4.04492 17.4803 4.07324 17.4112 4.12555C17.3686 4.19371 17.3506 4.27438 17.3602 4.35417C17.3697 4.43397 17.4062 4.50811 17.4637 4.5643C17.4865 4.58377 17.5131 4.59824 17.5418 4.60677C17.5705 4.61529 17.6007 4.61769 17.6304 4.6138C17.6601 4.60991 17.6886 4.59982 17.7142 4.58419C17.7397 4.56856 17.7617 4.54773 17.7787 4.52305C17.9362 4.3468 17.9774 4.2043 17.8912 4.12555Z" fill="white"/>
|
||||
<path d="M14.1563 5.11451C14.1238 5.08138 14.0847 5.05549 14.0415 5.03851C13.9983 5.02153 13.952 5.01385 13.9056 5.01597C13.8593 5.01809 13.8139 5.02997 13.7724 5.05083C13.731 5.07169 13.6944 5.10105 13.665 5.13701C13.6019 5.1999 13.5619 5.28237 13.5517 5.37093C13.5415 5.45948 13.5616 5.54888 13.6088 5.62451C13.6882 5.67917 13.7824 5.70844 13.8788 5.70844C13.9752 5.70844 14.0693 5.67917 14.1488 5.62451C14.1875 5.59452 14.219 5.55618 14.2409 5.51235C14.2628 5.46851 14.2746 5.42031 14.2753 5.37132C14.276 5.32232 14.2657 5.27379 14.2451 5.22933C14.2245 5.18488 14.1941 5.14563 14.1563 5.11451Z" fill="white"/>
|
||||
<path d="M13.3912 4.17805C13.5637 4.37305 13.7662 4.3243 13.95 4.21555C14.0325 4.3318 14.07 4.50055 14.265 4.43305C14.3179 4.41894 14.3638 4.38602 14.3942 4.34045C14.4246 4.29489 14.4373 4.23981 14.43 4.18555C14.43 3.98305 14.2462 3.98305 14.0925 3.9718C14.0925 3.91555 14.0925 3.86305 14.0625 3.81055L13.3762 4.16305C13.3762 4.16305 13.3837 4.1743 13.3912 4.17805Z" fill="white"/>
|
||||
<path d="M20.25 4.44361C20.1525 4.28611 20.0062 4.26736 19.8112 4.44361C19.7375 4.60377 19.6724 4.76776 19.6162 4.93486C19.6071 4.96366 19.604 4.99402 19.6071 5.02406C19.6102 5.0541 19.6194 5.08319 19.6342 5.10953C19.6489 5.13588 19.6689 5.15893 19.6929 5.17726C19.7169 5.19559 19.7444 5.20881 19.7737 5.21611C19.8309 5.23687 19.894 5.23436 19.9494 5.20912C20.0048 5.18388 20.0481 5.13792 20.07 5.08111C20.0997 5.01373 20.1402 4.95166 20.19 4.89736C20.2486 4.83896 20.2864 4.76278 20.2972 4.6807C20.3081 4.59862 20.2914 4.51526 20.25 4.44361Z" fill="white"/>
|
||||
<path d="M30.9901 5.74837C30.9516 5.76431 30.9177 5.78956 30.8914 5.82186C30.8651 5.85415 30.8472 5.89247 30.8394 5.93338C30.8316 5.97429 30.8341 6.01649 30.8466 6.0562C30.8592 6.09591 30.8814 6.13188 30.9113 6.16087C30.952 6.19178 30.9988 6.21348 31.0487 6.22449C31.0985 6.2355 31.1502 6.23554 31.2001 6.22462C31.2398 6.20332 31.2738 6.17278 31.2993 6.13558C31.3247 6.09838 31.3408 6.05561 31.3463 6.01087C31.3437 5.96877 31.3318 5.92777 31.3116 5.89074C31.2914 5.8537 31.2634 5.82155 31.2294 5.79652C31.1955 5.7715 31.1564 5.75422 31.1151 5.74591C31.0737 5.73759 31.0311 5.73843 30.9901 5.74837Z" fill="white"/>
|
||||
<path d="M31.9575 5.81312C31.9323 5.79293 31.9032 5.77797 31.8721 5.7691C31.841 5.76024 31.8085 5.75765 31.7764 5.76149C31.7443 5.76533 31.7132 5.77552 31.6851 5.79147C31.657 5.80741 31.6323 5.8288 31.6125 5.85437C31.5742 5.90762 31.558 5.97357 31.567 6.03852C31.5761 6.10346 31.6099 6.16241 31.6613 6.20313C31.7191 6.24263 31.7896 6.25915 31.8589 6.24944C31.9283 6.23973 31.9915 6.20449 32.0363 6.15062C32.0534 6.12334 32.065 6.09293 32.0703 6.06114C32.0757 6.02936 32.0747 5.99683 32.0673 5.96544C32.06 5.93405 32.0465 5.90443 32.0277 5.87828C32.0088 5.85214 31.985 5.82999 31.9575 5.81312Z" fill="white"/>
|
||||
<path d="M27.7987 3.37536C27.7362 3.32752 27.658 3.30483 27.5795 3.31177C27.5011 3.31871 27.4281 3.35478 27.3749 3.41286C27.3279 3.48712 27.3068 3.57488 27.3149 3.66241C27.3231 3.74994 27.36 3.8323 27.4199 3.89661C27.509 3.94886 27.6137 3.96774 27.7154 3.94987C27.817 3.93201 27.9091 3.87857 27.9749 3.79911C28.0312 3.69036 27.9487 3.48786 27.7987 3.37536Z" fill="white"/>
|
||||
<path d="M28.2413 5.18924C28.2938 5.14424 28.2413 5.03924 28.2 5.00174C28.1795 4.98788 28.1554 4.98047 28.1306 4.98047C28.1059 4.98047 28.0817 4.98788 28.0613 5.00174C28.0275 5.03174 28.0613 5.12174 28.0613 5.16674C28.0613 5.21174 28.1888 5.24924 28.2413 5.18924Z" fill="white"/>
|
||||
<path d="M28.7288 5.19759C28.7665 5.22448 28.8096 5.24274 28.8551 5.25107C28.9007 5.2594 28.9475 5.2576 28.9922 5.24578C29.037 5.23397 29.0786 5.21243 29.1141 5.18272C29.1495 5.153 29.1781 5.11582 29.1975 5.07384C29.2988 4.89759 29.28 4.71759 29.145 4.64259C29.0458 4.5983 28.9348 4.5879 28.8291 4.61297C28.7233 4.63805 28.6288 4.69721 28.56 4.78134C28.5395 4.85964 28.5448 4.94249 28.5752 5.01752C28.6056 5.09255 28.6595 5.15572 28.7288 5.19759Z" fill="white"/>
|
||||
<path d="M30.0487 2.39273C30.0755 2.41794 30.1076 2.43677 30.1427 2.44781C30.1778 2.45885 30.2149 2.46182 30.2512 2.45648C30.2922 2.45253 30.3319 2.43974 30.3675 2.41898C29.9925 2.30648 29.6175 2.20898 29.22 2.11523C29.1688 2.19819 29.1519 2.29783 29.1729 2.39304C29.1939 2.48824 29.2511 2.57153 29.3325 2.62523C29.459 2.71028 29.6138 2.74257 29.7637 2.71523C29.7781 2.73 29.7963 2.7404 29.8162 2.74523C29.8575 2.74523 29.9887 2.74523 30 2.67023C29.9997 2.65573 29.9962 2.64147 29.9897 2.6285C29.9832 2.61552 29.9739 2.60416 29.9625 2.59523C29.9755 2.58995 29.988 2.58368 30 2.57648C30.0301 2.51977 30.0467 2.45691 30.0487 2.39273Z" fill="white"/>
|
||||
<path d="M30.8738 4.74737C30.8886 4.72822 30.9001 4.70666 30.9075 4.68362C30.9256 4.73264 30.9537 4.77734 30.99 4.81487C30.9659 4.86936 30.9519 4.92783 30.9488 4.98737C30.9388 5.03554 30.9397 5.08532 30.9512 5.13314C30.9627 5.18096 30.9847 5.22564 31.0155 5.26398C31.0463 5.30232 31.0852 5.33338 31.1294 5.35493C31.1737 5.37647 31.2221 5.38798 31.2713 5.38862C31.359 5.39039 31.4446 5.36134 31.5131 5.30652C31.5816 5.25171 31.6288 5.1746 31.6463 5.08862C31.6635 5.09691 31.6799 5.10696 31.695 5.11862C31.7281 5.16518 31.773 5.20201 31.8251 5.22528C31.8773 5.24854 31.9347 5.25737 31.9914 5.25086C32.0481 5.24434 32.102 5.22272 32.1475 5.18824C32.193 5.15377 32.2284 5.1077 32.25 5.05487C32.2666 5.08261 32.2898 5.10581 32.3175 5.12237C32.3806 5.13942 32.4475 5.13461 32.5074 5.10873C32.5674 5.08285 32.6167 5.03743 32.6475 4.97987C32.6927 4.91734 32.7118 4.83964 32.7005 4.76331C32.6893 4.68698 32.6488 4.61802 32.5875 4.57112C32.559 4.55506 32.5274 4.54503 32.4948 4.54164C32.4622 4.53825 32.4292 4.54158 32.398 4.55141C32.3667 4.56125 32.3378 4.57739 32.313 4.59884C32.2882 4.62029 32.268 4.64659 32.2538 4.67612C32.2001 4.61243 32.1301 4.56448 32.0513 4.53737C31.9374 4.50768 31.8386 4.43688 31.7738 4.33862C31.7225 4.26886 31.6542 4.21332 31.5755 4.17724C31.4968 4.14115 31.4101 4.12571 31.3238 4.13237C31.237 4.13602 31.1531 4.16493 31.0825 4.21556C31.0119 4.26619 30.9576 4.33632 30.9263 4.41737V4.46237C30.9046 4.35798 30.8426 4.26635 30.7538 4.20737C30.6225 4.12487 30.45 4.20737 30.33 4.38362C30.2839 4.44908 30.2617 4.52842 30.2672 4.60832C30.2726 4.68822 30.3054 4.7638 30.36 4.82237C30.4431 4.86393 30.5368 4.87902 30.6287 4.86561C30.7206 4.8522 30.8061 4.81093 30.8738 4.74737Z" fill="white"/>
|
||||
<path d="M28.5 3.84335C28.5 3.7946 28.4325 3.73835 28.3875 3.7196C28.3425 3.70085 28.2487 3.7196 28.2375 3.79835C28.2262 3.8771 28.3387 3.91085 28.3837 3.9221C28.4087 3.9218 28.433 3.91417 28.4537 3.90017C28.4743 3.88618 28.4904 3.86642 28.5 3.84335Z" fill="white"/>
|
||||
<path d="M28.9913 3.77918C29.0908 3.856 29.2143 3.89512 29.3399 3.88963C29.4655 3.88414 29.5851 3.83439 29.6775 3.74918C29.7341 3.63725 29.7508 3.50936 29.7249 3.38664C29.699 3.26392 29.632 3.1537 29.535 3.07418C29.4271 3.02465 29.3054 3.01403 29.1906 3.04411C29.0757 3.07419 28.9748 3.14312 28.905 3.23918C28.8485 3.32342 28.8259 3.42596 28.8419 3.52615C28.8579 3.62635 28.9113 3.71676 28.9913 3.77918Z" fill="white"/>
|
||||
<path d="M28.71 2.46703C28.7339 2.42787 28.7505 2.38466 28.7588 2.33953C28.9388 2.39953 29.0363 2.29078 29.1338 2.14453L29.1075 2.08828C28.7325 2.00203 28.3838 1.92703 28.0163 1.86328C27.9811 1.88605 27.9505 1.91532 27.9263 1.94953C27.8913 1.99796 27.8674 2.05347 27.8561 2.11215C27.8449 2.17083 27.8467 2.23125 27.8614 2.28917C27.876 2.34708 27.9032 2.40108 27.941 2.44736C27.9788 2.49364 28.0262 2.53107 28.08 2.55703C28.125 2.598 28.1784 2.62852 28.2366 2.64641C28.2947 2.66431 28.356 2.66912 28.4162 2.66052C28.4764 2.65192 28.534 2.63012 28.5848 2.59667C28.6356 2.56321 28.6784 2.51895 28.71 2.46703Z" fill="white"/>
|
||||
<path d="M24.0824 5.73698C24.0433 5.72999 24.0032 5.73105 23.9645 5.74007C23.9259 5.7491 23.8894 5.76591 23.8574 5.78948C23.7787 5.86073 23.8574 6.05573 23.9512 6.08198C24.0149 6.08817 24.0792 6.07917 24.1387 6.05573C24.2212 5.90573 24.1874 5.75948 24.0824 5.73698Z" fill="white"/>
|
||||
<path d="M15.3449 4.683C15.4063 4.62934 15.4458 4.55511 15.4562 4.47428C15.4666 4.39346 15.447 4.31165 15.4012 4.24425C15.3554 4.19138 15.2913 4.15775 15.2218 4.1501C15.1522 4.14245 15.0824 4.16135 15.0262 4.203C14.9701 4.27039 14.9393 4.35531 14.9393 4.443C14.9393 4.5307 14.9701 4.61562 15.0262 4.683C15.0462 4.70544 15.0708 4.72339 15.0983 4.73567C15.1257 4.74796 15.1555 4.75431 15.1856 4.75431C15.2157 4.75431 15.2454 4.74796 15.2729 4.73567C15.3003 4.72339 15.3249 4.70544 15.3449 4.683Z" fill="white"/>
|
||||
<path d="M11.055 5.62422C11.0566 5.61807 11.0566 5.61162 11.055 5.60547L10.9575 5.67672C10.9939 5.66777 11.0275 5.6497 11.055 5.62422Z" fill="white"/>
|
||||
<path d="M15.5212 5.86098C15.4694 5.82157 15.4041 5.8042 15.3395 5.81263C15.2749 5.82105 15.2162 5.85459 15.1762 5.90598C15.1551 5.92665 15.1386 5.95162 15.128 5.97921C15.1173 6.00681 15.1127 6.03636 15.1145 6.06588C15.1163 6.0954 15.1244 6.1242 15.1383 6.15031C15.1522 6.17642 15.1715 6.19924 15.195 6.21723C15.2436 6.2602 15.3063 6.28391 15.3712 6.28391C15.4361 6.28391 15.4988 6.2602 15.5475 6.21723C15.5906 6.16624 15.6121 6.10036 15.6072 6.03374C15.6022 5.96712 15.5714 5.90509 15.5212 5.86098Z" fill="white"/>
|
||||
<path d="M16.1437 3.13547C16.1588 3.1012 16.1666 3.06416 16.1666 3.02672C16.1666 2.98927 16.1588 2.95224 16.1437 2.91797C15.7687 3.05672 15.3937 3.20672 15.0487 3.36422C15.1289 3.45894 15.2342 3.52912 15.3525 3.56672C15.5116 3.57652 15.6702 3.54126 15.8101 3.46497C15.9501 3.38869 16.0657 3.27449 16.1437 3.13547Z" fill="white"/>
|
||||
<path d="M21.7275 4.46975C21.7242 4.35927 21.6808 4.25377 21.6053 4.17306C21.5298 4.09235 21.4274 4.04197 21.3174 4.03138C21.2074 4.0208 21.0973 4.05073 21.0077 4.11556C20.9182 4.18039 20.8555 4.27567 20.8312 4.3835C20.79 4.556 21.015 4.7585 21.2587 4.8035C21.3638 4.81289 21.4688 4.78442 21.5547 4.72322C21.6407 4.66202 21.7019 4.57213 21.7275 4.46975Z" fill="white"/>
|
||||
<path d="M23.25 6.12366C23.25 6.07866 23.2312 5.97366 23.1787 5.92116C23.1569 5.88722 23.1277 5.85867 23.0932 5.83768C23.0588 5.81669 23.02 5.80381 22.9798 5.80001C22.9396 5.79621 22.8991 5.80159 22.8613 5.81574C22.8236 5.82989 22.7895 5.85245 22.7617 5.8817C22.7339 5.91095 22.7131 5.94614 22.7009 5.9846C22.6887 6.02306 22.6854 6.06379 22.6913 6.10371C22.6971 6.14363 22.712 6.1817 22.7347 6.21504C22.7575 6.24838 22.7875 6.27612 22.8225 6.29616C22.905 6.37491 23.1 6.30741 23.25 6.12366Z" fill="white"/>
|
||||
<path d="M21.1275 5.73045C21.1467 5.70651 21.1572 5.67675 21.1572 5.64608C21.1572 5.6154 21.1467 5.58564 21.1275 5.5617C21.0713 5.52045 20.985 5.6067 20.955 5.6442C20.9451 5.66668 20.9422 5.69169 20.9469 5.71583C20.9516 5.73998 20.9636 5.7621 20.9813 5.7792C21 5.80545 21.09 5.7642 21.1275 5.73045Z" fill="white"/>
|
||||
<path d="M21.1463 5.17922C21.122 5.14732 21.0909 5.12132 21.0551 5.10314C21.0194 5.08496 20.9801 5.07507 20.94 5.07422C20.7713 5.10047 20.7863 5.24672 20.79 5.37797C20.9138 5.46797 21.0375 5.50172 21.1388 5.37797C21.1563 5.34804 21.1662 5.31422 21.1675 5.27954C21.1688 5.24485 21.1615 5.21039 21.1463 5.17922Z" fill="white"/>
|
||||
<path d="M24.75 5.02787C24.8473 5.0083 24.9385 4.96589 25.0162 4.90412C25.0987 4.83662 25.0912 4.73537 24.99 4.66037C24.9647 4.63557 24.9336 4.61745 24.8996 4.60763C24.8655 4.59781 24.8296 4.5966 24.795 4.60412C24.7726 4.55774 24.7375 4.5187 24.6937 4.49162C24.6337 4.45654 24.5632 4.44371 24.4946 4.45536C24.4261 4.46702 24.3638 4.50242 24.3187 4.55537C24.18 4.75787 24.1837 4.99412 24.3187 5.08037C24.3888 5.11057 24.4657 5.12162 24.5414 5.11239C24.6172 5.10317 24.6892 5.074 24.75 5.02787Z" fill="white"/>
|
||||
<path d="M24.4163 4.23661C24.4433 4.21338 24.4649 4.1846 24.4797 4.15224C24.4946 4.11988 24.5023 4.08471 24.5023 4.04911C24.5023 4.01351 24.4946 3.97834 24.4797 3.94598C24.4649 3.91362 24.4433 3.88484 24.4163 3.86161C24.3677 3.81864 24.305 3.79492 24.2401 3.79492C24.1751 3.79492 24.1125 3.81864 24.0638 3.86161C24.0177 3.91317 23.9922 3.97993 23.9922 4.04911C23.9922 4.11829 24.0177 4.18505 24.0638 4.23661C24.0853 4.26255 24.1122 4.28344 24.1427 4.29777C24.1731 4.31211 24.2064 4.31954 24.2401 4.31954C24.2737 4.31954 24.307 4.31211 24.3375 4.29777C24.3679 4.28344 24.3948 4.26255 24.4163 4.23661Z" fill="white"/>
|
||||
<path d="M25.035 5.99916C25.0555 6.01322 25.0791 6.0221 25.1038 6.02504C25.1285 6.02798 25.1535 6.0249 25.1767 6.01605C25.1999 6.0072 25.2207 5.99285 25.2371 5.97424C25.2536 5.95562 25.2653 5.93329 25.2713 5.90916C25.3013 5.83416 25.365 5.63541 25.2713 5.59041C25.1775 5.54541 24.9975 5.65791 24.9488 5.72541C24.9 5.79291 24.9225 5.92416 25.035 5.99916Z" fill="white"/>
|
||||
<path d="M23.6513 5.27289C23.5613 5.19789 23.4713 5.27289 23.4151 5.36289C23.3588 5.45289 23.3851 5.60664 23.4863 5.62914C23.5876 5.65164 23.7376 5.70789 23.7901 5.57664C23.8426 5.44539 23.7151 5.32539 23.6513 5.27289Z" fill="white"/>
|
||||
<path d="M23.8537 3.25103C23.7429 3.19336 23.6161 3.17422 23.4932 3.19662C23.3703 3.21903 23.2583 3.28171 23.175 3.37478C23.0287 3.56603 23.115 3.85103 23.3775 4.04228C23.4205 4.07469 23.4696 4.09811 23.5218 4.11116C23.5741 4.1242 23.6284 4.12659 23.6816 4.11819C23.7348 4.1098 23.7857 4.09078 23.8314 4.06227C23.8771 4.03377 23.9166 3.99636 23.9475 3.95228C24.0196 3.84393 24.0499 3.71303 24.0327 3.584C24.0154 3.45497 23.9518 3.33663 23.8537 3.25103Z" fill="white"/>
|
||||
<path d="M18.2813 5.24947C18.2391 5.29848 18.2158 5.36103 18.2158 5.42572C18.2158 5.49042 18.2391 5.55296 18.2813 5.60197C18.4275 5.72947 18.5738 5.65447 18.7163 5.60197C18.7463 5.31322 18.7163 5.20447 18.5588 5.15947C18.509 5.14254 18.4551 5.14215 18.4051 5.15837C18.3551 5.17459 18.3116 5.20655 18.2813 5.24947Z" fill="white"/>
|
||||
<path d="M19.2038 4.9005C19.3838 4.7055 19.4063 4.5555 19.2713 4.4205C19.1993 4.37392 19.1144 4.35137 19.0289 4.35608C18.9433 4.3608 18.8614 4.39255 18.795 4.44675C18.7585 4.52508 18.745 4.61223 18.7563 4.69793C18.7676 4.78363 18.8032 4.86432 18.8588 4.9305C18.8826 4.95286 18.9109 4.96994 18.9417 4.98063C18.9726 4.99132 19.0054 4.99538 19.038 4.99255C19.0705 4.98972 19.1021 4.98006 19.1307 4.9642C19.1592 4.94834 19.1841 4.92664 19.2038 4.9005Z" fill="white"/>
|
||||
<path d="M18.2962 3.75074C18.3793 3.75425 18.4594 3.78256 18.5262 3.83202C18.5931 3.88148 18.6436 3.94982 18.6712 4.02824C18.7219 4.09145 18.7916 4.13657 18.87 4.15685C18.9484 4.17713 19.0313 4.17147 19.1062 4.14074C19.1912 4.06134 19.2434 3.95297 19.2525 3.83699C19.2787 3.8161 19.2993 3.78905 19.3125 3.75824C19.3242 3.72665 19.3284 3.69278 19.3248 3.65928C19.3212 3.62579 19.3098 3.5936 19.2916 3.56524C19.2735 3.53688 19.2489 3.51313 19.22 3.49586C19.1911 3.47859 19.1586 3.46828 19.125 3.46574C19.1086 3.4371 19.083 3.41484 19.0524 3.40259C19.0217 3.39034 18.9878 3.3888 18.9562 3.39824C18.8731 3.41607 18.7871 3.41558 18.7042 3.3968C18.6213 3.37801 18.5435 3.3414 18.4762 3.28949C18.4517 3.27122 18.4234 3.25883 18.3934 3.25329C18.3633 3.24776 18.3324 3.24922 18.303 3.25756C18.2737 3.2659 18.2466 3.2809 18.2239 3.3014C18.2013 3.32189 18.1837 3.34733 18.1725 3.37574C18.1125 3.50699 18.1575 3.71699 18.2962 3.75074Z" fill="white"/>
|
||||
<path d="M20.5762 3.46098C20.6376 3.4854 20.7061 3.4854 20.7675 3.46098C20.895 3.39723 20.955 3.72723 21.1425 3.64848C21.33 3.56973 21.4875 3.74973 21.7012 3.62973C21.915 3.50973 22.0387 3.25473 21.8737 3.11973C21.7164 3.00181 21.5225 2.94336 21.3262 2.95473C21.2842 2.95312 21.2425 2.96352 21.2062 2.98473C21.2447 2.91625 21.2606 2.83743 21.2519 2.75938C21.2431 2.68133 21.2101 2.608 21.1575 2.54973C21.0337 2.46723 20.8275 2.54973 20.7075 2.72598C20.653 2.69904 20.5914 2.68998 20.5315 2.70008C20.4716 2.71018 20.4163 2.73893 20.3737 2.78223C20.3148 2.85195 20.2797 2.93871 20.2736 3.02981C20.2675 3.1209 20.2908 3.21155 20.34 3.28848C20.2672 3.27948 20.1933 3.28769 20.1243 3.31243C20.0552 3.33718 19.993 3.37779 19.9425 3.43098C19.8758 3.52334 19.8444 3.63656 19.854 3.75009C19.8636 3.86361 19.9136 3.96993 19.995 4.04973C20.0686 4.11588 20.1641 4.15247 20.2631 4.15247C20.3621 4.15247 20.4576 4.11588 20.5312 4.04973C20.5848 3.96215 20.6168 3.86312 20.6246 3.76077C20.6324 3.65842 20.6158 3.55568 20.5762 3.46098Z" fill="white"/>
|
||||
<path d="M19.6274 2.97391L19.8899 2.72266C19.8553 2.65289 19.8165 2.58526 19.7737 2.52016C19.7453 2.48482 19.7083 2.45731 19.6663 2.44025C19.6243 2.42319 19.5787 2.41713 19.5337 2.42266C19.534 2.3782 19.5256 2.33412 19.5089 2.29293C19.4922 2.25174 19.4674 2.21427 19.4362 2.18266L19.4024 2.14891C19.4126 2.11859 19.4141 2.08606 19.4068 2.05494C19.3995 2.02381 19.3837 1.99533 19.3612 1.97266L18.6899 2.12641C18.6956 2.13686 18.705 2.14486 18.7162 2.14891C18.9187 2.20891 18.8962 2.38516 18.9299 2.52391C18.9334 2.56593 18.9476 2.60637 18.9711 2.64139C18.9945 2.67642 19.0266 2.70485 19.0642 2.72401C19.1017 2.74317 19.1436 2.75241 19.1857 2.75086C19.2278 2.74931 19.2689 2.73702 19.3049 2.71516L19.3537 2.69266C19.361 2.73301 19.3791 2.77062 19.4062 2.80141C19.472 2.86838 19.5464 2.92638 19.6274 2.97391Z" fill="white"/>
|
||||
<path d="M20.625 6.12387C20.7187 6.12387 20.7562 6.02262 20.7112 5.92137C20.6898 5.8749 20.6592 5.8333 20.6211 5.79912C20.5831 5.76494 20.5384 5.73891 20.49 5.72262C20.4728 5.71816 20.4549 5.71755 20.4375 5.72083C20.4201 5.72411 20.4036 5.7312 20.3893 5.7416C20.375 5.75199 20.3631 5.76543 20.3546 5.78095C20.346 5.79648 20.3411 5.81369 20.34 5.83137C20.34 5.90637 20.3962 5.95512 20.4562 6.01137C20.5162 6.06762 20.5575 6.12012 20.625 6.12387Z" fill="white"/>
|
||||
<g clip-path="url(#clip0_1526_244808)">
|
||||
<path d="M24 46.5C36.4264 46.5 46.5 36.4264 46.5 24C46.5 11.5736 36.4264 1.5 24 1.5C11.5736 1.5 1.5 11.5736 1.5 24C1.5 36.4264 11.5736 46.5 24 46.5Z" fill="#ECF0F6"/>
|
||||
<path d="M43.1887 18.5807C43.2487 18.4795 43.1625 18.4007 43.0687 18.3595C42.975 18.3182 42.8175 18.3595 42.8137 18.4682C42.81 18.577 42.7725 18.7307 42.9075 18.7607C43.0425 18.7907 43.1475 18.652 43.1887 18.5807Z" fill="white"/>
|
||||
<path d="M42.7875 19.0649C42.7901 19.0249 42.784 18.9847 42.7698 18.9472C42.7556 18.9097 42.7335 18.8757 42.705 18.8474C42.6225 18.7837 42.4425 18.8737 42.4313 18.9824C42.4358 19.0454 42.4537 19.1068 42.4838 19.1624C42.645 19.2337 42.78 19.1812 42.7875 19.0649Z" fill="white"/>
|
||||
<path d="M43.56 17.8307C43.6338 17.8652 43.7177 17.8709 43.7954 17.8466C43.8731 17.8223 43.939 17.7698 43.98 17.6995C44.012 17.5906 44.0065 17.474 43.9643 17.3686C43.9222 17.2632 43.8458 17.175 43.7475 17.1182C43.6842 17.1034 43.6179 17.1072 43.5567 17.1292C43.4955 17.1511 43.442 17.1903 43.4025 17.242C43.3446 17.2021 43.2788 17.1751 43.2096 17.1628C43.1404 17.1505 43.0693 17.1532 43.0013 17.1707C42.8986 17.2211 42.8177 17.307 42.7735 17.4126C42.7294 17.5181 42.725 17.636 42.7613 17.7445C42.8041 17.8503 42.8843 17.9366 42.9866 17.9871C43.089 18.0376 43.2063 18.0487 43.3162 18.0182C43.4135 17.9799 43.498 17.9149 43.56 17.8307Z" fill="white"/>
|
||||
<path d="M39.8025 8.0511C39.8166 8.04323 39.8292 8.0331 39.84 8.0211L39.465 7.68359C39.4482 7.71605 39.4395 7.75206 39.4395 7.78859C39.4395 7.82513 39.4482 7.86114 39.465 7.8936C39.4748 7.92747 39.4918 7.95884 39.5147 7.98563C39.5377 8.01241 39.5661 8.03398 39.598 8.04889C39.63 8.06381 39.6647 8.07172 39.7 8.0721C39.7353 8.07248 39.7702 8.06532 39.8025 8.0511Z" fill="white"/>
|
||||
<path d="M42.0375 17.8919C41.9888 18.0006 42.0863 18.1844 42.2851 18.2894C42.3301 18.2669 42.4313 18.2481 42.4763 18.1881C42.5005 18.1596 42.5183 18.1263 42.5287 18.0904C42.5391 18.0545 42.5418 18.0168 42.5367 17.9797C42.5316 17.9427 42.5187 17.9072 42.499 17.8754C42.4792 17.8437 42.453 17.8165 42.422 17.7956C42.391 17.7747 42.3559 17.7605 42.3191 17.754C42.2823 17.7476 42.2446 17.7489 42.2083 17.758C42.172 17.7671 42.1381 17.7837 42.1086 17.8068C42.0792 17.8298 42.055 17.8588 42.0375 17.8919Z" fill="white"/>
|
||||
<path d="M43.0013 16.845C43.0602 16.8571 43.1215 16.8479 43.1744 16.819C43.2272 16.7902 43.2682 16.7436 43.29 16.6875C43.3012 16.6628 43.307 16.6359 43.307 16.6087C43.307 16.5816 43.3012 16.5547 43.29 16.53C43.2027 16.4395 43.1101 16.3543 43.0125 16.275C43.0125 15.9712 42.9112 15.7613 42.7312 15.75C42.6639 15.7566 42.5988 15.7778 42.5405 15.8121C42.4822 15.8464 42.4322 15.8931 42.3938 15.9487C42.3762 15.9502 42.3591 15.9553 42.3436 15.9637C42.3282 15.9721 42.3145 15.9836 42.3037 15.9975C42.2971 16.0109 42.2937 16.0257 42.2937 16.0406C42.2937 16.0556 42.2971 16.0703 42.3037 16.0837C42.2985 16.1123 42.2985 16.1415 42.3037 16.17C42.3037 16.38 42.3863 16.4438 42.8063 16.4888C42.8063 16.65 42.7838 16.815 43.0013 16.845Z" fill="white"/>
|
||||
<path d="M42.3151 14.5659C42.1163 14.6522 42.0488 14.7647 42.1126 14.9072C42.1763 15.0497 42.3713 15.1884 42.5251 15.1134C42.585 15.0533 42.6295 14.9797 42.655 14.8988C42.6804 14.8178 42.686 14.732 42.6713 14.6484C42.6263 14.5209 42.4951 14.4909 42.3151 14.5659Z" fill="white"/>
|
||||
<path d="M41.2462 11.7562C41.2854 11.7674 41.327 11.7674 41.3662 11.7562C41.4152 11.8077 41.4569 11.8657 41.49 11.9287C41.5222 12.0083 41.5807 12.0744 41.6557 12.116C41.7308 12.1577 41.8179 12.1723 41.9025 12.1574C42.0862 12.1274 42.1575 11.9962 42.0487 11.7449C41.9662 11.6662 41.8424 11.5312 41.6999 11.4149C41.7022 11.4063 41.7022 11.3973 41.6999 11.3887C41.7041 11.3487 41.7003 11.3084 41.6887 11.27C41.6772 11.2315 41.6582 11.1957 41.6327 11.1647C41.6072 11.1337 41.5759 11.108 41.5404 11.0892C41.505 11.0703 41.4662 11.0587 41.4262 11.0549C41.235 11.0137 40.9687 11.1374 40.9387 11.2799C40.9246 11.383 40.9478 11.4876 41.0042 11.575C41.0607 11.6624 41.1465 11.7267 41.2462 11.7562Z" fill="white"/>
|
||||
<path d="M42.2888 11.258C42.3515 11.2185 42.399 11.1591 42.4238 11.0893C42.2513 10.8455 42.0788 10.6093 41.8988 10.373C41.8594 10.3788 41.822 10.3943 41.79 10.418C41.7652 10.4354 41.7444 10.4577 41.7287 10.4836C41.7131 10.5095 41.7029 10.5383 41.6991 10.5683C41.6952 10.5983 41.6976 10.6288 41.7062 10.6578C41.7147 10.6868 41.7292 10.7137 41.7488 10.7368C41.7775 10.7679 41.8119 10.7934 41.85 10.8118C41.8303 10.8817 41.837 10.9565 41.8688 11.0218C41.9963 11.2618 42.1163 11.3368 42.2888 11.258Z" fill="white"/>
|
||||
<path d="M43.8975 13.7244C43.8854 13.7922 43.8976 13.8621 43.9319 13.9217C43.9661 13.9814 44.0204 14.0271 44.085 14.0507C44.1156 14.06 44.1482 14.06 44.1788 14.0507L43.9801 13.6757C43.9501 13.657 43.92 13.6719 43.8975 13.7244Z" fill="white"/>
|
||||
<path d="M45.165 16.3498C45.0562 16.0498 44.94 15.7573 44.82 15.4648C44.7715 15.4884 44.7251 15.516 44.6812 15.5473C44.6341 15.5761 44.5947 15.6159 44.5665 15.6634C44.5384 15.7109 44.5222 15.7646 44.5197 15.8197C44.5171 15.8749 44.5281 15.9299 44.5517 15.9798C44.5752 16.0297 44.6107 16.0731 44.655 16.1061C44.8148 16.2072 44.9859 16.289 45.165 16.3498Z" fill="white"/>
|
||||
<path d="M43.8263 15.1155C43.8745 15.1729 43.9314 15.2222 43.995 15.2618C44.0592 15.3029 44.1255 15.3404 44.1938 15.3743C44.4113 15.4905 44.5688 15.4718 44.6851 15.3143C44.7024 15.2874 44.7163 15.2584 44.7263 15.228C44.6438 15.033 44.5538 14.853 44.4638 14.6505C44.3276 14.5372 44.2021 14.4117 44.0888 14.2755C43.965 14.1218 43.7138 14.0318 43.6088 14.1218C43.5714 14.1722 43.5511 14.2333 43.5511 14.2961C43.5511 14.359 43.5714 14.4201 43.6088 14.4705C43.7551 14.5755 43.6876 14.688 43.6988 14.808C43.7193 14.9183 43.7627 15.0231 43.8263 15.1155Z" fill="white"/>
|
||||
<path d="M41.4001 10.3245C41.6588 10.4557 41.7751 10.4595 41.8688 10.3245C41.7638 10.1845 41.6551 10.0457 41.5426 9.9082C41.3813 10.0132 41.3963 10.1745 41.4001 10.3245Z" fill="white"/>
|
||||
<path d="M40.8713 10.0161C40.9102 10.009 40.9468 9.99275 40.9782 9.96861C41.0095 9.94447 41.0345 9.91318 41.0513 9.87736C41.0581 9.827 41.0547 9.77576 41.0412 9.72677C41.0277 9.67778 41.0043 9.63205 40.9725 9.59236C40.83 9.46111 40.7213 9.59236 40.5975 9.68986C40.6163 9.87361 40.6688 10.0199 40.8713 10.0161Z" fill="white"/>
|
||||
<path d="M16.9763 6.80347C17.0227 6.75354 17.0512 6.68961 17.0573 6.62174C17.0634 6.55386 17.0467 6.48588 17.01 6.42847C16.8263 6.23347 16.5938 6.17722 16.4738 6.29722C16.4216 6.37797 16.3958 6.47289 16.3998 6.56892C16.4039 6.66495 16.4376 6.75737 16.4963 6.83347C16.5701 6.8772 16.6553 6.89772 16.7409 6.89237C16.8265 6.88702 16.9085 6.85604 16.9763 6.80347Z" fill="white"/>
|
||||
<path d="M25.185 1.74821C25.065 1.95446 25.11 2.09695 25.3275 2.23195C25.3965 2.28224 25.4816 2.30544 25.5667 2.29715C25.6517 2.28885 25.7307 2.24964 25.7887 2.18695C25.8315 2.07854 25.8378 1.95914 25.8067 1.84681C25.7756 1.73449 25.7087 1.63537 25.6162 1.56445H25.425C25.3251 1.59412 25.2397 1.65954 25.185 1.74821Z" fill="white"/>
|
||||
<path d="M43.2188 20.0481C43.3125 19.9956 43.3763 19.9019 43.305 19.8119C43.2338 19.7219 43.0875 19.5794 43.0088 19.6206C42.93 19.6619 42.9338 19.8269 42.9413 19.9319C42.84 19.8794 42.7313 19.9319 42.6825 20.0631C42.6715 20.0855 42.666 20.1102 42.6667 20.1352C42.6673 20.1601 42.674 20.1845 42.6862 20.2063C42.6984 20.2281 42.7156 20.2466 42.7366 20.2602C42.7575 20.2738 42.7814 20.2821 42.8063 20.2844C42.8813 20.3031 43.0875 20.3369 43.1175 20.2281C43.1218 20.2019 43.1207 20.175 43.1143 20.1492C43.1078 20.1234 43.0962 20.0992 43.08 20.0781C43.1283 20.0839 43.1772 20.0733 43.2188 20.0481Z" fill="white"/>
|
||||
<path d="M23.0175 4.06434C22.9763 4.10559 22.9425 4.29309 22.9912 4.33809C23.04 4.38309 23.2463 4.33809 23.2575 4.29309C23.2688 4.24809 23.3025 4.06059 23.2575 4.03059C23.218 4.01517 23.1751 4.01017 23.1331 4.01608C23.0911 4.02199 23.0513 4.03861 23.0175 4.06434Z" fill="white"/>
|
||||
<path d="M24.2137 1.72157C24.2041 1.68685 24.1889 1.65393 24.1687 1.62407C24.2009 1.59122 24.2253 1.55146 24.24 1.50781H24H23.8462V1.54531C23.8346 1.55199 23.8244 1.56092 23.8162 1.57157C23.7632 1.68585 23.7181 1.80362 23.6812 1.92406C23.3962 2.02531 23.235 2.20532 23.3062 2.37782C23.3592 2.47186 23.441 2.54635 23.5396 2.59025C23.6382 2.63415 23.7484 2.64512 23.8537 2.62156C24.0525 2.56156 24.0787 2.44531 23.9625 2.03656C24.105 1.97281 24.2699 1.93157 24.2137 1.72157Z" fill="white"/>
|
||||
<path d="M26.7188 2.65945C26.8388 2.62945 26.9775 2.6407 27.0488 2.5282C27.12 2.4157 27.3338 2.11195 27.2063 1.90945C27.0788 1.70695 26.9363 1.86445 26.7975 1.84195C26.7384 1.834 26.6783 1.84279 26.6239 1.86731C26.5696 1.89184 26.5232 1.93112 26.49 1.9807C26.3987 1.99468 26.3144 2.03813 26.25 2.10445C26.1953 2.17391 26.1655 2.25976 26.1655 2.3482C26.1655 2.43664 26.1953 2.5225 26.25 2.59195C26.2282 2.59544 26.2058 2.5935 26.1849 2.58631C26.164 2.57911 26.1451 2.56689 26.13 2.5507C26.025 2.45695 25.8038 2.45695 25.6275 2.68195C25.4513 2.90695 25.5675 3.25945 25.7775 3.2707C25.9875 3.28195 26.0438 3.1657 26.1 3.2182C26.1563 3.2707 26.1975 3.4432 26.3363 3.43945C26.475 3.4357 26.6288 3.0457 26.6175 2.97445C26.6063 2.9032 26.5426 2.78695 26.5951 2.71195C26.6395 2.70334 26.6817 2.68545 26.7188 2.65945Z" fill="white"/>
|
||||
<path d="M30.7688 2.6141C30.6905 2.5827 30.6049 2.57413 30.522 2.5894C30.439 2.60466 30.3621 2.64313 30.3001 2.70034C30.2251 2.81284 30.3001 3.07534 30.4613 3.18784C30.4841 3.20643 30.5107 3.21984 30.5391 3.22713C30.5676 3.23442 30.5973 3.23542 30.6262 3.23007C30.6551 3.22472 30.6825 3.21314 30.7065 3.19613C30.7305 3.17913 30.7505 3.1571 30.7651 3.13159C30.9113 2.91409 30.9113 2.70785 30.7688 2.6141Z" fill="white"/>
|
||||
<path d="M27.3413 2.63547C27.2776 2.72547 27.3413 2.85297 27.375 2.93172C27.4088 3.01047 27.5775 2.98422 27.6413 2.89797C27.6614 2.88099 27.677 2.85924 27.6865 2.83471C27.6961 2.81017 27.6993 2.78364 27.6959 2.75753C27.6926 2.73142 27.6827 2.70656 27.6673 2.68524C27.6518 2.66392 27.6313 2.64681 27.6075 2.63547C27.5363 2.59797 27.4013 2.56422 27.3413 2.63547Z" fill="white"/>
|
||||
<path d="M23.2837 5.14865C23.3425 5.19488 23.4152 5.22001 23.49 5.22001C23.5648 5.22001 23.6374 5.19488 23.6962 5.14865C23.752 5.06534 23.7849 4.96877 23.7915 4.86869C23.7981 4.76861 23.7782 4.66856 23.7337 4.57865C23.6481 4.53192 23.5488 4.51647 23.453 4.53494C23.3572 4.55342 23.2708 4.60467 23.2087 4.6799C23.0737 4.8149 23.0999 4.9874 23.2837 5.14865Z" fill="white"/>
|
||||
<path d="M16.5601 4.89742C16.471 4.84069 16.3675 4.81055 16.2619 4.81055C16.1563 4.81055 16.0529 4.84069 15.9638 4.89742C15.9016 4.96633 15.8672 5.05585 15.8672 5.14867C15.8672 5.24149 15.9016 5.33101 15.9638 5.39992C16.0343 5.46607 16.1256 5.50563 16.2221 5.51178C16.3186 5.51794 16.4142 5.49032 16.4925 5.43367C16.5678 5.36828 16.6164 5.2774 16.6288 5.17845C16.6413 5.0795 16.6168 4.97943 16.5601 4.89742Z" fill="white"/>
|
||||
<path d="M30.945 3.41927C30.9745 3.44132 31.0082 3.457 31.0441 3.46534C31.08 3.47367 31.1172 3.47447 31.1534 3.46769C31.1896 3.46091 31.224 3.44668 31.2544 3.42593C31.2848 3.40517 31.3106 3.37833 31.3301 3.3471C31.3496 3.31587 31.3625 3.28094 31.3678 3.24449C31.3731 3.20805 31.3708 3.1709 31.3611 3.13539C31.3513 3.09988 31.3343 3.06679 31.3111 3.03819C31.2879 3.0096 31.259 2.98613 31.2263 2.96928C31.1612 2.93886 31.0873 2.93312 31.0183 2.95313C30.9493 2.97313 30.89 3.01752 30.8513 3.07802C30.8206 3.13617 30.8132 3.2038 30.8307 3.26718C30.8481 3.33056 30.889 3.38494 30.945 3.41927Z" fill="white"/>
|
||||
<path d="M43.9763 16.002C44.0535 15.9628 44.1147 15.898 44.1496 15.8187C44.1844 15.7394 44.1908 15.6505 44.1675 15.567C44.1411 15.5019 44.0932 15.4478 44.0318 15.4137C43.9704 15.3796 43.8992 15.3675 43.83 15.3795C43.5938 15.4583 43.455 15.642 43.5075 15.7958C43.5515 15.8775 43.6215 15.9421 43.7064 15.9795C43.7913 16.0169 43.8863 16.0248 43.9763 16.002Z" fill="white"/>
|
||||
<path d="M22.8338 3.10047C22.8616 3.0633 22.8812 3.02062 22.8912 2.97527C22.9013 2.92993 22.9015 2.88297 22.8919 2.83753C22.8823 2.79209 22.8632 2.74922 22.8357 2.71179C22.8082 2.67436 22.773 2.64322 22.7325 2.62047C22.6871 2.5852 22.6345 2.56023 22.5784 2.54729C22.5223 2.53434 22.4641 2.53374 22.4077 2.54551C22.3514 2.55728 22.2982 2.58114 22.252 2.61545C22.2058 2.64976 22.1676 2.69369 22.1401 2.74422C22.0821 2.82975 22.0577 2.93365 22.0715 3.03604C22.0854 3.13843 22.1365 3.23213 22.215 3.29922C22.2636 3.32905 22.3186 3.34668 22.3754 3.35059C22.4322 3.35451 22.4891 3.3446 22.5413 3.32172C22.5751 3.32925 22.6102 3.32766 22.6432 3.31712C22.6761 3.30658 22.7057 3.28745 22.7288 3.26172C22.7742 3.21548 22.8099 3.16066 22.8338 3.10047Z" fill="white"/>
|
||||
<path d="M22.3013 3.61497C22.2419 3.623 22.1874 3.65197 22.1475 3.69667C22.1077 3.74136 22.0851 3.79883 22.0838 3.85871C22.0735 3.90687 22.0822 3.95714 22.108 3.99905C22.1339 4.04096 22.1749 4.07129 22.2226 4.08372C22.4026 4.13997 22.5001 4.03121 22.5976 3.88871C22.5226 3.74621 22.4963 3.58497 22.3013 3.61497Z" fill="white"/>
|
||||
<path d="M16.9725 3.46919C16.8875 3.39562 16.7781 3.35651 16.6657 3.35954C16.5534 3.36257 16.4462 3.40753 16.3654 3.48558C16.2845 3.56362 16.2358 3.6691 16.2288 3.78127C16.2218 3.89344 16.257 4.00417 16.3275 4.09169C16.3711 4.13697 16.4239 4.17243 16.4822 4.19571C16.5406 4.219 16.6033 4.22957 16.6661 4.22673C16.7289 4.22389 16.7904 4.20771 16.8464 4.17925C16.9025 4.15079 16.9518 4.11072 16.9912 4.06169C17.0611 3.97776 17.0979 3.87108 17.0944 3.76187C17.091 3.65267 17.0476 3.54853 16.9725 3.46919Z" fill="white"/>
|
||||
<path d="M43.7925 18.367C43.7513 18.3895 43.7288 18.517 43.7475 18.5845C43.7502 18.6062 43.7588 18.6267 43.7723 18.6439C43.7858 18.6611 43.8038 18.6743 43.8243 18.682C43.8447 18.6897 43.8669 18.6917 43.8884 18.6877C43.9099 18.6838 43.9299 18.674 43.9462 18.6595C44.0062 18.6107 44.1563 18.4682 44.115 18.3857C44.0738 18.3032 43.8713 18.337 43.7925 18.367Z" fill="white"/>
|
||||
<path d="M35.0213 6.20334C35.0414 6.22074 35.0655 6.233 35.0914 6.23908C35.1174 6.24516 35.1444 6.24487 35.1702 6.23823C35.196 6.2316 35.2197 6.21882 35.2395 6.20099C35.2593 6.18316 35.2745 6.16081 35.2837 6.13584C35.2952 6.05877 35.2952 5.98042 35.2837 5.90334C35.2556 5.88605 35.2243 5.87464 35.1917 5.86981C35.159 5.86498 35.1258 5.86683 35.0939 5.87524C35.062 5.88366 35.0321 5.89847 35.0061 5.91877C34.98 5.93907 34.9584 5.96444 34.9425 5.99334C34.8712 6.09459 34.9463 6.15459 35.0213 6.20334Z" fill="white"/>
|
||||
<path d="M34.8112 4.73554C34.8516 4.73664 34.8917 4.7288 34.9286 4.71259C34.9656 4.69639 34.9985 4.67221 35.025 4.64179C35.0418 4.61203 35.0506 4.57845 35.0506 4.5443C35.0506 4.51014 35.0418 4.47656 35.025 4.4468C34.935 4.31555 34.8075 4.33054 34.6725 4.41304C34.6762 4.54429 34.6462 4.68679 34.8112 4.73554Z" fill="white"/>
|
||||
<path d="M34.0087 8.52344C34.0689 8.52077 34.126 8.49592 34.1689 8.45368C34.2118 8.41144 34.2376 8.3548 34.2412 8.29469C34.2412 8.09594 34.0125 7.96469 33.9337 7.96094C33.8579 7.99239 33.7955 8.0493 33.7571 8.12186C33.7188 8.19443 33.707 8.27809 33.7237 8.35844C33.7427 8.41611 33.7823 8.46479 33.8348 8.49522C33.8874 8.52564 33.9493 8.53568 34.0087 8.52344Z" fill="white"/>
|
||||
<path d="M25.3613 2.42926C25.3436 2.40208 25.3205 2.37876 25.2936 2.36074C25.2666 2.34271 25.2362 2.33035 25.2043 2.32439C25.1724 2.31843 25.1396 2.31901 25.108 2.32608C25.0763 2.33314 25.0464 2.34656 25.02 2.36551C24.9541 2.43081 24.9128 2.51694 24.9033 2.60925C24.8937 2.70155 24.9164 2.79433 24.9675 2.87176C25.0144 2.92374 25.0793 2.9558 25.1491 2.96138C25.2188 2.96696 25.288 2.94562 25.3425 2.90176C25.4052 2.8402 25.4421 2.75703 25.4456 2.66923C25.4491 2.58142 25.4189 2.49559 25.3613 2.42926Z" fill="white"/>
|
||||
<path d="M33.1987 5.24601C33.3086 5.27392 33.4248 5.26073 33.5257 5.20894C33.6265 5.15715 33.7049 5.07032 33.7462 4.96476C33.7568 4.83721 33.726 4.70964 33.6585 4.60091C33.591 4.49218 33.4902 4.40807 33.3712 4.36101C33.2565 4.3514 33.1423 4.38431 33.0504 4.45346C32.9584 4.52262 32.8951 4.62319 32.8725 4.73601C32.8554 4.84617 32.8791 4.95879 32.9392 5.0527C32.9992 5.14661 33.0915 5.21535 33.1987 5.24601Z" fill="white"/>
|
||||
<path d="M33.03 3.56906C32.9976 3.60573 32.9745 3.6496 32.9624 3.69703C32.9504 3.74446 32.9499 3.79407 32.9609 3.84174C32.9719 3.88942 32.9941 3.93378 33.0257 3.97114C33.0573 4.0085 33.0973 4.03778 33.1425 4.05656C33.1996 4.09917 33.2677 4.12462 33.3388 4.12993C33.4098 4.13525 33.4809 4.1202 33.5437 4.08656C33.5889 4.12123 33.6443 4.14001 33.7013 4.14001C33.7582 4.14001 33.8136 4.12123 33.8588 4.08656C33.8963 4.05656 33.945 3.99281 33.9375 3.95156C33.926 3.89566 33.911 3.84055 33.8925 3.78656C33.6525 3.66656 33.4088 3.55781 33.1425 3.44531C33.0962 3.47757 33.0577 3.51986 33.03 3.56906Z" fill="white"/>
|
||||
<path d="M35.6625 6.75382C35.7051 6.76362 35.7494 6.76423 35.7923 6.75558C35.8351 6.74694 35.8756 6.72925 35.9111 6.70369C35.9466 6.67814 35.9763 6.64531 35.9981 6.60739C36.0199 6.56948 36.0333 6.52735 36.0375 6.48382C36.0423 6.45718 36.0418 6.42986 36.0359 6.40345C36.03 6.37704 36.0188 6.35208 36.0031 6.33006C35.9873 6.30803 35.9673 6.28938 35.9443 6.27522C35.9212 6.26105 35.8955 6.25165 35.8688 6.24757C35.8122 6.22609 35.75 6.22481 35.6926 6.24394C35.6352 6.26307 35.5861 6.30145 35.5538 6.35257C35.5344 6.38601 35.5218 6.42296 35.5168 6.46129C35.5117 6.49962 35.5144 6.53856 35.5245 6.57587C35.5346 6.61319 35.552 6.64813 35.5757 6.67867C35.5994 6.70921 35.6289 6.73475 35.6625 6.75382Z" fill="white"/>
|
||||
<path d="M34.2112 4.20023C34.2605 4.23336 34.3206 4.24638 34.3792 4.23662C34.4377 4.22686 34.4903 4.19505 34.5262 4.14773C34.5274 4.13903 34.5274 4.13019 34.5262 4.12148C34.38 4.04273 34.23 3.97148 34.0837 3.89648C34.0648 3.95398 34.0673 4.01636 34.0907 4.07217C34.1142 4.12797 34.1569 4.17345 34.2112 4.20023Z" fill="white"/>
|
||||
<path d="M38.6213 7.28545C38.6015 7.32504 38.5912 7.36869 38.5912 7.41295C38.5912 7.45721 38.6015 7.50087 38.6213 7.54046C38.6257 7.56432 38.6358 7.58675 38.6508 7.60584C38.6658 7.62493 38.6852 7.6401 38.7073 7.65006C38.7294 7.66001 38.7536 7.66446 38.7778 7.663C38.802 7.66155 38.8255 7.65424 38.8463 7.6417C38.9438 7.5892 39.03 7.51796 38.985 7.38671C38.94 7.25546 38.6738 7.22545 38.6213 7.28545Z" fill="white"/>
|
||||
<path d="M38.6962 8.94025C38.7661 8.94074 38.8347 8.92168 38.8944 8.88524C38.954 8.8488 39.0023 8.79641 39.0337 8.734C39.0326 8.66481 39.0099 8.59769 38.9689 8.54192C38.928 8.48616 38.8707 8.44451 38.805 8.42275C38.7705 8.41454 38.7347 8.41383 38.7 8.42065C38.6652 8.42747 38.6323 8.44167 38.6036 8.46228C38.5748 8.4829 38.5507 8.50946 38.5331 8.54016C38.5154 8.57086 38.5046 8.60499 38.5012 8.64025C38.4946 8.70501 38.5103 8.77009 38.5458 8.82467C38.5813 8.87925 38.6343 8.92003 38.6962 8.94025Z" fill="white"/>
|
||||
<path d="M39.1725 7.54414C39.2208 7.54856 39.2695 7.54216 39.315 7.52539C39.1838 7.40164 39.0488 7.27789 38.9138 7.15039C38.9168 7.23342 38.9424 7.31405 38.9881 7.38348C39.0337 7.45292 39.0975 7.50849 39.1725 7.54414Z" fill="white"/>
|
||||
<path d="M25.1925 3.75386C25.2019 3.74146 25.2071 3.72631 25.2071 3.71074C25.2071 3.69516 25.2019 3.68001 25.1925 3.66761C25.1858 3.66034 25.1778 3.65453 25.1687 3.65056C25.1597 3.64658 25.1499 3.64453 25.1401 3.64453C25.1302 3.64453 25.1204 3.64658 25.1114 3.65056C25.1023 3.65453 25.0942 3.66034 25.0876 3.66761C25.0576 3.70136 25.0876 3.75011 25.0876 3.76511C25.0876 3.78011 25.1775 3.76886 25.1925 3.75386Z" fill="white"/>
|
||||
<path d="M36.6075 5.36227C36.2813 5.14102 35.9513 4.93102 35.6138 4.72852L35.67 4.80351C35.6041 4.90094 35.5688 5.01588 35.5688 5.13352C35.5688 5.25115 35.6041 5.36609 35.67 5.46351C35.7336 5.52233 35.8087 5.56716 35.8907 5.59509C35.9727 5.62301 36.0596 5.63342 36.1459 5.62565C36.2321 5.61787 36.3158 5.59208 36.3914 5.54994C36.4671 5.5078 36.533 5.45025 36.585 5.38101L36.6075 5.36227Z" fill="white"/>
|
||||
<path d="M36.2062 8.53803C36.2538 8.54108 36.3014 8.53447 36.3463 8.51859C36.3912 8.50272 36.4324 8.47791 36.4674 8.44567C36.5025 8.41343 36.5306 8.37442 36.5502 8.331C36.5698 8.28758 36.5803 8.24064 36.5812 8.19303C36.6037 8.02053 36.4837 7.90803 36.2512 7.87428C36.0187 7.84053 35.9137 7.93053 35.9025 8.07303C35.9145 8.16852 35.9481 8.26001 36.0007 8.34058C36.0533 8.42115 36.1236 8.48867 36.2062 8.53803Z" fill="white"/>
|
||||
<path d="M34.4625 5.37093C34.4759 5.29527 34.4759 5.21785 34.4625 5.14218C34.4348 5.1242 34.4037 5.11213 34.3711 5.10674C34.3385 5.10134 34.3051 5.10274 34.2731 5.11083C34.241 5.11893 34.211 5.13355 34.1849 5.15379C34.1588 5.17403 34.1371 5.19944 34.1213 5.22844C34.0688 5.33344 34.1213 5.38969 34.2038 5.43844C34.2863 5.48719 34.4325 5.48343 34.4625 5.37093Z" fill="white"/>
|
||||
<path d="M24.7237 3.7272C24.7798 3.76022 24.8462 3.77121 24.91 3.75805C24.9737 3.74488 25.0303 3.70849 25.0687 3.65595C25.0967 3.60225 25.1034 3.53994 25.0874 3.48152C25.0714 3.42309 25.0339 3.37289 24.9825 3.34096C24.9595 3.32167 24.9326 3.30745 24.9038 3.29921C24.8749 3.29098 24.8446 3.28892 24.8149 3.29316C24.7852 3.29741 24.7567 3.30786 24.7313 3.32385C24.7059 3.33984 24.6842 3.361 24.6675 3.38595C24.6476 3.41163 24.6333 3.44112 24.6254 3.47258C24.6174 3.50404 24.616 3.53681 24.6213 3.56882C24.6266 3.60084 24.6384 3.63142 24.656 3.65867C24.6737 3.68592 24.6967 3.70925 24.7237 3.7272Z" fill="white"/>
|
||||
<path d="M44.4338 20.6334C44.5038 20.6754 44.5857 20.6934 44.6669 20.6846C44.7482 20.6758 44.8243 20.6407 44.8837 20.5847C45.0187 20.3597 44.835 20.1572 44.7338 20.0559C44.6325 19.9547 44.3588 20.1197 44.2988 20.3372C44.2799 20.3945 44.2833 20.4568 44.3083 20.5117C44.3334 20.5666 44.3781 20.6101 44.4338 20.6334Z" fill="white"/>
|
||||
<path d="M45.5588 19.2824C45.6161 19.2409 45.6564 19.1801 45.6723 19.1111C45.6881 19.0422 45.6784 18.9698 45.645 18.9074C45.5556 18.8723 45.4597 18.8569 45.3638 18.8624C45.2288 18.8887 45.1801 19.0762 45.2513 19.2149C45.2669 19.2397 45.2873 19.2611 45.3113 19.2779C45.3352 19.2947 45.3623 19.3066 45.3909 19.3129C45.4195 19.3192 45.4491 19.3197 45.4779 19.3145C45.5067 19.3093 45.5342 19.2984 45.5588 19.2824Z" fill="white"/>
|
||||
<path d="M44.94 16.8828C44.8425 17.0553 44.9851 17.3478 45.2288 17.4641C45.2755 17.489 45.3277 17.5021 45.3807 17.5021C45.4337 17.5021 45.4858 17.489 45.5326 17.4641C45.4538 17.2053 45.3676 16.9503 45.2813 16.6953C45.2133 16.6957 45.1465 16.7131 45.0869 16.7458C45.0274 16.7786 44.9768 16.8256 44.94 16.8828Z" fill="white"/>
|
||||
<path d="M43.6838 19.7259C43.7686 19.7414 43.8563 19.7294 43.9338 19.6917C44.0114 19.6539 44.0749 19.5923 44.115 19.5159C44.1337 19.4535 44.1326 19.3867 44.1118 19.325C44.0909 19.2632 44.0514 19.2093 43.9987 19.1709C43.7775 19.0659 43.545 19.1034 43.4812 19.2534C43.4616 19.3435 43.4706 19.4374 43.5069 19.5221C43.5432 19.6068 43.605 19.6781 43.6838 19.7259Z" fill="white"/>
|
||||
<path d="M44.4375 16.7512C44.5012 16.7512 44.5612 16.635 44.5762 16.5637C44.5779 16.529 44.5705 16.4945 44.5547 16.4636C44.5389 16.4327 44.5153 16.4064 44.4862 16.3875C44.3437 16.32 44.2425 16.3875 44.1675 16.5412C44.2237 16.6575 44.2762 16.815 44.4375 16.7512Z" fill="white"/>
|
||||
<path d="M44.085 21.0865C44.1458 21.0629 44.1958 21.0177 44.2255 20.9597C44.2553 20.9016 44.2626 20.8347 44.2463 20.7715C44.2193 20.719 44.1754 20.677 44.1216 20.6525C44.0679 20.628 44.0074 20.6224 43.95 20.6365C43.8923 20.6663 43.8454 20.7134 43.8158 20.7713C43.7862 20.8291 43.7754 20.8948 43.785 20.959C43.8098 21.0141 43.8544 21.0579 43.91 21.0815C43.9657 21.1051 44.0281 21.1069 44.085 21.0865Z" fill="white"/>
|
||||
<path d="M45.2176 18.4912C45.2589 18.3734 45.2596 18.2451 45.2195 18.1268C45.1794 18.0085 45.1008 17.9071 44.9963 17.8387C44.9764 17.8279 44.9548 17.8203 44.9326 17.8162C44.9006 17.7647 44.8509 17.7268 44.7929 17.7095C44.7348 17.6922 44.6724 17.6968 44.6176 17.7225C44.5447 17.759 44.4835 17.8153 44.4411 17.8849C44.3987 17.9545 44.3766 18.0347 44.3776 18.1162V18.135C44.3521 18.1822 44.3363 18.2339 44.331 18.2873C44.3257 18.3407 44.331 18.3946 44.3467 18.4459C44.3624 18.4971 44.3882 18.5448 44.4224 18.5861C44.4567 18.6273 44.4988 18.6614 44.5463 18.6862C44.6632 18.7386 44.7948 18.7477 44.9178 18.712C45.0407 18.6763 45.147 18.598 45.2176 18.4912Z" fill="white"/>
|
||||
<path d="M24.21 2.64795C24.2364 2.66728 24.2665 2.68091 24.2984 2.688C24.3303 2.69508 24.3634 2.69546 24.3955 2.68912C24.4275 2.68277 24.4579 2.66984 24.4847 2.65114C24.5116 2.63243 24.5342 2.60836 24.5512 2.58045C24.5659 2.55435 24.5751 2.5255 24.5781 2.49571C24.5811 2.46591 24.578 2.43581 24.5688 2.4073C24.5597 2.37878 24.5447 2.35246 24.5249 2.32999C24.5051 2.30752 24.4809 2.28938 24.4537 2.2767C24.3957 2.24659 24.3284 2.23992 24.2656 2.25807C24.2027 2.27621 24.1493 2.31779 24.1162 2.37421C24.1024 2.39792 24.0939 2.42433 24.0911 2.45165C24.0884 2.47897 24.0916 2.50655 24.1005 2.53252C24.1094 2.55849 24.1238 2.58224 24.1427 2.60216C24.1616 2.62208 24.1845 2.6377 24.21 2.64795Z" fill="white"/>
|
||||
<path d="M45.9525 19.0647C45.9263 18.9559 45.9037 18.8472 45.8775 18.7422C45.8462 18.7953 45.8365 18.8584 45.8505 18.9184C45.8644 18.9785 45.901 19.0308 45.9525 19.0647Z" fill="white"/>
|
||||
<path d="M20.6212 1.76953L20.2875 1.82953C20.4023 1.85011 20.5207 1.82883 20.6212 1.76953Z" fill="white"/>
|
||||
<path d="M25.14 1.61672C25.1633 1.59176 25.1834 1.56405 25.2 1.53422C24.9562 1.53422 24.7125 1.53422 24.45 1.51172C24.4619 1.54549 24.4811 1.57621 24.5062 1.60172C24.5912 1.68233 24.7031 1.7285 24.8202 1.73127C24.9373 1.73404 25.0513 1.69322 25.14 1.61672Z" fill="white"/>
|
||||
<path d="M20.3287 2.29115C20.362 2.23537 20.375 2.16978 20.3654 2.10552C20.3558 2.04126 20.3243 1.9823 20.2762 1.93865C20.1787 1.8749 19.9349 1.9049 19.9012 1.9874C19.8719 2.05708 19.8663 2.13446 19.8853 2.20763C19.9043 2.2808 19.9468 2.34571 20.0062 2.39239C20.0629 2.41865 20.1274 2.42283 20.187 2.40411C20.2467 2.38539 20.2972 2.34511 20.3287 2.29115Z" fill="white"/>
|
||||
<path d="M46.4625 22.7441C46.4453 22.8169 46.4453 22.8926 46.4625 22.9654V22.7441Z" fill="white"/>
|
||||
<path d="M29.8425 6.62709C29.9063 6.52694 29.9615 6.42157 30.0075 6.31209C30.0299 6.2111 30.0198 6.1056 29.9787 6.01066C29.9377 5.91571 29.8677 5.83616 29.7787 5.78334C29.7389 5.75338 29.6891 5.73979 29.6396 5.74537C29.5901 5.75095 29.5446 5.77527 29.5125 5.81334C29.3234 6.02215 29.203 6.28393 29.1675 6.56334C29.1676 6.60717 29.1765 6.65053 29.1937 6.69084C29.2066 6.73662 29.2301 6.77874 29.2623 6.81379C29.2944 6.84884 29.3344 6.87584 29.3789 6.89263C29.4234 6.90941 29.4712 6.9155 29.5185 6.91042C29.5658 6.90533 29.6113 6.88921 29.6512 6.86334C29.675 6.86146 29.6983 6.85485 29.7195 6.84391C29.7407 6.83296 29.7596 6.8179 29.775 6.79959C29.7971 6.77674 29.8144 6.74972 29.826 6.72011C29.8376 6.6905 29.8432 6.65888 29.8425 6.62709Z" fill="white"/>
|
||||
<path d="M29.6212 8.33994C29.7299 8.24244 29.6212 7.92369 29.5162 7.91244C29.4112 7.90119 29.2124 8.18244 29.3024 8.28744C29.3405 8.33291 29.3935 8.36323 29.452 8.37286C29.5105 8.3825 29.5706 8.37081 29.6212 8.33994Z" fill="white"/>
|
||||
<path d="M29.7188 9.70889C29.7304 9.67228 29.733 9.63342 29.7265 9.59557C29.72 9.55773 29.7045 9.522 29.6813 9.49139C29.6645 9.47367 29.6437 9.46019 29.6207 9.45209C29.5976 9.44398 29.573 9.44147 29.5489 9.44477C29.5247 9.44807 29.5016 9.45708 29.4816 9.47106C29.4616 9.48503 29.4452 9.50357 29.4338 9.52514C29.4 9.58514 29.3438 9.75764 29.4713 9.83264C29.5988 9.90764 29.6925 9.76139 29.7188 9.70889Z" fill="white"/>
|
||||
<path d="M29.4863 7.20777C29.4638 7.14027 29.3325 7.14777 29.2988 7.17027C29.2731 7.18533 29.2524 7.20752 29.239 7.23415C29.2257 7.26077 29.2204 7.29069 29.2238 7.32027C29.2238 7.37652 29.34 7.38777 29.385 7.37652C29.4168 7.36165 29.4433 7.33765 29.4614 7.30759C29.4794 7.27754 29.4881 7.24278 29.4863 7.20777Z" fill="white"/>
|
||||
<path d="M32.9738 12.2094C32.9738 12.2356 33.0225 12.3219 33.045 12.3181C33.073 12.3158 33.1002 12.3076 33.1247 12.294C33.1493 12.2804 33.1707 12.2618 33.1875 12.2394C33.1999 12.2055 33.1985 12.1682 33.1838 12.1353C33.1691 12.1024 33.1422 12.0765 33.1088 12.0631C32.9963 12.0331 32.9963 12.1606 32.9738 12.2094Z" fill="white"/>
|
||||
<path d="M34.0163 9.73046C34.0388 9.55421 33.9713 9.44921 33.8175 9.42296C33.5963 9.38921 33.3488 9.53171 33.3338 9.70046C33.3188 9.86921 33.4913 10.023 33.6676 10.0417C33.7544 10.044 33.8388 10.013 33.9036 9.95518C33.9684 9.89734 34.0087 9.81698 34.0163 9.73046Z" fill="white"/>
|
||||
<path d="M31.4962 3.07161C31.496 3.08707 31.5006 3.1022 31.5093 3.11495C31.518 3.12771 31.5305 3.13745 31.545 3.14286C31.5546 3.14444 31.5645 3.14403 31.574 3.14163C31.5835 3.13924 31.5923 3.13491 31.6001 3.12893C31.6078 3.12295 31.6142 3.11544 31.6189 3.10687C31.6237 3.0983 31.6266 3.08885 31.6275 3.07911C31.6275 3.03411 31.5825 3.00786 31.56 3.00411C31.5375 3.00036 31.4962 3.04911 31.4962 3.07161Z" fill="white"/>
|
||||
<path d="M22.5338 6.69009C22.5028 6.70881 22.4804 6.7389 22.4713 6.77392C22.4622 6.80895 22.4671 6.84615 22.485 6.87759C22.545 6.96009 22.6388 6.87759 22.6838 6.84759C22.7288 6.81759 22.71 6.72759 22.6838 6.71634C22.6391 6.68841 22.5853 6.67899 22.5338 6.69009Z" fill="white"/>
|
||||
<path d="M22.9537 4.81519C23.003 4.74468 23.0242 4.65828 23.0131 4.57294C23.002 4.4876 22.9595 4.40949 22.8937 4.35395C22.79 4.30722 22.6737 4.29623 22.5631 4.3227C22.4525 4.34916 22.3538 4.41159 22.2825 4.50019C22.2572 4.57638 22.2571 4.65865 22.282 4.73493C22.307 4.81121 22.3558 4.87746 22.4212 4.92394C22.4629 4.95302 22.5101 4.97333 22.5599 4.98362C22.6096 4.9939 22.661 4.99397 22.7108 4.98379C22.7606 4.97362 22.8078 4.95343 22.8496 4.92445C22.8913 4.89547 22.9268 4.85829 22.9537 4.81519Z" fill="white"/>
|
||||
<path d="M22.1213 5.63238C22.0767 5.58893 22.0234 5.5553 21.965 5.53366C21.9066 5.51202 21.8443 5.50284 21.7821 5.50673C21.72 5.51061 21.6593 5.52747 21.6041 5.55622C21.5488 5.58496 21.5002 5.62496 21.4613 5.67363C21.4186 5.70998 21.3839 5.75481 21.3594 5.80528C21.3349 5.85575 21.3211 5.91076 21.319 5.96682C21.3169 6.02287 21.3265 6.07875 21.3471 6.13092C21.3677 6.18309 21.3989 6.23041 21.4388 6.26988C21.5293 6.35552 21.6482 6.40478 21.7727 6.40824C21.8972 6.4117 22.0187 6.36911 22.1138 6.28863C22.1881 6.19579 22.2293 6.08074 22.2306 5.9618C22.232 5.84286 22.1935 5.72689 22.1213 5.63238Z" fill="white"/>
|
||||
<path d="M27.5925 5.47564C27.4275 5.15689 27.1351 5.38564 27.1088 5.14939C27.0826 4.91314 27.3075 4.99189 27.2438 4.66189C27.18 4.33189 26.8688 4.19315 26.6925 4.3544C26.5163 4.51565 26.5838 4.7294 26.535 4.7294C26.4863 4.7294 26.2388 4.80064 26.2725 4.98439C26.2275 4.96189 26.175 4.95064 26.1488 4.98439C26.1225 5.01814 26.1488 5.15314 26.1713 5.18314C26.196 5.20058 26.2255 5.20994 26.2557 5.20994C26.2859 5.20994 26.3154 5.20058 26.34 5.18314C26.3408 5.17316 26.3408 5.16313 26.34 5.15314C26.4675 5.30314 26.6775 5.2244 26.715 5.31065C26.7525 5.3969 26.745 5.66314 26.82 5.82814C26.925 6.06064 27.1463 6.20314 27.3788 6.07564C27.434 6.05243 27.4839 6.01795 27.525 5.97442C27.5662 5.93088 27.5979 5.87924 27.618 5.82278C27.6381 5.76633 27.6462 5.7063 27.6418 5.64653C27.6374 5.58676 27.6207 5.52856 27.5925 5.47564Z" fill="white"/>
|
||||
<path d="M27.0638 8.00997C27.0338 8.05872 27.0038 8.15997 27.0638 8.21247C27.0955 8.23028 27.1324 8.23629 27.1681 8.22942C27.2038 8.22256 27.236 8.20327 27.2588 8.17497C27.2963 8.13372 27.36 8.00247 27.2588 7.92747C27.1575 7.85247 27.0901 7.96497 27.0638 8.00997Z" fill="white"/>
|
||||
<path d="M25.8713 4.33522C25.9763 4.20022 25.9913 3.96022 25.8713 3.88522C25.6688 3.71647 25.4401 3.88522 25.3276 3.95272C25.2151 4.02022 25.3275 4.32772 25.5413 4.42897C25.5978 4.459 25.6637 4.46602 25.7252 4.44854C25.7867 4.43106 25.8391 4.39045 25.8713 4.33522Z" fill="white"/>
|
||||
<path d="M25.53 7.06586C25.53 7.10336 25.53 7.13711 25.5488 7.15586C25.5675 7.17461 25.6163 7.15586 25.62 7.15586C25.6238 7.15586 25.6463 7.07711 25.62 7.05461C25.5938 7.03211 25.5638 7.06586 25.53 7.06586Z" fill="white"/>
|
||||
<path d="M33.42 6.16951C33.4314 6.15157 33.4414 6.13276 33.45 6.11326C33.54 6.09451 33.69 6.05325 33.6975 5.9745C33.705 5.89575 33.4987 5.79826 33.4275 5.79076C33.4139 5.78822 33.3999 5.78822 33.3862 5.79076C33.3056 5.7528 33.2164 5.73663 33.1276 5.74387C33.0388 5.75111 32.9534 5.7815 32.88 5.83201C32.8532 5.87063 32.835 5.91444 32.8264 5.9606C32.8177 6.00676 32.819 6.05422 32.8299 6.09987C32.8409 6.14553 32.8614 6.18836 32.89 6.22556C32.9187 6.26276 32.9549 6.2935 32.9962 6.31576C33.1125 6.41326 33.2925 6.34951 33.42 6.16951Z" fill="white"/>
|
||||
<path d="M43.1662 31.894C43.1962 31.8303 43.1025 31.7553 43.0612 31.7328C43.0378 31.7248 43.0124 31.7245 42.9888 31.7319C42.9652 31.7393 42.9446 31.7541 42.93 31.774C42.9075 31.819 42.96 31.894 42.9975 31.924C43.035 31.954 43.1212 31.954 43.1662 31.894Z" fill="white"/>
|
||||
<path d="M43.56 24.7161C43.5975 24.6111 43.59 24.5098 43.4963 24.4573C43.2636 24.3013 42.9888 24.2201 42.7088 24.2248C42.6657 24.2321 42.6239 24.2461 42.585 24.2661C42.5307 24.2908 42.4847 24.3307 42.4525 24.3809C42.4202 24.4311 42.4031 24.4895 42.4031 24.5492C42.4031 24.6088 42.4202 24.6673 42.4525 24.7175C42.4847 24.7676 42.5307 24.8075 42.585 24.8323C42.7363 24.9178 42.8993 24.981 43.0688 25.0198C43.1722 25.0275 43.2755 25.0023 43.3637 24.9477C43.452 24.8932 43.5207 24.8121 43.56 24.7161Z" fill="white"/>
|
||||
<path d="M43.2037 29.8991C43.2337 29.8466 43.2037 29.7679 43.1474 29.7454C43.0912 29.7229 42.975 29.7116 42.9487 29.7641C42.9225 29.8166 43.0012 29.9254 43.0425 29.9441C43.0707 29.9546 43.1014 29.9559 43.1304 29.9478C43.1594 29.9397 43.185 29.9227 43.2037 29.8991Z" fill="white"/>
|
||||
<path d="M45.27 26.4832C45.3327 26.422 45.3788 26.3457 45.4037 26.2617C45.4287 26.1777 45.4317 26.0887 45.4125 26.0032C45.3965 25.9178 45.3556 25.8391 45.2948 25.777C45.2341 25.7149 45.1563 25.6723 45.0712 25.6544H45.0262C45.1257 25.615 45.2072 25.5402 45.255 25.4444C45.315 25.3019 45.2213 25.1407 45.0188 25.0507C44.947 25.0149 44.8651 25.0047 44.7867 25.0217C44.7082 25.0388 44.638 25.0821 44.5875 25.1444C44.5547 25.2364 44.5518 25.3364 44.5795 25.4301C44.6071 25.5238 44.6637 25.6063 44.7412 25.6657H44.8088C44.7471 25.7005 44.6944 25.7493 44.655 25.8082C44.5579 25.9649 44.5169 26.1501 44.5388 26.3332C44.5431 26.4012 44.5275 26.469 44.4938 26.5282C44.4588 26.5677 44.4343 26.6153 44.4222 26.6666C44.4102 26.718 44.4111 26.7715 44.4248 26.8224C44.4386 26.8733 44.4648 26.92 44.501 26.9583C44.5372 26.9967 44.5824 27.0254 44.6325 27.0419C44.6083 27.0623 44.589 27.0879 44.5763 27.1169C44.5666 27.182 44.5801 27.2484 44.6143 27.3046C44.6486 27.3608 44.7015 27.4032 44.7638 27.4244C44.8293 27.4568 44.9047 27.4628 44.9745 27.4412C45.0443 27.4195 45.1031 27.3719 45.1388 27.3082C45.1506 27.2777 45.156 27.2452 45.1548 27.2125C45.1536 27.1799 45.1457 27.1479 45.1316 27.1184C45.1176 27.0889 45.0977 27.0626 45.0731 27.041C45.0486 27.0195 45.0198 27.0032 44.9888 26.9932C45.0432 26.9313 45.0807 26.8564 45.0975 26.7757C45.1056 26.718 45.125 26.6624 45.1546 26.6122C45.1842 26.562 45.2234 26.5182 45.27 26.4832Z" fill="white"/>
|
||||
<path d="M46.3912 25.4053C46.3308 25.3809 46.2634 25.3805 46.2027 25.4042C46.1421 25.4279 46.0928 25.4739 46.0649 25.5328C46.0391 25.5982 46.0391 25.671 46.0648 25.7364C46.0906 25.8019 46.1402 25.8551 46.2037 25.8853C46.2722 25.9135 46.349 25.9135 46.4175 25.8853L46.4512 25.4503C46.4342 25.4317 46.4138 25.4165 46.3912 25.4053Z" fill="white"/>
|
||||
<path d="M45.7462 28.8794C45.7205 28.9334 45.7162 28.9953 45.7343 29.0524C45.7524 29.1094 45.7915 29.1575 45.8437 29.1869H45.8775C45.915 29.0256 45.9525 28.8644 45.9862 28.7031C45.9332 28.7052 45.882 28.7232 45.8393 28.7546C45.7965 28.786 45.7641 28.8294 45.7462 28.8794Z" fill="white"/>
|
||||
<path d="M43.0762 27.5747C43.0387 27.436 42.9262 27.4135 42.6562 27.4585C42.6262 27.5972 42.54 27.7472 42.7125 27.8522C42.7619 27.888 42.8234 27.903 42.8837 27.8939C42.944 27.8848 42.9984 27.8523 43.035 27.8035C43.0567 27.77 43.0716 27.7325 43.0787 27.6932C43.0857 27.654 43.0849 27.6137 43.0762 27.5747Z" fill="white"/>
|
||||
<path d="M39.0562 10.323C39.1105 10.3297 39.1656 10.3252 39.2181 10.3097C39.2706 10.2942 39.3193 10.268 39.3612 10.2328C39.4031 10.1976 39.4372 10.1542 39.4615 10.1052C39.4859 10.0561 39.4998 10.0026 39.5025 9.94797C39.5159 9.87231 39.5159 9.79487 39.5025 9.71922C39.6086 9.74381 39.7196 9.73598 39.8212 9.69672C39.8696 9.66815 39.9084 9.62572 39.9324 9.57492C39.9565 9.52412 39.9648 9.46727 39.9562 9.41172C40.0684 9.4102 40.1771 9.37305 40.2668 9.30564C40.3564 9.23822 40.4224 9.14404 40.455 9.03672C40.4778 8.92358 40.4562 8.80601 40.3948 8.70831C40.3334 8.6106 40.2368 8.54022 40.125 8.51172C39.9948 8.52088 39.8697 8.56559 39.7633 8.64097C39.6568 8.71636 39.5731 8.81952 39.5212 8.93922C39.5119 9.00858 39.5237 9.07913 39.555 9.14172H39.5325C39.4753 9.17634 39.4261 9.22262 39.3879 9.27754C39.3498 9.33246 39.3237 9.39479 39.3112 9.46047C39.2464 9.4274 39.1768 9.40463 39.105 9.39297C38.9794 9.38143 38.8542 9.41981 38.7567 9.49981C38.6591 9.57982 38.597 9.69501 38.5837 9.82047C38.5575 10.0267 38.8012 10.2817 39.0562 10.323Z" fill="white"/>
|
||||
<path d="M36.6375 10.9462C37.0125 11.0212 37.0125 10.9949 37.0125 10.6762C36.855 10.5637 36.7275 10.6087 36.615 10.7587C36.195 10.5749 35.9962 10.7587 36.045 11.2349C36.0205 11.255 35.9942 11.2726 35.9663 11.2874C35.8388 11.3399 35.8237 11.4374 35.8387 11.5574C35.8537 11.6774 35.925 11.7149 36.0262 11.7524C36.2775 11.8349 36.4012 11.7824 36.4575 11.5237C36.5212 11.3287 36.5812 11.1374 36.6375 10.9462Z" fill="white"/>
|
||||
<path d="M36.0375 9.20178C36.0471 9.15192 36.0466 9.10061 36.0358 9.05097C36.025 9.00134 36.0043 8.9544 35.9748 8.91302C35.9454 8.87164 35.9078 8.83668 35.8644 8.81025C35.8211 8.78383 35.7728 8.76649 35.7225 8.75929C35.5964 8.74954 35.4714 8.78839 35.3731 8.86789C35.2748 8.94738 35.2106 9.06148 35.1937 9.18679C35.1998 9.2929 35.2394 9.39436 35.3068 9.47656C35.3742 9.55877 35.4659 9.61749 35.5687 9.64429C35.8125 9.68929 35.9962 9.49053 36.0375 9.20178Z" fill="white"/>
|
||||
<path d="M38.6738 12.1378C38.6363 12.0553 38.4826 12.0366 38.3551 12.0928C38.3341 12.0981 38.3147 12.1084 38.2985 12.1228C38.2824 12.1372 38.2699 12.1553 38.2621 12.1755C38.2544 12.1957 38.2517 12.2175 38.2542 12.239C38.2566 12.2605 38.2642 12.2811 38.2763 12.2991C38.325 12.4003 38.4038 12.4753 38.5313 12.4303C38.5841 12.4042 38.6266 12.3613 38.6524 12.3084C38.6782 12.2554 38.6857 12.1955 38.6738 12.1378Z" fill="white"/>
|
||||
<path d="M38.4787 11.0882C38.4219 11.0756 38.3631 11.0748 38.306 11.0859C38.2489 11.0971 38.1946 11.1198 38.1467 11.1528C38.0988 11.1858 38.0582 11.2283 38.0274 11.2777C37.9966 11.3271 37.9763 11.3823 37.9678 11.4398C37.9593 11.4974 37.9627 11.5561 37.9779 11.6123C37.9931 11.6684 38.0196 11.7209 38.0559 11.7664C38.0923 11.8118 38.1375 11.8493 38.189 11.8765C38.2404 11.9037 38.2969 11.92 38.355 11.9244C38.565 11.9507 38.7712 11.7369 38.8012 11.4594C38.807 11.4134 38.803 11.3666 38.7896 11.3222C38.7761 11.2778 38.7533 11.2367 38.7229 11.2017C38.6925 11.1667 38.655 11.1385 38.6129 11.1189C38.5708 11.0993 38.5251 11.0888 38.4787 11.0882Z" fill="white"/>
|
||||
<path d="M21.4125 7.47084C21.3488 7.53084 21.3863 7.68459 21.4838 7.78209C21.4962 7.79988 21.5128 7.81441 21.532 7.82444C21.5513 7.83447 21.5727 7.83971 21.5944 7.83971C21.6161 7.83971 21.6375 7.83447 21.6568 7.82444C21.676 7.81441 21.6926 7.79988 21.705 7.78209C21.78 7.69584 21.825 7.59833 21.735 7.49333C21.6921 7.45289 21.6366 7.42855 21.5778 7.42445C21.519 7.42034 21.4606 7.43674 21.4125 7.47084Z" fill="white"/>
|
||||
<path d="M43.8075 21.9815C44.0363 21.9215 43.9913 22.1578 44.3063 22.049C44.6213 21.9403 44.7188 21.6028 44.535 21.4565C44.3513 21.3103 44.16 21.4003 44.13 21.3553C44.1 21.3103 44.0138 21.074 43.8375 21.1378C43.4625 21.269 43.6725 21.5728 43.575 21.6478C43.4775 21.7228 43.2263 21.7265 43.0725 21.824C43.0165 21.8447 42.9662 21.8784 42.9258 21.9224C42.8854 21.9663 42.8561 22.0193 42.8403 22.0769C42.8246 22.1345 42.8228 22.195 42.8351 22.2534C42.8475 22.3119 42.8735 22.3665 42.9112 22.4128C42.946 22.4603 42.9892 22.501 43.0388 22.5328C43.0655 22.5594 43.0958 22.5821 43.1288 22.6003C43.2375 22.6565 43.425 22.8403 43.5788 22.7428C43.7325 22.6453 43.6238 22.5215 43.6388 22.4353C43.785 22.2403 43.605 22.034 43.8075 21.9815Z" fill="white"/>
|
||||
<path d="M12.6076 5.43392C12.7313 5.48267 12.9526 5.26142 12.9076 5.16392C12.8626 5.06642 12.5701 5.02892 12.5326 5.16392C12.5146 5.21104 12.5122 5.26266 12.5257 5.31124C12.5392 5.35982 12.5679 5.40281 12.6076 5.43392Z" fill="white"/>
|
||||
<path d="M41.9587 24.3861C41.9062 24.4086 41.9062 24.5098 41.925 24.5548C41.9445 24.5843 41.9725 24.6073 42.0053 24.6206C42.038 24.634 42.0741 24.6372 42.1087 24.6298C42.1725 24.5998 42.1462 24.4686 42.1087 24.4386C42.0894 24.4189 42.0658 24.404 42.0398 24.3949C42.0138 24.3858 41.9861 24.3828 41.9587 24.3861Z" fill="white"/>
|
||||
<path d="M42.2963 23.3508C42.3064 23.2522 42.2797 23.1534 42.2213 23.0733C42.1538 23.0021 41.9663 23.0733 41.94 23.1933C41.9387 23.2639 41.9515 23.334 41.9775 23.3996C42.1425 23.4783 42.2851 23.4521 42.2963 23.3508Z" fill="white"/>
|
||||
<path d="M9.50245 6.80976C9.44995 6.89226 9.36372 7.11726 9.42747 7.18476C9.49122 7.25226 9.70873 7.136 9.71998 7.0985C9.74623 6.9935 9.80623 6.86601 9.71998 6.76851C9.63373 6.67101 9.52495 6.76851 9.50245 6.80976Z" fill="white"/>
|
||||
<path d="M46.1212 22.1924C46.2487 22.2637 46.3463 22.1924 46.3763 22.1174C46.4063 22.0424 46.4325 21.9037 46.3387 21.8549C46.314 21.85 46.2885 21.85 46.2637 21.8549C46.3055 21.8099 46.3345 21.7545 46.3476 21.6945C46.3608 21.6345 46.3577 21.5721 46.3387 21.5137L46.3725 21.5399C46.35 21.3187 46.32 21.1012 46.29 20.8799C46.2724 20.8703 46.2572 20.8568 46.2454 20.8405C46.2337 20.8242 46.2257 20.8055 46.2221 20.7857C46.2185 20.766 46.2194 20.7457 46.2246 20.7263C46.2299 20.7069 46.2394 20.6889 46.2525 20.6737C46.2525 20.6737 46.2525 20.6549 46.2525 20.6474C46.2525 20.5424 46.215 20.4374 46.2 20.3287C46.156 20.2746 46.1027 20.2288 46.0425 20.1937C45.966 20.1515 45.8776 20.1357 45.7912 20.1487C45.7896 20.1375 45.7896 20.1261 45.7912 20.1149C45.7426 20.0491 45.6737 20.0011 45.5952 19.978C45.5166 19.955 45.4327 19.9583 45.3562 19.9874C45.3041 20.0501 45.2755 20.129 45.2755 20.2106C45.2755 20.2921 45.3041 20.371 45.3562 20.4337C45.3949 20.4657 45.4416 20.4864 45.4912 20.4937C45.525 20.6399 45.6112 20.6849 45.57 20.7374C45.5287 20.7899 45.36 20.8687 45.3862 21.0037C45.4125 21.1387 45.8212 21.2362 45.885 21.2174C45.9487 21.1987 46.11 21.0787 46.185 21.2174C46.2117 21.2676 46.233 21.3204 46.2487 21.3749C46.2175 21.3376 46.1745 21.3121 46.1267 21.3025C46.079 21.293 46.0294 21.3 45.9862 21.3224C45.8892 21.3566 45.8079 21.4249 45.7575 21.5146C45.7072 21.6043 45.6912 21.7093 45.7125 21.8099C45.7488 21.8625 45.7986 21.9042 45.8567 21.9306C45.9149 21.957 45.9791 21.9672 46.0425 21.9599C45.9562 21.9937 46.0162 22.1399 46.1212 22.1924Z" fill="white"/>
|
||||
<path d="M44.595 23.9409C44.6262 23.8368 44.6217 23.7253 44.5823 23.6241C44.5429 23.5229 44.4708 23.4377 44.3775 23.3821C44.2993 23.3757 44.2211 23.3939 44.1539 23.4343C44.0866 23.4747 44.0336 23.5351 44.0025 23.6071C43.9806 23.648 43.968 23.6933 43.9658 23.7396C43.9636 23.786 43.9718 23.8322 43.9897 23.875C44.0077 23.9178 44.0351 23.956 44.0697 23.9869C44.1044 24.0177 44.1455 24.0405 44.19 24.0534C44.37 24.1209 44.5425 24.0721 44.595 23.9409Z" fill="white"/>
|
||||
<path d="M44.0924 29.854C43.9799 29.8165 43.935 29.8878 43.8937 29.9665C43.879 29.9887 43.8701 30.0142 43.8676 30.0408C43.8652 30.0673 43.8694 30.094 43.8798 30.1185C43.8901 30.143 43.9064 30.1645 43.9272 30.1812C43.9479 30.1979 43.9725 30.2092 43.9987 30.214C44.0763 30.2155 44.1536 30.2041 44.2274 30.1803C44.2408 30.1501 44.248 30.1175 44.2484 30.0845C44.2488 30.0515 44.2425 30.0187 44.2298 29.9882C44.2172 29.9577 44.1985 29.9301 44.1749 29.907C44.1513 29.884 44.1232 29.8659 44.0924 29.854Z" fill="white"/>
|
||||
<path d="M31.9088 3.8368C31.9059 3.92146 31.9317 4.00461 31.9821 4.07271C32.0325 4.1408 32.1045 4.18983 32.1863 4.2118C32.2173 4.22223 32.2501 4.22631 32.2827 4.2238C32.3153 4.22129 32.3471 4.21225 32.3761 4.1972C32.4052 4.18215 32.4309 4.16141 32.4517 4.13622C32.4726 4.11103 32.4882 4.0819 32.4976 4.05056C32.5096 3.95901 32.4896 3.86613 32.4411 3.78757C32.3926 3.70901 32.3185 3.64958 32.2313 3.6193C32.1599 3.60702 32.0865 3.62279 32.0264 3.66331C31.9663 3.70383 31.9242 3.76598 31.9088 3.8368Z" fill="white"/>
|
||||
<path d="M34.2525 7.25325C34.2509 7.28306 34.2556 7.31287 34.266 7.34083C34.2765 7.36878 34.2926 7.39429 34.3134 7.41575C34.3341 7.4372 34.3591 7.45416 34.3867 7.46556C34.4143 7.47695 34.4439 7.48255 34.4737 7.482C34.548 7.47723 34.6177 7.44431 34.6686 7.38997C34.7194 7.33562 34.7477 7.26393 34.7475 7.1895C34.695 7.1445 34.6275 7.04325 34.53 7.0095C34.4325 6.97575 34.2637 7.0995 34.2525 7.25325Z" fill="white"/>
|
||||
<path d="M32.0812 3.00086L31.7775 2.88086C31.8611 2.95598 31.9689 2.99857 32.0812 3.00086Z" fill="white"/>
|
||||
<path d="M34.4663 5.66243C34.3701 5.65243 34.2734 5.67562 34.1922 5.72814C34.1111 5.78066 34.0503 5.85936 34.02 5.95118C34.0218 6.04888 34.0548 6.14346 34.1141 6.22106C34.1735 6.29866 34.2562 6.35521 34.35 6.38243C34.4888 6.40493 34.665 6.23993 34.6875 6.05618C34.71 5.87243 34.6463 5.68868 34.4663 5.66243Z" fill="white"/>
|
||||
<path d="M37.59 8.96639C37.5762 9.06299 37.5969 9.16135 37.6483 9.24429C37.6997 9.32722 37.7786 9.38946 37.8712 9.42014C37.9987 9.43889 38.2462 9.17638 38.2462 9.00763C38.2412 8.93755 38.2143 8.87082 38.1692 8.81695C38.1241 8.76309 38.0631 8.72483 37.9949 8.70764C37.9513 8.69771 37.9062 8.69655 37.8621 8.70422C37.8181 8.71189 37.776 8.72824 37.7383 8.75231C37.7006 8.77639 37.6681 8.80771 37.6426 8.84446C37.6172 8.88121 37.5993 8.92266 37.59 8.96639Z" fill="white"/>
|
||||
<path d="M38.13 10.5028C38.085 10.5291 37.9951 10.5853 38.0213 10.6378C38.0384 10.6631 38.0622 10.6831 38.09 10.6957C38.1178 10.7083 38.1485 10.7129 38.1788 10.7091C38.22 10.7091 38.3288 10.6003 38.2988 10.5478C38.2775 10.5256 38.2505 10.5097 38.2207 10.5018C38.191 10.4939 38.1596 10.4942 38.13 10.5028Z" fill="white"/>
|
||||
<path d="M15.2812 8.51267C15.3262 8.47287 15.3545 8.41768 15.3608 8.35798C15.367 8.29828 15.3507 8.23841 15.315 8.19017C15.2722 8.14079 15.2118 8.11004 15.1467 8.10444C15.0816 8.09884 15.0169 8.11883 14.9662 8.16017C14.9403 8.17547 14.9183 8.19669 14.9022 8.22208C14.886 8.24747 14.876 8.27633 14.8731 8.3063C14.8702 8.33627 14.8744 8.3665 14.8854 8.39454C14.8963 8.42258 14.9137 8.44764 14.9362 8.46767C14.955 8.49441 14.9792 8.51695 15.0072 8.53387C15.0352 8.55078 15.0664 8.5617 15.0989 8.56593C15.1313 8.57016 15.1642 8.56761 15.1956 8.55844C15.227 8.54927 15.2562 8.53369 15.2812 8.51267Z" fill="white"/>
|
||||
<path d="M17.4 5.26872C17.3788 5.29313 17.3631 5.32183 17.3539 5.35289C17.3448 5.38394 17.3424 5.4166 17.347 5.44864C17.3517 5.48068 17.3631 5.51134 17.3807 5.53854C17.3982 5.56573 17.4215 5.58881 17.4488 5.60621C17.5388 5.67746 17.6438 5.75246 17.73 5.66996C17.8725 5.51246 17.8913 5.35871 17.7975 5.26496C17.7723 5.23718 17.7415 5.21504 17.7071 5.20001C17.6727 5.18498 17.6355 5.17739 17.5979 5.17775C17.5604 5.1781 17.5234 5.18639 17.4893 5.20206C17.4552 5.21774 17.4248 5.24046 17.4 5.26872Z" fill="white"/>
|
||||
<path d="M15.3412 9.89235C15.3838 9.83914 15.407 9.77301 15.407 9.70485C15.407 9.63669 15.3838 9.57056 15.3412 9.51735C15.3203 9.49637 15.2955 9.47973 15.2681 9.46837C15.2408 9.45702 15.2115 9.45117 15.1819 9.45117C15.1522 9.45117 15.1229 9.45702 15.0956 9.46837C15.0682 9.47973 15.0434 9.49637 15.0225 9.51735C14.9708 9.5647 14.9395 9.63031 14.9353 9.70029C14.9311 9.77028 14.9543 9.83915 15 9.89235C15.0479 9.93231 15.1082 9.95421 15.1706 9.95421C15.233 9.95421 15.2934 9.93231 15.3412 9.89235Z" fill="white"/>
|
||||
<path d="M16.6725 3.10187C16.7236 3.14939 16.7836 3.18634 16.849 3.21056C16.9144 3.23479 16.984 3.24583 17.0538 3.24304C17.1235 3.24025 17.1919 3.22369 17.2552 3.19431C17.3185 3.16494 17.3754 3.12333 17.4225 3.07188C17.5052 2.99399 17.5588 2.8902 17.5745 2.77768C17.5902 2.66516 17.567 2.55066 17.5087 2.45312C17.1825 2.55062 16.8638 2.65562 16.545 2.76812C16.5387 2.82985 16.547 2.89218 16.5691 2.95013C16.5913 3.00808 16.6267 3.06005 16.6725 3.10187Z" fill="white"/>
|
||||
<path d="M12.8699 8.74563C12.8205 8.7955 12.7927 8.86289 12.7927 8.93313C12.7927 9.00337 12.8205 9.07076 12.8699 9.12063C12.8932 9.1476 12.922 9.16923 12.9543 9.18406C12.9867 9.1989 13.0219 9.20657 13.0574 9.20657C13.093 9.20657 13.1282 9.1989 13.1606 9.18406C13.1929 9.16923 13.2217 9.1476 13.2449 9.12063C13.2876 9.07258 13.3112 9.01054 13.3112 8.94626C13.3112 8.88198 13.2876 8.81993 13.2449 8.77188C13.2233 8.74373 13.1959 8.72048 13.1646 8.70369C13.1333 8.68689 13.0988 8.67692 13.0634 8.67444C13.0279 8.67196 12.9924 8.67702 12.959 8.6893C12.9257 8.70157 12.8953 8.72076 12.8699 8.74563Z" fill="white"/>
|
||||
<path d="M20.07 8.39639C20.0527 8.42185 20.0435 8.45189 20.0435 8.48264C20.0435 8.51339 20.0527 8.54343 20.07 8.56889C20.1075 8.60264 20.1974 8.66639 20.2349 8.62139C20.2505 8.59529 20.2587 8.5655 20.2587 8.53514C20.2587 8.50478 20.2505 8.47499 20.2349 8.44889C20.2462 8.41514 20.1075 8.35139 20.07 8.39639Z" fill="white"/>
|
||||
<path d="M18.7463 7.29687C18.6914 7.25527 18.6234 7.23467 18.5546 7.2388C18.4859 7.24293 18.4209 7.2715 18.3713 7.31937C18.3141 7.37807 18.2797 7.45522 18.2742 7.53698C18.2687 7.61875 18.2925 7.6998 18.3413 7.76562C18.4125 7.82466 18.5005 7.85972 18.5927 7.86578C18.685 7.87184 18.7768 7.8486 18.8551 7.79938C18.9188 7.70938 18.8626 7.43937 18.7463 7.29687Z" fill="white"/>
|
||||
<path d="M17.8949 4.11441C17.8248 4.06292 17.74 4.03516 17.653 4.03516C17.566 4.03516 17.4813 4.06292 17.4112 4.11441C17.3686 4.18257 17.3506 4.26323 17.3602 4.34303C17.3697 4.42282 17.4062 4.49696 17.4637 4.55316C17.4864 4.57262 17.513 4.58709 17.5418 4.59562C17.5705 4.60415 17.6007 4.60654 17.6304 4.60265C17.6601 4.59876 17.6886 4.58867 17.7142 4.57304C17.7397 4.55741 17.7617 4.53658 17.7787 4.51191C17.9362 4.34691 17.9962 4.20441 17.8949 4.11441Z" fill="white"/>
|
||||
<path d="M14.1563 5.11429C14.1241 5.08125 14.0853 5.0554 14.0424 5.03845C13.9995 5.02151 13.9535 5.01385 13.9075 5.01597C13.8614 5.0181 13.8163 5.02996 13.7751 5.05079C13.734 5.07162 13.6977 5.10093 13.6688 5.13679C13.6019 5.20054 13.5594 5.28557 13.5485 5.37726C13.5375 5.46896 13.5589 5.5616 13.6088 5.63929C13.6884 5.69346 13.7825 5.72243 13.8788 5.72243C13.9751 5.72243 14.0691 5.69346 14.1488 5.63929C14.1903 5.60955 14.2243 5.57048 14.248 5.52522C14.2716 5.47995 14.2843 5.42976 14.285 5.37869C14.2858 5.32761 14.2745 5.27708 14.2521 5.23116C14.2298 5.18523 14.1969 5.14521 14.1563 5.11429Z" fill="white"/>
|
||||
<path d="M13.3913 4.1782C13.5638 4.37695 13.7663 4.3282 13.95 4.2157C14.0325 4.33195 14.07 4.5007 14.265 4.4332C14.318 4.41909 14.3639 4.38617 14.3943 4.34061C14.4246 4.29504 14.4373 4.23997 14.43 4.18571C14.43 3.98321 14.2463 3.9832 14.0925 3.97195C14.0925 3.9157 14.0925 3.86695 14.0663 3.81445C13.8338 3.92695 13.605 4.0432 13.38 4.1632L13.3913 4.1782Z" fill="white"/>
|
||||
<path d="M20.2462 4.43971C20.1525 4.28221 20.0025 4.26346 19.8112 4.43971C19.7345 4.599 19.6681 4.76309 19.6125 4.93096C19.6029 4.96 19.5995 4.99074 19.6025 5.02119C19.6056 5.05163 19.615 5.08109 19.6302 5.10764C19.6454 5.13418 19.6661 5.15721 19.6908 5.17523C19.7156 5.19325 19.7438 5.20585 19.7737 5.21221C19.8304 5.23283 19.893 5.23021 19.9478 5.20493C20.0026 5.17964 20.0451 5.13374 20.0662 5.07721C20.096 5.00982 20.1365 4.94775 20.1862 4.89346C20.2449 4.83506 20.2826 4.75888 20.2935 4.6768C20.3043 4.59472 20.2877 4.51135 20.2462 4.43971Z" fill="white"/>
|
||||
<path d="M13.305 6.15669C13.2825 6.10135 13.2444 6.05367 13.1955 6.01934C13.1466 5.98502 13.0888 5.96551 13.0291 5.96314C12.9694 5.96076 12.9103 5.97563 12.8588 6.00597C12.8073 6.0363 12.7656 6.08081 12.7387 6.13419C12.6495 6.28326 12.5802 6.44337 12.5325 6.61044C12.5202 6.71268 12.5408 6.81619 12.5914 6.90589C12.642 6.9956 12.7199 7.06682 12.8138 7.10919C12.915 7.15419 13.1663 7.16169 13.1888 6.93294C13.0575 6.55794 13.335 6.55794 13.3275 6.28419C13.3275 6.24071 13.3198 6.19756 13.305 6.15669Z" fill="white"/>
|
||||
<path d="M14.4488 7.06497C14.4698 7.04848 14.4868 7.02742 14.4985 7.00339C14.5102 6.97935 14.5163 6.95296 14.5163 6.92622C14.5163 6.89949 14.5102 6.87309 14.4985 6.84906C14.4868 6.82502 14.4698 6.80396 14.4488 6.78747C14.4122 6.77448 14.373 6.77043 14.3345 6.77565C14.296 6.78087 14.2593 6.79521 14.2275 6.81747C14.1825 6.85497 14.1075 7.01622 14.1563 7.07997C14.205 7.14372 14.385 7.10997 14.4488 7.06497Z" fill="white"/>
|
||||
<path d="M15.3075 6.59584C15.1837 6.46834 15.0112 6.49084 14.85 6.65209C14.7938 6.69521 14.7568 6.75869 14.747 6.82884C14.7372 6.89899 14.7553 6.97019 14.7975 7.02709C14.8742 7.08418 14.965 7.11925 15.0602 7.1285C15.1554 7.13775 15.2513 7.12084 15.3375 7.07959C15.3706 7.04755 15.3964 7.00872 15.413 6.96577C15.4297 6.92283 15.4368 6.87678 15.434 6.8308C15.4311 6.78483 15.4183 6.74001 15.3965 6.69945C15.3747 6.65889 15.3443 6.62354 15.3075 6.59584Z" fill="white"/>
|
||||
<path d="M11.7937 7.47716C11.7637 7.51091 11.7937 7.55966 11.7937 7.57841C11.7937 7.59716 11.8687 7.57841 11.8837 7.57841C11.8913 7.57212 11.8974 7.56425 11.9016 7.55535C11.9058 7.54646 11.9081 7.53675 11.9081 7.5269C11.9082 7.51706 11.9061 7.50733 11.902 7.49838C11.8979 7.48943 11.8919 7.48149 11.8844 7.4751C11.8769 7.46872 11.8681 7.46405 11.8586 7.46143C11.8491 7.4588 11.8392 7.45829 11.8295 7.45991C11.8198 7.46154 11.8105 7.46527 11.8024 7.47084C11.7943 7.47641 11.7875 7.48369 11.7825 7.49216L11.7937 7.47716Z" fill="white"/>
|
||||
<path d="M32.0737 8.66205C32.1244 8.57094 32.139 8.46413 32.1147 8.36275C32.0904 8.26137 32.0289 8.1728 31.9425 8.11456C31.8923 8.07752 31.8349 8.05141 31.774 8.03792C31.7132 8.02442 31.6501 8.02384 31.589 8.03621C31.5278 8.04857 31.47 8.07361 31.4191 8.10972C31.3683 8.14582 31.3255 8.19218 31.2937 8.2458C31.2375 8.32457 31.214 8.42202 31.2279 8.51776C31.2419 8.61351 31.2924 8.70014 31.3687 8.75956C31.4795 8.82708 31.6101 8.85425 31.7386 8.83648C31.8671 8.81871 31.9855 8.75709 32.0737 8.66205Z" fill="white"/>
|
||||
<path d="M32.5838 8.0851C32.5864 8.02623 32.5694 7.96815 32.5355 7.91997C32.5015 7.87179 32.4526 7.83622 32.3963 7.81885C32.3315 7.81519 32.2673 7.83207 32.2127 7.86709C32.1582 7.90211 32.1161 7.95348 32.0925 8.01385C32.0857 8.07361 32.1016 8.13375 32.137 8.18237C32.1724 8.23098 32.2248 8.26452 32.2837 8.27635C32.3484 8.28624 32.4145 8.27231 32.4697 8.23713C32.5249 8.20195 32.5654 8.14792 32.5838 8.0851Z" fill="white"/>
|
||||
<path d="M30.9901 5.74833C30.9516 5.76426 30.9177 5.78951 30.8914 5.82181C30.8651 5.8541 30.8472 5.89242 30.8394 5.93333C30.8316 5.97424 30.8341 6.01644 30.8466 6.05615C30.8592 6.09586 30.8814 6.13183 30.9113 6.16082C30.9511 6.19317 30.998 6.21578 31.0482 6.22685C31.0983 6.23792 31.1503 6.23714 31.2 6.22457C31.2403 6.20347 31.2749 6.17307 31.301 6.13589C31.3271 6.09871 31.3439 6.05583 31.35 6.01082C31.3469 5.96857 31.3346 5.92751 31.314 5.89048C31.2934 5.85346 31.2649 5.82136 31.2307 5.79639C31.1965 5.77143 31.1572 5.7542 31.1157 5.7459C31.0741 5.7376 31.0313 5.73843 30.9901 5.74833Z" fill="white"/>
|
||||
<path d="M31.0012 9.43827C31.1812 9.43827 31.1512 9.26952 31.2075 9.20202C31.2431 9.16204 31.2702 9.11522 31.2871 9.06441C31.304 9.0136 31.3103 8.95988 31.3058 8.90653C31.3012 8.85317 31.2858 8.80131 31.2606 8.75411C31.2353 8.70692 31.2006 8.66537 31.1587 8.63202C31.0901 8.59941 31.0132 8.5884 30.9382 8.60046C30.8632 8.61251 30.7936 8.64705 30.7387 8.69952C30.6841 8.74376 30.6483 8.80707 30.6385 8.87668C30.6288 8.94628 30.6458 9.01699 30.6862 9.07452C30.7462 9.19077 30.8175 9.44202 31.0012 9.43827Z" fill="white"/>
|
||||
<path d="M30.5737 7.57097C30.645 7.57097 30.66 7.31971 30.6262 7.16971C30.6394 7.19201 30.6559 7.21223 30.675 7.22972C30.675 7.22972 30.7912 7.19596 30.7912 7.17346C30.7912 7.15096 30.81 7.01972 30.7312 6.98972C30.6525 6.95972 30.5962 7.06472 30.6 7.09097C30.5943 7.07862 30.5867 7.06723 30.5775 7.05721C30.4912 6.98971 30.2962 7.13597 30.2662 7.32347C30.2362 7.51097 30.48 7.58972 30.5737 7.57097Z" fill="white"/>
|
||||
<path d="M36.9638 10.6228C36.986 10.6063 37.0047 10.5855 37.0189 10.5617C37.033 10.5379 37.0424 10.5115 37.0463 10.4841C37.0463 10.4466 36.9263 10.3528 36.8888 10.3716C36.8513 10.3903 36.8363 10.5141 36.8475 10.5666C36.8588 10.6191 36.945 10.6341 36.9638 10.6228Z" fill="white"/>
|
||||
<path d="M31.9575 5.81161C31.9061 5.77179 31.8411 5.7538 31.7765 5.76152C31.712 5.76924 31.6531 5.80205 31.6125 5.85286C31.5743 5.90611 31.558 5.97205 31.567 6.037C31.5761 6.10195 31.6098 6.16089 31.6612 6.20161C31.7196 6.2395 31.7897 6.25505 31.8586 6.24541C31.9275 6.23576 31.9905 6.20156 32.0362 6.14911C32.0699 6.09374 32.0805 6.02738 32.0658 5.96427C32.0511 5.90117 32.0122 5.84636 31.9575 5.81161Z" fill="white"/>
|
||||
<path d="M35.1037 8.05883C35.1713 8.06579 35.239 8.04561 35.2917 8.00271C35.3445 7.95981 35.378 7.89771 35.385 7.83008C35.3919 7.76245 35.3717 7.69482 35.3288 7.64208C35.2859 7.58934 35.2238 7.55579 35.1562 7.54883C35.0918 7.5516 35.0304 7.5767 34.9825 7.61981C34.9346 7.66292 34.9032 7.72135 34.8937 7.78508C34.889 7.81692 34.8907 7.84939 34.8988 7.88055C34.9068 7.91172 34.9211 7.94093 34.9407 7.96647C34.9602 7.99202 34.9848 8.01336 35.0128 8.02922C35.0408 8.04509 35.0717 8.05515 35.1037 8.05883Z" fill="white"/>
|
||||
<path d="M36.9338 12.4199C36.9869 12.3954 37.0298 12.3532 37.0551 12.3005C37.0805 12.2478 37.0866 12.1879 37.0725 12.1311C37.0607 12.1008 37.0428 12.0732 37.0199 12.05C36.997 12.0268 36.9696 12.0085 36.9395 11.9962C36.9093 11.9839 36.877 11.9779 36.8444 11.9786C36.8118 11.9792 36.7797 11.9864 36.75 11.9999C36.7208 12.0057 36.6933 12.0183 36.6698 12.0367C36.6463 12.0551 36.6274 12.0787 36.6147 12.1056C36.6019 12.1326 36.5957 12.1622 36.5964 12.192C36.5971 12.2218 36.6048 12.251 36.6188 12.2774C36.6292 12.3081 36.6457 12.3364 36.6675 12.3604C36.6893 12.3845 36.7157 12.4038 36.7453 12.4172C36.7748 12.4305 36.8068 12.4377 36.8393 12.4381C36.8717 12.4386 36.9039 12.4324 36.9338 12.4199Z" fill="white"/>
|
||||
<path d="M34.8712 6.87696C34.8225 6.83946 34.7399 6.87696 34.7099 6.91071C34.6799 6.94446 34.6499 7.07571 34.7099 7.10946C34.7699 7.14321 34.8749 7.07946 34.8974 7.04196C34.9116 7.01534 34.9167 6.98483 34.9119 6.95506C34.9072 6.92529 34.8929 6.89788 34.8712 6.87696Z" fill="white"/>
|
||||
<path d="M34.6912 9.27316C34.7371 9.15128 34.7473 9.01886 34.7208 8.89137C34.6942 8.76388 34.6319 8.64657 34.5412 8.55316C34.4351 8.4966 34.3113 8.48297 34.1955 8.51507C34.0796 8.54718 33.9805 8.62256 33.9187 8.72566C33.8658 8.83216 33.8504 8.95337 33.8749 9.06972C33.8994 9.18607 33.9623 9.29077 34.0537 9.36691C34.1524 9.43399 34.2727 9.46158 34.3907 9.44422C34.5088 9.42686 34.616 9.36581 34.6912 9.27316Z" fill="white"/>
|
||||
<path d="M32.76 7.06493C32.7816 7.04396 32.7987 7.01889 32.8104 6.99119C32.8221 6.9635 32.8281 6.93374 32.8281 6.90368C32.8281 6.87362 32.8221 6.84386 32.8104 6.81616C32.7987 6.78847 32.7816 6.76339 32.76 6.74243C32.7314 6.71489 32.6971 6.69392 32.6595 6.68097C32.622 6.66802 32.5821 6.6634 32.5425 6.66743C32.3963 6.68618 32.3588 6.79118 32.3663 7.06493C32.4938 7.11743 32.6213 7.22618 32.76 7.06493Z" fill="white"/>
|
||||
<path d="M28.2938 6.12752C28.2721 6.11116 28.2471 6.1 28.2204 6.09492C28.1938 6.08984 28.1663 6.09097 28.1402 6.09823C28.1141 6.10548 28.09 6.11867 28.0698 6.13676C28.0496 6.15485 28.0339 6.17735 28.0238 6.20252C27.9913 6.28182 27.9913 6.37073 28.0238 6.45002C28.065 6.50627 28.3013 6.52877 28.3613 6.45002C28.3786 6.4246 28.3906 6.39594 28.3966 6.36577C28.4026 6.3356 28.4024 6.30453 28.3961 6.27443C28.3898 6.24432 28.3775 6.21579 28.3599 6.19055C28.3423 6.16531 28.3198 6.14387 28.2938 6.12752Z" fill="white"/>
|
||||
<path d="M27.7988 3.38231C27.736 3.33112 27.6562 3.30573 27.5754 3.3113C27.4946 3.31687 27.4189 3.35299 27.3638 3.41231C27.318 3.48697 27.2976 3.57447 27.3057 3.66169C27.3138 3.74891 27.35 3.83115 27.4088 3.89607C27.4984 3.94858 27.6037 3.9676 27.7061 3.94975C27.8084 3.93189 27.901 3.87832 27.9675 3.79856C28.0313 3.68981 27.9488 3.48731 27.7988 3.38231Z" fill="white"/>
|
||||
<path d="M28.0388 7.16549C28.1067 7.18105 28.1772 7.18105 28.245 7.16549C28.35 7.01549 28.3425 6.86923 28.245 6.84673C28.1492 6.82173 28.0474 6.83378 27.96 6.88048C27.8813 6.92923 27.9338 7.12424 28.0388 7.16549Z" fill="white"/>
|
||||
<path d="M37.2299 9.95247C37.2524 9.80622 37.0574 9.74622 36.9712 9.70122C36.8849 9.65622 36.7724 9.74622 36.7499 9.86997C36.7274 9.99372 36.78 10.0987 36.9075 10.0912C37.035 10.0837 37.2074 10.1025 37.2299 9.95247Z" fill="white"/>
|
||||
<path d="M27.87 8.76323C27.9637 8.55323 27.675 8.38823 27.5738 8.43323C27.4725 8.47823 27.405 8.75573 27.5063 8.83448C27.6075 8.91323 27.78 8.96948 27.87 8.76323Z" fill="white"/>
|
||||
<path d="M26.3775 6.50934C26.46 6.39684 26.3776 6.13434 26.2201 6.02934C26.1888 6.00413 26.1528 5.98545 26.1141 5.97442C26.0755 5.96339 26.035 5.96023 25.9952 5.96513C25.9553 5.97002 25.9168 5.98288 25.882 6.00293C25.8472 6.02298 25.8168 6.04981 25.7926 6.08184C25.7358 6.16165 25.7102 6.25948 25.7205 6.35687C25.7309 6.45427 25.7765 6.5445 25.8488 6.61059C25.9352 6.65688 26.0349 6.67208 26.1311 6.65365C26.2274 6.63522 26.3144 6.58427 26.3775 6.50934Z" fill="white"/>
|
||||
<path d="M26.3063 9.66824C26.3336 9.67503 26.3622 9.67517 26.3896 9.66865C26.417 9.66212 26.4424 9.64912 26.4637 9.63074C26.4744 9.61608 26.482 9.59942 26.4861 9.58176C26.4902 9.5641 26.4906 9.5458 26.4875 9.52796C26.4843 9.51011 26.4776 9.49307 26.4677 9.47788C26.4579 9.46268 26.445 9.44963 26.43 9.43949C26.3363 9.39074 26.28 9.48449 26.2575 9.52574C26.2524 9.55168 26.2541 9.57853 26.2627 9.60356C26.2713 9.62858 26.2863 9.6509 26.3063 9.66824Z" fill="white"/>
|
||||
<path d="M28.2413 5.18909C28.2938 5.14034 28.2413 5.03909 28.2 4.99784C28.1795 4.98397 28.1554 4.97656 28.1307 4.97656C28.1059 4.97656 28.0817 4.98397 28.0613 4.99784C28.0275 5.03159 28.0613 5.11783 28.0613 5.16283C28.0613 5.20783 28.1925 5.23783 28.2413 5.18909Z" fill="white"/>
|
||||
<path d="M28.7288 5.19094C28.7662 5.21852 28.8094 5.23735 28.8551 5.24605C28.9008 5.25476 28.9478 5.25311 28.9928 5.24124C29.0377 5.22937 29.0795 5.20757 29.1149 5.17746C29.1503 5.14734 29.1786 5.10966 29.1975 5.06719C29.3025 4.89094 29.28 4.71094 29.145 4.63969C29.0462 4.59499 28.9354 4.58399 28.8297 4.60838C28.724 4.63277 28.6293 4.6912 28.56 4.77469C28.5395 4.85299 28.5448 4.93585 28.5752 5.01088C28.6056 5.0859 28.6595 5.14907 28.7288 5.19094Z" fill="white"/>
|
||||
<path d="M30.0488 2.39273C30.0756 2.41794 30.1077 2.43677 30.1427 2.44781C30.1778 2.45885 30.2149 2.46182 30.2513 2.45649C30.2923 2.45253 30.3319 2.43974 30.3675 2.41898C29.9875 2.30898 29.6051 2.20773 29.2201 2.11523C29.1929 2.15676 29.1743 2.20325 29.1653 2.25202C29.1563 2.30079 29.157 2.35086 29.1675 2.39934C29.178 2.44782 29.1979 2.49374 29.2262 2.53444C29.2546 2.57515 29.2907 2.60983 29.3325 2.63648C29.4591 2.72153 29.6138 2.75382 29.7638 2.72648L29.8163 2.76023C29.8575 2.76023 29.9925 2.74148 30 2.68148C30.0075 2.62148 30.0001 2.63273 29.9663 2.60648C29.9326 2.58023 29.9888 2.60648 29.9963 2.57648C30.0294 2.52079 30.0475 2.45749 30.0488 2.39273Z" fill="white"/>
|
||||
<path d="M30.8775 4.7469C30.8897 4.72677 30.8998 4.7054 30.9075 4.68315C30.9258 4.73295 30.9553 4.77786 30.9938 4.8144C30.9683 4.86995 30.953 4.92966 30.9488 4.99065C30.9394 5.03886 30.9408 5.08855 30.9528 5.13617C30.9648 5.18379 30.9872 5.22818 31.0184 5.26614C31.0496 5.30411 31.0887 5.33473 31.1331 5.35582C31.1774 5.37691 31.2259 5.38795 31.275 5.38815C31.3622 5.39009 31.4474 5.36157 31.5158 5.3075C31.5843 5.25342 31.6317 5.17719 31.65 5.0919L31.7025 5.11815C31.7362 5.15852 31.7795 5.18982 31.8283 5.20919C31.8772 5.22856 31.9302 5.23538 31.9824 5.22905C32.0346 5.22271 32.0843 5.20341 32.1272 5.1729C32.17 5.1424 32.2045 5.10166 32.2275 5.0544C32.2441 5.08214 32.2673 5.10534 32.295 5.1219C32.358 5.14117 32.4258 5.1374 32.4862 5.1113C32.5467 5.08519 32.5959 5.03844 32.625 4.9794C32.6484 4.94879 32.6653 4.91382 32.675 4.87656C32.6846 4.83929 32.6867 4.80047 32.6811 4.76239C32.6755 4.72431 32.6623 4.68773 32.6424 4.6548C32.6225 4.62187 32.5962 4.59326 32.565 4.57065C32.5068 4.54034 32.439 4.53438 32.3764 4.55407C32.3138 4.57376 32.2616 4.61749 32.2313 4.67565C32.1762 4.61513 32.1083 4.56772 32.0325 4.5369C31.9181 4.51058 31.8185 4.44061 31.755 4.3419C31.7028 4.27193 31.634 4.21608 31.5548 4.17941C31.4755 4.14274 31.3884 4.12641 31.3013 4.1319C31.2141 4.13632 31.1302 4.16598 31.0597 4.21724C30.9891 4.2685 30.9349 4.33917 30.9038 4.42065V4.46565C30.8795 4.36037 30.8166 4.26803 30.7275 4.2069C30.5962 4.12815 30.4237 4.2069 30.3037 4.38315C30.261 4.45051 30.2409 4.52973 30.2463 4.60931C30.2517 4.68889 30.2824 4.76467 30.3338 4.82565C30.4209 4.87257 30.5207 4.89025 30.6186 4.87607C30.7166 4.86189 30.8073 4.81661 30.8775 4.7469Z" fill="white"/>
|
||||
<path d="M32.0738 6.94115C32.1825 6.94115 32.28 6.89615 32.2688 6.7799C32.2575 6.66365 32.2012 6.46865 32.1112 6.4649C32.0212 6.46115 31.9162 6.64865 31.8787 6.73115C31.8412 6.81365 31.9575 6.9374 32.0738 6.94115Z" fill="white"/>
|
||||
<path d="M28.4963 3.8429C28.4963 3.7979 28.4325 3.74165 28.3838 3.71915C28.335 3.69665 28.2451 3.71915 28.2338 3.80165C28.2226 3.88415 28.335 3.9104 28.3838 3.92165C28.4082 3.9211 28.432 3.91333 28.452 3.89931C28.472 3.8853 28.4874 3.86567 28.4963 3.8429Z" fill="white"/>
|
||||
<path d="M28.9913 3.77907C29.0921 3.8544 29.2164 3.89158 29.342 3.88403C29.4676 3.87648 29.5865 3.82468 29.6776 3.73782C29.7346 3.62628 29.7519 3.49866 29.7266 3.37596C29.7014 3.25327 29.6352 3.14283 29.5388 3.06282C29.4304 3.01303 29.308 3.00225 29.1925 3.03232C29.077 3.06239 28.9755 3.13146 28.905 3.22782C28.846 3.31324 28.8221 3.41807 28.8381 3.52066C28.8542 3.62325 28.909 3.71576 28.9913 3.77907Z" fill="white"/>
|
||||
<path d="M28.7099 2.46703C28.7339 2.42787 28.7504 2.38465 28.7587 2.33953C28.9387 2.39953 29.0362 2.29078 29.1337 2.14828L29.1037 2.08828C28.7437 2.00078 28.3799 1.92578 28.0124 1.86328C27.9781 1.88707 27.9477 1.91618 27.9225 1.94953C27.871 2.052 27.8588 2.16979 27.8883 2.2806C27.9179 2.39142 27.987 2.48757 28.0826 2.55086C28.1783 2.61415 28.2938 2.64019 28.4073 2.62405C28.5209 2.60791 28.6245 2.55071 28.6987 2.46328L28.7099 2.46703Z" fill="white"/>
|
||||
<path d="M43.5188 27.007C43.5788 27.0271 43.6441 27.0249 43.7026 27.0007C43.7611 26.9766 43.8088 26.9321 43.8371 26.8755C43.8655 26.8189 43.8723 26.754 43.8566 26.6927C43.8408 26.6314 43.8034 26.5779 43.7513 26.542C43.693 26.5136 43.6261 26.5079 43.5638 26.5259C43.5015 26.5439 43.4481 26.5844 43.4138 26.6395C43.3843 26.7031 43.3787 26.7753 43.398 26.8427C43.4172 26.9102 43.4602 26.9685 43.5188 27.007Z" fill="white"/>
|
||||
<path d="M25.4212 6.83589C25.4081 6.81497 25.3898 6.79774 25.3681 6.78579C25.3465 6.77385 25.3222 6.76758 25.2975 6.76758C25.2727 6.76758 25.2484 6.77385 25.2268 6.78579C25.2051 6.79774 25.1869 6.81497 25.1737 6.83589C25.125 6.89964 25.05 7.09464 25.0987 7.13964C25.1475 7.18464 25.3425 7.13964 25.4175 7.10964C25.4925 7.07964 25.4962 6.94089 25.4212 6.83589Z" fill="white"/>
|
||||
<path d="M43.5601 26.3028C43.5993 26.2934 43.6361 26.276 43.6682 26.2516C43.7003 26.2272 43.7269 26.1963 43.7463 26.161C43.7658 26.1257 43.7776 26.0867 43.781 26.0465C43.7844 26.0063 43.7794 25.9659 43.7663 25.9278C43.7434 25.893 43.7123 25.8644 43.6756 25.8446C43.639 25.8248 43.598 25.8145 43.5563 25.8145C43.5147 25.8145 43.4736 25.8248 43.437 25.8446C43.4003 25.8644 43.3692 25.893 43.3463 25.9278C43.3213 25.9719 43.3063 26.0209 43.3024 26.0715C43.2985 26.1221 43.3059 26.1729 43.3238 26.2203C43.354 26.2516 43.3911 26.2753 43.4321 26.2897C43.4731 26.304 43.517 26.3085 43.5601 26.3028Z" fill="white"/>
|
||||
<path d="M43.6988 28.3808C43.7278 28.4042 43.7618 28.4205 43.7981 28.4287C43.8344 28.4368 43.8721 28.4366 43.9083 28.4279C43.9445 28.4192 43.9783 28.4023 44.0069 28.3786C44.0356 28.3548 44.0585 28.3248 44.0738 28.2908C44.0999 28.2054 44.1037 28.1146 44.0846 28.0272C44.0656 27.9399 44.0244 27.8589 43.965 27.7921C43.9237 27.7718 43.8786 27.7602 43.8326 27.7581C43.7866 27.7561 43.7407 27.7636 43.6977 27.7801C43.6548 27.7967 43.6157 27.8219 43.5829 27.8543C43.5502 27.8867 43.5245 27.9255 43.5075 27.9683C43.4138 28.1071 43.4963 28.2796 43.6988 28.3808Z" fill="white"/>
|
||||
<path d="M41.7225 20.7783C41.7225 20.7483 41.7224 20.7296 41.6962 20.6958C41.6699 20.6621 41.6249 20.6958 41.6099 20.7221C41.5949 20.7483 41.6099 20.7933 41.6099 20.7933C41.6099 20.7933 41.7037 20.8121 41.7225 20.7783Z" fill="white"/>
|
||||
<path d="M42.4088 25.6919C42.4613 25.5982 42.2888 25.4257 42.1013 25.4219C41.9138 25.4182 41.8725 25.6694 41.9025 25.7632C41.9325 25.8569 42.3713 25.7857 42.4088 25.6919Z" fill="white"/>
|
||||
<path d="M44.1525 32.3103C44.2875 32.2465 44.25 32.284 44.3738 32.3703C44.4975 32.4565 44.7225 32.5053 44.7975 32.2465C44.8216 32.1266 44.8005 32.002 44.7382 31.8967C44.6759 31.7915 44.5768 31.713 44.46 31.6765C44.316 31.6517 44.168 31.6814 44.0446 31.7597C43.9212 31.838 43.8314 31.9594 43.7926 32.1003C43.7626 32.3028 44.0213 32.3703 44.1525 32.3103Z" fill="white"/>
|
||||
<path d="M41.9025 18.6003C41.8497 18.5171 41.7685 18.456 41.6739 18.4283C41.5793 18.4007 41.4779 18.4085 41.3887 18.4503C41.3441 18.4732 41.3045 18.5047 41.2721 18.5429C41.2397 18.5811 41.2151 18.6253 41.1998 18.673C41.1845 18.7207 41.1787 18.771 41.1828 18.8209C41.1869 18.8708 41.2008 18.9195 41.2237 18.964C41.2466 19.0086 41.2781 19.0482 41.3163 19.0806C41.3545 19.1131 41.3987 19.1376 41.4464 19.1529C41.4941 19.1683 41.5443 19.174 41.5943 19.1699C41.6442 19.1658 41.6929 19.1519 41.7375 19.129C41.7847 19.107 41.8267 19.0753 41.861 19.036C41.8953 18.9968 41.921 18.9508 41.9366 18.9011C41.9521 18.8513 41.9571 18.7989 41.9512 18.7471C41.9453 18.6953 41.9287 18.6453 41.9025 18.6003Z" fill="white"/>
|
||||
<path d="M37.0612 8.52706C37.1025 8.52706 37.2112 8.43331 37.1775 8.36956C37.1547 8.34347 37.125 8.32434 37.0918 8.31439C37.0587 8.30444 37.0234 8.30407 36.99 8.31331C36.9681 8.33054 36.9508 8.35291 36.9397 8.37843C36.9286 8.40395 36.924 8.43182 36.9262 8.45956C36.9398 8.48264 36.9598 8.5013 36.9838 8.51328C37.0077 8.52525 37.0346 8.53004 37.0612 8.52706Z" fill="white"/>
|
||||
<path d="M41.34 26.565C41.2536 26.5206 41.1533 26.5113 41.0603 26.5393C40.9673 26.5673 40.8887 26.6303 40.8412 26.715C40.79 26.8342 40.7818 26.9674 40.8181 27.092C40.8543 27.2165 40.9327 27.3245 41.0399 27.3975C41.137 27.4334 41.2439 27.4322 41.34 27.3941C41.4362 27.356 41.515 27.2838 41.5612 27.1913C41.59 27.1361 41.6072 27.0755 41.6116 27.0133C41.6161 26.9512 41.6076 26.8888 41.5869 26.83C41.5661 26.7713 41.5335 26.7174 41.491 26.6718C41.4485 26.6262 41.3971 26.5899 41.34 26.565Z" fill="white"/>
|
||||
<path d="M45.7462 27.8021C45.6637 27.9858 45.7125 28.2033 45.8437 28.2558C45.9246 28.287 46.0142 28.287 46.095 28.2558C46.1363 28.0496 46.1737 27.8433 46.2075 27.6333C46.1675 27.6074 46.1221 27.5912 46.0747 27.5859C46.0274 27.5806 45.9795 27.5863 45.9348 27.6027C45.8901 27.6191 45.8498 27.6456 45.8171 27.6802C45.7843 27.7148 45.7601 27.7565 45.7462 27.8021Z" fill="white"/>
|
||||
<path d="M40.0201 27.7497C40.0047 27.72 39.9816 27.6949 39.9533 27.6771C39.9249 27.6593 39.8923 27.6494 39.8588 27.6484C39.829 27.6626 39.803 27.6835 39.7828 27.7096C39.7626 27.7356 39.7488 27.7661 39.7426 27.7984C39.7426 27.8397 39.8288 27.9597 39.9001 27.9597C39.9713 27.9597 40.0313 27.7947 40.0201 27.7497Z" fill="white"/>
|
||||
<path d="M45.3151 30.6901C45.2838 30.8284 45.245 30.9648 45.1988 31.0989C45.1756 31.1216 45.1581 31.1496 45.1477 31.1804C45.1373 31.2113 45.1344 31.2441 45.1392 31.2763C45.1439 31.3085 45.1562 31.3391 45.1751 31.3656C45.1939 31.3921 45.2188 31.4138 45.2476 31.4289C45.3526 31.1214 45.4538 30.8139 45.5476 30.5026C45.4922 30.4983 45.4372 30.5153 45.394 30.5502C45.3508 30.585 45.3225 30.6351 45.3151 30.6901Z" fill="white"/>
|
||||
<path d="M45.57 24.3159C45.6889 24.3563 45.818 24.3549 45.936 24.312C46.054 24.269 46.1537 24.1871 46.2188 24.0797C46.2515 23.9656 46.2441 23.8437 46.1976 23.7345C46.1512 23.6252 46.0686 23.5353 45.9638 23.4797C45.8708 23.4323 45.7632 23.4227 45.6633 23.4527C45.5634 23.4827 45.479 23.5502 45.4275 23.6409C45.3681 23.7522 45.3498 23.8809 45.3758 24.0044C45.4019 24.1279 45.4707 24.2382 45.57 24.3159Z" fill="white"/>
|
||||
<path d="M24.0825 5.74161C24.0435 5.73393 24.0032 5.73463 23.9644 5.74368C23.9256 5.75273 23.8892 5.76992 23.8576 5.79411C23.7826 5.86536 23.8576 6.05661 23.9551 6.08286C24.0175 6.08964 24.0807 6.08062 24.1388 6.05661C24.2213 5.90661 24.1875 5.76411 24.0825 5.74161Z" fill="white"/>
|
||||
<path d="M44.7301 28.9345C44.6176 28.897 44.5726 28.9645 44.5351 29.0432C44.5195 29.0652 44.5098 29.0908 44.5067 29.1176C44.5036 29.1443 44.5072 29.1714 44.5173 29.1964C44.5274 29.2214 44.5435 29.2435 44.5643 29.2606C44.5851 29.2777 44.6099 29.2894 44.6363 29.2945C44.7138 29.2941 44.7908 29.2828 44.8651 29.2607C44.879 29.2306 44.8866 29.198 44.8873 29.1648C44.888 29.1316 44.8818 29.0987 44.8691 29.068C44.8564 29.0373 44.8375 29.0097 44.8136 28.9867C44.7896 28.9637 44.7612 28.9459 44.7301 28.9345Z" fill="white"/>
|
||||
<path d="M40.8075 30.0791C40.9345 30.1064 41.0667 30.0973 41.1887 30.0529C41.3108 30.0084 41.4178 29.9304 41.4975 29.8278C41.5378 29.7147 41.5334 29.5905 41.4854 29.4804C41.4373 29.3704 41.3491 29.2827 41.2388 29.2353C41.1259 29.1983 41.0038 29.2004 40.8922 29.2412C40.7807 29.282 40.6861 29.3592 40.6237 29.4603C40.5702 29.5676 40.5594 29.6911 40.5935 29.806C40.6277 29.9209 40.7041 30.0185 40.8075 30.0791Z" fill="white"/>
|
||||
<path d="M38.9174 13.6083C38.9404 13.5927 38.9594 13.5722 38.973 13.5481C38.9867 13.524 38.9946 13.4971 38.9962 13.4695C38.9906 13.4342 38.9713 13.4026 38.9425 13.3815C38.9137 13.3604 38.8777 13.3516 38.8424 13.357C38.7449 13.3833 38.7899 13.5033 38.8012 13.552C38.8124 13.6008 38.8987 13.6233 38.9174 13.6083Z" fill="white"/>
|
||||
<path d="M37.5151 13.1846C37.5557 13.1809 37.5951 13.1686 37.6307 13.1486C37.6662 13.1286 37.6971 13.1012 37.7213 13.0684C37.8076 12.8959 37.7213 12.7834 37.5301 12.6934C37.3988 12.7759 37.2451 12.8246 37.2826 13.0084C37.291 13.0621 37.3198 13.1106 37.3632 13.1435C37.4066 13.1763 37.4611 13.1911 37.5151 13.1846Z" fill="white"/>
|
||||
<path d="M37.5563 7.6157C37.5553 7.53352 37.5319 7.45316 37.4888 7.38321C37.5452 7.38863 37.6015 7.37221 37.6462 7.33732C37.6908 7.30243 37.7204 7.25175 37.7288 7.19571C37.7331 7.15538 37.7278 7.1146 37.7135 7.07668C37.6991 7.03875 37.676 7.00472 37.6461 6.97735C37.6162 6.94998 37.5802 6.93003 37.5412 6.9191C37.5021 6.90818 37.4611 6.90659 37.4213 6.91446C37.2525 6.94071 37.1925 6.83945 37.0875 6.7457C37.1228 6.70498 37.1542 6.66104 37.1813 6.61445C37.2089 6.61324 37.2359 6.60553 37.26 6.59196C37.2659 6.6174 37.2735 6.64245 37.2825 6.66695C37.3128 6.71688 37.3583 6.75581 37.4122 6.77808C37.4662 6.80034 37.5258 6.80476 37.5825 6.7907C37.695 6.7457 37.695 6.5432 37.6763 6.4382C37.6434 6.38068 37.598 6.33128 37.5435 6.29363C37.489 6.25599 37.4267 6.23106 37.3613 6.2207C37.3613 6.1532 37.3875 6.15696 37.47 6.07071L37.515 6.0107L37.0275 5.6582C36.9318 5.71341 36.8518 5.79215 36.795 5.88695C36.7709 5.9306 36.758 5.97958 36.7575 6.02946C36.6375 6.02946 36.5625 6.1157 36.5325 6.27695C36.5133 6.32363 36.5037 6.37372 36.5043 6.4242C36.5048 6.47469 36.5156 6.52454 36.5359 6.57076C36.5562 6.61698 36.5856 6.65863 36.6224 6.6932C36.6592 6.72777 36.7026 6.75456 36.75 6.77195C36.6685 6.8091 36.5829 6.83678 36.495 6.85445C36.4344 6.84698 36.3734 6.86363 36.3249 6.90082C36.2765 6.93801 36.2447 6.99274 36.2363 7.0532C36.213 7.11859 36.2103 7.18951 36.2284 7.25651C36.2464 7.32351 36.2845 7.38341 36.3375 7.4282C36.7425 7.7357 36.8925 7.7282 37.2525 7.3757L37.2862 7.3532C37.2432 7.40269 37.2079 7.4583 37.1813 7.51821C37.1695 7.54045 37.1633 7.56525 37.1633 7.59043C37.1634 7.61561 37.1696 7.64041 37.1814 7.66262C37.1933 7.68484 37.2104 7.70381 37.2313 7.71786C37.2522 7.73191 37.2762 7.74061 37.3013 7.7432C37.3262 7.75376 37.3532 7.75877 37.3803 7.75791C37.4074 7.75705 37.4339 7.75033 37.4581 7.73821C37.4824 7.72609 37.5037 7.70887 37.5207 7.68772C37.5376 7.66657 37.5498 7.642 37.5563 7.6157Z" fill="white"/>
|
||||
<path d="M37.3275 10.0015C37.3364 9.9983 37.3446 9.9932 37.3515 9.98658C37.3584 9.97995 37.3637 9.97194 37.3673 9.96308C37.3708 9.95422 37.3725 9.94471 37.3721 9.93518C37.3717 9.92565 37.3692 9.91631 37.365 9.90778C37.3462 9.86653 37.29 9.87028 37.2675 9.87778C37.2572 9.89008 37.2501 9.90473 37.2468 9.92043C37.2435 9.93613 37.2442 9.95239 37.2487 9.96778C37.2487 9.96778 37.2975 10.0165 37.3275 10.0015Z" fill="white"/>
|
||||
<path d="M38.0025 10.2066C38.0635 10.1617 38.111 10.1008 38.1394 10.0307C38.1679 9.96046 38.1763 9.88375 38.1637 9.80905C38.1314 9.75193 38.0779 9.70973 38.0148 9.69151C37.9517 9.67329 37.8841 9.68048 37.8262 9.71155C37.7973 9.72639 37.7717 9.74705 37.7511 9.77224C37.7304 9.79743 37.7152 9.82661 37.7064 9.85795C37.6976 9.88929 37.6954 9.9221 37.6999 9.95434C37.7044 9.98658 37.7155 10.0175 37.7325 10.0453C37.7962 10.1916 37.9087 10.2553 38.0025 10.2066Z" fill="white"/>
|
||||
<path d="M40.5188 15.3571C40.5934 15.2945 40.6442 15.2082 40.6627 15.1125C40.6811 15.0169 40.666 14.9179 40.62 14.8321C40.5375 14.6558 40.3687 14.6183 40.1475 14.7271C40.0869 14.7664 40.0403 14.8237 40.0141 14.891C39.9878 14.9583 39.9834 15.0321 40.0013 15.1021C40.0688 15.2558 40.4063 15.4171 40.5188 15.3571Z" fill="white"/>
|
||||
<path d="M40.3387 23.2545C40.56 23.3183 40.6837 23.007 40.62 22.917C40.5562 22.827 40.2788 22.797 40.215 22.917C40.1513 23.037 40.1212 23.1908 40.3387 23.2545Z" fill="white"/>
|
||||
<path d="M39.2775 21.9869C39.2936 21.9959 39.3114 22.0014 39.3297 22.0033C39.3481 22.0051 39.3666 22.0031 39.3842 21.9975C39.4018 21.9919 39.418 21.9827 39.4319 21.9706C39.4458 21.9584 39.457 21.9436 39.465 21.9269C39.4987 21.8294 39.3974 21.7844 39.3562 21.7657C39.3295 21.7651 39.3031 21.7714 39.2795 21.7838C39.2559 21.7963 39.2358 21.8146 39.2212 21.8369C39.2167 21.8646 39.2195 21.8931 39.2294 21.9194C39.2393 21.9457 39.2558 21.969 39.2775 21.9869Z" fill="white"/>
|
||||
<path d="M40.0688 16.2792C40.0201 16.208 39.8551 16.0542 39.7651 16.0917C39.6751 16.1292 39.7126 16.3617 39.7388 16.4442C39.7459 16.4676 39.7588 16.4888 39.7762 16.506C39.7936 16.5231 39.8151 16.5356 39.8386 16.5423C39.862 16.549 39.8869 16.5497 39.9107 16.5444C39.9345 16.5391 39.9567 16.5278 39.9751 16.5117C40.0688 16.4405 40.1401 16.373 40.0688 16.2792Z" fill="white"/>
|
||||
<path d="M39.7462 13.7767C39.7837 13.6304 39.6262 13.4617 39.405 13.4017C39.3402 13.3954 39.2753 13.4118 39.2213 13.4481C39.1673 13.4843 39.1275 13.5382 39.1088 13.6004C39.093 13.6802 39.1052 13.763 39.1435 13.8348C39.1818 13.9065 39.2437 13.9629 39.3187 13.9942C39.4039 14.0088 39.4916 13.9955 39.5686 13.9563C39.6456 13.9172 39.7079 13.8541 39.7462 13.7767Z" fill="white"/>
|
||||
<path d="M39.6675 25.2188C39.7048 25.2255 39.7431 25.2229 39.7791 25.2111C39.8151 25.1993 39.8476 25.1788 39.8737 25.1513C39.8897 25.1326 39.9009 25.1102 39.9062 25.0861C39.9115 25.062 39.9108 25.037 39.9041 25.0133C39.8974 24.9896 39.885 24.9679 39.8679 24.9501C39.8509 24.9323 39.8297 24.919 39.8063 24.9113C39.7425 24.8888 39.5625 24.8551 39.5062 24.9938C39.45 25.1326 39.6113 25.2001 39.6675 25.2188Z" fill="white"/>
|
||||
<path d="M41.2688 14.8794C41.2463 14.8231 41.0813 14.7256 41.0213 14.7556C40.9613 14.7856 40.9388 14.9956 40.9688 15.0181C40.9988 15.0406 41.1638 15.1456 41.2163 15.1044C41.2416 15.0733 41.2595 15.0369 41.2686 14.9979C41.2777 14.9589 41.2778 14.9184 41.2688 14.8794Z" fill="white"/>
|
||||
<path d="M43.0087 23.2949C43.0224 23.2714 43.0303 23.2449 43.0316 23.2178C43.0329 23.1906 43.0276 23.1636 43.0162 23.1389C43.0048 23.1142 42.9875 23.0927 42.966 23.0761C42.9445 23.0595 42.9193 23.0484 42.8925 23.0436C42.8516 23.0336 42.809 23.0325 42.7676 23.0402C42.7262 23.048 42.687 23.0645 42.6525 23.0886C42.6 23.1374 42.6113 23.3736 42.7125 23.4186C42.7682 23.441 42.8305 23.4406 42.886 23.4174C42.9414 23.3943 42.9855 23.3503 43.0087 23.2949Z" fill="white"/>
|
||||
<path d="M44.8425 23.093C44.8975 23.0676 44.9416 23.0234 44.967 22.9685C44.9925 22.9135 44.9975 22.8513 44.9812 22.793C44.9732 22.7644 44.9594 22.7378 44.9406 22.7149C44.9218 22.692 44.8985 22.6732 44.872 22.6598C44.8456 22.6464 44.8166 22.6386 44.787 22.637C44.7573 22.6354 44.7277 22.64 44.7 22.6505C44.6449 22.6745 44.6007 22.7181 44.5758 22.7727C44.5509 22.8274 44.547 22.8894 44.565 22.9467C44.5721 22.9755 44.5852 23.0024 44.6035 23.0257C44.6217 23.0491 44.6447 23.0683 44.671 23.0821C44.6972 23.0959 44.726 23.104 44.7555 23.1059C44.7851 23.1077 44.8147 23.1033 44.8425 23.093Z" fill="white"/>
|
||||
<path d="M45.2888 19.6239C45.3045 19.5984 45.3147 19.5699 45.3189 19.5402C45.323 19.5105 45.321 19.4802 45.3129 19.4513C45.3048 19.4225 45.2908 19.3956 45.2718 19.3724C45.2528 19.3491 45.2293 19.3301 45.2026 19.3164C45.1738 19.3009 45.1423 19.2913 45.1098 19.2882C45.0773 19.2851 45.0446 19.2886 45.0134 19.2983C44.9823 19.3081 44.9535 19.3241 44.9286 19.3452C44.9038 19.3664 44.8834 19.3923 44.8688 19.4214C44.8448 19.482 44.8442 19.5493 44.8671 19.6103C44.8899 19.6713 44.9346 19.7216 44.9925 19.7514C45.0489 19.7717 45.1108 19.7698 45.1658 19.7461C45.2208 19.7224 45.2648 19.6788 45.2888 19.6239Z" fill="white"/>
|
||||
<path d="M42.8063 21.2287C42.8264 21.194 42.8394 21.1557 42.8446 21.1159C42.8498 21.0762 42.8471 21.0358 42.8367 20.9971C42.8262 20.9584 42.8082 20.9222 42.7836 20.8905C42.7591 20.8588 42.7286 20.8323 42.6937 20.8124C42.6175 20.7789 42.5332 20.7678 42.4509 20.7805C42.3686 20.7931 42.2915 20.8289 42.2287 20.8837C42.2062 20.8349 42.1688 20.7637 42.0938 20.7787C42.0188 20.7937 42.015 20.9137 42.03 20.9324C42.0462 20.9538 42.0664 20.9718 42.0896 20.9853C42.1128 20.9989 42.1384 21.0076 42.165 21.0112C42.1485 21.0958 42.1576 21.1833 42.1909 21.2628C42.2243 21.3422 42.2805 21.41 42.3525 21.4574C42.4762 21.5212 42.72 21.3974 42.8063 21.2287Z" fill="white"/>
|
||||
<path d="M41.9363 14.3731C41.9508 14.3149 41.9441 14.2534 41.9173 14.1998C41.8904 14.1461 41.8453 14.1039 41.79 14.0806C41.7493 14.0536 41.6998 14.0433 41.6517 14.0517C41.6036 14.06 41.5605 14.0865 41.5313 14.1256C41.4113 14.2718 41.475 14.4031 41.5725 14.5493C41.7338 14.5306 41.8988 14.5643 41.9363 14.3731Z" fill="white"/>
|
||||
<path d="M41.8275 15.8507C41.79 15.8245 41.6512 15.817 41.6249 15.8507C41.5987 15.8845 41.6812 16.012 41.7187 16.027C41.747 16.0387 41.7783 16.0411 41.808 16.0337C41.8377 16.0262 41.8643 16.0094 41.8837 15.9857C41.8874 15.9602 41.8841 15.9342 41.8742 15.9105C41.8643 15.8867 41.8482 15.866 41.8275 15.8507Z" fill="white"/>
|
||||
<path d="M41.9213 17.6552C41.9536 17.649 41.9842 17.6363 42.0114 17.6179C42.0386 17.5994 42.0617 17.5755 42.0793 17.5477C42.0969 17.52 42.1086 17.4889 42.1136 17.4564C42.1187 17.4239 42.1171 17.3907 42.1088 17.3589C42.0718 17.2736 42.0063 17.2037 41.9236 17.1613C41.8408 17.1189 41.7458 17.1066 41.655 17.1264C41.5892 17.1518 41.5354 17.201 41.5041 17.2642C41.4729 17.3274 41.4665 17.4 41.4863 17.4677C41.5261 17.5442 41.5912 17.6046 41.6704 17.6388C41.7497 17.673 41.8383 17.6787 41.9213 17.6552Z" fill="white"/>
|
||||
<path d="M45.2663 22.6385C45.3788 22.691 45.57 22.5785 45.6413 22.4172C45.6836 22.3479 45.6978 22.2651 45.6811 22.1856C45.6644 22.1062 45.6179 22.0361 45.5513 21.9897C45.4705 21.954 45.3802 21.9456 45.2943 21.9659C45.2083 21.9862 45.1313 22.0341 45.075 22.1022C45.038 22.1998 45.0368 22.3073 45.0719 22.4056C45.1069 22.5039 45.1759 22.5864 45.2663 22.6385Z" fill="white"/>
|
||||
<path d="M15.3451 4.68729C15.4064 4.63363 15.446 4.55939 15.4563 4.47857C15.4667 4.39775 15.4471 4.31593 15.4013 4.24854C15.3794 4.22115 15.3523 4.19835 15.3216 4.18144C15.2909 4.16454 15.2572 4.15387 15.2224 4.15003C15.1875 4.1462 15.1523 4.14928 15.1186 4.15911C15.085 4.16893 15.0536 4.18531 15.0263 4.20729C14.9702 4.27467 14.9395 4.35959 14.9395 4.44729C14.9395 4.53498 14.9702 4.61991 15.0263 4.68729C15.0469 4.70872 15.0717 4.72578 15.0991 4.73743C15.1265 4.74907 15.1559 4.75507 15.1857 4.75507C15.2154 4.75507 15.2449 4.74907 15.2723 4.73743C15.2997 4.72578 15.3244 4.70872 15.3451 4.68729Z" fill="white"/>
|
||||
<path d="M11.0588 5.61054V5.5918L10.9613 5.66304C10.9976 5.65365 11.031 5.63564 11.0588 5.61054Z" fill="white"/>
|
||||
<path d="M41.3475 13.5269C41.446 13.5592 41.5524 13.558 41.6501 13.5234C41.7478 13.4888 41.8313 13.4228 41.8875 13.3357C41.9434 13.3315 41.9978 13.3149 42.0464 13.287C42.0951 13.2591 42.1369 13.2206 42.1687 13.1744C42.2246 13.0805 42.2711 12.9812 42.3075 12.8782C42.3594 12.8721 42.4108 12.8621 42.4612 12.8482L42.5475 12.8069C42.601 12.8142 42.6552 12.8142 42.7087 12.8069C42.6626 12.8554 42.637 12.92 42.6375 12.9869C42.6375 13.1294 42.3225 13.0657 42.33 13.2644C42.3375 13.4632 42.1087 13.5494 42.1425 13.7894C42.1762 14.0294 42.3637 14.2394 42.555 14.1382C42.7163 14.0386 42.8382 13.8862 42.9 13.7069C42.9273 13.727 42.9591 13.7401 42.9926 13.745C43.0262 13.7499 43.0604 13.7464 43.0923 13.7349C43.1241 13.7234 43.1527 13.7042 43.1754 13.6791C43.1981 13.6539 43.2143 13.6236 43.2225 13.5907C43.2241 13.5615 43.2195 13.5323 43.2092 13.505C43.1989 13.4777 43.183 13.4529 43.1626 13.4321C43.1421 13.4112 43.1175 13.3949 43.0904 13.3841C43.0632 13.3733 43.0341 13.3683 43.005 13.3694C43.1887 13.3244 43.5375 13.1819 43.4137 12.8632C43.371 12.7827 43.3032 12.7184 43.2207 12.6799C43.1382 12.6413 43.0454 12.6306 42.9563 12.6494C42.9886 12.5841 43.0055 12.5123 43.0055 12.4394C43.0055 12.3666 42.9886 12.2947 42.9563 12.2294C42.9227 12.1719 42.8759 12.1233 42.8198 12.0874C42.7638 12.0516 42.7 12.0295 42.6337 12.0232C42.6013 11.9925 42.5662 11.9649 42.5287 11.9407C42.4624 11.9041 42.3844 11.8947 42.3112 11.9144C42.1957 11.9452 42.097 12.0205 42.0366 12.1237C41.9762 12.2269 41.959 12.3498 41.9887 12.4657C41.9887 12.5144 41.9888 12.5669 42.0188 12.6232C41.9175 12.6232 41.82 12.6494 41.7262 12.6757H41.6962C41.55 12.6307 41.3212 12.7657 41.2012 12.9457C41.1474 13.043 41.1325 13.1572 41.1596 13.2652C41.1868 13.3731 41.2539 13.4666 41.3475 13.5269Z" fill="white"/>
|
||||
<path d="M15.5251 5.86112C15.4993 5.84133 15.4699 5.82687 15.4385 5.8186C15.4072 5.81033 15.3744 5.8084 15.3423 5.81294C15.3101 5.81748 15.2793 5.8284 15.2514 5.84504C15.2235 5.86169 15.1993 5.88373 15.18 5.90987C15.1578 5.92923 15.1399 5.95314 15.1277 5.97999C15.1155 6.00683 15.1091 6.036 15.1091 6.0655C15.1091 6.095 15.1155 6.12415 15.1277 6.151C15.1399 6.17785 15.1578 6.20176 15.18 6.22112C15.2294 6.26264 15.2918 6.28541 15.3563 6.28541C15.4208 6.28541 15.4832 6.26264 15.5326 6.22112C15.5783 6.17189 15.6031 6.10679 15.6017 6.0396C15.6003 5.97241 15.5728 5.9084 15.5251 5.86112Z" fill="white"/>
|
||||
<path d="M11.6212 9.2692C11.6481 9.25226 11.6709 9.22964 11.688 9.20295C11.7052 9.17626 11.7163 9.14613 11.7206 9.11468C11.7249 9.08324 11.7223 9.05123 11.7129 9.02092C11.7035 8.9906 11.6876 8.96271 11.6662 8.9392C11.6399 8.91767 11.6087 8.90297 11.5753 8.89643C11.542 8.88989 11.5075 8.8917 11.475 8.9017C11.4402 8.91981 11.4097 8.9453 11.3858 8.97639C11.3618 9.00747 11.3449 9.04342 11.3362 9.0817C11.3325 9.24295 11.5275 9.3142 11.6212 9.2692Z" fill="white"/>
|
||||
<path d="M46.3238 25.317L46.455 25.3619C46.455 25.1782 46.455 24.987 46.4813 24.8145C46.375 24.8517 46.2849 24.9246 46.2263 25.0207C46.2111 25.0461 46.2016 25.0744 46.1983 25.1038C46.195 25.1332 46.1981 25.163 46.2073 25.1911C46.2166 25.2192 46.2318 25.245 46.2519 25.2667C46.272 25.2884 46.2965 25.3056 46.3238 25.317Z" fill="white"/>
|
||||
<path d="M11.3287 6.94064C11.3785 6.86835 11.3993 6.77994 11.3868 6.69305C11.3743 6.60616 11.3294 6.52718 11.2613 6.47189C11.2291 6.43821 11.19 6.41182 11.1468 6.3945C11.1035 6.37717 11.057 6.3693 11.0105 6.37144C10.964 6.37357 10.9184 6.38564 10.8769 6.40685C10.8354 6.42806 10.799 6.45791 10.77 6.49438C10.7358 6.52063 10.7074 6.55361 10.6865 6.59128C10.6656 6.62895 10.6526 6.6705 10.6484 6.71338C10.6441 6.75627 10.6488 6.79956 10.662 6.84058C10.6751 6.8816 10.6966 6.91949 10.725 6.95189C10.812 7.01876 10.9191 7.05408 11.0289 7.05203C11.1386 7.04999 11.2443 7.01071 11.3287 6.94064Z" fill="white"/>
|
||||
<path d="M41.415 24.7727C41.415 24.6639 41.1076 24.5102 41.0063 24.6152C40.9685 24.6604 40.9478 24.7175 40.9478 24.7764C40.9478 24.8354 40.9685 24.8925 41.0063 24.9377C41.1188 25.0352 41.4188 24.8814 41.415 24.7727Z" fill="white"/>
|
||||
<path d="M40.74 10.6659C40.7471 10.6078 40.7414 10.5488 40.7233 10.493C40.7051 10.4373 40.675 10.3863 40.635 10.3434C40.673 10.3194 40.7037 10.2853 40.7235 10.2449C40.7434 10.2046 40.7517 10.1595 40.7475 10.1147C40.7475 9.94594 40.5825 9.91219 40.4287 9.86719C40.3275 9.98719 40.1925 10.0922 40.3013 10.2609L40.3387 10.2984C40.2737 10.3407 40.2179 10.3957 40.1747 10.4602C40.1315 10.5246 40.1019 10.5972 40.0875 10.6734C40.0865 10.7054 40.0918 10.7373 40.1032 10.7673C40.1145 10.7973 40.1316 10.8247 40.1536 10.848C40.1755 10.8714 40.2018 10.8901 40.231 10.9033C40.2602 10.9164 40.2918 10.9237 40.3238 10.9247C40.5413 10.9434 40.7288 10.8159 40.74 10.6659Z" fill="white"/>
|
||||
<path d="M40.9012 12.7273C40.9398 12.7165 40.9754 12.697 41.0053 12.6704C41.0352 12.6437 41.0586 12.6106 41.0737 12.5735C41.1112 12.4048 40.9688 12.3673 40.845 12.3223C40.7175 12.4048 40.6387 12.5098 40.7212 12.6485C40.7418 12.6761 40.7693 12.6979 40.8008 12.7117C40.8324 12.7255 40.867 12.7309 40.9012 12.7273Z" fill="white"/>
|
||||
<path d="M40.6275 11.9406C40.6388 11.9269 40.6467 11.9108 40.6506 11.8935C40.6545 11.8762 40.6542 11.8582 40.6498 11.841C40.6454 11.8238 40.6371 11.8079 40.6254 11.7946C40.6137 11.7813 40.599 11.7709 40.5825 11.7643C40.5475 11.7549 40.5108 11.7533 40.4751 11.7598C40.4395 11.7663 40.4057 11.7806 40.3763 11.8018C40.3088 11.8318 40.2412 11.8506 40.2037 11.9218C40.1662 11.9931 40.2563 12.0793 40.3613 12.0756C40.4125 12.0725 40.4626 12.059 40.5084 12.0357C40.5542 12.0125 40.5947 11.9801 40.6275 11.9406Z" fill="white"/>
|
||||
<path d="M39.6151 10.6994C39.5551 10.7519 39.4801 10.8119 39.4876 10.8907C39.4951 10.9694 39.7163 11.0669 39.8213 11.0107C39.9263 10.9544 39.9038 10.8719 39.87 10.7894C39.8637 10.7633 39.851 10.7392 39.833 10.7192C39.815 10.6993 39.7923 10.6841 39.767 10.6752C39.7417 10.6663 39.7145 10.6638 39.6879 10.668C39.6614 10.6723 39.6364 10.683 39.6151 10.6994Z" fill="white"/>
|
||||
<path d="M40.1213 13.4739C40.35 13.3951 40.4325 13.1326 40.3238 12.8476C40.3052 12.7947 40.2759 12.7462 40.2378 12.7051C40.1997 12.6639 40.1535 12.6311 40.1022 12.6086C40.0508 12.5861 39.9954 12.5744 39.9393 12.5742C39.8832 12.574 39.8277 12.5854 39.7762 12.6076C39.6635 12.6608 39.5744 12.7538 39.526 12.8687C39.4775 12.9835 39.4732 13.1122 39.5138 13.2301C39.5724 13.3335 39.6645 13.414 39.7749 13.4583C39.8852 13.5025 40.0074 13.508 40.1213 13.4739Z" fill="white"/>
|
||||
<path d="M40.5863 16.113C40.5961 16.1468 40.613 16.1782 40.636 16.205C40.6589 16.2318 40.6873 16.2533 40.7193 16.2683C40.7512 16.2832 40.786 16.2911 40.8213 16.2915C40.8565 16.2918 40.8915 16.2847 40.9238 16.2705C40.9815 16.2401 41.0266 16.1903 41.0513 16.13C41.0759 16.0697 41.0786 16.0026 41.0588 15.9405C41.023 15.8767 40.9647 15.8287 40.8953 15.8057C40.8259 15.7828 40.7504 15.7868 40.6838 15.8167C40.6324 15.8439 40.5935 15.89 40.5754 15.9452C40.5572 16.0004 40.5611 16.0606 40.5863 16.113Z" fill="white"/>
|
||||
<path d="M39.6937 11.94C39.7227 11.9343 39.7501 11.922 39.7736 11.9042C39.7972 11.8863 39.8164 11.8633 39.8297 11.8369C39.8431 11.8106 39.8503 11.7815 39.8508 11.7519C39.8512 11.7224 39.845 11.6931 39.8325 11.6663C39.813 11.6157 39.7751 11.5744 39.7264 11.5508C39.6776 11.5271 39.6218 11.5228 39.57 11.5388C39.4688 11.5613 39.3787 11.8163 39.45 11.8838C39.4834 11.9116 39.5228 11.9312 39.5652 11.9409C39.6075 11.9507 39.6515 11.9504 39.6937 11.94Z" fill="white"/>
|
||||
<path d="M25.1212 7.60573C25.1711 7.60671 25.22 7.59102 25.2601 7.56114C25.3001 7.53127 25.3291 7.4889 25.3424 7.44073C25.3796 7.37745 25.3929 7.30297 25.3799 7.23073C25.2674 7.23073 25.0837 7.09198 25.0049 7.19323C24.9262 7.29448 25.0424 7.46698 25.0574 7.56823L25.1212 7.60573Z" fill="white"/>
|
||||
<path d="M40.8375 22.5829C40.8788 22.6129 41.0213 22.6579 41.0813 22.5829C41.1413 22.5079 41.0138 22.3879 40.965 22.3654C40.9163 22.3429 40.8112 22.3279 40.77 22.4104C40.761 22.4426 40.7627 22.4768 40.7749 22.5079C40.787 22.5391 40.809 22.5654 40.8375 22.5829Z" fill="white"/>
|
||||
<path d="M16.1475 3.13938C16.1762 3.06973 16.1762 2.99152 16.1475 2.92188C15.7725 3.05688 15.3975 3.20688 15.0525 3.36438C15.1317 3.46021 15.2373 3.53063 15.3562 3.56688C15.5147 3.57572 15.6726 3.54046 15.8123 3.46499C15.952 3.38952 16.068 3.27681 16.1475 3.13938Z" fill="white"/>
|
||||
<path d="M41.5013 20.5654C41.5013 20.4529 41.5913 20.2541 41.4788 20.1904C41.3663 20.1266 41.2125 20.2654 41.1038 20.2954V20.3741C41.1092 20.4234 41.131 20.4693 41.1657 20.5047C41.2004 20.54 41.2459 20.5627 41.295 20.5691C41.362 20.5923 41.4351 20.591 41.5013 20.5654Z" fill="white"/>
|
||||
<path d="M41.1675 21.101C41.1821 21.0428 41.1753 20.9814 41.1485 20.9277C41.1216 20.8741 41.0765 20.8318 41.0213 20.8085C40.9808 20.7807 40.9311 20.7697 40.8827 20.7782C40.8343 20.7866 40.7911 20.8136 40.7625 20.8535C40.6425 20.9998 40.7062 21.131 40.8037 21.2773C40.965 21.2585 41.13 21.2848 41.1675 21.101Z" fill="white"/>
|
||||
<path d="M39.6038 12.165C39.5996 12.2569 39.6277 12.3472 39.6832 12.4205C39.7387 12.4938 39.8181 12.5454 39.9076 12.5663C40.0876 12.6038 40.2038 12.5063 40.2488 12.27C40.2788 12.1125 40.1738 11.895 40.0538 11.8688C39.9564 11.8604 39.8591 11.8851 39.7774 11.9389C39.6958 11.9926 39.6346 12.0723 39.6038 12.165Z" fill="white"/>
|
||||
<path d="M22.29 9.33343C22.3132 9.31072 22.3317 9.2836 22.3443 9.25366C22.3569 9.22371 22.3634 9.19155 22.3634 9.15905C22.3634 9.12656 22.3569 9.09439 22.3443 9.06445C22.3317 9.0345 22.3132 9.00738 22.29 8.98468C22.2474 8.94357 22.1918 8.91879 22.1328 8.91467C22.0738 8.91056 22.0153 8.92738 21.9675 8.96218C21.9442 8.98488 21.9257 9.012 21.9131 9.04195C21.9005 9.07189 21.894 9.10406 21.894 9.13655C21.894 9.16904 21.9005 9.20121 21.9131 9.23116C21.9257 9.2611 21.9442 9.28823 21.9675 9.31093C21.9834 9.33857 22.0059 9.36186 22.033 9.37876C22.0601 9.39567 22.0909 9.40567 22.1227 9.4079C22.1546 9.41012 22.1865 9.40449 22.2157 9.39151C22.2448 9.37852 22.2703 9.35858 22.29 9.33343Z" fill="white"/>
|
||||
<path d="M21.7462 4.47039C21.7404 4.35268 21.689 4.24186 21.6029 4.16137C21.5168 4.08088 21.4028 4.03704 21.285 4.03913C21.185 4.04054 21.0883 4.07523 21.0102 4.1377C20.9321 4.20018 20.8771 4.28689 20.8537 4.38414C20.8087 4.55664 21.0375 4.75914 21.2775 4.80414C21.3827 4.81432 21.4881 4.78616 21.5742 4.72484C21.6603 4.66351 21.7214 4.57316 21.7462 4.47039Z" fill="white"/>
|
||||
<path d="M23.2463 6.12414C23.2463 6.07914 23.2463 5.97414 23.175 5.92539C23.1198 5.87178 23.0458 5.8418 22.9688 5.8418C22.8918 5.8418 22.8178 5.87178 22.7625 5.92539C22.728 5.98501 22.7147 6.0546 22.7249 6.12274C22.7351 6.19089 22.7682 6.25353 22.8188 6.30039C22.905 6.37914 23.1 6.31539 23.2463 6.12414Z" fill="white"/>
|
||||
<path d="M21.1274 5.7342C21.1499 5.7342 21.1762 5.60295 21.1274 5.5617C21.0787 5.52045 20.9812 5.6067 20.9512 5.6442C20.9419 5.66742 20.9394 5.69282 20.9441 5.7174C20.9487 5.74198 20.9603 5.76473 20.9774 5.78295C20.9962 5.80545 21.0899 5.7642 21.1274 5.7342Z" fill="white"/>
|
||||
<path d="M20.9175 6.19855C20.89 6.18591 20.8591 6.18237 20.8295 6.18844C20.7998 6.19451 20.7728 6.20987 20.7525 6.2323C20.7262 6.26605 20.6962 6.3973 20.7525 6.43105C20.8087 6.4648 20.9212 6.40105 20.94 6.36355C20.9552 6.33749 20.9613 6.30707 20.9572 6.27716C20.9531 6.24725 20.9392 6.21958 20.9175 6.19855Z" fill="white"/>
|
||||
<path d="M16.2937 7.89045C16.3543 7.83634 16.3934 7.76217 16.4037 7.68157C16.4141 7.60097 16.395 7.51935 16.35 7.4517C16.2627 7.38615 16.1558 7.35229 16.0467 7.3557C15.9376 7.35911 15.833 7.39959 15.75 7.47045C15.7055 7.53167 15.6859 7.60741 15.6949 7.68251C15.7039 7.75761 15.741 7.82652 15.7987 7.87545C15.8286 7.91152 15.8659 7.94082 15.9079 7.96139C15.95 7.98196 15.996 7.99333 16.0428 7.99475C16.0897 7.99617 16.1362 7.9876 16.1795 7.96962C16.2227 7.95163 16.2617 7.92464 16.2937 7.89045Z" fill="white"/>
|
||||
<path d="M21.1463 5.19094C21.122 5.15904 21.0909 5.13304 21.0551 5.11486C21.0194 5.09668 20.9801 5.08679 20.94 5.08594C20.7713 5.11219 20.7863 5.25844 20.79 5.38969C20.9138 5.48344 21.0375 5.51344 21.1388 5.38969C21.1564 5.35976 21.1662 5.32594 21.1675 5.29126C21.1688 5.25657 21.1616 5.22211 21.1463 5.19094Z" fill="white"/>
|
||||
<path d="M23.1974 8.10363C23.2211 8.12174 23.2482 8.13473 23.2772 8.14174C23.3061 8.14875 23.3362 8.14963 23.3655 8.14433C23.3948 8.13904 23.4227 8.12768 23.4473 8.11098C23.472 8.09428 23.4929 8.07262 23.5087 8.04737C23.5912 7.91612 23.5762 7.67237 23.4824 7.63112C23.4132 7.61652 23.3412 7.6218 23.2749 7.64635C23.2085 7.6709 23.1505 7.71373 23.1074 7.76988C23.0891 7.79706 23.0768 7.82786 23.0715 7.86019C23.0661 7.89253 23.0677 7.92564 23.0763 7.95729C23.0848 7.98894 23.1 8.01839 23.1209 8.04364C23.1418 8.06888 23.1679 8.08934 23.1974 8.10363Z" fill="white"/>
|
||||
<path d="M24.765 5.02781C24.8625 5.00895 24.9539 4.96645 25.0312 4.90406C25.0512 4.88952 25.067 4.87006 25.0771 4.84758C25.0873 4.8251 25.0915 4.80036 25.0892 4.77579C25.0869 4.75122 25.0783 4.72766 25.0642 4.70742C25.0501 4.68717 25.031 4.67094 25.0087 4.6603C24.9834 4.63557 24.9522 4.61775 24.9181 4.60856C24.8839 4.59936 24.848 4.5991 24.8138 4.6078C24.789 4.56092 24.7529 4.52097 24.7087 4.49155C24.648 4.45922 24.5782 4.44795 24.5103 4.45948C24.4425 4.47102 24.3804 4.50471 24.3337 4.5553C24.195 4.7578 24.1987 4.99406 24.3337 5.08031C24.4037 5.11129 24.4807 5.12277 24.5566 5.11352C24.6325 5.10428 24.7045 5.07466 24.765 5.02781Z" fill="white"/>
|
||||
<path d="M24.4162 4.23812C24.4449 4.21665 24.4686 4.18911 24.4854 4.15746C24.5023 4.12582 24.512 4.09084 24.5138 4.05502C24.5156 4.01921 24.5094 3.98344 24.4958 3.95027C24.4822 3.9171 24.4614 3.88734 24.435 3.86312C24.3856 3.8216 24.3232 3.79883 24.2587 3.79883C24.1942 3.79883 24.1318 3.8216 24.0825 3.86312C24.0363 3.91468 24.0109 3.98143 24.0109 4.05062C24.0109 4.1198 24.0363 4.18655 24.0825 4.23812C24.1039 4.26093 24.1297 4.27912 24.1584 4.29155C24.1871 4.30399 24.2181 4.3104 24.2494 4.3104C24.2806 4.3104 24.3116 4.30399 24.3403 4.29155C24.369 4.27912 24.3948 4.26093 24.4162 4.23812Z" fill="white"/>
|
||||
<path d="M25.0351 5.9933C25.0556 6.00736 25.0791 6.01624 25.1038 6.01918C25.1285 6.02212 25.1535 6.01903 25.1767 6.01019C25.2 6.00134 25.2207 5.98699 25.2372 5.96838C25.2536 5.94976 25.2654 5.92743 25.2713 5.9033C25.3013 5.83205 25.3651 5.62955 25.2713 5.58455C25.1776 5.53955 24.9976 5.65205 24.9526 5.71955C24.9378 5.74239 24.9282 5.76817 24.9243 5.7951C24.9205 5.82203 24.9226 5.84947 24.9305 5.87552C24.9383 5.90156 24.9517 5.92559 24.9698 5.94593C24.9879 5.96627 25.0101 5.98243 25.0351 5.9933Z" fill="white"/>
|
||||
<path d="M23.6512 5.27289C23.5612 5.19789 23.4712 5.27289 23.4149 5.36289C23.3587 5.45289 23.3849 5.61039 23.4862 5.62914C23.5874 5.64789 23.7412 5.70789 23.7899 5.57664C23.8387 5.44539 23.7149 5.32539 23.6512 5.27289Z" fill="white"/>
|
||||
<path d="M23.7075 9.33737C23.7525 9.31112 23.8275 9.13487 23.7825 9.08612C23.7375 9.03737 23.565 9.08612 23.5387 9.08612C23.5125 9.08612 23.4525 9.25862 23.4862 9.30737C23.5171 9.33154 23.5539 9.34705 23.5928 9.35233C23.6317 9.3576 23.6712 9.35243 23.7075 9.33737Z" fill="white"/>
|
||||
<path d="M23.8537 3.25586C23.7431 3.19754 23.616 3.17803 23.493 3.20047C23.3699 3.22291 23.2579 3.28599 23.175 3.37961C23.0287 3.57461 23.115 3.85586 23.3775 4.04711C23.4204 4.07922 23.4694 4.10247 23.5214 4.11552C23.5734 4.12857 23.6275 4.13116 23.6805 4.12313C23.7335 4.11511 23.7844 4.09663 23.8303 4.06878C23.8761 4.04092 23.9159 4.00424 23.9475 3.96087C24.0215 3.85246 24.0528 3.72054 24.0355 3.59042C24.0182 3.4603 23.9535 3.34116 23.8537 3.25586Z" fill="white"/>
|
||||
<path d="M20.8913 6.8367C20.9057 6.79573 20.9101 6.75191 20.9043 6.70888C20.8984 6.66584 20.8824 6.62482 20.8575 6.5892C20.8416 6.56456 20.8203 6.54382 20.7953 6.52854C20.7702 6.51326 20.7421 6.50383 20.7129 6.50094C20.6837 6.49806 20.6542 6.5018 20.6267 6.51189C20.5991 6.52198 20.5742 6.53815 20.5537 6.5592C20.5134 6.59588 20.4886 6.6466 20.4844 6.70098C20.4802 6.75536 20.497 6.80928 20.5313 6.8517C20.5875 6.93795 20.8575 6.9267 20.8913 6.8367Z" fill="white"/>
|
||||
<path d="M18.2813 5.24683C18.239 5.29584 18.2158 5.35839 18.2158 5.42308C18.2158 5.48778 18.239 5.55032 18.2813 5.59933C18.4275 5.72683 18.5775 5.65183 18.7163 5.59933C18.7463 5.31058 18.7163 5.20184 18.5588 5.15684C18.509 5.14051 18.4552 5.14043 18.4053 5.1566C18.3555 5.17278 18.312 5.20437 18.2813 5.24683Z" fill="white"/>
|
||||
<path d="M19.2037 4.90198C19.3874 4.70698 19.4062 4.55698 19.2712 4.42198C19.1998 4.37571 19.1156 4.35332 19.0306 4.35804C18.9457 4.36276 18.8645 4.39434 18.7987 4.44824C18.7612 4.52635 18.7473 4.61369 18.7586 4.69959C18.7699 4.7855 18.806 4.86624 18.8625 4.93198C18.886 4.95426 18.9139 4.97129 18.9445 4.98195C18.9751 4.99261 19.0075 4.99665 19.0398 4.99382C19.072 4.99098 19.1034 4.98133 19.1316 4.9655C19.1599 4.94967 19.1844 4.92802 19.2037 4.90198Z" fill="white"/>
|
||||
<path d="M18.435 6.58891C18.5925 6.48766 18.7124 6.38266 18.6374 6.21391C18.6173 6.17971 18.5889 6.15114 18.5548 6.13083C18.5207 6.11051 18.4821 6.0991 18.4424 6.09766C18.3939 6.11001 18.3483 6.13197 18.3083 6.16225C18.2684 6.19252 18.2349 6.23048 18.2099 6.27391C18.1387 6.45016 18.3075 6.49891 18.435 6.58891Z" fill="white"/>
|
||||
<path d="M18.2962 3.73199C18.3794 3.73499 18.4598 3.7631 18.5267 3.81263C18.5936 3.86216 18.644 3.93079 18.6712 4.00949C18.7221 4.07351 18.7925 4.11915 18.8717 4.13946C18.9509 4.15977 19.0346 4.15363 19.11 4.12198C19.1922 4.04098 19.2427 3.93324 19.2525 3.81824C19.2787 3.79735 19.2993 3.7703 19.3125 3.73949C19.3203 3.71092 19.3224 3.68106 19.3185 3.65168C19.3146 3.62231 19.3048 3.59401 19.2898 3.56848C19.2747 3.54295 19.2547 3.5207 19.2309 3.50305C19.2071 3.4854 19.18 3.47271 19.1512 3.46573C19.1339 3.43801 19.1082 3.41652 19.0779 3.40438C19.0475 3.39225 19.0141 3.39009 18.9825 3.39824C18.8994 3.41607 18.8134 3.41558 18.7305 3.3968C18.6476 3.37801 18.5698 3.34139 18.5025 3.28948C18.478 3.27121 18.4496 3.25883 18.4196 3.25329C18.3896 3.24776 18.3587 3.24922 18.3293 3.25756C18.2999 3.2659 18.2728 3.2809 18.2502 3.3014C18.2275 3.32189 18.2099 3.34733 18.1987 3.37574C18.1125 3.51074 18.1575 3.71699 18.2962 3.73199Z" fill="white"/>
|
||||
<path d="M17.1937 7.90847C17.1438 7.86666 17.0807 7.84375 17.0156 7.84375C16.9505 7.84375 16.8874 7.86666 16.8375 7.90847C16.7928 7.96074 16.7683 8.02723 16.7683 8.09597C16.7683 8.16471 16.7928 8.23119 16.8375 8.28347C16.8802 8.32493 16.9373 8.34813 16.9968 8.34813C17.0563 8.34813 17.1135 8.32493 17.1562 8.28347C17.1857 8.26306 17.2104 8.2365 17.2285 8.20562C17.2467 8.17475 17.258 8.14029 17.2616 8.10463C17.2651 8.06897 17.2609 8.03296 17.2492 7.99909C17.2375 7.96522 17.2185 7.9343 17.1937 7.90847Z" fill="white"/>
|
||||
<path d="M17.1562 9.21368C17.1772 9.2005 17.1944 9.18224 17.2063 9.1606C17.2183 9.13896 17.2245 9.11464 17.2245 9.08992C17.2245 9.06521 17.2183 9.04089 17.2063 9.01925C17.1944 8.99761 17.1772 8.97935 17.1562 8.96618C17.0737 8.89493 16.9762 8.84243 16.8712 8.93243C16.832 8.98874 16.8136 9.05691 16.8191 9.1253C16.8245 9.19369 16.8536 9.25806 16.9012 9.30743C16.9912 9.31493 17.085 9.26618 17.1562 9.21368Z" fill="white"/>
|
||||
<path d="M19.9388 6.80945C19.8488 6.73445 19.7812 6.78319 19.7175 6.84694C19.695 6.8616 19.6766 6.88162 19.6639 6.90519C19.6511 6.92876 19.6444 6.95514 19.6444 6.98194C19.6444 7.00874 19.6511 7.03512 19.6639 7.05869C19.6766 7.08226 19.695 7.10228 19.7175 7.11694C19.7887 7.15444 19.875 7.19944 19.9425 7.16194C20.01 7.12444 20.0325 6.8882 19.9388 6.80945Z" fill="white"/>
|
||||
<path d="M20.5762 3.46555C20.6376 3.48998 20.706 3.48998 20.7674 3.46555C20.8987 3.4018 20.9549 3.7318 21.1424 3.65305C21.3299 3.5743 21.4912 3.7543 21.7012 3.65305C21.9112 3.5518 22.0387 3.27805 21.8737 3.14305C21.7164 3.02513 21.5224 2.96669 21.3262 2.97806C21.2853 2.97583 21.2446 2.98631 21.2099 3.00805C21.247 2.93961 21.2619 2.86133 21.2525 2.78405C21.2431 2.70678 21.2099 2.63435 21.1575 2.5768C21.0337 2.49055 20.8274 2.57681 20.7074 2.74931C20.6527 2.72224 20.5908 2.71347 20.5307 2.72427C20.4706 2.73507 20.4155 2.76488 20.3737 2.8093C20.3145 2.87816 20.2792 2.96434 20.2731 3.05493C20.2671 3.14553 20.2905 3.23566 20.3399 3.31181C20.2671 3.30281 20.1933 3.31101 20.1242 3.33576C20.0552 3.36051 19.9929 3.40111 19.9424 3.4543C19.8759 3.54768 19.845 3.66179 19.8553 3.77597C19.8657 3.89015 19.9165 3.99686 19.9987 4.0768C20.0721 4.14191 20.1668 4.17787 20.2649 4.17787C20.3631 4.17787 20.4578 4.14191 20.5312 4.0768C20.5911 3.9876 20.6268 3.88432 20.6347 3.77714C20.6426 3.66996 20.6224 3.56257 20.5762 3.46555Z" fill="white"/>
|
||||
<path d="M19.6274 2.97391L19.8862 2.7264C19.8523 2.65502 19.8135 2.5861 19.7699 2.52016C19.7415 2.48482 19.7046 2.45731 19.6626 2.44025C19.6206 2.42319 19.5749 2.41713 19.5299 2.42266C19.5311 2.37898 19.5234 2.33552 19.5073 2.2949C19.4912 2.25429 19.467 2.21738 19.4362 2.18641C19.4042 2.16199 19.3801 2.12873 19.3667 2.09075C19.3534 2.05277 19.3515 2.01172 19.3612 1.97266L18.6899 2.12641C18.6945 2.1364 18.7025 2.1444 18.7125 2.14891C18.915 2.20891 18.8924 2.38891 18.9262 2.54266C18.9297 2.58468 18.9438 2.62512 18.9673 2.66014C18.9908 2.69516 19.0228 2.72361 19.0604 2.74276C19.098 2.76192 19.1398 2.77117 19.1819 2.76962C19.2241 2.76807 19.2651 2.75577 19.3012 2.73391L19.3499 2.71141C19.3564 2.75201 19.3747 2.78983 19.4025 2.82015C19.4692 2.88248 19.5451 2.93432 19.6274 2.97391Z" fill="white"/>
|
||||
<path d="M20.64 6.12714C20.73 6.12714 20.7675 6.02215 20.7262 5.92465C20.7044 5.87781 20.6732 5.83597 20.6345 5.80177C20.5958 5.76757 20.5504 5.74173 20.5012 5.72589C20.4846 5.72065 20.4669 5.71936 20.4496 5.72212C20.4324 5.72488 20.416 5.73163 20.4018 5.74182C20.3876 5.752 20.376 5.76536 20.3679 5.78082C20.3598 5.79628 20.3553 5.81343 20.355 5.8309C20.3595 5.86729 20.3718 5.90226 20.3913 5.93336C20.4107 5.96445 20.4367 5.99092 20.4675 6.01089C20.52 6.05964 20.5612 6.11964 20.64 6.12714Z" fill="white"/>
|
||||
<path d="M19.9087 9.58957C19.9087 9.58957 19.9387 9.52582 19.9087 9.50332C19.9024 9.49614 19.8946 9.49039 19.8859 9.48645C19.8772 9.48251 19.8677 9.48047 19.8581 9.48047C19.8485 9.48047 19.8391 9.48251 19.8304 9.48645C19.8216 9.49039 19.8138 9.49614 19.8075 9.50332C19.7956 9.51751 19.7891 9.53543 19.7891 9.55395C19.7891 9.57246 19.7956 9.59039 19.8075 9.60457C19.8337 9.61957 19.8937 9.60457 19.9087 9.58957Z" fill="white"/>
|
||||
<path d="M19.8075 9.10792C19.92 8.99167 19.9387 8.86792 19.8562 8.79667C19.7919 8.75721 19.7179 8.73633 19.6425 8.73633C19.567 8.73633 19.493 8.75721 19.4287 8.79667C19.388 8.84825 19.3685 8.91338 19.3741 8.97885C19.3797 9.04431 19.4099 9.1052 19.4587 9.14917C19.4839 9.17047 19.5131 9.18636 19.5447 9.19587C19.5762 9.20537 19.6094 9.20828 19.6421 9.20441C19.6748 9.20054 19.7064 9.18997 19.7348 9.17337C19.7633 9.15677 19.788 9.13449 19.8075 9.10792Z" fill="white"/>
|
||||
<path d="M40.5863 24.8359H22.8788V38.5684H40.5863V24.8359Z" fill="#20377D"/>
|
||||
<path d="M38.5612 35.5684H25.1212V36.8546H38.5612V35.5684Z" fill="#00BFB3"/>
|
||||
<path d="M38.5612 32.4746H25.1212V33.7609H38.5612V32.4746Z" fill="#00BFB3"/>
|
||||
<path d="M38.5612 29.3809H25.1212V30.6671H38.5612V29.3809Z" fill="#00BFB3"/>
|
||||
<path d="M24.7612 9.54297H7.05371V23.2755H24.7612V9.54297Z" fill="#20377D"/>
|
||||
<path d="M14.9888 11.1758H8.73755V15.2858H14.9888V11.1758Z" fill="#7DE2D1"/>
|
||||
<path d="M14.9888 11.1758H8.73755V12.4133H14.9888V11.1758Z" fill="#00BFB3"/>
|
||||
<path d="M23.085 11.1758H16.8337V15.2858H23.085V11.1758Z" fill="#7DE2D1"/>
|
||||
<path d="M23.085 11.1758H16.8337V12.4133H23.085V11.1758Z" fill="#00BFB3"/>
|
||||
<path d="M14.9888 17.502H8.73755V21.612H14.9888V17.502Z" fill="#7DE2D1"/>
|
||||
<path d="M14.9888 17.502H8.73755V18.7395H14.9888V17.502Z" fill="#00BFB3"/>
|
||||
<path d="M23.085 17.502H16.8337V21.612H23.085V17.502Z" fill="#009A8E"/>
|
||||
<path d="M23.085 17.502H16.8337V18.7395H23.085V17.502Z" fill="#343741"/>
|
||||
<path d="M33.4725 17.4043H15.765V31.1368H33.4725V17.4043Z" fill="#7DE2D1"/>
|
||||
<path d="M28.1363 23.4297L23.8838 29.8159H32.3925L28.1363 23.4297Z" fill="#00BFB3"/>
|
||||
<path d="M23.0925 29.2867L25.4475 25.758L22.5788 21.4492L17.01 29.8155H22.7438L23.0925 29.2867Z" fill="#00BFB3"/>
|
||||
<path d="M26.4638 22.4818C27.3481 22.4818 28.065 21.7649 28.065 20.8805C28.065 19.9962 27.3481 19.2793 26.4638 19.2793C25.5795 19.2793 24.8625 19.9962 24.8625 20.8805C24.8625 21.7649 25.5795 22.4818 26.4638 22.4818Z" fill="#00BFB3"/>
|
||||
<path d="M8.85378 32.508C9.14628 32.7143 9.29628 32.733 9.41628 32.5418L9.18753 32.5155C9.14287 32.5141 9.09895 32.5038 9.0583 32.4853C9.01766 32.4667 8.98108 32.4403 8.95073 32.4075C8.92038 32.3747 8.89687 32.3362 8.88152 32.2942C8.86616 32.2523 8.85927 32.2077 8.86128 32.163C8.86205 32.1028 8.88321 32.0447 8.9213 31.998L8.7338 32.0355L8.6925 32.1255C8.7525 32.2493 8.80128 32.3805 8.85378 32.508Z" fill="#CED5E1"/>
|
||||
<path d="M9.21376 30.342C9.24065 30.2939 9.2811 30.2548 9.33003 30.2295C9.35097 30.2186 9.37394 30.2122 9.3975 30.2107L9.31877 29.877C9.30411 29.8884 9.29032 29.9009 9.27752 29.9144C9.23366 29.9755 9.20498 30.0461 9.19389 30.1205C9.1828 30.1948 9.18961 30.2708 9.21376 30.342Z" fill="#CED5E1"/>
|
||||
<path d="M15.2175 39.529L15.51 39.6865C15.48 39.589 15.285 39.4765 15.2175 39.529Z" fill="#CED5E1"/>
|
||||
<path d="M15.2326 38.6215C15.2629 38.5972 15.2971 38.5782 15.3338 38.5653C15.3817 38.5522 15.4322 38.5522 15.4801 38.5653C15.4619 38.4953 15.421 38.4333 15.3638 38.389C15.3308 38.3683 15.2941 38.3544 15.2557 38.3479C15.2173 38.3414 15.178 38.3425 15.14 38.3513C15.1021 38.36 15.0662 38.3761 15.0344 38.3986C15.0027 38.4212 14.9758 38.4498 14.9551 38.4828C14.9344 38.5158 14.9204 38.5525 14.9139 38.5909C14.9074 38.6293 14.9086 38.6686 14.9173 38.7066C14.926 38.7445 14.9421 38.7804 14.9646 38.8121C14.9872 38.8439 15.0158 38.8708 15.0488 38.8915C15.0754 38.905 15.1029 38.9163 15.1313 38.9253C15.1182 38.8702 15.1208 38.8126 15.1387 38.759C15.1566 38.7053 15.1891 38.6577 15.2326 38.6215Z" fill="#CED5E1"/>
|
||||
<path d="M14.1937 38.4229C14.1594 38.4137 14.1231 38.4137 14.0887 38.4229C13.92 38.4754 13.9538 38.6179 13.9725 38.7529L14.325 38.9929C14.2964 38.9313 14.2584 38.8743 14.2125 38.8242C14.2913 38.7342 14.4225 38.6704 14.34 38.5242H14.3025C14.2599 38.498 14.2229 38.4636 14.1937 38.4229Z" fill="#CED5E1"/>
|
||||
<path d="M9.82869 32.6064C9.7624 32.5873 9.69471 32.5735 9.62622 32.5652C9.63161 32.6486 9.66739 32.7271 9.72684 32.7858C9.78628 32.8446 9.86525 32.8795 9.94872 32.8839C10.1025 32.8839 10.2562 32.9177 10.4062 32.9477C10.3387 32.8127 10.2712 32.6739 10.2074 32.5352C10.1546 32.5764 10.0926 32.6044 10.0267 32.6168C9.96083 32.6292 9.89292 32.6256 9.82869 32.6064Z" fill="#CED5E1"/>
|
||||
<path d="M10.7813 34.8142C10.7813 34.8142 10.7813 34.8367 10.7588 34.8442L10.8113 35.0092C10.8863 35.1155 10.9937 35.1945 11.1175 35.2344C11.2413 35.2743 11.3747 35.2729 11.4976 35.2305C11.4976 35.2305 11.5313 35.2042 11.5313 35.1892C11.5326 35.141 11.5498 35.0946 11.5804 35.0572C11.6109 35.0199 11.653 34.9938 11.7 34.983C11.5988 34.8555 11.5013 34.7242 11.4038 34.5892C11.3551 34.6717 11.3138 34.7542 11.1638 34.7392C11.1338 34.683 11.1151 34.5967 11.0663 34.5742H11.0438C10.9238 34.623 10.7926 34.6492 10.7813 34.8142Z" fill="#CED5E1"/>
|
||||
<path d="M16.6613 38.9393C16.3875 39.1156 16.3313 38.9056 16.1063 38.9393C16.0611 39.04 15.9813 39.1212 15.8813 39.168C15.873 39.2015 15.8714 39.2364 15.8768 39.2705C15.8821 39.3046 15.8943 39.3373 15.9124 39.3667C15.9306 39.396 15.9545 39.4214 15.9826 39.4414C16.0108 39.4614 16.0426 39.4756 16.0763 39.4831C16.2192 39.5314 16.3682 39.5591 16.5188 39.5656C16.6089 39.5577 16.6941 39.521 16.7617 39.4609C16.8292 39.4007 16.8756 39.3204 16.8938 39.2318C16.9002 39.1858 16.8961 39.139 16.8818 39.0948C16.8675 39.0507 16.8434 39.0103 16.8113 38.9768L16.7175 38.9355L16.6613 38.9393Z" fill="#CED5E1"/>
|
||||
<path d="M9.95251 34.6172C9.99001 34.6697 10.0237 34.7259 10.0612 34.7822C10.0434 34.7171 10.0053 34.6593 9.95251 34.6172Z" fill="#CED5E1"/>
|
||||
<path d="M11.9962 36.3595C11.9682 36.4007 11.9325 36.4364 11.8912 36.4645C11.8996 36.5291 11.9224 36.5911 11.9582 36.6456C11.9939 36.7002 12.0415 36.746 12.0975 36.7794L12.1463 36.8057C12.2096 36.8167 12.2689 36.8439 12.3187 36.8844C12.3966 36.9095 12.4805 36.9084 12.5577 36.8813C12.6349 36.8542 12.7011 36.8027 12.7462 36.7345C12.7815 36.6831 12.8034 36.6239 12.81 36.562C12.7472 36.6066 12.6711 36.6287 12.5942 36.6246C12.5172 36.6205 12.444 36.5905 12.3863 36.5395C12.34 36.5195 12.2988 36.4892 12.2659 36.4511C12.2329 36.4129 12.2091 36.3678 12.1961 36.319C12.1831 36.2703 12.1813 36.2193 12.1908 36.1698C12.2004 36.1203 12.2211 36.0736 12.2513 36.0332C12.1768 36.0442 12.1068 36.0753 12.0488 36.1232C12.0578 36.2056 12.0394 36.2887 11.9962 36.3595Z" fill="#CED5E1"/>
|
||||
<path d="M12.9826 36.4079C12.9524 36.4483 12.9317 36.495 12.9222 36.5445C12.9126 36.594 12.9144 36.645 12.9274 36.6937C12.9404 36.7424 12.9642 36.7876 12.9972 36.8258C13.0301 36.8639 13.0713 36.8942 13.1176 36.9141C13.1777 36.9669 13.255 36.996 13.335 36.996C13.4151 36.996 13.4924 36.9669 13.5526 36.9141C13.3651 36.7566 13.1776 36.5804 12.9826 36.4004V36.4079Z" fill="#CED5E1"/>
|
||||
<path d="M10.0575 34.1657C10.0822 34.1601 10.1079 34.1601 10.1326 34.1657C10.1326 34.0795 10.1325 33.9895 10.0613 33.9633C9.93469 33.8816 9.78291 33.8483 9.63377 33.8695L9.52881 33.9033C9.62256 34.0683 9.71631 34.2332 9.81006 34.3907C9.86662 34.3933 9.92301 34.3831 9.97504 34.3608C9.95629 34.2745 9.97128 34.1957 10.0575 34.1657Z" fill="#CED5E1"/>
|
||||
<path d="M8.14502 30.3149C8.19002 30.5099 8.24253 30.6899 8.29503 30.8886C8.33309 30.8907 8.37102 30.8824 8.40471 30.8646C8.4384 30.8467 8.4666 30.82 8.48628 30.7874C8.52733 30.7142 8.5426 30.6293 8.52968 30.5463C8.51676 30.4634 8.47638 30.3872 8.41501 30.3299C8.37362 30.3085 8.32815 30.2961 8.28162 30.2935C8.23508 30.2909 8.18853 30.2982 8.14502 30.3149Z" fill="#CED5E1"/>
|
||||
<path d="M10.8712 34.0658C10.8583 34.0287 10.855 33.989 10.8615 33.9503C10.8681 33.9117 10.8843 33.8753 10.9087 33.8445L10.7812 33.6345C10.7085 33.619 10.6327 33.6274 10.5651 33.6585C10.4975 33.6896 10.4418 33.7417 10.4062 33.807C10.3087 33.9533 10.3425 34.0658 10.5225 34.182C10.5624 34.2053 10.6076 34.2182 10.6538 34.2195C10.6759 34.1791 10.7071 34.1442 10.7448 34.1176C10.7824 34.0909 10.8257 34.0732 10.8712 34.0658Z" fill="#CED5E1"/>
|
||||
<path d="M9.88872 32.1043C9.93299 32.1303 9.98367 32.1432 10.035 32.1418C9.96747 31.9805 9.90372 31.8193 9.84372 31.6543C9.82593 31.6647 9.80954 31.6773 9.79497 31.6918C9.76716 31.7376 9.75244 31.7901 9.75244 31.8437C9.75244 31.8972 9.76716 31.9498 9.79497 31.9955C9.81276 32.0059 9.82915 32.0185 9.84372 32.033C9.85996 32.056 9.87498 32.0798 9.88872 32.1043Z" fill="#CED5E1"/>
|
||||
<path d="M14.3962 37.8145C14.411 37.7929 14.4211 37.7685 14.4259 37.7429C14.4307 37.7172 14.43 37.6908 14.424 37.6654C14.418 37.64 14.4068 37.6161 14.391 37.5953C14.3752 37.5744 14.3553 37.5571 14.3324 37.5445C14.2758 37.5048 14.2068 37.4867 14.138 37.4936C14.0692 37.5005 14.0051 37.5319 13.9574 37.582C13.9194 37.6313 13.9024 37.6937 13.9101 37.7555C13.9179 37.8173 13.9497 37.8735 13.9987 37.912C14.0667 37.9403 14.1419 37.9461 14.2135 37.9285C14.285 37.911 14.349 37.871 14.3962 37.8145Z" fill="#CED5E1"/>
|
||||
<path d="M9.15747 33.1875C9.20622 33.2888 9.25868 33.3862 9.30743 33.4875L9.32996 33.465C9.37121 33.405 9.29997 33.225 9.15747 33.1875Z" fill="#CED5E1"/>
|
||||
<path d="M8.52063 30.0453C8.51541 30.0401 8.52063 30.0453 8.52063 30.0453V30.0453Z" fill="#CED5E1"/>
|
||||
<path d="M12.5513 37.6454C12.7575 37.8254 12.9638 37.9979 13.1663 38.1592C13.2296 38.1184 13.2824 38.0631 13.3202 37.9979C13.358 37.9327 13.3798 37.8594 13.3838 37.7842C13.3858 37.7131 13.3677 37.6428 13.3313 37.5817C13.2994 37.5786 13.2686 37.5683 13.2413 37.5517C13.211 37.5287 13.1873 37.4984 13.1722 37.4636C13.1571 37.4288 13.1511 37.3907 13.155 37.3529C13.0779 37.2671 12.9755 37.208 12.8625 37.1842C12.8158 37.1811 12.7689 37.1898 12.7264 37.2095C12.6838 37.2291 12.6468 37.2591 12.6188 37.2967C12.6259 37.3338 12.6259 37.372 12.6188 37.4092C12.6137 37.4919 12.5907 37.5725 12.5513 37.6454Z" fill="#CED5E1"/>
|
||||
<path d="M11.2463 36.3533C11.2463 36.3533 11.2013 36.3195 11.1863 36.3008L11.2463 36.3533Z" fill="#CED5E1"/>
|
||||
<path d="M11.1825 35.8529C11.2278 35.7852 11.2916 35.7318 11.3662 35.6992C11.3594 35.6865 11.3505 35.6751 11.34 35.6654C11.3256 35.6482 11.3068 35.6352 11.2856 35.6279C11.2644 35.6206 11.2416 35.6191 11.2196 35.6237C11.1977 35.6284 11.1774 35.6389 11.1609 35.6541C11.1445 35.6694 11.1325 35.6889 11.1263 35.7104C11.1249 35.7204 11.1249 35.7305 11.1263 35.7404C11.0949 35.6936 11.0474 35.6598 10.9929 35.6453C10.9384 35.6308 10.8805 35.6366 10.83 35.6617L10.7438 35.7067C10.8938 35.9017 11.0475 36.0892 11.205 36.2692C11.1552 36.2123 11.1259 36.1404 11.1218 36.0649C11.1177 35.9894 11.1391 35.9148 11.1825 35.8529Z" fill="#CED5E1"/>
|
||||
<path d="M8.50879 31.5742C8.57254 31.7617 8.6363 31.9492 8.7038 32.118L8.74504 32.028C8.74567 32.0155 8.74567 32.003 8.74504 31.9905C8.76424 31.948 8.77314 31.9015 8.771 31.8549C8.76885 31.8083 8.75575 31.7629 8.73273 31.7223C8.7097 31.6817 8.67738 31.6472 8.63847 31.6214C8.59957 31.5957 8.55513 31.5795 8.50879 31.5742Z" fill="#CED5E1"/>
|
||||
<path d="M8.52745 29.5397C8.47745 29.6118 8.45068 29.6975 8.45068 29.7853C8.45068 29.8731 8.47745 29.9588 8.52745 30.0309C8.52745 30.0309 8.52743 30.0572 8.55368 30.0647C8.65302 30.1188 8.76711 30.1396 8.87915 30.1241C8.9912 30.1085 9.09531 30.0575 9.17619 29.9784C9.22385 29.8917 9.23911 29.7909 9.21918 29.694C9.19925 29.5971 9.14543 29.5105 9.06743 29.4497C8.98275 29.3935 8.87995 29.3716 8.77972 29.3883C8.6795 29.405 8.58934 29.4591 8.52745 29.5397Z" fill="#CED5E1"/>
|
||||
<path d="M14.5575 39.1504L14.7038 39.2404C14.6653 39.1962 14.6142 39.1649 14.5575 39.1504Z" fill="#CED5E1"/>
|
||||
<path d="M14.7338 38.4632C14.7623 38.3843 14.7661 38.2986 14.7446 38.2176C14.7232 38.1365 14.6775 38.0639 14.6138 38.0094C14.5564 37.9702 14.4872 37.9521 14.418 37.9582C14.3488 37.9643 14.2838 37.9943 14.2342 38.043C14.1846 38.0917 14.1535 38.1561 14.1461 38.2252C14.1387 38.2943 14.1556 38.3638 14.1938 38.4219C14.2229 38.4582 14.2585 38.4887 14.2988 38.5119H14.3363C14.3986 38.5491 14.4714 38.5645 14.5434 38.5557C14.6154 38.5469 14.6824 38.5143 14.7338 38.4632Z" fill="#CED5E1"/>
|
||||
<path d="M13.5826 38.1459C13.5595 38.1041 13.5224 38.0717 13.4778 38.0545C13.4332 38.0374 13.3839 38.0365 13.3388 38.0522C13.3045 38.0594 13.2736 38.0776 13.2506 38.104C13.2276 38.1304 13.2138 38.1635 13.2113 38.1984L13.4963 38.4159C13.5751 38.3409 13.6651 38.2772 13.5826 38.1459Z" fill="#CED5E1"/>
|
||||
<path d="M9.19874 32.5087L9.42748 32.5349L9.62624 32.5649C9.69473 32.5733 9.76242 32.5871 9.82871 32.6062C9.8924 32.6248 9.95959 32.628 10.0248 32.6156C10.09 32.6033 10.1513 32.5756 10.2037 32.5349C10.1587 32.4374 10.1137 32.3362 10.0725 32.2312C10.0328 32.2317 9.99408 32.2196 9.96174 32.1967C9.9294 32.1738 9.90516 32.1412 9.89248 32.1037C9.87752 32.0791 9.86124 32.0553 9.84373 32.0324C9.82915 32.0179 9.81276 32.0053 9.79497 31.9949C9.73244 31.9461 9.6629 31.9069 9.58871 31.8787C9.52722 31.8579 9.46207 31.8503 9.39745 31.8562C9.33125 31.8526 9.26494 31.8526 9.19874 31.8562C9.14922 31.8579 9.10051 31.8693 9.05546 31.8899C9.0104 31.9105 8.96987 31.9398 8.93621 31.9762C8.89813 32.0228 8.87701 32.081 8.87624 32.1412C8.87214 32.1867 8.87731 32.2326 8.89149 32.2761C8.90566 32.3196 8.92853 32.3597 8.95869 32.3941C8.98884 32.4285 9.02568 32.4563 9.06695 32.476C9.10821 32.4957 9.15305 32.5069 9.19874 32.5087Z" fill="#CED5E1"/>
|
||||
<path d="M10.9013 33.8359C10.8769 33.8667 10.8606 33.9031 10.8541 33.9417C10.8475 33.9804 10.8509 34.0201 10.8638 34.0572C10.7886 34.0748 10.7229 34.1204 10.6801 34.1847C10.6238 34.2709 10.5863 34.3647 10.4288 34.3497C10.3988 34.2934 10.3801 34.2072 10.3313 34.1847C10.2739 34.1574 10.2111 34.1433 10.1475 34.1434C10.1229 34.1378 10.0972 34.1378 10.0726 34.1434C9.9863 34.1734 9.97131 34.2522 9.99006 34.3384V34.3834C10.0201 34.4622 10.0388 34.5409 10.065 34.6197C10.14 34.726 10.2475 34.805 10.3712 34.8449C10.495 34.8848 10.6284 34.8834 10.7513 34.8409C10.7513 34.8409 10.7738 34.8222 10.7738 34.8109C10.7738 34.6384 10.9163 34.6122 11.0363 34.5634H11.0663C11.1154 34.547 11.1567 34.5131 11.1824 34.4681C11.208 34.4231 11.216 34.3703 11.2051 34.3197C11.1076 34.1622 11.0025 34.0009 10.9013 33.8359Z" fill="#CED5E1"/>
|
||||
<path d="M16.1213 38.9393C16.1373 38.914 16.1487 38.8861 16.155 38.8568C16.164 38.7763 16.1441 38.6953 16.0988 38.6281L15.9675 38.5606H15.9263C15.7125 38.6993 15.63 38.5981 15.495 38.5606C15.4472 38.5475 15.3966 38.5475 15.3488 38.5606C15.3121 38.5735 15.2779 38.5925 15.2476 38.6168C15.2047 38.6527 15.1726 38.6997 15.1547 38.7526C15.1369 38.8055 15.134 38.8624 15.1463 38.9168C15.161 38.9613 15.1865 39.0014 15.2205 39.0334C15.2546 39.0655 15.2961 39.0886 15.3413 39.1006C15.4842 39.1489 15.6331 39.1767 15.7838 39.1831C15.8225 39.1846 15.8611 39.1769 15.8963 39.1606C15.995 39.1156 16.0746 39.0373 16.1213 38.9393Z" fill="#CED5E1"/>
|
||||
<path d="M11.3662 35.7009C11.2916 35.7336 11.2278 35.7869 11.1825 35.8546C11.136 35.914 11.1107 35.9873 11.1107 36.0628C11.1107 36.1382 11.136 36.2115 11.1825 36.2709V36.2934C11.1825 36.3121 11.2238 36.3271 11.2425 36.3459C11.2613 36.3646 11.28 36.3871 11.3063 36.4059C11.3792 36.4716 11.4709 36.5127 11.5685 36.5234C11.666 36.5342 11.7645 36.5141 11.85 36.4659C11.8913 36.4378 11.9269 36.4022 11.955 36.3609C12.0016 36.29 12.0228 36.2054 12.015 36.1209C12.0114 36.0408 11.9883 35.9627 11.9478 35.8935C11.9073 35.8242 11.8506 35.7659 11.7825 35.7234C11.7211 35.6837 11.6504 35.6608 11.5774 35.6569C11.5044 35.6529 11.4316 35.6681 11.3662 35.7009Z" fill="#CED5E1"/>
|
||||
<path d="M9.21375 30.3422C9.19828 30.3897 9.19828 30.4409 9.21375 30.4884C9.21375 30.5297 9.25878 30.5897 9.29253 30.5972C9.36929 30.6139 9.4469 30.6264 9.52503 30.6347C9.48378 30.4959 9.45001 30.3534 9.41251 30.2109C9.38895 30.2124 9.36598 30.2188 9.34504 30.2297C9.29056 30.2525 9.24461 30.2918 9.21375 30.3422Z" fill="#CED5E1"/>
|
||||
<path d="M12.3712 36.5407C12.4289 36.5917 12.5022 36.6217 12.5792 36.6258C12.6561 36.6299 12.7321 36.6078 12.7949 36.5632C12.8317 36.535 12.8634 36.5008 12.8887 36.462C12.9084 36.4292 12.9235 36.3938 12.9337 36.357C12.7724 36.2032 12.6149 36.0457 12.4574 35.877C12.3714 35.9037 12.2964 35.9577 12.2437 36.0307C12.2126 36.0707 12.1909 36.1172 12.1804 36.1668C12.17 36.2163 12.1709 36.2676 12.1832 36.3168C12.1955 36.3659 12.2188 36.4116 12.2513 36.4504C12.2839 36.4892 12.3249 36.5201 12.3712 36.5407Z" fill="#CED5E1"/>
|
||||
<path d="M9.78377 33.7959C9.81313 33.8161 9.84629 33.8303 9.88123 33.8375C9.91616 33.8447 9.95217 33.8448 9.98715 33.8378C10.0221 33.8308 10.0554 33.8168 10.0848 33.7967C10.1143 33.7767 10.1395 33.7508 10.1588 33.7209C10.1821 33.6452 10.1874 33.5651 10.1744 33.487C10.1614 33.4089 10.1304 33.3349 10.0838 33.2709C9.97504 33.1884 9.78005 33.2709 9.67505 33.4246C9.57005 33.5784 9.60377 33.6909 9.78377 33.7959Z" fill="#CED5E1"/>
|
||||
<path d="M9.45746 31.6904C9.58496 31.5142 9.59624 31.3154 9.48374 31.2329C9.41142 31.1978 9.32973 31.1869 9.25073 31.2018C9.17174 31.2166 9.0996 31.2565 9.04497 31.3154C9.00754 31.3809 8.99453 31.4575 9.00826 31.5317C9.02199 31.6058 9.06156 31.6727 9.11995 31.7204C9.17118 31.7547 9.2326 31.7704 9.29399 31.765C9.35539 31.7595 9.41308 31.7332 9.45746 31.6904Z" fill="#CED5E1"/>
|
||||
<path d="M13.2413 37.5448C13.2687 37.5614 13.2995 37.5717 13.3313 37.5748C13.3902 37.5798 13.4493 37.5709 13.5041 37.5488C13.5588 37.5266 13.6076 37.4918 13.6463 37.4473C13.6611 37.4257 13.6712 37.4014 13.676 37.3757C13.6808 37.35 13.6801 37.3236 13.6741 37.2982C13.6681 37.2728 13.6569 37.2489 13.6411 37.2281C13.6253 37.2073 13.6054 37.19 13.5825 37.1773C13.5259 37.1376 13.4569 37.1196 13.3881 37.1264C13.3193 37.1333 13.2552 37.1647 13.2075 37.2148C13.18 37.2532 13.1643 37.2988 13.1625 37.346C13.1578 37.3831 13.1626 37.4208 13.1763 37.4556C13.1901 37.4903 13.2124 37.521 13.2413 37.5448Z" fill="#CED5E1"/>
|
||||
<path d="M8.33997 31.0059L8.4187 31.2572C8.44328 31.2637 8.46915 31.2637 8.49373 31.2572C8.62873 31.2347 8.6662 31.1297 8.64745 30.9872C8.54245 30.9684 8.43747 30.8934 8.33997 31.0059Z" fill="#CED5E1"/>
|
||||
<path d="M7.98758 29.5648L8.01006 29.5348C8.02881 29.5048 8.01005 29.4298 7.9613 29.3848C7.9688 29.4335 7.97633 29.4935 7.98758 29.5648Z" fill="#CED5E1"/>
|
||||
<path d="M16.6313 39.5554C16.6259 39.5623 16.622 39.5702 16.62 39.5788C16.618 39.5873 16.6179 39.5962 16.6197 39.6047C16.6214 39.6133 16.6251 39.6214 16.6304 39.6284C16.6356 39.6354 16.6423 39.6412 16.65 39.6454C16.6838 39.6641 16.7213 39.6454 16.7325 39.6191C16.7438 39.5929 16.7326 39.5516 16.7026 39.5441C16.6911 39.538 16.6779 39.5358 16.665 39.5378C16.6522 39.5399 16.6403 39.546 16.6313 39.5554Z" fill="#CED5E1"/>
|
||||
<path d="M12.1125 36.8028C12.0554 36.8021 11.9992 36.8163 11.9492 36.8439C11.8993 36.8715 11.8573 36.9116 11.8275 36.9603C12.0675 37.204 12.3112 37.4328 12.5512 37.6465C12.597 37.5726 12.6252 37.4892 12.6337 37.4028C12.6408 37.3656 12.6408 37.3274 12.6337 37.2903C12.5717 37.1257 12.4604 36.9843 12.315 36.8853C12.2652 36.8447 12.2058 36.8175 12.1425 36.8065L12.1125 36.8028Z" fill="#CED5E1"/>
|
||||
<path d="M10.41 35.2908L10.5975 35.542C10.6201 35.5317 10.6376 35.5128 10.6463 35.4895C10.6535 35.4543 10.6521 35.4179 10.6423 35.3833C10.6325 35.3487 10.6146 35.317 10.59 35.2908C10.5785 35.2785 10.5645 35.2687 10.549 35.2621C10.5335 35.2554 10.5169 35.252 10.5 35.252C10.4832 35.252 10.4665 35.2554 10.451 35.2621C10.4355 35.2687 10.4216 35.2785 10.41 35.2908Z" fill="#CED5E1"/>
|
||||
<path d="M11.5799 30.7357L8.56494 28.002L6.40869 31.3657" stroke="#CED5E1" stroke-width="3.31" stroke-miterlimit="10"/>
|
||||
<path d="M11.7113 35.9395C9.92506 33.9006 8.79926 31.3679 8.48254 28.6758" stroke="#CED5E1" stroke-width="3.31" stroke-miterlimit="10"/>
|
||||
<path d="M38.2462 15.4209C38.3009 15.3319 38.3204 15.2258 38.301 15.1232C38.2816 15.0205 38.2246 14.9288 38.1412 14.8659C38.0492 14.8083 37.9387 14.7879 37.8322 14.8088C37.7256 14.8297 37.6309 14.8903 37.5675 14.9784C37.521 15.0479 37.5011 15.1317 37.5113 15.2147C37.5457 15.2047 37.5826 15.2072 37.6154 15.2216C37.6483 15.2359 37.6752 15.2614 37.6913 15.2934C37.7108 15.3257 37.7235 15.3617 37.7286 15.3991C37.7338 15.4365 37.7313 15.4746 37.7212 15.5109C37.7603 15.543 37.8058 15.5662 37.8546 15.5791C37.9035 15.592 37.9545 15.5943 38.0043 15.5858C38.0541 15.5772 38.1015 15.5581 38.1432 15.5297C38.1849 15.5012 38.2201 15.4641 38.2462 15.4209Z" fill="#CED5E1"/>
|
||||
<path d="M37.3312 13.4406C37.3869 13.3307 37.48 13.2443 37.5937 13.1969C37.5562 13.1069 37.5187 13.0319 37.5037 12.9794C37.425 12.8744 37.3462 12.7731 37.2637 12.6719C37.2759 12.7697 37.2547 12.8688 37.2037 12.9531C37.1473 13.0267 37.0669 13.0781 36.9765 13.0987C36.8861 13.1192 36.7914 13.1075 36.7087 13.0656C36.7103 13.0793 36.7103 13.0932 36.7087 13.1069C36.6929 13.135 36.6714 13.1595 36.6456 13.1789C36.6197 13.1983 36.5902 13.2121 36.5587 13.2194C36.5583 13.3007 36.5749 13.3811 36.6075 13.4556L36.69 13.4219C36.7545 13.4068 36.8224 13.417 36.8797 13.4505C36.9369 13.484 36.9791 13.5382 36.9975 13.6019C37.0237 13.6844 37.05 13.7669 37.0837 13.8494C37.1552 13.8663 37.2297 13.8663 37.3012 13.8494L37.3687 13.8156C37.3373 13.759 37.3177 13.6965 37.3113 13.632C37.3048 13.5675 37.3117 13.5024 37.3312 13.4406Z" fill="#CED5E1"/>
|
||||
<path d="M37.0426 12.4058L36.9526 12.3008V12.3233C36.9422 12.3473 36.9346 12.3725 36.9301 12.3983C36.9677 12.3962 37.0055 12.3988 37.0426 12.4058Z" fill="#CED5E1"/>
|
||||
<path d="M39.7875 17.498C39.7462 17.3555 39.705 17.213 39.66 17.0742C39.6222 17.131 39.6045 17.1989 39.61 17.2669C39.6154 17.335 39.6436 17.3992 39.69 17.4492C39.7185 17.4724 39.7518 17.4891 39.7875 17.498Z" fill="#CED5E1"/>
|
||||
<path d="M35.9213 11.2346L35.7788 11.0996C35.7673 11.1342 35.7535 11.1681 35.7375 11.2009C35.7685 11.2173 35.7964 11.2388 35.82 11.2646C35.851 11.2469 35.8857 11.2366 35.9213 11.2346Z" fill="#CED5E1"/>
|
||||
<path d="M35.8237 11.5943C35.8038 11.6238 35.7798 11.6503 35.7524 11.673C35.7815 11.697 35.8165 11.7126 35.8537 11.718C36.0112 11.718 36.1725 11.718 36.3412 11.718C36.3642 11.7545 36.3892 11.7895 36.4162 11.823C36.4162 11.823 36.4162 11.8043 36.4162 11.793C36.4162 11.7818 36.4162 11.7555 36.435 11.7405C36.345 11.6468 36.2549 11.553 36.1649 11.4668C36.1687 11.4879 36.1687 11.5095 36.1649 11.5305C36.1489 11.5596 36.1266 11.5847 36.0997 11.6041C36.0728 11.6235 36.042 11.6368 36.0093 11.6429C35.9767 11.649 35.9432 11.6478 35.9111 11.6394C35.879 11.631 35.8492 11.6156 35.8237 11.5943Z" fill="#CED5E1"/>
|
||||
<path d="M34.8225 10.3533C34.7795 10.3151 34.7439 10.2693 34.7175 10.2183L34.5787 10.1133C34.5075 10.2108 34.4962 10.3008 34.5562 10.3608C34.5736 10.3788 34.5946 10.3931 34.6178 10.4026C34.641 10.4121 34.6659 10.4166 34.691 10.4159C34.7161 10.4152 34.7407 10.4093 34.7634 10.3985C34.786 10.3877 34.8061 10.3723 34.8225 10.3533Z" fill="#CED5E1"/>
|
||||
<path d="M37.6801 14.483C37.7326 14.5805 37.8301 14.5842 37.9276 14.5655C38.0251 14.5467 38.1488 14.5317 38.2538 14.5055C38.3323 14.4949 38.407 14.4653 38.4713 14.4192C38.4038 14.303 38.3326 14.1867 38.2576 14.0742C38.1974 14.1311 38.1258 14.1746 38.0475 14.2017C37.9542 14.2255 37.8557 14.2189 37.7663 14.183C37.635 14.2992 37.6351 14.393 37.6801 14.483Z" fill="#CED5E1"/>
|
||||
<path d="M30.7162 9.25445C30.7673 9.21438 30.802 9.15704 30.8137 9.0932C30.7514 9.03199 30.6961 8.96408 30.6487 8.8907C30.6157 8.83245 30.5988 8.76641 30.5999 8.69945C30.5696 8.68116 30.5367 8.66727 30.5024 8.6582L30.33 9.23945C30.36 9.23945 30.4574 9.27695 30.6037 9.32945C30.6437 9.30835 30.6814 9.28322 30.7162 9.25445Z" fill="#CED5E1"/>
|
||||
<path d="M39.4125 18.7565C39.4307 18.6683 39.4206 18.5765 39.3836 18.4943C39.3465 18.4122 39.2845 18.3438 39.2063 18.299C39.1713 18.2734 39.128 18.2618 39.0849 18.2667C39.0418 18.2716 39.0021 18.2925 38.9737 18.3253C38.9081 18.4106 38.8492 18.5009 38.7975 18.5953C38.85 18.8203 38.895 19.0453 38.94 19.2778C38.9896 19.2812 39.0392 19.2716 39.084 19.2499C39.1287 19.2281 39.167 19.1951 39.195 19.154C39.2841 19.0313 39.3572 18.8978 39.4125 18.7565Z" fill="#CED5E1"/>
|
||||
<path d="M35.6775 12.6906C35.7263 12.7431 35.775 12.7993 35.8275 12.8518C35.8721 12.8333 35.9091 12.8003 35.9325 12.7581C35.934 12.7444 35.934 12.7305 35.9325 12.7168C36.0152 12.7587 36.1099 12.7704 36.2003 12.7499C36.2907 12.7293 36.3711 12.6778 36.4275 12.6043C36.4785 12.5247 36.5001 12.4298 36.4884 12.3359C36.4768 12.2421 36.4327 12.1553 36.3638 12.0906C36.2597 12.0458 36.1442 12.0351 36.0337 12.06C35.9232 12.0849 35.8235 12.1442 35.7487 12.2293C35.7167 12.2972 35.7088 12.3739 35.7263 12.4468C35.7053 12.4496 35.685 12.4559 35.6663 12.4656C35.6983 12.5364 35.7024 12.6168 35.6775 12.6906Z" fill="#CED5E1"/>
|
||||
<path d="M31.4625 8.81601C31.4928 8.836 31.5269 8.84948 31.5628 8.85558C31.5986 8.86169 31.6353 8.86029 31.6705 8.85147C31.7058 8.84266 31.7388 8.82663 31.7676 8.80439C31.7963 8.78214 31.8201 8.75418 31.8375 8.72226C31.8778 8.66178 31.9022 8.59216 31.9087 8.51977C31.7137 8.42977 31.5337 8.35102 31.3837 8.29102C31.3709 8.2976 31.3595 8.3065 31.3499 8.31726C31.3021 8.39921 31.2871 8.49623 31.308 8.58879C31.3289 8.68134 31.3841 8.76253 31.4625 8.81601Z" fill="#CED5E1"/>
|
||||
<path d="M38.6963 17.685C38.7863 17.5312 38.7638 17.3737 38.6475 17.31C38.5782 17.2788 38.5014 17.2684 38.4263 17.28C38.4825 17.4487 38.535 17.6212 38.5875 17.7975C38.6324 17.7693 38.6697 17.7307 38.6963 17.685Z" fill="#CED5E1"/>
|
||||
<path d="M36.0188 13.0645C36.0975 13.1545 36.1763 13.2482 36.2513 13.342C36.2513 13.3082 36.2513 13.2745 36.2213 13.2445C36.2078 13.1985 36.1817 13.1572 36.1459 13.1253C36.1101 13.0935 36.0661 13.0724 36.0188 13.0645Z" fill="#CED5E1"/>
|
||||
<path d="M34.845 11.3879H34.8938C34.9633 11.3607 35.0224 11.3121 35.0625 11.2491C35.0876 11.2664 35.116 11.2783 35.1459 11.2842C35.1757 11.2902 35.2065 11.29 35.2363 11.2837C35.2661 11.2774 35.2943 11.2651 35.3193 11.2475C35.3442 11.23 35.3653 11.2076 35.3812 11.1816C35.4047 11.1358 35.4112 11.0832 35.3996 11.0331C35.3879 10.983 35.3588 10.9386 35.3175 10.9079C35.2779 10.8859 35.2334 10.8743 35.1881 10.8743C35.1428 10.8743 35.0983 10.8859 35.0587 10.9079C35.0143 10.8556 34.9535 10.8199 34.8863 10.8066C34.7625 10.8066 34.7025 10.8741 34.6425 10.9566L34.5938 11.0129C34.6445 11.0388 34.6923 11.0703 34.7363 11.1066C34.7773 11.14 34.8089 11.1835 34.828 11.2328C34.8471 11.2821 34.8529 11.3356 34.845 11.3879Z" fill="#CED5E1"/>
|
||||
<path d="M31.7963 9.22958C31.77 9.38333 31.8788 9.46207 32.025 9.50707C32.13 9.44332 32.235 9.36832 32.2013 9.22582C32.1965 9.20008 32.1865 9.17563 32.1717 9.15401C32.1569 9.1324 32.1378 9.11412 32.1156 9.10034C32.0933 9.08656 32.0684 9.0776 32.0425 9.07402C32.0165 9.07045 31.9902 9.07234 31.965 9.07958C31.8975 9.09833 31.8038 9.16958 31.7963 9.22958Z" fill="#CED5E1"/>
|
||||
<path d="M38.895 15.2105L38.7937 15.0117C38.7586 15.0331 38.7281 15.0611 38.7037 15.0942C38.6918 15.1153 38.6829 15.1381 38.6775 15.1617C38.7529 15.1598 38.8276 15.1765 38.895 15.2105Z" fill="#CED5E1"/>
|
||||
<path d="M39.0601 15.6453H39.1051L39.0675 15.5703C39.0691 15.5956 39.0666 15.6209 39.0601 15.6453Z" fill="#CED5E1"/>
|
||||
<path d="M33.0713 10.5193C33.0648 10.4334 33.079 10.3473 33.1126 10.268C33.1801 10.088 33.06 9.89301 33.1838 9.75426C33.2404 9.6955 33.3116 9.65279 33.3901 9.63051C33.3499 9.53006 33.2834 9.44225 33.1976 9.37628C33.1119 9.31031 33.0099 9.2686 32.9025 9.25551C32.817 9.23741 32.7283 9.24097 32.6445 9.26585C32.5606 9.29074 32.4843 9.33617 32.4225 9.39801C32.2988 9.53301 32.4226 9.73176 32.3513 9.91176C32.3285 9.96803 32.3146 10.0275 32.3101 10.088C32.5463 10.2193 32.7938 10.3618 33.0601 10.523L33.0713 10.5193ZM32.7826 9.85926C32.6401 9.81426 32.5275 9.73551 32.5575 9.58176C32.5575 9.52176 32.6588 9.45051 32.7263 9.43176C32.7515 9.42452 32.7778 9.42263 32.8038 9.42621C32.8297 9.42979 32.8546 9.43875 32.8768 9.45253C32.8991 9.4663 32.9182 9.48459 32.933 9.5062C32.9477 9.52781 32.9578 9.55227 32.9626 9.57801C32.9963 9.72051 32.8913 9.79551 32.7826 9.85926Z" fill="#CED5E1"/>
|
||||
<path d="M34.1888 10.0645H34.2413C34.3089 10.0595 34.3732 10.0332 34.425 9.98953C34.2563 9.86953 34.0913 9.75328 33.9263 9.64453C33.928 9.65697 33.928 9.66959 33.9263 9.68203C34.0555 9.77519 34.1484 9.91042 34.1888 10.0645Z" fill="#CED5E1"/>
|
||||
<path d="M33.6338 10.9153L34.0088 11.2041C34.058 11.1368 34.08 11.0534 34.0702 10.9706C34.0605 10.8878 34.0198 10.8118 33.9563 10.7578C33.9244 10.8067 33.8805 10.8467 33.8288 10.8741C33.7675 10.9016 33.701 10.9157 33.6338 10.9153Z" fill="#CED5E1"/>
|
||||
<path d="M38.64 15.9266C38.5546 15.9546 38.4808 16.01 38.43 16.0841C38.3789 16.1589 38.3586 16.2505 38.3733 16.3399C38.388 16.4293 38.4364 16.5096 38.5087 16.5641C38.5975 16.628 38.706 16.6584 38.815 16.6502C38.9241 16.642 39.0268 16.5956 39.105 16.5191C39.1546 16.4219 39.169 16.3105 39.1457 16.2039C39.1225 16.0972 39.063 16.0019 38.9775 15.9341C38.9447 15.9168 38.9092 15.9054 38.8725 15.9004C38.8009 15.9376 38.7181 15.9469 38.64 15.9266Z" fill="#CED5E1"/>
|
||||
<path d="M39.015 15.7732C39.0393 15.7346 39.0547 15.691 39.06 15.6457C39.0637 15.6221 39.0637 15.5981 39.06 15.5745C39.0038 15.4507 38.9475 15.3307 38.8875 15.1995C38.8201 15.1655 38.7454 15.1488 38.67 15.1507C38.603 15.1481 38.5364 15.1621 38.4762 15.1916C38.416 15.221 38.364 15.265 38.325 15.3194C38.2949 15.3619 38.2746 15.4104 38.2656 15.4616C38.2565 15.5128 38.2588 15.5654 38.2724 15.6156C38.286 15.6657 38.3106 15.7123 38.3443 15.7518C38.3781 15.7914 38.4201 15.823 38.4675 15.8445C38.5175 15.8784 38.5735 15.9026 38.6325 15.9157C38.7106 15.936 38.7934 15.9266 38.865 15.8895C38.926 15.8675 38.9785 15.8268 39.015 15.7732Z" fill="#CED5E1"/>
|
||||
<path d="M38.0475 14.1896C38.1257 14.1625 38.1973 14.119 38.2575 14.0621C38.0625 13.7471 37.86 13.4471 37.65 13.1621L37.5938 13.1884C37.48 13.2358 37.387 13.3222 37.3313 13.4321C37.3094 13.4929 37.3001 13.5575 37.304 13.6219C37.3078 13.6864 37.3248 13.7494 37.3538 13.8071C37.4007 13.9318 37.4878 14.0374 37.6013 14.1071C37.6538 14.1353 37.709 14.158 37.7662 14.1746C37.856 14.2093 37.9545 14.2146 38.0475 14.1896Z" fill="#CED5E1"/>
|
||||
<path d="M37.6988 15.2918C37.6827 15.2597 37.6559 15.2343 37.623 15.2199C37.5901 15.2055 37.5533 15.2031 37.5188 15.213C37.5863 15.333 37.65 15.453 37.7138 15.588L37.7363 15.5206C37.7469 15.482 37.749 15.4416 37.7426 15.4021C37.7361 15.3626 37.7212 15.325 37.6988 15.2918Z" fill="#CED5E1"/>
|
||||
<path d="M36.4162 11.8206C36.4118 11.8794 36.4299 11.9376 36.4668 11.9836C36.5037 12.0295 36.5567 12.0597 36.615 12.0681H36.7462C36.6412 11.9519 36.5363 11.8431 36.4313 11.7344C36.4313 11.7344 36.4312 11.7681 36.4125 11.7869C36.3937 11.8056 36.4162 11.8094 36.4162 11.8206Z" fill="#CED5E1"/>
|
||||
<path d="M35.3925 10.7622L35.2987 10.6797V10.7134C35.3259 10.7366 35.3579 10.7532 35.3925 10.7622Z" fill="#CED5E1"/>
|
||||
<path d="M38.6888 14.918H38.7413C38.67 14.7867 38.6025 14.6592 38.5313 14.543C38.4038 14.648 38.4038 14.7417 38.4488 14.8317C38.4938 14.9217 38.5913 14.9405 38.6888 14.918Z" fill="#CED5E1"/>
|
||||
<path d="M30.645 8.87173C30.6924 8.9451 30.7477 9.01301 30.81 9.07422C30.81 9.11922 30.7875 9.16422 30.78 9.20922C30.7709 9.26384 30.7709 9.31961 30.78 9.37422C30.945 9.43797 31.155 9.52047 31.38 9.62547C31.4039 9.61727 31.4266 9.60592 31.4475 9.59173C31.4995 9.55182 31.5354 9.49461 31.5488 9.43047C31.5663 9.32764 31.5427 9.22205 31.4831 9.13646C31.4235 9.05088 31.3326 8.99216 31.23 8.97297L31.1213 8.93922C31.1473 8.85677 31.1686 8.77288 31.185 8.68797C31.1961 8.65869 31.2003 8.62727 31.1974 8.59611C31.1944 8.56495 31.1845 8.53486 31.1682 8.50812C31.152 8.48139 31.1298 8.4587 31.1035 8.44178C31.0772 8.42486 31.0473 8.41415 31.0163 8.41047C30.9511 8.38553 30.8797 8.38189 30.8123 8.40008C30.7449 8.41827 30.685 8.45736 30.6413 8.51172C30.6048 8.55491 30.5837 8.60899 30.5813 8.66548C30.5819 8.73899 30.604 8.81071 30.645 8.87173Z" fill="#CED5E1"/>
|
||||
<path d="M40.1212 18.7951C40.0857 18.737 40.0368 18.6881 39.9787 18.6525C39.9438 18.6269 39.9004 18.6154 39.8573 18.6202C39.8143 18.6251 39.7746 18.646 39.7462 18.6788C39.5852 18.8604 39.4832 19.0866 39.4537 19.3275C39.4549 19.366 39.4625 19.4041 39.4763 19.4401C39.4882 19.4622 39.5033 19.4824 39.5213 19.5001L40.02 19.4213C40.0825 19.3249 40.1365 19.2233 40.1813 19.1176C40.1513 19.0088 40.1212 18.9038 40.1212 18.7951Z" fill="#CED5E1"/>
|
||||
<path d="M36.6937 13.1097C36.6952 13.096 36.6952 13.0822 36.6937 13.0685C36.7764 13.1104 36.8711 13.1221 36.9615 13.1015C37.0519 13.081 37.1323 13.0295 37.1887 12.956C37.2397 12.8716 37.2608 12.7726 37.2487 12.6747L37.0274 12.4047C36.9851 12.3989 36.9423 12.3989 36.9 12.4047C36.828 12.4072 36.7574 12.4248 36.6928 12.4565C36.6281 12.4881 36.571 12.5331 36.525 12.5885C36.4911 12.6558 36.483 12.7332 36.5024 12.806C36.463 12.8098 36.425 12.823 36.3917 12.8446C36.3585 12.8661 36.3308 12.8953 36.3112 12.9297C36.2821 12.978 36.2733 13.0359 36.2866 13.0907C36.2999 13.1455 36.3344 13.1927 36.3825 13.2222C36.4345 13.2412 36.4916 13.2412 36.5437 13.2222C36.5751 13.2149 36.6047 13.2012 36.6305 13.1818C36.6563 13.1624 36.6779 13.1379 36.6937 13.1097Z" fill="#CED5E1"/>
|
||||
<path d="M35.6775 12.6895C35.7059 12.6172 35.7059 12.5368 35.6775 12.4645C35.6382 12.343 35.5572 12.2394 35.4488 12.172C35.4043 12.1463 35.3538 12.1328 35.3025 12.1328C35.2512 12.1328 35.2007 12.1463 35.1562 12.172C35.3325 12.3332 35.505 12.5095 35.6775 12.6895Z" fill="#CED5E1"/>
|
||||
<path d="M32.2237 9.16922C32.254 9.18921 32.2882 9.20268 32.324 9.20879C32.3598 9.21489 32.3965 9.21349 32.4318 9.20468C32.467 9.19587 32.5001 9.17983 32.5288 9.15759C32.5575 9.13535 32.5813 9.10738 32.5987 9.07547C32.6349 9.02292 32.658 8.9625 32.6662 8.89922L32.1524 8.63672C32.1359 8.64582 32.1208 8.65718 32.1074 8.67047C32.06 8.75285 32.0456 8.85019 32.0672 8.94278C32.0887 9.03537 32.1447 9.11631 32.2237 9.16922Z" fill="#CED5E1"/>
|
||||
<path d="M39.4087 17.6668C39.3218 17.6291 39.225 17.6208 39.133 17.6431C39.0409 17.6655 38.9587 17.7172 38.8987 17.7906C38.8758 17.8607 38.8783 17.9367 38.9057 18.0053C38.9331 18.0738 38.9837 18.1305 39.0487 18.1656C39.0816 18.1898 39.1195 18.2062 39.1596 18.2136C39.1998 18.221 39.241 18.2192 39.2804 18.2084C39.3197 18.1976 39.3561 18.178 39.3867 18.1511C39.4174 18.1242 39.4416 18.0907 39.4575 18.0531C39.5475 17.8843 39.525 17.7268 39.4087 17.6668Z" fill="#CED5E1"/>
|
||||
<path d="M36.6751 13.4402L36.5925 13.474C36.5601 13.4864 36.5312 13.5066 36.5084 13.5327C36.4855 13.5589 36.4693 13.5902 36.4613 13.624C36.7316 13.985 36.982 14.3606 37.2113 14.749C37.2324 14.7438 37.252 14.7336 37.2683 14.7192C37.2846 14.7049 37.2972 14.6868 37.3051 14.6665C37.3268 14.6273 37.34 14.5841 37.3439 14.5395C37.3477 14.4949 37.3422 14.45 37.3276 14.4077C37.3102 14.3779 37.2864 14.3522 37.2579 14.3327C37.2294 14.3132 37.1969 14.3003 37.1628 14.2949C37.1287 14.2895 37.0938 14.2918 37.0607 14.3016C37.0275 14.3114 36.997 14.3284 36.9713 14.3515C36.993 14.2726 37.03 14.1987 37.0801 14.134C37.0958 14.1005 37.1039 14.0641 37.1039 14.0271C37.1039 13.9902 37.0958 13.9537 37.0801 13.9202C37.0731 13.9068 37.0668 13.893 37.0613 13.879C37.0275 13.7965 37.0013 13.714 36.9751 13.6315C36.959 13.5673 36.9189 13.5117 36.8631 13.4761C36.8073 13.4405 36.7401 13.4277 36.6751 13.4402Z" fill="#CED5E1"/>
|
||||
<path d="M35.2912 11.5653C35.3037 11.6018 35.3235 11.6354 35.3494 11.6639C35.3754 11.6925 35.4069 11.7153 35.4421 11.7312C35.4772 11.747 35.5153 11.7554 35.5539 11.7559C35.5924 11.7564 35.6307 11.749 35.6662 11.7341C35.7023 11.7205 35.7354 11.7001 35.7637 11.6741C35.7911 11.6513 35.8151 11.6248 35.835 11.5953C35.8601 11.6125 35.8885 11.6245 35.9184 11.6304C35.9483 11.6364 35.979 11.6362 36.0088 11.6299C36.0386 11.6235 36.0669 11.6112 36.0918 11.5937C36.1167 11.5762 36.1378 11.5537 36.1538 11.5278C36.1576 11.5067 36.1576 11.4851 36.1538 11.4641L35.9138 11.2353C35.8781 11.2373 35.8434 11.2476 35.8125 11.2653C35.7652 11.2166 35.7056 11.1816 35.64 11.1641C35.5163 11.1641 35.4563 11.2316 35.3963 11.3141C35.3363 11.3966 35.265 11.4416 35.2912 11.5653Z" fill="#CED5E1"/>
|
||||
<path d="M32.9625 9.57739C32.9578 9.55165 32.9477 9.52719 32.9329 9.50558C32.9182 9.48396 32.899 9.46568 32.8768 9.4519C32.8545 9.43813 32.8296 9.42916 32.8037 9.42559C32.7778 9.42201 32.7514 9.4239 32.7263 9.43114C32.6588 9.44989 32.565 9.52114 32.5575 9.58114C32.5275 9.73489 32.64 9.81364 32.7825 9.85864C32.8913 9.79489 32.9963 9.71989 32.9625 9.57739Z" fill="#CED5E1"/>
|
||||
<path d="M38.2463 16.5746C38.2211 16.5576 38.1932 16.5449 38.1638 16.5371C38.2238 16.6834 38.2838 16.8334 38.3401 16.9871C38.3614 16.9727 38.3804 16.9549 38.3963 16.9346C38.4338 16.8446 38.3588 16.6646 38.2463 16.5746Z" fill="#CED5E1"/>
|
||||
<path d="M38.055 15.9264C38.0269 15.9086 37.9954 15.8968 37.9625 15.8916C37.9296 15.8865 37.896 15.8881 37.8638 15.8964C37.9125 16.0014 37.9613 16.1027 38.01 16.2114C38.0412 16.2008 38.0686 16.1812 38.0888 16.1552C38.1058 16.1399 38.1188 16.1206 38.1265 16.099C38.1343 16.0775 38.1366 16.0544 38.1333 16.0317C38.1299 16.0091 38.121 15.9876 38.1074 15.9692C38.0937 15.9509 38.0757 15.9362 38.055 15.9264Z" fill="#CED5E1"/>
|
||||
<path d="M33.1125 10.2666C33.0789 10.3458 33.0648 10.432 33.0712 10.5178V10.5403C33.255 10.6566 33.4462 10.7803 33.6337 10.9153C33.7037 10.9156 33.773 10.9002 33.8362 10.8703C33.8879 10.843 33.9318 10.803 33.9637 10.7541C34.0076 10.6917 34.0394 10.6218 34.0575 10.5478C34.0987 10.3978 34.2375 10.3191 34.2112 10.1728L34.1888 10.0791C34.1448 9.9266 34.0494 9.79408 33.9187 9.70405C33.8409 9.65497 33.7535 9.62291 33.6624 9.60998C33.5713 9.59706 33.4785 9.60356 33.39 9.62905C33.3115 9.65134 33.2403 9.69404 33.1837 9.7528C33.06 9.8878 33.18 10.0866 33.1125 10.2666Z" fill="#CED5E1"/>
|
||||
<path d="M34.8225 10.3538C34.8684 10.3975 34.928 10.424 34.9913 10.4287L34.7175 10.2188C34.744 10.2698 34.7796 10.3156 34.8225 10.3538Z" fill="#CED5E1"/>
|
||||
<path d="M34.1587 11.059C34.1142 11.1122 34.0868 11.1775 34.08 11.2465C34.2675 11.389 34.455 11.539 34.6387 11.7002L34.6912 11.6627C34.7341 11.6299 34.7698 11.5888 34.7963 11.5417C34.8227 11.4946 34.8393 11.4427 34.845 11.389C34.8522 11.3373 34.846 11.2846 34.8269 11.236C34.8079 11.1874 34.7767 11.1445 34.7362 11.1115C34.6923 11.0751 34.6445 11.0437 34.5937 11.0177C34.526 10.9783 34.4476 10.9611 34.3696 10.9685C34.2916 10.9759 34.2178 11.0075 34.1587 11.059Z" fill="#CED5E1"/>
|
||||
<path d="M39.6337 16.9903C39.5512 16.7503 39.465 16.5178 39.375 16.2891C39.2996 16.3169 39.2352 16.3681 39.1912 16.4353C39.1402 16.5101 39.1199 16.6017 39.1345 16.6911C39.1492 16.7804 39.1977 16.8607 39.2699 16.9153C39.3794 16.9802 39.5075 17.0066 39.6337 16.9903Z" fill="#CED5E1"/>
|
||||
<path d="M36.4463 17.5357L39.5438 20.1795L41.5988 16.752" stroke="#CED5E1" stroke-width="3.31" stroke-miterlimit="10"/>
|
||||
<path d="M36.165 12.3145C38.0085 14.3002 39.2085 16.797 39.6076 19.477" stroke="#CED5E1" stroke-width="3.31" stroke-miterlimit="10"/>
|
||||
</g>
|
||||
<defs>
|
||||
<clipPath id="clip0_1526_244808">
|
||||
<rect width="45" height="45" fill="white" transform="translate(1.5 1.5)"/>
|
||||
</clipPath>
|
||||
</defs>
|
||||
</svg>
|
After Width: | Height: | Size: 174 KiB |
|
@ -22,6 +22,7 @@ import { GuidedOnboardingPluginStart } from '@kbn/guided-onboarding-plugin/publi
|
|||
import type { HomePublicPluginSetup } from '@kbn/home-plugin/public';
|
||||
import { LensPublicStart } from '@kbn/lens-plugin/public';
|
||||
import { LicensingPluginStart } from '@kbn/licensing-plugin/public';
|
||||
import { GetUserProfileResponse, UserProfileData } from '@kbn/security-plugin/common';
|
||||
import { SecurityPluginSetup, SecurityPluginStart } from '@kbn/security-plugin/public';
|
||||
import { SharePluginStart } from '@kbn/share-plugin/public';
|
||||
|
||||
|
@ -65,6 +66,7 @@ export interface PluginsStart {
|
|||
licensing: LicensingPluginStart;
|
||||
security: SecurityPluginStart;
|
||||
share: SharePluginStart;
|
||||
userProfile: GetUserProfileResponse<UserProfileData>;
|
||||
}
|
||||
|
||||
export class EnterpriseSearchPlugin implements Plugin {
|
||||
|
@ -100,7 +102,8 @@ export class EnterpriseSearchPlugin implements Plugin {
|
|||
cloudSetup && (pluginsStart as PluginsStart).cloud
|
||||
? { ...cloudSetup, ...(pluginsStart as PluginsStart).cloud }
|
||||
: undefined;
|
||||
const plugins = { ...pluginsStart, cloud } as PluginsStart;
|
||||
const userProfile = await (pluginsStart as PluginsStart).security.userProfiles.getCurrent();
|
||||
const plugins = { ...pluginsStart, cloud, userProfile } as PluginsStart;
|
||||
|
||||
coreStart.chrome
|
||||
.getChromeStyle$()
|
||||
|
|
|
@ -62,5 +62,6 @@
|
|||
"@kbn/logs-shared-plugin",
|
||||
"@kbn/share-plugin",
|
||||
"@kbn/core-saved-objects-migration-server-internal",
|
||||
"@kbn/search-api-panels",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -23,18 +23,20 @@ import {
|
|||
import { i18n } from '@kbn/i18n';
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import { useQuery } from '@tanstack/react-query';
|
||||
import { OverviewPanel, LanguageClientPanel, CodeBox } from '@kbn/search-api-panels';
|
||||
import type {
|
||||
LanguageDefinition,
|
||||
LanguageDefinitionSnippetArguments,
|
||||
} from '@kbn/search-api-panels';
|
||||
|
||||
import { PLUGIN_ID } from '../../../common';
|
||||
import { IndexData, FetchIndicesResult } from '../../../common/types';
|
||||
import { FETCH_INDICES_PATH } from '../routes';
|
||||
import { API_KEY_PLACEHOLDER, ELASTICSEARCH_URL_PLACEHOLDER } from '../constants';
|
||||
import { useKibanaServices } from '../hooks/use_kibana';
|
||||
import { CodeBox } from './code_box';
|
||||
import { javascriptDefinition } from './languages/javascript';
|
||||
import { languageDefinitions } from './languages/languages';
|
||||
import { LanguageDefinition, LanguageDefinitionSnippetArguments } from './languages/types';
|
||||
|
||||
import { OverviewPanel } from './overview_panels/overview_panel';
|
||||
import { LanguageClientPanel } from './overview_panels/language_client_panel';
|
||||
import { getCodeSnippet, showTryInConsole } from './languages/utils';
|
||||
|
||||
const NoIndicesContent = () => (
|
||||
<>
|
||||
|
@ -115,7 +117,7 @@ const IndicesContent = ({
|
|||
};
|
||||
|
||||
export const ElasticsearchIndexingApi = () => {
|
||||
const { cloud, http } = useKibanaServices();
|
||||
const { cloud, http, share } = useKibanaServices();
|
||||
const [selectedLanguage, setSelectedLanguage] =
|
||||
useState<LanguageDefinition>(javascriptDefinition);
|
||||
const [indexSearchQuery, setIndexSearchQuery] = useState<string | undefined>(undefined);
|
||||
|
@ -200,17 +202,26 @@ export const ElasticsearchIndexingApi = () => {
|
|||
language={language}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
isSelectedLanguage={selectedLanguage === language}
|
||||
http={http}
|
||||
pluginId={PLUGIN_ID}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
))}
|
||||
</EuiFlexGroup>
|
||||
<EuiSpacer />
|
||||
<CodeBox
|
||||
code="ingestDataIndex"
|
||||
codeArgs={codeSnippetArguments}
|
||||
languages={languageDefinitions}
|
||||
codeSnippet={getCodeSnippet(
|
||||
selectedLanguage,
|
||||
'ingestDataIndex',
|
||||
codeSnippetArguments
|
||||
)}
|
||||
selectedLanguage={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={PLUGIN_ID}
|
||||
sharePlugin={share}
|
||||
showTryInConsole={showTryInConsole('ingestDataIndex')}
|
||||
/>
|
||||
</>
|
||||
}
|
||||
|
|
|
@ -5,8 +5,8 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { LanguageDefinition } from '@kbn/search-api-panels';
|
||||
import { INDEX_NAME_PLACEHOLDER } from '../../constants';
|
||||
import { LanguageDefinition } from './types';
|
||||
|
||||
export const consoleDefinition: Partial<LanguageDefinition> = {
|
||||
buildSearchQuery: `POST /books/_search?pretty
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { docLinks } from '../../../../common/doc_links';
|
||||
import { LanguageDefinition, Languages } from './types';
|
||||
|
||||
export const curlDefinition: LanguageDefinition = {
|
||||
buildSearchQuery: `curl -X POST "\$\{ES_URL\}/books/_search?pretty" \\
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
import { docLinks } from '../../../../common/doc_links';
|
||||
import { LanguageDefinition, Languages } from './types';
|
||||
|
||||
export const goDefinition: LanguageDefinition = {
|
||||
advancedConfig: docLinks.goAdvancedConfig,
|
||||
|
|
|
@ -5,9 +5,9 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { docLinks } from '../../../../common/doc_links';
|
||||
import { LanguageDefinition, Languages } from './types';
|
||||
|
||||
export const javascriptDefinition: LanguageDefinition = {
|
||||
advancedConfig: docLinks.jsAdvancedConfig,
|
||||
|
|
|
@ -5,13 +5,14 @@
|
|||
* 2.0.
|
||||
*/
|
||||
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
|
||||
import { curlDefinition } from './curl';
|
||||
import { goDefinition } from './go';
|
||||
import { javascriptDefinition } from './javascript';
|
||||
import { phpDefinition } from './php';
|
||||
import { pythonDefinition } from './python';
|
||||
import { rubyDefinition } from './ruby';
|
||||
import { Languages, LanguageDefinition } from './types';
|
||||
|
||||
const languageDefinitionRecords: Partial<Record<Languages, LanguageDefinition>> = {
|
||||
[Languages.CURL]: curlDefinition,
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
import { docLinks } from '../../../../common/doc_links';
|
||||
import { INDEX_NAME_PLACEHOLDER } from '../../constants';
|
||||
import { LanguageDefinition, Languages } from './types';
|
||||
|
||||
export const phpDefinition: LanguageDefinition = {
|
||||
advancedConfig: docLinks.phpAdvancedConfig,
|
||||
|
|
|
@ -6,8 +6,8 @@
|
|||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
import { docLinks } from '../../../../common/doc_links';
|
||||
import { LanguageDefinition, Languages } from './types';
|
||||
import { INDEX_NAME_PLACEHOLDER } from '../../constants';
|
||||
|
||||
export const pythonDefinition: LanguageDefinition = {
|
||||
|
|
|
@ -6,9 +6,9 @@
|
|||
*/
|
||||
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { Languages, LanguageDefinition } from '@kbn/search-api-panels';
|
||||
import { docLinks } from '../../../../common/doc_links';
|
||||
import { INDEX_NAME_PLACEHOLDER } from '../../constants';
|
||||
import { LanguageDefinition, Languages } from './types';
|
||||
|
||||
export const rubyDefinition: LanguageDefinition = {
|
||||
advancedConfig: docLinks.rubyAdvancedConfig,
|
||||
|
|
|
@ -0,0 +1,22 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { LanguageDefinition, LanguageDefinitionSnippetArguments } from '@kbn/search-api-panels';
|
||||
import { consoleDefinition } from './console';
|
||||
|
||||
export const showTryInConsole = (code: keyof LanguageDefinition) => code in consoleDefinition;
|
||||
|
||||
export const getCodeSnippet = (
|
||||
language: Partial<LanguageDefinition>,
|
||||
key: keyof LanguageDefinition,
|
||||
args: LanguageDefinitionSnippetArguments
|
||||
): string => {
|
||||
const snippetVal = language[key];
|
||||
if (snippetVal === undefined) return '';
|
||||
if (typeof snippetVal === 'string') return snippetVal;
|
||||
return snippetVal(args);
|
||||
};
|
|
@ -19,33 +19,38 @@ import {
|
|||
EuiTitle,
|
||||
} from '@elastic/eui';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import {
|
||||
WelcomeBanner,
|
||||
IngestData,
|
||||
SelectClientPanel,
|
||||
OverviewPanel,
|
||||
CodeBox,
|
||||
LanguageClientPanel,
|
||||
InstallClientPanel,
|
||||
} from '@kbn/search-api-panels';
|
||||
|
||||
import React, { useMemo, useState } from 'react';
|
||||
import type {
|
||||
LanguageDefinition,
|
||||
LanguageDefinitionSnippetArguments,
|
||||
} from '@kbn/search-api-panels';
|
||||
import { docLinks } from '../../../common/doc_links';
|
||||
import { PLUGIN_ID } from '../../../common';
|
||||
import { useKibanaServices } from '../hooks/use_kibana';
|
||||
import { API_KEY_PLACEHOLDER, ELASTICSEARCH_URL_PLACEHOLDER } from '../constants';
|
||||
import { CodeBox } from './code_box';
|
||||
import { javascriptDefinition } from './languages/javascript';
|
||||
import { languageDefinitions } from './languages/languages';
|
||||
import { LanguageDefinition, LanguageDefinitionSnippetArguments } from './languages/types';
|
||||
import { InstallClientPanel } from './overview_panels/install_client';
|
||||
import { OverviewPanel } from './overview_panels/overview_panel';
|
||||
import './overview.scss';
|
||||
import { IngestData } from './overview_panels/ingest_data';
|
||||
import { SelectClientPanel } from './overview_panels/select_client';
|
||||
import { ApiKeyPanel } from './api_key/api_key';
|
||||
import { LanguageClientPanel } from './overview_panels/language_client_panel';
|
||||
import { getCodeSnippet, showTryInConsole } from './languages/utils';
|
||||
|
||||
export const ElasticsearchOverview = () => {
|
||||
const [selectedLanguage, setSelectedLanguage] =
|
||||
useState<LanguageDefinition>(javascriptDefinition);
|
||||
const [clientApiKey, setClientApiKey] = useState<string>(API_KEY_PLACEHOLDER);
|
||||
const {
|
||||
application: { navigateToApp },
|
||||
cloud,
|
||||
http,
|
||||
userProfile,
|
||||
} = useKibanaServices();
|
||||
const { application, cloud, http, userProfile, share } = useKibanaServices();
|
||||
const { navigateToApp } = application;
|
||||
|
||||
const elasticsearchURL = useMemo(() => {
|
||||
return cloud?.elasticsearchUrl ?? ELASTICSEARCH_URL_PLACEHOLDER;
|
||||
}, [cloud]);
|
||||
|
@ -59,54 +64,19 @@ export const ElasticsearchOverview = () => {
|
|||
<EuiPageTemplate offset={0} grow restrictWidth data-test-subj="svlSearchOverviewPage">
|
||||
<EuiPageTemplate.Section alignment="top" className="serverlessSearchHeaderSection">
|
||||
<EuiText color="ghost">
|
||||
<EuiFlexGroup justifyContent="spaceBetween">
|
||||
<EuiFlexItem grow={false}>
|
||||
{/* Reversing column direction here so screenreaders keep h1 as the first element */}
|
||||
<EuiFlexGroup justifyContent="flexStart" direction="columnReverse" gutterSize="s">
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiTitle className="serverlessSearchHeaderTitle" size="s">
|
||||
<h1>
|
||||
{i18n.translate('xpack.serverlessSearch.header.title', {
|
||||
defaultMessage: 'Get started with Elasticsearch',
|
||||
})}
|
||||
</h1>
|
||||
</EuiTitle>
|
||||
</EuiFlexItem>
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiTitle size="xxxs">
|
||||
<h2>
|
||||
{i18n.translate('xpack.serverlessSearch.header.greeting.title', {
|
||||
defaultMessage: 'Hi {name}!',
|
||||
values: { name: userProfile.user.full_name || userProfile.user.username },
|
||||
})}
|
||||
</h2>
|
||||
</EuiTitle>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
<EuiSpacer />
|
||||
<EuiText>
|
||||
{i18n.translate('xpack.serverlessSearch.header.description', {
|
||||
defaultMessage:
|
||||
"Set up your programming language client, ingest some data, and you'll be ready to start searching within minutes.",
|
||||
})}
|
||||
</EuiText>
|
||||
<EuiSpacer size="xxl" />
|
||||
</EuiFlexItem>
|
||||
|
||||
<EuiFlexItem grow={false}>
|
||||
<EuiImage alt="" src={`${assetBasePath}serverless_header.png`} size="554px" />
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
<WelcomeBanner userProfile={userProfile} assetBasePath={assetBasePath} />
|
||||
</EuiText>
|
||||
</EuiPageTemplate.Section>
|
||||
<EuiPageTemplate.Section color="subdued" bottomBorder="extended">
|
||||
<SelectClientPanel>
|
||||
<SelectClientPanel docLinks={docLinks} http={http}>
|
||||
{languageDefinitions.map((language, index) => (
|
||||
<EuiFlexItem key={`panelItem.${index}`}>
|
||||
<LanguageClientPanel
|
||||
language={language}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
isSelectedLanguage={selectedLanguage === language}
|
||||
http={http}
|
||||
pluginId={PLUGIN_ID}
|
||||
/>
|
||||
</EuiFlexItem>
|
||||
))}
|
||||
|
@ -115,9 +85,15 @@ export const ElasticsearchOverview = () => {
|
|||
|
||||
<EuiPageTemplate.Section color="subdued" bottomBorder="extended">
|
||||
<InstallClientPanel
|
||||
codeArguments={codeSnippetArguments}
|
||||
codeSnippet={getCodeSnippet(selectedLanguage, 'installClient', codeSnippetArguments)}
|
||||
showTryInConsole={showTryInConsole('installClient')}
|
||||
languages={languageDefinitions}
|
||||
language={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={PLUGIN_ID}
|
||||
application={application}
|
||||
sharePlugin={share}
|
||||
/>
|
||||
</EuiPageTemplate.Section>
|
||||
<EuiPageTemplate.Section color="subdued" bottomBorder="extended">
|
||||
|
@ -147,11 +123,19 @@ export const ElasticsearchOverview = () => {
|
|||
})}
|
||||
leftPanelContent={
|
||||
<CodeBox
|
||||
code="configureClient"
|
||||
codeArgs={codeSnippetArguments}
|
||||
languages={languageDefinitions}
|
||||
codeSnippet={getCodeSnippet(
|
||||
selectedLanguage,
|
||||
'configureClient',
|
||||
codeSnippetArguments
|
||||
)}
|
||||
showTryInConsole={showTryInConsole('configureClient')}
|
||||
selectedLanguage={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={PLUGIN_ID}
|
||||
application={application}
|
||||
sharePlugin={share}
|
||||
/>
|
||||
}
|
||||
links={[
|
||||
|
@ -195,11 +179,15 @@ export const ElasticsearchOverview = () => {
|
|||
})}
|
||||
leftPanelContent={
|
||||
<CodeBox
|
||||
code="testConnection"
|
||||
codeArgs={codeSnippetArguments}
|
||||
languages={languageDefinitions}
|
||||
codeSnippet={getCodeSnippet(selectedLanguage, 'testConnection', codeSnippetArguments)}
|
||||
showTryInConsole={showTryInConsole('testConnection')}
|
||||
selectedLanguage={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={PLUGIN_ID}
|
||||
application={application}
|
||||
sharePlugin={share}
|
||||
/>
|
||||
}
|
||||
links={[]}
|
||||
|
@ -210,9 +198,16 @@ export const ElasticsearchOverview = () => {
|
|||
</EuiPageTemplate.Section>
|
||||
<EuiPageTemplate.Section color="subdued" bottomBorder="extended">
|
||||
<IngestData
|
||||
codeArguments={codeSnippetArguments}
|
||||
codeSnippet={getCodeSnippet(selectedLanguage, 'ingestData', codeSnippetArguments)}
|
||||
showTryInConsole={showTryInConsole('ingestData')}
|
||||
languages={languageDefinitions}
|
||||
selectedLanguage={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
docLinks={docLinks}
|
||||
pluginId={PLUGIN_ID}
|
||||
application={application}
|
||||
sharePlugin={share}
|
||||
/>
|
||||
</EuiPageTemplate.Section>
|
||||
<EuiPageTemplate.Section color="subdued" bottomBorder="extended">
|
||||
|
@ -223,11 +218,19 @@ export const ElasticsearchOverview = () => {
|
|||
})}
|
||||
leftPanelContent={
|
||||
<CodeBox
|
||||
code="buildSearchQuery"
|
||||
codeArgs={codeSnippetArguments}
|
||||
languages={languageDefinitions}
|
||||
codeSnippet={getCodeSnippet(
|
||||
selectedLanguage,
|
||||
'buildSearchQuery',
|
||||
codeSnippetArguments
|
||||
)}
|
||||
showTryInConsole={showTryInConsole('buildSearchQuery')}
|
||||
selectedLanguage={selectedLanguage}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
http={http}
|
||||
pluginId={PLUGIN_ID}
|
||||
application={application}
|
||||
sharePlugin={share}
|
||||
/>
|
||||
}
|
||||
links={[]}
|
||||
|
|
|
@ -1,3 +0,0 @@
|
|||
.serverlessSearchIntegrationsPanel {
|
||||
background-color: $euiColorDarkestShade;
|
||||
}
|
|
@ -1,114 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { EuiSpacer, EuiCallOut, EuiText } from '@elastic/eui';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import React from 'react';
|
||||
import { CodeBox } from '../code_box';
|
||||
import { languageDefinitions } from '../languages/languages';
|
||||
import { OverviewPanel } from './overview_panel';
|
||||
import {
|
||||
LanguageDefinition,
|
||||
Languages,
|
||||
LanguageDefinitionSnippetArguments,
|
||||
} from '../languages/types';
|
||||
import { GithubLink } from '../shared/github_link';
|
||||
|
||||
interface InstallClientProps {
|
||||
codeArguments: LanguageDefinitionSnippetArguments;
|
||||
language: LanguageDefinition;
|
||||
setSelectedLanguage: (language: LanguageDefinition) => void;
|
||||
}
|
||||
|
||||
const Link: React.FC<{ language: Languages }> = ({ language }) => {
|
||||
switch (language) {
|
||||
case Languages.CURL:
|
||||
return (
|
||||
<GithubLink
|
||||
href="https://github.com/curl/curl"
|
||||
label={i18n.translate('xpack.serverlessSearch.githubLink.curl.label', {
|
||||
defaultMessage: 'curl',
|
||||
})}
|
||||
/>
|
||||
);
|
||||
case Languages.JAVASCRIPT:
|
||||
return (
|
||||
<GithubLink
|
||||
href="https://github.com/elastic/elasticsearch-js"
|
||||
label={i18n.translate('xpack.serverlessSearch.githubLink.javascript.label', {
|
||||
defaultMessage: 'elasticsearch',
|
||||
})}
|
||||
/>
|
||||
);
|
||||
case Languages.RUBY:
|
||||
return (
|
||||
<GithubLink
|
||||
href="https://github.com/elastic/elasticsearch-ruby"
|
||||
label={i18n.translate('xpack.serverlessSearch.githubLink.ruby.label', {
|
||||
defaultMessage: 'elasticsearch-ruby',
|
||||
})}
|
||||
/>
|
||||
);
|
||||
}
|
||||
return null;
|
||||
};
|
||||
|
||||
export const InstallClientPanel: React.FC<InstallClientProps> = ({
|
||||
codeArguments,
|
||||
language,
|
||||
setSelectedLanguage,
|
||||
}) => {
|
||||
return (
|
||||
<OverviewPanel
|
||||
description={i18n.translate('xpack.serverlessSearch.installClient.description', {
|
||||
defaultMessage:
|
||||
'Elastic builds and maintains clients in several popular languages and our community has contributed many more. Install your favorite language client to get started.',
|
||||
})}
|
||||
links={[
|
||||
{
|
||||
href: language.docLink,
|
||||
label: i18n.translate('xpack.serverlessSearch.installClient.clientDocLink', {
|
||||
defaultMessage: '{languageName} client documentation',
|
||||
values: { languageName: language.name },
|
||||
}),
|
||||
},
|
||||
]}
|
||||
title={i18n.translate('xpack.serverlessSearch.installClient.title', {
|
||||
defaultMessage: 'Install a client',
|
||||
})}
|
||||
leftPanelContent={
|
||||
<>
|
||||
<CodeBox
|
||||
code="installClient"
|
||||
codeArgs={codeArguments}
|
||||
languageType="shell"
|
||||
languages={languageDefinitions}
|
||||
selectedLanguage={language}
|
||||
setSelectedLanguage={setSelectedLanguage}
|
||||
/>
|
||||
<EuiSpacer />
|
||||
<Link language={language.id} />
|
||||
<EuiSpacer />
|
||||
<EuiCallOut
|
||||
iconType="iInCircle"
|
||||
title={i18n.translate('xpack.serverlessSearch.apiCallOut.title', {
|
||||
defaultMessage: 'Call the API with Console',
|
||||
})}
|
||||
color="primary"
|
||||
>
|
||||
<EuiText size="s">
|
||||
{i18n.translate('xpack.serverlessSearch.apiCallout.content', {
|
||||
defaultMessage:
|
||||
'Console enables you to call Elasticsearch and Kibana REST APIs directly, without needing to install a language client.',
|
||||
})}
|
||||
</EuiText>
|
||||
</EuiCallOut>
|
||||
</>
|
||||
}
|
||||
/>
|
||||
);
|
||||
};
|
|
@ -1,99 +0,0 @@
|
|||
/*
|
||||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one
|
||||
* or more contributor license agreements. Licensed under the Elastic License
|
||||
* 2.0; you may not use this file except in compliance with the Elastic License
|
||||
* 2.0.
|
||||
*/
|
||||
|
||||
import { EuiCallOut, EuiFlexGroup, EuiFlexItem, EuiLink, EuiSpacer, EuiText } from '@elastic/eui';
|
||||
import { i18n } from '@kbn/i18n';
|
||||
import { FormattedMessage } from '@kbn/i18n-react';
|
||||
import React from 'react';
|
||||
|
||||
import { useKibanaServices } from '../../hooks/use_kibana';
|
||||
import { OverviewPanel } from './overview_panel';
|
||||
import { docLinks } from '../../../../common/doc_links';
|
||||
import './select_client.scss';
|
||||
|
||||
export const SelectClientPanel: React.FC = ({ children }) => {
|
||||
const { http } = useKibanaServices();
|
||||
|
||||
return (
|
||||
<OverviewPanel
|
||||
description={
|
||||
<FormattedMessage
|
||||
id="xpack.serverlessSearch.selectClient.description"
|
||||
defaultMessage="Elastic builds and maintains clients in several popular languages and our community has contributed many more. Select your favorite language client or dive into the {console} to get started."
|
||||
values={{
|
||||
console: (
|
||||
<EuiLink href={http.basePath.prepend(`/app/dev_tools#/console`)}>
|
||||
{i18n.translate('xpack.serverlessSearch.selectClient.description.console.link', {
|
||||
defaultMessage: 'Console',
|
||||
})}
|
||||
</EuiLink>
|
||||
),
|
||||
}}
|
||||
/>
|
||||
}
|
||||
leftPanelContent={
|
||||
<>
|
||||
<EuiFlexGroup direction="column">
|
||||
<EuiFlexItem>
|
||||
<EuiText size="s">
|
||||
<strong>
|
||||
{i18n.translate('xpack.serverlessSearch.selectClient.heading', {
|
||||
defaultMessage: 'Choose one',
|
||||
})}
|
||||
</strong>
|
||||
</EuiText>
|
||||
</EuiFlexItem>
|
||||
</EuiFlexGroup>
|
||||
<EuiSpacer size="s" />
|
||||
<EuiFlexGroup gutterSize="xs" direction="row">
|
||||
{children}
|
||||
</EuiFlexGroup>
|
||||
<EuiSpacer size="l" />
|
||||
<EuiCallOut
|
||||
title={i18n.translate('xpack.serverlessSearch.selectClient.callout.title', {
|
||||
defaultMessage: 'Try it now in Console',
|
||||
})}
|
||||
size="m"
|
||||
iconType="iInCircle"
|
||||
>
|
||||
<p>
|
||||
{i18n.translate('xpack.serverlessSearch.selectClient.callout.description', {
|
||||
defaultMessage:
|
||||
'With Console, you can get started right away with our REST API’s. No installation required. ',
|
||||
})}
|
||||
|
||||
<span>
|
||||
<EuiLink target="_blank" href={http.basePath.prepend(`/app/dev_tools#/console`)}>
|
||||
{i18n.translate('xpack.serverlessSearch.selectClient.callout.link', {
|
||||
defaultMessage: 'Try Console now',
|
||||
})}
|
||||
</EuiLink>
|
||||
</span>
|
||||
</p>
|
||||
</EuiCallOut>
|
||||
</>
|
||||
}
|
||||
links={[
|
||||
{
|
||||
href: docLinks.elasticsearchClients,
|
||||
label: i18n.translate('xpack.serverlessSearch.selectClient.elasticsearchClientDocLink', {
|
||||
defaultMessage: 'Elasticsearch clients ',
|
||||
}),
|
||||
},
|
||||
{
|
||||
href: docLinks.kibanaRunApiInConsole,
|
||||
label: i18n.translate('xpack.serverlessSearch.selectClient.apiRequestConsoleDocLink', {
|
||||
defaultMessage: 'Run API requests in Console ',
|
||||
}),
|
||||
},
|
||||
]}
|
||||
title={i18n.translate('xpack.serverlessSearch.selectClient.title', {
|
||||
defaultMessage: 'Select your client',
|
||||
})}
|
||||
/>
|
||||
);
|
||||
};
|
|
@ -30,5 +30,6 @@
|
|||
"@kbn/ml-plugin",
|
||||
"@kbn/management-cards-navigation",
|
||||
"@kbn/core-elasticsearch-server",
|
||||
"@kbn/search-api-panels",
|
||||
]
|
||||
}
|
||||
|
|
|
@ -12154,7 +12154,6 @@
|
|||
"xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.isInvalid.error": "{indexName} n'est pas un nom d'index valide",
|
||||
"xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputHelpText.lineOne": "Votre index sera nommé : {indexName}",
|
||||
"xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.description": "Un index supprimé appelé {indexName} était, à l'origine, lié à une configuration de connecteur. Voulez-vous remplacer cette configuration de connecteur par la nouvelle ?",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.description.text": "Générez une clé API et lisez la {documentation} concernant l’envoi de documents au point de terminaison de l’API Elasticsearch. Utilisez des {clients} Elastic pour une intégration rationalisée.",
|
||||
"xpack.enterpriseSearch.content.searchIndex.documents.documentList.description": "Affichage de {results} sur {total}. Nombre maximal de résultats de recherche de {maximum} documents.",
|
||||
"xpack.enterpriseSearch.content.searchIndex.documents.documentList.pagination.itemsPerPage": "Documents par page : {docPerPage}",
|
||||
"xpack.enterpriseSearch.content.searchIndex.documents.documentList.paginationOptions.option": "{docCount} documents",
|
||||
|
@ -13770,10 +13769,6 @@
|
|||
"xpack.enterpriseSearch.content.overview.documentExample.clientLibraries.python": "Python",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.clientLibraries.ruby": "Ruby",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.clientLibraries.rust": "Rust",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.description.clientsLink": "clients de langages de programmation",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.description.documentationLink": "documentation",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.generateApiKeyButton.label": "Gérer les clés d'API",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.title": "Ajout de documents à votre index",
|
||||
"xpack.enterpriseSearch.content.overview.emptyPrompt.body": "Nous déconseillons l'ajout de documents à un index géré en externe.",
|
||||
"xpack.enterpriseSearch.content.overview.emptyPrompt.title": "Index géré en externe",
|
||||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.apiKeyWarning": "Elastic ne stocke pas les clés d’API. Une fois la clé générée, vous ne pourrez la visualiser qu'une seule fois. Veillez à l'enregistrer dans un endroit sûr. Si vous n'y avez plus accès, vous devrez générer une nouvelle clé d’API à partir de cet écran.",
|
||||
|
@ -13783,7 +13778,6 @@
|
|||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.info": "Avant de pouvoir commencer à publier des documents dans votre index Elasticsearch, vous devez créer au moins une clé d’API.",
|
||||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.learnMore": "En savoir plus sur les clés d’API",
|
||||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.title": "Générer une clé d’API",
|
||||
"xpack.enterpriseSearch.content.overview.optimizedRequest.label": "Afficher la requête optimisée d'Enterprise Search",
|
||||
"xpack.enterpriseSearch.content.searchIndex.cancelSyncs.successMessage": "Annulation réussie des synchronisations",
|
||||
"xpack.enterpriseSearch.content.searchIndex.configurationTabLabel": "Configuration",
|
||||
"xpack.enterpriseSearch.content.searchIndex.connectorErrorCallOut.title": "Votre connecteur a rapporté une erreur",
|
||||
|
@ -14167,16 +14161,9 @@
|
|||
"xpack.enterpriseSearch.curations.settings.licenseUpgradeLink": "En savoir plus sur les mises à niveau incluses dans la licence",
|
||||
"xpack.enterpriseSearch.curations.settings.start30DayTrialButtonLabel": "Démarrer un essai gratuit de 30 jours",
|
||||
"xpack.enterpriseSearch.descriptionLabel": "Description",
|
||||
"xpack.enterpriseSearch.elasticsearch.features.buildSearchExperiences": "Créer des expériences de recherche personnalisées",
|
||||
"xpack.enterpriseSearch.elasticsearch.features.buildTooling": "Créer des outils personnalisés",
|
||||
"xpack.enterpriseSearch.elasticsearch.features.integrate": "Intégrer à des bases de données, des sites web, etc.",
|
||||
"xpack.enterpriseSearch.elasticsearch.productCardDescription": "Idéal pour les applications sur mesure, Elasticsearch vous aide à créer des recherches hautement personnalisables et offre de nombreuses méthodes d'ingestion différentes.",
|
||||
"xpack.enterpriseSearch.elasticsearch.productDescription": "Outils de bas niveau pour la création d'expériences performantes et pertinentes.",
|
||||
"xpack.enterpriseSearch.elasticsearch.productName": "Elasticsearch",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.createNewIndexLabel": "Créer un nouvel index",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.gettingStartedLabel": "Prise en main d'Elasticsearch",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.languageClientLabel": "Configurer un client de langage",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.searchUILabel": "Search UI pour Elasticsearch",
|
||||
"xpack.enterpriseSearch.emailLabel": "E-mail",
|
||||
"xpack.enterpriseSearch.emptyState.description": "Votre contenu est stocké dans un index Elasticsearch. Commencez par créer un index Elasticsearch et sélectionnez une méthode d'ingestion. Les options comprennent le robot d'indexation Elastic, les intégrations de données tierces ou l'utilisation des points de terminaison d'API Elasticsearch.",
|
||||
"xpack.enterpriseSearch.emptyState.description.line2": "Qu’il s’agisse de créer une expérience de recherche avec App Search ou Elasticsearch, vous pouvez commencer ici.",
|
||||
|
@ -14411,8 +14398,6 @@
|
|||
"xpack.enterpriseSearch.overview.elasticsearchResources.gettingStarted": "Prise en main d'Elasticsearch",
|
||||
"xpack.enterpriseSearch.overview.elasticsearchResources.searchUi": "Search UI pour Elasticsearch",
|
||||
"xpack.enterpriseSearch.overview.elasticsearchResources.title": "Ressources",
|
||||
"xpack.enterpriseSearch.overview.emptyPromptButtonLabel": "Créer un index Elasticsearch",
|
||||
"xpack.enterpriseSearch.overview.emptyPromptTitle": "Ajouter des données et démarrer les recherches",
|
||||
"xpack.enterpriseSearch.overview.emptyState.buttonTitle": "Ajouter un contenu dans Enterprise Search",
|
||||
"xpack.enterpriseSearch.overview.emptyState.footerLinkTitle": "En savoir plus",
|
||||
"xpack.enterpriseSearch.overview.emptyState.heading": "Ajouter un contenu dans Enterprise Search",
|
||||
|
@ -14438,12 +14423,9 @@
|
|||
"xpack.enterpriseSearch.overview.iconRow.sharePoint.title": "Microsoft SharePoint",
|
||||
"xpack.enterpriseSearch.overview.iconRow.sharePoint.tooltip": "Indexer des contenus depuis Microsoft SharePoint",
|
||||
"xpack.enterpriseSearch.overview.navTitle": "Aperçu",
|
||||
"xpack.enterpriseSearch.overview.pageTitle": "Bienvenue dans Enterprise Search",
|
||||
"xpack.enterpriseSearch.overview.productSelector.title": "Des expériences de recherche pour chaque cas d'utilisation",
|
||||
"xpack.enterpriseSearch.overview.searchIndices.image.altText": "Illustration d'index de recherche",
|
||||
"xpack.enterpriseSearch.overview.setupCta.description": "Ajoutez des fonctions de recherche à votre application ou à votre organisation interne avec Elastic App Search et Workplace Search. Regardez la vidéo pour savoir ce qu'il est possible de faire lorsque la recherche est facilitée.",
|
||||
"xpack.enterpriseSearch.passwordLabel": "Mot de passe",
|
||||
"xpack.enterpriseSearch.productCard.resourcesTitle": "Ressources",
|
||||
"xpack.enterpriseSearch.productSelectorCalloutTitle": "Mettez à niveau pour obtenir des fonctionnalités de niveau entreprise pour votre équipe",
|
||||
"xpack.enterpriseSearch.readOnlyMode.warning": "Enterprise Search est en mode de lecture seule. Vous ne pourrez pas effectuer de changements tels que création, modification ou suppression.",
|
||||
"xpack.enterpriseSearch.roleMapping.addRoleMappingButtonLabel": "Ajouter un mapping",
|
||||
|
@ -34747,12 +34729,6 @@
|
|||
"xpack.securitySolution.zeek.shrDescription": "L'équipe de réponse a envoyé un SYN ACK suivi d'un FIN, pas de SYN de la part de l'initiateur",
|
||||
"xpack.serverlessSearch.apiKey.activeKeys": "Vous avez {number} clés actives.",
|
||||
"xpack.serverlessSearch.apiKey.expiresHelpText": "Cette clé d’API expirera le {expirationDate}",
|
||||
"xpack.serverlessSearch.header.greeting.title": "Bonjour {name} !",
|
||||
"xpack.serverlessSearch.ingestData.clientDocLink": "Référence d’API {languageName}",
|
||||
"xpack.serverlessSearch.installClient.clientDocLink": "Documentation du client {languageName}",
|
||||
"xpack.serverlessSearch.selectClient.description": "Elastic construit et assure la maintenance des clients dans plusieurs langues populaires et notre communauté a contribué à beaucoup d'autres. Sélectionnez votre client linguistique favori or explorez la {console} pour commencer.",
|
||||
"xpack.serverlessSearch.apiCallout.content": "La console vous permet d’appeler directement les API REST d’Elasticsearch et de Kibana, sans avoir à installer de client de langage.",
|
||||
"xpack.serverlessSearch.apiCallOut.title": "Appeler l’API depuis la console",
|
||||
"xpack.serverlessSearch.apiKey.apiKeyStepDescription": "Cette clé ne s’affichera qu’une fois, conservez-la donc en lieu sûr. Nous ne conservons pas vos clés d’API, vous devrez donc générer une clé de remplacement si vous la perdez.",
|
||||
"xpack.serverlessSearch.apiKey.apiKeyStepTitle": "Stocker cette clé d'API",
|
||||
"xpack.serverlessSearch.apiKey.description": "Vous aurez besoin de ces identifiants uniques pour vous connecter en toute sécurité à votre projet Elasticsearch.",
|
||||
|
@ -34785,8 +34761,6 @@
|
|||
"xpack.serverlessSearch.apiKey.userFieldLabel": "Utilisateur",
|
||||
"xpack.serverlessSearch.back": "Retour",
|
||||
"xpack.serverlessSearch.cancel": "Annuler",
|
||||
"xpack.serverlessSearch.codeBox.copyButtonLabel": "Copier",
|
||||
"xpack.serverlessSearch.codeBox.selectAriaLabel": "Sélectionner un langage de programmation",
|
||||
"xpack.serverlessSearch.configureClient.advancedConfigLabel": "Configuration avancée",
|
||||
"xpack.serverlessSearch.configureClient.basicConfigLabel": "Configuration de base",
|
||||
"xpack.serverlessSearch.configureClient.description": "Initialiser votre client avec votre clé d’API et votre identifiant de cloud uniques",
|
||||
|
@ -34807,30 +34781,7 @@
|
|||
"xpack.serverlessSearch.footer.searchUI.description": "L’interface utilisateur Search est une bibliothèque JavaScript libre et gratuite maintenue par Elastic pour un développement rapide d’expériences de recherche modernes et attrayantes.",
|
||||
"xpack.serverlessSearch.footer.searchUI.title": "Créer une interface utilisateur avec Search UI",
|
||||
"xpack.serverlessSearch.footer.title": "Et ensuite ?",
|
||||
"xpack.serverlessSearch.githubLink.curl.label": "curl",
|
||||
"xpack.serverlessSearch.githubLink.javascript.label": "elasticsearch",
|
||||
"xpack.serverlessSearch.githubLink.ruby.label": "elasticsearch-ruby",
|
||||
"xpack.serverlessSearch.header.description": "Configurez votre client de langage de programmation, ingérez des données, et vous serez prêt à commencer vos recherches en quelques minutes.",
|
||||
"xpack.serverlessSearch.header.title": "Lancez-vous avec Elasticsearch",
|
||||
"xpack.serverlessSearch.ingestData.beatsDescription": "Des agents légers conçus pour le transfert de données pour Elasticsearch. Utilisez Beats pour envoyer des données opérationnelles depuis vos serveurs.",
|
||||
"xpack.serverlessSearch.ingestData.beatsLink": "beats",
|
||||
"xpack.serverlessSearch.ingestData.beatsTitle": "Beats",
|
||||
"xpack.serverlessSearch.ingestData.connectorsDescription": "Des intégrations spécialisées pour synchroniser des données de sources tierces avec Elasticsearch. Utilisez des connecteurs Elastic pour synchroniser du contenu d’une plage de bases de données et de stockage d’objets.",
|
||||
"xpack.serverlessSearch.ingestData.connectorsPythonLink": "connecteurs-python",
|
||||
"xpack.serverlessSearch.ingestData.connectorsTitle": "Client de connecteur",
|
||||
"xpack.serverlessSearch.ingestData.description": "Ajoutez des données à votre flux de données ou à votre index pour les rendre interrogeables. Choisissez une méthode d’ingestion qui correspond à votre application et à votre workflow.",
|
||||
"xpack.serverlessSearch.ingestData.ingestApiDescription": "La façon la plus flexible d’indexer des données, ce qui vous donne un contrôle total sur vos options de personnalisation et d’optimisation.",
|
||||
"xpack.serverlessSearch.ingestData.ingestApiLabel": "Ingérer via une API",
|
||||
"xpack.serverlessSearch.ingestData.ingestIntegrationDescription": "Des outils d’ingestion spécialisés optimisés pour transformer des données et les transférer à Elasticsearch.",
|
||||
"xpack.serverlessSearch.ingestData.ingestIntegrationLabel": "Ingérer via l’intégration",
|
||||
"xpack.serverlessSearch.ingestData.ingestLegendLabel": "Sélectionner une méthode d'ingestion",
|
||||
"xpack.serverlessSearch.ingestData.integrationsLink": "À propos des intégrations",
|
||||
"xpack.serverlessSearch.ingestData.logstashDescription": "Ajoutez des données à votre flux de données ou à votre index pour les rendre interrogeables. Choisissez une méthode d’ingestion qui correspond à votre application et à votre workflow.",
|
||||
"xpack.serverlessSearch.ingestData.logstashLink": "Logstash",
|
||||
"xpack.serverlessSearch.ingestData.logstashTitle": "Logstash",
|
||||
"xpack.serverlessSearch.ingestData.title": "Ingérer des données",
|
||||
"xpack.serverlessSearch.installClient.description": "Elastic construit et assure la maintenance des clients dans plusieurs langues populaires et notre communauté a contribué à beaucoup d'autres. Installez votre client de langage favori pour commencer.",
|
||||
"xpack.serverlessSearch.installClient.title": "Installer un client",
|
||||
"xpack.serverlessSearch.invalidJsonError": "JSON non valide",
|
||||
"xpack.serverlessSearch.languages.cURL": "cURL",
|
||||
"xpack.serverlessSearch.languages.javascript": "JavaScript / Node.js",
|
||||
|
@ -34848,17 +34799,8 @@
|
|||
"xpack.serverlessSearch.required": "Obligatoire",
|
||||
"xpack.serverlessSearch.searchQuery.description": "Vous êtes maintenant prêt à expérimenter la recherche et l'exécution d'agrégations sur vos données Elasticsearch.",
|
||||
"xpack.serverlessSearch.searchQuery.title": "Créer votre première requête de recherche",
|
||||
"xpack.serverlessSearch.selectClient.apiRequestConsoleDocLink": "Exécuter des requêtes d’API dans la console ",
|
||||
"xpack.serverlessSearch.selectClient.callout.description": "Avec la console, vous pouvez directement commencer à utiliser nos API REST. Aucune installation n’est requise. ",
|
||||
"xpack.serverlessSearch.selectClient.callout.link": "Essayez la console maintenant",
|
||||
"xpack.serverlessSearch.selectClient.callout.title": "Lancez-vous dans la console",
|
||||
"xpack.serverlessSearch.selectClient.description.console.link": "Console",
|
||||
"xpack.serverlessSearch.selectClient.elasticsearchClientDocLink": "Clients d'Elasticsearch ",
|
||||
"xpack.serverlessSearch.selectClient.heading": "Choisissez-en un",
|
||||
"xpack.serverlessSearch.selectClient.title": "Sélectionner votre client",
|
||||
"xpack.serverlessSearch.testConnection.description": "Envoyez une requête de test pour confirmer que votre client de langage et votre instance Elasticsearch sont opérationnels.",
|
||||
"xpack.serverlessSearch.testConnection.title": "Tester votre connexion",
|
||||
"xpack.serverlessSearch.tryInConsoleButton": "Essayer dans la console",
|
||||
"xpack.sessionView.alertFilteredCountStatusLabel": " Affichage de {count} alertes",
|
||||
"xpack.sessionView.alertTotalCountStatusLabel": "Affichage de {count} alertes",
|
||||
"xpack.sessionView.processTree.loadMore": "Afficher les {pageSize} événements suivants",
|
||||
|
|
|
@ -12168,7 +12168,6 @@
|
|||
"xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.isInvalid.error": "{indexName}は無効なインデックス名です",
|
||||
"xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputHelpText.lineOne": "インデックスは次の名前になります:{indexName}",
|
||||
"xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.description": "削除されたインデックス{indexName}は、既存のコネクター構成に関連付けられていました。既存のコネクター構成を新しいコネクター構成で置き換えますか?",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.description.text": "APIキーを生成し、ドキュメントをElasticsearch APIエンドポイントに送信する方法に関する{documentation}を読みます。統合を合理化するには、Elastic {clients}を使用します。",
|
||||
"xpack.enterpriseSearch.content.searchIndex.documents.documentList.description": "{total}件中{results}件を表示中。{maximum}ドキュメントが検索結果の最大数です。",
|
||||
"xpack.enterpriseSearch.content.searchIndex.documents.documentList.pagination.itemsPerPage": "毎秒あたりのドキュメント:{docPerPage}",
|
||||
"xpack.enterpriseSearch.content.searchIndex.documents.documentList.paginationOptions.option": "{docCount}ドキュメント",
|
||||
|
@ -13784,10 +13783,6 @@
|
|||
"xpack.enterpriseSearch.content.overview.documentExample.clientLibraries.python": "Python",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.clientLibraries.ruby": "Ruby",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.clientLibraries.rust": "Rust",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.description.clientsLink": "プログラミング言語クライアント",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.description.documentationLink": "ドキュメンテーション",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.generateApiKeyButton.label": "APIキーの管理",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.title": "ドキュメントをインデックスに追加しています",
|
||||
"xpack.enterpriseSearch.content.overview.emptyPrompt.body": "外部で管理されているインデックスにはドキュメントを追加しないようにすることをお勧めします。",
|
||||
"xpack.enterpriseSearch.content.overview.emptyPrompt.title": "外部で管理されているインデックス",
|
||||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.apiKeyWarning": "ElasticはAPIキーを保存しません。生成後は、1回だけキーを表示できます。必ず安全に保管してください。アクセスできなくなった場合は、この画面から新しいAPIキーを生成する必要があります。",
|
||||
|
@ -13797,7 +13792,6 @@
|
|||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.info": "ElasticsearchドキュメントをElasticsearchインデックスに送信する前に、少なくとも1つのAPIキーを作成する必要があります。",
|
||||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.learnMore": "APIキーの詳細",
|
||||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.title": "APIキーを生成",
|
||||
"xpack.enterpriseSearch.content.overview.optimizedRequest.label": "エンタープライズ サーチで最適化されたリクエストを表示",
|
||||
"xpack.enterpriseSearch.content.searchIndex.cancelSyncs.successMessage": "同期が正常にキャンセルされました",
|
||||
"xpack.enterpriseSearch.content.searchIndex.configurationTabLabel": "構成",
|
||||
"xpack.enterpriseSearch.content.searchIndex.connectorErrorCallOut.title": "コネクターでエラーが発生しました",
|
||||
|
@ -14181,16 +14175,9 @@
|
|||
"xpack.enterpriseSearch.curations.settings.licenseUpgradeLink": "ライセンスアップグレードの詳細",
|
||||
"xpack.enterpriseSearch.curations.settings.start30DayTrialButtonLabel": "30 日間のトライアルの開始",
|
||||
"xpack.enterpriseSearch.descriptionLabel": "説明",
|
||||
"xpack.enterpriseSearch.elasticsearch.features.buildSearchExperiences": "カスタム検索エクスペリエンスを構築",
|
||||
"xpack.enterpriseSearch.elasticsearch.features.buildTooling": "カスタムツールを作成",
|
||||
"xpack.enterpriseSearch.elasticsearch.features.integrate": "データベース、Webサイトなどを統合",
|
||||
"xpack.enterpriseSearch.elasticsearch.productCardDescription": "カスタムアプリケーションに最適なElasticsearchでは、非常にカスタマイズ性の高い検索を構築し、多数の異なるインジェスチョン方法を利用できます。",
|
||||
"xpack.enterpriseSearch.elasticsearch.productDescription": "高パフォーマンスで関連性の高い検索エクスペリエンスを作成するための低レベルのツール。",
|
||||
"xpack.enterpriseSearch.elasticsearch.productName": "Elasticsearch",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.createNewIndexLabel": "新しいインデックスを作成",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.gettingStartedLabel": "Elasticsearchを使い始める",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.languageClientLabel": "言語クライアントのセットアップ",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.searchUILabel": "ElasticsearchのUIを検索",
|
||||
"xpack.enterpriseSearch.emailLabel": "メール",
|
||||
"xpack.enterpriseSearch.emptyState.description": "コンテンツはElasticsearchインデックスに保存されます。まず、Elasticsearchインデックスを作成し、インジェスチョン方法を選択します。オプションには、Elastic Webクローラー、サードパーティデータ統合、Elasticsearch APIエンドポイントの使用があります。",
|
||||
"xpack.enterpriseSearch.emptyState.description.line2": "App SearchまたはElasticsearchのどちらで検索エクスペリエンスを構築しても、これが最初のステップです。",
|
||||
|
@ -14425,8 +14412,6 @@
|
|||
"xpack.enterpriseSearch.overview.elasticsearchResources.gettingStarted": "Elasticsearchを使い始める",
|
||||
"xpack.enterpriseSearch.overview.elasticsearchResources.searchUi": "ElasticsearchのUIを検索",
|
||||
"xpack.enterpriseSearch.overview.elasticsearchResources.title": "リソース",
|
||||
"xpack.enterpriseSearch.overview.emptyPromptButtonLabel": "Elasticsearchインデックスを作成",
|
||||
"xpack.enterpriseSearch.overview.emptyPromptTitle": "データを追加して検索を開始",
|
||||
"xpack.enterpriseSearch.overview.emptyState.buttonTitle": "コンテンツをエンタープライズ サーチに追加",
|
||||
"xpack.enterpriseSearch.overview.emptyState.footerLinkTitle": "詳細",
|
||||
"xpack.enterpriseSearch.overview.emptyState.heading": "コンテンツをエンタープライズ サーチに追加",
|
||||
|
@ -14452,12 +14437,9 @@
|
|||
"xpack.enterpriseSearch.overview.iconRow.sharePoint.title": "Microsoft SharePoint",
|
||||
"xpack.enterpriseSearch.overview.iconRow.sharePoint.tooltip": "Microsoft SharePointのコンテンツにインデックスを作成",
|
||||
"xpack.enterpriseSearch.overview.navTitle": "概要",
|
||||
"xpack.enterpriseSearch.overview.pageTitle": "エンタープライズ サーチへようこそ",
|
||||
"xpack.enterpriseSearch.overview.productSelector.title": "すべてのユースケースの検索エクスペリエンス",
|
||||
"xpack.enterpriseSearch.overview.searchIndices.image.altText": "検索インデックスの例",
|
||||
"xpack.enterpriseSearch.overview.setupCta.description": "Elastic App Search および Workplace Search を使用して、アプリまたは社内組織に検索を追加できます。検索が簡単になるとどのような利点があるのかについては、動画をご覧ください。",
|
||||
"xpack.enterpriseSearch.passwordLabel": "パスワード",
|
||||
"xpack.enterpriseSearch.productCard.resourcesTitle": "リソース",
|
||||
"xpack.enterpriseSearch.productSelectorCalloutTitle": "チームのためのエンタープライズレベルの機能を実現できるようにアップグレード",
|
||||
"xpack.enterpriseSearch.readOnlyMode.warning": "エンタープライズ サーチは読み取り専用モードです。作成、編集、削除などの変更を実行できません。",
|
||||
"xpack.enterpriseSearch.roleMapping.addRoleMappingButtonLabel": "マッピングを追加",
|
||||
|
@ -34746,12 +34728,6 @@
|
|||
"xpack.securitySolution.zeek.shrDescription": "レスポンダーがFINに続きSYNを送信しました。接続元からSYN-ACKはありません",
|
||||
"xpack.serverlessSearch.apiKey.activeKeys": "{number}個のアクティブなキーがあります。",
|
||||
"xpack.serverlessSearch.apiKey.expiresHelpText": "このAPIキーは{expirationDate}に有効期限切れになります",
|
||||
"xpack.serverlessSearch.header.greeting.title": "{name}様",
|
||||
"xpack.serverlessSearch.ingestData.clientDocLink": "{languageName}APIリファレンス",
|
||||
"xpack.serverlessSearch.installClient.clientDocLink": "{languageName}クライアントドキュメント",
|
||||
"xpack.serverlessSearch.selectClient.description": "Elasticは複数の一般的な言語でクライアントを構築および保守します。Elasticのコミュニティはさらに多くを提供しています。お気に入りの言語クライアントを選択するか、{console}を起動して開始します。",
|
||||
"xpack.serverlessSearch.apiCallout.content": "Consoleを使用すると、言語クライアントをインストールせずに、ElasticsearchとKibanaのREST APIを直接呼び出すことができます。",
|
||||
"xpack.serverlessSearch.apiCallOut.title": "コンソールでAPIを呼び出し",
|
||||
"xpack.serverlessSearch.apiKey.apiKeyStepDescription": "このキーは一度しか表示されないため、安全な場所に保存しておいてください。当社はお客様のAPIキーを保存しません。キーを紛失した場合は、代替キーを生成する必要があります。",
|
||||
"xpack.serverlessSearch.apiKey.apiKeyStepTitle": "このAPIキーを保存",
|
||||
"xpack.serverlessSearch.apiKey.description": "Elasticsearchプロジェクトに安全に接続するには、これらの一意の識別子が必要です。",
|
||||
|
@ -34784,8 +34760,6 @@
|
|||
"xpack.serverlessSearch.apiKey.userFieldLabel": "ユーザー",
|
||||
"xpack.serverlessSearch.back": "戻る",
|
||||
"xpack.serverlessSearch.cancel": "キャンセル",
|
||||
"xpack.serverlessSearch.codeBox.copyButtonLabel": "コピー",
|
||||
"xpack.serverlessSearch.codeBox.selectAriaLabel": "プログラミング言語を選択",
|
||||
"xpack.serverlessSearch.configureClient.advancedConfigLabel": "高度な構成",
|
||||
"xpack.serverlessSearch.configureClient.basicConfigLabel": "基本構成",
|
||||
"xpack.serverlessSearch.configureClient.description": "一意のAPIキーとCloud IDでクライアントを初期化",
|
||||
|
@ -34806,30 +34780,7 @@
|
|||
"xpack.serverlessSearch.footer.searchUI.description": "Search UIはElasticが管理している無料のオープンソースJavaScriptライブラリで、モダンで魅力的な検索エクスペリエンスをすばやく開発できます。",
|
||||
"xpack.serverlessSearch.footer.searchUI.title": "Search UIでユーザーインターフェースを構築",
|
||||
"xpack.serverlessSearch.footer.title": "次のステップ",
|
||||
"xpack.serverlessSearch.githubLink.curl.label": "curl",
|
||||
"xpack.serverlessSearch.githubLink.javascript.label": "elasticsearch",
|
||||
"xpack.serverlessSearch.githubLink.ruby.label": "elasticsearch-ruby",
|
||||
"xpack.serverlessSearch.header.description": "プログラミング言語のクライアントを設定し、データを取り込めば、数分で検索を開始できます。",
|
||||
"xpack.serverlessSearch.header.title": "Elasticsearchをはじめよう",
|
||||
"xpack.serverlessSearch.ingestData.beatsDescription": "Elasticsearch向けの軽量の、専用データ転送機能。Beatsを使用して、サーバーから運用データを送信します。",
|
||||
"xpack.serverlessSearch.ingestData.beatsLink": "beats",
|
||||
"xpack.serverlessSearch.ingestData.beatsTitle": "ビート",
|
||||
"xpack.serverlessSearch.ingestData.connectorsDescription": "サードパーティのソースからElasticsearchにデータを同期するための特別な統合。Elasticコネクターを使って、さまざまなデータベースやオブジェクトストアからコンテンツを同期できます。",
|
||||
"xpack.serverlessSearch.ingestData.connectorsPythonLink": "connectors-python",
|
||||
"xpack.serverlessSearch.ingestData.connectorsTitle": "コネクタークライアント",
|
||||
"xpack.serverlessSearch.ingestData.description": "データストリームやインデックスにデータを追加して、データを検索可能にします。アプリケーションとワークフローに合ったインジェスト方法を選択します。",
|
||||
"xpack.serverlessSearch.ingestData.ingestApiDescription": "データをインデックス化する最も柔軟な方法で、カスタマイズや最適化オプションを完全に制御できます。",
|
||||
"xpack.serverlessSearch.ingestData.ingestApiLabel": "API経由でインジェスト",
|
||||
"xpack.serverlessSearch.ingestData.ingestIntegrationDescription": "データを変換してElasticsearchに送信するために最適化された専用のインジェストツール。",
|
||||
"xpack.serverlessSearch.ingestData.ingestIntegrationLabel": "統合経由でインジェスト",
|
||||
"xpack.serverlessSearch.ingestData.ingestLegendLabel": "インジェスチョン方法を選択",
|
||||
"xpack.serverlessSearch.ingestData.integrationsLink": "統合について",
|
||||
"xpack.serverlessSearch.ingestData.logstashDescription": "データストリームやインデックスにデータを追加して、データを検索可能にします。アプリケーションとワークフローに合ったインジェスト方法を選択します。",
|
||||
"xpack.serverlessSearch.ingestData.logstashLink": "Logstash",
|
||||
"xpack.serverlessSearch.ingestData.logstashTitle": "Logstash",
|
||||
"xpack.serverlessSearch.ingestData.title": "データをインジェスト",
|
||||
"xpack.serverlessSearch.installClient.description": "Elasticは複数の一般的な言語でクライアントを構築および保守します。Elasticのコミュニティはさらに多くを提供しています。開始するには、お気に入りの言語クライアントをインストールします。",
|
||||
"xpack.serverlessSearch.installClient.title": "クライアントをインスト-ル",
|
||||
"xpack.serverlessSearch.invalidJsonError": "無効なJSON",
|
||||
"xpack.serverlessSearch.languages.cURL": "cURL",
|
||||
"xpack.serverlessSearch.languages.javascript": "JavaScript / Node.js",
|
||||
|
@ -34847,17 +34798,8 @@
|
|||
"xpack.serverlessSearch.required": "必須",
|
||||
"xpack.serverlessSearch.searchQuery.description": "これで、Elasticsearchデータの検索や集約の実験を始める準備が整いました。",
|
||||
"xpack.serverlessSearch.searchQuery.title": "最初の検索クエリを作成",
|
||||
"xpack.serverlessSearch.selectClient.apiRequestConsoleDocLink": "コンソールでAPIリクエストを実行 ",
|
||||
"xpack.serverlessSearch.selectClient.callout.description": "コンソールでは、REST APIを使用してすぐに開始できます。インストールは不要です。",
|
||||
"xpack.serverlessSearch.selectClient.callout.link": "今すぐコンソールを試す",
|
||||
"xpack.serverlessSearch.selectClient.callout.title": "今すぐコンソールで試す",
|
||||
"xpack.serverlessSearch.selectClient.description.console.link": "コンソール",
|
||||
"xpack.serverlessSearch.selectClient.elasticsearchClientDocLink": "Elasticsearchクライアント ",
|
||||
"xpack.serverlessSearch.selectClient.heading": "1つ選択",
|
||||
"xpack.serverlessSearch.selectClient.title": "クライアントを選択",
|
||||
"xpack.serverlessSearch.testConnection.description": "テストリクエストを送信して、言語クライアントとElasticsearchインスタンスが起動し、実行中であることを確認してください。",
|
||||
"xpack.serverlessSearch.testConnection.title": "接続をテスト",
|
||||
"xpack.serverlessSearch.tryInConsoleButton": "コンソールで試す",
|
||||
"xpack.sessionView.alertFilteredCountStatusLabel": " {count}件のアラートを表示中",
|
||||
"xpack.sessionView.alertTotalCountStatusLabel": "{count}件のアラートを表示中",
|
||||
"xpack.sessionView.processTree.loadMore": "{pageSize}次のイベントを表示",
|
||||
|
|
|
@ -12168,7 +12168,6 @@
|
|||
"xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.isInvalid.error": "{indexName} 为无效索引名称",
|
||||
"xpack.enterpriseSearch.content.newIndex.newSearchIndexTemplate.nameInputHelpText.lineOne": "您的索引将命名为:{indexName}",
|
||||
"xpack.enterpriseSearch.content.newIndex.steps.buildConnector.confirmModal.description": "名为 {indexName} 的已删除索引最初绑定到现有连接器配置。是否要将现有连接器配置替换成新的?",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.description.text": "生成 API 密钥并阅读{documentation},了解如何将文档发布到 Elasticsearch API 终端。将 Elastic {clients} 用于精简集成。",
|
||||
"xpack.enterpriseSearch.content.searchIndex.documents.documentList.description": "显示 {results} 个,共 {total} 个。搜索结果最多包含 {maximum} 个文档。",
|
||||
"xpack.enterpriseSearch.content.searchIndex.documents.documentList.pagination.itemsPerPage": "每页文档数:{docPerPage}",
|
||||
"xpack.enterpriseSearch.content.searchIndex.documents.documentList.paginationOptions.option": "{docCount} 个文档",
|
||||
|
@ -13784,10 +13783,6 @@
|
|||
"xpack.enterpriseSearch.content.overview.documentExample.clientLibraries.python": "Python",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.clientLibraries.ruby": "Ruby",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.clientLibraries.rust": "Rust",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.description.clientsLink": "编程语言客户端",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.description.documentationLink": "文档",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.generateApiKeyButton.label": "管理 API 密钥",
|
||||
"xpack.enterpriseSearch.content.overview.documentExample.title": "正在添加文档到您的索引",
|
||||
"xpack.enterpriseSearch.content.overview.emptyPrompt.body": "不建议将文档添加到外部管理的索引。",
|
||||
"xpack.enterpriseSearch.content.overview.emptyPrompt.title": "外部管理的索引",
|
||||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.apiKeyWarning": "Elastic 不会存储 API 密钥。一旦生成,您只能查看密钥一次。请确保将其保存在某个安全位置。如果失去它的访问权限,您需要从此屏幕生成新的 API 密钥。",
|
||||
|
@ -13797,7 +13792,6 @@
|
|||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.info": "在开始将文档发布到 Elasticsearch 索引之前,您至少需要创建一个 API 密钥。",
|
||||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.learnMore": "进一步了解 API 密钥",
|
||||
"xpack.enterpriseSearch.content.overview.generateApiKeyModal.title": "生成 API 密钥",
|
||||
"xpack.enterpriseSearch.content.overview.optimizedRequest.label": "查看 Enterprise Search 优化的请求",
|
||||
"xpack.enterpriseSearch.content.searchIndex.cancelSyncs.successMessage": "已成功取消同步",
|
||||
"xpack.enterpriseSearch.content.searchIndex.configurationTabLabel": "配置",
|
||||
"xpack.enterpriseSearch.content.searchIndex.connectorErrorCallOut.title": "您的连接器报告了错误",
|
||||
|
@ -14181,16 +14175,9 @@
|
|||
"xpack.enterpriseSearch.curations.settings.licenseUpgradeLink": "详细了解许可证升级",
|
||||
"xpack.enterpriseSearch.curations.settings.start30DayTrialButtonLabel": "开始为期 30 天的试用",
|
||||
"xpack.enterpriseSearch.descriptionLabel": "描述",
|
||||
"xpack.enterpriseSearch.elasticsearch.features.buildSearchExperiences": "构建定制搜索体验",
|
||||
"xpack.enterpriseSearch.elasticsearch.features.buildTooling": "构建定制工具",
|
||||
"xpack.enterpriseSearch.elasticsearch.features.integrate": "集成数据库、网站等",
|
||||
"xpack.enterpriseSearch.elasticsearch.productCardDescription": "适用于专门定制的应用程序,Elasticsearch 将帮助您构建高度可定制的搜索,并提供许多不同的采集方法。",
|
||||
"xpack.enterpriseSearch.elasticsearch.productDescription": "用于打造高效、相关的搜索体验的低级工具。",
|
||||
"xpack.enterpriseSearch.elasticsearch.productName": "Elasticsearch",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.createNewIndexLabel": "创建新索引",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.gettingStartedLabel": "Elasticsearch 入门",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.languageClientLabel": "设置语言客户端",
|
||||
"xpack.enterpriseSearch.elasticsearch.resources.searchUILabel": "Elasticsearch 的搜索 UI",
|
||||
"xpack.enterpriseSearch.emailLabel": "电子邮件",
|
||||
"xpack.enterpriseSearch.emptyState.description": "您的内容存储在 Elasticsearch 索引中。通过创建 Elasticsearch 索引并选择采集方法开始使用。选项包括 Elastic 网络爬虫、第三方数据集成或使用 Elasticsearch API 终端。",
|
||||
"xpack.enterpriseSearch.emptyState.description.line2": "无论是使用 App Search 还是 Elasticsearch 构建搜索体验,您都可以从此处立即开始。",
|
||||
|
@ -14425,8 +14412,6 @@
|
|||
"xpack.enterpriseSearch.overview.elasticsearchResources.gettingStarted": "Elasticsearch 入门",
|
||||
"xpack.enterpriseSearch.overview.elasticsearchResources.searchUi": "Elasticsearch 的搜索 UI",
|
||||
"xpack.enterpriseSearch.overview.elasticsearchResources.title": "资源",
|
||||
"xpack.enterpriseSearch.overview.emptyPromptButtonLabel": "创建 Elasticsearch 索引",
|
||||
"xpack.enterpriseSearch.overview.emptyPromptTitle": "添加数据并开始搜索",
|
||||
"xpack.enterpriseSearch.overview.emptyState.buttonTitle": "将内容添加到 Enterprise Search",
|
||||
"xpack.enterpriseSearch.overview.emptyState.footerLinkTitle": "了解详情",
|
||||
"xpack.enterpriseSearch.overview.emptyState.heading": "将内容添加到 Enterprise Search",
|
||||
|
@ -14452,12 +14437,9 @@
|
|||
"xpack.enterpriseSearch.overview.iconRow.sharePoint.title": "Microsoft SharePoint",
|
||||
"xpack.enterpriseSearch.overview.iconRow.sharePoint.tooltip": "索引来自 Microsoft SharePoint 的内容",
|
||||
"xpack.enterpriseSearch.overview.navTitle": "概览",
|
||||
"xpack.enterpriseSearch.overview.pageTitle": "欢迎使用 Enterprise Search",
|
||||
"xpack.enterpriseSearch.overview.productSelector.title": "每个用例的搜索体验",
|
||||
"xpack.enterpriseSearch.overview.searchIndices.image.altText": "搜索索引图示",
|
||||
"xpack.enterpriseSearch.overview.setupCta.description": "通过 Elastic App Search 和 Workplace Search,将搜索添加到您的应用或内部组织中。观看视频,了解方便易用的搜索功能可以帮您做些什么。",
|
||||
"xpack.enterpriseSearch.passwordLabel": "密码",
|
||||
"xpack.enterpriseSearch.productCard.resourcesTitle": "资源",
|
||||
"xpack.enterpriseSearch.productSelectorCalloutTitle": "进行升级以便为您的团队获取企业级功能",
|
||||
"xpack.enterpriseSearch.readOnlyMode.warning": "企业搜索处于只读模式。您将无法执行更改,例如创建、编辑或删除。",
|
||||
"xpack.enterpriseSearch.roleMapping.addRoleMappingButtonLabel": "添加映射",
|
||||
|
@ -34742,12 +34724,6 @@
|
|||
"xpack.securitySolution.zeek.shrDescription": "响应方已发送 SYN ACK,后跟 FIN,发起方未发送 SYN",
|
||||
"xpack.serverlessSearch.apiKey.activeKeys": "您有 {number} 个活动密钥。",
|
||||
"xpack.serverlessSearch.apiKey.expiresHelpText": "此 API 密钥将于 {expirationDate}到期",
|
||||
"xpack.serverlessSearch.header.greeting.title": "{name}您好!",
|
||||
"xpack.serverlessSearch.ingestData.clientDocLink": "{languageName} API 参考",
|
||||
"xpack.serverlessSearch.installClient.clientDocLink": "{languageName} 客户端文档",
|
||||
"xpack.serverlessSearch.selectClient.description": "Elastic 以几种流行语言构建和维护客户端,我们的社区也做出了许多贡献。选择您常用的语言客户端或深入分析 {console} 以开始使用。",
|
||||
"xpack.serverlessSearch.apiCallout.content": "使用 Console,您可以直接调用 Elasticsearch 和 Kibana REST API,而无需安装语言客户端。",
|
||||
"xpack.serverlessSearch.apiCallOut.title": "通过 Console 调用 API",
|
||||
"xpack.serverlessSearch.apiKey.apiKeyStepDescription": "此密钥仅显示一次,因此请将其保存到某个安全位置。我们不存储您的 API 密钥,因此,如果您丢失了密钥,则需要生成替代密钥。",
|
||||
"xpack.serverlessSearch.apiKey.apiKeyStepTitle": "存储此 API 密钥",
|
||||
"xpack.serverlessSearch.apiKey.description": "您需要这些唯一标识符才能安全连接到 Elasticsearch 项目。",
|
||||
|
@ -34780,8 +34756,6 @@
|
|||
"xpack.serverlessSearch.apiKey.userFieldLabel": "用户",
|
||||
"xpack.serverlessSearch.back": "返回",
|
||||
"xpack.serverlessSearch.cancel": "取消",
|
||||
"xpack.serverlessSearch.codeBox.copyButtonLabel": "复制",
|
||||
"xpack.serverlessSearch.codeBox.selectAriaLabel": "选择编程语言",
|
||||
"xpack.serverlessSearch.configureClient.advancedConfigLabel": "高级配置",
|
||||
"xpack.serverlessSearch.configureClient.basicConfigLabel": "基本配置",
|
||||
"xpack.serverlessSearch.configureClient.description": "使用唯一 API 密钥和云 ID 对客户端进行初始化",
|
||||
|
@ -34802,30 +34776,7 @@
|
|||
"xpack.serverlessSearch.footer.searchUI.description": "搜索 UI 是一个由 Elastic 维护的免费开源 JavaScript 库,用于快速打造现代、富于吸引力的搜索体验。",
|
||||
"xpack.serverlessSearch.footer.searchUI.title": "通过搜索 UI 构建用户界面",
|
||||
"xpack.serverlessSearch.footer.title": "后续操作",
|
||||
"xpack.serverlessSearch.githubLink.curl.label": "curl",
|
||||
"xpack.serverlessSearch.githubLink.javascript.label": "Elasticsearch",
|
||||
"xpack.serverlessSearch.githubLink.ruby.label": "elasticsearch-ruby",
|
||||
"xpack.serverlessSearch.header.description": "设置您的编程语言客户端,采集一些数据,如此即可在数分钟内开始搜索。",
|
||||
"xpack.serverlessSearch.header.title": "Elasticsearch 入门",
|
||||
"xpack.serverlessSearch.ingestData.beatsDescription": "用于 Elasticsearch 的轻量级、单一用途数据采集器。使用 Beats 从您的服务器发送运营数据。",
|
||||
"xpack.serverlessSearch.ingestData.beatsLink": "Beats",
|
||||
"xpack.serverlessSearch.ingestData.beatsTitle": "Beats",
|
||||
"xpack.serverlessSearch.ingestData.connectorsDescription": "用于将数据从第三方源同步到 Elasticsearch 的专用集成。使用 Elastic 连接器同步来自一系列数据库和对象存储的内容。",
|
||||
"xpack.serverlessSearch.ingestData.connectorsPythonLink": "connectors-python",
|
||||
"xpack.serverlessSearch.ingestData.connectorsTitle": "连接器客户端",
|
||||
"xpack.serverlessSearch.ingestData.description": "将数据添加到数据流或索引,使其可进行搜索。选择适合您的应用程序和工作流的集成方法。",
|
||||
"xpack.serverlessSearch.ingestData.ingestApiDescription": "最灵活的数据索引方法,允许您全面控制定制和优化选项。",
|
||||
"xpack.serverlessSearch.ingestData.ingestApiLabel": "通过 API 采集",
|
||||
"xpack.serverlessSearch.ingestData.ingestIntegrationDescription": "针对转换数据并将其传输到 Elasticsearch 而优化的专用采集工具。",
|
||||
"xpack.serverlessSearch.ingestData.ingestIntegrationLabel": "通过集成采集",
|
||||
"xpack.serverlessSearch.ingestData.ingestLegendLabel": "选择采集方法",
|
||||
"xpack.serverlessSearch.ingestData.integrationsLink": "关于集成",
|
||||
"xpack.serverlessSearch.ingestData.logstashDescription": "将数据添加到数据流或索引,使其可进行搜索。选择适合您的应用程序和工作流的集成方法。",
|
||||
"xpack.serverlessSearch.ingestData.logstashLink": "Logstash",
|
||||
"xpack.serverlessSearch.ingestData.logstashTitle": "Logstash",
|
||||
"xpack.serverlessSearch.ingestData.title": "采集数据",
|
||||
"xpack.serverlessSearch.installClient.description": "Elastic 以几种流行语言构建和维护客户端,我们的社区也做出了许多贡献。安装您常用的语言客户端以开始使用。",
|
||||
"xpack.serverlessSearch.installClient.title": "安装客户端",
|
||||
"xpack.serverlessSearch.invalidJsonError": "JSON 无效",
|
||||
"xpack.serverlessSearch.languages.cURL": "cURL",
|
||||
"xpack.serverlessSearch.languages.javascript": "JavaScript/Node.js",
|
||||
|
@ -34843,17 +34794,8 @@
|
|||
"xpack.serverlessSearch.required": "必需",
|
||||
"xpack.serverlessSearch.searchQuery.description": "现在您已做好准备,可以开始体验搜索并对您的 Elasticsearch 数据执行聚合。",
|
||||
"xpack.serverlessSearch.searchQuery.title": "构建您的首个搜索查询",
|
||||
"xpack.serverlessSearch.selectClient.apiRequestConsoleDocLink": "在 Console 中运行 API 请求 ",
|
||||
"xpack.serverlessSearch.selectClient.callout.description": "借助 Console,您可以立即开始使用我们的 REST API。无需进行安装。",
|
||||
"xpack.serverlessSearch.selectClient.callout.link": "立即试用 Console",
|
||||
"xpack.serverlessSearch.selectClient.callout.title": "立即在 Console 中试用",
|
||||
"xpack.serverlessSearch.selectClient.description.console.link": "控制台",
|
||||
"xpack.serverlessSearch.selectClient.elasticsearchClientDocLink": "Elasticsearch 客户端 ",
|
||||
"xpack.serverlessSearch.selectClient.heading": "选择一个",
|
||||
"xpack.serverlessSearch.selectClient.title": "选择客户端",
|
||||
"xpack.serverlessSearch.testConnection.description": "发送测试请求,以确认您的语言客户端和 Elasticsearch 实例已启动并正在运行。",
|
||||
"xpack.serverlessSearch.testConnection.title": "测试您的连接",
|
||||
"xpack.serverlessSearch.tryInConsoleButton": "在 Console 中试用",
|
||||
"xpack.sessionView.alertFilteredCountStatusLabel": " 正在显示 {count} 个告警",
|
||||
"xpack.sessionView.alertTotalCountStatusLabel": "正在显示 {count} 个告警",
|
||||
"xpack.sessionView.processTree.loadMore": "显示 {pageSize} 个后续事件",
|
||||
|
|
|
@ -5228,6 +5228,10 @@
|
|||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@kbn/search-api-panels@link:packages/kbn-search-api-panels":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
||||
"@kbn/search-examples-plugin@link:examples/search_examples":
|
||||
version "0.0.0"
|
||||
uid ""
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue