@devtron-labs/devtron-fe-common-lib 1.5.3 → 1.5.4-beta-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.
@@ -2,7 +2,7 @@ import { j as t, J as $ } from "./@vendor-CwAQS8iU.js";
2
2
  import A, { forwardRef as E } from "react";
3
3
  import L, { getDefaultRegistry as D } from "@rjsf/core";
4
4
  import H from "@rjsf/validator-ajv8";
5
- import { T as v, c as U, a as k, i as J, b as w, d as S } from "./@code-editor-ZZG6aOfw.js";
5
+ import { T as v, c as U, a as k, i as J, b as w, d as S } from "./@code-editor-BSi0zGBt.js";
6
6
  import M, { components as B } from "react-select";
7
7
  import { ReactComponent as W } from "./assets/ic-chevron-down.fc70d7a7.svg";
8
8
  import { getUiOptions as C, getTemplate as I, getSubmitButtonOptions as V, ADDITIONAL_PROPERTY_FLAG as P, errorId as q, englishStringTranslator as K, TranslatableString as Y, titleId as z, canExpand as G, deepEquals as Q } from "@rjsf/utils";
@@ -138,4 +138,9 @@ export declare const getSanitizedIframe: (iframeString: string) => string;
138
138
  export declare const getIframeWithDefaultAttributes: (iframeString: string, defaultName?: string) => string;
139
139
  export declare const getStageTitle: (stageType: DeploymentNodeType) => string;
140
140
  export declare const getGoLangFormattedDateWithTimezone: (dateFormat: string) => string;
141
+ /**
142
+ *
143
+ * @returns SHA-256 hashed value
144
+ */
145
+ export declare const getHashedValue: (value: string) => Promise<string | null>;
141
146
  export {};
@@ -79,7 +79,7 @@ export declare enum SelectPickerVariantType {
79
79
  DEFAULT = "default",
80
80
  BORDER_LESS = "border-less"
81
81
  }
