dgrcorrientes-modulos 1.0.0

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (254) hide show
  1. package/.nvmrc +1 -0
  2. package/.prettierrc.cjs +8 -0
  3. package/.storybook/main.cjs +11 -0
  4. package/.storybook/manager-head.html +2 -0
  5. package/.storybook/manager.cjs +6 -0
  6. package/.storybook/preview-head.html +3 -0
  7. package/.storybook/preview.cjs +11 -0
  8. package/.storybook/themes.cjs +14 -0
  9. package/README.md +21 -0
  10. package/StoryBook.txt +19 -0
  11. package/dist-config.cjs +57 -0
  12. package/index.html +13 -0
  13. package/package.json +60 -0
  14. package/public/elevation.ico +0 -0
  15. package/public/elevationImage.png +0 -0
  16. package/public/vite.svg +1 -0
  17. package/src/App.scss +36 -0
  18. package/src/App.tsx +34 -0
  19. package/src/assets/react.svg +1 -0
  20. package/src/index.js +70 -0
  21. package/src/index.scss +63 -0
  22. package/src/index.ts +108 -0
  23. package/src/main.tsx +11 -0
  24. package/src/sass/base/_base.scss +50 -0
  25. package/src/sass/base/_controls.scss +90 -0
  26. package/src/sass/base/_datepicker.scss +114 -0
  27. package/src/sass/base/_typo.scss +71 -0
  28. package/src/sass/base/fonts/SFUIText-Bold.ttf +0 -0
  29. package/src/sass/base/fonts/SFUIText-BoldItalic.ttf +0 -0
  30. package/src/sass/base/fonts/SFUIText-Heavy.ttf +0 -0
  31. package/src/sass/base/fonts/SFUIText-HeavyItalic.ttf +0 -0
  32. package/src/sass/base/fonts/SFUIText-Light.ttf +0 -0
  33. package/src/sass/base/fonts/SFUIText-LightItalic.ttf +0 -0
  34. package/src/sass/base/fonts/SFUIText-Medium.ttf +0 -0
  35. package/src/sass/base/fonts/SFUIText-MediumItalic.ttf +0 -0
  36. package/src/sass/base/fonts/SFUIText-Regular.ttf +0 -0
  37. package/src/sass/base/fonts/SFUIText-RegularItalic.ttf +0 -0
  38. package/src/sass/base/fonts/SFUIText-Semibold.ttf +0 -0
  39. package/src/sass/base/fonts/SFUIText-SemiboldItalic.ttf +0 -0
  40. package/src/sass/bulma/bulma-changes.scss +19 -0
  41. package/src/sass/bulma/extensions/extensions.sass +1 -0
  42. package/src/sass/bulma/extensions/steps/bulma-steps.sass +3 -0
  43. package/src/sass/bulma/extensions/steps/index.sass +421 -0
  44. package/src/sass/bulma/variables/_variables-bulma.sass +16 -0
  45. package/src/sass/bulma/variables/components/card.sass +20 -0
  46. package/src/sass/bulma/variables/components/navbar.sass +50 -0
  47. package/src/sass/bulma/variables/components/tabs.sass +28 -0
  48. package/src/sass/bulma/variables/elements/button.sass +46 -0
  49. package/src/sass/bulma/variables/elements/notification.sass +8 -0
  50. package/src/sass/bulma/variables/elements/title.sass +20 -0
  51. package/src/sass/bulma/variables/grid/column.sass +2 -0
  52. package/src/sass/main.sass +16 -0
  53. package/src/sass/utilities/_bulma-variables.sass +20 -0
  54. package/src/sass/utilities/_derived-variables.scss +68 -0
  55. package/src/sass/utilities/_helpers.scss +70 -0
  56. package/src/sass/utilities/_variables.scss +147 -0
  57. package/src/stories/Changelog.stories.tsx +73 -0
  58. package/src/stories/Components/AssistanceDiary/AssistanceDiary.scss +19 -0
  59. package/src/stories/Components/AssistanceDiary/AssistanceDiary.stories.tsx +25 -0
  60. package/src/stories/Components/AssistanceDiary/AssistanceDiary.tsx +57 -0
  61. package/src/stories/Components/AverageAttended/AverageAttended.scss +39 -0
  62. package/src/stories/Components/AverageAttended/AverageAttended.stories.tsx +71 -0
  63. package/src/stories/Components/AverageAttended/AverageAttended.tsx +311 -0
  64. package/src/stories/Components/Breadcrumb/Breadcrumb.stories.tsx +45 -0
  65. package/src/stories/Components/Breadcrumb/Breadcrumb.tsx +68 -0
  66. package/src/stories/Components/Breadcrumb/breadcrumb.scss +82 -0
  67. package/src/stories/Components/CTA/CTA.scss +76 -0
  68. package/src/stories/Components/CTA/CTA.stories.tsx +46 -0
  69. package/src/stories/Components/CTA/CTA.tsx +70 -0
  70. package/src/stories/Components/Cards/Card CTA/CardCta.stories.tsx +34 -0
  71. package/src/stories/Components/Cards/Card CTA/CardCta.tsx +81 -0
  72. package/src/stories/Components/Cards/Card CTA/cardCta.scss +71 -0
  73. package/src/stories/Components/Cards/Card Expiration/cardExpiration.scss +105 -0
  74. package/src/stories/Components/Cards/Card Expiration/cardExpiration.stories.tsx +40 -0
  75. package/src/stories/Components/Cards/Card Expiration/cardExpiration.tsx +95 -0
  76. package/src/stories/Components/Cards/Card Vertical/CardVertical.stories.tsx +43 -0
  77. package/src/stories/Components/Cards/Card Vertical/CardVertical.tsx +106 -0
  78. package/src/stories/Components/Cards/Card Vertical/cardVertical.scss +130 -0
  79. package/src/stories/Components/Cards/CardActivity/cardActivity.scss +31 -0
  80. package/src/stories/Components/Cards/CardActivity/cardActivity.stories.tsx +20 -0
  81. package/src/stories/Components/Cards/CardActivity/cardActivity.tsx +48 -0
  82. package/src/stories/Components/Cards/CardHorizontal/CardHorizontal.stories.tsx +96 -0
  83. package/src/stories/Components/Cards/CardHorizontal/CardHorizontal.tsx +94 -0
  84. package/src/stories/Components/Cards/CardHorizontal/cardHorizontal.scss +65 -0
  85. package/src/stories/Components/Cards/CardUser/CardUser.stories.tsx +135 -0
  86. package/src/stories/Components/Cards/CardUser/CardUser.tsx +122 -0
  87. package/src/stories/Components/Cards/CardUser/cardUser.scss +115 -0
  88. package/src/stories/Components/Cart/Cart.scss +279 -0
  89. package/src/stories/Components/Cart/Cart.stories.tsx +350 -0
  90. package/src/stories/Components/Cart/Cart.tsx +277 -0
  91. package/src/stories/Components/Collapse/Collapse.scss +339 -0
  92. package/src/stories/Components/Collapse/Collapse.stories.tsx +766 -0
  93. package/src/stories/Components/Collapse/Collapse.tsx +451 -0
  94. package/src/stories/Components/CollapseEdit/CollapseEdit.scss +128 -0
  95. package/src/stories/Components/CollapseEdit/CollapseEdit.stories.tsx +29 -0
  96. package/src/stories/Components/CollapseEdit/CollapseEdit.tsx +185 -0
  97. package/src/stories/Components/CompleteDiary/CompleteDiary.scss +165 -0
  98. package/src/stories/Components/CompleteDiary/CompleteDiary.stories.tsx +219 -0
  99. package/src/stories/Components/CompleteDiary/CompleteDiary.tsx +394 -0
  100. package/src/stories/Components/Dropdown/Dropdown.scss +60 -0
  101. package/src/stories/Components/Dropdown/Dropdown.stories.tsx +19 -0
  102. package/src/stories/Components/Dropdown/Dropdown.tsx +99 -0
  103. package/src/stories/Components/EmptyState/EmptyState.stories.tsx +46 -0
  104. package/src/stories/Components/EmptyState/EmptyState.tsx +44 -0
  105. package/src/stories/Components/EmptyState/emptyState.scss +75 -0
  106. package/src/stories/Components/ErrorPage/ErrorPage.scss +65 -0
  107. package/src/stories/Components/ErrorPage/ErrorPage.stories.tsx +164 -0
  108. package/src/stories/Components/ErrorPage/ErrorPage.tsx +107 -0
  109. package/src/stories/Components/IncomingCall/IncomingCall.scss +27 -0
  110. package/src/stories/Components/IncomingCall/IncomingCall.stories.tsx +43 -0
  111. package/src/stories/Components/IncomingCall/IncomingCall.tsx +76 -0
  112. package/src/stories/Components/ModalConfirm/ModalConfirm.scss +30 -0
  113. package/src/stories/Components/ModalConfirm/ModalConfirm.stories.tsx +21 -0
  114. package/src/stories/Components/ModalConfirm/ModalConfirm.tsx +118 -0
  115. package/src/stories/Components/Pagination/Pagination.scss +42 -0
  116. package/src/stories/Components/Pagination/Pagination.stories.tsx +25 -0
  117. package/src/stories/Components/Pagination/Pagination.tsx +143 -0
  118. package/src/stories/Components/PerformanceAssessment/PerformanceAssessment.scss +26 -0
  119. package/src/stories/Components/PerformanceAssessment/PerformanceAssessment.stories.tsx +27 -0
  120. package/src/stories/Components/PerformanceAssessment/PerformanceAssessment.tsx +108 -0
  121. package/src/stories/Components/ShiftDiary/ShiftDiary.scss +45 -0
  122. package/src/stories/Components/ShiftDiary/ShiftDiary.stories.tsx +32 -0
  123. package/src/stories/Components/ShiftDiary/ShiftDiary.tsx +92 -0
  124. package/src/stories/Components/Stepper/Stepper.stories.tsx +26 -0
  125. package/src/stories/Components/Stepper/Stepper.tsx +102 -0
  126. package/src/stories/Components/Stepper/stepper.scss +59 -0
  127. package/src/stories/Components/Tabs/Tabs.stories.tsx +76 -0
  128. package/src/stories/Components/Tabs/Tabs.tsx +111 -0
  129. package/src/stories/Components/Tabs/tabs.scss +118 -0
  130. package/src/stories/Components/Tooltip/Tooltip.scss +235 -0
  131. package/src/stories/Components/Tooltip/Tooltip.stories.tsx +125 -0
  132. package/src/stories/Components/Tooltip/Tooltip.tsx +222 -0
  133. package/src/stories/Elements/Alert/Alert.stories.tsx +65 -0
  134. package/src/stories/Elements/Alert/Alert.tsx +49 -0
  135. package/src/stories/Elements/Alert/alert.scss +189 -0
  136. package/src/stories/Elements/Badge/Badge.stories.tsx +15 -0
  137. package/src/stories/Elements/Badge/Badge.tsx +21 -0
  138. package/src/stories/Elements/Badge/badge.scss +24 -0
  139. package/src/stories/Elements/Button/Button.stories.tsx +54 -0
  140. package/src/stories/Elements/Button/Button.tsx +118 -0
  141. package/src/stories/Elements/Button/button.scss +102 -0
  142. package/src/stories/Elements/Icon/Icon.stories.tsx +33 -0
  143. package/src/stories/Elements/Icon/Icon.tsx +57 -0
  144. package/src/stories/Elements/Icon/icon.scss +15 -0
  145. package/src/stories/Elements/Icon/icono.svg +1 -0
  146. package/src/stories/Elements/ProgressBar/ProgressBar.scss +26 -0
  147. package/src/stories/Elements/ProgressBar/ProgressBar.stories.tsx +19 -0
  148. package/src/stories/Elements/ProgressBar/ProgressBar.tsx +35 -0
  149. package/src/stories/Form/Autocomplete/Autocomplete.stories.tsx +55 -0
  150. package/src/stories/Form/Autocomplete/Autocomplete.tsx +160 -0
  151. package/src/stories/Form/Autocomplete/autocomplete.scss +311 -0
  152. package/src/stories/Form/Autocomplete-Prueba/Autocomplete.stories.tsx +50 -0
  153. package/src/stories/Form/Autocomplete-Prueba/AutocompletePrueba.tsx +83 -0
  154. package/src/stories/Form/Checkbox/Checkbox.stories.tsx +26 -0
  155. package/src/stories/Form/Checkbox/Checkbox.tsx +89 -0
  156. package/src/stories/Form/Checkbox/checkbox.scss +41 -0
  157. package/src/stories/Form/DatePicker/DatePickerExample.stories.tsx +27 -0
  158. package/src/stories/Form/DatePicker/DatePickerExample.tsx +65 -0
  159. package/src/stories/Form/DatePickerComponent/DatePickerComponent.scss +116 -0
  160. package/src/stories/Form/DatePickerComponent/DatePickerComponent.stories.tsx +37 -0
  161. package/src/stories/Form/DatePickerComponent/DatePickerComponent.tsx +97 -0
  162. package/src/stories/Form/Filters/Filters.stories.tsx +84 -0
  163. package/src/stories/Form/Filters/Filters.tsx +230 -0
  164. package/src/stories/Form/Filters/filters.scss +261 -0
  165. package/src/stories/Form/Input/Input.stories.tsx +25 -0
  166. package/src/stories/Form/Input/Input.tsx +86 -0
  167. package/src/stories/Form/Input/InputVar.sass +26 -0
  168. package/src/stories/Form/Input/input.scss +19 -0
  169. package/src/stories/Form/InputFormControl/Input-form-control.stories.tsx +26 -0
  170. package/src/stories/Form/InputFormControl/Input-form-control.tsx +48 -0
  171. package/src/stories/Form/InputFormControl/input-form-control.scss +34 -0
  172. package/src/stories/Form/Radio/Radio.stories.tsx +19 -0
  173. package/src/stories/Form/Radio/Radio.tsx +84 -0
  174. package/src/stories/Form/Radio/radio.scss +19 -0
  175. package/src/stories/Form/Search/Search.scss +50 -0
  176. package/src/stories/Form/Search/Search.stories.tsx +26 -0
  177. package/src/stories/Form/Search/Search.tsx +84 -0
  178. package/src/stories/Form/Select/Select.stories.tsx +55 -0
  179. package/src/stories/Form/Select/Select.tsx +121 -0
  180. package/src/stories/Form/Select/select.scss +303 -0
  181. package/src/stories/Form/Switch/Switch.stories.tsx +17 -0
  182. package/src/stories/Form/Switch/Switch.tsx +36 -0
  183. package/src/stories/Form/Switch/switch.scss +123 -0
  184. package/src/stories/Form/Textarea/Textarea.stories.tsx +19 -0
  185. package/src/stories/Form/Textarea/Textarea.tsx +52 -0
  186. package/src/stories/Form/Textarea/textarea.scss +25 -0
  187. package/src/stories/Form/UploadFileItem/UploadFileItem.scss +49 -0
  188. package/src/stories/Form/UploadFileItem/UploadFileItem.stories.tsx +18 -0
  189. package/src/stories/Form/UploadFileItem/UploadFileItem.tsx +89 -0
  190. package/src/stories/Form/UploadFiles/UploadFiles.scss +17 -0
  191. package/src/stories/Form/UploadFiles/UploadFiles.stories.tsx +32 -0
  192. package/src/stories/Form/UploadFiles/UploadFiles.tsx +177 -0
  193. package/src/stories/Layout/Footer/Footer.scss +129 -0
  194. package/src/stories/Layout/Footer/Footer.stories.tsx +101 -0
  195. package/src/stories/Layout/Footer/Footer.tsx +81 -0
  196. package/src/stories/Layout/Header/Header.scss +190 -0
  197. package/src/stories/Layout/Header/Header.stories.tsx +223 -0
  198. package/src/stories/Layout/Header/Header.tsx +278 -0
  199. package/src/stories/Layout/HeaderTable/HeaderTable.scss +21 -0
  200. package/src/stories/Layout/HeaderTable/HeaderTable.stories.tsx +112 -0
  201. package/src/stories/Layout/HeaderTable/HeaderTable.tsx +72 -0
  202. package/src/stories/Layout/Sidebar/Sidebar.scss +50 -0
  203. package/src/stories/Layout/Sidebar/Sidebar.stories.tsx +744 -0
  204. package/src/stories/Layout/Sidebar/Sidebar.tsx +129 -0
  205. package/src/stories/Layout/SidebarEmpty/SidebarEmpty.scss +64 -0
  206. package/src/stories/Layout/SidebarEmpty/SidebarEmpty.stories.tsx +26 -0
  207. package/src/stories/Layout/SidebarEmpty/SidebarEmpty.tsx +100 -0
  208. package/src/stories/Layout/Subtitle/Subtitle.scss +88 -0
  209. package/src/stories/Layout/Subtitle/Subtitle.stories.tsx +46 -0
  210. package/src/stories/Layout/Subtitle/Subtitle.tsx +108 -0
  211. package/src/stories/Layout/Title/Title.scss +79 -0
  212. package/src/stories/Layout/Title/Title.stories.tsx +86 -0
  213. package/src/stories/Layout/Title/Title.tsx +96 -0
  214. package/src/stories/Welcome.stories.tsx +111 -0
  215. package/src/stories/assets/404 Page Not Found _Two Color (1).png +0 -0
  216. package/src/stories/assets/404 Page Not Found _Two Color.png +0 -0
  217. package/src/stories/assets/Empty Inbox _Two Color.png +0 -0
  218. package/src/stories/assets/Loading _Two Color.png +0 -0
  219. package/src/stories/assets/Notifications_Two Color 1.png +0 -0
  220. package/src/stories/assets/Online protection_Two Color.png +0 -0
  221. package/src/stories/assets/Under Constructions _Two Color.png +0 -0
  222. package/src/stories/assets/bulma.png +0 -0
  223. package/src/stories/assets/burger.svg +5 -0
  224. package/src/stories/assets/code-brackets.svg +1 -0
  225. package/src/stories/assets/colors.svg +1 -0
  226. package/src/stories/assets/comments.svg +1 -0
  227. package/src/stories/assets/decor-bg.png +0 -0
  228. package/src/stories/assets/direction.svg +1 -0
  229. package/src/stories/assets/e-isologo.svg +4 -0
  230. package/src/stories/assets/e-isotype.svg +4 -0
  231. package/src/stories/assets/e-logo_negative.svg +14 -0
  232. package/src/stories/assets/e-logotype.svg +14 -0
  233. package/src/stories/assets/flow.svg +1 -0
  234. package/src/stories/assets/logo_gobierno_corrientes.svg +9 -0
  235. package/src/stories/assets/logo_rentas_corrientes.svg +10 -0
  236. package/src/stories/assets/logo_rentas_corrientes_compacto.svg +10 -0
  237. package/src/stories/assets/plugin.svg +1 -0
  238. package/src/stories/assets/repo.svg +1 -0
  239. package/src/stories/assets/stackalt.svg +1 -0
  240. package/src/stories/assets/storybook.svg +13 -0
  241. package/src/stories/assets/thumbnail-black.jpg +0 -0
  242. package/src/stories/assets/thumbnail-black[2].jpg +0 -0
  243. package/src/stories/assets/thumbnail.jpg +0 -0
  244. package/src/stories/assets/thumbnail[2].jpg +0 -0
  245. package/src/stories/changelog.ts +389 -0
  246. package/src/utils/functions.ts +57 -0
  247. package/src/vite-env.d.ts +2 -0
  248. package/static/e-isologo-192.jpg +0 -0
  249. package/static/e-isologo.svg +4 -0
  250. package/static/e-logotype.svg +14 -0
  251. package/static/favicon.ico +0 -0
  252. package/tsconfig.json +22 -0
  253. package/tsconfig.node.json +9 -0
  254. package/vite.config.ts +22 -0
