@devtron-labs/devtron-fe-common-lib 1.13.0-pre-5 → 1.13.0-pre-6
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/dist/{@code-editor-Cnnz8WKW.js → @code-editor-DDIbDgoG.js} +8728 -8338
- package/dist/{@common-rjsf-BGYrN0PH.js → @common-rjsf-AMVnhZkY.js} +1 -1
- package/dist/Common/Helper.d.ts +1 -0
- package/dist/Shared/Components/AppStatusModal/AppStatusBody.d.ts +1 -1
- package/dist/Shared/Components/AppStatusModal/AppStatusModal.component.d.ts +1 -1
- package/dist/Shared/Components/AppStatusModal/AppStatusModalTabList.d.ts +3 -0
- package/dist/Shared/Components/AppStatusModal/index.d.ts +1 -0
- package/dist/Shared/Components/AppStatusModal/service.d.ts +4 -3
- package/dist/Shared/Components/AppStatusModal/types.d.ts +52 -6
- package/dist/Shared/Components/AppStatusModal/utils.d.ts +5 -2
- package/dist/Shared/Components/CICDHistory/DeploymentStatusBreakdown.d.ts +1 -1
- package/dist/Shared/Components/CICDHistory/DeploymentStatusDetailRow.d.ts +1 -1
- package/dist/Shared/Components/CICDHistory/LogStageAccordion.d.ts +1 -1
- package/dist/Shared/Components/CICDHistory/service.d.ts +3 -0
- package/dist/Shared/Components/CICDHistory/types.d.ts +11 -71
- package/dist/Shared/Components/CICDHistory/utils.d.ts +3 -2
- package/dist/Shared/Components/DeploymentStatusBreakdown/constants.d.ts +10 -0
- package/dist/Shared/Components/DeploymentStatusBreakdown/index.d.ts +3 -0
- package/dist/Shared/Components/DeploymentStatusBreakdown/types.d.ts +22 -0
- package/dist/Shared/Components/DeploymentStatusBreakdown/utils.d.ts +20 -0
- package/dist/Shared/Components/TabGroup/TabGroup.helpers.d.ts +1 -1
- package/dist/Shared/Components/TabGroup/TabGroup.types.d.ts +33 -7
- package/dist/Shared/Components/TargetPlatforms/TargetPlatformListTooltip.d.ts +1 -1
- package/dist/Shared/Components/TargetPlatforms/types.d.ts +1 -2
- package/dist/Shared/Components/index.d.ts +1 -0
- package/dist/Shared/Helpers.d.ts +2 -2
- package/dist/Shared/constants.d.ts +2 -22
- package/dist/Shared/types.d.ts +100 -2
- package/dist/assets/@code-editor.css +1 -1
- package/dist/assets/ic-celebration.77350694.svg +238 -0
- package/dist/assets/{ic-disconnect.26bad827.svg → ic-disconnect.2ad261fc.svg} +1 -1
- package/dist/assets/ic-man-on-rocket.7f67e914.svg +94 -0
- package/dist/index.js +886 -871
- package/package.json +1 -1
- package/dist/Shared/Components/CICDHistory/ErrorInfoStatusBar.d.ts +0 -2
- package/dist/assets/ic-check-grey.f556e371.svg +0 -21
- package/dist/assets/ic-disconnected.551d6161.svg +0 -29
- package/dist/assets/ic-timeout-red.5eda1010.svg +0 -21
@@ -0,0 +1,238 @@
|
|
1
|
+
<svg data-style-override="false" width="250" height="200" viewBox="0 0 250 200" fill="none"
|
2
|
+
xmlns="http://www.w3.org/2000/svg">
|
3
|
+
<style>
|
4
|
+
@keyframes rotation {
|
5
|
+
0% {
|
6
|
+
transform: rotate(0deg)
|
7
|
+
}
|
8
|
+
|
9
|
+
to {
|
10
|
+
transform: rotate(360deg)
|
11
|
+
}
|
12
|
+
}
|
13
|
+
|
14
|
+
@keyframes jump {
|
15
|
+
|
16
|
+
0%,
|
17
|
+
10%,
|
18
|
+
to {
|
19
|
+
transform: translateY(0)
|
20
|
+
}
|
21
|
+
|
22
|
+
50% {
|
23
|
+
transform: translateY(-25px)
|
24
|
+
}
|
25
|
+
}
|
26
|
+
|
27
|
+
@keyframes trumpet-animate {
|
28
|
+
0% {
|
29
|
+
transform: rotate(0deg)
|
30
|
+
}
|
31
|
+
|
32
|
+
to {
|
33
|
+
transform: rotate(8deg)
|
34
|
+
}
|
35
|
+
}
|
36
|
+
|
37
|
+
@keyframes sway {
|
38
|
+
0% {
|
39
|
+
transform: rotate(-5deg)
|
40
|
+
}
|
41
|
+
|
42
|
+
to {
|
43
|
+
transform: rotate(5deg)
|
44
|
+
}
|
45
|
+
}
|
46
|
+
</style>
|
47
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
48
|
+
d="M89 32c-7.732 0-14 6.268-14 14s6.268 14 14 14 14-6.268 14-14-6.268-14-14-14M73 46c0-8.837 7.163-16 16-16s16 7.163 16 16-7.163 16-16 16-16-7.163-16-16"
|
49
|
+
fill="#A1C3FC" style="animation:rotation 2s infinite linear;transform-origin:32% 25%" />
|
50
|
+
<path d="M63.5 53 40 51.5l10.5 18z" fill="#A1C3FC"
|
51
|
+
style="animation:rotation 5s infinite ease;transform-origin:20% 28%" />
|
52
|
+
<path transform="rotate(-34 89.284 29.099)" fill="#F1B505"
|
53
|
+
style="animation:rotation 6s infinite linear;transform-origin:center center" d="M89.284 29.099h15v15h-15z" />
|
54
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
55
|
+
d="m162.798 27.858 25.342 16.331-30.974 12.953zm1.405 3.284-4.369 22.716 24.026-10.047z" fill="#EEE"
|
56
|
+
style="animation:rotation 3s infinite linear;transform-origin:center center" />
|
57
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
58
|
+
d="M188.925 30.768a5.5 5.5 0 0 1 7.703-1.082l16.771 12.638a5.5 5.5 0 1 1-6.62 8.785L190.008 38.47a5.5 5.5 0 0 1-1.083-7.703m6.499.515a3.5 3.5 0 1 0-4.213 5.59l16.772 12.638a3.5 3.5 0 1 0 4.212-5.59z"
|
59
|
+
fill="#A1C3FC" style="animation:rotation 3s infinite alternate-reverse ease-in-out;transform-origin:80% 25%" />
|
60
|
+
<path class="pill-grey-border" fill-rule="evenodd" clip-rule="evenodd"
|
61
|
+
d="M59.87 88.151a2 2 0 0 1 1.702-2.258l6.932-.975a2 2 0 1 1 .556 3.961l-6.931.975a2 2 0 0 1-2.26-1.703m1.841-1.268a1 1 0 1 0 .278 1.98l6.932-.974a1 1 0 0 0-.278-1.98z"
|
62
|
+
fill="#EEE" />
|
63
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
64
|
+
d="M66 65.5a5.5 5.5 0 1 0 0 11 5.5 5.5 0 0 0 0-11M59.5 71a6.5 6.5 0 1 1 13 0 6.5 6.5 0 0 1-13 0" fill="#F1B505"
|
65
|
+
style="animation:rotation 3s infinite linear;transform-origin:center center" />
|
66
|
+
<circle cx="52.5" cy="82.5" r="4.5" fill="#EEE"
|
67
|
+
style="animation:rotation 4s infinite linear;transform-origin:center center" />
|
68
|
+
<g style="animation:jump 2s infinite ease-out">
|
69
|
+
<path
|
70
|
+
d="M120.5 76.5c-.669-1.505-1.496-2.118-1.427-2.68-.84-.103-1.682-.206-2.995.06.178.875-1.126 2.253-1.578 3.62.738.944 1.914 1.82 3.5 1.5 1.678-.339 2.116-1.693 2.5-2.5"
|
71
|
+
fill="#F3A29D" />
|
72
|
+
<path
|
73
|
+
d="M118 65.05c.921.28 2.011.806 2.716 1.907.184.287.128.48.501.957.357.457.827 1.158 1.411 1.786l-.894.646c-.138 1.693-.165 2.686-1.734 3.654-1.099.678-3.5 1-4.5.5-3.256-1.628-3.946-2.8-3.5-5s3.663-3.531 6-4.45"
|
74
|
+
fill="#FFBEB5" />
|
75
|
+
<path
|
76
|
+
d="M118.913 70.426c-.444-.711-.341-1.59.251-1.96.46-.287 1.066-.175 1.521.223q.108-.245.241-.414l.064-.077q.124-.136.231-.207c-.329-.57-.26-1.245.191-1.527.464-.29 1.126-.034 1.488.546s.302 1.286-.162 1.576c-.413.258-.983.084-1.358-.366a1 1 0 0 0-.184.165 1.7 1.7 0 0 0-.295.506l-.006.015a2 2 0 0 1 .14.194c.444.71.341 1.59-.251 1.96s-1.427.077-1.871-.634m2.646-3.726c-.316.198-.362.731-.074 1.193.29.462.789.655 1.105.457.317-.198.363-.731.074-1.193-.288-.462-.788-.655-1.105-.457m-2.248 2.002c-.449.281-.532.985-.162 1.576.369.591 1.038.826 1.488.546.448-.281.531-.986.162-1.577-.37-.59-1.039-.825-1.488-.545"
|
77
|
+
fill="#222768" />
|
78
|
+
<path
|
79
|
+
d="M160.699 114.727 152.5 119l2 6.5c1.058.62 4.184 2.626 5.26 3.562 1.343 1.169 3.434 3.281 4.684 4.16.999.703 2.044.639 2.526.804z"
|
80
|
+
fill="#4484F7" />
|
81
|
+
<path
|
82
|
+
d="M123 118c-3.2-1.2-4.333-6.833-4.5-9.5l-9 13.5c.833 1.833 3.6 6.4 8 10s26.833-2.5 37.5-6l-2-7.5c-1.167-.667-4-1.5-6-1.5-2.5 0-3.5 2-7.5 2s-2.5-1-6-1-6.5 1.5-10.5 0"
|
83
|
+
fill="url(#paint0_linear_3746_4340)" />
|
84
|
+
<path
|
85
|
+
d="M133 53.5c0 2-2 8.5-3 11.5h7.5c-.5-4.833-1.4-14.8-1-16 .5-1.5 2.5-4 2.5-6.5 0-2-1.667-3.5-2.5-4-.667 1.333-1.6 4-2 4-.5 0-1-4.5-1.5-4.5s-.5 1-.5 1.5.271 6.5-.5 6.5c-.5 0-1-1.5-1.5-2-.349-.349-.977-.47-1.353-.495a.093.093 0 0 0-.092.13c1.05 2.557 3.945 7.9 3.945 9.865"
|
86
|
+
fill="url(#paint1_linear_3746_4340)" />
|
87
|
+
<path
|
88
|
+
d="m129.813 168.996-6.853-6.562-6.243 3.752c.283 1.314-1.547 4.056-2.217 5.314-.837 1.573-2.425 4.085-3 5.5-.46 1.132.052 2.493 0 3z"
|
89
|
+
fill="#4484F7" />
|
90
|
+
<path
|
91
|
+
d="M88 92.5c2 0 8-5.5 12-8l4 5c-4.833 2-14.9 6.2-16.5 7-1.957.979-2.957 1.957-4.873 3.404a.096.096 0 0 1-.154-.061c-.348-2.406 2.516-3.864 2.027-4.843-.5-1-4-.5-5.5-.5-1.006 0-1.965-1.054-2.347-1.69-.088-.146.022-.31.193-.303 1.465.05 4.154.362 4.154-.007 0-.342-2.07-.465-3.4-.493-.193-.004-.263-.236-.096-.331.76-.433 1.86-.876 2.496-.876 1 0 6 1.7 8 1.7"
|
92
|
+
fill="url(#paint2_linear_3746_4340)" />
|
93
|
+
<path
|
94
|
+
d="M121.5 106.5c0-3.6-1.333-6.833-2-8l-13-1.5c.167.5.6 2.5 1 6.5.5 5-3 24.5-2.5 31.5.4 5.6 7.833 24 11.5 32.5l7.5-4.5c0-2.333-.1-7.5-.5-9.5-.5-2.5-2-3-2.5-5.5s.5-4 0-7.5-3.5-5.5-4-12 4.5-17.5 4.5-22"
|
95
|
+
fill="#EEE" />
|
96
|
+
<path
|
97
|
+
d="M137.5 70c.4-2.4.5-5.667.5-7l-12-.5c-.333 2.333-1.2 7.6-2 10s-3 2.667-4 2.5c-.833 1-2.7 3-3.5 3s-.667-2-.5-3c-2 0-4.5 1.5-7 3.5-1.562 1.25-8.833 9.567-12 13.9 1 1.667 3 6.1 8.5 8.1 5.254 1.91 11.5-1 16-1 1.6 0 3.667.333 4.5.5 0-3.167.3-10.4 1.5-14 1.5-4.5 9.083-10.5 10-16"
|
98
|
+
fill="url(#paint3_linear_3746_4340)" />
|
99
|
+
<path
|
100
|
+
d="M119.5 65.7c-.167.833-.868 3.168-1.5 3.8-.781.78-1.487.81-2.164.838-.624.026-1.225.05-1.836.662-1 1-.5 2.5.5 2.5.609 0 2 .414 2 1.5 0 .5-1 2.5-2 4-.243.365-.546.878-.894 1.468-1.08 1.831-2.593 4.397-4.106 5.532-2 2-5 4-6.5 4.5-1.667-1-5.3-3.5-6.5-5.5s-2.833-5.5-3.5-7c1.333-1 4.7-3 7.5-3 1.175 0 2.407.17 3.601.394-1.315-.403-2.667-.744-4.101-.744-2.755 0-5.59 1.48-6.91 2.47l-.18-.24c1.348-1.01 4.246-2.53 7.09-2.53 1.777 0 3.422.508 4.983 1.007l.171.055c1.506.482 2.928.938 4.346.938.726 0 1.652-.034 2.524-.103a17.5 17.5 0 0 0 2.203-.642c.089-.033.085-.163-.004-.196-1.237-.452-3.352-1.815-3.723-4.409-.5-3.5 2.5-5.5 4-6 1.2-.4 3-.5 5 .7"
|
101
|
+
fill="#1C2868" />
|
102
|
+
</g>
|
103
|
+
<circle cx="55" cy="91" r="3" fill="#EEE" />
|
104
|
+
<path
|
105
|
+
d="M36 109c-4-2.4-6.667-9.333-7.5-12.5l-3 1.5c-.333.833-1.7 4.9-4.5 14.5s2.5 12.667 5.5 13c3.167 0 10.1-1 12.5-5s3.333-7.333 3.5-8.5c-.5-.5-2.5-.6-6.5-3"
|
106
|
+
fill="url(#paint4_linear_3746_4340)" />
|
107
|
+
<path
|
108
|
+
d="m42.27 190.99 2.23-11.932h9.406c.735.908 1.726 2.593 3.594 3.942 2.334 1.686 4.684 2.703 6.5 4 1.453 1.038 1.981 3.298 2.5 3.99z"
|
109
|
+
fill="#28306D" />
|
110
|
+
<path
|
111
|
+
d="M56.5 131.5c-2-2-8.5-7.833-11.5-10.5l-18.5 4c0 .667-2.094 4.917 2 8.5 4 3.5 23.877 9.271 24.5 15.5.5 5-6 10-7 12.5s0 5.5-1 7.5-3.5 5-4 6.5c-.4 1.2-.833 3.5-1 4.5h17.5c4.167-11 12.75-32 12-35-.828-3.314-10.5-11-13-13.5"
|
112
|
+
fill="url(#paint5_linear_3746_4340)" />
|
113
|
+
<path
|
114
|
+
d="m32 87.5-4 4-.47-.883 6.182-6.511c1.88-1.848 5-1.406 6.288.894 3.857 6.89 9.802 16.72 11.305 19.547 2.347 4.415 3.521 6.622 4.845 5.918 1.325-.704-2.211-6.199-3.15-7.965s-3.83-5.692-3.5-9c.143-1.435.749-2.852 1.034-3.381l14.373 3.798-.207.677c-.676-.207-2.236.056-3.062 2.76-.573 1.874 2.738 8.839 6.07 15.043 2.158 4.018.742 9.083-3.285 11.224l-.554.295a8 8 0 0 1-10.82-3.308L35.2 87.931c-.611-1.149-2.233-1.302-3.199-.431"
|
115
|
+
fill="url(#paint6_linear_3746_4340)"
|
116
|
+
style="animation:trumpet-animate 2s infinite alternate ease-out;transform-origin:12% 45%" />
|
117
|
+
<g style="animation:sway 3s infinite alternate ease;transform-origin:10% 70%">
|
118
|
+
<path
|
119
|
+
d="m85.883 161.531-5.545-9.425L87 146.5c1.45.041 4.835-.235 6.5-.5 2.081-.331 5.696-.901 7.5-1 1.443-.079 2.681.967 3.268 1.104z"
|
120
|
+
fill="#28306D" />
|
121
|
+
<path
|
122
|
+
d="M70 113.5c-6.364-1.414-24 4.5-34 7.5-3.167 3.333-8.7 10.3-5.5 13.5 4 4 11 3.5 16.5 2 3.992-1.089 12.403-5.279 17.164-7.789a1.03 1.03 0 0 1 1.495.794c.251 2.145.714 5.301 1.341 7.495 1 3.5 4 4.5 5 7s.5 4.5 1.5 7c.8 2 2.333 4.167 3 5l11.5-9.5c-4.167-10-13.5-32-18-33"
|
123
|
+
fill="#428DFC" />
|
124
|
+
</g>
|
125
|
+
<path
|
126
|
+
d="M44 112.5c-1.143 1.906-6.5 7-9 8.5l3.5 7c5-4 9.726-13.827 10.5-15 .968-1.466 2.281-2.317 3-5 .575-2.146-.5-6.5-2.5-7-.333 1.664-1.018 3.924-1.5 5-.242.541-.5.649-.5.5 0-1 .912-6.5 0-6.5s-.956 3.463-1.1 4-.4 2.634-.9 2.5c-.537-.144-1.107-1.82-1.5-2.5-.269-.465-1.164-.883-1.67-.429q-.032.028-.024.067c.168.622 3.559 5.754 1.694 8.862"
|
127
|
+
fill="url(#paint7_linear_3746_4340)" />
|
128
|
+
<path d="M28.5 96.5c-1-2-1-4-1-4.5-.931-.376-2.165-.811-3.75-.91-.066 1.057.187 3.483-.75 4.91 1 1.5 4 2 5.5.5"
|
129
|
+
fill="url(#paint8_linear_3746_4340)" />
|
130
|
+
<path
|
131
|
+
d="M15.5 113.5c.8-2.4 5.333-13.5 7.5-18.5.5.6 1 1.6 2.3 2 1.2.3 2.533-.333 3.2-.5-1.5 6.667-5.5 19.5-2 23.5 2.266 2.59 7.5.5 10-1l8.5 13.5c-2 1-6.8 3.2-10 4-4 1-9-.5-13 0s-7 2.5-10-1 2.5-19 3.5-22"
|
132
|
+
fill="#F5F3F3" />
|
133
|
+
<path
|
134
|
+
d="M24.244 82.743c1.168.266 2.318.99 3.205 2.026.279.325.23.543.746 1.041.494.477 1.015 1.049 1.805 1.69l-1 1q.016.276.018.54c-.018-.04-.404.553-.418.76-.032.474.321.574.297.7-.199 1.042-.649 1.878-1.397 2.5-1.179.978-2.684 1.25-4 1.25-2.5 0-4.661-2.093-4.5-4.75s2.653-5.293 5.244-6.757"
|
135
|
+
fill="#FFBABE" />
|
136
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
137
|
+
d="m27.752 87.124-.154-.002-.153-.001v.003a1 1 0 0 1-.008.09 1.2 1.2 0 0 1-.056.235.82.82 0 0 1-.408.49.82.82 0 0 1-.638.02 1.2 1.2 0 0 1-.295-.15l-.003-.001-.094.121-.093.122.001.001.002.002.007.004a1 1 0 0 0 .1.065c.066.038.16.087.275.126.227.079.547.125.872-.034.326-.158.486-.439.564-.666a1.6 1.6 0 0 0 .08-.414v-.011"
|
138
|
+
fill="#22276D" />
|
139
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
140
|
+
d="m29.07 90.798.067-.129.067-.128-.003-.002-.071-.045a1 1 0 0 1-.175-.148.78.78 0 0 1-.238-.555.78.78 0 0 1 .257-.545 1.2 1.2 0 0 1 .253-.185l.003-.001-.063-.131-.062-.131h-.002l-.002.002-.006.003a1 1 0 0 0-.098.056c-.06.04-.142.099-.224.178-.164.158-.34.407-.346.75-.006.341.161.597.32.76a1.5 1.5 0 0 0 .313.245l.007.004.002.001"
|
141
|
+
fill="#FA7D7D" />
|
142
|
+
<path
|
143
|
+
d="M27.5 82c1 1 .451 3.12-.784 4.366q-.302.3-.623.57c.697-.504 1.33-1.107 1.756-1.8.383-.623.598-1.317.543-2.078s-.38-1.593-1.084-2.491l.085-.067c.715.911 1.05 1.763 1.107 2.55s-.166 1.504-.558 2.142c-.68 1.108-1.872 1.983-3.012 2.596-.891.571-1.947.823-1.94 1.818.01 1.394-1.138 1.34-1.524 1.47-.537.18-1.424.504-1.05 1.205.216.376.633.448 1.05.52s1.617.123 1.834.499c.236.41.2.7 0 1.2-1.112.405-2.878.66-3.8.5-1.669-.288-3.066-1.749-3.5-2.5-1.084-1.878-.843-4.556 2.537-6.508 2.4-1.385 3.096-3.048 5.888-4.326.364-.213 1.924-.817 3.075.334"
|
144
|
+
fill="#A1C3FC" />
|
145
|
+
<path d="m20.53 79.204-8.124 10.781 3.395 2.558-2.107 2.795.6.452 13.24-17.57-.6-.452-3.009 3.993z" fill="#1C2868" />
|
146
|
+
<rect x="8" y="191" width="234" height="1" rx=".5" fill="#EEE" />
|
147
|
+
<g style="animation:sway 2s infinite alternate ease;transform-origin:75% 70%">
|
148
|
+
<path
|
149
|
+
d="m215.047 84.121-9.85 2.257-3.104-8.645c.557-1.274 1.527-4.381 1.889-5.956.453-1.968.865-6.398 1.425-8.037.448-1.31 2.016-1.46 2.348-1.933z"
|
150
|
+
fill="#F1B505" />
|
151
|
+
<path
|
152
|
+
d="M168.426 98.353 185 134l16.5-8c0-4.5 0-13-9.5-16.5-4.381-1.614-6.74-6.315-8.055-9.556-.496-1.223.349-2.59 1.661-2.739L209.5 94.5 202 77l-29.867 11.705c-3.831 1.501-5.133 5.795-3.707 9.648"
|
153
|
+
fill="url(#paint9_linear_3746_4340)" />
|
154
|
+
</g>
|
155
|
+
<g style="animation:sway 2s infinite alternate-reverse ease;transform-origin:75% 70%">
|
156
|
+
<path
|
157
|
+
d="m231.159 115.47-9.659-2.97 1.634-9.039c1.12-.825 3.513-3.031 4.614-4.213 1.376-1.478 3.948-5.109 5.252-6.248 1.043-.911 2.476-.257 3-.5z"
|
158
|
+
fill="#F1B505" />
|
159
|
+
<path
|
160
|
+
d="M186.776 89.843 182 135l18.5-3c.5-6.167 2.5-16 0-21-1.304-2.608-1.5-6-.5-6.5s4 3 6 3.5 4-1 6.5 0 3 2 5 3.5c1.6 1.2 3.667 1.5 4.5 1.5l2.5-13.5-30.715-13.697c-3.102-1.384-6.652.662-7.009 4.04"
|
161
|
+
fill="url(#paint10_linear_3746_4340)" />
|
162
|
+
</g>
|
163
|
+
<path
|
164
|
+
d="M218.5 128.693c7-1.693 14.289-4.107 21-6.193 3.809-1.278 4.447-.105 1 2-.925.592-1.563.691-1.5 1 .038.266 1.724 1.145 4 1.5 2.277.355 4.528 1.478 4.653 1.693 0 1.307-4.153 3.307-6.653 2.807-2.982-.596-3.5-1.5-6.5-2.5-4 0-8 5-15.5 7.5zm-23 57.526V171.5l-7 2.5 4.355 14.37a3 3 0 0 0 2.871 2.13h9.774c-.5-.5-1.153-.976-1.6-1.2-.6-.3-1.9-.3-2.9-.3-.333-.333-.5-1 1.5-1 1 0 3 1.5 4 2 .69.345 2.421.591 3.526.545.177-.007.232-.222.09-.327-1.967-1.449-5.62-4.218-7.116-4.218-2 0-3.5 0-4.5.5-.564.282-1.491.497-2.223.542-.458.028-.777-.364-.777-.823"
|
165
|
+
fill="#FAB6AF" />
|
166
|
+
<path
|
167
|
+
d="M203 134v-11.5c-1.5.333-5 1.2-7 2-2.5 1-4.087 3-9.5 5.5s-12.5 2.273-12.5 7.5c0 3.5 7.5 7 9.5 11.5.642 1.445 1.5 3.5 2 9 .41 4.509-3 15.5-3 17.5 0 1.6 1 3.333 1.5 4l11.5-4.5c.333-4.5 1-13.8 1-15 0-1.5 1.5-5 3.5-7s10.5-7.5 14-8.5 5.5-1 7.5-1.5c1.6-.4 4.333-2.5 5.5-3.5l-6-12c-1.833.333-6.3 1.4-9.5 3s-5 3.5-8.5 3.5"
|
168
|
+
fill="#23286B" />
|
169
|
+
<path
|
170
|
+
d="M196.5 153.5c.943 1.854 1 2.5 1.452 3.192 1.067.075 2.909-.27 4.548-.692-.282-1.092-1.08-2.796-.6-4.55-1.4-.95-2.453-.694-3.4-.45s-1.9 1.186-2 2.5"
|
171
|
+
fill="url(#paint11_linear_3746_4340)" />
|
172
|
+
<path
|
173
|
+
d="M200.078 167.222C199 166 199.342 165.42 198.5 164c-.219-.371-.316-.158-1-.5-1-.5-2.183-.286-3-1.5l1.5-1.5c-.5-2 .409-4.025 2.39-4.966 1.418-.808 3.834-1.113 5.11-.534 2.699 1.29 3.661 3.243 3 6-.66 2.757-3.433 5.165-6.422 6.222"
|
174
|
+
fill="#FFBEB6" />
|
175
|
+
<path
|
176
|
+
d="M198 168c-.2 1-.078 2.413.787 3.824l-.287.176c-2-2.5-.551-6.302 0-8 .841-2.59 3-4 4-4.5s1.702-.194 2.5-.5c.157-.06.943-.362.678-1.522-.155-.677-.606-.773-1.178-.978-1.111-.398-2.179-.969-2-2 2-1.5 6.5-1 8.11 2.184.531 1.049 1.879 4.208-.421 6.577C208.5 165 206.616 165.785 205 167c-.783.589-1.5 1.5-1 2.5l-4.172 2.907c-.904-1.512-1.673-3.443-1.828-4.407"
|
177
|
+
fill="#1C2868" />
|
178
|
+
<path fill-rule="evenodd" clip-rule="evenodd"
|
179
|
+
d="m198.64 161.012.001.153.002.154h-.004l-.018.001a1.1 1.1 0 0 0-.306.063.8.8 0 0 0-.491.408.82.82 0 0 0-.02.638 1.3 1.3 0 0 0 .14.28l.01.015.002.003-.122.093-.122.093-.001-.001-.001-.002-.005-.006-.015-.022-.049-.078a1.6 1.6 0 0 1-.127-.275 1.13 1.13 0 0 1 .034-.873 1.13 1.13 0 0 1 .667-.564 1.5 1.5 0 0 1 .386-.079l.027-.001z"
|
180
|
+
fill="#22276D" />
|
181
|
+
<defs>
|
182
|
+
<linearGradient id="paint0_linear_3746_4340" x1="115" y1="125" x2="154" y2="122" gradientUnits="userSpaceOnUse">
|
183
|
+
<stop stop-color="#E0DFDF" />
|
184
|
+
<stop offset=".342" stop-color="#F5F3F3" />
|
185
|
+
</linearGradient>
|
186
|
+
<linearGradient id="paint1_linear_3746_4340" x1="129" y1="65.103" x2="148.245" y2="53.742"
|
187
|
+
gradientUnits="userSpaceOnUse">
|
188
|
+
<stop offset=".23" stop-color="#F5A7A1" />
|
189
|
+
<stop offset=".867" stop-color="#FFBEB6" />
|
190
|
+
</linearGradient>
|
191
|
+
<linearGradient id="paint2_linear_3746_4340" x1="77" y1="100.059" x2="85.046" y2="77.72"
|
192
|
+
gradientUnits="userSpaceOnUse">
|
193
|
+
<stop offset=".133" stop-color="#F5A7A1" />
|
194
|
+
<stop offset=".537" stop-color="#FFBEB6" />
|
195
|
+
</linearGradient>
|
196
|
+
<linearGradient id="paint3_linear_3746_4340" x1="110.5" y1="72" x2="125" y2="101" gradientUnits="userSpaceOnUse">
|
197
|
+
<stop offset=".161" stop-color="#FFC417" />
|
198
|
+
<stop offset="1" stop-color="#F1B505" />
|
199
|
+
</linearGradient>
|
200
|
+
<linearGradient id="paint4_linear_3746_4340" x1="29" y1="126.5" x2="39.157" y2="109.046"
|
201
|
+
gradientUnits="userSpaceOnUse">
|
202
|
+
<stop stop-color="#E0DFDF" />
|
203
|
+
<stop offset=".73" stop-color="#F5F3F3" />
|
204
|
+
</linearGradient>
|
205
|
+
<linearGradient id="paint5_linear_3746_4340" x1="41.5" y1="129.5" x2="53.5" y2="181" gradientUnits="userSpaceOnUse">
|
206
|
+
<stop stop-color="#0C6FE8" />
|
207
|
+
<stop offset="1" stop-color="#428DFC" />
|
208
|
+
</linearGradient>
|
209
|
+
<linearGradient id="paint6_linear_3746_4340" x1="26.887" y1="88.445" x2="76.566" y2="117.8"
|
210
|
+
gradientUnits="userSpaceOnUse">
|
211
|
+
<stop stop-color="#E8B73F" />
|
212
|
+
<stop offset="1" stop-color="#CF9F36" />
|
213
|
+
</linearGradient>
|
214
|
+
<linearGradient id="paint7_linear_3746_4340" x1="34.866" y1="128.246" x2="57.341" y2="119.883"
|
215
|
+
gradientUnits="userSpaceOnUse">
|
216
|
+
<stop offset=".119" stop-color="#F5A7A1" />
|
217
|
+
<stop offset=".48" stop-color="#FFBEB6" />
|
218
|
+
</linearGradient>
|
219
|
+
<linearGradient id="paint8_linear_3746_4340" x1="25.5" y1="93.5" x2="26" y2="98" gradientUnits="userSpaceOnUse">
|
220
|
+
<stop stop-color="#F3A29D" />
|
221
|
+
<stop offset="1" stop-color="#FFBABE" />
|
222
|
+
</linearGradient>
|
223
|
+
<linearGradient id="paint9_linear_3746_4340" x1="166.5" y1="89" x2="207.5" y2="124.5"
|
224
|
+
gradientUnits="userSpaceOnUse">
|
225
|
+
<stop offset=".278" stop-color="#A1C3FC" />
|
226
|
+
<stop offset=".625" stop-color="#7CABF1" />
|
227
|
+
</linearGradient>
|
228
|
+
<linearGradient id="paint10_linear_3746_4340" x1="186.5" y1="86" x2="203" y2="125" gradientUnits="userSpaceOnUse">
|
229
|
+
<stop offset=".057" stop-color="#B5D1FF" />
|
230
|
+
<stop offset=".316" stop-color="#A1C3FC" />
|
231
|
+
</linearGradient>
|
232
|
+
<linearGradient id="paint11_linear_3746_4340" x1="198" y1="150.5" x2="198.322" y2="155.682"
|
233
|
+
gradientUnits="userSpaceOnUse">
|
234
|
+
<stop stop-color="#FBB5AE" />
|
235
|
+
<stop offset=".907" stop-color="#F4A5A0" />
|
236
|
+
</linearGradient>
|
237
|
+
</defs>
|
238
|
+
</svg>
|
@@ -1,3 +1,3 @@
|
|
1
1
|
<svg xmlns="http://www.w3.org/2000/svg" width="24" height="24" viewBox="0 0 24 24" fill="none">
|
2
|
-
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.1558 2.01314C17.0863 2.13825 17.5633 3.24858 17.0081 3.99141C16.883 4.15562 16.0385 5.03138 15.1315 5.93841C14.2244 6.83763 13.4816 7.61173 13.4816 7.65865C13.4816 7.7603 16.0776 10.3563 16.1792 10.3563C16.2183 10.3563 17.0785 9.53528 18.095 8.52659C19.6666 6.95492 19.9716 6.68906 20.2296 6.64215C21.2461 6.45448 22.0359 7.3537 21.6918 8.29983C21.6449 8.41712 20.777 9.34761 19.7683 10.3563L17.9386 12.1938L18.4937 12.7412C19.0958 13.3276 19.2679 13.6326 19.2679 14.0705C19.2679 14.4927 19.1271 14.696 18.181 15.6343C17.704 16.1035 17.313 16.5257 17.313 16.5726C17.313 16.6117 18.267 17.6048 19.4321 18.7777L21.5589 20.9045L21.512 21.2407C21.426 21.8897 20.7848 22.2025 20.2453 21.8584C20.1187 21.7767 18.0146 19.6943 15.2779 16.9616L14.4393 16.1237C14.0594 15.7438 13.6706 15.3548 13.2761 14.9598L12.6806 14.3632C12.3811 14.0631 12.0793 13.7605 11.7765 13.4569L11.1702 12.8485C6.61934 8.28058 2.05799 3.66801 2.02636 3.56917C1.94817 3.28768 2.04982 2.89671 2.25312 2.70123C2.47988 2.49011 2.91776 2.41192 3.16016 2.53703C3.23165 2.57873 3.80698 3.13335 4.55414 3.8758L5.14155 4.46278C5.19232 4.51378 5.24343 4.5652 5.29482 4.61695L7.24964 6.61087L8.23486 5.63346C9.04807 4.83589 9.27483 4.65605 9.51722 4.60914C10.0333 4.50748 10.4008 4.67951 11.0654 5.32851L11.6597 5.90713L13.4034 4.1087C15.2957 2.15388 15.5772 1.93494 16.1558 2.01314ZM4.73183 17.3624L6.46771 19.0982L5.57631 20.0444C5.07588 20.5761 4.59108 21.0218 4.45816 21.0687C4.15321 21.1703 3.80134 21.1625 3.51203 21.0374C3.18362 20.8967 2.86303 20.4979 2.80047 20.1538C2.69882 19.63 2.8943 19.2859 3.84825 18.285L4.73183 17.3624ZM5.3261 9.61347L9.79872 14.0705L14.2713 18.5274L14.0524 18.6213C13.3643 18.9028 11.777 19.0748 10.9012 18.9575C8.16449 18.6134 5.98291 16.7994 5.15407 14.1877C4.77093 12.9914 4.8022 11.1304 5.22445 9.91842L5.3261 9.61347Z" fill="
|
2
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M16.1558 2.01314C17.0863 2.13825 17.5633 3.24858 17.0081 3.99141C16.883 4.15562 16.0385 5.03138 15.1315 5.93841C14.2244 6.83763 13.4816 7.61173 13.4816 7.65865C13.4816 7.7603 16.0776 10.3563 16.1792 10.3563C16.2183 10.3563 17.0785 9.53528 18.095 8.52659C19.6666 6.95492 19.9716 6.68906 20.2296 6.64215C21.2461 6.45448 22.0359 7.3537 21.6918 8.29983C21.6449 8.41712 20.777 9.34761 19.7683 10.3563L17.9386 12.1938L18.4937 12.7412C19.0958 13.3276 19.2679 13.6326 19.2679 14.0705C19.2679 14.4927 19.1271 14.696 18.181 15.6343C17.704 16.1035 17.313 16.5257 17.313 16.5726C17.313 16.6117 18.267 17.6048 19.4321 18.7777L21.5589 20.9045L21.512 21.2407C21.426 21.8897 20.7848 22.2025 20.2453 21.8584C20.1187 21.7767 18.0146 19.6943 15.2779 16.9616L14.4393 16.1237C14.0594 15.7438 13.6706 15.3548 13.2761 14.9598L12.6806 14.3632C12.3811 14.0631 12.0793 13.7605 11.7765 13.4569L11.1702 12.8485C6.61934 8.28058 2.05799 3.66801 2.02636 3.56917C1.94817 3.28768 2.04982 2.89671 2.25312 2.70123C2.47988 2.49011 2.91776 2.41192 3.16016 2.53703C3.23165 2.57873 3.80698 3.13335 4.55414 3.8758L5.14155 4.46278C5.19232 4.51378 5.24343 4.5652 5.29482 4.61695L7.24964 6.61087L8.23486 5.63346C9.04807 4.83589 9.27483 4.65605 9.51722 4.60914C10.0333 4.50748 10.4008 4.67951 11.0654 5.32851L11.6597 5.90713L13.4034 4.1087C15.2957 2.15388 15.5772 1.93494 16.1558 2.01314ZM4.73183 17.3624L6.46771 19.0982L5.57631 20.0444C5.07588 20.5761 4.59108 21.0218 4.45816 21.0687C4.15321 21.1703 3.80134 21.1625 3.51203 21.0374C3.18362 20.8967 2.86303 20.4979 2.80047 20.1538C2.69882 19.63 2.8943 19.2859 3.84825 18.285L4.73183 17.3624ZM5.3261 9.61347L9.79872 14.0705L14.2713 18.5274L14.0524 18.6213C13.3643 18.9028 11.777 19.0748 10.9012 18.9575C8.16449 18.6134 5.98291 16.7994 5.15407 14.1877C4.77093 12.9914 4.8022 11.1304 5.22445 9.91842L5.3261 9.61347Z" fill="#3B444C"/>
|
3
3
|
</svg>
|
@@ -0,0 +1,94 @@
|
|
1
|
+
<svg width="250" height="200" viewBox="0 0 250 200" fill="none" xmlns="http://www.w3.org/2000/svg">
|
2
|
+
<g clip-path="url(#clip0_1724_3919)">
|
3
|
+
<path d="M192.5 76C187.7 76 182.5 77.6667 180.5 78.5V85C182.333 84.1667 186.5 82.5 188.5 82.5C190.5 82.5 200.667 86.1667 205.5 88L209 79.5C205.333 78.8333 197.3 76 192.5 76Z" fill="#FFBEB6"/>
|
4
|
+
<path d="M142 74C137.2 68.8 135.667 57.8333 135.5 53L121.5 65.5C122.833 72.1667 121.5 87.5 135.5 96C149 104.196 170.5 94.1667 183 88C182.833 84.5 182.4 76.1 182 70.5C171 74.5 149.5 82.125 142 74Z" fill="url(#paint0_linear_1724_3919)"/>
|
5
|
+
<path d="M174.508 168.245L181.347 150.817L194.668 151.282C196.443 152.975 200.573 157.293 202.964 158.844C205.954 160.782 211.976 163.439 214.355 165.356C216.258 166.89 217.899 168.945 218.481 169.781L174.508 168.245Z" fill="#1A2256"/>
|
6
|
+
<path d="M192 85C186 79 155.167 85.5 140.5 89.5L141.5 111C150.5 107.833 166.8 100.8 174 102C181.2 103.2 178.167 135.833 174 151.5H195.5C196.833 131.833 198 91 192 85Z" fill="#6295E4"/>
|
7
|
+
<path d="M81.0661 149.369C80.1405 142.829 78.0083 142.764 67.6284 142.446C66.4397 142.41 65.1429 142.37 63.7273 142.317C53.0653 141.975 46.1614 151.12 46.1614 151.12C46.1614 151.12 50.3657 151.641 54.5238 153.913C40.4242 159.61 35 171.544 35 171.544C35 171.544 48.5797 176.915 61.6695 171.5C60.3546 175.887 57.4726 179.116 57.4726 179.116C57.4726 179.116 69.1715 181.234 76.4333 173.16C77.4148 172.139 78.3201 171.209 79.1499 170.357C86.6007 162.709 87.9642 161.309 83.6661 155.581C82.9942 153.456 82.1431 151.322 81.0661 149.369Z" fill="url(#paint1_linear_1724_3919)"/>
|
8
|
+
<path d="M72.045 162.619C65.5619 164.533 60.5898 161.206 60.5898 161.206C60.5898 161.206 62.1918 156.059 67.7059 152.872C64.6133 151.551 62.7407 149.569 62.7407 149.569C62.7407 149.569 65.8031 145.639 71.5771 145.999C72.3871 146.022 73.1274 146.037 73.8044 146.051C79.6808 146.173 81.7091 145.821 82.1132 149.913C83.0882 151.422 83.2624 153.431 84.2925 154.811C86.9521 158.131 85.2794 159.256 81.0886 163.474C80.6114 163.955 80.0895 164.48 79.5229 165.059C75.6189 169.329 70.6864 168.629 70.6864 168.629C70.6864 168.629 70.5893 165.87 72.045 162.619Z" fill="url(#paint2_linear_1724_3919)"/>
|
9
|
+
<path d="M212.894 120.654L195.701 80.152C217.794 70.7745 247.101 82.2341 247.101 82.2341C247.101 82.2341 234.986 111.277 212.894 120.654Z" fill="url(#paint3_linear_1724_3919)"/>
|
10
|
+
<path d="M195.701 80.1524C195.701 80.1524 201.784 86.8045 207.059 99.2314C212.334 111.658 212.894 120.655 212.894 120.655L117.3 159.059L86.5591 163.417L77.1815 141.325L101.671 122.239L195.701 80.1524Z" fill="url(#paint4_linear_1724_3919)"/>
|
11
|
+
<path d="M121.539 148.569L121.188 150.782C119.569 160.998 112.801 169.66 103.28 173.701L83.606 182.052L86.5594 163.417L121.539 148.569Z" fill="url(#paint5_linear_1724_3919)"/>
|
12
|
+
<path d="M112.161 126.477L110.326 125.192C101.852 119.26 90.9202 118.111 81.3988 122.153L61.7252 130.504L77.1819 141.325L112.161 126.477Z" fill="url(#paint6_linear_1724_3919)"/>
|
13
|
+
<circle cx="159.193" cy="119.549" r="12.9508" transform="rotate(67 159.193 119.549)" fill="url(#paint7_linear_1724_3919)"/>
|
14
|
+
<circle cx="159.193" cy="119.549" r="10.3606" transform="rotate(67 159.193 119.549)" fill="url(#paint8_linear_1724_3919)"/>
|
15
|
+
<path d="M75.3708 152.414L70.8246 157.06L77.3245 157.016L97.4779 148.19L116.85 137.523L95.7196 144.048L75.3708 152.414Z" fill="#DB3E3D"/>
|
16
|
+
<path d="M137 44C136.818 45.4883 135.5 48 135.5 53.0002C133 56.0002 126.5 53.0002 127.5 50.0002C128.099 48.9721 128.501 47.0002 128.501 44.0002C130 41.4999 134.874 41.9496 137 44Z" fill="#F3A29D"/>
|
17
|
+
<path d="M152.11 178.962L164 164.5L176.525 169.059C177.69 171.217 180.284 176.599 182.079 178.814C184.323 181.582 189.23 185.969 190.9 188.528C192.236 190.575 193.161 193.036 193.456 194.01L152.11 178.962Z" fill="#1A2256"/>
|
18
|
+
<path d="M117.5 120.5C114.3 117.7 113.167 112.333 113 110L139.5 94C148.5 94 168.9 94.4 178.5 96C190.5 98 194.944 104 196.5 107.5C198.5 112 196.9 120.5 195.5 124C194.7 126 183.167 155.833 177.5 170.5L154 161C153.833 159.167 153.8 154.7 155 151.5C156.5 147.5 160 146 162 141.5C164 137 163 131 165.5 127C168 123 173 120 172 118C171.25 116.5 165.5 117.5 159 119C152.5 120.5 145 122.5 136.5 123.5C125 124.5 121.5 124 117.5 120.5Z" fill="url(#paint9_linear_1724_3919)"/>
|
19
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M51.3317 104.998C49.8211 101.44 45.7117 99.7794 42.153 101.29L41.3716 99.449C45.947 97.5068 51.2306 99.6415 53.1727 104.217C55.1149 108.792 52.9802 114.076 48.4047 116.018L47.6233 114.177C51.1819 112.666 52.8423 108.557 51.3317 104.998Z" fill="url(#paint10_linear_1724_3919)"/>
|
20
|
+
<rect x="2.41211" y="99.6909" width="36" height="48" transform="rotate(-23 2.41211 99.6909)" fill="url(#paint11_linear_1724_3919)"/>
|
21
|
+
<rect x="29.0249" y="111.208" width="6" height="6" transform="rotate(-23 29.0249 111.208)" fill="#EFEFEF"/>
|
22
|
+
<path d="M45.9537 110.137C48.3042 108.262 50.6814 106.44 53.5 105.5C56.5 104.5 53.8945 108.053 53 108.5C52.6667 108.667 52.2222 108.778 51.7778 108.889C50.8889 109.111 50 109.333 50 110C50 111 50.5 111 54 111C57.5 111 66 103 69 99.5C71.4 96.7 68.3334 93.3333 66.5 92C64.8334 94.1667 61 98.6 59 99C57.7408 99.2518 55.5786 99.2538 53.4945 99.2556C51.4408 99.2575 49.463 99.2592 48.5 99.5C47.1555 99.8361 45.0456 102.381 43.562 104.503L45.9537 110.137Z" fill="#FFBEB6"/>
|
23
|
+
<circle cx="72" cy="48" r="40" fill="#A1C3FC"/>
|
24
|
+
<path d="M67.8301 8.21539C69.177 18.8064 68.115 29.6918 63.5 31.9996C57.5001 34.9995 55.4998 24.9999 48.5 29.9996C41.5 34.9995 53.4997 49.4995 42 55.9996C39.2721 57.5414 36.1253 57.4799 32.8955 56.4439C32.3105 53.7217 32 50.8966 32 47.9996C32.0002 27.3166 47.6985 10.3007 67.8301 8.21539Z" fill="#78A9EF"/>
|
25
|
+
<path d="M104.647 24.8823C109.278 31.4102 112 39.3875 112 48.0004C112 58.498 107.953 68.0483 101.338 75.184C100.851 74.6387 100.4 74.0782 100 73.5004C95.5003 67.0005 97.0001 60.0003 92.5003 51.5004C88.0003 43.0006 81.1469 44.4999 83.5003 34.5004C84.4417 30.5005 90.5005 26.5005 103.5 25.0004C103.885 24.9561 104.267 24.9171 104.647 24.8823Z" fill="#78A9EF"/>
|
26
|
+
<path d="M57.0005 78.5004C67.5003 75.113 73.5006 58.0004 83.0005 61.0004C89.7216 63.1235 87.8564 74.7205 83.9058 86.1976C80.1451 87.3685 76.1466 88.0003 72.0005 88.0004C58.3271 88.0004 46.2574 81.1381 39.0435 70.6713C44.126 75.7253 51.1882 80.3753 57.0005 78.5004Z" fill="#78A9EF"/>
|
27
|
+
<path d="M105.5 55.5L127.5 50C128 50.5 128.685 51.5924 130.5 52.5C132.315 53.4076 134.333 53.1667 135.5 53C135 56 134.5 63.5 136.5 69.5C138.5 75.5 143.667 83.6667 146 87C144 90.5 138.5 98.5 132.5 102.5C126.5 106.5 115.667 110.5 111 112C110 110.5 107.8 106.6 107 103C106 98.5 108 93 108 91C108 89 107 88.5 107 84.5C107 81.3 108 76.1667 108.5 74C105 78 97 87.4 93 93C89 98.6 83.6667 109.333 81.5 114L55 93C55.5 92 57.6 89 62 85C67.5 80 72.5 79.5 75.5 77C78.5 74.5 80 68 85 64.5C90 61 101.5 56.5 105.5 55.5Z" fill="url(#paint12_linear_1724_3919)"/>
|
28
|
+
<path d="M139.561 43.3897C142.092 41.4126 142.53 38.0185 142.585 36.2776C142.585 36.2776 145.382 34.8301 145.146 34.1656C144.91 33.5011 140.849 28.8147 139.276 27.2133C137.247 25.1478 132.731 23.5034 129.24 24.6752C125.429 25.9549 120.419 30.788 120.855 35.6824C121.334 41.0677 127.085 44.0417 129.864 44.7007C132.643 45.3597 136.398 45.8612 139.561 43.3897Z" fill="#FFBEB6"/>
|
29
|
+
<path d="M140.202 27.3597C144.491 24.2434 144.949 17.3573 144.642 14.3038C136.048 18.6361 117.389 28.2063 111.502 31.8286C116.524 43.2518 125.836 45.1695 129.864 44.7004C129.832 43.9046 129.398 42.2543 127.917 42.0197C126.065 41.7265 122.656 39.2887 123.485 37.0478C124.315 34.8069 126.798 37.0981 128.407 35.9295C129.694 34.9946 130.504 31.6752 130.748 30.1324C132.112 30.5066 135.913 30.476 140.202 27.3597Z" fill="#23286B"/>
|
30
|
+
<path d="M136.032 33.9701C135.363 32.2263 135.962 30.349 137.413 29.792C138.541 29.3589 139.819 29.8617 140.647 30.9247C140.873 30.5984 141.107 30.3303 141.349 30.1211L141.522 29.9808C141.742 29.8179 141.938 29.6988 142.116 29.6263C141.637 28.2403 142.075 26.7932 143.182 26.3677C144.321 25.9315 145.658 26.7722 146.204 28.1933C146.75 29.6151 146.318 31.1346 145.179 31.5716C144.166 31.9604 142.995 31.3377 142.365 30.1937C142.255 30.2353 142.093 30.3279 141.891 30.4777C141.604 30.692 141.317 31.0185 141.032 31.4591L141.014 31.4889C141.096 31.6426 141.17 31.804 141.235 31.9725C141.905 33.7162 141.306 35.5936 139.854 36.1512C138.402 36.7089 136.702 35.7138 136.032 33.9701ZM143.404 26.9468C142.627 27.2445 142.301 28.3921 142.735 29.5247C143.171 30.6574 144.18 31.2916 144.957 30.9932C145.734 30.6948 146.06 29.5479 145.626 28.4153C145.192 27.2827 144.181 26.6484 143.404 26.9468ZM137.635 30.3704C136.534 30.7933 136.054 32.2982 136.611 33.7481C137.167 35.1972 138.53 35.9957 139.633 35.5736C140.733 35.1499 141.213 33.6436 140.657 32.1945C140.101 30.7454 138.736 29.9476 137.634 30.3696L137.635 30.3704Z" fill="#F7453E"/>
|
31
|
+
<path fill-rule="evenodd" clip-rule="evenodd" d="M53.8351 106.75C54.0478 108.675 53.6257 110.597 52.6813 112.235C51.5002 112 51.3303 111.753 50.7885 111.5C51.6135 110.204 52.0035 108.653 51.859 107.091C52.5002 107 53.0002 107.091 53.8351 106.75Z" fill="url(#paint13_linear_1724_3919)"/>
|
32
|
+
</g>
|
33
|
+
<defs>
|
34
|
+
<linearGradient id="paint0_linear_1724_3919" x1="129" y1="79" x2="180.286" y2="100.332" gradientUnits="userSpaceOnUse">
|
35
|
+
<stop stop-color="#1A1F59"/>
|
36
|
+
<stop offset="0.747799" stop-color="#23286B"/>
|
37
|
+
</linearGradient>
|
38
|
+
<linearGradient id="paint1_linear_1724_3919" x1="82.0002" y1="152" x2="35.0002" y2="171.5" gradientUnits="userSpaceOnUse">
|
39
|
+
<stop stop-color="#FF6827"/>
|
40
|
+
<stop offset="0.419402" stop-color="#FF9D27"/>
|
41
|
+
</linearGradient>
|
42
|
+
<linearGradient id="paint2_linear_1724_3919" x1="83.5" y1="151.5" x2="60.5" y2="162" gradientUnits="userSpaceOnUse">
|
43
|
+
<stop stop-color="#FFE7B7"/>
|
44
|
+
<stop offset="1" stop-color="#FDF516"/>
|
45
|
+
</linearGradient>
|
46
|
+
<linearGradient id="paint3_linear_1724_3919" x1="247.101" y1="82.2341" x2="204.297" y2="100.403" gradientUnits="userSpaceOnUse">
|
47
|
+
<stop offset="0.447558" stop-color="#DADBDC"/>
|
48
|
+
<stop offset="0.924927" stop-color="#E4E4E5"/>
|
49
|
+
</linearGradient>
|
50
|
+
<linearGradient id="paint4_linear_1724_3919" x1="207.059" y1="99.2314" x2="81.8703" y2="152.371" gradientUnits="userSpaceOnUse">
|
51
|
+
<stop offset="0.663941" stop-color="#DADBDC"/>
|
52
|
+
<stop offset="1" stop-color="#E0E1E1"/>
|
53
|
+
</linearGradient>
|
54
|
+
<linearGradient id="paint5_linear_1724_3919" x1="110" y1="174.5" x2="117.07" y2="161.743" gradientUnits="userSpaceOnUse">
|
55
|
+
<stop stop-color="#E74846"/>
|
56
|
+
<stop offset="1" stop-color="#D03231"/>
|
57
|
+
</linearGradient>
|
58
|
+
<linearGradient id="paint6_linear_1724_3919" x1="88.8105" y1="121.044" x2="98.8015" y2="144.764" gradientUnits="userSpaceOnUse">
|
59
|
+
<stop stop-color="#E74846"/>
|
60
|
+
<stop offset="1" stop-color="#D03231"/>
|
61
|
+
</linearGradient>
|
62
|
+
<linearGradient id="paint7_linear_1724_3919" x1="146.242" y1="106.599" x2="158.394" y2="137.847" gradientUnits="userSpaceOnUse">
|
63
|
+
<stop stop-color="#E8B73F"/>
|
64
|
+
<stop offset="1" stop-color="#CF9F36"/>
|
65
|
+
</linearGradient>
|
66
|
+
<linearGradient id="paint8_linear_1724_3919" x1="159.193" y1="109.189" x2="159.193" y2="129.91" gradientUnits="userSpaceOnUse">
|
67
|
+
<stop stop-color="#F3F3F3" stop-opacity="0"/>
|
68
|
+
<stop offset="1" stop-color="#F3F3F3"/>
|
69
|
+
</linearGradient>
|
70
|
+
<linearGradient id="paint9_linear_1724_3919" x1="174" y1="87.5" x2="124" y2="133.5" gradientUnits="userSpaceOnUse">
|
71
|
+
<stop offset="0.290891" stop-color="#89B3F4"/>
|
72
|
+
<stop offset="1" stop-color="#4F86DB"/>
|
73
|
+
</linearGradient>
|
74
|
+
<linearGradient id="paint10_linear_1724_3919" x1="45.5139" y1="97.6907" x2="52.547" y2="114.26" gradientUnits="userSpaceOnUse">
|
75
|
+
<stop stop-color="#F6F6F6"/>
|
76
|
+
<stop offset="0.394668" stop-color="#D7D8D9"/>
|
77
|
+
</linearGradient>
|
78
|
+
<linearGradient id="paint11_linear_1724_3919" x1="20.4121" y1="99.6909" x2="20.4121" y2="147.691" gradientUnits="userSpaceOnUse">
|
79
|
+
<stop stop-color="#EDEDED"/>
|
80
|
+
<stop offset="0.40059" stop-color="#D7D8D9"/>
|
81
|
+
</linearGradient>
|
82
|
+
<linearGradient id="paint12_linear_1724_3919" x1="78.5" y1="114" x2="148.317" y2="60.9451" gradientUnits="userSpaceOnUse">
|
83
|
+
<stop stop-color="#1A1F59"/>
|
84
|
+
<stop offset="0.682286" stop-color="#23286B"/>
|
85
|
+
</linearGradient>
|
86
|
+
<linearGradient id="paint13_linear_1724_3919" x1="45.5125" y1="97.6916" x2="52.5456" y2="114.261" gradientUnits="userSpaceOnUse">
|
87
|
+
<stop stop-color="#F6F6F6"/>
|
88
|
+
<stop offset="0.394668" stop-color="#D7D8D9"/>
|
89
|
+
</linearGradient>
|
90
|
+
<clipPath id="clip0_1724_3919">
|
91
|
+
<rect width="250" height="200" fill="white"/>
|
92
|
+
</clipPath>
|
93
|
+
</defs>
|
94
|
+
</svg>
|