starknet 3.5.1 → 3.6.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +18 -0
- package/__tests__/account.test.ts +38 -20
- package/__tests__/accountContract.test.ts +0 -31
- package/__tests__/constancts.ts +2 -0
- package/__tests__/contract.test.ts +14 -21
- package/__tests__/provider.test.ts +8 -0
- package/account/default.d.ts +2 -0
- package/account/default.js +60 -12
- package/account/interface.d.ts +14 -0
- package/contract/default.d.ts +1 -1
- package/contract/default.js +27 -11
- package/dist/account/default.d.ts +2 -1
- package/dist/account/default.js +47 -9
- package/dist/account/interface.d.ts +13 -1
- package/dist/contract/default.d.ts +1 -1
- package/dist/contract/default.js +22 -10
- package/dist/provider/default.d.ts +9 -2
- package/dist/provider/default.js +16 -11
- package/dist/signer/index.d.ts +1 -0
- package/dist/signer/index.js +1 -0
- package/dist/signer/ledger.d.ts +12 -0
- package/dist/signer/ledger.js +138 -0
- package/dist/types/api.d.ts +57 -2
- package/package.json +5 -2
- package/provider/default.d.ts +9 -1
- package/provider/default.js +19 -15
- package/signer/index.d.ts +1 -0
- package/signer/index.js +1 -0
- package/signer/ledger.d.ts +15 -0
- package/signer/ledger.js +243 -0
- package/src/account/default.ts +25 -4
- package/src/account/interface.ts +15 -0
- package/src/contract/default.ts +23 -22
- package/src/provider/default.ts +13 -11
- package/src/signer/index.ts +1 -0
- package/src/signer/ledger.ts +81 -0
- package/src/types/api.ts +62 -3
- package/tsconfig.json +1 -10
- package/types/api.d.ts +57 -2
- package/www/README.md +41 -0
- package/www/babel.config.js +3 -0
- package/www/code-examples/account.js +62 -0
- package/www/code-examples/amm.js +49 -0
- package/www/code-examples/erc20.js +10 -0
- package/www/code-examples/package-lock.json +336 -0
- package/www/code-examples/package.json +15 -0
- package/www/docs/API/_category_.json +5 -0
- package/www/docs/API/account.md +11 -0
- package/www/docs/API/contract.md +14 -0
- package/www/docs/API/index.md +4 -0
- package/www/docs/API/provider.md +10 -0
- package/www/docs/API/signer.md +8 -0
- package/www/docusaurus.config.js +131 -0
- package/www/guides/account.md +60 -0
- package/www/guides/cra.md +3 -0
- package/www/guides/erc20.md +88 -0
- package/www/guides/intro.md +20 -0
- package/www/package-lock.json +22285 -0
- package/www/package.json +43 -0
- package/www/sidebars.js +31 -0
- package/www/src/components/HomepageFeatures/index.tsx +67 -0
- package/www/src/components/HomepageFeatures/styles.module.css +10 -0
- package/www/src/css/custom.css +39 -0
- package/www/src/pages/index.module.css +23 -0
- package/www/src/pages/index.tsx +40 -0
- package/www/src/pages/markdown-page.md +7 -0
- package/www/static/.nojekyll +0 -0
- package/www/static/img/docusaurus.png +0 -0
- package/www/static/img/favicon.ico +0 -0
- package/www/static/img/logo.svg +17 -0
- package/www/static/img/starknet-1.png +0 -0
- package/www/static/img/starknet-2.png +0 -0
- package/www/static/img/starknet-3.png +0 -0
- package/www/static/img/tutorial/docsVersionDropdown.png +0 -0
- package/www/static/img/tutorial/localeDropdown.png +0 -0
- package/www/tsconfig.json +8 -0
package/www/package.json
ADDED
|
@@ -0,0 +1,43 @@
|
|
|
1
|
+
{
|
|
2
|
+
"name": "www",
|
|
3
|
+
"version": "0.0.0",
|
|
4
|
+
"private": true,
|
|
5
|
+
"scripts": {
|
|
6
|
+
"docusaurus": "docusaurus",
|
|
7
|
+
"start": "docusaurus start",
|
|
8
|
+
"build": "docusaurus build",
|
|
9
|
+
"swizzle": "docusaurus swizzle",
|
|
10
|
+
"deploy": "docusaurus deploy",
|
|
11
|
+
"clear": "docusaurus clear",
|
|
12
|
+
"serve": "docusaurus serve",
|
|
13
|
+
"write-translations": "docusaurus write-translations",
|
|
14
|
+
"write-heading-ids": "docusaurus write-heading-ids",
|
|
15
|
+
"typecheck": "tsc"
|
|
16
|
+
},
|
|
17
|
+
"dependencies": {
|
|
18
|
+
"@docusaurus/core": "^2.0.0-beta.17",
|
|
19
|
+
"@docusaurus/preset-classic": "^2.0.0-beta.17",
|
|
20
|
+
"@mdx-js/react": "^1.6.22",
|
|
21
|
+
"clsx": "^1.1.1",
|
|
22
|
+
"prism-react-renderer": "^1.2.1",
|
|
23
|
+
"react": "^17.0.1",
|
|
24
|
+
"react-dom": "^17.0.1"
|
|
25
|
+
},
|
|
26
|
+
"devDependencies": {
|
|
27
|
+
"@docusaurus/module-type-aliases": "^2.0.0-beta.17",
|
|
28
|
+
"@tsconfig/docusaurus": "^1.0.4",
|
|
29
|
+
"typescript": "^4.5.2"
|
|
30
|
+
},
|
|
31
|
+
"browserslist": {
|
|
32
|
+
"production": [
|
|
33
|
+
">0.5%",
|
|
34
|
+
"not dead",
|
|
35
|
+
"not op_mini all"
|
|
36
|
+
],
|
|
37
|
+
"development": [
|
|
38
|
+
"last 1 chrome version",
|
|
39
|
+
"last 1 firefox version",
|
|
40
|
+
"last 1 safari version"
|
|
41
|
+
]
|
|
42
|
+
}
|
|
43
|
+
}
|
package/www/sidebars.js
ADDED
|
@@ -0,0 +1,31 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Creating a sidebar enables you to:
|
|
3
|
+
- create an ordered group of docs
|
|
4
|
+
- render a sidebar for each doc of that group
|
|
5
|
+
- provide next/previous navigation
|
|
6
|
+
|
|
7
|
+
The sidebars can be generated from the filesystem, or explicitly defined here.
|
|
8
|
+
|
|
9
|
+
Create as many sidebars as you want.
|
|
10
|
+
*/
|
|
11
|
+
|
|
12
|
+
// @ts-check
|
|
13
|
+
|
|
14
|
+
/** @type {import('@docusaurus/plugin-content-docs').SidebarsConfig} */
|
|
15
|
+
const sidebars = {
|
|
16
|
+
// By default, Docusaurus generates a sidebar from the docs folder structure
|
|
17
|
+
tutorialSidebar: [{type: 'autogenerated', dirName: '.'}],
|
|
18
|
+
|
|
19
|
+
// But you can create a sidebar manually
|
|
20
|
+
/*
|
|
21
|
+
tutorialSidebar: [
|
|
22
|
+
{
|
|
23
|
+
type: 'category',
|
|
24
|
+
label: 'Tutorial',
|
|
25
|
+
items: ['hello'],
|
|
26
|
+
},
|
|
27
|
+
],
|
|
28
|
+
*/
|
|
29
|
+
};
|
|
30
|
+
|
|
31
|
+
module.exports = sidebars;
|
|
@@ -0,0 +1,67 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import clsx from 'clsx';
|
|
3
|
+
import styles from './styles.module.css';
|
|
4
|
+
|
|
5
|
+
type FeatureItem = {
|
|
6
|
+
title: string;
|
|
7
|
+
image: string;
|
|
8
|
+
description: JSX.Element;
|
|
9
|
+
};
|
|
10
|
+
|
|
11
|
+
const FeatureList: FeatureItem[] = [
|
|
12
|
+
{
|
|
13
|
+
title: 'Scalability and Integrity',
|
|
14
|
+
image: '/img/starknet-3.png',
|
|
15
|
+
description: (
|
|
16
|
+
<>
|
|
17
|
+
StarkNet supports scale, while preserving the security of L1 Ethereum by producing STARK proofs off-chain, and then verifying those proofs on-chain.
|
|
18
|
+
</>
|
|
19
|
+
),
|
|
20
|
+
},
|
|
21
|
+
{
|
|
22
|
+
title: 'General Purpose',
|
|
23
|
+
image: '/img/starknet-2.png',
|
|
24
|
+
description: (
|
|
25
|
+
<>
|
|
26
|
+
On StarkNet, developers can easily deploy any business logic using StarkNet Contracts.
|
|
27
|
+
</>
|
|
28
|
+
),
|
|
29
|
+
},
|
|
30
|
+
{
|
|
31
|
+
title: 'Composability',
|
|
32
|
+
image: '/img/starknet-1.png',
|
|
33
|
+
description: (
|
|
34
|
+
<>
|
|
35
|
+
StarkNet provides Ethereum-level composability – facilitating easy development and innovation.
|
|
36
|
+
</>
|
|
37
|
+
),
|
|
38
|
+
},
|
|
39
|
+
];
|
|
40
|
+
|
|
41
|
+
function Feature({title, image, description}: FeatureItem) {
|
|
42
|
+
return (
|
|
43
|
+
<div className={clsx('col col--4')}>
|
|
44
|
+
<div className="text--center">
|
|
45
|
+
<img className={styles.featureSvg} alt={title} src={image} />
|
|
46
|
+
</div>
|
|
47
|
+
<div className="text--center padding-horiz--md" style={{marginTop: "15px"}}>
|
|
48
|
+
<h3>{title}</h3>
|
|
49
|
+
<p>{description}</p>
|
|
50
|
+
</div>
|
|
51
|
+
</div>
|
|
52
|
+
);
|
|
53
|
+
}
|
|
54
|
+
|
|
55
|
+
export default function HomepageFeatures(): JSX.Element {
|
|
56
|
+
return (
|
|
57
|
+
<section className={styles.features}>
|
|
58
|
+
<div className="container">
|
|
59
|
+
<div className="row">
|
|
60
|
+
{FeatureList.map((props, idx) => (
|
|
61
|
+
<Feature key={idx} {...props} />
|
|
62
|
+
))}
|
|
63
|
+
</div>
|
|
64
|
+
</div>
|
|
65
|
+
</section>
|
|
66
|
+
);
|
|
67
|
+
}
|
|
@@ -0,0 +1,39 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* Any CSS included here will be global. The classic template
|
|
3
|
+
* bundles Infima by default. Infima is a CSS framework designed to
|
|
4
|
+
* work well for content-centric websites.
|
|
5
|
+
*/
|
|
6
|
+
|
|
7
|
+
/* You can override the default Infima variables here. */
|
|
8
|
+
:root {
|
|
9
|
+
--ifm-color-primary: black;
|
|
10
|
+
--ifm-color-primary-dark: black;
|
|
11
|
+
--ifm-color-primary-darker: black;
|
|
12
|
+
--ifm-color-primary-darkest: black;
|
|
13
|
+
--ifm-color-primary-light: black;
|
|
14
|
+
--ifm-color-primary-lighter: black;
|
|
15
|
+
--ifm-color-primary-lightest: black;
|
|
16
|
+
--ifm-code-font-size: 95%;
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
/* For readability concerns, you should choose a lighter palette in dark mode. */
|
|
20
|
+
[data-theme='dark'] {
|
|
21
|
+
--ifm-color-primary: white;
|
|
22
|
+
--ifm-color-primary-dark: white;
|
|
23
|
+
--ifm-color-primary-darker: white;
|
|
24
|
+
--ifm-color-primary-darkest: white;
|
|
25
|
+
--ifm-color-primary-light: white;
|
|
26
|
+
--ifm-color-primary-lighter: white;
|
|
27
|
+
--ifm-color-primary-lightest: white;
|
|
28
|
+
}
|
|
29
|
+
|
|
30
|
+
.docusaurus-highlight-code-line {
|
|
31
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
32
|
+
display: block;
|
|
33
|
+
margin: 0 calc(-1 * var(--ifm-pre-padding));
|
|
34
|
+
padding: 0 var(--ifm-pre-padding);
|
|
35
|
+
}
|
|
36
|
+
|
|
37
|
+
[data-theme='dark'] .docusaurus-highlight-code-line {
|
|
38
|
+
background-color: rgba(0, 0, 0, 0.3);
|
|
39
|
+
}
|
|
@@ -0,0 +1,23 @@
|
|
|
1
|
+
/**
|
|
2
|
+
* CSS files with the .module.css suffix will be treated as CSS modules
|
|
3
|
+
* and scoped locally.
|
|
4
|
+
*/
|
|
5
|
+
|
|
6
|
+
.heroBanner {
|
|
7
|
+
padding: 4rem 0;
|
|
8
|
+
text-align: center;
|
|
9
|
+
position: relative;
|
|
10
|
+
overflow: hidden;
|
|
11
|
+
}
|
|
12
|
+
|
|
13
|
+
@media screen and (max-width: 966px) {
|
|
14
|
+
.heroBanner {
|
|
15
|
+
padding: 2rem;
|
|
16
|
+
}
|
|
17
|
+
}
|
|
18
|
+
|
|
19
|
+
.buttons {
|
|
20
|
+
display: flex;
|
|
21
|
+
align-items: center;
|
|
22
|
+
justify-content: center;
|
|
23
|
+
}
|
|
@@ -0,0 +1,40 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
import clsx from 'clsx';
|
|
3
|
+
import Layout from '@theme/Layout';
|
|
4
|
+
import Link from '@docusaurus/Link';
|
|
5
|
+
import useDocusaurusContext from '@docusaurus/useDocusaurusContext';
|
|
6
|
+
import styles from './index.module.css';
|
|
7
|
+
import HomepageFeatures from '@site/src/components/HomepageFeatures';
|
|
8
|
+
|
|
9
|
+
function HomepageHeader() {
|
|
10
|
+
const {siteConfig} = useDocusaurusContext();
|
|
11
|
+
return (
|
|
12
|
+
<header className={clsx('hero hero--primary', styles.heroBanner)}>
|
|
13
|
+
<div className="container">
|
|
14
|
+
<img src="/img/logo.svg"/>
|
|
15
|
+
<p className="hero__subtitle">{siteConfig.tagline}</p>
|
|
16
|
+
<div className={styles.buttons}>
|
|
17
|
+
<Link
|
|
18
|
+
className="button button--secondary button--lg"
|
|
19
|
+
to="/guides/intro">
|
|
20
|
+
Get Started - 5 min ⏱️
|
|
21
|
+
</Link>
|
|
22
|
+
</div>
|
|
23
|
+
</div>
|
|
24
|
+
</header>
|
|
25
|
+
);
|
|
26
|
+
}
|
|
27
|
+
|
|
28
|
+
export default function Home(): JSX.Element {
|
|
29
|
+
const {siteConfig} = useDocusaurusContext();
|
|
30
|
+
return (
|
|
31
|
+
<Layout
|
|
32
|
+
title={`Hello from ${siteConfig.title}`}
|
|
33
|
+
description="Description will go into a meta tag in <head />">
|
|
34
|
+
<HomepageHeader />
|
|
35
|
+
<main>
|
|
36
|
+
<HomepageFeatures />
|
|
37
|
+
</main>
|
|
38
|
+
</Layout>
|
|
39
|
+
);
|
|
40
|
+
}
|
|
File without changes
|
|
Binary file
|
|
Binary file
|
|
@@ -0,0 +1,17 @@
|
|
|
1
|
+
<svg width="321" height="182" viewBox="0 0 321 182" fill="none" xmlns="http://www.w3.org/2000/svg">
|
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M213.172 49C213.172 76.0622 191.234 98 164.172 98C137.11 98 115.17 76.0622 115.17 49C115.17 21.9378 137.11 0 164.172 0C191.234 0 213.172 21.9378 213.172 49Z" fill="#29296E"/>
|
|
3
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M186.973 35.8984L185.727 32.0489C185.474 31.266 184.856 30.6567 184.07 30.4165L180.202 29.2269C179.667 29.0634 179.662 28.308 180.193 28.1357L184.044 26.8897C184.826 26.6365 185.435 26.0185 185.677 25.2327L186.865 21.3644C187.028 20.8304 187.784 20.8246 187.956 21.3572L189.202 25.2067C189.455 25.9881 190.073 26.5974 190.859 26.8391L194.727 28.0272C195.263 28.1922 195.269 28.9462 194.736 29.1184L190.885 30.3644C190.104 30.6177 189.494 31.237 189.253 32.0229L188.065 35.8897C187.901 36.4252 187.146 36.431 186.973 35.8984Z" fill="#FAFAFA"/>
|
|
4
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M119.627 48.2236C120.792 45.9414 123.095 44.2221 125.489 43.1353C127.907 42.0601 130.566 41.4001 133.176 41.186C138.447 40.7098 143.582 41.5912 148.259 43.1151C150.669 43.8329 152.825 44.83 155.052 45.8372C156.135 46.3582 157.152 46.9486 158.2 47.5188L161.094 49.1961C164.272 51.144 167.353 52.869 170.247 54.2091C173.149 55.5376 175.771 56.4363 178.243 56.8951C180.715 57.3596 183.227 57.3538 186.317 56.6447C189.382 55.9515 192.831 54.4566 196.436 52.5391C200.062 50.6201 203.781 48.267 208.025 45.9674C207.599 50.7735 206.239 55.28 204.114 59.6317C201.938 63.9313 198.91 68.1252 194.496 71.5217C190.166 74.9457 184.22 77.3321 178.166 77.691C172.11 78.1006 166.349 76.7663 161.447 74.759C156.527 72.7229 152.275 70.047 148.506 67.0933C147.466 66.2771 146.907 65.814 146.139 65.1643L143.993 63.2844C142.547 62.1527 141.146 60.7996 139.715 59.678C136.86 57.2916 134.035 54.9009 130.938 52.8285C129.376 51.775 127.765 50.7981 125.939 49.9327C125.032 49.5145 124.068 49.1252 123.033 48.8184C121.974 48.4725 120.897 48.267 119.627 48.2236Z" fill="#FF4F0A"/>
|
|
5
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M119.627 48.2236C120.221 43.2786 122.527 38.6404 126.221 34.6925C129.897 30.7822 135.64 27.7677 142.012 27.3683C145.156 27.1585 148.349 27.5087 151.284 28.322C154.205 29.1324 156.943 30.3133 159.411 31.704C160.644 32.403 161.797 33.1671 162.946 33.9385L166.009 36.2569L170.789 40.0282C173.891 42.4985 176.852 44.7836 179.589 46.6708C182.352 48.5608 184.705 49.9414 186.952 50.7504C189.179 51.6331 191.993 51.8589 195.712 50.924C197.559 50.4985 199.485 49.7214 201.54 48.8792C203.583 48.0166 205.705 46.9877 208.025 45.9674C207.745 48.4537 207.24 50.9298 206.281 53.2438C205.359 55.5897 204.145 57.8849 202.447 60.0253C201.579 61.0673 200.648 62.115 199.563 63.0818C198.477 64.0253 197.275 64.9211 195.946 65.7069C193.297 67.2424 190.153 68.364 186.929 68.7634C183.705 69.1686 180.467 68.966 177.519 68.3408C174.556 67.733 171.855 66.7533 169.376 65.6216C164.436 63.3234 160.302 60.4349 156.648 57.377C154.813 55.8502 153.093 54.2554 151.463 52.636L149.538 50.704C148.958 50.144 148.372 49.581 147.792 49.0658C145.453 46.9978 143.282 45.4175 140.891 44.432C138.518 43.4001 135.48 42.9761 131.754 43.6737C128.042 44.364 123.97 45.9689 119.627 48.2236Z" fill="#FAFAFA"/>
|
|
6
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M139.21 73.7239C139.21 75.187 138.023 76.3737 136.56 76.3737C135.097 76.3737 133.912 75.187 133.912 73.7239C133.912 72.2608 135.097 71.0741 136.56 71.0741C138.023 71.0741 139.21 72.2608 139.21 73.7239Z" fill="#FAFAFA"/>
|
|
7
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M139.21 73.7239C139.21 75.187 138.023 76.3737 136.56 76.3737C135.097 76.3737 133.912 75.187 133.912 73.7239C133.912 72.2608 135.097 71.0741 136.56 71.0741C138.023 71.0741 139.21 72.2608 139.21 73.7239Z" fill="#FAFAFA"/>
|
|
8
|
+
<path d="M251 167.648C249.668 167.648 248.678 167.306 248.03 166.622C247.382 165.902 247.058 165.02 247.058 163.976V163.166C247.058 162.122 247.382 161.258 248.03 160.574C248.678 159.854 249.668 159.494 251 159.494C252.332 159.494 253.322 159.854 253.97 160.574C254.618 161.258 254.942 162.122 254.942 163.166V163.976C254.942 165.02 254.618 165.902 253.97 166.622C253.322 167.306 252.332 167.648 251 167.648ZM283.079 129.308V156.74C283.079 158.396 282.809 159.89 282.269 161.222C281.729 162.554 280.955 163.706 279.947 164.678C278.975 165.614 277.769 166.352 276.329 166.892C274.925 167.396 273.359 167.648 271.631 167.648C268.355 167.648 265.763 166.784 263.855 165.056C261.983 163.292 260.795 161.006 260.291 158.198L265.907 156.956C266.231 158.576 266.843 159.854 267.743 160.79C268.679 161.726 269.975 162.194 271.631 162.194C273.251 162.194 274.547 161.69 275.519 160.682C276.491 159.674 276.977 158.144 276.977 156.092V134.384H264.665V129.308H283.079ZM303.45 167.648C300.282 167.648 297.582 167.072 295.35 165.92C293.154 164.768 291.264 163.22 289.68 161.276L293.892 157.334C295.224 158.954 296.682 160.178 298.266 161.006C299.886 161.834 301.722 162.248 303.774 162.248C306.186 162.248 308.004 161.708 309.228 160.628C310.452 159.548 311.064 158.09 311.064 156.254C311.064 154.778 310.632 153.608 309.768 152.744C308.904 151.88 307.374 151.232 305.178 150.8L301.83 150.206C298.158 149.522 295.404 148.316 293.568 146.588C291.732 144.86 290.814 142.484 290.814 139.46C290.814 137.804 291.12 136.31 291.732 134.978C292.38 133.61 293.262 132.476 294.378 131.576C295.53 130.64 296.916 129.92 298.536 129.416C300.156 128.912 301.974 128.66 303.99 128.66C306.834 128.66 309.3 129.164 311.388 130.172C313.476 131.144 315.258 132.566 316.734 134.438L312.468 138.218C311.496 136.958 310.308 135.95 308.904 135.194C307.5 134.438 305.754 134.06 303.666 134.06C301.506 134.06 299.832 134.492 298.644 135.356C297.456 136.22 296.862 137.48 296.862 139.136C296.862 140.72 297.348 141.908 298.32 142.7C299.292 143.456 300.804 144.032 302.856 144.428L306.204 145.13C309.984 145.85 312.738 147.074 314.466 148.802C316.23 150.53 317.112 152.906 317.112 155.93C317.112 157.694 316.806 159.296 316.194 160.736C315.582 162.176 314.682 163.418 313.494 164.462C312.342 165.47 310.92 166.262 309.228 166.838C307.536 167.378 305.61 167.648 303.45 167.648Z" fill="#FE4A49"/>
|
|
9
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M21.37 147.783C20.138 146.98 17.902 145.967 14.662 144.744C11.421 143.521 9.172 142.423 7.913 141.45C6.655 140.477 6.025 139.133 6.025 137.419C6.025 135.705 6.663 134.353 7.94 133.362C9.216 132.371 10.899 131.876 12.988 131.876C15.077 131.876 16.777 132.443 18.089 133.576C19.402 134.71 20.058 136.321 20.058 138.41H25.173C25.173 134.822 23.985 132.014 21.611 129.988C19.236 127.962 16.376 126.949 13.028 126.949C9.681 126.949 6.837 127.89 4.499 129.774C2.16 131.658 0.991005 134.188 0.991005 137.366C0.991005 139.83 1.597 141.784 2.812 143.231C3.454 143.998 4.07 144.646 4.659 145.172C5.249 145.699 6.489 146.422 8.382 147.341C10.274 148.261 11.881 148.881 13.202 149.202C15.745 150.294 17.83 151.184 19.161 152.148C20.49 153.112 21.156 154.438 21.156 156.125C21.156 157.812 20.464 159.174 19.08 160.209C17.697 161.244 15.787 161.762 13.35 161.762C10.913 161.762 8.926 161.151 7.391 159.928C5.855 158.705 5.08801 156.96 5.08801 154.692H0C0 158.495 1.307 161.459 3.923 163.583C6.538 165.708 9.694 166.77 13.39 166.77C17.085 166.77 20.156 165.797 22.602 163.851C25.048 161.905 26.257 159.254 26.231 155.897C26.204 152.541 24.584 149.836 21.37 147.783Z" fill="#FE4A49"/>
|
|
10
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M55.2389 128.028H29.9949V132.828H40.0979V166.054H45.0829V132.828H55.2389V128.028Z" fill="#FE4A49"/>
|
|
11
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M68.3913 128.028L54.3633 166.054H59.7463C59.7463 166.054 61.1133 161.823 62.2223 160.093C67.0413 152.582 75.0533 151.666 77.6283 151.735L82.7633 166.054H88.1463L74.0923 128.028H68.3913ZM65.3333 150.477L71.2553 133.968L75.8953 146.904C73.2493 147.098 69.3923 147.894 65.3333 150.477Z" fill="#FE4A49"/>
|
|
12
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M153.828 128.028H147.623L131.766 145.264V128.028H126.728V166.054H131.766V147.81L148.18 166.054H154.358L137.043 146.564L153.828 128.028Z" fill="#FE4A49"/>
|
|
13
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M178.834 151.496L164.011 128.028H158.31V166.054H165.814V142.533L180.584 166.054H186.285V128.028H178.834V151.496Z" fill="#FE4A49"/>
|
|
14
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M198.427 150.356H211.845V143.356H198.427V135.215H213.197V128.029H190.923V166.054H213.462V158.895H198.427V150.356Z" fill="#FE4A49"/>
|
|
15
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M217.313 128.028V135.215H226.434V166.054H233.913V135.215H243.087V128.028H217.313Z" fill="#FE4A49"/>
|
|
16
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M110.964 152.365C110.196 151.655 109.417 151.038 108.636 150.495C111.088 150.133 113.73 148.793 115.431 146.617C116.982 144.634 117.659 142.321 117.659 139.829C117.659 136.558 116.501 133.774 114.185 131.476C111.869 129.178 109.085 128.029 105.832 128.029H91.99V166.054H97.028V151.714C99.783 151.778 103.88 152.473 107.646 155.953C111.257 159.295 113.752 163.447 115.037 166.052H120.388C119.28 163.174 116.105 157.119 110.964 152.365ZM105.832 132.775C107.706 132.775 109.306 133.461 110.632 134.83C111.958 136.2 112.62 137.862 112.62 139.815C112.62 141.769 111.978 143.464 110.632 144.84C108.231 147.294 102.682 146.805 97.177 146.83C97.127 146.829 97.077 146.827 97.028 146.826V132.775H105.832Z" fill="#FE4A49"/>
|
|
17
|
+
</svg>
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|
|
Binary file
|