@atlaskit/smart-card 27.8.0 → 27.8.2
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 +17 -0
- package/dist/cjs/utils/analytics/analytics.js +1 -1
- package/dist/cjs/view/EmbedCard/components/ExpandedFrame.js +1 -1
- package/dist/cjs/view/EmbedCard/views/forbidden-view/forbidden-svg/index.js +59 -0
- package/dist/cjs/view/EmbedCard/views/forbidden-view/index.js +2 -3
- package/dist/cjs/view/EmbedCard/views/not-found-view/index.js +2 -3
- package/dist/cjs/view/EmbedCard/views/not-found-view/not-found-svg/index.js +116 -0
- package/dist/cjs/view/EmbedCard/views/unauthorized-view/index.js +2 -3
- package/dist/cjs/view/EmbedCard/views/unauthorized-view/unauthorized-svg/index.js +445 -0
- package/dist/cjs/view/EmbedCard/views/unresolved-view/index.js +54 -11
- package/dist/cjs/view/LinkUrl/index.js +1 -1
- package/dist/es2019/utils/analytics/analytics.js +1 -1
- package/dist/es2019/view/EmbedCard/components/ExpandedFrame.js +1 -1
- package/dist/es2019/view/EmbedCard/views/forbidden-view/forbidden-svg/index.js +50 -0
- package/dist/es2019/view/EmbedCard/views/forbidden-view/index.js +2 -3
- package/dist/es2019/view/EmbedCard/views/not-found-view/index.js +2 -3
- package/dist/es2019/view/EmbedCard/views/not-found-view/not-found-svg/index.js +107 -0
- package/dist/es2019/view/EmbedCard/views/unauthorized-view/index.js +2 -3
- package/dist/es2019/view/EmbedCard/views/unauthorized-view/unauthorized-svg/index.js +436 -0
- package/dist/es2019/view/EmbedCard/views/unresolved-view/index.js +51 -8
- package/dist/es2019/view/LinkUrl/index.js +1 -1
- package/dist/esm/utils/analytics/analytics.js +1 -1
- package/dist/esm/view/EmbedCard/components/ExpandedFrame.js +1 -1
- package/dist/esm/view/EmbedCard/views/forbidden-view/forbidden-svg/index.js +52 -0
- package/dist/esm/view/EmbedCard/views/forbidden-view/index.js +2 -3
- package/dist/esm/view/EmbedCard/views/not-found-view/index.js +2 -3
- package/dist/esm/view/EmbedCard/views/not-found-view/not-found-svg/index.js +109 -0
- package/dist/esm/view/EmbedCard/views/unauthorized-view/index.js +2 -3
- package/dist/esm/view/EmbedCard/views/unauthorized-view/unauthorized-svg/index.js +438 -0
- package/dist/esm/view/EmbedCard/views/unresolved-view/index.js +51 -8
- package/dist/esm/view/LinkUrl/index.js +1 -1
- package/dist/types/view/EmbedCard/views/forbidden-view/forbidden-svg/index.d.ts +2 -0
- package/dist/types/view/EmbedCard/views/not-found-view/not-found-svg/index.d.ts +2 -0
- package/dist/types/view/EmbedCard/views/unauthorized-view/unauthorized-svg/index.d.ts +2 -0
- package/dist/types/view/EmbedCard/views/unresolved-view/types.d.ts +1 -1
- package/dist/types-ts4.5/view/EmbedCard/views/forbidden-view/forbidden-svg/index.d.ts +2 -0
- package/dist/types-ts4.5/view/EmbedCard/views/not-found-view/not-found-svg/index.d.ts +2 -0
- package/dist/types-ts4.5/view/EmbedCard/views/unauthorized-view/unauthorized-svg/index.d.ts +2 -0
- package/dist/types-ts4.5/view/EmbedCard/views/unresolved-view/types.d.ts +1 -1
- package/package.json +5 -8
- package/dist/cjs/view/EmbedCard/constants.js +0 -10
- package/dist/cjs/view/EmbedCard/utils.js +0 -17
- package/dist/cjs/view/EmbedCard/views/unresolved-view/styled.js +0 -49
- package/dist/es2019/view/EmbedCard/constants.js +0 -4
- package/dist/es2019/view/EmbedCard/utils.js +0 -11
- package/dist/es2019/view/EmbedCard/views/unresolved-view/styled.js +0 -43
- package/dist/esm/view/EmbedCard/constants.js +0 -4
- package/dist/esm/view/EmbedCard/utils.js +0 -11
- package/dist/esm/view/EmbedCard/views/unresolved-view/styled.js +0 -43
- package/dist/types/view/EmbedCard/constants.d.ts +0 -3
- package/dist/types/view/EmbedCard/utils.d.ts +0 -1
- package/dist/types/view/EmbedCard/views/unresolved-view/styled.d.ts +0 -5
- package/dist/types-ts4.5/view/EmbedCard/constants.d.ts +0 -3
- package/dist/types-ts4.5/view/EmbedCard/utils.d.ts +0 -1
- package/dist/types-ts4.5/view/EmbedCard/views/unresolved-view/styled.d.ts +0 -5
|
@@ -2,11 +2,10 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import Button from '@atlaskit/button';
|
|
3
3
|
import React, { useMemo } from 'react';
|
|
4
4
|
import { FormattedMessage } from 'react-intl-next';
|
|
5
|
-
import { di } from 'react-magnetic-di';
|
|
6
5
|
import { messages } from '../../../../messages';
|
|
7
6
|
import { toMessage } from '../../../../utils/intl-utils';
|
|
8
7
|
import UnresolvedView from '../unresolved-view';
|
|
9
|
-
import {
|
|
8
|
+
import { ForbiddenSVG } from './forbidden-svg';
|
|
10
9
|
const ForbiddenView = ({
|
|
11
10
|
context,
|
|
12
11
|
onAuthorize,
|
|
@@ -59,7 +58,7 @@ const ForbiddenView = ({
|
|
|
59
58
|
}, [accessType, action === null || action === void 0 ? void 0 : action.id, action === null || action === void 0 ? void 0 : action.promise, callToActionMessageKey, onAuthorize, values]);
|
|
60
59
|
return /*#__PURE__*/React.createElement(UnresolvedView, _extends({}, unresolvedViewProps, {
|
|
61
60
|
icon: icon,
|
|
62
|
-
image: image !== null && image !== void 0 ? image :
|
|
61
|
+
image: image !== null && image !== void 0 ? image : /*#__PURE__*/React.createElement(ForbiddenSVG, null),
|
|
63
62
|
testId: testId,
|
|
64
63
|
text: text,
|
|
65
64
|
title: /*#__PURE__*/React.createElement(FormattedMessage, _extends({}, toMessage(messages.invalid_permissions, titleMessageKey), {
|
|
@@ -1,11 +1,10 @@
|
|
|
1
1
|
import _extends from "@babel/runtime/helpers/extends";
|
|
2
2
|
import React, { useMemo } from 'react';
|
|
3
3
|
import { FormattedMessage } from 'react-intl-next';
|
|
4
|
-
import { di } from 'react-magnetic-di';
|
|
5
4
|
import { messages } from '../../../../messages';
|
|
6
5
|
import { toMessage } from '../../../../utils/intl-utils';
|
|
7
6
|
import UnresolvedView from '../unresolved-view';
|
|
8
|
-
import {
|
|
7
|
+
import { NotFoundSVG } from './not-found-svg';
|
|
9
8
|
const NotFoundView = ({
|
|
10
9
|
context,
|
|
11
10
|
accessContext,
|
|
@@ -26,7 +25,7 @@ const NotFoundView = ({
|
|
|
26
25
|
}), [text]);
|
|
27
26
|
return /*#__PURE__*/React.createElement(UnresolvedView, _extends({}, unresolvedViewProps, {
|
|
28
27
|
icon: icon,
|
|
29
|
-
image: image !== null && image !== void 0 ? image :
|
|
28
|
+
image: image !== null && image !== void 0 ? image : /*#__PURE__*/React.createElement(NotFoundSVG, null),
|
|
30
29
|
testId: testId,
|
|
31
30
|
text: text,
|
|
32
31
|
title: /*#__PURE__*/React.createElement(FormattedMessage, _extends({}, toMessage(messages.not_found_title, titleMessageKey), {
|
|
@@ -0,0 +1,107 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const NotFoundSVG = () => /*#__PURE__*/React.createElement("svg", {
|
|
3
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
4
|
+
xmlnsXlink: "http://www.w3.org/1999/xlink",
|
|
5
|
+
viewBox: "0 0 200.55 269.99",
|
|
6
|
+
height: "100%",
|
|
7
|
+
width: "100%",
|
|
8
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
9
|
+
"data-testid": "not-found-svg"
|
|
10
|
+
}, /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
11
|
+
id: "linear-gradient",
|
|
12
|
+
x1: "1316.98",
|
|
13
|
+
y1: "230.66",
|
|
14
|
+
x2: "1396.36",
|
|
15
|
+
y2: "230.66",
|
|
16
|
+
gradientTransform: "matrix(-1, 0, 0, 1, 1517.54, 0)",
|
|
17
|
+
gradientUnits: "userSpaceOnUse"
|
|
18
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
19
|
+
offset: "0",
|
|
20
|
+
stopColor: "#344563"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
22
|
+
offset: "1",
|
|
23
|
+
stopColor: "#6c798f"
|
|
24
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
25
|
+
id: "linear-gradient-2",
|
|
26
|
+
x1: "170.3",
|
|
27
|
+
y1: "897.49",
|
|
28
|
+
x2: "365.15",
|
|
29
|
+
y2: "897.49",
|
|
30
|
+
gradientTransform: "translate(-125.06 -762.9) rotate(4.81)",
|
|
31
|
+
gradientUnits: "userSpaceOnUse"
|
|
32
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
33
|
+
offset: "0",
|
|
34
|
+
stopColor: "#fff"
|
|
35
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
36
|
+
offset: "0.69",
|
|
37
|
+
stopColor: "#fff",
|
|
38
|
+
stopOpacity: "0.1"
|
|
39
|
+
}))), /*#__PURE__*/React.createElement("title", null, "Search error"), /*#__PURE__*/React.createElement("g", {
|
|
40
|
+
id: "Layer_2",
|
|
41
|
+
"data-name": "Layer 2"
|
|
42
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
43
|
+
id: "Objects"
|
|
44
|
+
}, /*#__PURE__*/React.createElement("path", {
|
|
45
|
+
fill: "#cfd4db",
|
|
46
|
+
d: "M126.84,210.1l-9.51-9.39,13-13.23,9.52,9.39a18,18,0,0,0,8.82,4.78h0a18.06,18.06,0,0,1,8.82,4.79l38.59,38.09a14.87,14.87,0,0,1,.13,21h0a14.87,14.87,0,0,1-21,.14l-38.59-38.09a18,18,0,0,1-4.9-8.75h0A18,18,0,0,0,126.84,210.1Z"
|
|
47
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
48
|
+
id: "_Path_",
|
|
49
|
+
"data-name": "<Path>",
|
|
50
|
+
fill: "url(#linear-gradient)",
|
|
51
|
+
d: "M126.84,210.1l-2.9-2.86a9.31,9.31,0,0,1-.09-13.15h0A9.3,9.3,0,0,1,137,194l2.9,2.86a18,18,0,0,0,8.82,4.78h0a18.06,18.06,0,0,1,8.82,4.79l38.59,38.09a14.87,14.87,0,0,1,.13,21h0a14.87,14.87,0,0,1-21,.14l-38.59-38.09a18,18,0,0,1-4.9-8.75h0A18,18,0,0,0,126.84,210.1Z"
|
|
52
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
53
|
+
fill: "#091e42",
|
|
54
|
+
opacity: 0.1,
|
|
55
|
+
d: "M131.63,218.46a18,18,0,0,0-4.79-8.36l-2.9-2.86a9.31,9.31,0,0,1-.09-13.15h0A9.3,9.3,0,0,1,137,194l2.9,2.86a18,18,0,0,0,8.41,4.68,79.1,79.1,0,0,1-7.72,9.12A77.4,77.4,0,0,1,131.63,218.46Z"
|
|
56
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
57
|
+
fill: "#344563",
|
|
58
|
+
d: "M155.47,145.8A77.74,77.74,0,0,0,22.41,91.7,77.24,77.24,0,0,0,0,146.82H0a77.22,77.22,0,0,0,23.13,54.81h0A77.74,77.74,0,0,0,155.47,145.8Z"
|
|
59
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
60
|
+
id: "_Clipping_Path_",
|
|
61
|
+
"data-name": "<Clipping Path>",
|
|
62
|
+
fill: "#deebff",
|
|
63
|
+
d: "M35.62,104.74a59.17,59.17,0,1,1-17.06,42A58.81,58.81,0,0,1,35.62,104.74Z"
|
|
64
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
65
|
+
id: "_Path_2",
|
|
66
|
+
"data-name": "<Path>",
|
|
67
|
+
fill: "#b2d4ff",
|
|
68
|
+
d: "M39.54,101.12A59.19,59.19,0,1,0,82.69,87.36,58.82,58.82,0,0,0,39.54,101.12Z"
|
|
69
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
70
|
+
fill: "#cce0ff",
|
|
71
|
+
d: "M78.09,94.6a59.17,59.17,0,0,0-52.5,23.71,59.2,59.2,0,0,0,99.68,63.28,59.2,59.2,0,0,0-47.18-87Z"
|
|
72
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
73
|
+
fill: "url(#linear-gradient-2)",
|
|
74
|
+
d: "M72.77,205.3A59.25,59.25,0,0,0,133.92,165a59.2,59.2,0,0,1-6.42.62c-19.4.74-33.31-8.64-40-13.32-20.19-14-20.75-28.19-33.7-41.34A56,56,0,0,0,40,100.76l-.44.36A59.18,59.18,0,0,0,72.77,205.3Z"
|
|
75
|
+
}), /*#__PURE__*/React.createElement("polygon", {
|
|
76
|
+
id: "_Path_3",
|
|
77
|
+
"data-name": "<Path>",
|
|
78
|
+
fill: "#5e6c84",
|
|
79
|
+
points: "105.15 132.36 94.03 121.33 78.7 136.79 63.24 121.45 52.22 132.57 67.68 147.9 52.34 163.35 63.45 174.38 78.79 158.92 94.24 174.26 105.27 163.15 89.81 147.81 105.15 132.36"
|
|
80
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
81
|
+
fill: "#ffc400",
|
|
82
|
+
d: "M82.29,29.4,72.12.45A.68.68,0,0,0,70.81.6L67.53,28.65l-6.48-.75a.67.67,0,0,0-.72.89l10.17,29a.68.68,0,0,0,1.31-.15l3.28-28.05,6.48.76A.68.68,0,0,0,82.29,29.4Z"
|
|
83
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
84
|
+
fill: "#ffc400",
|
|
85
|
+
d: "M50.28,47.8,37.64,39.17a.29.29,0,0,0-.42.39l7,12.21-2.84,1.62a.29.29,0,0,0,0,.5L54,62.52a.3.3,0,0,0,.43-.39l-7-12.21,2.84-1.62A.29.29,0,0,0,50.28,47.8Z"
|
|
86
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
87
|
+
fill: "none",
|
|
88
|
+
strokeLinecap: "round",
|
|
89
|
+
strokeMiterlimit: 10,
|
|
90
|
+
strokeWidth: "2px",
|
|
91
|
+
stroke: "#344563",
|
|
92
|
+
d: "M104.31,36.05c-.7,2.07-9.75-1-10.44,1.11s8.35,5.11,7.66,7.18-9.75-1-10.44,1.12,8.35,5.11,7.66,7.18-9.75-1-10.44,1.12S96.66,58.87,96,61"
|
|
93
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
94
|
+
fill: "none",
|
|
95
|
+
strokeLinecap: "round",
|
|
96
|
+
strokeMiterlimit: 10,
|
|
97
|
+
strokeWidth: "2px",
|
|
98
|
+
stroke: "#5e6c84",
|
|
99
|
+
d: "M125.53,59.72c-1.59,1.49-7.85-5.2-9.45-3.71s4.66,8.19,3.06,9.69-7.86-5.21-9.46-3.72c-.74.7.21,2.51,1.28,4.4"
|
|
100
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
101
|
+
fill: "none",
|
|
102
|
+
strokeLinecap: "round",
|
|
103
|
+
strokeMiterlimit: 10,
|
|
104
|
+
strokeWidth: "2px",
|
|
105
|
+
stroke: "#5e6c84",
|
|
106
|
+
d: "M20.83,59.86c2.17.27,1.06,9.37,3.23,9.63s3.28-8.83,5.46-8.57,1.05,9.37,3.22,9.63c1,.13,1.79-1.76,2.56-3.8"
|
|
107
|
+
}))));
|
|
@@ -2,11 +2,10 @@ import _extends from "@babel/runtime/helpers/extends";
|
|
|
2
2
|
import Button from '@atlaskit/button';
|
|
3
3
|
import React, { useCallback, useMemo } from 'react';
|
|
4
4
|
import { FormattedMessage } from 'react-intl-next';
|
|
5
|
-
import { di } from 'react-magnetic-di';
|
|
6
5
|
import { messages } from '../../../../messages';
|
|
7
6
|
import UnauthorisedViewContent from '../../../common/UnauthorisedViewContent';
|
|
8
|
-
import { getUnresolvedEmbedCardImage } from '../../utils';
|
|
9
7
|
import UnresolvedView from '../unresolved-view';
|
|
8
|
+
import { UnauthorizedSVG } from './unauthorized-svg';
|
|
10
9
|
const UnauthorizedView = ({
|
|
11
10
|
analytics,
|
|
12
11
|
context,
|
|
@@ -82,7 +81,7 @@ const UnauthorizedView = ({
|
|
|
82
81
|
}, [analytics, context === null || context === void 0 ? void 0 : context.text, handleOnAuthorizeClick, isProductIntegrationSupported, onAuthorize, testId]);
|
|
83
82
|
return /*#__PURE__*/React.createElement(UnresolvedView, _extends({}, unresolvedViewProps, content, {
|
|
84
83
|
icon: context === null || context === void 0 ? void 0 : context.icon,
|
|
85
|
-
image: (_context$image = context === null || context === void 0 ? void 0 : context.image) !== null && _context$image !== void 0 ? _context$image :
|
|
84
|
+
image: (_context$image = context === null || context === void 0 ? void 0 : context.image) !== null && _context$image !== void 0 ? _context$image : /*#__PURE__*/React.createElement(UnauthorizedSVG, null),
|
|
86
85
|
testId: testId,
|
|
87
86
|
text: context === null || context === void 0 ? void 0 : context.text
|
|
88
87
|
}));
|
|
@@ -0,0 +1,436 @@
|
|
|
1
|
+
import React from 'react';
|
|
2
|
+
export const UnauthorizedSVG = () => /*#__PURE__*/React.createElement("svg", {
|
|
3
|
+
viewBox: "0 0 565 267",
|
|
4
|
+
fill: "none",
|
|
5
|
+
xmlns: "http://www.w3.org/2000/svg",
|
|
6
|
+
height: "100%",
|
|
7
|
+
width: "100%",
|
|
8
|
+
preserveAspectRatio: "xMidYMid meet",
|
|
9
|
+
"data-testid": "unauthorized-svg"
|
|
10
|
+
}, /*#__PURE__*/React.createElement("g", {
|
|
11
|
+
clipPath: "url(#clip0_1375_267)"
|
|
12
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
13
|
+
width: "563.88",
|
|
14
|
+
height: "265.81",
|
|
15
|
+
transform: "translate(0.870117 0.509766)",
|
|
16
|
+
fill: "white",
|
|
17
|
+
fillOpacity: "0.01"
|
|
18
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
19
|
+
d: "M150.05 257.529H143.87L144.52 254.379H150.7L150.05 257.529Z",
|
|
20
|
+
fill: "#DFE1E5"
|
|
21
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
22
|
+
d: "M181.06 257.531C183.03 257.531 185 257.531 186.97 257.531C186.92 256.481 186.88 255.431 186.83 254.381C185.02 253.691 182.85 253.301 181.08 254.271C181.02 254.301 180.96 254.341 180.9 254.381C180.95 255.431 181.01 256.481 181.06 257.531Z",
|
|
23
|
+
fill: "#DFE1E5"
|
|
24
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
25
|
+
d: "M141.99 98.8398C110.62 98.8398 85.1801 124.27 85.1801 155.65V206.74C85.1801 238.11 59.7501 263.55 28.3701 263.55H0.870117",
|
|
26
|
+
stroke: "url(#paint0_linear_1375_267)",
|
|
27
|
+
strokeWidth: "4.4681",
|
|
28
|
+
strokeMiterlimit: "10"
|
|
29
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
30
|
+
d: "M420.16 124.399L418.27 121.929L417.53 116.109L417.4 112.789H419.42L421.66 115.439C422.18 116.059 422.62 116.749 422.94 117.499C423.39 118.539 423.63 119.669 423.63 120.809V123.189L420.16 124.399Z",
|
|
31
|
+
fill: "#D4B696"
|
|
32
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
33
|
+
d: "M160.63 111.87L159.06 105.6C159.06 105.21 159.37 104.88 159.76 104.86C160.06 105.13 160.4 105.37 160.63 105.26C160.82 105.17 160.76 104.91 160.97 104.78C161.34 104.55 162.03 105.03 162.24 105.18C162.54 105.39 162.74 105.61 162.86 105.76L163.81 106.1C164.14 106.22 164.39 106.5 164.48 106.85L165.67 107.74C166.21 107.82 166.43 110 166.45 110.07L166.04 112.86C166.07 112.97 166.07 113.09 166.05 113.21C165.96 113.65 165.5 113.91 165.07 113.75L161.09 112.32C160.87 112.25 160.7 112.08 160.63 111.87Z",
|
|
34
|
+
fill: "#A27F68"
|
|
35
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
36
|
+
d: "M165.73 116.919C166.92 116.499 169.78 120.329 166.77 112.969C166.59 112.519 166.22 110.519 164.39 109.389C162.47 108.209 160.92 109.649 159.28 108.319C158.39 107.599 158.37 106.789 157.23 106.319C156.44 105.989 155.38 105.939 155.19 106.319C154.97 106.749 156.03 107.399 157.51 109.269C158.97 111.119 158.65 111.409 159.96 112.799C160.5 113.369 160.89 113.669 162.06 114.909C162.67 115.559 162.72 115.629 162.97 115.829C163.52 116.269 164.77 117.259 165.73 116.919Z",
|
|
37
|
+
fill: "#A27F68"
|
|
38
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
39
|
+
d: "M164.84 175.06C162.1 173.45 162.32 169.37 162.74 163.63C163.81 148.91 166.33 143.51 166.66 135.95C166.88 130.9 166.17 123.59 161.64 114.5C163.73 114.28 165.81 114.06 167.9 113.83C171.82 123.37 173.58 131.57 174.46 137.43C175.59 144.99 175.69 151.82 175.7 154.41C175.73 165.07 174.28 169.57 175.37 173.41C175.42 173.6 175.65 174.22 175.34 174.79C174.3 176.7 167.91 176.86 164.84 175.06Z",
|
|
40
|
+
fill: "#403294"
|
|
41
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
42
|
+
opacity: "0.25",
|
|
43
|
+
d: "M2.76012 266.319H206.4C207.44 266.319 208.29 265.469 208.29 264.429C208.29 263.389 207.44 262.539 206.4 262.539H2.76012C1.72012 262.539 0.870117 263.389 0.870117 264.429C0.870117 265.469 1.72012 266.319 2.76012 266.319Z",
|
|
44
|
+
fill: "url(#paint1_linear_1375_267)"
|
|
45
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
46
|
+
opacity: "0.25",
|
|
47
|
+
d: "M562.86 266.319H359.22C358.18 266.319 357.33 265.469 357.33 264.429C357.33 263.389 358.18 262.539 359.22 262.539H562.86C563.9 262.539 564.75 263.389 564.75 264.429C564.75 265.469 563.9 266.319 562.86 266.319Z",
|
|
48
|
+
fill: "url(#paint2_linear_1375_267)"
|
|
49
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
50
|
+
d: "M423.62 98.8398C454.99 98.8398 480.43 124.27 480.43 155.65V206.74C480.43 238.11 505.86 263.55 537.24 263.55H564.75",
|
|
51
|
+
stroke: "url(#paint3_linear_1375_267)",
|
|
52
|
+
strokeWidth: "4.4681",
|
|
53
|
+
strokeMiterlimit: "10"
|
|
54
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
55
|
+
d: "M133.69 107.8C131.9 107.8 130.45 106.35 130.45 104.56V93.1502C130.45 91.3602 131.9 89.9102 133.69 89.9102C135.48 89.9102 136.93 91.3602 136.93 93.1502V104.57C136.92 106.35 135.48 107.8 133.69 107.8Z",
|
|
56
|
+
fill: "#B3BAC5"
|
|
57
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
58
|
+
d: "M140.16 107.8C138.37 107.8 136.92 106.35 136.92 104.56V93.1502C136.92 91.3602 138.37 89.9102 140.16 89.9102C141.95 89.9102 143.4 91.3602 143.4 93.1502V104.57C143.4 106.35 141.95 107.8 140.16 107.8Z",
|
|
59
|
+
fill: "#B3BAC5"
|
|
60
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
61
|
+
d: "M425.01 107.8C423.22 107.8 421.77 106.35 421.77 104.56V93.1502C421.77 91.3602 423.22 89.9102 425.01 89.9102C426.8 89.9102 428.25 91.3602 428.25 93.1502V104.57C428.25 106.35 426.8 107.8 425.01 107.8Z",
|
|
62
|
+
fill: "#0052CC"
|
|
63
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
64
|
+
d: "M431.48 107.8C429.69 107.8 428.24 106.35 428.24 104.56V93.1502C428.24 91.3602 429.69 89.9102 431.48 89.9102C433.27 89.9102 434.72 91.3602 434.72 93.1502V104.57C434.72 106.35 433.27 107.8 431.48 107.8Z",
|
|
65
|
+
fill: "#0052CC"
|
|
66
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
67
|
+
opacity: "0.38",
|
|
68
|
+
d: "M285 195.54C338.307 195.54 381.52 152.327 381.52 99.02C381.52 45.7135 338.307 2.5 285 2.5C231.694 2.5 188.48 45.7135 188.48 99.02C188.48 152.327 231.694 195.54 285 195.54Z",
|
|
69
|
+
fill: "url(#paint4_radial_1375_267)"
|
|
70
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
71
|
+
d: "M346.07 140.879H381.57C404.79 140.879 423.62 122.059 423.62 98.8293C423.62 75.6093 404.8 56.7793 381.57 56.7793H346.07V140.879Z",
|
|
72
|
+
fill: "url(#paint5_linear_1375_267)"
|
|
73
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
74
|
+
d: "M237.09 123.26H276.41V116.82H237.09V123.26Z",
|
|
75
|
+
fill: "url(#paint6_linear_1375_267)"
|
|
76
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
77
|
+
d: "M237.09 78.2291H276.41V71.7891H237.09V78.2291Z",
|
|
78
|
+
fill: "url(#paint7_linear_1375_267)"
|
|
79
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
80
|
+
d: "M325.86 146.589H340.11C343.4 146.589 346.07 143.919 346.07 140.629V57.4092C346.07 54.1192 343.4 51.4492 340.11 51.4492H325.86V146.589Z",
|
|
81
|
+
fill: "url(#paint8_linear_1375_267)"
|
|
82
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
83
|
+
d: "M219.54 140.879H184.04C160.82 140.879 141.99 122.059 141.99 98.8293C141.99 75.6093 160.81 56.7793 184.04 56.7793H219.54V140.879Z",
|
|
84
|
+
fill: "url(#paint9_linear_1375_267)"
|
|
85
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
86
|
+
d: "M239.76 146.589H225.51C222.22 146.589 219.55 143.919 219.55 140.629V57.4092C219.55 54.1192 222.22 51.4492 225.51 51.4492H239.76V146.589Z",
|
|
87
|
+
fill: "url(#paint10_linear_1375_267)"
|
|
88
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
89
|
+
d: "M379.21 146.581C378.91 146.001 378.4 145.181 377.56 144.401C376.28 143.221 374.91 142.761 374.18 142.581C374 142.441 373.77 142.281 373.48 142.131C373.23 142.001 372.97 141.901 372.7 141.831L370.63 141.251C370.29 141.161 370.07 140.831 370.11 140.481C370.15 140.091 370.51 139.801 370.9 139.851L379.42 140.801C380.47 140.921 381.46 140.291 381.79 139.291L382.01 138.651C382.14 138.281 382.5 138.041 382.9 138.091C383.31 138.141 383.62 138.471 383.64 138.871L383.72 140.251C383.86 142.671 383.35 145.091 382.26 147.251L379.21 146.581Z",
|
|
90
|
+
fill: "#D4B696"
|
|
91
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
92
|
+
d: "M428.29 185.99C429.39 188.07 430.46 190.28 431.47 192.61C435.75 202.44 437.91 211.78 438.95 219.77C440.03 222.59 441.07 225.54 442.05 228.64C444.86 237.5 446.64 245.84 447.75 253.4C446.13 253.87 444.51 254.34 442.88 254.81C441.2 250.25 438.53 243.08 435.09 234.23C430.76 223.08 428.59 217.5 428.5 217.3C422.43 203.22 419.13 199.32 420.72 193.98C421.29 192.14 422.84 188.93 428.29 185.99Z",
|
|
93
|
+
fill: "#0065FF"
|
|
94
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
95
|
+
d: "M412.72 189.539C409.67 199.159 406.62 208.789 403.57 218.409C400.84 230.159 398.1 241.909 395.37 253.659C398.3 254.449 397.22 254.159 400.15 254.939C403.08 247.829 405.94 240.299 408.66 232.359C410.04 228.319 411.33 224.339 412.52 220.439C414.74 216.039 417.2 213.029 419.05 211.089C423.68 206.239 427.59 204.829 430.28 199.479C432.31 195.449 431.64 193.159 431.46 192.609C431.32 192.189 430.95 191.419 430.21 189.889C429.46 188.319 428.81 187.039 428.38 186.189C426.55 186.889 424.48 187.559 422.18 188.119C418.67 188.989 415.46 189.379 412.72 189.539Z",
|
|
96
|
+
fill: "url(#paint11_linear_1375_267)"
|
|
97
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
98
|
+
d: "M396.28 246.85C396.21 248.32 395.94 250.38 395.01 252.65C394.37 254.22 392.97 257.51 389.49 259.78C387.45 261.11 385.46 261.59 384.18 261.79C384.26 262.22 384.24 262.13 384.32 262.57C386.73 262.62 391.82 262.66 394.24 262.71C394.59 261.89 395.4 261.57 395.92 261.8C396.41 262.03 396.5 262.7 396.5 262.75C397.32 262.68 398.14 262.61 398.96 262.54C399.23 261.52 399.51 260.49 399.8 259.45C401 255.15 402.31 251.02 403.69 247.08C401.21 247.01 398.74 246.93 396.28 246.85Z",
|
|
99
|
+
fill: "#344563"
|
|
100
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
101
|
+
d: "M440.03 247.221C440.92 249.251 441.84 252.641 441.92 253.771C442.06 255.691 442.18 257.271 441.21 258.681C440.55 259.641 439.65 260.141 438.15 260.971C436.98 261.621 435.94 262.021 435.21 262.261C435.3 262.651 435.28 262.571 435.37 262.961C437.57 262.901 439.76 262.831 441.96 262.771C442.52 262.751 443.09 262.731 443.65 262.711C443.66 262.661 443.77 262.191 444.22 261.991C444.67 261.791 445.08 262.031 445.17 262.081C445.49 262.261 445.62 262.541 445.67 262.651C446.19 262.691 446.78 262.721 447.42 262.691C448.09 262.671 448.7 262.601 449.24 262.521C449.09 261.461 448.94 260.401 448.78 259.341C448.69 258.741 448.53 257.681 448.29 256.131C447.73 252.481 447 247.951 446.83 246.881C444.56 247.001 442.29 247.111 440.03 247.221Z",
|
|
102
|
+
fill: "#344563"
|
|
103
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
104
|
+
d: "M404.04 166.88C412.13 163.96 417.86 161.43 418.22 161.14C418.55 160.87 418.88 160.59 418.88 160.59C418.98 160.51 419.08 160.42 419.19 160.32C421.82 157.99 427.78 151.82 427.76 142.35C427.73 131.65 420.19 125.19 419.11 124.29C420.82 123.5 422.52 122.71 424.23 121.92C426.36 123.97 432.76 130.64 433.79 141.01C434.72 150.27 430.85 157.43 429.11 160.66C427.36 163.91 425.44 166.35 424.02 167.97C423.92 170.1 424 172.75 424.56 175.73C425.49 180.68 427.37 184.49 428.86 186.96C423.1 188.75 417.33 190.54 411.57 192.33C413.04 189.13 412.78 187.11 412.25 185.86C411.07 183.05 407.94 182.53 406.78 179.13C406.31 177.76 406.36 176.51 406.46 175.69C404.27 175.89 395.01 176.46 386.94 170C375.33 160.7 377 145.5 377.12 144.57C379.19 145.06 381.27 145.55 383.34 146.04C383.04 147.74 383.3 152.66 384.35 155.65C387.27 163.99 396.59 169.11 404.04 166.88Z",
|
|
105
|
+
fill: "url(#paint12_linear_1375_267)"
|
|
106
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
107
|
+
d: "M406.52 152.01C406.67 152.06 406.9 152.11 407.25 152.17C408.21 152.33 408.84 152.57 409.24 152.86C410.29 153.59 409.6 155.01 410.51 157.07C410.6 157.28 410.88 157.87 411.03 158.72C411.1 159.15 411.12 159.47 411.12 159.54C411.15 160.21 411.58 161.58 413.11 164.55C412.78 164.46 412.46 164.37 412.13 164.28C411.17 163.91 410.2 163.54 409.24 163.17C407.16 161.78 406.7 161.57 406.7 160.58C406.69 159.4 406.68 157.33 406.62 157.25C405.95 156.6 405.08 156.48 405.74 155.68C406.12 155.23 406.41 154.9 406.51 154.81C406.82 154.53 407.04 153.83 406.52 152.01Z",
|
|
108
|
+
fill: "#D4B696"
|
|
109
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
110
|
+
d: "M409.17 152.81C408.97 155.53 409.02 159.86 410.76 164.7C410.8 164.82 410.85 164.95 410.9 165.07C412.74 169.95 418.57 172.14 423.04 169.45C423.19 169.36 423.35 169.26 423.5 169.16C423.53 169.14 423.55 169.12 423.58 169.11C426.31 167.24 426.68 163.37 424.47 160.91C422.98 159.26 422 157.68 421.33 156.36C419.26 152.28 419.55 149.41 416.8 147.81C414.71 146.59 412.02 146.79 411.13 146.85C409.41 146.98 408.61 147.42 408.23 147.7C407.34 148.37 406.86 149.14 406.64 149.56C406.11 150.55 405.98 151.47 405.94 152C406.33 152.02 406.78 152.08 407.26 152.18C408.02 152.34 408.67 152.58 409.17 152.81Z",
|
|
111
|
+
fill: "#172B4D"
|
|
112
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
113
|
+
d: "M298 24.3503L293.82 0.940321C293.72 0.390321 292.95 0.360321 292.8 0.890321L286.8 21.9503L281.93 20.5603C281.56 20.4503 281.2 20.7703 281.27 21.1503L285.45 44.5603C285.55 45.1103 286.32 45.1403 286.47 44.6103L292.47 23.5503L297.34 24.9403C297.71 25.0603 298.07 24.7303 298 24.3503Z",
|
|
114
|
+
fill: "url(#paint13_linear_1375_267)"
|
|
115
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
116
|
+
d: "M271.23 34.4501L262.63 26.2801C262.45 26.1101 262.17 26.3001 262.26 26.5301L266.06 36.7401L263.69 37.6201C263.53 37.6801 263.49 37.8801 263.61 38.0001L272.21 46.1701C272.39 46.3401 272.67 46.1501 272.58 45.9201L268.78 35.7101L271.15 34.8301C271.31 34.7801 271.35 34.5701 271.23 34.4501Z",
|
|
117
|
+
fill: "url(#paint14_linear_1375_267)"
|
|
118
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
119
|
+
d: "M252.19 156.739L248.63 180.259C248.55 180.809 249.26 181.089 249.58 180.639L262.02 162.619L266.18 165.499C266.5 165.719 266.94 165.529 266.99 165.149L270.55 141.629C270.63 141.079 269.92 140.799 269.6 141.249L257.16 159.269L253 156.389C252.69 156.169 252.25 156.359 252.19 156.739Z",
|
|
120
|
+
fill: "url(#paint15_linear_1375_267)"
|
|
121
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
122
|
+
d: "M280.79 160.989L286.31 171.489C286.42 171.709 286.75 171.619 286.74 171.379L286.42 160.489L288.95 160.409C289.12 160.399 289.23 160.219 289.15 160.069L283.63 149.569C283.52 149.349 283.19 149.439 283.2 149.679L283.52 160.569L280.99 160.639C280.82 160.659 280.71 160.839 280.79 160.989Z",
|
|
123
|
+
fill: "url(#paint16_linear_1375_267)"
|
|
124
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
125
|
+
d: "M210.22 142.149L210.26 142.049C210.88 140.389 211.84 138.869 213.09 137.609L213.57 137.119C213.8 136.879 214.17 136.829 214.46 136.989C214.83 137.199 214.96 137.679 214.73 138.039L214.35 138.639C213.96 139.259 214.44 140.049 215.17 139.989L216.22 139.909C216.41 139.889 216.6 139.889 216.79 139.889H220.09V140.009C220.09 140.589 219.94 141.149 219.65 141.649L219.85 142.479L212.52 144.559L210.22 142.149Z",
|
|
126
|
+
fill: "#A27F68"
|
|
127
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
128
|
+
d: "M167.89 212.219C170.43 201.299 170.03 198.249 168.95 195.809C167.16 191.769 163.58 189.559 161.36 188.459C160.58 189.839 159.49 191.959 158.49 194.659C156.66 199.589 156.32 203.239 155.63 207.859C155.11 211.319 154.24 216.299 152.75 222.379C150.92 226.479 149.08 231.349 147.55 236.919C145.75 243.459 144.81 249.419 144.33 254.469C146.45 254.469 148.58 254.469 150.71 254.459C152.73 251.619 154.81 248.339 156.78 244.619C160.42 237.759 162.67 231.309 164.11 225.929C164.85 223.589 165.87 220.159 166.97 215.949C167.26 214.829 167.56 213.629 167.89 212.219Z",
|
|
129
|
+
fill: "#6554C0"
|
|
130
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
131
|
+
d: "M176.58 191.57C179.52 198.15 181.75 203.76 183.34 207.95C186.95 217.46 187.57 220.51 187.81 221.82C188.78 227.05 188.69 231 188.5 237.33C188.37 241.83 187.97 247.87 186.83 255C184.86 255.11 182.88 255.22 180.91 255.33C179.04 250.46 177.13 243.9 176.47 235.99C176.11 231.71 176.19 227.83 176.47 224.47C173.58 221.68 170.54 218.48 167.48 214.83C165.05 211.93 162.9 209.11 161 206.41C161 206.41 156.64 199.14 158.38 195.02C158.38 195.01 158.39 194.99 158.4 194.98C158.89 193.79 159.33 192.79 159.55 192.3C160.25 190.75 160.84 189.5 161.25 188.66C163.04 189.3 165.07 189.9 167.32 190.4C170.78 191.17 173.92 191.48 176.58 191.57Z",
|
|
132
|
+
fill: "url(#paint17_linear_1375_267)"
|
|
133
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
134
|
+
d: "M172.03 148.42C171.56 148.18 171.05 147.95 170.5 147.72C169.91 147.47 169.34 147.26 168.81 147.09C168.59 146.7 167.07 144.07 163.95 143.52C163.46 143.44 161.77 143.16 160.05 144.06C157.21 145.55 156.37 149.16 156.64 151.67C156.74 152.59 156.91 154.28 158.16 155.58C159.93 157.42 162.29 156.85 162.98 158.45C163.55 159.76 162.18 160.72 162.73 161.65C163.73 163.34 169.99 163.03 171.08 160.08C171.23 159.68 171.48 158.71 170.76 157.19C171.68 155.93 172.61 154.67 173.53 153.42C173.3 152.89 172.96 152.24 172.45 151.55C171.97 150.91 171.49 150.41 171.07 150.05C171.23 149.86 171.41 149.63 171.58 149.35C171.79 149 171.93 148.68 172.03 148.42Z",
|
|
135
|
+
fill: "#A27F68"
|
|
136
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
137
|
+
d: "M163.94 151.95C163.79 150.89 164.25 150.56 163.88 149.91C163.46 149.16 162.68 149.28 162.15 148.38C161.99 148.12 161.68 147.58 161.84 147.09C162.25 145.82 165.44 146.23 165.81 145C165.91 144.65 165.76 144.29 165.61 144.04C165.08 143.65 164.2 143.12 163.02 142.93C160.36 142.5 157.52 144.01 156.11 146.43C154.47 149.25 155.11 152.73 156.74 154.54C157.37 155.24 158.63 156.65 160.4 156.92C160.96 157.01 161.84 157.02 162.34 157.67C162.73 158.17 162.66 158.75 162.98 158.84C163.06 158.86 163.36 158.91 164.01 158.08C164.71 157.19 165.56 156.12 165.39 154.83C165.22 153.5 164.16 153.48 163.94 151.95Z",
|
|
138
|
+
fill: "#42526E"
|
|
139
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
140
|
+
d: "M171.78 160.529C178.49 163.269 181.57 171.049 181.57 176.839C181.57 180.219 180.53 183.109 179.64 185.569C178.42 188.949 177.51 190.789 176 192.699C171.74 198.069 159.59 197.749 157.75 193.939C157.36 193.139 157.51 192.349 157.55 192.109C159.83 178.359 156.81 163.059 163.89 159.849C166.86 158.499 170.07 159.829 171.78 160.529Z",
|
|
141
|
+
fill: "#5243AA"
|
|
142
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
143
|
+
d: "M213.33 144.43C213.47 144.59 213.62 144.74 213.76 144.9C209.95 149.37 203.65 155.67 194.36 160.95C183.21 167.29 172.8 169.3 166.51 170.01C164.79 168.3 162.68 165.68 163.29 163.25C163.79 161.24 166.05 159.77 176.29 157.08C180.37 156.01 185.85 154.7 192.45 153.53C198.37 149.36 204.3 145.18 210.22 141.01C210.23 141.02 210.23 141.02 210.24 141.03L213.33 144.43Z",
|
|
144
|
+
fill: "url(#paint18_linear_1375_267)"
|
|
145
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
146
|
+
d: "M416.51 117.27L420.41 121.18L421.77 118.83L417.41 116.13C417.1 115.94 416.71 116 416.47 116.27C416.23 116.56 416.24 117 416.51 117.27Z",
|
|
147
|
+
fill: "#D4B696"
|
|
148
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
149
|
+
d: "M185.75 257.109C185.75 257.119 185.76 257.129 185.77 257.139C185.88 257.189 186.19 256.219 186.63 256.019C187.47 255.639 188.86 258.159 191.32 259.779C192.43 260.509 193.53 260.909 194.4 261.129C194.73 261.209 194.96 261.509 194.96 261.849V262.549H180.01C179.98 261.659 180.04 260.509 180.34 259.209C180.53 258.409 180.77 257.699 181.02 257.119H185.75V257.109Z",
|
|
150
|
+
fill: "#42526E"
|
|
151
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
152
|
+
d: "M180.08 259.818C181.72 259.818 183.05 261.138 183.09 262.768C182.06 262.768 181.03 262.768 180 262.768V259.818C180.03 259.828 180.06 259.818 180.08 259.818Z",
|
|
153
|
+
fill: "#B3BAC5"
|
|
154
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
155
|
+
d: "M148.77 257.109C148.77 257.119 148.78 257.129 148.79 257.139C148.9 257.189 149.21 256.219 149.65 256.019C150.49 255.639 151.88 258.159 154.34 259.779C155.45 260.509 156.55 260.909 157.42 261.129C157.75 261.209 157.98 261.509 157.98 261.849V262.549H143.03C143 261.659 143.06 260.509 143.36 259.209C143.55 258.409 143.79 257.699 144.04 257.119H148.77V257.109Z",
|
|
156
|
+
fill: "#42526E"
|
|
157
|
+
}), /*#__PURE__*/React.createElement("path", {
|
|
158
|
+
d: "M143.11 259.818C144.75 259.818 146.08 261.138 146.12 262.768C145.09 262.768 144.06 262.768 143.03 262.768V259.818C143.05 259.828 143.08 259.818 143.11 259.818Z",
|
|
159
|
+
fill: "#B3BAC5"
|
|
160
|
+
})), /*#__PURE__*/React.createElement("defs", null, /*#__PURE__*/React.createElement("linearGradient", {
|
|
161
|
+
id: "paint0_linear_1375_267",
|
|
162
|
+
x1: "141.994",
|
|
163
|
+
y1: "181.192",
|
|
164
|
+
x2: "0.870117",
|
|
165
|
+
y2: "181.192",
|
|
166
|
+
gradientUnits: "userSpaceOnUse"
|
|
167
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
168
|
+
stopColor: "#C1C7D0"
|
|
169
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
170
|
+
offset: "1",
|
|
171
|
+
stopColor: "#C1C7D0",
|
|
172
|
+
stopOpacity: "0"
|
|
173
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
174
|
+
id: "paint1_linear_1375_267",
|
|
175
|
+
x1: "208.292",
|
|
176
|
+
y1: "264.428",
|
|
177
|
+
x2: "0.870117",
|
|
178
|
+
y2: "264.428",
|
|
179
|
+
gradientUnits: "userSpaceOnUse"
|
|
180
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
181
|
+
stopColor: "#091E42"
|
|
182
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
183
|
+
offset: "0.8433",
|
|
184
|
+
stopColor: "#091E42",
|
|
185
|
+
stopOpacity: "0"
|
|
186
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
187
|
+
id: "paint2_linear_1375_267",
|
|
188
|
+
x1: "357.327",
|
|
189
|
+
y1: "264.428",
|
|
190
|
+
x2: "564.748",
|
|
191
|
+
y2: "264.428",
|
|
192
|
+
gradientUnits: "userSpaceOnUse"
|
|
193
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
194
|
+
stopColor: "#091E42"
|
|
195
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
196
|
+
offset: "0.8433",
|
|
197
|
+
stopColor: "#091E42",
|
|
198
|
+
stopOpacity: "0"
|
|
199
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
200
|
+
id: "paint3_linear_1375_267",
|
|
201
|
+
x1: "423.624",
|
|
202
|
+
y1: "181.192",
|
|
203
|
+
x2: "564.748",
|
|
204
|
+
y2: "181.192",
|
|
205
|
+
gradientUnits: "userSpaceOnUse"
|
|
206
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
207
|
+
stopColor: "#0065FF"
|
|
208
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
209
|
+
offset: "0.1724",
|
|
210
|
+
stopColor: "#076AFF",
|
|
211
|
+
stopOpacity: "0.8007"
|
|
212
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
213
|
+
offset: "0.4145",
|
|
214
|
+
stopColor: "#1976FF",
|
|
215
|
+
stopOpacity: "0.5208"
|
|
216
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
217
|
+
offset: "0.6966",
|
|
218
|
+
stopColor: "#378BFF",
|
|
219
|
+
stopOpacity: "0.1947"
|
|
220
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
221
|
+
offset: "0.8651",
|
|
222
|
+
stopColor: "#4C9AFF",
|
|
223
|
+
stopOpacity: "0"
|
|
224
|
+
})), /*#__PURE__*/React.createElement("radialGradient", {
|
|
225
|
+
id: "paint4_radial_1375_267",
|
|
226
|
+
cx: "0",
|
|
227
|
+
cy: "0",
|
|
228
|
+
r: "1",
|
|
229
|
+
gradientUnits: "userSpaceOnUse",
|
|
230
|
+
gradientTransform: "translate(285 99.0229) scale(96.5182)"
|
|
231
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
232
|
+
stopColor: "#FFF0B2"
|
|
233
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
234
|
+
offset: "0.1584",
|
|
235
|
+
stopColor: "#FFE587",
|
|
236
|
+
stopOpacity: "0.8416"
|
|
237
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
238
|
+
offset: "0.3589",
|
|
239
|
+
stopColor: "#FFDA57",
|
|
240
|
+
stopOpacity: "0.6411"
|
|
241
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
242
|
+
offset: "0.5498",
|
|
243
|
+
stopColor: "#FFD031",
|
|
244
|
+
stopOpacity: "0.4502"
|
|
245
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
246
|
+
offset: "0.7256",
|
|
247
|
+
stopColor: "#FFC916",
|
|
248
|
+
stopOpacity: "0.2744"
|
|
249
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
250
|
+
offset: "0.8811",
|
|
251
|
+
stopColor: "#FFC506",
|
|
252
|
+
stopOpacity: "0.1189"
|
|
253
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
254
|
+
offset: "1",
|
|
255
|
+
stopColor: "#FFC400",
|
|
256
|
+
stopOpacity: "0"
|
|
257
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
258
|
+
id: "paint5_linear_1375_267",
|
|
259
|
+
x1: "346.074",
|
|
260
|
+
y1: "98.8386",
|
|
261
|
+
x2: "423.624",
|
|
262
|
+
y2: "98.8386",
|
|
263
|
+
gradientUnits: "userSpaceOnUse"
|
|
264
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
265
|
+
stopColor: "#0052CC"
|
|
266
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
267
|
+
offset: "1",
|
|
268
|
+
stopColor: "#2684FF"
|
|
269
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
270
|
+
id: "paint6_linear_1375_267",
|
|
271
|
+
x1: "237.087",
|
|
272
|
+
y1: "120.044",
|
|
273
|
+
x2: "276.412",
|
|
274
|
+
y2: "120.044",
|
|
275
|
+
gradientUnits: "userSpaceOnUse"
|
|
276
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
277
|
+
stopColor: "#7A869A"
|
|
278
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
279
|
+
offset: "1",
|
|
280
|
+
stopColor: "#DFE1E5"
|
|
281
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
282
|
+
id: "paint7_linear_1375_267",
|
|
283
|
+
x1: "237.087",
|
|
284
|
+
y1: "75.0106",
|
|
285
|
+
x2: "276.412",
|
|
286
|
+
y2: "75.0106",
|
|
287
|
+
gradientUnits: "userSpaceOnUse"
|
|
288
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
289
|
+
stopColor: "#7A869A"
|
|
290
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
291
|
+
offset: "1",
|
|
292
|
+
stopColor: "#DFE1E5"
|
|
293
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
294
|
+
id: "paint8_linear_1375_267",
|
|
295
|
+
x1: "335.969",
|
|
296
|
+
y1: "146.593",
|
|
297
|
+
x2: "335.969",
|
|
298
|
+
y2: "51.4514",
|
|
299
|
+
gradientUnits: "userSpaceOnUse"
|
|
300
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
301
|
+
stopColor: "#2684FF"
|
|
302
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
303
|
+
offset: "1",
|
|
304
|
+
stopColor: "#B2D4FF"
|
|
305
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
306
|
+
id: "paint9_linear_1375_267",
|
|
307
|
+
x1: "219.544",
|
|
308
|
+
y1: "98.8386",
|
|
309
|
+
x2: "141.994",
|
|
310
|
+
y2: "98.8386",
|
|
311
|
+
gradientUnits: "userSpaceOnUse"
|
|
312
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
313
|
+
stopColor: "#7A869A"
|
|
314
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
315
|
+
offset: "1",
|
|
316
|
+
stopColor: "#EBECF0"
|
|
317
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
318
|
+
id: "paint10_linear_1375_267",
|
|
319
|
+
x1: "229.65",
|
|
320
|
+
y1: "146.593",
|
|
321
|
+
x2: "229.65",
|
|
322
|
+
y2: "51.4514",
|
|
323
|
+
gradientUnits: "userSpaceOnUse"
|
|
324
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
325
|
+
stopColor: "#C1C7D0"
|
|
326
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
327
|
+
offset: "1",
|
|
328
|
+
stopColor: "#F4F5F7"
|
|
329
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
330
|
+
id: "paint11_linear_1375_267",
|
|
331
|
+
x1: "402.858",
|
|
332
|
+
y1: "216.64",
|
|
333
|
+
x2: "421.684",
|
|
334
|
+
y2: "223.492",
|
|
335
|
+
gradientUnits: "userSpaceOnUse"
|
|
336
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
337
|
+
stopColor: "#4C9AFF"
|
|
338
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
339
|
+
offset: "0.8134",
|
|
340
|
+
stopColor: "#0065FF"
|
|
341
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
342
|
+
offset: "0.8713",
|
|
343
|
+
stopColor: "#0065FF"
|
|
344
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
345
|
+
id: "paint12_linear_1375_267",
|
|
346
|
+
x1: "376.968",
|
|
347
|
+
y1: "157.139",
|
|
348
|
+
x2: "433.936",
|
|
349
|
+
y2: "157.139",
|
|
350
|
+
gradientUnits: "userSpaceOnUse"
|
|
351
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
352
|
+
stopColor: "#B2D4FF"
|
|
353
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
354
|
+
offset: "1",
|
|
355
|
+
stopColor: "#2684FF"
|
|
356
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
357
|
+
id: "paint13_linear_1375_267",
|
|
358
|
+
x1: "289.638",
|
|
359
|
+
y1: "45.0027",
|
|
360
|
+
x2: "289.638",
|
|
361
|
+
y2: "0.510323",
|
|
362
|
+
gradientUnits: "userSpaceOnUse"
|
|
363
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
364
|
+
stopColor: "#FFF0B2"
|
|
365
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
366
|
+
offset: "1",
|
|
367
|
+
stopColor: "#FFC400"
|
|
368
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
369
|
+
id: "paint14_linear_1375_267",
|
|
370
|
+
x1: "262.238",
|
|
371
|
+
y1: "36.2259",
|
|
372
|
+
x2: "272.592",
|
|
373
|
+
y2: "36.2259",
|
|
374
|
+
gradientUnits: "userSpaceOnUse"
|
|
375
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
376
|
+
stopColor: "#FFC400"
|
|
377
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
378
|
+
offset: "1",
|
|
379
|
+
stopColor: "#FFF0B2"
|
|
380
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
381
|
+
id: "paint15_linear_1375_267",
|
|
382
|
+
x1: "259.6",
|
|
383
|
+
y1: "180.859",
|
|
384
|
+
x2: "259.6",
|
|
385
|
+
y2: "141.017",
|
|
386
|
+
gradientUnits: "userSpaceOnUse"
|
|
387
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
388
|
+
stopColor: "#FFC400"
|
|
389
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
390
|
+
offset: "1",
|
|
391
|
+
stopColor: "#FFF0B2"
|
|
392
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
393
|
+
id: "paint16_linear_1375_267",
|
|
394
|
+
x1: "284.971",
|
|
395
|
+
y1: "171.613",
|
|
396
|
+
x2: "284.971",
|
|
397
|
+
y2: "149.45",
|
|
398
|
+
gradientUnits: "userSpaceOnUse"
|
|
399
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
400
|
+
stopColor: "#FFC400"
|
|
401
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
402
|
+
offset: "1",
|
|
403
|
+
stopColor: "#FFF0B2"
|
|
404
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
405
|
+
id: "paint17_linear_1375_267",
|
|
406
|
+
x1: "157.982",
|
|
407
|
+
y1: "221.995",
|
|
408
|
+
x2: "188.627",
|
|
409
|
+
y2: "221.995",
|
|
410
|
+
gradientUnits: "userSpaceOnUse"
|
|
411
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
412
|
+
offset: "0.3435",
|
|
413
|
+
stopColor: "#6554C0"
|
|
414
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
415
|
+
offset: "1",
|
|
416
|
+
stopColor: "#998DD9"
|
|
417
|
+
})), /*#__PURE__*/React.createElement("linearGradient", {
|
|
418
|
+
id: "paint18_linear_1375_267",
|
|
419
|
+
x1: "163.185",
|
|
420
|
+
y1: "155.517",
|
|
421
|
+
x2: "213.758",
|
|
422
|
+
y2: "155.517",
|
|
423
|
+
gradientUnits: "userSpaceOnUse"
|
|
424
|
+
}, /*#__PURE__*/React.createElement("stop", {
|
|
425
|
+
stopColor: "#5243AA"
|
|
426
|
+
}), /*#__PURE__*/React.createElement("stop", {
|
|
427
|
+
offset: "1",
|
|
428
|
+
stopColor: "#8777D9"
|
|
429
|
+
})), /*#__PURE__*/React.createElement("clipPath", {
|
|
430
|
+
id: "clip0_1375_267"
|
|
431
|
+
}, /*#__PURE__*/React.createElement("rect", {
|
|
432
|
+
width: "563.88",
|
|
433
|
+
height: "265.81",
|
|
434
|
+
fill: "white",
|
|
435
|
+
transform: "translate(0.870117 0.509766)"
|
|
436
|
+
}))));
|