82
- export type SelectPickerProps<OptionValue = number | string, IsMulti extends boolean = false> = Pick<SelectProps<OptionValue, IsMulti>, 'name' | 'classNamePrefix' | 'options' | 'value' | 'onChange' | 'isSearchable' | 'isClearable' | 'hideSelectedOptions' | 'controlShouldRenderValue' | 'closeMenuOnSelect' | 'isDisabled' | 'isLoading' | 'required' | 'isOptionDisabled' | 'placeholder' | 'menuPosition' | 'getOptionLabel' | 'getOptionValue' | 'isOptionSelected' | 'menuIsOpen' | 'onMenuOpen' | 'onMenuClose' | 'autoFocus' | 'onBlur' | 'onKeyDown' | 'formatOptionLabel' | 'onInputChange' | 'inputValue'> & Partial<Pick<SelectProps<OptionValue, IsMulti>, 'renderMenuListFooter' | 'shouldRenderCustomOptions' | 'renderCustomOptions' | 'icon' | 'showSelectedOptionIcon' | 'renderOptionsFooter' | 'shouldRenderTextArea'>> & Required<Pick<SelectProps<OptionValue, IsMulti>, 'inputId'>> & Partial<Pick<CreatableProps<SelectPickerOptionType<OptionValue>, IsMulti, GroupBase<SelectPickerOptionType<OptionValue>>>, 'onCreateOption' | 'formatCreateLabel' | 'menuPortalTarget'>> & {
82
+ export type SelectPickerProps<OptionValue = number | string, IsMulti extends boolean = false> = Pick<SelectProps<OptionValue, IsMulti>, 'name' | 'classNamePrefix' | 'options' | 'value' | 'onChange' | 'isSearchable' | 'isClearable' | 'hideSelectedOptions' | 'controlShouldRenderValue' | 'closeMenuOnSelect' | 'isDisabled' | 'isLoading' | 'required' | 'isOptionDisabled' | 'placeholder' | 'menuPosition' | 'getOptionLabel' | 'getOptionValue' | 'isOptionSelected' | 'menuIsOpen' | 'onMenuOpen' | 'onMenuClose' | 'autoFocus' | 'onBlur' | 'onKeyDown' | 'formatOptionLabel' | 'onInputChange' | 'inputValue' | 'filterOption'> & Partial<Pick<SelectProps<OptionValue, IsMulti>, 'renderMenuListFooter' | 'shouldRenderCustomOptions' | 'renderCustomOptions' | 'icon' | 'showSelectedOptionIcon' | 'renderOptionsFooter' | 'shouldRenderTextArea'>> & Required<Pick<SelectProps<OptionValue, IsMulti>, 'inputId'>> & Partial<Pick<CreatableProps<SelectPickerOptionType<OptionValue>, IsMulti, GroupBase<SelectPickerOptionType<OptionValue>>>, 'onCreateOption' | 'formatCreateLabel' | 'menuPortalTarget'>> & {
83
83
  /**
84
84
  * Error message for the select
85
85
  */
@@ -26,7 +26,7 @@ export interface ThemeConfigType {
26
26
  themePreference: ThemePreferenceType;
27
27
  }
28
28
  export interface ThemeContextType extends ThemeConfigType {
29
- handleSelectedThemeChange: (updatedThemePreference: ThemePreferenceType) => void;
29
+ handleThemePreferenceChange: (updatedThemePreference: ThemePreferenceType) => void;
30
30
  }
31
31
  export interface ThemeProviderProps {
32
32
  children: ReactNode;
@@ -1,4 +1,5 @@
1
1
  import { AppThemeType, ThemePreferenceType, ThemeConfigType } from './types';
2
2
  export declare const getAppThemeForAutoPreference: () => AppThemeType;
3
- export declare const getThemeConfigFromLocalStorage: () => ThemeConfigType;
4
3
  export declare const setThemePreferenceInLocalStorage: (themePreference: ThemePreferenceType) => void;
4
+ export declare const logThemeToAnalytics: ({ appTheme, themePreference }: ThemeConfigType) => void;
5
+ export declare const getThemeConfigFromLocalStorage: () => ThemeConfigType;
@@ -116,6 +116,7 @@ export interface iNode extends Node {
116
116
  childNodes: iNodes;
117
117
  type: NodeType;
118
118
  status: string;
119
+ pNode?: iNode;
119
120
  }
120
121
  export interface ResourceTree {
121
122
  conditions: any;
@@ -664,19 +665,12 @@ interface CommonTabArgsType {
664
665
  * Title for the tab
665
666
  */
666
667
  title?: string;
667
- isDeleted?: boolean;
668
668
  /**
669
669
  * Type for the tab
670
670
  *
671
671
  * Note: Fixed tabs are always places before dynamic tabs
672
672
  */
673
673
  type: 'fixed' | 'dynamic';
674
- /**
675
- * Path of the icon for the tab
676
- *
677
- * @default ''
678
- */
679
- iconPath?: string;
680
674
  /**
681
675
  * Dynamic title for the tab
682
676
  *
@@ -0,0 +1,125 @@
1
+ <svg data-style-override="false" width="250" height="200" viewBox="0 0 250 200" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <style>
3
+ .message-small {
4
+ animation: appear-small 0.5s ease-out;
5
+ transform-origin: center;
6
+ transform-box: fill-box;
7
+ }
8
+
9
+ @keyframes appear-small {
10
+ 0% {
11
+ transform: translateX(-20px);
12
+ opacity: 0;
13
+ }
14
+ 50% {
15
+ transform: translateX(-20px);
16
+ opacity: 0;
17
+ }
18
+ 80% {
19
+ transform: translateX(5px);
20
+ opacity: 1;
21
+ }
22
+ 100% {
23
+ transform: translateX(0px);
24
+ opacity: 1;
25
+ }
26
+ }
27
+
28
+ .message-big {
29
+ animation: appear-big 0.25s ease-out;
30
+ transform-origin: center;
31
+ transform-box: fill-box;
32
+ }
33
+
34
+ @keyframes appear-big {
35
+ 0% {
36
+ transform: translateX(20px);
37
+ opacity: 0;
38
+ }
39
+ 80% {
40
+ transform: translateX(-5px);
41
+ opacity: 1;
42
+ }
43
+ 100% {
44
+ transform: translateX(0px);
45
+ opacity: 1;
46
+ }
47
+ }
48
+ </style>
49
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M10 93.3552H181.587V95.7891H12.4339V198.011H10V93.3552Z" fill="url(#paint0_linear_2664_5043)"/>
50
+ <rect x="67.1963" y="89.7046" width="46.2432" height="3.65078" fill="#CCD2D9"/>
51
+ <rect x="113.439" y="89.7046" width="41.3755" height="3.65078" fill="#DDE2E6"/>
52
+ <g class="message-small">
53
+ <path d="M66.7085 16.6885H94.4274L103.487 34.9424H75.7678L66.7085 16.6885Z" fill="#444ED1"/>
54
+ <path d="M81.66 21.5208L80.9908 22.5711L85.2776 25.3022L83.6047 27.9281L84.9237 28.7685L86.5966 26.1425L90.8835 28.8735L91.5527 27.8231L87.2658 25.0921L88.9388 22.4661L87.6197 21.6258L85.9468 24.2518L81.66 21.5208Z" fill="white"/>
55
+ </g>
56
+ <g class="message-big">
57
+ <path d="M16.084 23.9902H53.0425L65.1217 48.3288H28.1631L16.084 23.9902Z" fill="#343B9E"/>
58
+ <path d="M34.8026 30.4331L33.9104 31.8336L39.6262 35.475L37.3956 38.9763L39.1543 40.0967L41.3849 36.5954L47.1007 40.2368L47.9929 38.8362L42.2771 35.1949L44.5077 31.6936L42.749 30.5732L40.5184 34.0745L34.8026 30.4331Z" fill="white"/>
59
+ </g>
60
+ <path d="M49.6719 54.4136H104.434L121.957 89.7045H67.1956L49.6719 54.4136Z" fill="url(#paint1_linear_2664_5043)"/>
61
+ <path d="M53.3223 56.8467H103.216L119.523 89.7037H69.6291L53.3223 56.8467Z" fill="url(#paint2_linear_2664_5043)"/>
62
+ <path d="M80.2346 65.5449L79.0301 67.4356L86.7464 72.3515L83.7351 77.0782L86.1094 78.5908L89.1206 73.864L96.837 78.7799L98.0415 76.8892L90.3252 71.9733L93.3364 67.2466L90.9622 65.734L87.9509 70.4608L80.2346 65.5449Z" fill="white"/>
63
+ <path d="M194.973 64.1487H240L219.312 129.863H174.286L194.973 64.1487Z" fill="url(#paint3_radial_2664_5043)"/>
64
+ <rect x="152.381" y="123.778" width="66.931" height="6.08464" fill="url(#paint4_linear_2664_5043)"/>
65
+ <path d="M216.879 129.863H219.313L225.398 199.228H222.964L216.879 129.863Z" fill="url(#paint5_linear_2664_5043)"/>
66
+ <path d="M189.444 52.7293C189.238 48.8636 187.806 45.1702 187.063 44.0687C188.714 42.9552 191.331 41.2627 194.365 40.4181C194.927 42.4402 196.406 46.4313 198.812 48.8118C198.275 51.576 196.996 53.2402 194.973 53.8042C192.951 54.3669 191.109 54.0088 189.444 52.7293Z" fill="#F3A29D"/>
67
+ <path d="M145.079 83.6194C147.513 84.2279 151.164 83.6194 154.814 83.011L156.64 92.1379C154.003 90.1097 151.042 88.4871 148.121 88.4871C144.372 88.4871 140.617 88.9944 137.169 87.2702C134.735 86.0533 132.247 84.6706 130.476 84.2279C128.042 83.6194 126.857 84.0837 125 83.6194C128.245 80.7799 129.259 78.7517 131.084 78.7517C132.91 78.7517 136.56 80.5771 137.777 81.1856C140.211 82.4025 142.645 83.011 145.079 83.6194Z" fill="#FAB2AC"/>
68
+ <path d="M120.741 181.582H134.127C135.952 180.162 139.968 176.958 141.428 173.064C143.862 166.573 143.254 163.937 143.254 162.111C143.254 162.111 146.834 153.551 147.513 148.117C148.122 143.249 146.296 135.947 146.296 133.514C146.296 131.08 146.905 129.254 147.513 128.037C148.122 126.82 148.73 126.212 150.555 125.603C152.381 124.995 170.635 122.561 181.587 121.344C192.539 120.127 196.799 118.91 201.058 114.651C204.465 111.244 202.883 101.062 201.666 96.3972C192.742 97.6141 170.513 100.656 152.989 103.09C131.085 106.133 129.868 106.741 126.825 111.609C123.783 116.477 123.783 138.99 123.175 145.683C122.688 151.037 121.349 171.847 120.741 181.582Z" fill="url(#paint6_linear_2664_5043)"/>
69
+ <path d="M202.883 116.477C207.264 110.635 204.912 98.2226 203.492 93.9634C186.252 96.6001 150.312 104.916 142.037 107.35C131.693 110.392 129.868 114.043 129.259 116.477C128.651 118.91 128.651 121.344 129.868 124.995C131.084 128.646 138.386 145.683 141.428 151.767C143.862 156.635 152.178 173.672 156.031 181.582H170.635C171.852 178.54 173.799 170.752 171.852 163.937C169.418 155.418 164.55 154.81 163.941 151.767C163.333 148.725 165.158 145.683 163.333 140.815C161.508 135.947 157.857 132.297 157.857 130.471C157.857 128.646 159.682 127.429 162.116 126.82C164.55 126.212 172.46 125.603 179.153 124.995C185.846 124.387 197.407 123.778 202.883 116.477Z" fill="url(#paint7_linear_2664_5043)"/>
70
+ <path d="M139.603 85.4452C142.037 86.0536 146.296 85.8508 149.947 86.0536L152.381 95.7891C149.744 93.7608 143.74 89.7044 140.82 89.7044C137.169 89.7044 136.561 90.9213 134.127 90.9213C133.518 90.9213 132.301 90.9213 129.867 89.7044C127.434 88.4875 125 85.4452 123.174 85.4452C121.349 85.4452 119.524 87.879 117.698 88.4875C116.238 88.9743 114.25 88.6903 113.439 88.4875C116.684 85.648 121.957 79.969 123.783 79.969C125.608 79.969 129.259 81.7944 130.476 82.4028C132.91 83.6198 137.169 84.8367 139.603 85.4452Z" fill="#FFBEB6"/>
71
+ <path d="M157.856 99.4396L153.597 82.4026C157.248 82.6054 166.497 81.7941 174.285 76.9264C184.02 70.8418 184.02 61.7148 188.888 55.6302C192.782 50.7625 197.001 48.7343 198.623 48.3286C201.057 50.3568 206.534 55.6302 208.967 60.4979C212.01 66.5825 212.618 70.2333 215.052 76.3179C217.486 82.4026 222.354 87.2703 222.962 94.5719C223.449 100.413 220.325 105.119 218.703 106.741C218.5 107.35 215.66 108.445 205.925 107.958C193.756 107.35 187.671 100.657 176.719 99.4396C167.957 98.466 160.493 99.0339 157.856 99.4396Z" fill="url(#paint8_linear_2664_5043)"/>
72
+ <path d="M154.206 106.132L149.947 86.0531C156.64 86.0531 166.811 86.7477 174.285 83.0108C178.545 80.8811 180.37 76.3177 181.587 72.0584C182.644 68.3582 184.021 58.6722 189.497 52.5876C193.878 47.7199 198.624 46.5029 200.449 46.5029C201.666 52.9932 204.1 68.651 204.1 79.36C204.1 92.7462 202.883 98.8308 200.449 101.265C198.015 103.699 194.973 106.132 188.28 106.132C181.587 106.132 179.762 103.699 174.894 103.699C170.026 103.699 168.809 106.741 162.725 107.349C157.857 107.836 155.017 106.741 154.206 106.132Z" fill="url(#paint9_linear_2664_5043)"/>
73
+ <path d="M180.653 25.1922C179.153 27.0323 178.242 29.5681 178.119 32.2696C178.081 33.117 178.423 33.3973 178.225 34.8061C178.035 36.1558 177.716 37.8142 177.265 39.7797L180.03 40.3661C182.299 43.6491 184.953 45.3345 187.989 45.4257C191.024 45.5143 193.339 44.5272 194.931 42.4603C198.239 37.9815 198.145 33.7642 194.65 29.8101C191.156 25.8559 186.49 24.3166 180.653 25.1922Z" fill="#FAB6AF"/>
74
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M177.664 33.8618C177.664 33.8617 177.663 33.8616 177.936 33.7255C178.208 33.5895 178.208 33.5894 178.208 33.5893L178.208 33.5891L178.207 33.5888C178.207 33.5887 178.207 33.5886 178.207 33.5886L178.208 33.5895L178.211 33.596C178.215 33.6025 178.22 33.6129 178.228 33.6269C178.244 33.6548 178.269 33.6963 178.303 33.7469C178.371 33.8486 178.472 33.9841 178.607 34.1189C178.878 34.3899 179.262 34.6382 179.761 34.6382C180.26 34.6382 180.644 34.3899 180.915 34.1189C181.05 33.9841 181.151 33.8486 181.219 33.7469C181.253 33.6963 181.278 33.6548 181.294 33.6269C181.302 33.6129 181.307 33.6025 181.311 33.596L181.314 33.5895L181.314 33.5893C181.314 33.5894 181.314 33.5895 181.586 33.7255C181.858 33.8616 181.858 33.8617 181.858 33.8618L181.858 33.8621L181.858 33.8627L181.857 33.8642L181.855 33.8685L181.848 33.8824C181.842 33.8937 181.833 33.9094 181.822 33.9287C181.8 33.9674 181.768 34.0209 181.725 34.0844C181.641 34.2109 181.515 34.3796 181.345 34.5491C181.008 34.8865 180.479 35.2467 179.761 35.2467C179.043 35.2467 178.514 34.8865 178.177 34.5491C178.007 34.3796 177.881 34.2109 177.797 34.0844C177.754 34.0209 177.722 33.9674 177.7 33.9287C177.689 33.9094 177.68 33.8937 177.674 33.8824L177.667 33.8685L177.665 33.8642L177.664 33.8627L177.664 33.8621L177.664 33.8618Z" fill="#22276D"/>
75
+ <path d="M179.153 24.5985C180.37 22.7731 181.587 21.5562 184.629 20.3393C187.671 19.1224 198.015 17.9054 203.492 23.3815C204.72 24.8266 205.362 26.3399 205.829 27.9349C205.89 28.0715 205.952 28.2121 206.014 28.3562C206.218 28.8255 206.436 29.3449 206.664 29.889C206.859 30.3543 207.062 30.8385 207.27 31.3239C208.184 33.4567 209.235 35.7016 210.422 37.1862C211.495 38.5269 213.296 40.1152 215.092 41.6985C215.299 41.8806 215.505 42.0627 215.71 42.2443C216.699 43.1188 217.657 43.9806 218.444 44.7778C219.226 45.5693 219.865 46.3208 220.192 46.9756C220.706 48.0033 220.913 49.2684 220.969 50.4128C221.026 51.561 220.934 52.6172 220.829 53.2463L220.228 53.1463C220.326 52.5585 220.416 51.5459 220.362 50.4429C220.307 49.336 220.108 48.1672 219.648 47.2477C219.367 46.6856 218.789 45.9921 218.011 45.2054C217.24 44.4244 216.296 43.5748 215.307 42.7C215.102 42.5184 214.894 42.3355 214.686 42.1519L214.685 42.151C212.901 40.5782 211.055 38.9517 209.947 37.5663C208.725 36.039 207.664 33.7803 206.764 31.6884C207.126 33.1135 207.58 34.6012 208.359 36.1592C210.17 39.7807 213.273 42.3371 215.536 44.2011C216.315 44.8425 216.994 45.402 217.486 45.8946C219.312 47.72 219.92 50.7623 219.921 53.1963L199.841 58.6724C199.841 58.2668 199.841 55.6302 199.232 53.8048C198.746 52.3445 197.869 51.2737 196.993 50.2028C195.679 48.5964 194.364 46.9901 194.365 44.0694C194.365 43.6505 194.392 43.2497 194.44 42.8649C194.052 43.9504 193.864 45.1103 194.057 46.4601C194.316 48.2677 195.136 49.2568 196.021 50.3232C196.13 50.4544 196.24 50.5875 196.35 50.7227C196.85 51.3388 197.347 52.0118 197.716 52.8882C198.085 53.7664 198.319 54.8339 198.319 56.2386C198.319 56.7931 198.093 57.451 197.836 58.0216C197.575 58.6015 197.262 59.1332 197.051 59.4497L196.545 59.1122C196.74 58.8201 197.035 58.3175 197.281 57.7717C197.531 57.2166 197.711 56.6576 197.711 56.2386C197.711 54.9052 197.489 53.9191 197.155 53.124C196.82 52.3272 196.366 51.7072 195.878 51.1064C195.771 50.9753 195.663 50.845 195.554 50.714C194.666 49.6464 193.739 48.5315 193.455 46.5462C193.138 44.3264 193.777 42.5854 194.627 40.9619C194.843 40.5496 195.078 40.1359 195.315 39.7235C195.46 39.3666 195.61 39.0236 195.755 38.6914C196.544 36.8836 197.193 35.3963 196.191 33.7254C195.147 31.9861 193.001 32.1236 190.506 32.2833C188.637 32.403 186.572 32.5352 184.63 31.9C182.195 31.104 180.847 29.5452 180.37 27.6411C179.742 27.871 178.545 28.8578 178.301 30.6832C177.635 27.6074 178.274 26.3407 179.101 24.7009L179.153 24.5985Z" fill="#E94A47"/>
76
+ <path d="M140.212 198.619L134.127 181.582H120.741C118.916 183.205 114.656 186.815 112.222 188.275C109.18 190.101 103.095 192.535 100.662 194.36C98.7145 195.82 97.0108 197.808 96.4023 198.619H140.212Z" fill="#1A2256"/>
77
+ <path d="M176.719 198.619L170.634 181.582H156.031C155.017 183.002 152.259 186.328 149.338 188.275C145.687 190.709 142.037 191.318 138.386 193.752C136.575 194.959 133.924 197.402 132.91 198.619H176.719Z" fill="#28306D"/>
78
+ <g class="message-small">
79
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M97.2266 20.0632C94.4666 20.0632 91.2799 18.0331 90.1135 15.5317C88.947 13.0303 90.2404 11.0002 93.0004 11.0002C95.7604 11.0002 98.947 13.0303 100.113 15.5317C101.28 18.0331 99.9866 20.0632 97.2266 20.0632Z" fill="#F33E3E"/>
80
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M95.7471 16.8911C96.0233 16.8911 96.3417 17.094 96.4584 17.3443C96.5751 17.5945 96.4459 17.7974 96.1697 17.7974C95.8936 17.7974 95.5751 17.5945 95.4584 17.3443C95.3417 17.094 95.471 16.8911 95.7471 16.8911ZM94.0566 13.2659C94.3328 13.2659 94.6512 13.4688 94.7679 13.719L95.6132 15.5316C95.7299 15.7819 95.6006 15.9848 95.3245 15.9848C95.0484 15.9848 94.7299 15.7819 94.6132 15.5316L93.7679 13.719C93.6512 13.4688 93.7805 13.2659 94.0566 13.2659Z" fill="white"/>
81
+ </g>
82
+ <defs>
83
+ <linearGradient id="paint0_linear_2664_5043" x1="164.55" y1="94.5721" x2="11.2169" y2="198.011" gradientUnits="userSpaceOnUse">
84
+ <stop stop-color="#438EFE"/>
85
+ <stop offset="1" stop-color="#A1C3FC"/>
86
+ </linearGradient>
87
+ <linearGradient id="paint1_linear_2664_5043" x1="121.957" y1="75.5881" x2="49.6719" y2="75.5881" gradientUnits="userSpaceOnUse">
88
+ <stop stop-color="#F5F5F6"/>
89
+ <stop offset="0.311642" stop-color="#D6D7D8"/>
90
+ </linearGradient>
91
+ <linearGradient id="paint2_linear_2664_5043" x1="53.3223" y1="73.773" x2="119.561" y2="72.7374" gradientUnits="userSpaceOnUse">
92
+ <stop stop-color="#23286B"/>
93
+ <stop offset="1" stop-color="#1D225F"/>
94
+ </linearGradient>
95
+ <radialGradient id="paint3_radial_2664_5043" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(187.063 64.1487) rotate(63.8609) scale(73.2005 56.2783)">
96
+ <stop stop-color="#E2E2E3"/>
97
+ <stop offset="1" stop-color="#F5F5F6"/>
98
+ </radialGradient>
99
+ <linearGradient id="paint4_linear_2664_5043" x1="219.312" y1="127.428" x2="152.381" y2="127.428" gradientUnits="userSpaceOnUse">
100
+ <stop stop-color="#F5F5F6"/>
101
+ <stop offset="0.311642" stop-color="#D6D7D8"/>
102
+ </linearGradient>
103
+ <linearGradient id="paint5_linear_2664_5043" x1="213.229" y1="165.154" x2="229.049" y2="165.154" gradientUnits="userSpaceOnUse">
104
+ <stop offset="0.290963" stop-color="#F5F5F6"/>
105
+ <stop offset="0.627253" stop-color="#D6D7D8"/>
106
+ </linearGradient>
107
+ <linearGradient id="paint6_linear_2664_5043" x1="162.116" y1="97.0057" x2="161.928" y2="181.582" gradientUnits="userSpaceOnUse">
108
+ <stop stop-color="#1479F2"/>
109
+ <stop offset="1" stop-color="#2F84F7"/>
110
+ </linearGradient>
111
+ <linearGradient id="paint7_linear_2664_5043" x1="167.134" y1="93.9634" x2="167.134" y2="181.582" gradientUnits="userSpaceOnUse">
112
+ <stop stop-color="#428DFC"/>
113
+ <stop offset="0.311461" stop-color="#438FFF"/>
114
+ <stop offset="1" stop-color="#428DFC"/>
115
+ </linearGradient>
116
+ <linearGradient id="paint8_linear_2664_5043" x1="198.659" y1="108.318" x2="209.79" y2="50.304" gradientUnits="userSpaceOnUse">
117
+ <stop stop-color="#171B4D"/>
118
+ <stop offset="0.683307" stop-color="#1D225F"/>
119
+ </linearGradient>
120
+ <linearGradient id="paint9_linear_2664_5043" x1="204.101" y1="107.466" x2="157.18" y2="41.1651" gradientUnits="userSpaceOnUse">
121
+ <stop offset="0.0620193" stop-color="#2A318C"/>
122
+ <stop offset="0.828999" stop-color="#1D225F"/>
123
+ </linearGradient>
124
+ </defs>
125
+ </svg>
@@ -0,0 +1,76 @@
1
+ <!--
2
+ - Copyright (c) 2024. Devtron Inc.
3
+ -
4
+ - Licensed under the Apache License, Version 2.0 (the "License");
5
+ - you may not use this file except in compliance with the License.
6
+ - You may obtain a copy of the License at
7
+ -
8
+ - http://www.apache.org/licenses/LICENSE-2.0
9
+ -
10
+ - Unless required by applicable law or agreed to in writing, software
11
+ - distributed under the License is distributed on an "AS IS" BASIS,
12
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ - See the License for the specific language governing permissions and
14
+ - limitations under the License.
15
+ -->
16
+
17
+ <svg data-style-override="false" width="250" height="200" viewBox="0 0 250 200" fill="none" xmlns="http://www.w3.org/2000/svg">
18
+ <style>
19
+ .gear-big {
20
+ animation: rotate-clockwise 5s infinite alternate ease-in-out;
21
+ transform-origin: center;
22
+ transform-box: fill-box;
23
+ }
24
+
25
+ @keyframes rotate-clockwise {
26
+ 0% {
27
+ transform: rotate(0deg);
28
+ }
29
+ 100% {
30
+ transform: rotate(720deg);
31
+ }
32
+ }
33
+
34
+ .gear-small {
35
+ animation: rotate-counter-clockwise 5s infinite alternate ease-in-out;
36
+ transform-origin: center;
37
+ transform-box: fill-box;
38
+ }
39
+
40
+ @keyframes rotate-counter-clockwise {
41
+ 0% {
42
+ transform: rotate(720deg);
43
+ }
44
+ 100% {
45
+ transform: rotate(0deg);
46
+ }
47
+ }
48
+ </style>
49
+ <path d="M65.5601 191.308C65.5601 191.192 66.7131 188.02 68.0981 184.213L70.6361 177.291L77.0961 177.118L83.4991 176.945L86.2671 179.252C88.5751 181.214 99.0631 186.799 100.399 187.559C101.29 188.065 102.466 189.353 103.925 191.423C78.3481 191.385 65.5601 191.346 65.5601 191.308V191.308Z" fill="#80AEF2"/>
50
+ <path d="M32 191.308C32 191.192 33.154 188.02 34.538 184.213L37.076 177.291L43.536 177.118L49.939 176.945L52.708 179.252C55.015 181.214 65.503 186.799 66.84 187.559C67.73 188.065 68.906 189.353 70.365 191.423C44.788 191.385 32 191.346 32 191.308Z" fill="#94BBF8"/>
51
+ <path d="M75.655 109.836C76.745 112.994 77.481 115.734 77.863 118.056C78.243 120.377 80.381 140.211 84.274 177.556H66.296C64.852 174.938 64.13 173.099 64.13 172.038C64.13 170.448 65.043 168.268 65.043 165.97C65.043 164.438 63.009 159.147 58.939 150.099L62.87 110.75L75.655 109.836V109.836Z" fill="#1D225F"/>
52
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M50.5541 177.555H33.7601C33.3601 176.17 32.9681 174.301 32.5851 171.949C31.8351 167.161 32.4051 163.989 35.6351 157.413C38.8651 150.895 40.5011 147.341 40.5011 143.649C40.5591 137.881 41.7231 132.333 44.7811 126.334C47.1451 121.604 48.2761 121.248 48.5061 118.364L48.9261 112.162H70.0041C70.5161 113.595 70.7001 116.237 70.5541 120.087C70.4091 123.937 63.7421 143.093 50.5531 177.555H50.5541Z" fill="url(#paint0_linear_2664_5084)"/>
53
+ <path d="M95.9399 50.818L112.78 29.988H132.971L115.532 50.818H95.9399Z" fill="#98BDF9"/>
54
+ <path d="M118.14 27.384C119.518 27.384 120.646 28.454 120.737 29.809L120.743 29.988H120.165C120.165 28.869 119.258 27.963 118.14 27.963C117.021 27.963 116.115 28.869 116.115 29.988C116.115 31.05 116.933 31.922 117.974 32.006L118.14 32.013V32.591C116.702 32.591 115.536 31.426 115.536 29.988C115.536 28.55 116.702 27.384 118.14 27.384V27.384ZM125.083 27.384C126.461 27.384 127.589 28.454 127.681 29.809L127.687 29.988H127.108C127.108 28.869 126.202 27.963 125.083 27.963C123.965 27.963 123.058 28.869 123.058 29.988C123.058 31.05 123.876 31.922 124.917 32.006L125.083 32.013V32.591C123.645 32.591 122.479 31.426 122.479 29.988C122.479 28.55 123.645 27.384 125.083 27.384V27.384Z" fill="#2174DB"/>
55
+ <path d="M94.4722 54.8291C97.2792 53.8671 100.026 52.5301 102.714 50.8181H109.585C107.21 52.9881 105.613 54.5241 104.794 55.4281C103.974 56.3311 102.285 58.0661 99.7262 60.6331C98.6352 66.4141 97.4722 68.8431 96.2392 67.9181C94.3892 66.5321 88.3002 57.0211 94.4722 54.8281V54.8291Z" fill="#F3A29D"/>
56
+ <path d="M98.2542 60.6541C102.617 58.9861 105.433 57.7971 106.701 57.0871C108.201 56.2221 108.778 55.4141 110.508 51.7801C110.738 51.3191 111.2 49.4151 111.604 47.6271C112.527 43.0701 114.027 43.3011 114.142 47.9731C114.2 49.2431 114.488 50.3961 114.834 50.5111C115.122 50.6271 116.795 49.0111 118.468 46.9351C120.141 44.8581 121.756 43.1851 122.044 43.1851C122.736 43.1851 122.736 48.4921 121.987 50.3381C121.698 51.2031 117.257 56.0481 112.123 61.1821C108.701 64.6051 103.692 69.2501 97.0972 75.1191L98.2542 60.6541V60.6541Z" fill="#FAB6AF"/>
57
+ <path d="M78.5812 35.7741C79.3532 32.6881 80.1242 30.7591 80.8962 29.9871C79.7392 28.8301 78.5812 27.6731 76.2662 26.5161C75.4962 28.0591 73.9522 29.6021 71.6382 31.1451C71.6382 33.4591 72.4092 35.0021 73.9522 35.7741C75.4952 36.5451 77.0382 36.5451 78.5822 35.7741H78.5812Z" fill="#F3A29D"/>
58
+ <path d="M49.3081 112.98C46.9431 112.806 43.0781 111.999 40.8281 111.249L36.6181 109.864L36.5031 105.538C36.2141 93.5981 37.0801 84.8881 39.7911 73.7561C43.4821 58.4701 54.0962 42.8391 66.9592 33.6671C71.9192 30.0911 72.0351 30.0911 73.4771 32.5141C74.1111 33.6671 75.4371 34.8211 76.3611 35.1671L78.5221 35.7611C75.4761 65.0851 76.6522 89.3911 82.0532 108.678C80.8962 109.836 80.1071 110.36 79.2451 110.73C78.2061 111.133 76.8801 111.537 76.1881 111.595C75.4951 111.653 73.1881 112.114 70.9381 112.633C66.7281 113.556 57.5561 113.729 49.3081 112.979V112.98Z" fill="url(#paint1_linear_2664_5084)"/>
59
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M94.4721 54.8281L96.2391 66.1391L76.2671 68.7841L77.3731 53.1311C79.5141 54.8661 81.7171 55.9071 83.9811 56.2541C86.2441 56.6021 89.7411 56.1261 94.4711 54.8281H94.4721Z" fill="#D6D7D8"/>
60
+ <path d="M98.2541 60.653L103.157 83.798C102.589 84.955 101.147 85.727 98.8331 86.112C93.6251 86.691 88.4181 84.376 82.0531 84.376C75.6881 84.376 75.9631 88.426 66.7051 84.956C60.5331 82.641 58.0251 72.226 59.1821 53.71L77.2361 51.98C77.1581 57.762 77.8911 61.232 79.4341 62.389C80.9461 63.523 87.0031 62.99 97.6041 60.789L98.2541 60.653V60.653Z" fill="#E9E9E9"/>
61
+ <path d="M90.3051 15.4439C91.3751 16.9639 91.7931 18.9799 91.5581 21.4929C91.4961 22.1489 91.1821 22.3759 91.1821 23.5449C91.1821 24.6649 91.2521 26.0509 91.3941 27.7019L89.0771 27.8629C86.8551 30.2749 84.5031 31.3429 82.0221 31.0699C79.5421 30.7949 77.7711 29.7269 76.7121 27.8629C74.5321 23.8399 75.0911 20.4189 78.3871 17.6009C81.6831 14.7829 85.6561 14.0639 90.3051 15.4439V15.4439Z" fill="#FAB6AF"/>
62
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M79.646 8C82.244 8 85.363 9.017 87.64 10.74C89.917 12.462 91.485 13.76 92.19 15.837C92.66 17.221 92.438 19.151 91.526 21.628C91.656 19.283 91.478 17.981 90.993 17.722C90.323 19.375 89.398 19.709 88.29 20.509C87.67 20.957 85.499 21.027 83.373 21.406C80.745 23.128 79.07 24.736 78.506 26.266C78.058 27.484 78.104 28.874 78.654 30.443L78.78 30.782L78.24 30.992C77.526 29.159 77.43 27.514 77.963 26.067C78.485 24.65 79.813 23.229 81.857 21.746C80.767 22.053 79.806 22.5 79.223 23.195C77.944 24.721 77.195 26.96 76.977 29.911C74.211 29.411 71.672 28.478 69.36 27.111C67.048 25.745 64.915 23.917 62.962 21.628C63.358 20.794 63.866 20.104 64.483 19.558C65.154 18.966 66.418 18.45 67.652 17.736L67.587 17.757L66.383 18.158C65.123 18.582 64.427 18.871 63.988 19.19C63.158 19.791 62.728 20.465 62.675 21.222L62.67 21.413L62.091 21.42C62.079 20.381 62.607 19.477 63.648 18.721C64.075 18.411 64.661 18.148 65.631 17.805L67.387 17.215L67.997 17.002C68.591 16.789 69.061 16.601 69.436 16.418C70.732 15.019 71.606 12.447 73.526 10.74C75.641 8.855 77.048 8 79.645 8H79.646Z" fill="#E94A47"/>
63
+ <path d="M84.3598 21.5751C84.9568 19.9351 86.5298 18.9781 87.8948 19.4751C88.9558 19.8611 89.5488 20.9991 89.4808 22.2561C89.8408 22.1651 90.1698 22.1191 90.4688 22.1201L90.6768 22.1271C90.9318 22.1471 91.1428 22.1831 91.3128 22.2411C91.8248 20.9701 93.0208 20.2181 94.0628 20.5971C95.1328 20.9871 95.5608 22.4001 95.0748 23.7371C94.5878 25.0741 93.3518 25.8811 92.2808 25.4911C91.3278 25.1441 90.8838 23.9871 91.1408 22.7941C91.0378 22.7561 90.8668 22.7221 90.6328 22.7041C90.2988 22.6791 89.8958 22.7331 89.4248 22.8691L89.3938 22.8791C89.3578 23.0381 89.3108 23.1971 89.2538 23.3561C88.6568 24.9961 87.0838 25.9531 85.7178 25.4561C84.3518 24.9591 83.7628 23.2151 84.3598 21.5751V21.5751ZM93.8638 21.1411C93.1338 20.8751 92.1998 21.4841 91.8118 22.5491C91.4248 23.6151 91.7478 24.6811 92.4788 24.9471C93.2098 25.2131 94.1428 24.6041 94.5308 23.5391C94.9188 22.4741 94.5948 21.4071 93.8638 21.1411ZM87.6968 20.0191C86.6608 19.6421 85.3998 20.4091 84.9038 21.7731C84.4078 23.1361 84.8798 24.5351 85.9158 24.9131C86.9518 25.2891 88.2138 24.5211 88.7098 23.1581C89.2058 21.7951 88.7328 20.3961 87.6968 20.0181V20.0191Z" fill="#222768"/>
64
+ <path class="gear-big" d="M153.783 115.079C153.334 114.679 152.886 112.836 152.686 110.892C152.287 106.954 151.988 106.406 149.097 104.861L147.004 103.714L143.216 105.259C141.122 106.107 139.129 106.705 138.78 106.555C137.833 106.206 132 95.8393 132 94.5433C132 93.8453 133.048 92.6493 135.24 90.9543L138.48 88.4123V82.9293L135.24 80.3873C133.197 78.7923 132 77.4973 132 76.8483C132 75.8013 137.085 66.4313 138.331 65.1853C138.929 64.6363 139.527 64.6863 142.368 65.7833C147.104 67.6273 147.453 67.6773 149.995 66.0323C152.238 64.5863 152.287 64.4873 152.636 61.3963C153.284 55.4653 152.486 56.0133 160.711 56.0133C169.035 56.0133 168.487 55.6643 169.135 61.5463L169.484 64.7863L172.076 66.1813L174.668 67.5773L177.858 66.2813C181.895 64.6363 183.041 64.6363 184.238 66.3813C186.331 69.4213 189.82 75.9513 189.82 76.8483C189.82 77.4963 188.624 78.7423 186.58 80.2383L183.39 82.6803V85.6703L183.34 88.6613L186.58 91.1043C188.624 92.6493 189.82 93.8943 189.82 94.4933C189.82 95.5403 184.238 105.409 183.141 106.306C182.593 106.755 181.496 106.506 178.555 105.309L174.618 103.764L172.076 105.16L169.534 106.555L168.935 110.543C168.587 113.234 168.088 114.78 167.54 115.228C166.244 116.175 154.73 116.076 153.783 115.078V115.079ZM165.197 95.4403C171.777 92.4503 173.571 84.1753 168.836 78.7423C162.556 71.6143 150.992 75.4523 150.044 84.9723C149.646 89.2593 153.035 94.3433 157.421 96.0383C159.016 96.6363 163.253 96.3383 165.197 95.4403V95.4403Z" fill="#222768"/>
65
+ <path class="gear-small" d="M176.263 146.231C174.418 145.085 172.773 143.988 172.623 143.789C172.474 143.539 172.823 142.244 173.372 140.948C174.368 138.655 174.368 138.505 173.522 136.91C172.823 135.565 172.325 135.266 170.381 135.016C166.742 134.518 166.891 134.767 166.891 129.583V124.848L168.786 124.549C172.375 123.951 172.624 123.851 173.571 122.306C174.468 120.761 174.418 120.711 173.421 118.269C172.823 116.923 172.474 115.577 172.624 115.378C172.923 114.829 179.752 110.842 180.35 110.842C180.599 110.842 181.646 111.839 182.692 113.085C184.138 114.829 184.886 115.328 186.082 115.328C187.278 115.328 188.026 114.829 189.472 113.085C190.518 111.839 191.565 110.842 191.814 110.842C192.412 110.842 199.241 114.829 199.54 115.378C199.69 115.578 199.34 116.923 198.792 118.268C197.795 120.561 197.745 120.811 198.493 122.256C199.291 123.752 199.689 123.951 203.428 124.549L205.272 124.849V129.583C205.272 134.767 205.422 134.518 201.782 135.016C199.889 135.266 199.34 135.565 198.642 136.91C197.845 138.456 197.845 138.605 198.792 141.097L199.789 143.689L198.393 144.636C195.851 146.381 192.363 148.225 191.664 148.225C191.216 148.225 190.219 147.278 189.372 146.181C188.125 144.437 187.577 144.088 186.082 144.038C184.587 143.988 184.138 144.288 182.742 146.132C181.895 147.278 180.798 148.225 180.4 148.225C179.951 148.225 178.107 147.328 176.263 146.231V146.231ZM189.372 135.515C193.858 133.172 193.858 126.144 189.272 123.702C183.44 120.562 177.06 126.892 180.101 132.823C181.696 135.913 186.131 137.16 189.371 135.515H189.372Z" fill="#E94A47"/>
66
+ <defs>
67
+ <linearGradient id="paint0_linear_2664_5084" x1="53.3662" y1="112.162" x2="38.2601" y2="175.224" gradientUnits="userSpaceOnUse">
68
+ <stop stop-color="#2A318C"/>
69
+ <stop offset="1" stop-color="#1D225F"/>
70
+ </linearGradient>
71
+ <linearGradient id="paint1_linear_2664_5084" x1="59.2517" y1="30.8201" x2="59.2517" y2="113.448" gradientUnits="userSpaceOnUse">
72
+ <stop stop-color="#EEEEEE"/>
73
+ <stop offset="1" stop-color="#D6D7D8"/>
74
+ </linearGradient>
75
+ </defs>
76
+ </svg>
@@ -0,0 +1,95 @@
1
+ <!--
2
+ - Copyright (c) 2024. Devtron Inc.
3
+ -
4
+ - Licensed under the Apache License, Version 2.0 (the "License");
5
+ - you may not use this file except in compliance with the License.
6
+ - You may obtain a copy of the License at
7
+ -
8
+ - http://www.apache.org/licenses/LICENSE-2.0
9
+ -
10
+ - Unless required by applicable law or agreed to in writing, software
11
+ - distributed under the License is distributed on an "AS IS" BASIS,
12
+ - WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13
+ - See the License for the specific language governing permissions and
14
+ - limitations under the License.
15
+ -->
16
+
17
+ <svg data-style-override="false" width="250" height="200" viewBox="0 0 250 200" fill="none" xmlns="http://www.w3.org/2000/svg">
18
+ <style>
19
+ .lock-body {
20
+ animation: appear 6s ease;
21
+ transform-origin: center;
22
+ transform-box: fill-box;
23
+ }
24
+
25
+ @keyframes appear {
26
+ 0% {
27
+ transform: translateY(50px) scale(0.5);
28
+ }
29
+ 10% {
30
+ transform: translateY(0px) scale(1);
31
+ }
32
+ 100% {
33
+ transform: translateY(0px) scale(1);
34
+ }
35
+ }
36
+
37
+ .lock-shank {
38
+ animation: locked 1s ease;
39
+ transform-origin: right;
40
+ transform-box: fill-box;
41
+ }
42
+
43
+ @keyframes locked {
44
+ 0% {
45
+ transform: rotateY(90deg) translateY(-10px);
46
+ }
47
+ 50% {
48
+ transform: rotateY(90deg) translateY(-10px);
49
+ }
50
+ 70% {
51
+ transform: rotateY(0deg) translateY(0px);
52
+ }
53
+ 80% {
54
+ transform: rotateY(0deg) translateY(5px);
55
+ }
56
+ 100% {
57
+ transform: rotateY(0deg) translateY(0px);
58
+ }
59
+ }
60
+ </style>
61
+ <g class="lock-body">
62
+ <path class="lock-shank" fill-rule="evenodd" clip-rule="evenodd" d="M148 82C148 69.8497 157.85 60 170 60C182.15 60 192 69.8497 192 82V112H184V82C184 74.268 177.732 68 170 68C162.268 68 156 74.268 156 82V92H148V82Z" fill="#D6D7D8"/>
63
+ <rect x="140" y="92" width="60" height="48" fill="url(#paint0_linear_2729_3841)"/>
64
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M173.207 120.072C174.886 119.008 176 117.134 176 115C176 111.686 173.314 109 170 109C166.686 109 164 111.686 164 115C164 117.134 165.114 119.008 166.793 120.072L166 128H174L173.207 120.072Z" fill="#3E3D4C"/>
65
+ </g>
66
+ <path d="M65.5601 191.308C65.5601 191.192 66.7131 188.02 68.0981 184.213L70.6361 177.291L77.0961 177.118L83.4991 176.945L86.2671 179.252C88.5751 181.214 99.0631 186.799 100.399 187.559C101.29 188.065 102.466 189.353 103.925 191.423C78.3481 191.385 65.5601 191.346 65.5601 191.308V191.308Z" fill="#80AEF2"/>
67
+ <path d="M32 191.308C32 191.192 33.154 188.02 34.538 184.213L37.076 177.291L43.536 177.118L49.939 176.945L52.708 179.252C55.015 181.214 65.503 186.799 66.84 187.559C67.73 188.065 68.906 189.353 70.365 191.423C44.788 191.385 32 191.346 32 191.308Z" fill="#94BBF8"/>
68
+ <path d="M75.655 109.836C76.745 112.994 77.481 115.734 77.863 118.056C78.243 120.377 80.381 140.211 84.274 177.556H66.296C64.852 174.938 64.13 173.099 64.13 172.038C64.13 170.448 65.043 168.268 65.043 165.97C65.043 164.438 63.009 159.147 58.939 150.099L62.87 110.75L75.655 109.836V109.836Z" fill="#1D225F"/>
69
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M50.5541 177.555H33.7601C33.3601 176.17 32.9681 174.301 32.5851 171.949C31.8351 167.161 32.4051 163.989 35.6351 157.413C38.8651 150.895 40.5011 147.341 40.5011 143.649C40.5591 137.881 41.7231 132.333 44.7811 126.334C47.1451 121.604 48.2761 121.248 48.5061 118.364L48.9261 112.162H70.0041C70.5161 113.595 70.7001 116.237 70.5541 120.087C70.4091 123.937 63.7421 143.093 50.5531 177.555H50.5541Z" fill="url(#paint1_linear_2729_3841)"/>
70
+ <path d="M95.9399 50.818L112.78 29.988H132.971L115.532 50.818H95.9399Z" fill="#98BDF9"/>
71
+ <path d="M118.14 27.384C119.518 27.384 120.646 28.454 120.737 29.809L120.743 29.988H120.165C120.165 28.869 119.258 27.963 118.14 27.963C117.021 27.963 116.115 28.869 116.115 29.988C116.115 31.05 116.933 31.922 117.974 32.006L118.14 32.013V32.591C116.702 32.591 115.536 31.426 115.536 29.988C115.536 28.55 116.702 27.384 118.14 27.384V27.384ZM125.083 27.384C126.461 27.384 127.589 28.454 127.681 29.809L127.687 29.988H127.108C127.108 28.869 126.202 27.963 125.083 27.963C123.965 27.963 123.058 28.869 123.058 29.988C123.058 31.05 123.876 31.922 124.917 32.006L125.083 32.013V32.591C123.645 32.591 122.479 31.426 122.479 29.988C122.479 28.55 123.645 27.384 125.083 27.384V27.384Z" fill="#2174DB"/>
72
+ <path d="M94.4722 54.8291C97.2792 53.8671 100.026 52.5301 102.714 50.8181H109.585C107.21 52.9881 105.613 54.5241 104.794 55.4281C103.974 56.3311 102.285 58.0661 99.7262 60.6331C98.6352 66.4141 97.4722 68.8431 96.2392 67.9181C94.3892 66.5321 88.3002 57.0211 94.4722 54.8281V54.8291Z" fill="#F3A29D"/>
73
+ <path d="M98.2542 60.6541C102.617 58.9861 105.433 57.7971 106.701 57.0871C108.201 56.2221 108.778 55.4141 110.508 51.7801C110.738 51.3191 111.2 49.4151 111.604 47.6271C112.527 43.0701 114.027 43.3011 114.142 47.9731C114.2 49.2431 114.488 50.3961 114.834 50.5111C115.122 50.6271 116.795 49.0111 118.468 46.9351C120.141 44.8581 121.756 43.1851 122.044 43.1851C122.736 43.1851 122.736 48.4921 121.987 50.3381C121.698 51.2031 117.257 56.0481 112.123 61.1821C108.701 64.6051 103.692 69.2501 97.0972 75.1191L98.2542 60.6541V60.6541Z" fill="#FAB6AF"/>
74
+ <path d="M78.5812 35.7741C79.3532 32.6881 80.1242 30.7591 80.8962 29.9871C79.7392 28.8301 78.5812 27.6731 76.2662 26.5161C75.4962 28.0591 73.9522 29.6021 71.6382 31.1451C71.6382 33.4591 72.4092 35.0021 73.9522 35.7741C75.4952 36.5451 77.0382 36.5451 78.5822 35.7741H78.5812Z" fill="#F3A29D"/>
75
+ <path d="M48.858 113.16C46.493 112.986 42.628 112.179 40.378 111.429L36.168 110.044L36.053 105.718C35.764 93.778 36.63 85.068 39.341 73.936C43.032 58.65 53.646 43.019 66.509 33.847C71.469 30.271 71.585 30.271 73.027 32.694C73.661 33.847 74.987 35.001 75.911 35.347L78.072 35.941C75.5 65 76.202 89.571 81.603 108.858C80.446 110.016 79.657 110.54 78.795 110.91C77.756 111.313 76.43 111.717 75.738 111.775C75.045 111.833 72.738 112.294 70.488 112.813C66.278 113.736 57.106 113.909 48.858 113.159V113.16Z" fill="url(#paint2_linear_2729_3841)"/>
76
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M94.4721 54.828L96.2391 66.139L76.2671 68.784L77 53C79.141 54.735 81.7171 55.907 83.9811 56.254C86.2441 56.602 89.7421 56.126 94.4721 54.828Z" fill="#D6D7D8"/>
77
+ <path d="M98.2541 60.653L103.157 83.798C102.589 84.955 101.147 85.727 98.8331 86.112C93.6251 86.691 88.4181 84.376 82.0531 84.376C75.6881 84.376 75.9631 88.426 66.7051 84.956C60.5331 82.641 58.0251 72.226 59.1821 53.71L77 52C76.922 57.782 77.8911 61.232 79.4341 62.389C80.9461 63.523 87.0031 62.99 97.6041 60.789L98.2541 60.653Z" fill="#E9E9E9"/>
78
+ <path d="M90.3051 15.4439C91.3751 16.9639 91.7931 18.9799 91.5581 21.4929C91.4961 22.1489 91.1821 22.3759 91.1821 23.5449C91.1821 24.6649 91.2521 26.0509 91.3941 27.7019L89.0771 27.8629C86.8551 30.2749 84.5031 31.3429 82.0221 31.0699C79.5421 30.7949 77.7711 29.7269 76.7121 27.8629C74.5321 23.8399 75.0911 20.4189 78.3871 17.6009C81.6831 14.7829 85.6561 14.0639 90.3051 15.4439V15.4439Z" fill="#FAB6AF"/>
79
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M79.646 8C82.244 8 85.363 9.017 87.64 10.74C89.917 12.462 91.485 13.76 92.19 15.837C92.66 17.221 92.438 19.151 91.526 21.628C91.656 19.283 91.478 17.981 90.993 17.722C90.323 19.375 89.398 19.709 88.29 20.509C87.67 20.957 85.499 21.027 83.373 21.406C80.745 23.128 79.07 24.736 78.506 26.266C78.058 27.484 78.104 28.874 78.654 30.443L78.78 30.782L78.24 30.992C77.526 29.159 77.43 27.514 77.963 26.067C78.485 24.65 79.813 23.229 81.857 21.746C80.767 22.053 79.806 22.5 79.223 23.195C77.944 24.721 77.195 26.96 76.977 29.911C74.211 29.411 71.672 28.478 69.36 27.111C67.048 25.745 64.915 23.917 62.962 21.628C63.358 20.794 63.866 20.104 64.483 19.558C65.154 18.966 66.418 18.45 67.652 17.736L67.587 17.757L66.383 18.158C65.123 18.582 64.427 18.871 63.988 19.19C63.158 19.791 62.728 20.465 62.675 21.222L62.67 21.413L62.091 21.42C62.079 20.381 62.607 19.477 63.648 18.721C64.075 18.411 64.661 18.148 65.631 17.805L67.387 17.215L67.997 17.002C68.591 16.789 69.061 16.601 69.436 16.418C70.732 15.019 71.606 12.447 73.526 10.74C75.641 8.855 77.048 8 79.645 8H79.646Z" fill="#E94A47"/>
80
+ <path d="M84.3598 21.5751C84.9568 19.9351 86.5298 18.9781 87.8948 19.4751C88.9558 19.8611 89.5488 20.9991 89.4808 22.2561C89.8408 22.1651 90.1698 22.1191 90.4688 22.1201L90.6768 22.1271C90.9318 22.1471 91.1428 22.1831 91.3128 22.2411C91.8248 20.9701 93.0208 20.2181 94.0628 20.5971C95.1328 20.9871 95.5608 22.4001 95.0748 23.7371C94.5878 25.0741 93.3518 25.8811 92.2808 25.4911C91.3278 25.1441 90.8838 23.9871 91.1408 22.7941C91.0378 22.7561 90.8668 22.7221 90.6328 22.7041C90.2988 22.6791 89.8958 22.7331 89.4248 22.8691L89.3938 22.8791C89.3578 23.0381 89.3108 23.1971 89.2538 23.3561C88.6568 24.9961 87.0838 25.9531 85.7178 25.4561C84.3518 24.9591 83.7628 23.2151 84.3598 21.5751V21.5751ZM93.8638 21.1411C93.1338 20.8751 92.1998 21.4841 91.8118 22.5491C91.4248 23.6151 91.7478 24.6811 92.4788 24.9471C93.2098 25.2131 94.1428 24.6041 94.5308 23.5391C94.9188 22.4741 94.5948 21.4071 93.8638 21.1411ZM87.6968 20.0191C86.6608 19.6421 85.3998 20.4091 84.9038 21.7731C84.4078 23.1361 84.8798 24.5351 85.9158 24.9131C86.9518 25.2891 88.2138 24.5211 88.7098 23.1581C89.2058 21.7951 88.7328 20.3961 87.6968 20.0181V20.0191Z" fill="#222768"/>
81
+ <defs>
82
+ <linearGradient id="paint0_linear_2729_3841" x1="140" y1="92" x2="158.924" y2="152.788" gradientUnits="userSpaceOnUse">
83
+ <stop stop-color="#E8B73F"/>
84
+ <stop offset="1" stop-color="#CF9F36"/>
85
+ </linearGradient>
86
+ <linearGradient id="paint1_linear_2729_3841" x1="53.3662" y1="112.162" x2="38.2601" y2="175.224" gradientUnits="userSpaceOnUse">
87
+ <stop stop-color="#2A318C"/>
88
+ <stop offset="1" stop-color="#1D225F"/>
89
+ </linearGradient>
90
+ <linearGradient id="paint2_linear_2729_3841" x1="58.8015" y1="31" x2="58.8015" y2="113.628" gradientUnits="userSpaceOnUse">
91
+ <stop stop-color="#EEEEEE"/>
92
+ <stop offset="1" stop-color="#D6D7D8"/>
93
+ </linearGradient>
94
+ </defs>
95
+ </svg>
@@ -0,0 +1,117 @@
1
+ <!--
2
+ - Copyright (c) 2024. Devtron Inc.
3
+ -->
4
+
5
+ <svg data-style-override="false" width="250" height="200" viewBox="0 0 250 200" fill="none" xmlns="http://www.w3.org/2000/svg">
6
+ <style>
7
+ .shield {
8
+ animation: shield-anime 3s ease;
9
+ transform-origin: center;
10
+ transform-box: fill-box;
11
+ }
12
+
13
+ @keyframes shield-anime {
14
+ 0% {
15
+ transform: translateY(20px) scale(0.5);
16
+ }
17
+ 100% {
18
+ transform: translateY(0px) scale(1);
19
+ }
20
+ }
21
+
22
+ .star {
23
+ animation: star-anime 1s ease-out;
24
+ transform-origin: center;
25
+ transform-box: fill-box;
26
+ }
27
+
28
+ @keyframes star-anime {
29
+ 0% {
30
+ transform: translateY(60px) scale(1.5);
31
+ }
32
+ 50% {
33
+ transform: translateY(60px) scale(1.5);
34
+ }
35
+ 100% {
36
+ transform: translateY(0px) scale(1);
37
+ }
38
+ }
39
+
40
+ .shine {
41
+ animation: shine-anime 4s infinite;
42
+ transform-origin: center;
43
+ transform-box: fill-box;
44
+ }
45
+
46
+ @keyframes shine-anime {
47
+ 0% {
48
+ transform: scale(0) rotate(0deg);
49
+ opacity: 1;
50
+ }
51
+ 50% {
52
+ transform: scale(0) rotate(0deg);
53
+ opacity: 1;
54
+ }
55
+ 90% {
56
+ transform: scale(1) rotate(360deg);
57
+ opacity: 1;
58
+ }
59
+ 100% {
60
+ transform: scale(0) rotate(450deg);
61
+ opacity: 0;
62
+ }
63
+ }
64
+ </style>
65
+ <path d="M65.5601 191.308C65.5601 191.192 66.7131 188.02 68.0981 184.213L70.6361 177.291L77.0961 177.118L83.4991 176.945L86.2671 179.252C88.5751 181.214 99.0631 186.799 100.399 187.559C101.29 188.065 102.466 189.353 103.925 191.423C78.3481 191.385 65.5601 191.346 65.5601 191.308Z" fill="#80AEF2"/>
66
+ <path d="M32 191.308C32 191.192 33.154 188.02 34.538 184.213L37.076 177.291L43.536 177.118L49.939 176.945L52.708 179.252C55.015 181.214 65.503 186.799 66.84 187.559C67.73 188.065 68.906 189.353 70.365 191.423C44.788 191.385 32 191.346 32 191.308Z" fill="#94BBF8"/>
67
+ <path d="M75.655 109.836C76.745 112.994 77.481 115.734 77.863 118.056C78.243 120.377 80.381 140.211 84.274 177.556H66.296C64.852 174.938 64.13 173.099 64.13 172.038C64.13 170.448 65.043 168.268 65.043 165.97C65.043 164.438 63.009 159.147 58.939 150.099L62.87 110.75L75.655 109.836Z" fill="#1D225F"/>
68
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M50.5541 177.555H33.7601C33.3601 176.17 32.9681 174.301 32.5851 171.949C31.8351 167.161 32.4051 163.989 35.6351 157.413C38.8651 150.895 40.5011 147.341 40.5011 143.649C40.5591 137.881 41.7231 132.333 44.7811 126.334C47.1451 121.604 48.2761 121.248 48.5061 118.364L48.9261 112.162H70.0041C70.5161 113.595 70.7001 116.237 70.5541 120.087C70.4091 123.937 63.7431 143.093 50.5541 177.555Z" fill="url(#paint0_linear_2580_14953)"/>
69
+ <path d="M95.9399 50.818L112.78 29.988H132.971L115.532 50.818H95.9399Z" fill="#98BDF9"/>
70
+ <path d="M118.14 27.384C119.518 27.384 120.646 28.454 120.737 29.809L120.743 29.988H120.165C120.165 28.869 119.258 27.963 118.14 27.963C117.021 27.963 116.115 28.869 116.115 29.988C116.115 31.05 116.933 31.922 117.974 32.006L118.14 32.013V32.591C116.702 32.591 115.536 31.426 115.536 29.988C115.536 28.55 116.702 27.384 118.14 27.384ZM125.083 27.384C126.461 27.384 127.589 28.454 127.681 29.809L127.687 29.988H127.108C127.108 28.869 126.202 27.963 125.083 27.963C123.965 27.963 123.058 28.869 123.058 29.988C123.058 31.05 123.876 31.922 124.917 32.006L125.083 32.013V32.591C123.645 32.591 122.479 31.426 122.479 29.988C122.479 28.55 123.645 27.384 125.083 27.384Z" fill="#2174DB"/>
71
+ <path d="M94.4719 54.8291C97.2789 53.8671 100.026 52.5301 102.714 50.8181H109.585C107.21 52.9881 105.613 54.5241 104.794 55.4281C103.974 56.3311 102.285 58.0661 99.7259 60.6331C98.6349 66.4141 97.4719 68.8431 96.2389 67.9181C94.3889 66.5321 88.2999 57.0221 94.4719 54.8291Z" fill="#F3A29D"/>
72
+ <path d="M98.2539 60.6541C102.617 58.9861 105.433 57.7971 106.701 57.0871C108.201 56.2221 108.778 55.4141 110.508 51.7801C110.738 51.3191 111.2 49.4151 111.604 47.6271C112.527 43.0701 114.027 43.3011 114.142 47.9731C114.2 49.2431 114.488 50.3961 114.834 50.5111C115.122 50.6271 116.795 49.0111 118.468 46.9351C120.141 44.8581 121.756 43.1851 122.044 43.1851C122.736 43.1851 122.736 48.4921 121.987 50.3381C121.698 51.2031 117.257 56.0481 112.123 61.1821C108.701 64.6051 103.692 69.2501 97.0969 75.1191L98.2539 60.6541Z" fill="#FAB6AF"/>
73
+ <path d="M78.5809 35.7741C79.3529 32.6881 80.1239 30.7591 80.8959 29.9871C79.7389 28.8301 78.5809 27.6731 76.2659 26.5161C75.4959 28.0591 73.9519 29.6021 71.6379 31.1451C71.6379 33.4591 72.4089 35.0021 73.9519 35.7741C75.4949 36.5451 77.0369 36.5451 78.5809 35.7741Z" fill="#F3A29D"/>
74
+ <path d="M49.3079 112.98C46.9429 112.806 43.0779 111.999 40.8279 111.249L36.6179 109.864L36.5029 105.538C36.2139 93.5981 37.0799 84.8881 39.7909 73.7561C43.4819 58.4701 54.0959 42.8391 66.9589 33.6671C71.9189 30.0911 72.0349 30.0911 73.4769 32.5141C74.1109 33.6671 75.4369 34.8211 76.3609 35.1671L78.5219 35.7611C75.4759 65.0851 76.6519 89.3911 82.0529 108.678C80.8959 109.836 80.1069 110.36 79.2449 110.73C78.2059 111.133 76.8799 111.537 76.1879 111.595C75.4949 111.653 73.1879 112.114 70.9379 112.633C66.7279 113.556 57.5559 113.729 49.3079 112.979V112.98Z" fill="url(#paint1_linear_2580_14953)"/>
75
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M94.4718 54.8281L96.2388 66.1391L76.2668 68.7841L77.3728 53.1311C79.5138 54.8661 81.7168 55.9071 83.9808 56.2541C86.2438 56.6021 89.7418 56.1261 94.4718 54.8281Z" fill="#D6D7D8"/>
76
+ <path d="M98.2539 60.653L103.157 83.798C102.589 84.955 101.147 85.727 98.8329 86.112C93.6249 86.691 88.4179 84.376 82.0529 84.376C75.6879 84.376 75.9629 88.426 66.7049 84.956C60.5329 82.641 58.0249 72.226 59.1819 53.71L77.2359 51.98C77.1579 57.762 77.8909 61.232 79.4339 62.389C80.9459 63.523 87.0029 62.99 97.6039 60.789L98.2539 60.653Z" fill="#E9E9E9"/>
77
+ <path d="M90.3051 15.4439C91.3751 16.9639 91.7931 18.9799 91.5581 21.4929C91.4961 22.1489 91.1821 22.3759 91.1821 23.5449C91.1821 24.6649 91.2521 26.0509 91.3941 27.7019L89.0771 27.8629C86.8551 30.2749 84.5031 31.3429 82.0221 31.0699C79.5421 30.7949 77.7711 29.7269 76.7121 27.8629C74.5321 23.8399 75.0911 20.4189 78.3871 17.6009C81.6831 14.7829 85.6561 14.0639 90.3051 15.4439Z" fill="#FAB6AF"/>
78
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M79.646 8C82.244 8 85.363 9.017 87.64 10.74C89.917 12.462 91.485 13.76 92.19 15.837C92.66 17.221 92.438 19.151 91.526 21.628C91.656 19.283 91.478 17.981 90.993 17.722C90.323 19.375 89.398 19.709 88.29 20.509C87.67 20.957 85.499 21.027 83.373 21.406C80.745 23.128 79.07 24.736 78.506 26.266C78.058 27.484 78.104 28.874 78.654 30.443L78.78 30.782L78.24 30.992C77.526 29.159 77.43 27.514 77.963 26.067C78.485 24.65 79.813 23.229 81.857 21.746C80.767 22.053 79.806 22.5 79.223 23.195C77.944 24.721 77.195 26.96 76.977 29.911C74.211 29.411 71.672 28.478 69.36 27.111C67.048 25.745 64.915 23.917 62.962 21.628C63.358 20.794 63.866 20.104 64.483 19.558C65.154 18.966 66.418 18.45 67.652 17.736L67.587 17.757L66.383 18.158C65.123 18.582 64.427 18.871 63.988 19.19C63.158 19.791 62.728 20.465 62.675 21.222L62.67 21.413L62.091 21.42C62.079 20.381 62.607 19.477 63.648 18.721C64.075 18.411 64.661 18.148 65.631 17.805L67.387 17.215L67.997 17.002C68.591 16.789 69.061 16.601 69.436 16.418C70.732 15.019 71.606 12.447 73.526 10.74C75.641 8.855 77.048 8 79.645 8H79.646Z" fill="#E94A47"/>
79
+ <path d="M84.3601 21.5751C84.9571 19.9351 86.5301 18.9781 87.8951 19.4751C88.9561 19.8611 89.5491 20.9991 89.4811 22.2561C89.8411 22.1651 90.1701 22.1191 90.4691 22.1201L90.6771 22.1271C90.9321 22.1471 91.1431 22.1831 91.3131 22.2411C91.8251 20.9701 93.0211 20.2181 94.0631 20.5971C95.1331 20.9871 95.5611 22.4001 95.0751 23.7371C94.5881 25.0741 93.3521 25.8811 92.2811 25.4911C91.3281 25.1441 90.8841 23.9871 91.1411 22.7941C91.0381 22.7561 90.8671 22.7221 90.6331 22.7041C90.2991 22.6791 89.8961 22.7331 89.4251 22.8691L89.3941 22.8791C89.3581 23.0381 89.3111 23.1971 89.2541 23.3561C88.6571 24.9961 87.0841 25.9531 85.7181 25.4561C84.3521 24.9591 83.7631 23.2151 84.3601 21.5751ZM93.8641 21.1411C93.1341 20.8751 92.2001 21.4841 91.8121 22.5491C91.4251 23.6151 91.7481 24.6811 92.4791 24.9471C93.2101 25.2131 94.1431 24.6041 94.5311 23.5391C94.9191 22.4741 94.5951 21.4071 93.8641 21.1411ZM87.6971 20.0191C86.6611 19.6421 85.4001 20.4091 84.9041 21.7731C84.4081 23.1361 84.8801 24.5351 85.9161 24.9131C86.9521 25.2891 88.2141 24.5211 88.7101 23.1581C89.2061 21.7951 88.7331 20.3971 87.6971 20.0191Z" fill="#222768"/>
80
+ <mask id="mask0_2580_14953" style="mask-type:alpha" maskUnits="userSpaceOnUse" x="149" y="65" width="60" height="71">
81
+ <path d="M150.258 75.2747C149 77.0676 149 82.3969 149 93.0557V98.3047C149 117.098 163.13 130.218 171.995 134.091C174.4 135.141 175.602 135.667 179 135.667C182.398 135.667 183.6 135.141 186.005 134.091C194.87 130.218 209 117.098 209 98.3047V93.0557C209 82.3969 209 77.0676 207.742 75.2747C206.483 73.4818 201.472 71.7665 191.45 68.336L189.541 67.6824C184.317 65.8941 181.705 65 179 65C176.295 65 173.683 65.8941 168.459 67.6824L166.55 68.336C156.528 71.7665 151.517 73.4818 150.258 75.2747Z" fill="url(#paint2_radial_2580_14953)"/>
82
+ </mask>
83
+ <g class="shield" mask="url(#mask0_2580_14953)">
84
+ <path d="M150.258 75.2747C149 77.0676 149 82.3969 149 93.0557V98.3047C149 117.098 163.13 130.218 171.995 134.091C174.4 135.141 175.602 135.667 179 135.667C182.398 135.667 183.6 135.141 186.005 134.091C194.87 130.218 209 117.098 209 98.3047V93.0557C209 82.3969 209 77.0676 207.742 75.2747C206.483 73.4818 201.472 71.7665 191.45 68.336L189.541 67.6824C184.317 65.8941 181.705 65 179 65C176.295 65 173.683 65.8941 168.459 67.6824L166.55 68.336C156.528 71.7665 151.517 73.4818 150.258 75.2747Z" fill="url(#paint3_radial_2580_14953)"/>
85
+ <g class="star" filter="url(#filter0_d_2580_14953)">
86
+ <path d="M175.584 89.0901L175.191 89.7955C174.759 90.5703 174.543 90.9577 174.206 91.2134C173.869 91.469 173.45 91.5639 172.611 91.7537L171.847 91.9264C168.896 92.5943 167.42 92.9282 167.069 94.0573C166.718 95.1865 167.724 96.3628 169.736 98.716L170.257 99.3247C170.829 99.9934 171.114 100.328 171.243 100.741C171.372 101.155 171.328 101.601 171.242 102.493L171.163 103.305C170.859 106.445 170.707 108.015 171.626 108.712C172.545 109.41 173.927 108.774 176.691 107.502L177.406 107.172C178.191 106.811 178.584 106.63 179 106.63C179.416 106.63 179.809 106.811 180.594 107.172L181.309 107.502C184.073 108.774 185.455 109.41 186.374 108.712C187.293 108.015 187.141 106.445 186.837 103.305L186.758 102.493C186.672 101.601 186.628 101.155 186.757 100.741C186.886 100.328 187.171 99.9934 187.743 99.3247L188.264 98.716C190.276 96.3628 191.282 95.1865 190.931 94.0573C190.58 92.9282 189.104 92.5943 186.153 91.9264L185.389 91.7537C184.55 91.5639 184.131 91.469 183.794 91.2134C183.457 90.9578 183.241 90.5703 182.809 89.7955L182.416 89.0901C180.896 86.3634 180.136 85 179 85C177.864 85 177.104 86.3634 175.584 89.0901Z" fill="white"/>
87
+ </g>
88
+ </g>
89
+ <path class="shine" d="M199 65L201.828 72.1716L209 75L201.828 77.8284L199 85L196.172 77.8284L189 75L196.172 72.1716L199 65Z" fill="white"/>
90
+ <defs>
91
+ <filter id="filter0_d_2580_14953" x="167" y="85" width="24" height="27" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB">
92
+ <feFlood flood-opacity="0" result="BackgroundImageFix"/>
93
+ <feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/>
94
+ <feOffset dy="3"/>
95
+ <feComposite in2="hardAlpha" operator="out"/>
96
+ <feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.25 0"/>
97
+ <feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2580_14953"/>
98
+ <feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2580_14953" result="shape"/>
99
+ </filter>
100
+ <linearGradient id="paint0_linear_2580_14953" x1="53.3662" y1="112.162" x2="38.2601" y2="175.224" gradientUnits="userSpaceOnUse">
101
+ <stop stop-color="#2A318C"/>
102
+ <stop offset="1" stop-color="#1D225F"/>
103
+ </linearGradient>
104
+ <linearGradient id="paint1_linear_2580_14953" x1="59.2514" y1="30.82" x2="59.2514" y2="113.448" gradientUnits="userSpaceOnUse">
105
+ <stop stop-color="#EEEEEE"/>
106
+ <stop offset="1" stop-color="#D6D7D8"/>
107
+ </linearGradient>
108
+ <radialGradient id="paint2_radial_2580_14953" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(209 65) rotate(129.126) scale(86.3669 70.9649)">
109
+ <stop stop-color="#FFD781"/>
110
+ <stop offset="0.830757" stop-color="#CF9F36"/>
111
+ </radialGradient>
112
+ <radialGradient id="paint3_radial_2580_14953" cx="0" cy="0" r="1" gradientUnits="userSpaceOnUse" gradientTransform="translate(209 65) rotate(129.126) scale(86.3669 70.9649)">
113
+ <stop stop-color="#FFD781"/>
114
+ <stop offset="0.830757" stop-color="#CF9F36"/>
115
+ </radialGradient>
116
+ </defs>
117
+ </svg>