@@ -0,0 +1,86 @@
1
+ import React from 'react';
2
+ import {ComponentStory, ComponentMeta} from '@storybook/react';
3
+ import icono from '../../Elements/Icon/icono.svg';
4
+
5
+ import {Title} from './Title';
6
+
7
+ export default {
8
+ title: 'Layout/Title',
9
+ component: Title,
10
+ args: {
11
+ description: 'Enterate de las últimas noticias de Rentas Corrientes y accedé a toda la información.',
12
+ align: 'left',
13
+ },
14
+ } as ComponentMeta<typeof Title>;
15
+
16
+ const Template: ComponentStory<typeof Title> = args => <Title {...args} />;
17
+
18
+ export const Standard = Template.bind({});
19
+ Standard.args = {
20
+ subtitle: 'ÚLTIMAS NOTICIAS',
21
+ title: 'Novedades',
22
+ };
23
+
24
+ export const Example1 = Template.bind({});
25
+ Example1.args = {
26
+ subtitle: 'ÚLTIMAS NOTICIAS',
27
+ title: 'Novedades',
28
+ button: {
29
+ label: 'Ver todo',
30
+ size: 'medium',
31
+ fill: 'solid',
32
+ type: 'button',
33
+ icon: icono,
34
+ icon_type: 'svg_icon',
35
+ onClick: () => console.log('Button Clicked'),
36
+ },
37
+ };
38
+
39
+ export const AllPropsActive = Template.bind({});
40
+ AllPropsActive.args = {
41
+ subtitle: 'INFORMACIÓN FISCAL',
42
+ title: 'Normativas',
43
+ align: 'center',
44
+ backButton: {
45
+ label: 'Volver',
46
+ size: 'small',
47
+ fill: 'link',
48
+ icon: 'fas fa-chevron-left',
49
+ onClick: () => console.log('Volver Clicked'),
50
+ },
51
+ description:
52
+ 'En esta sección Ud. podrá realizar la búsqueda de una atcividad económica. Como resultado se listarán los códigos, descripción, alícuotas y mínimos del NOMENCLADOR de ACTIVIDADES VIGENTES-NAES.',
53
+ secondDescription:
54
+ 'Las actividades deben ajustarse a lo establecido en el Código Fiscal y la ley Tarifaria de la Provincia de Corrientes - Ley N°6249 y N° 6250-.',
55
+ search: {
56
+ size: 'normal',
57
+ placeholder: 'Buscar Leyes, Normativas, Decretos...',
58
+ backgroundColor: 'white',
59
+ buttonSearch: {
60
+ label: 'Buscar',
61
+ fill: 'solid',
62
+ icon: 'fa-solid fa-magnifying-glass',
63
+ type: 'button',
64
+ onClick: () => console.log('Button Clicked'),
65
+ },
66
+ onChange: value => console.log(value),
67
+ onSearch: value => console.log('Se buscó: ' + value),
68
+ },
69
+ actionsButtons: [
70
+ {
71
+ label: 'Ley Tarifaria',
72
+ fill: 'link',
73
+ type: 'button',
74
+ icon: icono,
75
+ icon_type: 'svg_icon',
76
+ onClick: () => console.log('Ley Tarifaria Clicked'),
77
+ },
78
+ {
79
+ label: 'Código Fiscal',
80
+ fill: 'link',
81
+ icon: 'fa-regular fa-file-lines',
82
+ type: 'button',
83
+ onClick: () => console.log('Código Fiscal Clicked'),
84
+ },
85
+ ],
86
+ };
@@ -0,0 +1,96 @@
1
+ import React from 'react';
2
+ import './Title.scss';
3
+ import {Button, IButton} from '../../Elements/Button/Button';
4
+ import {Search, ISearch} from '../../Form/Search/Search';
5
+
6
+ export interface ITitle extends React.DetailedHTMLProps<React.HTMLAttributes<HTMLDivElement>, HTMLDivElement> {
7
+ // base
8
+ align?: 'left' | 'center' | 'right';
9
+ subtitle?: string;
10
+ title?: string;
11
+
12
+ description?: string;
13
+ descriptionWidth?: string;
14
+
15
+ button?: IButton;
16
+ buttonWidth?: string;
17
+ backButton?: IButton;
18
+
19
+ //COMPLETE
20
+ secondDescription?: string;
21
+ actionsButtons?: IButton[];
22
+
23
+ search?: ISearch;
24
+ searchWidth?: string;
25
+
26
+ // react
27
+ className?: string;
28
+ }
29
+
30
+ export const Title = ({
31
+ className,
32
+ subtitle,
33
+ title,
34
+ description,
35
+ descriptionWidth,
36
+ secondDescription,
37
+ actionsButtons,
38
+ search,
39
+ button,
40
+ buttonWidth,
41
+ backButton,
42
+ searchWidth,
43
+ align,
44
+ ...props
45
+ }: ITitle) => {
46
+ return (
47
+ <div className="elv-component elv-title" {...props}>
48
+ <div className={`title-component-container ${backButton && 'title-component-container--backButton'} ${className ? className : ''}`}>
49
+ {backButton && (
50
+ <div className="title-component-container__backButton is-flex">
51
+ <Button {...backButton}></Button>
52
+ </div>
53
+ )}
54
+ <div className={`title-component title-component--${align} is-flex is-flex-direction-column`}>
55
+ {subtitle && <p className="title-component__subtitle">{subtitle.toUpperCase()}</p>}
56
+ {title && <p className="title-component__title">{title}</p>}
57
+ <div
58
+ className={`title-component__content is-flex title-component__content--${align} is-flex-direction-column ${
59
+ backButton && 'title-component__content--backButton'
60
+ }`}
61
+ >
62
+ {description && (
63
+ <p className={`title-component__description`} style={{width: descriptionWidth}}>
64
+ {description}
65
+ </p>
66
+ )}
67
+ {secondDescription && (
68
+ <p className={`title-component__secondDescription`} style={{width: descriptionWidth}}>
69
+ {secondDescription}
70
+ </p>
71
+ )}
72
+ {actionsButtons && (
73
+ <span className="title-component__actionButtons is-flex">
74
+ {actionsButtons.map(but => (
75
+ <span key={but.label}>
76
+ <Button {...but}></Button>
77
+ </span>
78
+ ))}
79
+ </span>
80
+ )}
81
+ {search && (
82
+ <span className="title-component__search" style={{width: searchWidth}}>
83
+ <Search {...search}></Search>
84
+ </span>
85
+ )}
86
+ {button && (
87
+ <span className="title-component__button" style={{width: buttonWidth}}>
88
+ <Button {...button}></Button>
89
+ </span>
90
+ )}
91
+ </div>
92
+ </div>
93
+ </div>
94
+ </div>
95
+ );
96
+ };
@@ -0,0 +1,111 @@
1
+ import {Meta} from '@storybook/react';
2
+ import {useEffect, useState} from 'react';
3
+ import Storybook from './assets/storybook.svg';
4
+ import Bulma from './assets/bulma.png';
5
+ import Thumbnail from './assets/thumbnail-black[2].jpg';
6
+ import {getLatestVersion} from '../utils/functions';
7
+
8
+ export const Welcome = () => {
9
+ const packageName: string = 'storybook-cte-library';
10
+ const [latestVersionLibrary, setLatestVersionLibrary] = useState('');
11
+
12
+ useEffect(() => {
13
+ async function getVersion() {
14
+ const version = await getLatestVersion(packageName);
15
+ setLatestVersionLibrary(version);
16
+ }
17
+ getVersion();
18
+ }, []);
19
+
20
+ return (
21
+ <div className="elv-component">
22
+ <section
23
+ className="hero is-black is-fullheight-with-navbar"
24
+ style={{background: `url("${Thumbnail}") center center / cover no-repeat`}}
25
+ >
26
+ <div className="hero-body is-flex is-align-items-flex-start">
27
+ <div className="container is-fluid">
28
+ <div className="column is-4 mb-6">
29
+ <p className="subtitle is-3 mb-2 has-text-white" style={{whiteSpace: 'nowrap'}}>
30
+ @elevation/react
31
+ </p>
32
+ <p className="title is-1 has-text-white" style={{whiteSpace: 'nowrap'}}>
33
+ v.{latestVersionLibrary}
34
+ </p>
35
+ <a href="https://elevation.com.ar/" target="_blank" className="button is-ghost has-tc-primary-200">
36
+ <span>Ir al Sitio Web</span>
37
+ <span className="icon">
38
+ <i className="fa fa-arrow-right"></i>
39
+ </span>
40
+ </a>
41
+ </div>
42
+ <div className="column is-4">
43
+ <div className="block">
44
+ <article className="media">
45
+ <div className="media-left">
46
+ <figure className="image is-48x48 m-2">
47
+ <img src={Storybook} alt="Storybook Logo" height={'100%'} width={'100%'}></img>
48
+ </figure>
49
+ </div>
50
+ <div className="media-content">
51
+ <p className="title is-4 has-text-white">Storybook</p>
52
+ <p className="subtitle is-6 has-text-white">
53
+ Dado que Storybook nos ayuda a resumir la interfaz de usuario de las aplicaciones, los UX'ers y los QA pueden
54
+ beneficiarse de ello. Con Storybook, podemos facilitar el desarrollo de un sistema de diseño y compartir un solo
55
+ lenguaje con los UX'ers. Los QA pueden obtener una descripción general y probar las funcionalidades de forma aislada.
56
+ Storybook incluso se puede usar para demostrar la funcionalidad a las partes interesadas, como si fuera un demo.
57
+ </p>
58
+ </div>
59
+ </article>
60
+ </div>
61
+ <div className="block">
62
+ <article className="media">
63
+ <div className="media-left">
64
+ <figure className="image is-48x48 m-1">
65
+ <img src={Bulma} alt="Bulma Logo"></img>
66
+ </figure>
67
+ </div>
68
+ <div className="media-content content">
69
+ <p className="title is-4 has-text-white">Bulma</p>
70
+ <div className="subtitle is-6 has-text-white">
71
+ Bulma es un framework gratuito de código abierto que proporciona componentes frontend listos para usar los cuales
72
+ podemos combinar fácilmente para crear interfaces web responsivas. Las principales ventajas que nos aporta son las
73
+ siguientes:
74
+ <ul>
75
+ <li>
76
+ Acelera el desarrollo de las páginas web, ya que conociendo un poco el framework CSS, se pueden desarrollar las
77
+ páginas de una manera más rápida que si lo hacemos desde cero.
78
+ </li>
79
+ <li>
80
+ Facilita el trabajo en equipo, ya que si hemos desarrollado una página y sus estilos usando un framework, si
81
+ posteriormente otra persona necesita modificarlos y conoce ese framework, puede mantener la misma línea de
82
+ desarrollo de las hojas de estilo y esa página web.
83
+ </li>
84
+ <li>
85
+ Garantiza que todo lo que se desarrolle sea compatible con todos los navegadores, lo que si tuviéramos que hacer
86
+ nosotros mismos supondría más tiempo y esfuerzo.
87
+ </li>
88
+ <li>
89
+ Los frameworks son mantenidos y evolucionados por la comunidad, por lo que los posibles errores son corregidos y
90
+ sus funciones van ampliándose.
91
+ </li>
92
+ </ul>
93
+ </div>
94
+ </div>
95
+ </article>
96
+ </div>
97
+ </div>
98
+ </div>
99
+ </div>
100
+ </section>
101
+ </div>
102
+ );
103
+ };
104
+ export default {
105
+ title: 'Elevation/Welcome',
106
+ parameters: {
107
+ docs: {
108
+ page: null,
109
+ },
110
+ },
111
+ } as Meta;
Binary file
@@ -0,0 +1,5 @@
1
+ <svg width="25" height="25" viewBox="0 0 25 25" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="segment">
3
+ <path id="Vector" d="M15.8325 18.9307H3.83252V16.9307H15.8325V18.9307ZM21.8325 6.93066V8.93066H3.83252V6.93066H21.8325ZM15.8325 13.9307H3.83252V11.9307H15.8325V13.9307Z" fill="black"/>
4
+ </g>
5
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1" viewBox="0 0 48 48"><title>illustration/code-brackets</title><g id="illustration/code-brackets" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"><path id="Combined-Shape" fill="#87E6E5" d="M11.4139325,12 C11.7605938,12 12,12.5059743 12,13.3779712 L12,17.4951758 L6.43502246,23.3839989 C5.85499251,23.9978337 5.85499251,25.0021663 6.43502246,25.6160011 L12,31.5048242 L12,35.6220288 C12,36.4939606 11.7605228,37 11.4139325,37 C11.2725831,37 11.1134406,36.9158987 10.9453839,36.7379973 L0.435022463,25.6160011 C-0.145007488,25.0021663 -0.145007488,23.9978337 0.435022463,23.3839989 L10.9453839,12.2620027 C11.1134051,12.0841663 11.2725831,12 11.4139325,12 Z M36.5860675,12 C36.7274169,12 36.8865594,12.0841013 37.0546161,12.2620027 L47.5649775,23.3839989 C48.1450075,23.9978337 48.1450075,25.0021663 47.5649775,25.6160011 L37.0546161,36.7379973 C36.8865949,36.9158337 36.7274169,37 36.5860675,37 C36.2394062,37 36,36.4940257 36,35.6220288 L36,31.5048242 L41.5649775,25.6160011 C42.1450075,25.0021663 42.1450075,23.9978337 41.5649775,23.3839989 L36,17.4951758 L36,13.3779712 C36,12.5060394 36.2394772,12 36.5860675,12 Z"/><rect id="Rectangle-7-Copy-5" width="35.57" height="4" x="5.009" y="22.662" fill="#A0DB77" rx="2" transform="translate(22.793959, 24.662305) rotate(-75.000000) translate(-22.793959, -24.662305)"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1" viewBox="0 0 48 48"><title>illustration/colors</title><g id="illustration/colors" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"><circle id="Oval" cx="23.763" cy="16.192" r="13.271" fill="#FC521F" opacity=".6"/><circle id="Oval-Copy" cx="15.468" cy="32.308" r="13.271" fill="#66BF3C" opacity=".6"/><path id="Combined-Shape" fill="#FF5F95" d="M15.4683651,19.0362231 C21.5434817,19.0362231 26.6652087,23.1181689 28.2404554,28.6889694 C26.8420385,29.1906678 25.3344184,29.4637769 23.7630101,29.4637769 C17.6878936,29.4637769 12.5661666,25.3818311 10.9909199,19.8110306 C12.3898993,19.3092302 13.8972501,19.0362231 15.4683651,19.0362231 Z"/><circle id="Oval-Copy-2" cx="32.532" cy="32.308" r="13.271" fill="#1EA7FD" opacity=".6"/><path id="Combined-Shape" fill="#87E6E5" d="M24.00025,22.1417324 C26.897967,24.5762286 28.7397972,28.2268506 28.7397972,32.3076552 C28.7397972,36.3884597 26.897967,40.0390817 24.00025,42.4735779 C21.1018087,40.038637 19.2602028,36.3882111 19.2602028,32.3076552 C19.2602028,28.2815316 21.0530043,24.6741393 23.8838362,22.2402492 Z"/><path id="Combined-Shape" fill="#FBD178" d="M32.5316349,19.0362231 C33.9415155,19.0362231 35.3000478,19.2560712 36.5748203,19.6633557 C35.0489179,25.3104816 29.8909911,29.4637769 23.7630101,29.4637769 C22.3527608,29.4637769 20.9938866,29.2438138 19.7188247,28.8363247 C21.2451195,23.1900077 26.403293,19.0362231 32.5316349,19.0362231 Z"/><path id="Combined-Shape" fill="#FFF" d="M24.00025,22.1417324 L24.0124326,22.1519799 C24.1747744,22.288701 24.3337918,22.4292434 24.4893463,22.5734686 L24.3896855,22.4820008 C24.4671836,22.552408 24.5438453,22.6237194 24.619654,22.6959185 L24.4893463,22.5734686 C24.5690639,22.6473803 24.6478719,22.7222591 24.7257519,22.7980864 L24.619654,22.6959185 C24.6907654,22.7636441 24.7611262,22.8321506 24.8307226,22.9014245 L24.7257519,22.7980864 C24.8120661,22.8821258 24.8972403,22.9673303 24.981249,23.0536745 L24.8307226,22.9014245 C24.9073006,22.9776475 24.9829531,23.0547994 25.0576619,23.132862 L25.057852,23.1330605 C25.3140855,23.4007967 25.559391,23.679459 25.7928375,23.9681079 L25.7230574,23.8825538 C25.7985998,23.9743942 25.8729325,24.0672672 25.9460311,24.1611484 L25.7928375,23.9681079 C25.8624256,24.0541514 25.93096,24.1410823 25.998421,24.228881 L25.9460311,24.1611484 C26.0074362,24.2400115 26.0679704,24.319586 26.1276194,24.3998576 L25.998421,24.228881 C26.0663495,24.317288 26.1331896,24.4065749 26.1989214,24.4967216 L26.1276194,24.3998576 C26.204848,24.5037867 26.2805926,24.6088841 26.3548219,24.7151187 L26.1989214,24.4967216 C26.2678555,24.59126 26.3355706,24.6867441 26.4020436,24.7831507 L26.3548219,24.7151187 C26.4130013,24.798383 26.4702498,24.8823459 26.5265523,24.9669921 L26.4020436,24.7831507 C26.4678788,24.8786322 26.5324956,24.9750187 26.5958716,25.0722875 L26.5959296,25.0723765 C26.736338,25.2878741 26.870709,25.5077955 26.9987399,25.7318073 L26.9410662,25.6319089 C26.9973106,25.7283602 27.0523736,25.8255849 27.1062352,25.9235633 L26.9987399,25.7318073 C27.0539848,25.8284676 27.1080492,25.9258895 27.1609136,26.0240532 L27.1606656,26.0235927 C27.2696676,26.2259984 27.3733426,26.4310837 27.4717677,26.6391379 L27.4715275,26.6386302 C27.5541941,26.8133735 27.6329386,26.9896914 27.7079006,27.1679911 C27.7630163,27.299081 27.8161443,27.431391 27.8671831,27.5647345 L27.804312,27.4036517 C27.8391482,27.4912057 27.8730792,27.5792182 27.9060936,27.6676774 L27.8671831,27.5647345 C27.906613,27.6677486 27.9447959,27.7713796 27.9817136,27.8756091 L27.9060936,27.6676774 C27.946474,27.7758735 27.9854831,27.884738 28.0230997,27.9942498 L27.9817136,27.8756091 C28.0144978,27.9681688 28.0462842,28.0612004 28.0770597,28.1546911 L28.0230997,27.9942498 C28.0618265,28.1069941 28.0990774,28.2204244 28.1348294,28.3345177 L28.0770597,28.1546911 C28.1112208,28.2584663 28.1441365,28.3628071 28.175789,28.4676958 L28.1756797,28.4673338 L28.2408136,28.6893554 C28.2284694,28.6937793 28.2161167,28.6981854 28.2037557,28.7025737 L28.2404554,28.6889694 C27.9517707,28.7925384 27.6584322,28.8863659 27.3608394,28.97006 L27.3609965,28.9702524 C27.0695498,29.0519815 26.7741843,29.1241944 26.4751174,29.1863314 L26.5385665,29.1730829 C26.3901218,29.2046704 26.2407589,29.2337757 26.0905233,29.2603535 L26.4751174,29.1863314 C26.3367402,29.215082 26.1975707,29.2416755 26.0576458,29.2660754 L26.0905233,29.2603535 C25.9366833,29.2875689 25.7819282,29.312134 25.6263069,29.334 L26.0576458,29.2660754 C25.9017815,29.2932549 25.7449801,29.3177127 25.5872928,29.3393985 L25.6263069,29.334 C25.493366,29.3526793 25.3597929,29.3693888 25.2256182,29.3840982 L25.5872928,29.3393985 C25.4326976,29.360659 25.277251,29.3792552 25.1210012,29.3951396 L25.2256182,29.3840982 C25.0570566,29.4025774 24.8875455,29.4178998 24.7171453,29.4300052 L25.1210012,29.3951396 C24.9661341,29.4108835 24.810478,29.4239634 24.6540799,29.4343333 L24.7171453,29.4300052 C24.5612618,29.4410793 24.4046342,29.4494611 24.2473088,29.4551045 L24.6540799,29.4343333 C24.5098436,29.4438967 24.3649762,29.4511552 24.2195147,29.4560724 L24.2473088,29.4551045 C24.0865878,29.4608697 23.9251385,29.4637769 23.7630101,29.4637769 L23.3130142,29.4562912 C23.2993121,29.4558347 23.2856153,29.4553574 23.2719237,29.4548593 C22.9596275,29.4434959 22.6502324,29.4213577 22.3439491,29.3888006 L22.3886972,29.3934808 C22.2468147,29.3788837 22.105595,29.3620515 21.9650736,29.3430199 L22.3439491,29.3888006 C22.1914515,29.3725905 22.0397254,29.3537976 21.8888152,29.3324664 L21.9650736,29.3430199 C21.8025527,29.3210088 21.6409661,29.2960557 21.4803691,29.2682161 L21.8888152,29.3324664 C21.7352182,29.3107553 21.5824665,29.2864149 21.4306071,29.2594919 L21.4803691,29.2682161 C21.3506285,29.2457255 21.2215338,29.221351 21.0931142,29.1951218 L21.4306071,29.2594919 C21.2772401,29.2323016 21.1247833,29.2024774 20.973285,29.1700676 L21.0931142,29.1951218 C20.9267071,29.1611338 20.7614335,29.1240315 20.5973571,29.0838786 L20.973285,29.1700676 C20.825476,29.138447 20.6785795,29.1043653 20.5326403,29.0678674 L20.5973571,29.0838786 C20.4596684,29.0501832 20.3228227,29.0143396 20.1868576,28.9763851 L20.5326403,29.0678674 C20.3930822,29.0329653 20.2543997,28.9958536 20.1166319,28.9565718 L20.1169729,28.956669 L19.7188247,28.8363247 L19.7188247,28.8363247 L19.7880988,28.5894836 C19.8166627,28.4914193 19.8463277,28.3938241 19.8770797,28.2967124 L19.8480041,28.389868 C19.888904,28.2573207 19.931824,28.1256601 19.9767281,27.9949221 L19.8770797,28.2967124 C19.9117081,28.1873592 19.9477148,28.0786191 19.9850793,27.9705124 L19.9853117,27.9700125 C20.1152243,27.5939638 20.2618428,27.2250995 20.4240731,26.8647811 L20.345088,27.0439391 C20.3899401,26.9402428 20.4360767,26.8372321 20.4834778,26.7349269 L20.4240731,26.8647811 C20.461061,26.78263 20.4988604,26.7009231 20.5374612,26.6196707 L20.4834778,26.7349269 C20.5344734,26.6248636 20.5869326,26.515617 20.6408302,26.4072119 L20.5374612,26.6196707 C20.5871241,26.5151329 20.6381134,26.4113474 20.6904074,26.308336 L20.6408302,26.4072119 C20.681671,26.3250682 20.7233378,26.2434076 20.7658197,26.1622412 L20.7658807,26.1619302 C20.8435258,26.013775 20.923959,25.866962 21.0070529,25.7218685 C21.2050227,25.3759931 21.4182299,25.0398756 21.6456589,24.7144306 L21.5286537,24.8848257 C21.5876708,24.7975143 21.6476996,24.7109431 21.7087233,24.6251289 L21.6456589,24.7144306 C21.6993229,24.6376387 21.7537788,24.5614411 21.8090146,24.4858495 L21.7087233,24.6251289 C21.7826333,24.5211934 21.8580028,24.4183683 21.9348018,24.3166836 L21.8090146,24.4858495 C21.8722751,24.3992759 21.9365587,24.3134973 22.0018475,24.2285315 L22.0016895,24.2288802 C22.3179789,23.8171232 22.6576794,23.4247699 23.0189296,23.053491 L22.8296293,23.2521975 C22.9033796,23.1732135 22.9780829,23.095131 23.0537208,23.0179683 L23.0189296,23.053491 C23.083529,22.9870982 23.1488175,22.9213793 23.2147836,22.8563459 L23.0537208,23.0179683 C23.131055,22.9390752 23.2093662,22.8611436 23.2886348,22.7841931 L23.2147836,22.8563459 C23.2821211,22.7899605 23.3501645,22.7242893 23.4189017,22.6593447 L23.2886348,22.7841931 C23.3852399,22.6904132 23.4832671,22.5980904 23.582681,22.5072602 L23.4189017,22.6593447 C23.4912637,22.5909753 23.5643945,22.523411 23.6382797,22.4566663 L23.582681,22.5072602 C23.6715916,22.4260264 23.7616113,22.3459865 23.8527148,22.2671658 L23.8525967,22.2671923 C23.8915062,22.2336043 23.9304941,22.2002638 23.9696766,22.1671464 L24.00025,22.1417324 Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1" viewBox="0 0 48 48"><title>illustration/comments</title><g id="illustration/comments" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"><path id="Path" fill="#96D07C" d="M2.52730803,17.9196415 C2.44329744,17.9745167 2.36370847,18.000488 2.29303375,18.000488 C2.1197031,18.000488 2,17.8443588 2,17.5752855 L2,4 C2,1.790861 3.790861,3.23296945e-13 6,3.23296945e-13 L33.9995117,3.23296945e-13 C36.2086507,3.23296945e-13 37.9995117,1.790861 37.9995117,4 L37.9995117,9.999512 C37.9995117,12.208651 36.2086507,13.999512 33.9995117,13.999512 L8,13.999512 C7.83499225,13.999512 7.6723181,13.9895206 7.51254954,13.9701099 L2.52730803,17.9196415 Z"/><path id="Path" fill="#73E1E0" d="M7.51066,44.9703679 L2.52730803,47.9186655 C2.44329744,47.9735407 2.36370847,47.999512 2.29303375,47.999512 C2.1197031,47.999512 2,47.8433828 2,47.5743095 L2,35 C2,32.790861 3.790861,31 6,31 L26,31 C28.209139,31 30,32.790861 30,35 L30,41 C30,43.209139 28.209139,45 26,45 L8,45 C7.8343417,45 7.67103544,44.9899297 7.51066,44.9703679 Z"/><path id="Path" fill="#FFD476" d="M46,19.5 L46,33.0747975 C46,33.3438708 45.8802969,33.5 45.7069663,33.5 C45.6362915,33.5 45.5567026,33.4740287 45.472692,33.4191535 L40.4887103,29.4704446 C40.3285371,29.489956 40.1654415,29.5 40,29.5 L18,29.5 C15.790861,29.5 14,27.709139 14,25.5 L14,19.5 C14,17.290861 15.790861,15.5 18,15.5 L42,15.5 C44.209139,15.5 46,17.290861 46,19.5 Z"/></g></svg>
Binary file
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1" viewBox="0 0 48 48"><title>illustration/direction</title><g id="illustration/direction" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"><path id="Combined-Shape" fill="#FFD476" d="M23.4917015,33.6030641 L2.93840258,31.4321033 C2.38917316,31.3740904 1.99096346,30.8818233 2.04897631,30.3325939 C2.0747515,30.0885705 2.18934861,29.8625419 2.37095722,29.6975265 L34.2609105,0.721285325 C34.6696614,0.349881049 35.3021022,0.38015648 35.6735064,0.788907393 C35.9232621,1.06377731 36.0001133,1.45442096 35.8730901,1.80341447 L24.5364357,32.9506164 C24.3793473,33.3822133 23.9484565,33.6513092 23.4917015,33.6030641 L23.4917015,33.6030641 Z"/><path id="Combined-Shape-Copy" fill="#FFC445" d="M24.3163597,33.2881029 C24.0306575,33.0138462 23.9337246,32.5968232 24.069176,32.2246735 L35.091923,1.9399251 C35.2266075,1.56988243 35.5659249,1.31333613 35.9586669,1.28460955 C36.5094802,1.24432106 36.9886628,1.65818318 37.0289513,2.20899647 L40.2437557,46.1609256 C40.2644355,46.4436546 40.1641446,46.7218752 39.9678293,46.9263833 C39.5853672,47.3248067 38.9523344,47.3377458 38.5539111,46.9552837 L24.3163597,33.2881029 L24.3163597,33.2881029 Z"/></g></svg>
@@ -0,0 +1,4 @@
1
+ <svg width="78" height="78" viewBox="0 0 78 78" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M75.2314 0.00133492C77.3625 -0.0334449 78.0882 0.604187 77.9845 2.76054C77.8232 5.89072 77.7887 9.05569 77.9845 12.1859C78.1343 14.5741 77.2012 15.119 75.0125 15.1074C64.138 15.0262 53.2634 15.0958 42.3889 15.061C39.1403 15.0494 35.9033 15.3277 32.7815 16.1044C22.8746 18.597 15.3638 28.6367 15.4905 38.9664C15.6172 49.5278 23.0359 59.1503 32.9428 61.7587C35.7996 62.5123 38.6795 62.6398 41.5825 62.6398C52.6759 62.6398 63.7693 62.7094 74.8512 62.5935C77.2358 62.5703 78.1228 63.2079 77.9731 65.6773C77.7772 68.9118 77.8693 72.1811 77.9385 75.4272C77.973 77.0503 77.4201 77.8502 75.7267 77.8154C61.6267 77.514 47.4805 78.7893 33.4496 77.1198C13.4976 74.7548 -0.383585 57.7011 0.00808225 37.5172C0.39975 17.4724 17.564 0.523032 37.1013 0.0593004C43.1376 -0.0914122 68.55 0.128861 75.2314 0.00133492Z" fill="#7001E9"/>
3
+ <path d="M40.131 46.2933C37.8501 46.3397 37.1244 45.5397 37.2396 43.2791C37.4124 40.0445 37.3548 36.7868 37.2626 33.5407C37.2166 31.906 37.6658 31.2104 39.4053 31.222C51.5585 31.28 63.7117 31.2684 75.865 31.2336C77.3971 31.2336 77.9615 31.7785 77.9385 33.3204C77.8694 36.7868 77.8233 40.2532 77.95 43.708C78.0307 45.7716 77.1782 46.3165 75.289 46.2933C69.3794 46.2006 45.9369 46.1658 40.131 46.2933Z" fill="#7001E9"/>
4
+ </svg>
@@ -0,0 +1,4 @@
1
+ <svg width="500" height="500" viewBox="0 0 500 500" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M482.252 0.00855719C495.914 -0.214391 500.565 3.87299 499.901 17.6958C498.867 37.761 498.645 58.0493 499.901 78.1146C500.861 93.4236 494.88 96.9165 480.849 96.8422C411.141 96.322 341.432 96.7679 271.724 96.5449C250.9 96.4706 230.149 98.2542 210.138 103.233C146.632 119.211 98.4857 183.569 99.2979 249.784C100.11 317.486 147.666 379.168 211.172 395.889C229.485 400.72 247.946 401.537 266.554 401.537C337.666 401.537 408.778 401.983 479.815 401.24C495.101 401.092 500.787 405.179 499.827 421.008C498.572 441.742 499.163 462.699 499.606 483.508C499.827 493.912 496.283 499.04 485.428 498.817C395.043 496.885 304.362 505.059 214.421 494.358C86.5232 479.197 -2.45888 369.879 0.0518093 240.495C2.5625 112.003 112.59 3.35277 237.829 0.380131C276.523 -0.585976 439.423 0.826032 482.252 0.00855719Z" fill="#7001E9"/>
3
+ <path d="M257.25 296.752C242.629 297.049 237.977 291.921 238.715 277.43C239.823 256.696 239.454 235.813 238.863 215.004C238.568 204.526 241.448 200.067 252.598 200.141C330.503 200.513 408.409 200.439 486.314 200.216C496.135 200.216 499.753 203.708 499.606 213.593C499.163 235.813 498.867 258.033 499.68 280.18C500.197 293.408 494.732 296.901 482.622 296.752C444.74 296.157 294.467 295.934 257.25 296.752Z" fill="#7001E9"/>
4
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="200" height="44" viewBox="0 0 200 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M42.4382 0.000753033C43.6404 -0.0188664 44.0498 0.340823 43.9913 1.55723C43.9003 3.32297 43.8808 5.10834 43.9913 6.87408C44.0757 8.22128 43.5494 8.52865 42.3147 8.52211C36.1804 8.47633 30.046 8.51557 23.9117 8.49595C22.0792 8.48941 20.2531 8.64637 18.4921 9.08453C12.9036 10.4906 8.66674 16.1541 8.73822 21.981C8.8097 27.9388 12.9946 33.3668 18.5831 34.8383C20.1947 35.2634 21.8192 35.3353 23.4568 35.3353C29.7146 35.3353 35.9724 35.3745 42.2238 35.3091C43.5689 35.2961 44.0693 35.6557 43.9848 37.0487C43.8743 38.8733 43.9263 40.7175 43.9653 42.5487C43.9848 43.4643 43.6729 43.9155 42.7176 43.8959C34.7638 43.7258 26.7839 44.4452 18.869 43.5035C7.61404 42.1694 -0.216382 32.5493 0.00455922 21.1635C0.2255 9.85623 9.90791 0.295044 20.929 0.0334515C24.334 -0.0515659 38.6692 0.0726908 42.4382 0.000753033Z" fill="#7001E9"/>
3
+ <path d="M22.638 26.1142C21.3514 26.1403 20.942 25.6891 21.0069 24.4138C21.1044 22.5892 21.0719 20.7515 21.02 18.9204C20.994 17.9983 21.2474 17.6059 22.2286 17.6124C29.0843 17.6451 35.94 17.6386 42.7956 17.619C43.6599 17.619 43.9783 17.9263 43.9653 18.7961C43.9263 20.7515 43.9003 22.7069 43.9718 24.6558C44.0173 25.8199 43.5364 26.1273 42.4707 26.1142C39.1371 26.0619 25.9131 26.0422 22.638 26.1142Z" fill="#7001E9"/>
4
+ <path d="M76.5313 23.7868C76.2128 21.8045 75.2863 20.1853 73.723 18.8731C72.1596 17.5609 70.3646 16.9188 68.3091 16.9188C66.0219 16.9188 64.0532 17.7005 62.4319 19.2639C60.8106 20.8274 60 22.7259 60 24.9314C60 27.1091 60.8106 28.9797 62.4319 30.571C64.0822 32.1624 66.0219 32.9441 68.3091 32.9441C70.5962 32.9441 72.6518 32.0507 74.5047 30.2639L73.7519 29.5939C72.3044 31.1853 70.4804 31.967 68.3091 31.967C66.3114 31.967 64.5743 31.269 63.1557 29.901C61.7371 28.5051 61.0133 26.8578 61.0133 24.9314C61.0133 23.0609 61.766 21.4137 63.2426 20.0177C64.748 18.5939 66.4272 17.8959 68.3091 17.8959C69.8435 17.8959 71.2911 18.3426 72.5939 19.2639C73.8967 20.1573 74.7942 21.3299 75.2574 22.7817H64.4296V23.7868H76.5313Z" fill="white"/>
5
+ <path d="M82.2754 11H81.1752V32.6649H82.2754V11Z" fill="white"/>
6
+ <path d="M103.447 23.7868C103.129 21.8045 102.202 20.1853 100.639 18.8731C99.0754 17.5609 97.2804 16.9188 95.2248 16.9188C92.9377 16.9188 90.969 17.7005 89.3477 19.2639C87.7264 20.8274 86.9158 22.7259 86.9158 24.9314C86.9158 27.1091 87.7264 28.9797 89.3477 30.571C90.9979 32.1624 92.9377 32.9441 95.2248 32.9441C97.512 32.9441 99.5675 32.0507 101.42 30.2639L100.668 29.5939C99.2201 31.1853 97.3962 31.967 95.2248 31.967C93.2272 31.967 91.4901 31.269 90.0715 29.901C88.6529 28.5051 87.9291 26.8578 87.9291 24.9314C87.9291 23.0609 88.6818 21.4137 90.1583 20.0177C91.6638 18.5939 93.343 17.8959 95.2248 17.8959C96.7592 17.8959 98.2068 18.3426 99.5096 19.2639C100.812 20.1573 101.71 21.3299 102.173 22.7817H91.3453V23.7868H103.447Z" fill="white"/>
7
+ <path d="M113.067 31.0177L105.888 17.1421H104.701L113.039 33L121.434 17.1421H120.218L113.067 31.0177Z" fill="white"/>
8
+ <path d="M133.856 31.4365C132.93 31.7995 131.974 31.9949 131.019 31.9949C128.934 31.9949 127.197 31.2969 125.779 29.8731C124.389 28.4492 123.694 26.802 123.694 24.9314C123.694 22.9213 124.418 21.2462 125.895 19.9061C127.371 18.538 129.079 17.868 131.019 17.868C132.959 17.868 134.638 18.538 136.114 19.8781C137.591 21.2183 138.344 22.8375 138.344 24.736V32.6649H139.357V24.9314C139.357 22.6142 138.517 20.7157 136.838 19.1802C135.188 17.6446 133.248 16.8908 131.019 16.8908C128.674 16.8908 126.705 17.7005 125.084 19.2919C123.492 20.8832 122.681 22.7538 122.681 24.9314C122.681 27.2208 123.521 29.1472 125.2 30.6827C126.879 32.2183 128.819 32.9721 131.019 32.9721C132.148 32.9721 133.219 32.7487 134.261 32.3299L133.856 31.4365Z" fill="white"/>
9
+ <path d="M152.351 31.967C150.469 31.967 148.79 31.269 147.284 29.901C145.808 28.533 145.055 26.8858 145.055 24.9594V18.1472H148.529V17.1421H145.055V11H143.984V24.9314C144.013 27.137 144.853 29.0355 146.474 30.599C148.095 32.1624 150.064 32.9441 152.351 32.9441V31.967Z" fill="white"/>
10
+ <path d="M156.916 11H155.816V14.4898H156.916V11ZM156.916 17.1421H155.816V32.6649H156.916V17.1421Z" fill="white"/>
11
+ <path d="M178.174 24.9035C178.174 22.7259 177.364 20.8553 175.713 19.2639C174.092 17.6726 172.152 16.8908 169.865 16.8908C167.578 16.8908 165.609 17.6726 163.988 19.2639C162.367 20.8274 161.556 22.6979 161.556 24.9035C161.556 27.1091 162.367 28.9797 163.988 30.571C165.638 32.1345 167.578 32.9162 169.865 32.9162C172.152 32.9162 174.092 32.1345 175.713 30.571C177.364 28.9797 178.174 27.1091 178.174 24.9035ZM177.161 24.9035C177.161 26.8299 176.437 28.5051 175.019 29.8731C173.6 31.2411 171.863 31.9391 169.865 31.9391C167.868 31.9391 166.13 31.2411 164.712 29.8731C163.293 28.5051 162.569 26.8299 162.569 24.9035C162.569 23.0051 163.293 21.3578 164.712 19.9619C166.159 18.566 167.868 17.868 169.865 17.868C171.863 17.868 173.571 18.566 174.99 19.9619C176.437 21.3578 177.161 23.0051 177.161 24.9035Z" fill="white"/>
12
+ <path d="M199 24.8756C199 22.67 198.16 20.7995 196.51 19.236C194.86 17.6446 192.891 16.8629 190.604 16.8629C188.317 16.8629 186.348 17.6446 184.698 19.236C183.048 20.7995 182.237 22.67 182.237 24.8756V32.6649H183.308V24.8756C183.308 22.9492 184.032 21.302 185.48 19.934C186.927 18.538 188.635 17.8401 190.604 17.8401C192.602 17.8401 194.31 18.538 195.757 19.934C197.205 21.302 197.929 22.9492 197.929 24.8756V32.6649H199V24.8756Z" fill="white"/>
13
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M77.0007 24.1868H64.0296V22.3817H74.6848C74.2151 21.2575 73.4403 20.3294 72.3677 19.5938L72.3629 19.5906C71.1282 18.7174 69.7614 18.2959 68.3091 18.2959C66.5391 18.2959 64.9559 18.9478 63.5174 20.3084C62.1122 21.6368 61.4133 23.1821 61.4133 24.9314C61.4133 26.7432 62.0886 28.2891 63.4349 29.6145C64.7778 30.9088 66.4145 31.567 68.3091 31.567C70.3717 31.567 72.0869 30.8299 73.456 29.3247L73.7223 29.032L75.0931 30.2522L74.7823 30.5519C72.8656 32.4002 70.7138 33.3441 68.3091 33.3441C65.9183 33.3441 63.8791 32.5222 62.1543 30.859L62.1517 30.8565C60.4581 29.1941 59.6 27.2223 59.6 24.9314C59.6 22.6155 60.4561 20.6136 62.1543 18.976C63.8519 17.3389 65.9209 16.5188 68.3091 16.5188C70.4567 16.5188 72.3432 17.1928 73.9801 18.5667C75.6156 19.9394 76.5922 21.6443 76.9262 23.7233L77.0007 24.1868ZM63.1557 29.901C61.7371 28.5051 61.0133 26.8578 61.0133 24.9314C61.0133 23.0609 61.766 21.4137 63.2426 20.0177C64.748 18.5939 66.4272 17.8959 68.3091 17.8959C69.8435 17.8959 71.2911 18.3426 72.5939 19.2639C73.7748 20.0738 74.6228 21.113 75.1161 22.3817C75.167 22.5126 75.2141 22.6459 75.2574 22.7817H64.4296V23.7868H76.5313C76.5096 23.6518 76.4851 23.5184 76.4577 23.3868C76.0836 21.5854 75.1799 20.0959 73.723 18.8731C72.1596 17.5609 70.3646 16.9188 68.3091 16.9188C66.0219 16.9188 64.0532 17.7005 62.4319 19.2639C60.8106 20.8274 60 22.7259 60 24.9314C60 27.1091 60.8106 28.9797 62.4319 30.571C64.0822 32.1624 66.0219 32.9441 68.3091 32.9441C70.4761 32.9441 72.4352 32.1421 74.211 30.5381C74.3095 30.4492 74.4073 30.3578 74.5047 30.2639L73.7519 29.5939C73.7519 29.5939 73.7519 29.5939 73.7519 29.5939C72.3044 31.1853 70.4804 31.967 68.3091 31.967C66.3114 31.967 64.5743 31.269 63.1557 29.901ZM82.6754 10.6V33.065H80.7752V10.6H82.6754ZM103.916 24.1868H90.9453V22.3817H101.601C101.131 21.2575 100.356 20.3294 99.2834 19.5938L99.2787 19.5906C98.0439 18.7174 96.6772 18.2959 95.2248 18.2959C93.4549 18.2959 91.8717 18.9478 90.4332 20.3084C89.028 21.6368 88.3291 23.1821 88.3291 24.9314C88.3291 26.7432 89.0043 28.2891 90.3507 29.6145C91.6936 30.9088 93.3302 31.567 95.2248 31.567C97.2875 31.567 99.0027 30.8299 100.372 29.3247L100.638 29.032L102.009 30.2522L101.698 30.5519C99.7813 32.4002 97.6295 33.3441 95.2248 33.3441C92.8341 33.3441 90.7948 32.5222 89.07 30.859L89.0675 30.8565C87.3738 29.1941 86.5158 27.2223 86.5158 24.9314C86.5158 22.6155 87.3719 20.6136 89.07 18.976C90.7677 17.3389 92.8366 16.5188 95.2248 16.5188C97.3725 16.5188 99.259 17.1928 100.896 18.5667C102.531 19.9394 103.508 21.6443 103.842 23.7233L103.916 24.1868ZM90.0715 29.901C88.6529 28.5051 87.9291 26.8578 87.9291 24.9314C87.9291 23.0609 88.6818 21.4137 90.1583 20.0177C91.6638 18.5939 93.343 17.8959 95.2248 17.8959C96.7592 17.8959 98.2068 18.3426 99.5096 19.2639C100.691 20.0738 101.539 21.113 102.032 22.3817C102.083 22.5126 102.13 22.6459 102.173 22.7817H91.3453V23.7868H103.447C103.425 23.6518 103.401 23.5184 103.373 23.3868C102.999 21.5854 102.096 20.0959 100.639 18.8731C99.0754 17.5609 97.2804 16.9188 95.2248 16.9188C92.9377 16.9188 90.969 17.7005 89.3477 19.2639C87.7264 20.8274 86.9158 22.7259 86.9158 24.9314C86.9158 27.1091 87.7264 28.9797 89.3477 30.571C90.9979 32.1624 92.9377 32.9441 95.2248 32.9441C97.3919 32.9441 99.351 32.1421 101.127 30.5381C101.225 30.4492 101.323 30.3578 101.42 30.2639L100.668 29.5939C100.668 29.5939 100.668 29.5939 100.668 29.5939C99.2201 31.1853 97.3962 31.967 95.2248 31.967C93.2272 31.967 91.4901 31.269 90.0715 29.901ZM105.888 17.1421L113.067 31.0177L120.218 17.1421H121.434L113.039 33L104.701 17.1421H105.888ZM113.067 30.146L119.975 16.7421H122.099L113.037 33.8571L104.038 16.7421H106.131L113.067 30.146ZM134.064 30.9256L134.798 32.5453L134.411 32.7011C133.325 33.1375 132.203 33.3721 131.019 33.3721C128.717 33.3721 126.681 32.5795 124.93 30.9779C123.167 29.3655 122.281 27.3315 122.281 24.9314C122.281 22.6411 123.139 20.6706 124.801 19.0089L124.804 19.0064C126.501 17.3407 128.57 16.4908 131.019 16.4908C133.348 16.4908 135.385 17.2822 137.109 18.8861C138.871 20.4978 139.757 22.5033 139.757 24.9314V33.065H137.944V24.736C137.944 22.9587 137.245 21.4444 135.846 20.1743C134.439 18.8978 132.855 18.268 131.019 18.268C129.182 18.268 127.571 18.8985 126.166 20.1995L126.163 20.2023C124.773 21.4644 124.094 23.0309 124.094 24.9314C124.094 26.6899 124.743 28.2383 126.064 29.5924C127.403 30.936 129.036 31.5949 131.019 31.5949C131.919 31.5949 132.825 31.4107 133.71 31.0641L134.064 30.9256ZM125.779 29.8731C127.197 31.2969 128.934 31.9949 131.019 31.9949C131.974 31.9949 132.93 31.7995 133.856 31.4365L134.261 32.3299C134.137 32.38 134.012 32.4272 133.887 32.4716C132.962 32.7989 132.013 32.9721 131.019 32.9721C128.819 32.9721 126.879 32.2183 125.2 30.6827C123.521 29.1472 122.681 27.2208 122.681 24.9314C122.681 22.7538 123.492 20.8832 125.084 19.2919C126.705 17.7005 128.674 16.8908 131.019 16.8908C133.248 16.8908 135.188 17.6446 136.838 19.1802C138.517 20.7157 139.357 22.6142 139.357 24.9314V32.6649H138.344V24.736C138.344 22.8375 137.591 21.2183 136.114 19.8781C134.638 18.538 132.959 17.868 131.019 17.868C129.079 17.868 127.371 18.538 125.895 19.9061C124.418 21.2462 123.694 22.9213 123.694 24.9314C123.694 26.802 124.389 28.4492 125.779 29.8731ZM152.751 31.567V33.3441H152.351C149.963 33.3441 147.894 32.524 146.196 30.8869C144.501 29.2518 143.614 27.2526 143.584 24.9367L143.584 24.9314L143.584 10.6H145.455V16.7421H148.929V18.5472H145.455V24.9594C145.455 26.7662 146.155 28.3089 147.555 29.6063C148.995 30.9145 150.58 31.567 152.351 31.567H152.751ZM147.284 29.901C148.79 31.269 150.469 31.967 152.351 31.967V32.9441C152.216 32.9441 152.083 32.9414 151.951 32.936C149.834 32.8495 148 32.0705 146.474 30.599C144.853 29.0355 144.013 27.137 143.984 24.9314V11H145.055V17.1421H148.529V18.1472H145.055V24.9594C145.055 26.8858 145.808 28.533 147.284 29.901ZM157.316 10.6V14.8898H155.416V10.6H157.316ZM157.316 16.7421V33.065H155.416V16.7421H157.316ZM163.988 30.571C165.638 32.1345 167.578 32.9162 169.865 32.9162C172.152 32.9162 174.092 32.1345 175.713 30.571C177.364 28.9797 178.174 27.1091 178.174 24.9035C178.174 22.7259 177.364 20.8553 175.713 19.2639C174.092 17.6726 172.152 16.8908 169.865 16.8908C167.578 16.8908 165.609 17.6726 163.988 19.2639C162.367 20.8274 161.556 22.6979 161.556 24.9035C161.556 27.1091 162.367 28.9797 163.988 30.571ZM163.709 18.977C165.407 17.3109 167.477 16.4908 169.865 16.4908C172.255 16.4908 174.295 17.312 175.992 18.977C177.716 20.6399 178.574 22.6125 178.574 24.9035C178.574 27.2221 177.716 29.1953 175.991 30.859C174.294 32.495 172.255 33.3162 169.865 33.3162C167.475 33.3162 165.437 32.4947 163.713 30.8614L163.708 30.8566C162.014 29.1936 161.156 27.2216 161.156 24.9035C161.156 22.5865 162.013 20.6133 163.709 18.977ZM174.712 20.2498L174.709 20.247C173.366 18.925 171.758 18.268 169.865 18.268C167.973 18.268 166.365 18.9242 164.991 20.2485C163.644 21.5745 162.969 23.1207 162.969 24.9035C162.969 26.7182 163.647 28.2903 164.989 29.5851C166.333 30.8804 167.97 31.5391 169.865 31.5391C171.76 31.5391 173.398 30.8804 174.741 29.5851C176.084 28.2903 176.761 26.7182 176.761 24.9035C176.761 23.1206 176.086 21.5754 174.712 20.2498ZM185.48 19.934C184.032 21.302 183.308 22.9492 183.308 24.8756V32.6649H182.237V24.8756C182.237 22.67 183.048 20.7995 184.698 19.236C186.348 17.6446 188.317 16.8629 190.604 16.8629C192.891 16.8629 194.86 17.6446 196.51 19.236C198.16 20.7995 199 22.67 199 24.8756V32.6649H197.929V24.8756C197.929 22.9492 197.205 21.302 195.757 19.934C194.31 18.538 192.602 17.8401 190.604 17.8401C188.635 17.8401 186.927 18.538 185.48 19.934ZM196.787 18.9473C195.061 17.2835 192.993 16.4629 190.604 16.4629C188.215 16.4629 186.147 17.2834 184.422 18.9468C182.694 20.5837 181.837 22.5581 181.837 24.8756V33.065H183.708V24.8756C183.708 23.0634 184.384 21.5201 185.754 20.2247L185.757 20.2219C187.132 18.8962 188.741 18.2401 190.604 18.2401C192.497 18.2401 194.106 18.8967 195.48 20.2219L195.483 20.2247C196.853 21.5201 197.529 23.0634 197.529 24.8756V33.065H199.4V24.8756C199.4 22.5546 198.511 20.5815 196.787 18.9473ZM81.1752 11H82.2754V32.6649H81.1752V11ZM155.816 11H156.916V14.4898H155.816V11ZM155.816 17.1421H156.916V32.6649H155.816V17.1421ZM177.161 24.9035C177.161 26.8299 176.437 28.5051 175.019 29.8731C173.6 31.2411 171.863 31.9391 169.865 31.9391C167.868 31.9391 166.13 31.2411 164.712 29.8731C163.293 28.5051 162.569 26.8299 162.569 24.9035C162.569 23.0051 163.293 21.3578 164.712 19.9619C166.159 18.566 167.868 17.868 169.865 17.868C171.863 17.868 173.571 18.566 174.99 19.9619C176.437 21.3578 177.161 23.0051 177.161 24.9035Z" fill="white"/>
14
+ </svg>
@@ -0,0 +1,14 @@
1
+ <svg width="200" height="44" viewBox="0 0 200 44" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <path d="M42.4382 0.000753033C43.6404 -0.0188664 44.0498 0.340823 43.9913 1.55723C43.9003 3.32297 43.8808 5.10834 43.9913 6.87408C44.0757 8.22128 43.5494 8.52865 42.3147 8.52211C36.1804 8.47633 30.046 8.51557 23.9117 8.49595C22.0792 8.48941 20.2531 8.64637 18.4921 9.08453C12.9036 10.4906 8.66674 16.1541 8.73822 21.981C8.8097 27.9388 12.9946 33.3668 18.5831 34.8383C20.1947 35.2634 21.8192 35.3353 23.4568 35.3353C29.7146 35.3353 35.9724 35.3745 42.2238 35.3091C43.5689 35.2961 44.0693 35.6557 43.9848 37.0487C43.8743 38.8733 43.9263 40.7175 43.9653 42.5487C43.9848 43.4643 43.6729 43.9155 42.7176 43.8959C34.7638 43.7258 26.7839 44.4452 18.869 43.5035C7.61404 42.1694 -0.216382 32.5493 0.00455922 21.1635C0.2255 9.85623 9.90791 0.295044 20.929 0.0334515C24.334 -0.0515659 38.6692 0.0726908 42.4382 0.000753033Z" fill="#7001E9"/>
3
+ <path d="M22.638 26.1142C21.3514 26.1403 20.942 25.6891 21.0069 24.4138C21.1044 22.5892 21.0719 20.7515 21.02 18.9204C20.994 17.9983 21.2474 17.6059 22.2286 17.6124C29.0843 17.6451 35.94 17.6386 42.7956 17.619C43.6599 17.619 43.9783 17.9263 43.9653 18.7961C43.9263 20.7515 43.9003 22.7069 43.9718 24.6558C44.0173 25.8199 43.5364 26.1273 42.4707 26.1142C39.1371 26.0619 25.9131 26.0422 22.638 26.1142Z" fill="#7001E9"/>
4
+ <path d="M76.5313 23.7868C76.2128 21.8045 75.2863 20.1853 73.723 18.8731C72.1596 17.5609 70.3646 16.9188 68.3091 16.9188C66.0219 16.9188 64.0532 17.7005 62.4319 19.2639C60.8106 20.8274 60 22.7259 60 24.9314C60 27.1091 60.8106 28.9797 62.4319 30.571C64.0821 32.1624 66.0219 32.9441 68.3091 32.9441C70.5962 32.9441 72.6518 32.0507 74.5047 30.2639L73.7519 29.5939C72.3043 31.1853 70.4804 31.967 68.3091 31.967C66.3114 31.967 64.5743 31.269 63.1557 29.901C61.7371 28.5051 61.0133 26.8578 61.0133 24.9314C61.0133 23.0609 61.766 21.4137 63.2426 20.0177C64.748 18.5939 66.4272 17.8959 68.3091 17.8959C69.8435 17.8959 71.291 18.3426 72.5939 19.2639C73.8967 20.1573 74.7942 21.3299 75.2574 22.7817H64.4296V23.7868H76.5313Z" fill="#3D3D3F"/>
5
+ <path d="M82.2754 11H81.1752V32.6649H82.2754V11Z" fill="#3D3D3F"/>
6
+ <path d="M103.447 23.7868C103.129 21.8045 102.202 20.1853 100.639 18.8731C99.0754 17.5609 97.2804 16.9188 95.2248 16.9188C92.9377 16.9188 90.969 17.7005 89.3477 19.2639C87.7264 20.8274 86.9158 22.7259 86.9158 24.9314C86.9158 27.1091 87.7264 28.9797 89.3477 30.571C90.9979 32.1624 92.9377 32.9441 95.2248 32.9441C97.512 32.9441 99.5675 32.0507 101.42 30.2639L100.668 29.5939C99.2201 31.1853 97.3962 31.967 95.2248 31.967C93.2272 31.967 91.4901 31.269 90.0715 29.901C88.6528 28.5051 87.9291 26.8578 87.9291 24.9314C87.9291 23.0609 88.6818 21.4137 90.1583 20.0177C91.6638 18.5939 93.343 17.8959 95.2248 17.8959C96.7592 17.8959 98.2068 18.3426 99.5096 19.2639C100.812 20.1573 101.71 21.3299 102.173 22.7817H91.3453V23.7868H103.447Z" fill="#3D3D3F"/>
7
+ <path d="M113.067 31.0177L105.888 17.1421H104.701L113.039 33L121.434 17.1421H120.218L113.067 31.0177Z" fill="#3D3D3F"/>
8
+ <path d="M133.856 31.4365C132.93 31.7995 131.974 31.9949 131.019 31.9949C128.934 31.9949 127.197 31.2969 125.779 29.8731C124.389 28.4492 123.694 26.802 123.694 24.9314C123.694 22.9213 124.418 21.2462 125.895 19.9061C127.371 18.538 129.079 17.868 131.019 17.868C132.959 17.868 134.638 18.538 136.114 19.8781C137.591 21.2183 138.344 22.8375 138.344 24.736V32.6649H139.357V24.9314C139.357 22.6142 138.517 20.7157 136.838 19.1802C135.188 17.6446 133.248 16.8908 131.019 16.8908C128.674 16.8908 126.705 17.7005 125.084 19.2919C123.492 20.8832 122.681 22.7538 122.681 24.9314C122.681 27.2208 123.521 29.1472 125.2 30.6827C126.879 32.2183 128.819 32.9721 131.019 32.9721C132.148 32.9721 133.219 32.7487 134.261 32.3299L133.856 31.4365Z" fill="#3D3D3F"/>
9
+ <path d="M152.351 31.967C150.469 31.967 148.79 31.269 147.284 29.901C145.808 28.533 145.055 26.8858 145.055 24.9594V18.1472H148.529V17.1421H145.055V11H143.984V24.9314C144.013 27.137 144.853 29.0355 146.474 30.599C148.095 32.1624 150.064 32.9441 152.351 32.9441V31.967Z" fill="#3D3D3F"/>
10
+ <path d="M156.916 11H155.816V14.4898H156.916V11ZM156.916 17.1421H155.816V32.6649H156.916V17.1421Z" fill="#3D3D3F"/>
11
+ <path d="M178.174 24.9035C178.174 22.7259 177.364 20.8553 175.713 19.2639C174.092 17.6726 172.152 16.8908 169.865 16.8908C167.578 16.8908 165.609 17.6726 163.988 19.2639C162.367 20.8274 161.556 22.6979 161.556 24.9035C161.556 27.1091 162.367 28.9797 163.988 30.571C165.638 32.1345 167.578 32.9162 169.865 32.9162C172.152 32.9162 174.092 32.1345 175.713 30.571C177.364 28.9797 178.174 27.1091 178.174 24.9035ZM177.161 24.9035C177.161 26.8299 176.437 28.5051 175.019 29.8731C173.6 31.2411 171.863 31.9391 169.865 31.9391C167.868 31.9391 166.13 31.2411 164.712 29.8731C163.293 28.5051 162.569 26.8299 162.569 24.9035C162.569 23.0051 163.293 21.3578 164.712 19.9619C166.159 18.566 167.868 17.868 169.865 17.868C171.863 17.868 173.571 18.566 174.99 19.9619C176.437 21.3578 177.161 23.0051 177.161 24.9035Z" fill="#3D3D3F"/>
12
+ <path d="M199 24.8756C199 22.67 198.16 20.7995 196.51 19.236C194.86 17.6446 192.891 16.8629 190.604 16.8629C188.317 16.8629 186.348 17.6446 184.698 19.236C183.048 20.7995 182.237 22.67 182.237 24.8756V32.6649H183.308V24.8756C183.308 22.9492 184.032 21.302 185.48 19.934C186.927 18.538 188.635 17.8401 190.604 17.8401C192.602 17.8401 194.31 18.538 195.757 19.934C197.205 21.302 197.929 22.9492 197.929 24.8756V32.6649H199V24.8756Z" fill="#3D3D3F"/>
13
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M77.0006 24.1868H64.0296V22.3817H74.6848C74.2151 21.2575 73.4403 20.3294 72.3676 19.5938L72.3629 19.5906C71.1281 18.7174 69.7614 18.2959 68.3091 18.2959C66.5391 18.2959 64.9559 18.9478 63.5174 20.3084C62.1122 21.6368 61.4133 23.1821 61.4133 24.9314C61.4133 26.7431 62.0885 28.289 63.4348 29.6144C64.7777 30.9088 66.4144 31.567 68.3091 31.567C70.3717 31.567 72.0869 30.8299 73.456 29.3247L73.7223 29.032L75.0931 30.2522L74.7823 30.5519C72.8656 32.4002 70.7138 33.3441 68.3091 33.3441C65.9183 33.3441 63.879 32.5222 62.1543 30.859L62.1517 30.8565C60.4581 29.1941 59.6 27.2223 59.6 24.9314C59.6 22.6155 60.4561 20.6136 62.1543 18.976C63.8519 17.3389 65.9208 16.5188 68.3091 16.5188C70.4567 16.5188 72.3432 17.1928 73.9801 18.5667C75.6156 19.9394 76.5922 21.6443 76.9262 23.7233L77.0006 24.1868ZM63.1557 29.901C61.7371 28.5051 61.0133 26.8578 61.0133 24.9314C61.0133 23.0609 61.766 21.4137 63.2426 20.0177C64.748 18.5939 66.4272 17.8959 68.3091 17.8959C69.8435 17.8959 71.291 18.3426 72.5939 19.2639C73.7748 20.0738 74.6228 21.113 75.1161 22.3817C75.1669 22.5126 75.2141 22.6459 75.2574 22.7817H64.4296V23.7868H76.5313C76.5096 23.6518 76.4851 23.5184 76.4577 23.3868C76.0836 21.5854 75.1799 20.0959 73.723 18.8731C72.1596 17.5609 70.3646 16.9188 68.3091 16.9188C66.0219 16.9188 64.0532 17.7005 62.4319 19.2639C60.8106 20.8274 60 22.7259 60 24.9314C60 27.1091 60.8106 28.9797 62.4319 30.571C64.0821 32.1624 66.0219 32.9441 68.3091 32.9441C70.4761 32.9441 72.4352 32.1421 74.211 30.5381C74.3095 30.4492 74.4073 30.3578 74.5047 30.2639L73.7519 29.5939C72.3043 31.1853 70.4804 31.967 68.3091 31.967C66.3114 31.967 64.5743 31.269 63.1557 29.901ZM82.6754 10.6V33.0649H80.7752V10.6H82.6754ZM103.916 24.1868H90.9453V22.3817H101.601C101.131 21.2575 100.356 20.3294 99.2834 19.5938L99.2786 19.5906C98.0439 18.7174 96.6772 18.2959 95.2248 18.2959C93.4548 18.2959 91.8717 18.9478 90.4332 20.3084C89.028 21.6368 88.3291 23.1821 88.3291 24.9314C88.3291 26.7431 89.0043 28.2891 90.3506 29.6144C91.6935 30.9088 93.3302 31.567 95.2248 31.567C97.2875 31.567 99.0026 30.8299 100.372 29.3247L100.638 29.032L102.009 30.2522L101.698 30.5519C99.7813 32.4002 97.6295 33.3441 95.2248 33.3441C92.8341 33.3441 90.7948 32.5222 89.07 30.859L89.0675 30.8565C87.3738 29.1941 86.5158 27.2223 86.5158 24.9314C86.5158 22.6155 87.3719 20.6136 89.07 18.976C90.7676 17.3389 92.8366 16.5188 95.2248 16.5188C97.3725 16.5188 99.259 17.1928 100.896 18.5667C102.531 19.9394 103.508 21.6443 103.842 23.7233L103.916 24.1868ZM90.0715 29.901C88.6528 28.5051 87.9291 26.8578 87.9291 24.9314C87.9291 23.0609 88.6818 21.4137 90.1583 20.0177C91.6638 18.5939 93.343 17.8959 95.2248 17.8959C96.7592 17.8959 98.2068 18.3426 99.5096 19.2639C100.691 20.0738 101.539 21.113 102.032 22.3817C102.083 22.5126 102.13 22.6459 102.173 22.7817H91.3453V23.7868H103.447C103.425 23.6518 103.401 23.5184 103.373 23.3868C102.999 21.5854 102.096 20.0959 100.639 18.8731C99.0754 17.5609 97.2804 16.9188 95.2248 16.9188C92.9377 16.9188 90.969 17.7005 89.3477 19.2639C87.7264 20.8274 86.9158 22.7259 86.9158 24.9314C86.9158 27.1091 87.7264 28.9797 89.3477 30.571C90.9979 32.1624 92.9377 32.9441 95.2248 32.9441C97.3919 32.9441 99.351 32.1421 101.127 30.5381C101.225 30.4492 101.323 30.3578 101.42 30.2639L100.668 29.5939C99.2201 31.1853 97.3962 31.967 95.2248 31.967C93.2272 31.967 91.4901 31.269 90.0715 29.901ZM105.888 17.1421L113.067 31.0177L120.218 17.1421H121.434L113.039 33L104.701 17.1421H105.888ZM113.067 30.146L119.975 16.7421H122.099L113.037 33.8571L104.038 16.7421H106.131L113.067 30.146ZM134.064 30.9256L134.798 32.5453L134.411 32.7011C133.325 33.1375 132.203 33.3721 131.019 33.3721C128.717 33.3721 126.681 32.5795 124.93 30.9779C123.167 29.3655 122.281 27.3315 122.281 24.9314C122.281 22.6411 123.138 20.6706 124.801 19.0089L124.804 19.0064C126.501 17.3407 128.57 16.4908 131.019 16.4908C133.348 16.4908 135.385 17.2822 137.109 18.8862C138.871 20.4978 139.757 22.5033 139.757 24.9314V33.0649H137.944V24.736C137.944 22.9587 137.245 21.4444 135.846 20.1743C134.439 18.8978 132.855 18.268 131.019 18.268C129.182 18.268 127.571 18.8985 126.166 20.1995L126.163 20.2023C124.773 21.4644 124.094 23.0309 124.094 24.9314C124.094 26.6899 124.743 28.2383 126.064 29.5924C127.403 30.936 129.036 31.5949 131.019 31.5949C131.919 31.5949 132.825 31.4107 133.71 31.0641L134.064 30.9256ZM125.779 29.8731C127.197 31.2969 128.934 31.9949 131.019 31.9949C131.974 31.9949 132.93 31.7995 133.856 31.4365L134.261 32.3299C134.137 32.38 134.012 32.4272 133.887 32.4716C132.962 32.7989 132.013 32.9721 131.019 32.9721C128.819 32.9721 126.879 32.2183 125.2 30.6827C123.521 29.1472 122.681 27.2208 122.681 24.9314C122.681 22.7538 123.492 20.8832 125.084 19.2919C126.705 17.7005 128.674 16.8908 131.019 16.8908C133.248 16.8908 135.188 17.6446 136.838 19.1802C138.517 20.7157 139.357 22.6142 139.357 24.9314V32.6649H138.344V24.736C138.344 22.8375 137.591 21.2183 136.114 19.8781C134.638 18.538 132.959 17.868 131.019 17.868C129.079 17.868 127.371 18.538 125.895 19.9061C124.418 21.2462 123.694 22.9213 123.694 24.9314C123.694 26.802 124.389 28.4492 125.779 29.8731ZM152.751 31.567V33.3441H152.351C149.963 33.3441 147.894 32.524 146.196 30.8869C144.501 29.2518 143.614 27.2526 143.584 24.9367L143.584 24.9314L143.584 10.6H145.455V16.7421H148.929V18.5472H145.455V24.9594C145.455 26.7663 146.155 28.309 147.555 29.6064C148.995 30.9145 150.58 31.567 152.351 31.567H152.751ZM147.284 29.901C148.79 31.269 150.469 31.967 152.351 31.967V32.9441C152.216 32.9441 152.083 32.9414 151.951 32.936C149.834 32.8495 148 32.0705 146.474 30.599C144.853 29.0355 144.013 27.137 143.984 24.9314V11H145.055V17.1421H148.529V18.1472H145.055V24.9594C145.055 26.8858 145.808 28.533 147.284 29.901ZM157.316 10.6V14.8898H155.416V10.6H157.316ZM157.316 16.7421V33.0649H155.416V16.7421H157.316ZM163.988 30.571C162.367 28.9797 161.556 27.1091 161.556 24.9035C161.556 22.6979 162.367 20.8274 163.988 19.2639C165.609 17.6726 167.578 16.8908 169.865 16.8908C172.152 16.8908 174.092 17.6726 175.713 19.2639C177.364 20.8553 178.174 22.7259 178.174 24.9035C178.174 27.1091 177.364 28.9797 175.713 30.571C174.092 32.1345 172.152 32.9162 169.865 32.9162C167.578 32.9162 165.638 32.1345 163.988 30.571ZM175.992 18.977C174.295 17.312 172.255 16.4908 169.865 16.4908C167.477 16.4908 165.407 17.3109 163.709 18.977C162.013 20.6133 161.156 22.5865 161.156 24.9035C161.156 27.2216 162.014 29.1936 163.708 30.8565L163.713 30.8614C165.437 32.4947 167.475 33.3162 169.865 33.3162C172.255 33.3162 174.294 32.495 175.991 30.859C177.716 29.1953 178.574 27.2221 178.574 24.9035C178.574 22.6125 177.716 20.6399 175.992 18.977ZM174.99 19.9619C173.571 18.566 171.863 17.868 169.865 17.868C167.868 17.868 166.159 18.566 164.712 19.9619C163.293 21.3578 162.569 23.0051 162.569 24.9035C162.569 26.8299 163.293 28.5051 164.712 29.8731C166.13 31.2411 167.868 31.9391 169.865 31.9391C171.863 31.9391 173.6 31.2411 175.019 29.8731C176.437 28.5051 177.161 26.8299 177.161 24.9035C177.161 23.0051 176.437 21.3578 174.99 19.9619ZM164.991 20.2485C163.644 21.5746 162.969 23.1207 162.969 24.9035C162.969 26.7182 163.647 28.2903 164.989 29.5851C166.333 30.8804 167.97 31.5391 169.865 31.5391C171.76 31.5391 173.398 30.8804 174.741 29.5851C176.084 28.2903 176.761 26.7182 176.761 24.9035C176.761 23.1206 176.086 21.5754 174.712 20.2498L174.709 20.247C173.366 18.925 171.758 18.268 169.865 18.268C167.973 18.268 166.365 18.9242 164.991 20.2485ZM185.48 19.934C184.032 21.302 183.308 22.9492 183.308 24.8756V32.6649H182.237V24.8756C182.237 22.67 183.048 20.7995 184.698 19.236C186.348 17.6446 188.317 16.8629 190.604 16.8629C192.891 16.8629 194.86 17.6446 196.51 19.236C198.16 20.7995 199 22.67 199 24.8756V32.6649H197.929V24.8756C197.929 22.9492 197.205 21.302 195.757 19.934C194.31 18.538 192.602 17.8401 190.604 17.8401C188.635 17.8401 186.927 18.538 185.48 19.934ZM196.787 18.9473C195.061 17.2835 192.993 16.4629 190.604 16.4629C188.215 16.4629 186.147 17.2834 184.422 18.9468C182.694 20.5837 181.837 22.5581 181.837 24.8756V33.0649H183.708V24.8756C183.708 23.0634 184.384 21.5201 185.754 20.2247L185.757 20.2219C187.132 18.8962 188.741 18.2401 190.604 18.2401C192.497 18.2401 194.106 18.8967 195.48 20.2219L195.483 20.2247C196.853 21.5201 197.529 23.0634 197.529 24.8756V33.0649H199.4V24.8756C199.4 22.5546 198.511 20.5815 196.787 18.9473ZM81.1752 11H82.2754V32.6649H81.1752V11ZM155.816 11H156.916V14.4898H155.816V11ZM155.816 17.1421H156.916V32.6649H155.816V17.1421Z" fill="#3D3D3F"/>
14
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1" viewBox="0 0 48 48"><title>illustration/flow</title><g id="illustration/flow" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"><path id="Combined-Shape" fill="#79C9FC" fill-rule="nonzero" d="M30,29 C32.7614237,29 35,26.7614237 35,24 C35,14.6111593 27.3888407,7 18,7 C8.61115925,7 1,14.6111593 1,24 C1,33.3888407 8.61115925,41 18,41 C19.3333404,41 20.6447683,40.8466238 21.9154603,40.5471706 C19.5096374,39.3319645 17.5510566,37.8612875 16.0456579,36.1314815 C14.1063138,33.9030427 12.769443,31.0725999 12.0293806,27.6556449 C11.360469,26.565281 11,25.3082308 11,24 C11,20.1340068 14.1340068,17 18,17 C21.8659932,17 25,20.1340068 25,24 C25,26.125 27.7040312,29 30,29 Z"/><path id="Combined-Shape-Copy" fill="#FFC445" fill-rule="nonzero" d="M42,29 C44.7614237,29 47,26.7614237 47,24 C47,14.6111593 39.3888407,7 30,7 C20.6111593,7 13,14.6111593 13,24 C13,33.3888407 20.6111593,41 30,41 C31.3333404,41 32.6447683,40.8466238 33.9154603,40.5471706 C31.5096374,39.3319645 29.4051056,37.9781963 28.0456579,36.1314815 C26.0625,33.4375 23,27.1875 23,24 C23,20.1340068 26.1340068,17 30,17 C33.8659932,17 37,20.1340068 37,24 C37.02301,26.3435241 39.7040312,29 42,29 Z" transform="translate(30.000000, 24.000000) scale(-1, -1) translate(-30.000000, -24.000000)"/></g></svg>
@@ -0,0 +1,9 @@
1
+ <svg width="155" height="35" viewBox="0 0 155 35" fill="none" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink">
2
+ <rect width="155" height="35" fill="url(#pattern0)"/>
3
+ <defs>
4
+ <pattern id="pattern0" patternContentUnits="objectBoundingBox" width="1" height="1">
5
+ <use xlink:href="#image0_1605_16875" transform="matrix(0.00304878 0 0 0.0135017 0 -0.00631533)"/>
6
+ </pattern>
7
+ <image id="image0_1605_16875" width="328" height="75" xlink:href="data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAUgAAABLCAMAAAAlKe4bAAAC/VBMVEUAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAACAgIAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAD///8AAAAAAAAAAAD///////8AAAD///////////////////////////////////////////////////////////////////////////////////////////////8AAAD///9RvthPT1Dv7/D8/PxkZGV6enlFRkT49/hW1fSUlJSGhoZXV1bj4uQ7OjrW1tZzdHRBQEE0NTTo6OlSxOF+foBvcG7e3+BPu9a1tLSPj5FpZ2leX18uLy708/S6ubopKSghJCUeHh08ttS8vL+YmJjK6/RPRzdc3fyurq9KSkkmNCAZGBkpSxYRLQVVzOrJyMnFw8WMi41cWloNDAza2dudnZ2LiohBaijAwcGrqquDgoEtPCUSFBTR0dGmpqc8TjA7XCYaRAezsLU0SCjMy8uenqEmQRsmJwYpFwT+u25rbG1lZlw7MiYdKxf/+xYpWhAfOhAZHglIBgT/yHROYERGOSpYOik0Tx//BQdCo72mpaPvqmSYcEdNeDJ6cRtALRg3Qw/Utg4HFwNCkqg1cIDVm1+8h1U2T05TVEmGY0VlWz1oSDF8VytUTCCSgx8yZRvMyND/0nyDeGtrbWXSjktqSBvSFRNONxL/6hC4EA9ExeaioqJ6bFtaZFWrflD22ROCDQrf/P/59f/r+f23y9UxlrqWn6wfc486Y2RdWybnzyGgHhjwFRQWAwDK9fzJ1N45v9zU0NlHqs05g5xYfo/kzRkrJRi6phfjBAWw5vKb1eP/338cSV2E3PB+we2rxOl0rLrtpqjAnJKdkIaTsnvALy3QhirfKyL+Kg7/kAf/cQPS4fL/7olNXnDnc27BaGSxkUCSOy7H/KiNAAAAS3RSTlMASnoaZwdDUS7LNg704Jn90IjjA7bnkchV3RX376N/ulzzq3Mj4Z49bdewYqkpwiy3Wh/q2gbCNp+KcBBRRhjgzJJ6QSzIgWbPkCGjMB7YAAAT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"/>
8
+ </defs>
9
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="261" height="37" viewBox="0 0 261 37" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g clip-path="url(#clip0_1605_16873)">
3
+ <path fill-rule="evenodd" clip-rule="evenodd" d="M40.376 22.27H41.151C43.069 22.27 44.18 20.722 44.18 18.736C44.18 16.818 43.406 15.438 41.42 15.371C41.05 15.371 40.612 15.404 40.376 15.505V22.27ZM35.968 12.375C37.348 12.106 39.098 11.938 40.781 11.938C43.204 11.938 45.358 12.274 46.838 13.621C48.218 14.866 48.622 16.381 48.622 18.332C48.622 20.756 47.444 22.943 45.122 24.02V24.087C46.67 24.693 47.444 26.141 47.882 28.564C48.319 31.088 48.925 33.881 49.329 34.723H44.719C44.449 34.083 43.944 31.795 43.607 29.304C43.204 26.477 42.497 25.67 41.016 25.67H40.376V34.723H35.968V12.375ZM60.958 24.761H55.774V30.886H61.63V34.723H51.365V12.039H61.226V15.876H55.774V21.092H60.957L60.958 24.761ZM64.195 34.723V12.039H68.234L71.734 20.924C72.407 22.674 73.518 25.602 74.157 27.554H74.225C74.09 25.164 73.787 21.227 73.787 17.054V12.039H77.657V34.723H73.62L70.153 26.107C69.413 24.188 68.369 21.327 67.865 19.275H67.797C67.898 21.563 68.067 25.064 68.067 29.607V34.723H64.195ZM83.503 16.11H79.498V12.038H91.951V16.11H87.912V34.722H83.503V16.11ZM99.79 26.106L99.049 21.361C98.813 19.981 98.51 17.725 98.309 16.211H98.208C97.972 17.725 97.636 20.081 97.4 21.394L96.559 26.106H99.79ZM96.12 29.54L95.11 34.723H90.836L95.75 12.039H101.034L105.443 34.723H101.168L100.192 29.54H96.12ZM107.432 30.213C108.341 30.718 109.889 31.088 111.168 31.088C113.254 31.088 114.264 30.011 114.264 28.53C114.264 26.88 113.254 26.073 111.336 24.828C108.24 22.943 107.062 20.554 107.062 18.501C107.062 14.866 109.485 11.837 114.23 11.837C115.711 11.837 117.125 12.24 117.798 12.645L117.091 16.448C116.451 16.044 115.476 15.674 114.197 15.674C112.312 15.674 111.403 16.818 111.403 18.03C111.403 19.376 112.076 20.083 114.533 21.563C117.529 23.381 118.639 25.669 118.639 28.059C118.639 32.199 115.577 34.925 111.134 34.925C109.317 34.925 107.533 34.453 106.793 34.015L107.432 30.213ZM138.092 34.386C137.453 34.689 136.208 34.925 134.66 34.925C128.871 34.925 126.111 30.145 126.111 23.717C126.111 15.169 130.857 11.837 135.266 11.837C136.814 11.837 137.891 12.14 138.328 12.442L137.588 16.144C137.083 15.909 136.511 15.707 135.535 15.707C133.045 15.707 130.789 17.861 130.789 23.482C130.789 28.9 132.842 31.021 135.535 31.021C136.275 31.021 137.117 30.852 137.655 30.684L138.093 34.386H138.092ZM143.229 23.381C143.229 28.53 144.205 31.155 145.989 31.155C147.839 31.155 148.546 27.79 148.546 23.179C148.546 19.208 147.94 15.606 145.955 15.606C144.205 15.606 143.229 18.501 143.229 23.381ZM153.157 22.977C153.157 31.526 150.127 34.992 145.82 34.992C140.67 34.992 138.651 29.54 138.651 23.313C138.651 17.12 141.108 11.769 146.123 11.769C151.609 11.769 153.157 17.794 153.157 22.977ZM160.007 22.27H160.78C162.698 22.27 163.81 20.722 163.81 18.736C163.81 16.818 163.035 15.438 161.05 15.371C160.68 15.371 160.241 15.404 160.006 15.505V22.27H160.007ZM155.597 12.375C156.977 12.106 158.727 11.938 160.41 11.938C162.833 11.938 164.987 12.274 166.468 13.621C167.848 14.866 168.252 16.381 168.252 18.332C168.252 20.756 167.074 22.943 164.752 24.02V24.087C166.3 24.693 167.074 26.141 167.512 28.564C167.949 31.088 168.555 33.881 168.959 34.723H164.348C164.078 34.083 163.574 31.795 163.237 29.304C162.833 26.477 162.127 25.67 160.646 25.67H160.006V34.723H155.597V12.375ZM175.333 22.27H176.107C178.025 22.27 179.136 20.722 179.136 18.736C179.136 16.818 178.362 15.438 176.376 15.371C176.006 15.371 175.568 15.404 175.333 15.505V22.27ZM170.924 12.375C172.304 12.106 174.054 11.938 175.737 11.938C178.16 11.938 180.314 12.274 181.795 13.621C183.175 14.866 183.579 16.381 183.579 18.332C183.579 20.756 182.401 22.943 180.079 24.02V24.087C181.626 24.693 182.401 26.141 182.838 28.564C183.276 31.088 183.881 33.881 184.285 34.723H179.675C179.405 34.083 178.9 31.795 178.564 29.304C178.16 26.477 177.453 25.67 175.972 25.67H175.332V34.723H170.924V12.375ZM186.302 34.723V12.039H190.71V34.723H186.302ZM203.624 24.761H198.44V30.886H204.297V34.723H194.032V12.039H203.892V15.876H198.44V21.092H203.624V24.761ZM206.862 34.723V12.039H210.9L214.4 20.924C215.074 22.674 216.184 25.602 216.824 27.554H216.891C216.756 25.164 216.454 21.227 216.454 17.054V12.039H220.324V34.723H216.285L212.819 26.107C212.079 24.188 211.035 21.327 210.53 19.275H210.463C210.563 21.563 210.732 25.064 210.732 29.607V34.723H206.862ZM226.17 16.11H222.165V12.038H234.618V16.11H230.579V34.722H226.17V16.11ZM246.017 24.76H240.834V30.885H246.69V34.722H236.425V12.039H246.286V15.876H240.834V21.092H246.017V24.76ZM248.925 30.212C249.835 30.717 251.382 31.087 252.661 31.087C254.748 31.087 255.757 30.01 255.757 28.529C255.757 26.879 254.747 26.072 252.829 24.827C249.733 22.942 248.555 20.553 248.555 18.5C248.555 14.865 250.978 11.836 255.724 11.836C257.204 11.836 258.618 12.239 259.291 12.644L258.584 16.447C257.945 16.043 256.969 15.673 255.69 15.673C253.805 15.673 252.897 16.817 252.897 18.029C252.897 19.375 253.57 20.082 256.027 21.562C259.022 23.38 260.133 25.668 260.133 28.058C260.133 32.198 257.07 34.924 252.627 34.924C250.81 34.924 249.027 34.452 248.286 34.014L248.925 30.212ZM37.496 2.339V6.474H38.146C38.668 6.474 39.069 6.31 39.349 5.984C39.629 5.656 39.771 5.187 39.776 4.576V4.256C39.776 3.635 39.641 3.159 39.37 2.831C39.1 2.503 38.707 2.339 38.193 2.339H37.496ZM36.5 7.269V1.536H38.193C38.699 1.536 39.149 1.649 39.542 1.874C39.934 2.1 40.238 2.42 40.453 2.835C40.668 3.25 40.776 3.725 40.776 4.261V4.548C40.776 5.092 40.668 5.569 40.451 5.981C40.2441 6.38342 39.9221 6.71516 39.526 6.934C39.126 7.157 38.666 7.269 38.15 7.269H36.5ZM48.788 7.269V1.536H49.78V7.269H48.788ZM58.995 4.26H60.019C60.355 4.26 60.618 4.175 60.807 4.006C60.996 3.836 61.09 3.605 61.09 3.311C61.09 3.003 61.003 2.766 60.828 2.598C60.654 2.43 60.393 2.343 60.047 2.338H58.995V4.26ZM60.105 5.063H58.995V7.268H58V1.536H60.016C60.678 1.536 61.188 1.684 61.548 1.981C61.908 2.278 62.088 2.707 62.088 3.27C62.088 3.654 61.995 3.974 61.81 4.233C61.6132 4.50078 61.345 4.70769 61.036 4.83L62.324 7.218V7.268H61.256L60.106 5.064L60.105 5.063ZM73.405 4.708H71.05V6.473H73.803V7.268H70.054V1.536H73.775V2.339H71.05V3.922H73.405V4.708ZM85.845 5.402C85.787 6.013 85.561 6.49 85.167 6.832C84.773 7.176 84.25 7.347 83.596 7.347C83.139 7.347 82.736 7.238 82.389 7.022C82.0362 6.79969 81.7563 6.47878 81.584 6.099C81.394 5.699 81.296 5.236 81.288 4.709V4.173C81.288 3.633 81.384 3.156 81.576 2.743C81.767 2.332 82.042 2.013 82.401 1.791C82.7748 1.56358 83.2056 1.44737 83.643 1.456C84.276 1.456 84.785 1.627 85.171 1.97C85.557 2.312 85.781 2.797 85.844 3.425H84.852C84.805 3.013 84.684 2.715 84.492 2.533C84.299 2.35 84.016 2.259 83.643 2.259C83.21 2.259 82.877 2.418 82.645 2.734C82.412 3.051 82.294 3.515 82.288 4.128V4.636C82.288 5.256 82.399 5.729 82.621 6.055C82.843 6.381 83.168 6.544 83.596 6.544C83.987 6.544 84.281 6.455 84.478 6.28C84.675 6.104 84.799 5.811 84.852 5.402H85.845ZM98.107 5.402C98.05 6.013 97.824 6.49 97.43 6.832C97.036 7.176 96.513 7.347 95.859 7.347C95.402 7.347 94.999 7.238 94.652 7.022C94.2992 6.79969 94.0193 6.47878 93.847 6.099C93.657 5.699 93.559 5.236 93.551 4.709V4.173C93.551 3.633 93.647 3.156 93.839 2.743C94.03 2.332 94.305 2.013 94.664 1.791C95.0378 1.56358 95.4686 1.44737 95.906 1.456C96.539 1.456 97.048 1.627 97.434 1.97C97.82 2.312 98.044 2.797 98.107 3.425H97.115C97.068 3.013 96.947 2.715 96.755 2.533C96.562 2.35 96.279 2.259 95.906 2.259C95.473 2.259 95.14 2.418 94.908 2.734C94.675 3.051 94.557 3.515 94.551 4.128V4.636C94.551 5.256 94.662 5.729 94.884 6.055C95.106 6.381 95.431 6.544 95.859 6.544C96.249 6.544 96.544 6.455 96.741 6.28C96.938 6.104 97.062 5.811 97.115 5.402H98.107ZM106.055 7.268V1.536H107.047V7.269L106.055 7.268ZM117.739 0H118.83L117.74 1.193L116.971 1.191L117.739 0ZM118.83 4.253C118.83 3.618 118.71 3.131 118.47 2.792C118.23 2.453 117.889 2.284 117.448 2.284C117.017 2.284 116.68 2.452 116.438 2.79C116.195 3.127 116.071 3.604 116.065 4.221V4.551C116.065 5.182 116.188 5.669 116.434 6.013C116.679 6.357 117.02 6.529 117.456 6.529C117.896 6.529 118.236 6.361 118.474 6.025C118.711 5.689 118.83 5.198 118.83 4.552V4.253ZM119.826 4.552C119.826 5.114 119.729 5.607 119.535 6.03C119.34 6.455 119.063 6.78 118.702 7.007C118.328 7.23754 117.895 7.35556 117.456 7.347C116.991 7.347 116.577 7.234 116.213 7.007C115.844 6.77297 115.551 6.43572 115.371 6.037C115.172 5.617 115.071 5.132 115.069 4.583V4.261C115.069 3.701 115.169 3.208 115.367 2.78C115.565 2.352 115.845 2.025 116.205 1.798C116.566 1.571 116.981 1.457 117.448 1.457C117.915 1.457 118.329 1.569 118.69 1.794C119.05 2.018 119.33 2.341 119.527 2.762C119.724 3.184 119.824 3.674 119.827 4.233V4.552H119.826ZM132.374 7.269H131.378L128.823 3.2V7.27H127.826V1.536H128.823L131.386 5.619V1.536H132.374V7.269ZM154.052 6.525C153.844 6.795 153.557 7 153.189 7.139C152.821 7.279 152.404 7.348 151.937 7.348C151.457 7.348 151.031 7.239 150.661 7.021C150.289 6.80115 149.991 6.47568 149.805 6.086C149.604 5.68 149.499 5.206 149.491 4.666V4.217C149.491 3.351 149.699 2.674 150.114 2.187C150.528 1.7 151.107 1.457 151.85 1.457C152.488 1.457 152.995 1.615 153.37 1.931C153.746 2.248 153.971 2.703 154.047 3.296H153.071C152.961 2.606 152.561 2.26 151.87 2.26C151.423 2.26 151.084 2.42 150.852 2.742C150.62 3.064 150.5 3.535 150.492 4.156V4.597C150.492 5.216 150.622 5.697 150.883 6.039C151.145 6.381 151.508 6.552 151.973 6.552C152.482 6.552 152.843 6.437 153.059 6.206V5.084H151.878V4.328H154.052V6.525ZM165.51 4.709H163.156V6.474H165.908V7.269H162.16V1.536H165.88V2.339H163.156V3.922H165.51V4.709ZM178.258 7.269H177.262L174.706 3.2V7.27H173.71V1.536H174.706L177.269 5.619V1.536H178.259V7.269H178.258ZM189.807 4.709H187.452V6.474H190.205V7.269H186.456V1.536H190.177V2.339H187.452V3.922H189.807V4.709ZM199.003 4.261H200.026C200.362 4.261 200.625 4.176 200.814 4.007C201.003 3.837 201.097 3.606 201.097 3.312C201.097 3.004 201.01 2.767 200.836 2.599C200.661 2.431 200.4 2.344 200.054 2.339H199.003V4.261ZM200.113 5.064H199.003V7.269H198.006V1.536H200.022C200.684 1.536 201.194 1.684 201.554 1.981C201.914 2.278 202.094 2.707 202.094 3.27C202.094 3.654 202.001 3.974 201.816 4.233C201.619 4.50075 201.351 4.70765 201.042 4.83L202.33 7.218V7.268H201.263L200.113 5.064ZM211.599 5.131H213.261L212.431 2.752L211.599 5.131ZM213.541 5.934H211.32L210.855 7.269H209.82L211.985 1.536H212.879L215.049 7.269H214.009L213.541 5.934ZM223.749 6.474H226.351V7.269H222.752V1.536H223.749V6.474ZM244.217 2.339V6.474H244.867C245.389 6.474 245.79 6.31 246.069 5.984C246.349 5.656 246.491 5.187 246.497 4.576V4.256C246.497 3.635 246.361 3.159 246.091 2.831C245.821 2.503 245.428 2.339 244.913 2.339H244.217ZM243.22 7.269V1.536H244.913C245.42 1.536 245.87 1.649 246.263 1.874C246.655 2.1 246.958 2.42 247.173 2.835C247.389 3.25 247.497 3.725 247.497 4.261V4.548C247.497 5.092 247.388 5.569 247.172 5.981C246.955 6.394 246.647 6.711 246.246 6.934C245.846 7.157 245.387 7.269 244.87 7.269H243.22ZM258.82 4.709H256.465V6.474H259.217V7.269H255.469V1.536H259.19V2.339H256.465V3.922H258.82V4.709ZM0 36.653L7.569 25.308L12.699 29.337L8.496 35.637C8.28734 35.9496 8.00477 36.2059 7.67333 36.3831C7.3419 36.5603 6.97185 36.653 6.596 36.653H0ZM0.027 10.273H6.597C7.36 10.273 8.073 10.655 8.497 11.29L16.617 23.463L12.699 29.337L0.027 10.274V10.273ZM11.779 36.653L19.348 25.308L24.478 29.337L20.275 35.637C20.0663 35.9496 19.7838 36.2059 19.4523 36.3831C19.1209 36.5603 18.7508 36.653 18.375 36.653H11.779ZM11.806 10.273H18.376C19.139 10.273 19.852 10.655 20.276 11.29L28.396 23.463L24.478 29.337L11.806 10.274V10.273Z" fill="#124596"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_1605_16873">
7
+ <rect width="261" height="37" fill="white"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1,10 @@
1
+ <svg width="24" height="23" viewBox="0 0 24 23" fill="none" xmlns="http://www.w3.org/2000/svg">
2
+ <g id="logo_rentas_corrientes" clip-path="url(#clip0_1605_5771)">
3
+ <path id="Vector" fill-rule="evenodd" clip-rule="evenodd" d="M0 22.3576L6.264 12.9686L10.5095 16.303L7.03117 21.5168C6.85849 21.7755 6.62463 21.9876 6.35034 22.1343C6.07605 22.2809 5.7698 22.3576 5.45876 22.3576H0ZM0.0223448 0.525879H5.45959C6.09103 0.525879 6.6811 0.842017 7.032 1.36753L13.752 11.4417L10.5095 16.303L0.0223448 0.526707V0.525879ZM9.74814 22.3576L16.0121 12.9686L20.2577 16.303L16.7793 21.5168C16.6066 21.7755 16.3728 21.9876 16.0985 22.1343C15.8242 22.2809 15.5179 22.3576 15.2069 22.3576H9.74814ZM9.77048 0.525879H15.2077C15.8392 0.525879 16.4292 0.842017 16.7801 1.36753L23.5001 11.4417L20.2577 16.303L9.77048 0.526707V0.525879Z" fill="#124596"/>
4
+ </g>
5
+ <defs>
6
+ <clipPath id="clip0_1605_5771">
7
+ <rect width="24" height="22.4" fill="white" transform="translate(0 0.300049)"/>
8
+ </clipPath>
9
+ </defs>
10
+ </svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1" viewBox="0 0 48 48"><title>illustration/plugin</title><g id="illustration/plugin" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"><path id="Combined-Shape" fill="#79C9FC" d="M26,15.3994248 C26,15.4091303 26,15.4188459 26,15.4285714 L26,21.4694881 C25.8463595,21.4969567 25.6941676,21.51275 25.5873784,21.51275 C25.4974117,21.51275 25.4230979,21.4768034 25.377756,21.4206259 L25.2660784,21.2822603 L25.1317423,21.1657666 C24.2436317,20.3956144 23.100098,19.9633214 21.895551,19.9633214 C19.2039137,19.9633214 17,22.1075558 17,24.7804643 C17,27.4533728 19.2039137,29.5976071 21.895551,29.5976071 C23.1972122,29.5976071 24.3149423,29.2878193 25.1231445,28.3613697 C25.4542273,27.9818463 25.568273,27.9073214 25.5873784,27.9073214 C25.681532,27.9073214 25.8352452,27.9239643 26,27.9524591 L26,32.5714286 C26,32.5811541 26,32.5908697 26,32.6005752 L26,33 C26,35.209139 24.209139,37 22,37 L4,37 C1.790861,37 0,35.209139 0,33 L0,15 C0,12.790861 1.790861,11 4,11 L22,11 C24.209139,11 26,12.790861 26,15 L26,15.3994248 Z"/><path id="Path" fill="#87E6E5" d="M27.9998779,32.5714286 C27.9998779,33.3604068 28.6572726,34 29.4682101,34 L46.5315458,34 C47.3424832,34 47.9998779,33.3604068 47.9998779,32.5714286 L47.9998779,15.4285714 C47.9998779,14.6395932 47.3424832,14 46.5315458,14 L29.4682101,14 C28.6572726,14 27.9998779,14.6395932 27.9998779,15.4285714 L27.9998779,21.8355216 C27.9334367,22.2650514 27.8567585,22.6454496 27.746391,22.8084643 C27.4245309,23.2838571 26.2402709,23.51275 25.5873784,23.51275 C24.8705773,23.51275 24.2322714,23.1857725 23.8214379,22.6767605 C23.3096996,22.2329909 22.6349941,21.9633214 21.895551,21.9633214 C20.2963823,21.9633214 19,23.2245992 19,24.7804643 C19,26.3363293 20.2963823,27.5976071 21.895551,27.5976071 C22.5398535,27.5976071 23.2399343,27.477727 23.6160247,27.0466112 C24.1396029,26.4464286 24.7367044,25.9073214 25.5873784,25.9073214 C26.2402709,25.9073214 27.5912951,26.1766031 27.8226692,26.6116071 C27.8819199,26.7230038 27.9403239,26.921677 27.9998779,27.1556219 L27.9998779,32.5714286 Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1" viewBox="0 0 48 48"><title>illustration/repo</title><g id="illustration/repo" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"><path id="Rectangle-62-Copy" fill="#B7F0EF" d="M27.2217723,9.04506931 L41.2217723,6.2682098 C43.3886973,5.83840648 45.4937616,7.2466219 45.9235649,9.41354696 C45.9743993,9.66983721 46,9.93049166 46,10.1917747 L46,32.581381 C46,34.4904961 44.650862,36.1335143 42.7782277,36.5049459 L28.7782277,39.2818054 C26.6113027,39.7116087 24.5062384,38.3033933 24.0764351,36.1364682 C24.0256007,35.880178 24,35.6195235 24,35.3582405 L24,12.9686342 C24,11.0595191 25.349138,9.4165009 27.2217723,9.04506931 Z" opacity=".7"/><path id="Combined-Shape" fill="#87E6E5" d="M6.77822775,6.2682098 L20.7782277,9.04506931 C22.650862,9.4165009 24,11.0595191 24,12.9686342 L24,35.3582405 C24,37.5673795 22.209139,39.3582405 20,39.3582405 C19.738717,39.3582405 19.4780625,39.3326398 19.2217723,39.2818054 L5.22177225,36.5049459 C3.34913798,36.1335143 2,34.4904961 2,32.581381 L2,10.1917747 C2,7.98263571 3.790861,6.19177471 6,6.19177471 C6.26128305,6.19177471 6.5219375,6.21737537 6.77822775,6.2682098 Z"/><path id="Rectangle-63-Copy-2" fill="#61C1FD" d="M22,10 C23.1666667,10.2291667 24.0179036,10.625 24.5537109,11.1875 C25.0895182,11.75 25.5716146,12.875 26,14.5625 C26,29.3020833 26,37.5208333 26,39.21875 C26,40.9166667 26.4241536,42.9583333 27.2724609,45.34375 L24.5537109,41.875 L22.9824219,45.34375 C22.327474,43.1979167 22,41.2291667 22,39.4375 C22,37.6458333 22,27.8333333 22,10 Z"/></g></svg>
@@ -0,0 +1 @@
1
+ <svg xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" width="48" height="48" version="1.1" viewBox="0 0 48 48"><title>illustration/stackalt</title><g id="illustration/stackalt" fill="none" fill-rule="evenodd" stroke="none" stroke-width="1"><path id="Combined-Shape" fill="#FFAE00" d="M23.8628277,0 L23.8628277,48 L3.32291648,36.2491883 L3.32155653,11.9499781 L23.8628277,0 Z M23.8670509,0 L44.408322,11.9499781 L44.4069621,36.2491883 L23.8670509,48 L23.8670509,0 Z" opacity=".196"/><path id="Rectangle-46-Copy-3" fill="#66BF3C" d="M15.8232279,19.1155258 L24.7368455,21.4714881 C29.6053842,22.7582937 33.4077423,26.5606518 34.694548,31.4291905 L37.0505103,40.3428082 C37.6150232,42.4786032 36.3412474,44.6676353 34.2054524,45.2321482 C33.5569474,45.4035549 32.87575,45.4091235 32.2245294,45.2483418 L23.3459013,43.0562718 C18.2976962,41.809906 14.3561301,37.8683399 13.1097642,32.8201348 L10.9176943,23.9415066 C10.3881737,21.7967682 11.6975664,19.6288529 13.8423049,19.0993322 C14.4935255,18.9385505 15.1747229,18.9441191 15.8232279,19.1155258 Z" opacity=".5" transform="translate(23.999997, 32.166058) rotate(-45.000000) translate(-23.999997, -32.166058)"/><path id="Rectangle-46-Copy-2" fill="#FFAE00" d="M15.8232279,11.2216893 L24.7368455,13.5776516 C29.6053842,14.8644572 33.4077423,18.6668153 34.694548,23.5353541 L37.0505103,32.4489717 C37.6150232,34.5847667 36.3412474,36.7737988 34.2054524,37.3383117 C33.5569474,37.5097184 32.87575,37.515287 32.2245294,37.3545053 L23.3459013,35.1624353 C18.2976962,33.9160695 14.3561301,29.9745034 13.1097642,24.9262983 L10.9176943,16.0476701 C10.3881737,13.9029317 11.6975664,11.7350164 13.8423049,11.2054957 C14.4935255,11.044714 15.1747229,11.0502826 15.8232279,11.2216893 Z" opacity=".5" transform="translate(23.999997, 24.272222) rotate(-45.000000) translate(-23.999997, -24.272222)"/><path id="Rectangle-46-Copy" fill="#FC521F" d="M15.8232279,3.32785281 L24.7368455,5.68381509 C29.6053842,6.97062075 33.4077423,10.7729788 34.694548,15.6415176 L37.0505103,24.5551352 C37.6150232,26.6909302 36.3412474,28.8799623 34.2054524,29.4444752 C33.5569474,29.6158819 32.87575,29.6214505 32.2245294,29.4606688 L23.3459013,27.2685988 C18.2976962,26.022233 14.3561301,22.0806669 13.1097642,17.0324618 L10.9176943,8.15383364 C10.3881737,6.00909519 11.6975664,3.84117987 13.8423049,3.31165925 C14.4935255,3.15087753 15.1747229,3.15644615 15.8232279,3.32785281 Z" opacity=".5" transform="translate(23.999997, 16.378385) rotate(-45.000000) translate(-23.999997, -16.378385)"/></g></svg>
@@ -0,0 +1,13 @@
1
+ <?xml version="1.0" encoding="UTF-8"?>
2
+ <svg width="256px" height="319px" viewBox="0 0 256 319" version="1.1" xmlns="http://www.w3.org/2000/svg" xmlns:xlink="http://www.w3.org/1999/xlink" preserveAspectRatio="xMidYMid">
3
+ <defs>
4
+ <path d="M9.87245893,293.324145 L0.0114611411,30.5732167 C-0.314208957,21.8955842 6.33948896,14.5413918 15.0063196,13.9997149 L238.494389,0.0317105427 C247.316188,-0.519651867 254.914637,6.18486163 255.466,15.0066607 C255.486773,15.339032 255.497167,15.6719708 255.497167,16.0049907 L255.497167,302.318596 C255.497167,311.157608 248.331732,318.323043 239.492719,318.323043 C239.253266,318.323043 239.013844,318.317669 238.774632,318.306926 L25.1475605,308.712253 C16.8276309,308.338578 10.1847994,301.646603 9.87245893,293.324145 L9.87245893,293.324145 Z" id="path-1"></path>
5
+ </defs>
6
+ <g>
7
+ <mask id="mask-2" fill="white">
8
+ <use xlink:href="#path-1"></use>
9
+ </mask>
10
+ <use fill="#FF4785" fill-rule="nonzero" xlink:href="#path-1"></use>
11
+ <path d="M188.665358,39.126973 L190.191903,2.41148534 L220.883535,0 L222.205755,37.8634126 C222.251771,39.1811466 221.22084,40.2866846 219.903106,40.3327009 C219.338869,40.3524045 218.785907,40.1715096 218.342409,39.8221376 L206.506729,30.4984116 L192.493574,41.1282444 C191.443077,41.9251106 189.945493,41.7195021 189.148627,40.6690048 C188.813185,40.2267976 188.6423,39.6815326 188.665358,39.126973 Z M149.413703,119.980309 C149.413703,126.206975 191.355678,123.222696 196.986019,118.848893 C196.986019,76.4467826 174.234041,54.1651411 132.57133,54.1651411 C90.9086182,54.1651411 67.5656805,76.7934542 67.5656805,110.735941 C67.5656805,169.85244 147.345341,170.983856 147.345341,203.229219 C147.345341,212.280549 142.913138,217.654777 133.162291,217.654777 C120.456641,217.654777 115.433477,211.165914 116.024438,189.103298 C116.024438,184.317101 67.5656805,182.824962 66.0882793,189.103298 C62.3262146,242.56887 95.6363019,257.990394 133.753251,257.990394 C170.688279,257.990394 199.645341,238.303123 199.645341,202.663511 C199.645341,139.304202 118.683759,141.001326 118.683759,109.604526 C118.683759,96.8760922 128.139127,95.178968 133.753251,95.178968 C139.662855,95.178968 150.300143,96.2205679 149.413703,119.980309 Z" fill="#FFFFFF" fill-rule="nonzero" mask="url(#mask-2)"></path>
12
+ </g>
13
+ </svg>
Binary file