@strapi/admin 4.14.5 → 4.15.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 (226) hide show
  1. package/admin/src/StrapiApp.js +13 -12
  2. package/admin/src/components/AuthenticatedApp.tsx +187 -0
  3. package/admin/src/components/ConfigurationProvider.tsx +2 -1
  4. package/admin/src/components/GuidedTour/Homepage.tsx +111 -0
  5. package/admin/src/components/GuidedTour/Modal.tsx +303 -0
  6. package/admin/src/components/GuidedTour/Ornaments.tsx +74 -0
  7. package/admin/src/components/GuidedTour/Provider.tsx +253 -0
  8. package/admin/src/components/GuidedTour/{layout.js → constants.ts} +13 -3
  9. package/admin/src/components/LanguageProvider.tsx +1 -0
  10. package/admin/src/components/Providers.tsx +125 -0
  11. package/admin/src/components/RBACProvider.tsx +124 -0
  12. package/admin/src/components/Theme.tsx +4 -2
  13. package/admin/src/components/ThemeToggleProvider.tsx +23 -9
  14. package/admin/src/components/__mocks__/{LanguageProvider.js → LanguageProvider.ts} +2 -0
  15. package/admin/src/{constants.js → constants.ts} +48 -0
  16. package/admin/src/content-manager/components/BlocksEditor/Toolbar/index.js +75 -51
  17. package/admin/src/content-manager/components/BlocksEditor/hooks/useBlocksStore.js +72 -14
  18. package/admin/src/content-manager/pages/App/selectors.js +1 -1
  19. package/admin/src/content-manager/pages/App/useContentManagerInitData.js +3 -1
  20. package/admin/src/content-manager/pages/EditView/selectors.js +1 -1
  21. package/admin/src/content-manager/pages/EditViewLayoutManager/index.js +3 -1
  22. package/admin/src/content-manager/pages/ListView/components/Body/index.js +53 -56
  23. package/admin/src/content-manager/pages/ListView/components/BulkActionButtons/SelectedEntriesModal/index.js +5 -3
  24. package/admin/src/content-manager/pages/ListView/components/TableRows/index.js +1 -1
  25. package/admin/src/content-manager/pages/ListView/index.js +33 -50
  26. package/admin/src/content-manager/pages/ListView/selectors.js +1 -1
  27. package/admin/src/contexts/admin.ts +1 -0
  28. package/admin/src/contexts/apiTokenPermissions.tsx +64 -0
  29. package/admin/src/contexts/themeToggle.ts +3 -1
  30. package/admin/src/core/store/configure.ts +91 -0
  31. package/admin/src/core/store/hooks.ts +15 -0
  32. package/admin/src/hooks/index.js +0 -1
  33. package/admin/src/hooks/{useContentTypes/useContentTypes.js → useContentTypes.ts} +39 -16
  34. package/admin/src/hooks/useSettingsForm/index.js +14 -2
  35. package/admin/src/hooks/useSettingsMenu/constants.js +39 -0
  36. package/admin/src/index.js +2 -4
  37. package/admin/src/layouts/{AppLayout/index.js → AppLayout.tsx} +7 -10
  38. package/admin/src/layouts/UnauthenticatedLayout.tsx +77 -0
  39. package/admin/src/pages/Admin/index.js +11 -5
  40. package/admin/src/pages/App/index.js +7 -4
  41. package/admin/src/pages/App/selectors.js +1 -1
  42. package/admin/src/pages/AuthPage/components/ForgotPassword/index.js +2 -1
  43. package/admin/src/pages/AuthPage/components/ForgotPasswordSuccess/index.js +2 -1
  44. package/admin/src/pages/AuthPage/components/Login/index.js +1 -1
  45. package/admin/src/pages/AuthPage/components/Oops/index.js +2 -1
  46. package/admin/src/pages/AuthPage/components/Register/index.js +1 -1
  47. package/admin/src/pages/AuthPage/components/ResetPassword/index.js +2 -1
  48. package/admin/src/pages/AuthPage/index.js +2 -3
  49. package/admin/src/pages/HomePage/index.js +6 -3
  50. package/admin/src/pages/{InternalErrorPage/index.js → InternalErrorPage.tsx} +10 -6
  51. package/admin/src/pages/{NotFoundPage/index.js → NotFoundPage.tsx} +9 -7
  52. package/admin/src/pages/ProfilePage/components/Preferences/index.js +23 -9
  53. package/admin/src/pages/ProfilePage/index.js +1 -1
  54. package/admin/src/pages/SettingsPage/components/SettingsNav/index.js +20 -0
  55. package/admin/src/pages/SettingsPage/constants.js +33 -0
  56. package/admin/src/pages/SettingsPage/index.js +2 -2
  57. package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/ActionBoundRoutes/index.js +1 -1
  58. package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/CollapsableContentType/index.js +1 -1
  59. package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/components/Permissions/index.js +1 -1
  60. package/admin/src/pages/SettingsPage/pages/ApiTokens/EditView/index.js +2 -2
  61. package/admin/src/pages/SettingsPage/pages/AuditLogs/SalesPage.js +50 -0
  62. package/admin/src/pages/SettingsPage/pages/ReviewWorkflows/SalesPage.js +53 -0
  63. package/admin/src/pages/SettingsPage/pages/SingleSignOn/SalesPage.js +53 -0
  64. package/admin/src/pages/SettingsPage/pages/TransferTokens/EditView/index.js +1 -1
  65. package/admin/src/pages/SettingsPage/pages/Users/EditPage/index.js +2 -1
  66. package/admin/src/pages/SettingsPage/pages/Users/ListPage/DynamicTable/TableRows/index.js +1 -1
  67. package/admin/src/pages/{UseCasePage/index.js → UseCasePage.tsx} +10 -12
  68. package/admin/src/translations/en.json +5 -0
  69. package/admin/src/utils/createRoute.tsx +54 -0
  70. package/admin/src/utils/formatAPIErrors.ts +18 -0
  71. package/admin/src/utils/getFullName.ts +3 -0
  72. package/admin/src/utils/{uniqueAdminHash.js → hashAdminUserEmail.ts} +6 -3
  73. package/admin/src/utils/makeUniqueRoutes.ts +11 -0
  74. package/build/{1049.9236e785.chunk.js → 1049.ecc10c97.chunk.js} +1 -1
  75. package/build/1217.96155682.chunk.js +35 -0
  76. package/build/{1227.e0f7447b.chunk.js → 1227.947ceaf9.chunk.js} +1 -1
  77. package/build/1306.2699df52.chunk.js +79 -0
  78. package/build/{1386.07f2bbb3.chunk.js → 1386.eabd8a1e.chunk.js} +1 -1
  79. package/build/{2379.b0bc4013.chunk.js → 2379.7ce8e110.chunk.js} +1 -1
  80. package/build/{2395.d37b1025.chunk.js → 2395.acb961a8.chunk.js} +3 -3
  81. package/build/{2801.12522720.chunk.js → 2801.4711ea5a.chunk.js} +1 -1
  82. package/build/{3019.0d74d080.chunk.js → 3019.fde2e1be.chunk.js} +2 -2
  83. package/build/3460.8644e608.chunk.js +146 -0
  84. package/build/{3483.8f1b25f8.chunk.js → 3483.db8c1520.chunk.js} +1 -1
  85. package/build/{4174.2c4f958e.chunk.js → 4174.49cedb6a.chunk.js} +1 -1
  86. package/build/4732.149f5f8f.chunk.js +1 -0
  87. package/build/{502.b845473a.chunk.js → 502.f536f78b.chunk.js} +1 -1
  88. package/build/{7464.91341b4f.chunk.js → 7464.579564ac.chunk.js} +1 -1
  89. package/build/7811.fdbe09af.chunk.js +103 -0
  90. package/build/{7897.dffa5ad5.chunk.js → 7897.63ba0a00.chunk.js} +1 -1
  91. package/build/{8276.e9698944.chunk.js → 8276.9abe4679.chunk.js} +3 -3
  92. package/build/8773.ee67141c.chunk.js +48 -0
  93. package/build/9077.2cc01ac8.chunk.js +105 -0
  94. package/build/{9218.306ad178.chunk.js → 9218.b2d367f8.chunk.js} +1 -1
  95. package/build/Admin-authenticatedApp.059dc48f.chunk.js +79 -0
  96. package/build/Admin_InternalErrorPage.06eeef20.chunk.js +1 -0
  97. package/build/Admin_homePage.56b9eb3f.chunk.js +81 -0
  98. package/build/{Admin_marketplace.0db78604.chunk.js → Admin_marketplace.d693a435.chunk.js} +1 -1
  99. package/build/{Admin_pluginsPage.1083f7f0.chunk.js → Admin_pluginsPage.ae2c872a.chunk.js} +1 -1
  100. package/build/Admin_profilePage.89099d5b.chunk.js +13 -0
  101. package/build/Admin_settingsPage.88c45586.chunk.js +12 -0
  102. package/build/{Upload_ConfigureTheView.3cfeb108.chunk.js → Upload_ConfigureTheView.44f28145.chunk.js} +1 -1
  103. package/build/admin-app.990e112f.chunk.js +69 -0
  104. package/build/{admin-edit-roles-page.556fac52.chunk.js → admin-edit-roles-page.4e1eb4a9.chunk.js} +3 -3
  105. package/build/admin-edit-users.5b91404e.chunk.js +10 -0
  106. package/build/{admin-roles-list.15918328.chunk.js → admin-roles-list.89dd94fe.chunk.js} +1 -1
  107. package/build/{admin-users.74fddc87.chunk.js → admin-users.7be4fc5f.chunk.js} +2 -2
  108. package/build/{api-tokens-create-page.c08ae118.chunk.js → api-tokens-create-page.571920e5.chunk.js} +1 -1
  109. package/build/{api-tokens-edit-page.ce18efdc.chunk.js → api-tokens-edit-page.cbdc81b1.chunk.js} +1 -1
  110. package/build/{api-tokens-list-page.783b7569.chunk.js → api-tokens-list-page.de0c49e8.chunk.js} +2 -2
  111. package/build/audit-logs-sales-page.2955db88.chunk.js +1 -0
  112. package/build/{audit-logs-settings-page.12aeea8c.chunk.js → audit-logs-settings-page.b0cb5164.chunk.js} +1 -1
  113. package/build/content-manager.de7ae330.chunk.js +1241 -0
  114. package/build/{content-type-builder-list-view.38ed3935.chunk.js → content-type-builder-list-view.6c8d3213.chunk.js} +1 -1
  115. package/build/{content-type-builder-translation-en-json.43f9d7bc.chunk.js → content-type-builder-translation-en-json.74d80f18.chunk.js} +1 -1
  116. package/build/{content-type-builder.758a9d23.chunk.js → content-type-builder.0bc97051.chunk.js} +13 -23
  117. package/build/{email-settings-page.e08a587e.chunk.js → email-settings-page.07712efc.chunk.js} +1 -1
  118. package/build/en-json.5b907f67.chunk.js +1 -0
  119. package/build/{i18n-settings-page.3186e3e9.chunk.js → i18n-settings-page.5c34f012.chunk.js} +1 -1
  120. package/build/index.html +1 -1
  121. package/build/main.f84563f1.js +2665 -0
  122. package/build/review-workflows-sales-page.f46a8f00.chunk.js +1 -0
  123. package/build/{review-workflows-settings-create-view.5cdc4d64.chunk.js → review-workflows-settings-create-view.d0544fb0.chunk.js} +1 -1
  124. package/build/{review-workflows-settings-edit-view.53bf7865.chunk.js → review-workflows-settings-edit-view.aabf49ef.chunk.js} +1 -1
  125. package/build/review-workflows-settings-list-view.8b0525ab.chunk.js +56 -0
  126. package/build/runtime~main.270fd45f.js +2 -0
  127. package/build/sso-sales-page.ef22e469.chunk.js +1 -0
  128. package/build/sso-settings-page.21e16ae4.chunk.js +1 -0
  129. package/build/{transfer-tokens-create-page.2662d519.chunk.js → transfer-tokens-create-page.3366204d.chunk.js} +1 -1
  130. package/build/{transfer-tokens-edit-page.f64d8d8c.chunk.js → transfer-tokens-edit-page.15cf0f73.chunk.js} +1 -1
  131. package/build/{transfer-tokens-list-page.e6fd5f87.chunk.js → transfer-tokens-list-page.0bc0e682.chunk.js} +2 -2
  132. package/build/{upload-settings.450a1de0.chunk.js → upload-settings.1319dca0.chunk.js} +1 -1
  133. package/build/{upload.0d53e7a3.chunk.js → upload.1ced11be.chunk.js} +1 -1
  134. package/build/{users-advanced-settings-page.4a1f1f6d.chunk.js → users-advanced-settings-page.8e657084.chunk.js} +1 -1
  135. package/build/{users-email-settings-page.ea81fe82.chunk.js → users-email-settings-page.e57745e5.chunk.js} +1 -1
  136. package/build/{users-providers-settings-page.10280cdb.chunk.js → users-providers-settings-page.55796d13.chunk.js} +1 -1
  137. package/build/{users-roles-settings-page.4a7158be.chunk.js → users-roles-settings-page.57079245.chunk.js} +1 -1
  138. package/build/webhook-edit-page.3a28b2e7.chunk.js +33 -0
  139. package/build/{webhook-list-page.f57285ca.chunk.js → webhook-list-page.ee80767b.chunk.js} +1 -1
  140. package/ee/admin/pages/AuthPage/components/Login/index.js +1 -1
  141. package/ee/admin/pages/AuthPage/components/Providers/index.js +2 -1
  142. package/ee/admin/pages/SettingsPage/pages/ReviewWorkflows/selectors.js +1 -1
  143. package/ee/server/bootstrap.js +1 -1
  144. package/ee/server/controllers/admin.js +1 -1
  145. package/ee/server/controllers/user.js +1 -1
  146. package/ee/server/destroy.js +1 -1
  147. package/ee/server/register.js +1 -1
  148. package/ee/server/routes/utils.js +1 -1
  149. package/ee/server/services/audit-logs.js +1 -1
  150. package/ee/server/services/passport/sso.js +1 -1
  151. package/ee/server/services/passport.js +1 -1
  152. package/ee/server/services/seat-enforcement.js +1 -1
  153. package/ee/server/utils/sso-lock.js +1 -1
  154. package/ee/server/validation/role.js +1 -1
  155. package/ee/server/validation/user.js +1 -1
  156. package/package.json +15 -16
  157. package/server/controllers/admin.js +1 -1
  158. package/shared/entities.ts +1 -1
  159. package/shared/permissions.ts +35 -35
  160. package/shared/schema.ts +9 -0
  161. package/admin/src/components/AuthenticatedApp/index.js +0 -116
  162. package/admin/src/components/AuthenticatedApp/utils/api.js +0 -47
  163. package/admin/src/components/AuthenticatedApp/utils/checkLatestStrapiVersion.ts +0 -13
  164. package/admin/src/components/AuthenticatedApp/utils/fetchStrapiLatestRelease.ts +0 -19
  165. package/admin/src/components/GuidedTour/Homepage/components/Step.js +0 -61
  166. package/admin/src/components/GuidedTour/Homepage/components/Stepper.js +0 -61
  167. package/admin/src/components/GuidedTour/Homepage/index.js +0 -71
  168. package/admin/src/components/GuidedTour/Modal/components/Content.js +0 -66
  169. package/admin/src/components/GuidedTour/Modal/components/Modal.js +0 -72
  170. package/admin/src/components/GuidedTour/Modal/components/StepNumberWithPadding.js +0 -26
  171. package/admin/src/components/GuidedTour/Modal/components/Stepper.js +0 -118
  172. package/admin/src/components/GuidedTour/Modal/index.js +0 -94
  173. package/admin/src/components/GuidedTour/Modal/reducer.js +0 -29
  174. package/admin/src/components/GuidedTour/Stepper/StepLine.js +0 -29
  175. package/admin/src/components/GuidedTour/Stepper/StepNumber.js +0 -71
  176. package/admin/src/components/GuidedTour/constants.js +0 -3
  177. package/admin/src/components/GuidedTour/index.js +0 -102
  178. package/admin/src/components/GuidedTour/init.js +0 -37
  179. package/admin/src/components/GuidedTour/reducer.js +0 -50
  180. package/admin/src/components/GuidedTour/utils/arePreviousSectionsDone.js +0 -13
  181. package/admin/src/components/GuidedTour/utils/arePreviousStepsDone.js +0 -12
  182. package/admin/src/components/GuidedTour/utils/isGuidedTourCompleted.js +0 -6
  183. package/admin/src/components/GuidedTour/utils/persistStateToLocaleStorage.js +0 -34
  184. package/admin/src/components/Providers/index.js +0 -156
  185. package/admin/src/components/RBACProvider/actions.js +0 -10
  186. package/admin/src/components/RBACProvider/constants.js +0 -2
  187. package/admin/src/components/RBACProvider/index.js +0 -39
  188. package/admin/src/components/RBACProvider/reducer.js +0 -51
  189. package/admin/src/contexts/ApiTokenPermissions/index.js +0 -25
  190. package/admin/src/core/store/configureStore.js +0 -47
  191. package/admin/src/exposedHooks.js +0 -27
  192. package/admin/src/hooks/useContentTypes/index.js +0 -1
  193. package/admin/src/injectionZones.js +0 -25
  194. package/admin/src/layouts/UnauthenticatedLayout/LocaleToggle/index.js +0 -29
  195. package/admin/src/layouts/UnauthenticatedLayout/index.js +0 -55
  196. package/admin/src/reducers.js +0 -23
  197. package/admin/src/utils/checkFormValidity.js +0 -15
  198. package/admin/src/utils/createRoute.js +0 -50
  199. package/admin/src/utils/formatAPIErrors.js +0 -17
  200. package/admin/src/utils/getAttributesToDisplay.js +0 -19
  201. package/admin/src/utils/getExistingActions.js +0 -32
  202. package/admin/src/utils/getFullName.js +0 -9
  203. package/admin/src/utils/index.js +0 -9
  204. package/admin/src/utils/makeUniqueRoutes.js +0 -6
  205. package/admin/src/utils/sortLinks.js +0 -5
  206. package/build/1222.fe92c653.chunk.js +0 -35
  207. package/build/2225.a2147b8f.chunk.js +0 -79
  208. package/build/3021.33ad47fb.chunk.js +0 -103
  209. package/build/6373.1a21d665.chunk.js +0 -105
  210. package/build/8894.5ca4852a.chunk.js +0 -26
  211. package/build/9302.550cf5b7.chunk.js +0 -146
  212. package/build/Admin-authenticatedApp.e897fccb.chunk.js +0 -79
  213. package/build/Admin_InternalErrorPage.e2431a95.chunk.js +0 -1
  214. package/build/Admin_homePage.71ef8d06.chunk.js +0 -81
  215. package/build/Admin_profilePage.61704b7d.chunk.js +0 -13
  216. package/build/Admin_settingsPage.39cb9fca.chunk.js +0 -111
  217. package/build/admin-app.06f5e70a.chunk.js +0 -69
  218. package/build/admin-edit-users.64fd1318.chunk.js +0 -10
  219. package/build/content-manager.2e3f660b.chunk.js +0 -1220
  220. package/build/en-json.bd611a8e.chunk.js +0 -1
  221. package/build/main.00ea6f5a.js +0 -2665
  222. package/build/review-workflows-settings-list-view.b4a8aefb.chunk.js +0 -56
  223. package/build/runtime~main.e3bf3980.js +0 -2
  224. package/build/sso-settings-page.6a35d473.chunk.js +0 -1
  225. package/build/webhook-edit-page.65ac30ee.chunk.js +0 -33
  226. /package/admin/src/hooks/{useContentTypes/__mocks__/index.js → __mocks__/useContentTypes.ts} +0 -0
@@ -1,103 +0,0 @@
1
- (self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3021],{84802:function(l){function i(t,n,s,e){for(var _=-1,r=t==null?0:t.length;++_<r;){var c=t[_];n(e,c,s(c),t)}return e}l.exports=i},88058:function(l,i,t){var n=t(87650);function s(e,_){var r=e==null?0:e.length;return!!r&&n(e,_,0)>-1}l.exports=s},37431:function(l){function i(t,n,s){for(var e=-1,_=t==null?0:t.length;++e<_;)if(s(n,t[e]))return!0;return!1}l.exports=i},23089:function(l,i,t){var n=t(61712),s=n("length");l.exports=s},62435:function(l,i,t){var n=t(56671);function s(e,_,r,c){return n(e,function(o,u,h){_(c,o,r(o),h)}),c}l.exports=s},60528:function(l){function i(t,n,s,e){for(var _=t.length,r=s+(e?1:-1);e?r--:++r<_;)if(n(t[r],r,t))return r;return-1}l.exports=i},87650:function(l,i,t){var n=t(60528),s=t(25556),e=t(54256);function _(r,c,o){return c===c?e(r,c,o):n(r,s,o)}l.exports=_},25556:function(l){function i(t){return t!==t}l.exports=i},84351:function(l,i,t){var n=t(61124),s=t(88058),e=t(37431),_=t(30555),r=t(58491),c=t(66350),o=200;function u(h,v,p){var w=-1,a=s,Z=h.length,m=!0,x=[],d=x;if(p)m=!1,a=e;else if(Z>=o){var g=v?null:r(h);if(g)return c(g);m=!1,a=_,d=new n}else d=v?[]:x;t:for(;++w<Z;){var f=h[w],M=v?v(f):f;if(f=p||f!==0?f:0,m&&M===M){for(var E=d.length;E--;)if(d[E]===M)continue t;v&&d.push(M),x.push(f)}else a(d,M,p)||(d!==x&&d.push(M),x.push(f))}return x}l.exports=u},85580:function(l,i,t){var n=t(84802),s=t(62435),e=t(88904),_=t(77236);function r(c,o){return function(u,h){var v=_(u)?n:s,p=o?o():{};return v(u,c,e(h,2),p)}}l.exports=r},58491:function(l,i,t){var n=t(69902),s=t(13581),e=t(66350),_=1/0,r=n&&1/e(new n([,-0]))[1]==_?function(c){return new n(c)}:s;l.exports=r},54256:function(l){function i(t,n,s){for(var e=s-1,_=t.length;++e<_;)if(t[e]===n)return e;return-1}l.exports=i},38788:function(l,i,t){var n=t(23089),s=t(34327),e=t(71286);function _(r){return s(r)?e(r):n(r)}l.exports=_},71286:function(l){var i="\\ud800-\\udfff",t="\\u0300-\\u036f",n="\\ufe20-\\ufe2f",s="\\u20d0-\\u20ff",e=t+n+s,_="\\ufe0e\\ufe0f",r="["+i+"]",c="["+e+"]",o="\\ud83c[\\udffb-\\udfff]",u="(?:"+c+"|"+o+")",h="[^"+i+"]",v="(?:\\ud83c[\\udde6-\\uddff]){2}",p="[\\ud800-\\udbff][\\udc00-\\udfff]",w="\\u200d",a=u+"?",Z="["+_+"]?",m="(?:"+w+"(?:"+[h,v,p].join("|")+")"+Z+a+")*",x=Z+a+m,d="(?:"+[h+c+"?",c,v,p,r].join("|")+")",g=RegExp(o+"(?="+o+")|"+d+x,"g");function f(M){for(var E=g.lastIndex=0;g.test(M);)++E;return E}l.exports=f},81346:function(l,i,t){var n=t(40999),s=t(85580),e=Object.prototype,_=e.hasOwnProperty,r=s(function(c,o,u){_.call(c,u)?c[u].push(o):n(c,u,[o])});l.exports=r},34461:function(l,i,t){var n=t(94318),s=t(77236),e=t(3387),_="[object String]";function r(c){return typeof c=="string"||!s(c)&&e(c)&&n(c)==_}l.exports=r},13581:function(l){function i(){}l.exports=i},61868:function(l,i,t){var n=t(78803),s=t(26686),e=t(81580),_=t(34461),r=t(38788),c="[object Map]",o="[object Set]";function u(h){if(h==null)return 0;if(e(h))return _(h)?r(h):h.length;var v=s(h);return v==c||v==o?h.size:n(h).length}l.exports=u},59578:function(l,i,t){var n=t(41119);function s(e){return n(e).toLowerCase()}l.exports=s},91815:function(l,i,t){var n=t(84351);function s(e){return e&&e.length?n(e):[]}l.exports=s},8241:function(l,i,t){"use strict";t.d(i,{O:function(){return s}});var n=t(70843);const s=n.Wx},99226:function(l,i,t){"use strict";t.d(i,{A:function(){return c}});var n=t(74512),s=t(8471),e=t(77981);const _=(0,s.ZP)(e.x)`
2
- display: grid;
3
- grid-template-columns: ${({hasSideNav:o})=>o?"auto 1fr":"1fr"};
4
- `,r=(0,s.ZP)(e.x)`
5
- overflow-x: hidden;
6
- `,c=({sideNav:o,children:u})=>(0,n.jsxs)(_,{hasSideNav:Boolean(o),children:[o,(0,n.jsx)(r,{paddingBottom:10,children:u})]})},84458:function(l,i,t){"use strict";t.d(i,{r:function(){return p}});var n=t(74512),s=t(32735),e=t(95441),_=t(14911),r=t(8471),c=t(59619),o=t(8365),u=t(77981);const h=r.ZP.a`
7
- display: inline-flex;
8
- align-items: center;
9
- text-decoration: none;
10
- pointer-events: ${({disabled:w})=>w?"none":void 0};
11
- color: ${({disabled:w,theme:a})=>w?a.colors.neutral600:a.colors.primary600};
12
-
13
- svg path {
14
- transition: fill 150ms ease-out;
15
- fill: currentColor;
16
- }
17
-
18
- svg {
19
- font-size: ${10/16}rem;
20
- }
21
-
22
- ${o.Z} {
23
- transition: color 150ms ease-out;
24
- color: currentColor;
25
- }
26
-
27
- &:hover {
28
- color: ${({theme:w})=>w.colors.primary500};
29
- }
30
-
31
- &:active {
32
- color: ${({theme:w})=>w.colors.primary700};
33
- }
34
-
35
- ${c.BF};
36
- `,v=(0,r.ZP)(u.x)`
37
- display: flex;
38
- `,p=s.forwardRef(({children:w,href:a,to:Z,disabled:m=!1,startIcon:x,endIcon:d,...g},f)=>{const M=a?"_blank":void 0,E=a?"noreferrer noopener":void 0;return(0,n.jsxs)(h,{as:Z&&!m?_.OL:"a",target:M,rel:E,to:m?void 0:Z,href:m?"#":a,disabled:m,ref:f,...g,children:[x&&(0,n.jsx)(v,{as:"span","aria-hidden":!0,paddingRight:2,children:x}),(0,n.jsx)(o.Z,{children:w}),d&&!a&&(0,n.jsx)(v,{as:"span","aria-hidden":!0,paddingLeft:2,children:d}),a&&(0,n.jsx)(v,{as:"span","aria-hidden":!0,paddingLeft:2,children:(0,n.jsx)(e.Z,{})})]})})},7141:function(l,i,t){"use strict";t.d(i,{m:function(){return c}});var n=t(74512),s=t(8471),e=t(10710);const _=`${232/16}rem`,r=(0,s.ZP)(e.r)`
39
- width: ${_};
40
- background: ${({theme:o})=>o.colors.neutral100};
41
- position: sticky;
42
- top: 0;
43
- height: 100vh;
44
- overflow-y: auto;
45
- border-right: 1px solid ${({theme:o})=>o.colors.neutral200};
46
- z-index: 1;
47
- `,c=({ariaLabel:o,...u})=>(0,n.jsx)(r,{"aria-label":o,as:"nav",...u})},65352:function(l,i,t){"use strict";t.d(i,{p:function(){return x}});var n=t(74512),s=t(32735),e=t(17229),_=t(8471),r=t(56374),c=t(37808);const o=d=>{const g=(0,s.useRef)();return(0,s.useEffect)(()=>{g.current=d}),g.current};var u=t(2775),h=t(77981),v=t(56116),p=t(41604),w=t(84642),a=t(8365),Z=t(14763);const m=(0,_.ZP)(u.i)`
48
- width: ${24/16}rem;
49
- background-color: ${({theme:d})=>d.colors.neutral200};
50
- `,x=({as:d="h2",label:g,searchLabel:f="",searchable:M=!1,onChange:E=()=>{},value:P="",onClear:A=()=>{},onSubmit:D=()=>{},id:L})=>{const[O,C]=(0,s.useState)(!1),H=o(O),I=(0,c.M)(L),B=(0,s.useRef)(void 0),R=(0,s.useRef)(void 0);(0,s.useEffect)(()=>{O&&B.current&&B.current.focus(),H&&!O&&R.current&&R.current.focus()},[O,H]);const T=()=>{C(j=>!j)},W=j=>{A(j),B.current.focus()},V=j=>{j.relatedTarget?.id!==I&&C(!1)},U=j=>{j.key===r.y.ESCAPE&&C(!1)};return O?(0,n.jsxs)(h.x,{paddingLeft:4,paddingTop:5,paddingBottom:2,paddingRight:4,children:[(0,n.jsx)(v.U,{children:(0,n.jsx)(p.w,{name:"searchbar",value:P,onChange:E,placeholder:"e.g: strapi-plugin-abcd",onKeyDown:U,ref:B,onBlur:V,onClear:W,onSubmit:D,clearLabel:"Clear",size:"S",children:f})}),(0,n.jsx)(h.x,{paddingLeft:2,paddingTop:4,children:(0,n.jsx)(m,{})})]}):(0,n.jsxs)(h.x,{paddingLeft:6,paddingTop:6,paddingBottom:2,paddingRight:4,children:[(0,n.jsxs)(w.k,{justifyContent:"space-between",alignItems:"flex-start",children:[(0,n.jsx)(a.Z,{variant:"beta",as:d,children:g}),M&&(0,n.jsx)(Z.h,{ref:R,onClick:T,label:f,icon:(0,n.jsx)(e.Z,{})})]}),(0,n.jsx)(h.x,{paddingTop:4,children:(0,n.jsx)(m,{})})]})}},89274:function(l,i,t){"use strict";t.d(i,{E:function(){return w}});var n=t(74512),s=t(32735),e=t(48715),_=t(8471),r=t(77981),c=t(8365),o=t(84642),u=t(42561);const h=(0,_.ZP)(r.x)`
51
- display: flex;
52
- align-items: center;
53
- justify-content: space-between;
54
- text-decoration: none;
55
- color: ${({theme:a})=>a.colors.neutral800};
56
- svg > * {
57
- fill: ${({theme:a})=>a.colors.neutral600};
58
- }
59
-
60
- &.active {
61
- ${({theme:a})=>`
62
- background-color: ${a.colors.primary100};
63
- border-right: 2px solid ${a.colors.primary600};
64
- svg > * {
65
- fill: ${a.colors.primary700};
66
- }
67
- ${c.Z} {
68
- color: ${a.colors.primary700};
69
- font-weight: 500;
70
- }
71
- `}
72
- }
73
-
74
- &:focus-visible {
75
- outline-offset: -2px;
76
- }
77
- `,v=(0,_.ZP)(e.Z)`
78
- width: ${12/16}rem;
79
- height: ${4/16}rem;
80
- * {
81
- fill: ${({theme:a,$active:Z})=>Z?a.colors.primary600:a.colors.neutral600};
82
- }
83
- `,p=_.ZP.div`
84
- svg {
85
- height: ${12/16}rem;
86
- width: ${12/16}rem;
87
- }
88
- `,w=s.forwardRef(({children:a,icon:Z=null,withBullet:m=!1,as:x=u.f,isSubSectionChild:d=!1,...g},f)=>(0,n.jsxs)(h,{as:x,icon:Z,background:"neutral100",paddingLeft:d?9:7,paddingBottom:2,paddingTop:2,ref:f,...g,children:[(0,n.jsxs)(o.k,{children:[Z?(0,n.jsx)(p,{children:Z}):(0,n.jsx)(v,{}),(0,n.jsx)(r.x,{paddingLeft:2,children:(0,n.jsx)(c.Z,{as:"span",children:a})})]}),m&&(0,n.jsx)(r.x,{as:o.k,paddingRight:4,children:(0,n.jsx)(v,{$active:!0})})]}))},88791:function(l,i,t){"use strict";t.d(i,{D:function(){return Z}});var n=t(74512),s=t(32735),e=t(8471),_=t(91917),r=t(84642),c=t(77981),o=t(8365);const u=(0,e.ZP)(r.k)`
89
- border: none;
90
- padding: 0;
91
- background: transparent;
92
- `,h=e.ZP.div`
93
- display: flex;
94
- align-items: center;
95
- transform: rotateX(${({rotated:m})=>m?"0deg":"180deg"});
96
- `,v=({collapsable:m=!1,label:x,onClick:d=()=>{},ariaExpanded:g,ariaControls:f})=>m?(0,n.jsxs)(u,{as:"button",onClick:d,"aria-expanded":g,"aria-controls":f,textAlign:"left",children:[(0,n.jsx)(c.x,{paddingRight:1,children:(0,n.jsx)(o.Z,{variant:"sigma",textColor:"neutral600",children:x})}),m&&(0,n.jsx)(h,{rotated:g,children:(0,n.jsx)(_.Z,{"aria-hidden":!0})})]}):(0,n.jsx)(u,{children:(0,n.jsx)(c.x,{paddingRight:1,children:(0,n.jsx)(o.Z,{variant:"sigma",textColor:"neutral600",children:x})})});var p=t(37808),w=t(14298);const a=(0,e.ZP)(c.x)`
97
- svg {
98
- height: ${4/16}rem;
99
- path {
100
- fill: ${({theme:m})=>m.colors.neutral500};
101
- }
102
- }
103
- `,Z=({collapsable:m=!1,label:x,badgeLabel:d,children:g,id:f})=>{const[M,E]=(0,s.useState)(!0),P=(0,p.M)(f),A=()=>{E(D=>!D)};return(0,n.jsxs)(r.k,{direction:"column",alignItems:"stretch",gap:1,children:[(0,n.jsx)(a,{paddingLeft:6,paddingTop:2,paddingBottom:2,paddingRight:4,children:(0,n.jsxs)(c.x,{position:"relative",paddingRight:d?6:0,children:[(0,n.jsx)(v,{onClick:A,ariaExpanded:M,ariaControls:P,collapsable:m,label:x}),d&&(0,n.jsx)(w.C,{backgroundColor:"neutral150",textColor:"neutral600",position:"absolute",right:0,top:"50%",transform:"translateY(-50%)",children:d})]})}),(!m||M)&&(0,n.jsx)("ol",{id:P,children:s.Children.map(g,(D,L)=>(0,n.jsx)("li",{children:D},L))})]})}},36473:function(l,i,t){"use strict";t.d(i,{Z:function(){return r}});var n=t(74512),s=t(32735),e=t(77981),_=t(84642);const r=({children:c,spacing:o=2,horizontal:u=!1,...h})=>(0,n.jsx)(e.x,{paddingTop:2,paddingBottom:4,children:(0,n.jsx)(_.k,{as:"ol",gap:o,direction:u?"row":"column",alignItems:u?"center":"stretch",...h,children:s.Children.map(c,(v,p)=>(0,n.jsx)("li",{children:v},p))})})},98851:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 2a8.5 8.5 0 0 1 8.5 8.5c0 6.5-5.5 12-8.5 12s-8.5-5.5-8.5-12A8.5 8.5 0 0 1 12 2Zm5.5 10a4.5 4.5 0 0 0-4.475 4.975 4.5 4.5 0 0 0 4.95-4.95A4.54 4.54 0 0 0 17.5 12Zm-11 0c-.16 0-.319.008-.475.025a4.5 4.5 0 0 0 4.95 4.95A4.5 4.5 0 0 0 6.5 12Z"})}),e=s},88454:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M14 10v4h-4v-4h4Zm2 0h5v4h-5v-4Zm-2 11h-4v-5h4v5Zm2 0v-5h5v4a1 1 0 0 1-1 1h-4ZM14 3v5h-4V3h4Zm2 0h4a1 1 0 0 1 1 1v4h-5V3Zm-8 7v4H3v-4h5Zm0 11H4a1 1 0 0 1-1-1v-4h5v5ZM8 3v5H3V4a1 1 0 0 1 1-1h4Z"})}),e=s},60860:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M3 10h18v10.004c0 .55-.445.996-.993.996H3.993A.994.994 0 0 1 3 20.004V10Zm6 2v2h6v-2H9ZM2 4c0-.552.455-1 .992-1h18.016c.548 0 .992.444.992 1v4H2V4Z"})}),e=s},72480:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M13.3 0c.11 0 .2.09.2.2v18.06l8.238-8.239a.2.2 0 0 1 .283 0l1.837 1.838a.2.2 0 0 1 0 .282L12.141 23.86a.2.2 0 0 1-.283 0L.141 12.14a.2.2 0 0 1 0-.282l1.837-1.838a.2.2 0 0 1 .283 0L10.5 18.26V.2c0-.11.09-.2.2-.2h2.6Z"})}),e=s},70788:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M24 13.3a.2.2 0 0 1-.2.2H5.74l8.239 8.239a.2.2 0 0 1 0 .282L12.14 23.86a.2.2 0 0 1-.282 0L.14 12.14a.2.2 0 0 1 0-.282L11.86.14a.2.2 0 0 1 .282 0L13.98 1.98a.2.2 0 0 1 0 .282L5.74 10.5H23.8c.11 0 .2.09.2.2v2.6Z"})}),e=s},23381:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M10.7 24a.2.2 0 0 1-.2-.2V5.74L2.26 13.979a.2.2 0 0 1-.283 0L.141 12.14a.2.2 0 0 1 0-.282L11.858.14a.2.2 0 0 1 .283 0L23.858 11.86a.2.2 0 0 1 0 .282l-1.837 1.838a.2.2 0 0 1-.283 0L13.5 5.74V23.8a.2.2 0 0 1-.2.2h-2.6Z"})}),e=s},32095:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M14 13.5V8a4 4 0 1 0-8 0v5.5a6.5 6.5 0 0 0 13 0V4h2v9.5a8.5 8.5 0 1 1-17 0V8a6 6 0 1 1 12 0v5.5a3.5 3.5 0 1 1-7 0V8h2v5.5a1.5 1.5 0 1 0 3 0Z"})}),e=s},87436:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M22 20H2v-2h1v-6.969C3 6.043 7.03 2 12 2s9 4.043 9 9.031V18h1v2ZM9.5 21h5a2.5 2.5 0 0 1-5 0Z"})}),e=s},73892:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#32324D",fillRule:"evenodd",d:"M7.4 1.2H4.2v21.6h3.2V1.2Zm11.6 6a6 6 0 0 1-1.5 4 6.4 6.4 0 0 1-3.8 11.6H7.4v-3.2h6.3c1.8 0 3.3-1.4 3.3-3.2 0-1.8-1.5-3.2-3.3-3.2H7.4V10H13a2.8 2.8 0 0 0 0-5.6H7.4V1.2H13a6 6 0 0 1 6 6Z",clipRule:"evenodd"})}),e=s},54342:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#EAFBE7",stroke:"#C6F0C2",rx:2.5}),(0,n.jsx)("path",{fill:"#328048",d:"M19.5 7h-7A4.505 4.505 0 0 0 8 11.5c0 2.481 2.019 4.5 4.5 4.5h7c2.481 0 4.5-2.019 4.5-4.5S21.981 7 19.5 7Zm0 8a3.5 3.5 0 1 1 0-7 3.5 3.5 0 0 1 0 7Z"})]}),e=s},1586:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M7 5V2a1 1 0 0 1 1-1h8a1 1 0 0 1 1 1v3h4a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1V6a1 1 0 0 1 1-1h4Zm10 8v-3h-2v3H9v-3H7v3H4v6h16v-6h-3ZM9 3v2h6V3H9Z"})}),e=s},2651:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"m13.289 6.216 4.939-3.841a1 1 0 0 1 1.32.082l2.995 2.994a1 1 0 0 1 .082 1.321l-3.84 4.938a7.504 7.504 0 0 1-7.283 9.292C8 21.002 3.5 19.5 1 18c3.98-3 3.047-4.81 3.5-6.5 1.058-3.95 4.842-6.257 8.789-5.284Zm3.413 1.879c.065.063.13.128.193.194l1.135 1.134 2.475-3.182-1.746-1.746-3.182 2.475 1.125 1.125Z"})}),e=s},44494:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#32324D",fillRule:"evenodd",d:"M3.64 7.23a2.14 2.14 0 1 1 0-4.27 2.14 2.14 0 0 1 0 4.27Zm4.98-3.25H22.5v2.37H8.62V3.98Zm-7.12 8.1a2.14 2.14 0 1 0 4.27 0 2.14 2.14 0 0 0-4.27 0Zm2.14 9.04a2.14 2.14 0 1 1 0-4.27 2.14 2.14 0 0 1 0 4.27ZM22.5 10.87H8.62v2.37H22.5v-2.37Zm-13.88 6.9H22.5v2.37H8.62v-2.37Z",clipRule:"evenodd"})}),e=s},5894:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M19 20H5v1a1 1 0 0 1-1 1H3a1 1 0 0 1-1-1v-9l2.513-6.702A2 2 0 0 1 6.386 4h11.228a2 2 0 0 1 1.873 1.298L22 12v9a1 1 0 0 1-1 1h-1a1 1 0 0 1-1-1v-1ZM4.136 12h15.728l-2.25-6H6.386l-2.25 6ZM6.5 17a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm11 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})}),e=s},88026:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M3 3h18a1 1 0 0 1 1 1v16a1 1 0 0 1-1 1h-6c0-.67-.051-1.338-.153-2H20V5H4v3.153A13.1 13.1 0 0 0 2 8V4a1 1 0 0 1 1-1Zm10 18h-2a9 9 0 0 0-9-9v-2c6.075 0 11 4.925 11 11Zm-4 0H7a5 5 0 0 0-5-5v-2a7 7 0 0 1 7 7Zm-4 0H2v-3a3 3 0 0 1 3 3Zm9.373-4A13.033 13.033 0 0 0 6 8.627V7h12v10h-3.627Z"})}),e=s},94852:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M16 16a3 3 0 1 1 0 6 3 3 0 0 1 0-6ZM6 12c2.21 0 4 1.79 4 4s-1.79 4-4 4-4-1.79-4-4 1.79-4 4-4Zm8.5-10a5.5 5.5 0 1 1 0 11 5.5 5.5 0 0 1 0-11Z"})}),e=s},72911:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M11 2.05v3.02a7 7 0 1 0 5.192 12.536l2.137 2.137A9.966 9.966 0 0 1 12 22C6.477 22 2 17.523 2 12c0-5.185 3.947-9.449 9-9.95ZM21.95 13a9.947 9.947 0 0 1-2.207 5.328l-2.137-2.136A6.958 6.958 0 0 0 18.929 13h3.022-.001ZM13.002 2.05a10.004 10.004 0 0 1 8.95 8.95H18.93a7.005 7.005 0 0 0-5.928-5.929V2.049v.001Z"})}),e=s},37781:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M11 2.05V13h10.95c-.501 5.053-4.765 9-9.95 9-5.523 0-10-4.477-10-10 0-5.185 3.947-9.449 9-9.95Zm2-1.507C18.553 1.02 22.979 5.447 23.457 11H13V.543Z"})}),e=s},24591:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M17 7a8.003 8.003 0 0 0-7.493 5.19l1.874.703A6.002 6.002 0 0 1 23.001 15a6 6 0 0 1-6 6H7A6 6 0 0 1 5.007 9.339a7 7 0 0 1 13.757-2.143A8.027 8.027 0 0 0 17 7Z"})}),e=s},68620:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#32324D",d:"m9.8 15.5-6.3-3.7 6.3-3.6V5.3l-8.8 5v3l8.8 5v-2.8Zm4.4-7 6.3 3.6-6.3 3.7v2.9l8.8-5.1v-2.9l-8.8-5v2.8Z"})}),e=s},39638:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 22 22",..._,children:(0,n.jsx)("path",{fill:"#32324D",d:"M5 5H0v2.5h7.5V0H5v5Zm17 0h-5.1V0h-2.5v7.5h7.5V5ZM7.5 14.4H0v2.5h5v5h2.5v-7.5Zm9.4 2.5h5v-2.5h-7.5v7.5h2.5v-5Z"})}),e=s},17110:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fillRule:"evenodd",d:"M3.98.027a4.485 4.485 0 0 0-1.64.507C.885 1.308 0 2.802 0 4.485 0 6.759 1.577 8.628 3.828 9.02c.267.047.715.06 2.037.06H7.56v5.84H5.95c-.928 0-1.762.019-1.97.044a4.474 4.474 0 0 0-1.445.435C.974 16.165 0 17.747 0 19.515c0 1.229.451 2.328 1.304 3.181a4.387 4.387 0 0 0 6.234.002c.573-.572.945-1.225 1.174-2.058l.105-.38.014-2.01.014-2.01h6.31l.014 2.01.014 2.01.105.38c.39 1.419 1.329 2.5 2.624 3.022.536.217.902.296 1.491.326a4.345 4.345 0 0 0 3.294-1.293c.85-.85 1.303-1.955 1.303-3.18 0-2.327-1.7-4.271-3.98-4.551-.208-.025-1.042-.044-1.97-.044h-1.61V9.08h1.695c1.832 0 2.058-.019 2.712-.224C22.719 8.269 24 6.492 24 4.485c0-1.185-.44-2.297-1.231-3.109C21.429-.001 19.426-.381 17.73.42c-1.244.588-2.069 1.58-2.442 2.94l-.105.38-.014 2.03-.014 2.03h-6.31l-.014-2.03-.014-2.03-.105-.38C8.427 2.323 7.877 1.498 7.06.883 6.712.621 5.998.269 5.6.163 5.094.028 4.427-.028 3.98.027m1.132 1.317c.932.192 1.765.871 2.185 1.782.249.539.263.691.263 2.816v1.906l-1.73-.019c-1.853-.02-1.992-.034-2.509-.242-.422-.171-.689-.355-1.081-.747-.526-.527-.779-.982-.902-1.625-.077-.399-.074-1.102.006-1.487.234-1.136 1.227-2.14 2.357-2.382a4.203 4.203 0 0 1 1.411-.002m15.16 0c1.15.237 2.147 1.234 2.384 2.384.08.385.083 1.088.006 1.487-.123.643-.376 1.098-.902 1.625-.392.392-.659.576-1.081.747-.517.208-.656.222-2.509.242l-1.73.019V5.942c0-2.125.014-2.277.263-2.816.414-.898 1.247-1.584 2.158-1.78a4.203 4.203 0 0 1 1.411-.002M15.16 12v2.96H8.84V9.04h6.32V12m-7.6 6.082c0 2.099-.015 2.254-.263 2.792a3.182 3.182 0 0 1-2.19 1.788c-.36.081-1.019.079-1.392-.005-1.16-.26-2.136-1.241-2.371-2.385-.129-.622-.063-1.504.15-2.032.347-.859 1.148-1.614 2.017-1.898.371-.121.558-.133 2.319-.137l1.73-.005v1.882m12.86-1.766c.943.314 1.728 1.037 2.086 1.924.208.516.279 1.426.156 2.007a3.185 3.185 0 0 1-2.377 2.41c-.373.084-1.032.086-1.392.005a3.182 3.182 0 0 1-2.19-1.788c-.248-.538-.263-.693-.263-2.795v-1.884l1.85.014c1.811.014 1.856.016 2.13.107"})}),e=s},79334:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#F6F6F9",stroke:"#DCDCE4",rx:2.5}),(0,n.jsx)("path",{fill:"#666687",fillRule:"evenodd",d:"M13.535 8.768c0 .116-.011.229-.032.339l3.013 1.776 2.985-1.76a1.768 1.768 0 1 1 .519.93l-2.982 1.757v2.477a1.768 1.768 0 1 1-1.048-.044v-2.435l-2.997-1.767a1.768 1.768 0 1 1 .542-1.274Z",clipRule:"evenodd"}),(0,n.jsx)("path",{fill:"#666687",d:"m13.503 9.107-.05-.01-.006.035.03.018.026-.043Zm3.013 1.776-.025.043.025.014.025-.014-.025-.043Zm2.985-1.76.025.044.031-.018-.007-.035-.05.01Zm.518.93.035-.036-.027-.026-.033.02.026.042Zm-2.98 1.757-.026-.043-.025.014v.029h.05Zm0 2.477h-.05v.035l.032.012.017-.047Zm-1.049-.044.013.048.037-.01v-.038h-.05Zm0-2.435h.05v-.029l-.024-.014-.026.043Zm-2.997-1.767.025-.043-.033-.019-.027.027.035.035Zm.559-.925c.022-.113.033-.23.033-.348h-.1c0 .112-.01.223-.031.33l.098.018Zm2.99 1.723-3.014-1.775-.05.086 3.013 1.775.05-.086Zm2.933-1.758-2.984 1.758.05.086 2.985-1.758-.05-.086Zm-.06-.313c0 .125.013.247.037.366l.098-.02a1.723 1.723 0 0 1-.035-.346h-.1Zm1.818-1.818a1.818 1.818 0 0 0-1.818 1.818h.1c0-.949.769-1.718 1.718-1.718v-.1Zm1.817 1.818a1.818 1.818 0 0 0-1.817-1.818v.1c.948 0 1.717.769 1.717 1.718h.1Zm-1.817 1.817a1.818 1.818 0 0 0 1.817-1.817h-.1c0 .948-.769 1.717-1.717 1.717v.1Zm-1.248-.495c.326.307.765.495 1.248.495v-.1c-.457 0-.872-.178-1.18-.468l-.068.073Zm-2.921 1.763 2.98-1.757-.05-.086-2.981 1.757.05.086Zm.024 2.434V11.81h-.1v2.477h.1Zm-.067.047a1.718 1.718 0 0 1 1.14 1.618h.1c0-.79-.503-1.46-1.206-1.712l-.034.094Zm1.14 1.618c0 .948-.77 1.717-1.718 1.717v.1a1.817 1.817 0 0 0 1.817-1.817h-.1Zm-1.718 1.717a1.718 1.718 0 0 1-1.718-1.717h-.1c0 1.004.814 1.817 1.818 1.817v-.1Zm-1.718-1.717c0-.797.543-1.467 1.278-1.66l-.026-.098a1.818 1.818 0 0 0-1.352 1.758h.1Zm1.215-4.144v2.435h.1v-2.435h-.1Zm-2.973-1.723 2.998 1.766.05-.086-2.997-1.767-.05.087Zm-1.2.5c.49 0 .934-.193 1.26-.507l-.069-.072c-.309.296-.728.48-1.19.48v.1ZM9.95 8.768c0 1.003.814 1.817 1.818 1.817v-.1a1.718 1.718 0 0 1-1.718-1.717h-.1Zm1.818-1.818A1.818 1.818 0 0 0 9.95 8.768h.1c0-.949.769-1.718 1.717-1.718v-.1Zm1.817 1.818a1.818 1.818 0 0 0-1.818-1.818v.1c.95 0 1.718.769 1.718 1.718h.1Z"})]}),e=s},40685:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M8 5h3v9H8v3H6v-3H3V5h3V2h2v3Zm10 5h3v9h-3v3h-2v-3h-3v-9h3V7h2v3Z"})}),e=s},9362:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M2.8 5.2 7 8l4.186-5.86a1 1 0 0 1 1.628 0L17 8l4.2-2.8a1 1 0 0 1 1.547.95l-1.643 13.967a1 1 0 0 1-.993.883H3.889a1 1 0 0 1-.993-.883L1.253 6.149A1 1 0 0 1 2.8 5.2ZM12 15a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})}),e=s},83708:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",viewBox:"0 0 448 512",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M216.3 2c4.8-2.6 10.5-2.6 15.3 0l190.7 104c5.1 2.8 8.3 8.2 8.3 14s-3.2 11.2-8.3 14L231.7 238c-4.8 2.6-10.5 2.6-15.3 0L25.7 134c-5.1-2.8-8.3-8.2-8.3-14s3.2-11.2 8.3-14L216.3 2zM23.7 170l176 96c5.1 2.8 8.3 8.2 8.3 14v216c0 5.6-3 10.9-7.8 13.8s-10.9 3-15.8.3L8.3 414c-5.1-2.8-8.3-8.1-8.3-14V184c0-5.6 3-10.9 7.8-13.8s10.9-3 15.8-.3zm400.7 0c5-2.7 11-2.6 15.8.3s7.8 8.1 7.8 13.8V400c0 5.9-3.2 11.2-8.3 14l-176 96c-5 2.7-11 2.6-15.8-.3s-7.8-8.1-7.8-13.8V280c0-5.9 3.2-11.2 8.3-14l176-96z"})}),e=s},6665:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M5 3h15a2 2 0 0 1 2 2v3a2 2 0 0 1-2 2h-2v3a4 4 0 0 1-4 4H8a4 4 0 0 1-4-4V4a1 1 0 0 1 1-1Zm13 2v3h2V5h-2ZM2 19h18v2H2v-2Z"})}),e=s},66846:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M13.91 12.36 17 20.854l-2.818 1.026-3.092-8.494-4.172 3.156 1.49-14.909 10.726 10.463-5.224.264Z"})}),e=s},70146:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M3 13h8V3H3v10Zm0 8h8v-6H3v6Zm10 0h8V11h-8v10Zm0-18v6h8V3h-8Z"})}),e=s},80031:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M21 9.5v3c0 2.485-4.03 4.5-9 4.5s-9-2.015-9-4.5v-3c0 2.485 4.03 4.5 9 4.5s9-2.015 9-4.5Zm-18 5c0 2.485 4.03 4.5 9 4.5s9-2.015 9-4.5v3c0 2.485-4.03 4.5-9 4.5s-9-2.015-9-4.5v-3Zm9-2.5c-4.97 0-9-2.015-9-4.5S7.03 3 12 3s9 2.015 9 4.5-4.03 4.5-9 4.5Z"})}),e=s},44298:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("path",{fill:"#FDF4DC",stroke:"#FAE7B9",d:"M.5 3A2.5 2.5 0 0 1 3 .5h26A2.5 2.5 0 0 1 31.5 3v18a2.5 2.5 0 0 1-2.5 2.5H3A2.5 2.5 0 0 1 .5 21V3Z"}),(0,n.jsx)("path",{fill:"#D9822F",fillRule:"evenodd",d:"M11.934 7.495V6h1.45v1.495h5.232V6h1.45v1.495h.314c1.385 0 1.602.249 1.62 1.463V16.5c0 1.062-.096 1.5-1.4 1.5h-9.19c-1.306 0-1.41-.318-1.41-1.607V9.105c.018-1.025.117-1.61 1.5-1.61h.434Zm-.774 8.687c0 .406.123.433.388.433h8.953c.265 0 .34-.007.34-.413v-6.087c-.008-.314-.11-.369-.316-.369h-9.072c-.206 0-.296.045-.293.287v6.15Z",clipRule:"evenodd"})]}),e=s},13713:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M16.8 19 14 22.5 11.2 19H6a1 1 0 0 1-1-1V7.103a1 1 0 0 1 1-1h16a1 1 0 0 1 1 1V18a1 1 0 0 1-1 1h-5.2ZM2 2h17v2H3v11H1V3a1 1 0 0 1 1-1Z"})}),e=s},37455:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M8 3v2H6v4c0 2.21 1.79 4 4 4s4-1.79 4-4V5h-2V3h3a1 1 0 0 1 1 1v5a6.002 6.002 0 0 1-5 5.917V16.5a3.5 3.5 0 0 0 6.775 1.237 3 3 0 1 1 2.049.148A5.5 5.5 0 0 1 9 16.5v-1.583A6 6 0 0 1 4 9V4a1 1 0 0 1 1-1h3Z"})}),e=s},48715:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 4 4",..._,children:(0,n.jsx)("rect",{width:4,height:4,fill:"#A5A5BA",rx:2})}),e=s},28385:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#F6F6F9",stroke:"#DCDCE4",rx:2.5}),(0,n.jsx)("path",{fill:"#666687",d:"M20.573 8c-1.484 0-2.666.745-3.397 1.37l-.026.023-.416.452.919 1.51.68-.682c.711-.6 1.506-.93 2.24-.93 1.48 0 2.685 1.171 2.685 2.612 0 1.44-1.205 2.613-2.685 2.613-2.25 0-3.78-2.974-3.795-3.004C16.69 11.784 14.75 8 11.428 8 8.985 8 7 9.954 7 12.355c0 2.401 1.986 4.355 4.427 4.355 1.196 0 2.373-.476 3.404-1.376l.022-.02.413-.45-.919-1.51-.683.686c-.712.616-1.465.928-2.237.928-1.48 0-2.685-1.172-2.685-2.613 0-1.44 1.205-2.613 2.685-2.613 2.25 0 3.78 2.974 3.795 3.004.088.18 2.028 3.964 5.35 3.964 2.442 0 4.428-1.954 4.428-4.355C25 9.954 23.014 8 20.573 8Z"})]}),e=s},80016:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#FCECEA",stroke:"#F5C0B8",rx:2.5}),(0,n.jsx)("path",{fill:"#D02B20",d:"M16.767 17.49c.724 0 1.428-.089 1.962-.253v-1.093c-.383.143-1.128.239-1.86.239-2.905 0-4.744-1.764-4.744-4.546v-.014c0-2.734 1.839-4.641 4.484-4.641 2.598 0 4.307 1.62 4.307 4.088v.013c0 1.402-.444 2.304-1.135 2.304-.417 0-.656-.287-.656-.772V9.157h-1.38v.82h-.124c-.273-.608-.868-.97-1.6-.97-1.367 0-2.296 1.135-2.296 2.789v.014c0 1.73.943 2.884 2.365 2.884.793 0 1.353-.362 1.64-1.052h.123l.007.04c.158.636.78 1.033 1.62 1.033 1.655 0 2.687-1.367 2.687-3.534v-.014c0-3.008-2.242-5.072-5.517-5.072-3.418 0-5.776 2.324-5.776 5.694v.014c0 3.431 2.331 5.687 5.893 5.687Zm-.342-4.053c-.718 0-1.149-.602-1.149-1.586v-.014c0-.991.431-1.586 1.156-1.586.724 0 1.182.608 1.182 1.586v.014c0 .977-.458 1.585-1.19 1.585Z"})]}),e=s},84951:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10Zm-4-9a4 4 0 1 0 8 0H8Zm0-2a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm8 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})}),e=s},87816:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 22C6.477 22 2 17.523 2 12S6.477 2 12 2s10 4.477 10 10-4.477 10-10 10Zm-5-5h2a3 3 0 0 1 6 0h2a5 5 0 1 0-10 0Zm1-6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm8 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})}),e=s},60384:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#F6ECFC",stroke:"#E0C1F4",rx:2.5}),(0,n.jsx)("path",{fill:"#9736E8",fillRule:"evenodd",d:"M10.167 7a1.167 1.167 0 1 0 0 2.333 1.167 1.167 0 0 0 0-2.333Zm0 4.03a1.167 1.167 0 1 0 0 2.334 1.167 1.167 0 0 0 0-2.334ZM9 16.23a1.167 1.167 0 1 1 2.333 0 1.167 1.167 0 0 1-2.333 0Zm4.005-9.02a.4.4 0 0 0-.4.4v1.11c0 .22.18.4.4.4H22.6a.4.4 0 0 0 .4-.4V7.61a.4.4 0 0 0-.4-.4h-9.594Zm-.399 4.432a.4.4 0 0 1 .4-.4H22.6c.22 0 .4.18.4.4v1.11a.4.4 0 0 1-.4.4h-9.594a.4.4 0 0 1-.4-.4v-1.11Zm.4 3.63a.4.4 0 0 0-.4.4v1.11c0 .22.18.4.4.4H22.6a.4.4 0 0 0 .4-.4v-1.11a.4.4 0 0 0-.4-.4h-9.594Z",clipRule:"evenodd"})]}),e=s},50720:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:[(0,n.jsx)("path",{fill:"#32324D",d:"M0 2.8A.8.8 0 0 1 .8 2h22.4a.8.8 0 0 1 .8.8v2.71a1 1 0 0 1-1 1H1a1 1 0 0 1-1-1V2.8Z"}),(0,n.jsx)("path",{fill:"#32324D",d:"M1.922 7.991C.197 6.675 0 6.252 0 5.289h23.953c.305 1.363-1.594 2.506-2.297 3.125-1.953 1.363-6.253 4.36-7.828 5.45-1.575 1.09-3.031.455-3.562 0-2.063-1.41-6.62-4.557-8.344-5.873ZM22.8 18H1.2c-.663 0-1.2.471-1.2 1.053v1.894C0 21.529.537 22 1.2 22h21.6c.663 0 1.2-.471 1.2-1.053v-1.894c0-.582-.537-1.053-1.2-1.053Z"}),(0,n.jsx)("path",{fill:"#32324D",d:"M0 9.555v10.972h24V9.554c-2.633 1.95-8.367 6.113-9.96 7.166-1.595 1.052-3.352.438-4.032 0L0 9.555Z"})]}),e=s},62864:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#32324D",d:"M15.5 3.5h5v5H23V1h-7.5v2.5Zm5 17h-5V23H23v-7.5h-2.5v5Zm-17-17h5V1H1v7.5h2.5v-5ZM1 23.3h7.5v-2.5h-5v-5H1v7.5Z"})}),e=s},12350:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M21 2C6 2 4 16 3 22h1.998c.666-3.333 2.333-5.166 5.002-5.5 4-.5 7-4 8-7l-1.5-1 1-1c1-1 2.004-2.5 3.5-5.5Z"})}),e=s},19211:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 32",..._,children:(0,n.jsx)("path",{fill:"#D02B20",fillRule:"evenodd",d:"M23.305 8.118 16.39.74C15.947.27 15.347 0 14.747 0H2.337c-.632 0-1.2.27-1.642.741A2.529 2.529 0 0 0 0 2.493v27.014C0 30.888 1.042 32 2.337 32h19.326C22.958 32 24 30.888 24 29.507V9.87c0-.64-.253-1.28-.695-1.751Zm-1.326.606h-5.116c-.568 0-1.042-.505-1.042-1.111V2.189l6.158 6.535Zm-.316 21.828H2.337c-.537 0-.98-.472-.98-1.045V2.493c0-.27.096-.54.285-.741a.949.949 0 0 1 .695-.304h12.126v6.165c0 1.414 1.074 2.56 2.4 2.56h5.78v19.334c0 .573-.443 1.045-.98 1.045ZM10.477 19.734 6.512 23.7a.73.73 0 0 0 0 1.024.73.73 0 0 0 1.023 0l3.965-3.965 3.965 3.965a.73.73 0 0 0 1.023 0 .73.73 0 0 0 0-1.024l-3.965-3.965 4.2-4.2a.73.73 0 0 0 0-1.023c-.28-.279-.768-.255-1.047.024L11.5 18.71l-4.176-4.176c-.28-.28-.768-.303-1.047-.024a.73.73 0 0 0 0 1.024l4.2 4.2Z",clipRule:"evenodd"})}),e=s},27840:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M18.901 10a3 3 0 0 0 4.075 1.113 3.5 3.5 0 0 1-1.975 3.55V21h-6v-2a3 3 0 0 0-5.996-.176L9 19v2H3v-6.336a3.5 3.5 0 0 1-1.979-3.553A2.999 2.999 0 0 0 5.098 10h13.803Zm-1.865-7a3.5 3.5 0 0 0 4.446 2.86 3.5 3.5 0 0 1-3.29 3.135L18 9H6a3.5 3.5 0 0 1-3.482-3.14A3.5 3.5 0 0 0 6.964 3h10.072Z"})}),e=s},75337:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M15 2a4 4 0 0 1 3.464 6.001L23 8v2h-2v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V10H1V8l4.536.001A4 4 0 0 1 12 3.355 3.983 3.983 0 0 1 15 2Zm-2 8h-2v10h2V10ZM9 4a2 2 0 0 0-.15 3.995L9 8h2V6a2 2 0 0 0-1.697-1.977l-.154-.018L9 4Zm6 0a2 2 0 0 0-1.995 1.85L13 6v2h2a2 2 0 0 0 1.995-1.85L17 6a2 2 0 0 0-2-2Z"})}),e=s},9568:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M13 21h5v2H6v-2h5v-1.05a10.001 10.001 0 0 1-7.684-4.988l1.737-.992A8 8 0 1 0 15.97 3.053l.992-1.737A9.996 9.996 0 0 1 22 10c0 5.185-3.947 9.449-9 9.95V21Zm-1-4a7 7 0 1 1 0-14 7 7 0 0 1 0 14Z"})}),e=s},22523:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M9.33 11.5h2.17A4.5 4.5 0 0 1 16 16H8.999L9 17h8v-1a5.579 5.579 0 0 0-.886-3H19a5 5 0 0 1 4.516 2.851C21.151 18.972 17.322 21 13 21c-2.761 0-5.1-.59-7-1.625v-9.304A6.967 6.967 0 0 1 9.33 11.5ZM4 9a1 1 0 0 1 .993.883L5 10v9a1 1 0 0 1-1 1H2a1 1 0 0 1-1-1v-9a1 1 0 0 1 1-1h2Zm9.646-5.425L14 3.93l.354-.354a2.5 2.5 0 1 1 3.535 3.536L14 11l-3.89-3.89a2.5 2.5 0 1 1 3.536-3.535Z"})}),e=s},73981:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"m7.784 14 .42-4H4V8h4.415l.525-5h2.011l-.525 5h3.989l.525-5h2.011l-.525 5H20v2h-3.784l-.42 4H20v2h-4.415l-.525 5h-2.011l.525-5H9.585l-.525 5H7.049l.525-5H4v-2h3.784Zm2.011 0h3.99l.42-4h-3.99l-.42 4Z"})}),e=s},64745:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M4 12h3a2 2 0 0 1 2 2v5a2 2 0 0 1-2 2H4a2 2 0 0 1-2-2v-7C2 6.477 6.477 2 12 2s10 4.477 10 10v7a2 2 0 0 1-2 2h-3a2 2 0 0 1-2-2v-5a2 2 0 0 1 2-2h3a8 8 0 0 0-16 0Z"})}),e=s},44130:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M16.5 3C19.538 3 22 5.5 22 9c0 7-7.5 11-10 12.5C9.5 20 2 16 2 9c0-3.5 2.5-6 5.5-6C9.36 3 11 4 12 5c1-1 2.64-2 4.5-2Z"})}),e=s},85406:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M20 20a1 1 0 0 1-1 1H5a1 1 0 0 1-1-1v-9H1l10.327-9.388a1 1 0 0 1 1.346 0L23 11h-3v9Z"})}),e=s},51098:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#32324D",d:"M19.7 1H9.4v3h3.1l-4 16H4.2v3h10.3v-3h-3.3l4.2-16h4.2V1Z"})}),e=s},19455:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#EAF5FF",stroke:"#B8E1FF",rx:2.5}),(0,n.jsx)("path",{fill:"#0C75AF",fillRule:"evenodd",d:"M8.243 11.907v.157c.835.093 1.287.516 1.287 1.223V14.5c0 .693.236.959.855.959h.216V16.5h-.364c-1.459 0-2.078-.56-2.078-1.857v-.973c0-.722-.314-.992-1.159-1.002v-1.366c.84-.005 1.16-.275 1.16-1.002v-.968c0-1.282.618-1.832 2.077-1.832h.364v1.041h-.216c-.624 0-.855.266-.855.958v1.184c0 .713-.452 1.135-1.287 1.224Zm15.804.181v-.157c-.835-.088-1.287-.51-1.287-1.223V9.495c0-.693-.236-.954-.855-.954h-.216V7.5h.363c1.454 0 2.073.56 2.073 1.852v.973c0 .722.32.997 1.165 1.002v1.366c-.845.005-1.165.28-1.165 1.002v.973c0 1.282-.613 1.832-2.073 1.832h-.363v-1.046h.216c.619 0 .855-.26.855-.954v-1.188c0-.708.452-1.13 1.287-1.224ZM13.15 13a1 1 0 1 0 0-2 1 1 0 0 0 0 2Zm4-1a1 1 0 1 1-2 0 1 1 0 0 1 2 0Zm2 1a1 1 0 1 0 0-2 1 1 0 0 0 0 2Z",clipRule:"evenodd"})]}),e=s},42815:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M17 14h-4.34a6 6 0 1 1 0-4H23v4h-2v4h-4v-4ZM7 14a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})}),e=s},9780:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M4.8.2c0-.11.09-.2.2-.2h18.8c.11 0 .2.09.2.2v4.4a.2.2 0 0 1-.2.2H5a.2.2 0 0 1-.2-.2V.2ZM0 9.8c0-.11.09-.2.2-.2H19c.11 0 .2.09.2.2v4.4a.2.2 0 0 1-.2.2H.2a.2.2 0 0 1-.2-.2V9.8ZM5 19.2a.2.2 0 0 0-.2.2v4.4c0 .11.09.2.2.2h18.8a.2.2 0 0 0 .2-.2v-4.4a.2.2 0 0 0-.2-.2H5Z"})}),e=s},47763:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M11 18H7.941c-.297-1.273-1.637-2.314-2.187-3a8 8 0 1 1 12.49.002c-.55.685-1.888 1.726-2.185 2.998H13v-5h-2v5Zm5 2v1a2 2 0 0 1-2 2h-4a2 2 0 0 1-2-2v-1h8Z"})}),e=s},36328:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M19 10h1a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V11a1 1 0 0 1 1-1h1V9a7 7 0 0 1 14 0v1Zm-2 0V9A5 5 0 0 0 7 9v1h10Zm-6 4v4h2v-4h-2Z"})}),e=s},17037:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"m15.224 15.508-2.213 4.65a.6.6 0 0 1-.977.155l-3.542-3.739a.6.6 0 0 0-.357-.182l-5.107-.668a.6.6 0 0 1-.449-.881l2.462-4.524a.6.6 0 0 0 .062-.396L4.16 4.86a.6.6 0 0 1 .7-.7l5.063.943a.6.6 0 0 0 .396-.062l4.524-2.462a.6.6 0 0 1 .881.45l.668 5.106a.6.6 0 0 0 .182.357l3.739 3.542a.601.601 0 0 1-.155.977l-4.65 2.213a.6.6 0 0 0-.284.284Zm.797 1.927 1.414-1.414 4.243 4.242-1.415 1.415-4.242-4.243Z"})}),e=s},46051:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:[(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M20.4 14.4a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM3.6 14.4a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM20.4 22.8a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM20.4 6a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2Z",clipRule:"evenodd"}),(0,n.jsx)("path",{fill:"#212134",d:"M6.24 11.28H18v1.44H6.24v-1.44Z"}),(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M3.6 22.8a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2ZM3.6 6a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2Z",clipRule:"evenodd"}),(0,n.jsx)("path",{fill:"#212134",d:"M18.328 13.863 6.49 19.765l-.652-1.307 11.838-5.902.652 1.307ZM18.358 10.078 6.398 4.115l-.646 1.294 11.961 5.963.645-1.294Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M18.323 18.83 6.252 12.813l-.643 1.29 12.071 6.019.643-1.29ZM18.136 5.228 6.207 11.176l-.653-1.311 11.928-5.948.654 1.311Z"})]}),e=s},91528:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 25",..._,children:[(0,n.jsx)("path",{fill:"#212134",d:"M17.76 11.28H6v1.44h11.76v-1.44Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M18.129 10.699 9.782 4.523l-.86 1.162 8.347 6.177.86-1.163ZM18.101 13.354 9.755 19.53l-.864-1.167 8.347-6.176.863 1.167Z"}),(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M20.4 14.399a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2ZM3.6 14.399a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2ZM7.2 22.8a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2ZM7.2 6a2.4 2.4 0 1 1 0-4.8 2.4 2.4 0 0 1 0 4.8Zm0 1.2a3.6 3.6 0 1 1 0-7.2 3.6 3.6 0 0 1 0 7.2Z",clipRule:"evenodd"})]}),e=s},9137:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:[(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M3.6 14.132a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2Z",clipRule:"evenodd"}),(0,n.jsx)("path",{fill:"#212134",d:"M6.24 11.011h13.44v1.44H6.24v-1.44Z"}),(0,n.jsx)("path",{fill:"#212134",d:"m5.872 10.43 8.347-6.176.86 1.163-8.347 6.176-.86-1.162ZM5.9 13.087l8.346 6.177.864-1.168-8.347-6.176-.864 1.167ZM18.72 8.613l5.28 3.12-5.28 3.12v-6.24Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M12.72 2.633 18.82 2 16.43 7.649 12.72 2.633ZM12.72 21.307l6.1.633-2.389-5.649-3.711 5.016Z"})]}),e=s},32119:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#F6ECFC",stroke:"#E0C1F4",rx:2.5}),(0,n.jsx)("path",{fill:"#9736E8",fillRule:"evenodd",d:"M22 8.759a2 2 0 0 0-2-2h-8c-1.105 0-2 .902-2 2.006v6.068a2 2 0 0 0 .985 1.724l3.66-3.74 3.31 3.381 1.471-1.502 1.731 1.769c.51-.363.843-.958.843-1.632V8.76ZM18.5 9c-.84 0-1.5.66-1.5 1.5s.66 1.5 1.5 1.5 1.5-.66 1.5-1.5S19.34 9 18.5 9Z",clipRule:"evenodd"})]}),e=s},3448:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#12100E",fillRule:"evenodd",d:"M2 0h20a2 2 0 0 1 2 2v20a2 2 0 0 1-2 2H2a2 2 0 0 1-2-2V2a2 2 0 0 1 2-2Zm3.524 7.5a.624.624 0 0 1 .203.527v7.126a.82.82 0 0 1-.218.707l-1.694 2.054v.271h4.803v-.27L6.924 15.86a.85.85 0 0 1-.233-.707V8.99l4.215 9.195h.49l3.62-9.195v7.33c0 .195 0 .232-.128.36l-1.302 1.265v.27h6.322v-.27l-1.257-1.235a.376.376 0 0 1-.143-.36V7.281a.376.376 0 0 1 .143-.362l1.288-1.234v-.27h-4.457l-3.176 7.923-3.613-7.924H4.019v.271L5.524 7.5Z",clipRule:"evenodd"})}),e=s},73136:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 1a5 5 0 0 1 5 5v4a5 5 0 1 1-10 0V6a5 5 0 0 1 5-5ZM3.055 11H5.07a7.002 7.002 0 0 0 13.858 0h2.016A9.003 9.003 0 0 1 13 18.945V23h-2v-4.055A9.004 9.004 0 0 1 3.055 11Z"})}),e=s},94140:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M13 18v2h4v2H7v-2h4v-2H2.992A1 1 0 0 1 2 16.993V4.007C2 3.451 2.455 3 2.992 3h18.016c.548 0 .992.449.992 1.007v12.986c0 .556-.455 1.007-.992 1.007H13Z"})}),e=s},3115:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M11.38 2.019a7.5 7.5 0 1 0 10.6 10.6C21.662 17.854 17.316 22 12.001 22 6.477 22 2 17.523 2 12c0-5.315 4.146-9.661 9.38-9.981Z"})}),e=s},30279:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M20 3v14a4 4 0 1 1-2-3.465V6H9v11a4 4 0 1 1-2-3.465V3h13Z"})}),e=s},28868:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#FCECEA",stroke:"#F5C0B8",rx:2.5}),(0,n.jsx)("path",{fill:"#D02B20",d:"M9.815 16h1.475V8.954H9.82L8 10.22v1.328l1.729-1.201h.087V16Zm3.394 0h5.083v-1.187h-3.106v-.112l1.304-1.216c1.284-1.186 1.7-1.85 1.7-2.651v-.015c0-1.215-1.016-2.046-2.466-2.046-1.543 0-2.598.928-2.598 2.28l.005.02h1.362v-.024c0-.67.474-1.128 1.162-1.128.674 0 1.084.42 1.084 1.02v.015c0 .493-.268.85-1.26 1.812l-2.27 2.24V16Zm9.067.156c1.646 0 2.744-.864 2.744-2.143v-.01c0-.957-.683-1.563-1.733-1.66v-.03c.825-.17 1.47-.742 1.47-1.62v-.01c0-1.123-.977-1.885-2.49-1.885-1.48 0-2.471.82-2.574 2.08l-.005.059h1.358l.005-.044c.058-.586.522-.962 1.216-.962.693 0 1.098.361 1.098.947v.01c0 .571-.478.962-1.22.962h-.787v1.05h.806c.855 0 1.357.37 1.357 1.044v.01c0 .596-.493 1.016-1.245 1.016-.761 0-1.264-.39-1.328-.938l-.005-.053h-1.41l.004.063c.098 1.26 1.148 2.114 2.74 2.114Z"})]}),e=s},15558:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 25",..._,children:[(0,n.jsx)("path",{fill:"#212134",d:"M6.24 11.28H18v1.44H6.24v-1.44Z"}),(0,n.jsx)("path",{fill:"#212134",d:"m5.871 10.699 8.347-6.176.86 1.162-8.347 6.177-.86-1.163ZM5.899 13.354l8.346 6.176.864-1.167-8.347-6.176-.863 1.167Z"}),(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M3.6 14.399a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM20.4 14.399a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM16.8 22.8a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM16.8 6a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2Z",clipRule:"evenodd"})]}),e=s},46528:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:[(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M3.6 14a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2ZM20.4 14a2.4 2.4 0 1 0 0-4.8 2.4 2.4 0 0 0 0 4.8Zm0 1.2a3.6 3.6 0 1 0 0-7.2 3.6 3.6 0 0 0 0 7.2Z",clipRule:"evenodd"}),(0,n.jsx)("path",{fill:"#212134",d:"M6.24 10.881H18v1.44H6.24v-1.44Z"})]}),e=s},41186:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M7.128 12.321a3.601 3.601 0 1 1 0-1.44H18.72v-2.4L24 11.6l-5.28 3.12v-2.4H7.128ZM6 11.6a2.4 2.4 0 1 1-4.8 0 2.4 2.4 0 0 1 4.8 0Z",clipRule:"evenodd"})}),e=s},73896:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 2c5.522 0 10 3.978 10 8.889a5.558 5.558 0 0 1-5.556 5.555h-1.966c-.922 0-1.667.745-1.667 1.667 0 .422.167.811.422 1.1.267.3.434.689.434 1.122C13.667 21.256 12.9 22 12 22 6.478 22 2 17.522 2 12S6.478 2 12 2ZM7.5 12a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm9 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3ZM12 9a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})}),e=s},18489:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M4 3h16a1 1 0 0 1 1 1v5a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1V4a1 1 0 0 1 1-1Zm2 9h6a1 1 0 0 1 1 1v3h1v6h-4v-6h1v-2H5a1 1 0 0 1-1-1v-2h2v1Zm11.732 1.732 1.768-1.768 1.768 1.768a2.5 2.5 0 1 1-3.536 0Z"})}),e=s},81904:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M21 16.42v3.536a1 1 0 0 1-.93.998c-.437.03-.794.046-1.07.046-8.837 0-16-7.163-16-16 0-.276.015-.633.046-1.07A1 1 0 0 1 4.044 3H7.58a.5.5 0 0 1 .498.45c.023.23.044.413.064.552A13.9 13.9 0 0 0 9.35 8.003c.095.2.033.439-.147.567l-2.158 1.542a13.047 13.047 0 0 0 6.844 6.844l1.54-2.154a.462.462 0 0 1 .573-.149 13.9 13.9 0 0 0 4 1.205c.139.02.322.042.55.064a.5.5 0 0 1 .449.498H21Z"})}),e=s},59151:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#32324D",fillRule:"evenodd",d:"M2.719 19.316V4.682H21.28v14.634H2.72ZM1 3.288c0-.192.154-.348.344-.348h21.312c.19 0 .344.156.344.348V20.71a.346.346 0 0 1-.344.349H1.344a.346.346 0 0 1-.344-.35V3.29Zm14.812 8.02a1.919 1.919 0 1 0 0-3.837 1.919 1.919 0 0 0 0 3.837ZM5.443 17.263h12.783a.547.547 0 0 0 .456-.87l-1.763-2.394a.547.547 0 0 0-.825-.072l-1.812 1.725-4.206-5.71a.547.547 0 0 0-.9.025L4.972 16.42a.547.547 0 0 0 .472.844Z",clipRule:"evenodd"})}),e=s},3747:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"m22.314 10.172-1.415 1.414-.707-.707-4.242 4.242-.707 3.536-1.415 1.414-4.242-4.243-4.95 4.95-1.414-1.414 4.95-4.95-4.243-4.242 1.414-1.415L8.88 8.05l4.242-4.242-.707-.707 1.414-1.415 8.485 8.486Z"})}),e=s},77021:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M18.364 17.364 12 23.728l-6.364-6.364a9 9 0 1 1 12.728 0ZM12 13a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})}),e=s},42627:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M14 8.947 22 14v2l-8-2.526v5.36l3 1.666V22l-4.5-1L8 22v-1.5l3-1.667v-5.36L3 16v-2l8-5.053V3.5a1.5 1.5 0 1 1 3 0v5.447Z"})}),e=s},3718:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"m10.9 2.1 9.9 1.415 1.413 9.9-9.192 9.192a1 1 0 0 1-1.414 0l-9.9-9.9a1 1 0 0 1 0-1.414L10.9 2.1Zm2.828 8.486a2 2 0 1 0 2.828-2.83 2 2 0 0 0-2.828 2.83Z"})}),e=s},98378:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#32324D",d:"M10.479 6.329c-1.206.642-2.267 1.655-2.992 2.788-.758 1.185-1.161 2.521-.951 3.715l.03.175.173-.04a4.1 4.1 0 0 1 1.713.01c.62.137 1.21.425 1.607.923.538.683.805 1.527.805 2.516 0 1.133-.358 2.022-1.089 2.674-.737.658-1.674.992-2.811.992-2.573 0-4.432-2.067-4.825-5.3C1.523 9.74 5.075 5.72 8.757 3.914l1.722 2.415Zm7.16 6.503.03.175.173-.04a4.076 4.076 0 0 1 1.707.01c.618.137 1.21.425 1.613.924.538.683.804 1.527.804 2.515 0 1.133-.358 2.022-1.088 2.674-.737.658-1.675.992-2.812.992-2.572 0-4.417-2.067-4.811-5.3-.616-5.043 2.923-9.062 6.605-10.868l1.721 2.415c-1.205.642-2.266 1.655-2.991 2.788-.759 1.185-1.162 2.521-.952 3.715Z"})}),e=s},95556:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("path",{fill:"#F0F0FF",stroke:"#D9D8FF",d:"M.5 3A2.5 2.5 0 0 1 3 .5h26A2.5 2.5 0 0 1 31.5 3v18a2.5 2.5 0 0 1-2.5 2.5H3A2.5 2.5 0 0 1 .5 21V3Z"}),(0,n.jsx)("path",{fill:"#4945FF",fillRule:"evenodd",d:"M21.375 16.316c.417-.407.625-.904.625-1.492 0-.589-.206-1.089-.618-1.5l-1.53-1.53a2.042 2.042 0 0 0-1.5-.617 2.06 2.06 0 0 0-1.529.646l-.646-.646c.43-.422.646-.934.646-1.537a2.03 2.03 0 0 0-.61-1.493l-1.515-1.522a2.014 2.014 0 0 0-1.5-.625 2.03 2.03 0 0 0-1.492.61l-1.081 1.074A2.006 2.006 0 0 0 10 9.176c0 .589.206 1.089.618 1.5l1.53 1.53c.41.412.91.617 1.5.617a2.06 2.06 0 0 0 1.529-.646l.646.646a2.069 2.069 0 0 0-.646 1.537c0 .588.203 1.086.61 1.493l1.514 1.522c.407.417.907.625 1.5.625a2.03 2.03 0 0 0 1.493-.61l1.081-1.074Zm-5.956-6.678a.68.68 0 0 0-.205-.5l-1.515-1.522a.68.68 0 0 0-.5-.206.71.71 0 0 0-.5.199l-1.081 1.073a.672.672 0 0 0-.206.493.68.68 0 0 0 .206.5l1.53 1.53a.678.678 0 0 0 .5.198.71.71 0 0 0 .529-.228l-.14-.136a4.46 4.46 0 0 1-.158-.158 1.756 1.756 0 0 1-.11-.14.593.593 0 0 1-.122-.39.68.68 0 0 1 .206-.5.68.68 0 0 1 .5-.206.59.59 0 0 1 .39.121c.064.047.11.084.14.111.03.027.082.08.158.158l.136.14a.713.713 0 0 0 .242-.537Zm5.168 5.187a.68.68 0 0 0-.206-.5l-1.529-1.53a.68.68 0 0 0-.5-.205.7.7 0 0 0-.53.235l.14.136c.079.076.132.129.159.158.027.03.063.076.11.14a.591.591 0 0 1 .121.39.681.681 0 0 1-.206.5.681.681 0 0 1-.5.206.591.591 0 0 1-.39-.121 1.746 1.746 0 0 1-.14-.111 4.395 4.395 0 0 1-.157-.158 20.642 20.642 0 0 0-.136-.14.714.714 0 0 0-.037 1.037l1.515 1.522a.678.678 0 0 0 .5.198.708.708 0 0 0 .5-.19l1.08-1.074a.672.672 0 0 0 .206-.493Z",clipRule:"evenodd"})]}),e=s},95412:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M6 4h15a1 1 0 0 1 1 1v7h-2V6H6v3L1 5l5-4v3Zm12 16H3a1 1 0 0 1-1-1v-7h2v6h14v-3l5 4-5 4v-3Z"})}),e=s},61131:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M21 2v20h-2v-8h-3V7a5 5 0 0 1 5-5ZM9 13.9V22H7v-8.1A5.002 5.002 0 0 1 3 9V3h2v7h2V3h2v7h2V3h2v6a5.002 5.002 0 0 1-4 4.9Z"})}),e=s},29806:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M8.498 20h7.004A6.523 6.523 0 0 1 12 23.502 6.523 6.523 0 0 1 8.498 20ZM18 14.805l2 2.268V19H4v-1.927l2-2.268V9c0-3.483 2.504-6.447 6-7.545C15.496 2.553 18 5.517 18 9v5.805ZM12 11a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})}),e=s},37982:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 8 9",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M8 .23a.1.1 0 0 0-.1-.1H5.55a.39.39 0 0 0-.39.39v2.35c0 .05.05.1.1.1h.58a.1.1 0 0 0 .1-.1V1.62c.72.55.97 1.17 1.06 2.08.09.9-.29 1.8-.9 2.47C5.49 6.85 4.9 7 4 7h-.16a.1.1 0 0 0-.1.1v.8c0 .05.05.1.1.1H4A4 4 0 0 0 6.52.9H7.9A.1.1 0 0 0 8 .8V.23ZM2.84 7.49V5.13a.1.1 0 0 0-.1-.1h-.58a.1.1 0 0 0-.1.1v1.25C1.34 5.83 1.08 5.21 1 4.31c-.09-.91.2-1.8.82-2.48.6-.67 1.27-.86 2.18-.86h.14c.06 0 .12-.04.12-.1V.1a.1.1 0 0 0-.1-.1H4a4 4 0 0 0-2.53 7.1H.1a.1.1 0 0 0-.1.1v.57c0 .06.04.1.1.1h2.35a.39.39 0 0 0 .39-.38Z"})}),e=s},23044:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"m12 14.121-2.317 2.317a4 4 0 1 1-2.12-2.121L9.88 12 4.21 6.333a2 2 0 0 1 0-2.829l.708-.707L12 9.88l7.081-7.082.708.707a1.999 1.999 0 0 1 0 2.829L14.12 12l2.317 2.317a4 4 0 1 1-2.12 2.121L12 14.12v.001ZM6 20a2 2 0 1 0 0-4 2 2 0 0 0 0 4Zm12 0a2 2 0 1 0 0-4 2 2 0 0 0 0 4Z"})}),e=s},42778:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M22 7v2.5a6.499 6.499 0 0 1-6.5 6.5H13v5h-2v-7l.019-1A6.5 6.5 0 0 1 17.5 7H22ZM6 3a7.004 7.004 0 0 1 6.643 4.786A7.477 7.477 0 0 0 10.016 13H9a7 7 0 0 1-7-7V3h4Z"})}),e=s},19815:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M4 3h16a1 1 0 0 1 1 1v7H3V4a1 1 0 0 1 1-1ZM3 13h18v7a1 1 0 0 1-1 1H4a1 1 0 0 1-1-1v-7Zm4 3v2h3v-2H7ZM7 6v2h3V6H7Z"})}),e=s},96151:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M11.738 23.966C4.905 21.624 0 18.49 0 11.043V3.772c0-.331.275-.6.615-.6C4.971 3.17 9.159 1.792 11.647.074A.516.516 0 0 1 11.942 0h.115c.103 0 .21.016.295.074 2.535 1.72 6.676 3.096 11.033 3.098.34 0 .615.269.615.6v7.271c0 7.447-4.906 10.582-11.739 12.923a.63.63 0 0 1-.204.034h-.115a.631.631 0 0 1-.204-.034Zm.16-11.175c-2.944 0-5.334 1.153-5.334 4.003H17.23c0-2.85-2.39-4.003-5.333-4.003ZM12 6.188a2.501 2.501 0 0 1 0 5 2.501 2.501 0 0 1 0-5Z",clipRule:"evenodd"})}),e=s},10291:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"m14.515 5 2.606-2.607a1 1 0 0 1 1.415 0l4.242 4.243a1 1 0 0 1 0 1.414L19 11.828V21a1 1 0 0 1-1 1H6a1 1 0 0 1-1-1v-9.172L1.222 8.05a1 1 0 0 1 0-1.414l4.242-4.243a1 1 0 0 1 1.415 0L9.485 5h5.03Z"})}),e=s},90517:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M13 17v3h5v2H6v-2h5v-3H4a1 1 0 0 1-1-1V4H2V2h20v2h-1v12a1 1 0 0 1-1 1h-7ZM10 6v7l5-3.5L10 6Z"})}),e=s},83997:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"m20.083 10.5 1.202.721a.501.501 0 0 1 0 .858L12 17.65l-9.285-5.571a.5.5 0 0 1 0-.858l1.202-.721L12 15.35l8.083-4.85Zm0 4.7 1.202.721a.501.501 0 0 1 0 .858l-8.77 5.262a1 1 0 0 1-1.03 0l-8.77-5.262a.5.5 0 0 1 0-.858l1.202-.721L12 20.05l8.083-4.85ZM12.514 1.309l8.771 5.262a.5.5 0 0 1 0 .858L12 13 2.715 7.429a.5.5 0 0 1 0-.858l8.77-5.262a1 1 0 0 1 1.03 0Z"})}),e=s},57918:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"m12 18.26-7.053 3.948 1.575-7.928L.587 8.792l8.027-.952L12 .5l3.386 7.34 8.027.952-5.935 5.488 1.575 7.928L12 18.26Z"})}),e=s},62996:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M22 20v2H2v-2h1v-6.758A4.496 4.496 0 0 1 1 9.5c0-.827.224-1.624.633-2.303L4.345 2.5a1 1 0 0 1 .866-.5H18.79a1 1 0 0 1 .866.5l2.702 4.682A4.496 4.496 0 0 1 21 13.242V20h1ZM5.789 4 3.356 8.213a2.5 2.5 0 0 0 4.466 2.216c.335-.837 1.52-.837 1.856 0a2.5 2.5 0 0 0 4.644 0c.335-.837 1.52-.837 1.856 0a2.501 2.501 0 1 0 4.457-2.232L18.21 4H5.789Z"})}),e=s},98128:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#32324D",d:"M16.39 2.17c.68.1 1.17.2 1.46.39.39.2.58.39.78.58.2.3.3.78.39 1.18l.78 3.5h1.95V1H2.84l-.59 6.83H4l.98-3.9a5 5 0 0 1 .39-.98c.2-.2.49-.39.88-.58.39-.1.88-.3 1.56-.3.58 0 1.36-.1 2.34-.1v8.78h-7.8v1.95h7.8v7.41c0 .2.1.3-.1.39-.2.1-.39.2-.88.2l-2.04.39-.1 1.36h9.94l-.1-1.36-2.04-.3c-.49 0-.69-.1-.78-.2-.2-.09-.1-.19-.1-.38V12.7h7.8v-1.95h-7.8V1.97c.98 0 1.85.1 2.44.2Z"})}),e=s},42912:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M12 18a6 6 0 1 1 0-12 6 6 0 0 1 0 12ZM11 1h2v3h-2V1Zm0 19h2v3h-2v-3ZM3.515 4.929l1.414-1.414L7.05 5.636 5.636 7.05 3.515 4.93v-.001ZM16.95 18.364l1.414-1.414 2.121 2.121-1.414 1.414-2.121-2.121Zm2.121-14.85 1.414 1.415-2.121 2.121-1.414-1.414 2.121-2.121v-.001ZM5.636 16.95l1.414 1.414-2.121 2.121-1.414-1.414 2.121-2.121ZM23 11v2h-3v-2h3ZM4 11v2H1v-2h3Z"})}),e=s},65558:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M15.414 5h5.594c.548 0 .992.445.992 1v14c0 .552-.455 1-.992 1H2.992A.996.996 0 0 1 2 20V6c0-.552.455-1 .992-1h5.594L6.05 2.464 7.464 1.05 11.414 5h1.172l3.95-3.95 1.414 1.414L15.414 5Z"})}),e=s},58316:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("rect",{width:31,height:23,x:.5,y:.5,fill:"#EAFBE7",stroke:"#C6F0C2",rx:2.5}),(0,n.jsx)("path",{fill:"#328048",d:"M8.62 16h1.857l.627-2.05h2.982l.627 2.05h1.863l-2.941-8.455h-2.08L8.619 16Zm3.925-6.768h.105l1.032 3.393h-2.174l1.037-3.393ZM21.65 16.1c1.612 0 2.62-1.26 2.62-3.323v-.011c0-2.075-.985-3.323-2.62-3.323-.884 0-1.605.434-1.933 1.137h-.106V7.082h-1.71V16h1.71v-1.002h.106c.334.697 1.02 1.102 1.933 1.102Zm-.585-1.418c-.903 0-1.471-.715-1.471-1.899v-.011c0-1.184.574-1.91 1.47-1.91.903 0 1.465.726 1.465 1.904v.011c0 1.19-.556 1.905-1.465 1.905Z"})]}),e=s},17994:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M22 15h-3V3h3a1 1 0 0 1 1 1v10a1 1 0 0 1-1 1Zm-5.293 1.293-6.4 6.4a.5.5 0 0 1-.654.047L8.8 22.1a1.5 1.5 0 0 1-.553-1.57L9.4 16H3a2 2 0 0 1-2-2v-2.104a2 2 0 0 1 .15-.762L4.246 3.62A1 1 0 0 1 5.17 3H16a1 1 0 0 1 1 1v11.586a1 1 0 0 1-.293.707Z"})}),e=s},78420:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M2 9h3v12H2a1 1 0 0 1-1-1V10a1 1 0 0 1 1-1Zm5.293-1.293 6.4-6.4a.5.5 0 0 1 .654-.047l.853.64a1.5 1.5 0 0 1 .553 1.57L14.6 8H21a2 2 0 0 1 2 2v2.104a2 2 0 0 1-.15.762l-3.095 7.515a1 1 0 0 1-.925.619H8a1 1 0 0 1-1-1V8.414a1 1 0 0 1 .293-.707Z"})}),e=s},56549:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"m17.2 20 1.8 1.5v.5H5v-.5L6.8 20H5a2 2 0 0 1-2-2V7a4 4 0 0 1 4-4h10a4 4 0 0 1 4 4v11a2 2 0 0 1-2 2h-1.8ZM11 12V5H7a2 2 0 0 0-2 2v5h6Zm2 0h6V7a2 2 0 0 0-2-2h-4v7Zm-5.5 6a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Zm9 0a1.5 1.5 0 1 0 0-3 1.5 1.5 0 0 0 0 3Z"})}),e=s},86399:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#1DA1F2",d:"M24 4.557a9.83 9.83 0 0 1-2.828.775 4.932 4.932 0 0 0 2.165-2.724 9.864 9.864 0 0 1-3.127 1.195 4.916 4.916 0 0 0-3.594-1.555c-3.179 0-5.515 2.966-4.797 6.045A13.978 13.978 0 0 1 1.671 3.149a4.93 4.93 0 0 0 1.523 6.574 4.903 4.903 0 0 1-2.229-.616c-.054 2.281 1.581 4.415 3.949 4.89a4.935 4.935 0 0 1-2.224.084 4.928 4.928 0 0 0 4.6 3.419A9.9 9.9 0 0 1 0 19.54a13.94 13.94 0 0 0 7.548 2.212c9.142 0 14.307-7.721 13.995-14.646A10.025 10.025 0 0 0 24 4.557Z"})}),e=s},27369:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"m17.654 1.7-2.782 2.533a9.138 9.138 0 0 1 3.49 1.973c3.512 3.2 3.512 8.388 0 11.588-2.592 2.36-6.598 3.862-12.016 4.506l2.782-2.533a9.138 9.138 0 0 1-3.49-1.973c-3.512-3.2-3.533-8.369 0-11.588C8.23 3.846 12.237 2.344 17.655 1.7h-.001ZM12 8c-2.485 0-4.5 1.79-4.5 4s2.015 4 4.5 4 4.5-1.79 4.5-4-2.015-4-4.5-4Z"})}),e=s},50756:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 32 24",..._,children:[(0,n.jsx)("path",{fill:"#F0F0FF",stroke:"#D9D8FF",d:"M.5 3A2.5 2.5 0 0 1 3 .5h26A2.5 2.5 0 0 1 31.5 3v18a2.5 2.5 0 0 1-2.5 2.5H3A2.5 2.5 0 0 1 .5 21V3Z"}),(0,n.jsx)("path",{fill:"#4945FF",d:"M14.907 9.438c0 .375 0 .738.118 1.078-1.243 1.46-4.526 5.317-4.832 5.611a.582.582 0 0 0-.193.433c0 .245.15.481.277.614.19.2 1.004.952 1.154.808.444-.433.533-.548.715-.727.274-.268-.029-.816.066-1.039.096-.222.197-.265.361-.3.165-.034.456.084.684.087.24.003.369-.098.548-.265.144-.133.248-.257.25-.45.007-.26-.368-.603-.089-.877.28-.274.684.178.981.144.297-.035.658-.447.695-.623.038-.176-.337-.629-.28-.886.02-.086.197-.288.33-.317.132-.029.72.199.853.17.162-.034.35-.205.502-.3.447.193.854.271 1.376.271C20.4 12.87 22 11.33 22 9.432 22 7.534 20.399 6 18.423 6s-3.516 1.54-3.516 3.438Zm5.247-.669a.923.923 0 1 1-1.847 0 .923.923 0 0 1 1.847 0Z"})]}),e=s},13424:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#32324D",d:"M12 17.3c1.99 0 3.9-.74 5.3-2.07a6.9 6.9 0 0 0 2.2-5.01V1h-3v9.22c0 1.13-.47 2.2-1.32 3A4.63 4.63 0 0 1 12 14.48c-1.2 0-2.34-.45-3.18-1.24a4.14 4.14 0 0 1-1.32-3.01V1h-3v9.22a6.9 6.9 0 0 0 2.2 5.01 7.73 7.73 0 0 0 5.3 2.08Zm9.75 2.14H2.25v2.83h19.5v-2.83Z"})}),e=s},12681:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#8E8EA9",d:"M20 22H4v-2a5 5 0 0 1 5-5h6a5 5 0 0 1 5 5v2Zm-8-9A6 6 0 1 1 12 .998 6 6 0 0 1 12 13Z"})}),e=s},69826:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M5.889 16H2a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h3.889l5.294-4.332a.5.5 0 0 1 .817.387v15.89a.5.5 0 0 1-.817.387L5.89 16h-.001Zm14.525-4 3.536 3.536-1.414 1.414L19 13.414l-3.536 3.536-1.414-1.414L17.586 12 14.05 8.464l1.414-1.414L19 10.586l3.536-3.536 1.414 1.414L20.414 12Z"})}),e=s},24322:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"M5.889 16H2a1 1 0 0 1-1-1V9a1 1 0 0 1 1-1h3.889l5.294-4.332a.5.5 0 0 1 .817.387v15.89a.5.5 0 0 1-.817.387L5.89 16h-.001Zm13.517 4.134-1.416-1.416A8.977 8.977 0 0 0 21 12a8.983 8.983 0 0 0-3.304-6.968l1.42-1.42A10.977 10.977 0 0 1 23 12c0 3.223-1.386 6.122-3.594 8.134Zm-3.543-3.543-1.422-1.422A3.992 3.992 0 0 0 16 12c0-1.43-.75-2.685-1.88-3.392l1.439-1.439A5.99 5.99 0 0 1 18 12c0 1.842-.83 3.49-2.137 4.591Z"})}),e=s},19637:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",d:"m7.617 8.712 3.205-2.328c.36-.263.797-.398 1.243-.384a2.616 2.616 0 0 1 2.427 1.82c.186.583.356.977.51 1.182A4.992 4.992 0 0 0 19 11v2a6.987 6.987 0 0 1-5.402-2.547l-.697 3.955 2.061 1.73 2.223 6.108-1.88.684-2.04-5.604-3.39-2.845a2 2 0 0 1-.713-1.904l.509-2.885-.677.492-2.127 2.928-1.618-1.176L7.6 8.7l.017.012ZM13.5 5.5a2 2 0 1 1 0-4 2 2 0 0 1 0 4Zm-2.972 13.181-3.214 3.83-1.532-1.285 2.976-3.546.746-2.18 1.791 1.5-.767 1.681Z"})}),e=s},50322:function(l,i,t){"use strict";t.d(i,{Z:function(){return e}});var n=t(74512);const s=_=>(0,n.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",..._,children:(0,n.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M16.557 6.762a2.381 2.381 0 1 0 0-4.762 2.381 2.381 0 0 0 0 4.762Zm-2.655-.5a.962.962 0 0 1 .12.066l2.397 1.556a.952.952 0 0 1 .28 1.318l-2.536 3.905c.07.104.138.212.201.322h4.67c.056 0 .112.005.165.016a1.258 1.258 0 0 1 1.044 1.807l-2.492 5.103a1.258 1.258 0 0 1-2.26-1.104L17.077 16h-1.957a5.714 5.714 0 1 1-5.017-5.387l1.818-2.798-1.642-1.067-1.173 1.463a.96.96 0 0 1-1.525-1.165L8.94 5.182a1.905 1.905 0 0 1 2.593-.465l.246.163-.002.002 2.125 1.38ZM9.414 20.095a3.81 3.81 0 1 0 0-7.619 3.81 3.81 0 0 0 0 7.62Z",clipRule:"evenodd"})}),e=s}}]);
@@ -1,105 +0,0 @@
1
- (self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[6373],{93994:function(v,l,t){var r=t(33795);function c(u,h){for(var f=-1,_=h.length,i=Array(_),o=u==null;++f<_;)i[f]=o?void 0:r(u,h[f]);return i}v.exports=c},88311:function(v,l,t){var r=t(93994),c=t(83368),u=c(r);v.exports=u},13272:function(v,l,t){"use strict";Object.defineProperty(l,"__esModule",{value:!0}),l.isSafari=l.isFirefox=void 0;var r=t(17611);const c=r.memoize(()=>/firefox/i.test(navigator.userAgent));l.isFirefox=c;const u=r.memoize(()=>Boolean(window.safari));l.isSafari=u},24284:function(v,l,t){"use strict";Object.defineProperty(l,"__esModule",{value:!0});var r=t(17611);class c{enter(h){const f=this.entered.length,_=i=>this.isNodeInDocument(i)&&(!i.contains||i.contains(h));return this.entered=r.union(this.entered.filter(_),[h]),f===0&&this.entered.length>0}leave(h){const f=this.entered.length;return this.entered=r.without(this.entered.filter(this.isNodeInDocument),h),f>0&&this.entered.length===0}reset(){this.entered=[]}constructor(h){this.entered=[],this.isNodeInDocument=h}}l.EnterLeaveCounter=c},32022:function(v,l,t){"use strict";Object.defineProperty(l,"__esModule",{value:!0});var r=t(24284),c=t(5782),u=t(54935),h=i(t(9689)),f=t(44444);function _(d,e,n){return e in d?Object.defineProperty(d,e,{value:n,enumerable:!0,configurable:!0,writable:!0}):d[e]=n,d}function i(d){if(d&&d.__esModule)return d;var e={};if(d!=null){for(var n in d)if(Object.prototype.hasOwnProperty.call(d,n)){var s=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(d,n):{};s.get||s.set?Object.defineProperty(e,n,s):e[n]=d[n]}}return e.default=d,e}function o(d){for(var e=1;e<arguments.length;e++){var n=arguments[e]!=null?arguments[e]:{},s=Object.keys(n);typeof Object.getOwnPropertySymbols=="function"&&(s=s.concat(Object.getOwnPropertySymbols(n).filter(function(a){return Object.getOwnPropertyDescriptor(n,a).enumerable}))),s.forEach(function(a){_(d,a,n[a])})}return d}class m{profile(){var e,n;return{sourcePreviewNodes:this.sourcePreviewNodes.size,sourcePreviewNodeOptions:this.sourcePreviewNodeOptions.size,sourceNodeOptions:this.sourceNodeOptions.size,sourceNodes:this.sourceNodes.size,dragStartSourceIds:((e=this.dragStartSourceIds)===null||e===void 0?void 0:e.length)||0,dropTargetIds:this.dropTargetIds.length,dragEnterTargetIds:this.dragEnterTargetIds.length,dragOverTargetIds:((n=this.dragOverTargetIds)===null||n===void 0?void 0:n.length)||0}}get window(){return this.options.window}get document(){return this.options.document}get rootElement(){return this.options.rootElement}setup(){const e=this.rootElement;if(e!==void 0){if(e.__isReactDndBackendSetUp)throw new Error("Cannot have two HTML5 backends at the same time.");e.__isReactDndBackendSetUp=!0,this.addEventListeners(e)}}teardown(){const e=this.rootElement;if(e!==void 0&&(e.__isReactDndBackendSetUp=!1,this.removeEventListeners(this.rootElement),this.clearCurrentDragSourceNode(),this.asyncEndDragFrameId)){var n;(n=this.window)===null||n===void 0||n.cancelAnimationFrame(this.asyncEndDragFrameId)}}connectDragPreview(e,n,s){return this.sourcePreviewNodeOptions.set(e,s),this.sourcePreviewNodes.set(e,n),()=>{this.sourcePreviewNodes.delete(e),this.sourcePreviewNodeOptions.delete(e)}}connectDragSource(e,n,s){this.sourceNodes.set(e,n),this.sourceNodeOptions.set(e,s);const a=E=>this.handleDragStart(E,e),p=E=>this.handleSelectStart(E);return n.setAttribute("draggable","true"),n.addEventListener("dragstart",a),n.addEventListener("selectstart",p),()=>{this.sourceNodes.delete(e),this.sourceNodeOptions.delete(e),n.removeEventListener("dragstart",a),n.removeEventListener("selectstart",p),n.setAttribute("draggable","false")}}connectDropTarget(e,n){const s=E=>this.handleDragEnter(E,e),a=E=>this.handleDragOver(E,e),p=E=>this.handleDrop(E,e);return n.addEventListener("dragenter",s),n.addEventListener("dragover",a),n.addEventListener("drop",p),()=>{n.removeEventListener("dragenter",s),n.removeEventListener("dragover",a),n.removeEventListener("drop",p)}}addEventListeners(e){e.addEventListener&&(e.addEventListener("dragstart",this.handleTopDragStart),e.addEventListener("dragstart",this.handleTopDragStartCapture,!0),e.addEventListener("dragend",this.handleTopDragEndCapture,!0),e.addEventListener("dragenter",this.handleTopDragEnter),e.addEventListener("dragenter",this.handleTopDragEnterCapture,!0),e.addEventListener("dragleave",this.handleTopDragLeaveCapture,!0),e.addEventListener("dragover",this.handleTopDragOver),e.addEventListener("dragover",this.handleTopDragOverCapture,!0),e.addEventListener("drop",this.handleTopDrop),e.addEventListener("drop",this.handleTopDropCapture,!0))}removeEventListeners(e){e.removeEventListener&&(e.removeEventListener("dragstart",this.handleTopDragStart),e.removeEventListener("dragstart",this.handleTopDragStartCapture,!0),e.removeEventListener("dragend",this.handleTopDragEndCapture,!0),e.removeEventListener("dragenter",this.handleTopDragEnter),e.removeEventListener("dragenter",this.handleTopDragEnterCapture,!0),e.removeEventListener("dragleave",this.handleTopDragLeaveCapture,!0),e.removeEventListener("dragover",this.handleTopDragOver),e.removeEventListener("dragover",this.handleTopDragOverCapture,!0),e.removeEventListener("drop",this.handleTopDrop),e.removeEventListener("drop",this.handleTopDropCapture,!0))}getCurrentSourceNodeOptions(){const e=this.monitor.getSourceId(),n=this.sourceNodeOptions.get(e);return o({dropEffect:this.altKeyPressed?"copy":"move"},n||{})}getCurrentDropEffect(){return this.isDraggingNativeItem()?"copy":this.getCurrentSourceNodeOptions().dropEffect}getCurrentSourcePreviewNodeOptions(){const e=this.monitor.getSourceId(),n=this.sourcePreviewNodeOptions.get(e);return o({anchorX:.5,anchorY:.5,captureDraggingState:!1},n||{})}isDraggingNativeItem(){const e=this.monitor.getItemType();return Object.keys(h).some(n=>h[n]===e)}beginDragNativeItem(e,n){this.clearCurrentDragSourceNode(),this.currentNativeSource=u.createNativeDragSource(e,n),this.currentNativeHandle=this.registry.addSource(e,this.currentNativeSource),this.actions.beginDrag([this.currentNativeHandle])}setCurrentDragSourceNode(e){this.clearCurrentDragSourceNode(),this.currentDragSourceNode=e;const n=1e3;this.mouseMoveTimeoutTimer=setTimeout(()=>{var s;return(s=this.rootElement)===null||s===void 0?void 0:s.addEventListener("mousemove",this.endDragIfSourceWasRemovedFromDOM,!0)},n)}clearCurrentDragSourceNode(){if(this.currentDragSourceNode){if(this.currentDragSourceNode=null,this.rootElement){var e;(e=this.window)===null||e===void 0||e.clearTimeout(this.mouseMoveTimeoutTimer||void 0),this.rootElement.removeEventListener("mousemove",this.endDragIfSourceWasRemovedFromDOM,!0)}return this.mouseMoveTimeoutTimer=null,!0}return!1}handleDragStart(e,n){e.defaultPrevented||(this.dragStartSourceIds||(this.dragStartSourceIds=[]),this.dragStartSourceIds.unshift(n))}handleDragEnter(e,n){this.dragEnterTargetIds.unshift(n)}handleDragOver(e,n){this.dragOverTargetIds===null&&(this.dragOverTargetIds=[]),this.dragOverTargetIds.unshift(n)}handleDrop(e,n){this.dropTargetIds.unshift(n)}constructor(e,n,s){this.sourcePreviewNodes=new Map,this.sourcePreviewNodeOptions=new Map,this.sourceNodes=new Map,this.sourceNodeOptions=new Map,this.dragStartSourceIds=null,this.dropTargetIds=[],this.dragEnterTargetIds=[],this.currentNativeSource=null,this.currentNativeHandle=null,this.currentDragSourceNode=null,this.altKeyPressed=!1,this.mouseMoveTimeoutTimer=null,this.asyncEndDragFrameId=null,this.dragOverTargetIds=null,this.lastClientOffset=null,this.hoverRafId=null,this.getSourceClientOffset=a=>{const p=this.sourceNodes.get(a);return p&&c.getNodeClientOffset(p)||null},this.endDragNativeItem=()=>{this.isDraggingNativeItem()&&(this.actions.endDrag(),this.currentNativeHandle&&this.registry.removeSource(this.currentNativeHandle),this.currentNativeHandle=null,this.currentNativeSource=null)},this.isNodeInDocument=a=>Boolean(a&&this.document&&this.document.body&&this.document.body.contains(a)),this.endDragIfSourceWasRemovedFromDOM=()=>{const a=this.currentDragSourceNode;a==null||this.isNodeInDocument(a)||(this.clearCurrentDragSourceNode()&&this.monitor.isDragging()&&this.actions.endDrag(),this.cancelHover())},this.scheduleHover=a=>{this.hoverRafId===null&&typeof requestAnimationFrame<"u"&&(this.hoverRafId=requestAnimationFrame(()=>{this.monitor.isDragging()&&this.actions.hover(a||[],{clientOffset:this.lastClientOffset}),this.hoverRafId=null}))},this.cancelHover=()=>{this.hoverRafId!==null&&typeof cancelAnimationFrame<"u"&&(cancelAnimationFrame(this.hoverRafId),this.hoverRafId=null)},this.handleTopDragStartCapture=()=>{this.clearCurrentDragSourceNode(),this.dragStartSourceIds=[]},this.handleTopDragStart=a=>{if(a.defaultPrevented)return;const{dragStartSourceIds:p}=this;this.dragStartSourceIds=null;const E=c.getEventClientOffset(a);this.monitor.isDragging()&&(this.actions.endDrag(),this.cancelHover()),this.actions.beginDrag(p||[],{publishSource:!1,getSourceClientOffset:this.getSourceClientOffset,clientOffset:E});const{dataTransfer:g}=a,D=u.matchNativeItemType(g);if(this.monitor.isDragging()){if(g&&typeof g.setDragImage=="function"){const I=this.monitor.getSourceId(),T=this.sourceNodes.get(I),L=this.sourcePreviewNodes.get(I)||T;if(L){const{anchorX:N,anchorY:R,offsetX:M,offsetY:P}=this.getCurrentSourcePreviewNodeOptions(),A={anchorX:N,anchorY:R},C={offsetX:M,offsetY:P},x=c.getDragPreviewOffset(T,L,E,A,C);g.setDragImage(L,x.x,x.y)}}try{g?.setData("application/json",{})}catch{}this.setCurrentDragSourceNode(a.target);const{captureDraggingState:O}=this.getCurrentSourcePreviewNodeOptions();O?this.actions.publishDragSource():setTimeout(()=>this.actions.publishDragSource(),0)}else if(D)this.beginDragNativeItem(D);else{if(g&&!g.types&&(a.target&&!a.target.hasAttribute||!a.target.hasAttribute("draggable")))return;a.preventDefault()}},this.handleTopDragEndCapture=()=>{this.clearCurrentDragSourceNode()&&this.monitor.isDragging()&&this.actions.endDrag(),this.cancelHover()},this.handleTopDragEnterCapture=a=>{if(this.dragEnterTargetIds=[],this.isDraggingNativeItem()){var p;(p=this.currentNativeSource)===null||p===void 0||p.loadDataTransfer(a.dataTransfer)}if(!this.enterLeaveCounter.enter(a.target)||this.monitor.isDragging())return;const{dataTransfer:g}=a,D=u.matchNativeItemType(g);D&&this.beginDragNativeItem(D,g)},this.handleTopDragEnter=a=>{const{dragEnterTargetIds:p}=this;if(this.dragEnterTargetIds=[],!this.monitor.isDragging())return;this.altKeyPressed=a.altKey,p.length>0&&this.actions.hover(p,{clientOffset:c.getEventClientOffset(a)}),p.some(g=>this.monitor.canDropOnTarget(g))&&(a.preventDefault(),a.dataTransfer&&(a.dataTransfer.dropEffect=this.getCurrentDropEffect()))},this.handleTopDragOverCapture=a=>{if(this.dragOverTargetIds=[],this.isDraggingNativeItem()){var p;(p=this.currentNativeSource)===null||p===void 0||p.loadDataTransfer(a.dataTransfer)}},this.handleTopDragOver=a=>{const{dragOverTargetIds:p}=this;if(this.dragOverTargetIds=[],!this.monitor.isDragging()){a.preventDefault(),a.dataTransfer&&(a.dataTransfer.dropEffect="none");return}this.altKeyPressed=a.altKey,this.lastClientOffset=c.getEventClientOffset(a),this.scheduleHover(p),(p||[]).some(g=>this.monitor.canDropOnTarget(g))?(a.preventDefault(),a.dataTransfer&&(a.dataTransfer.dropEffect=this.getCurrentDropEffect())):this.isDraggingNativeItem()?a.preventDefault():(a.preventDefault(),a.dataTransfer&&(a.dataTransfer.dropEffect="none"))},this.handleTopDragLeaveCapture=a=>{this.isDraggingNativeItem()&&a.preventDefault(),this.enterLeaveCounter.leave(a.target)&&(this.isDraggingNativeItem()&&setTimeout(()=>this.endDragNativeItem(),0),this.cancelHover())},this.handleTopDropCapture=a=>{if(this.dropTargetIds=[],this.isDraggingNativeItem()){var p;a.preventDefault(),(p=this.currentNativeSource)===null||p===void 0||p.loadDataTransfer(a.dataTransfer)}else u.matchNativeItemType(a.dataTransfer)&&a.preventDefault();this.enterLeaveCounter.reset()},this.handleTopDrop=a=>{const{dropTargetIds:p}=this;this.dropTargetIds=[],this.actions.hover(p,{clientOffset:c.getEventClientOffset(a)}),this.actions.drop({dropEffect:this.getCurrentDropEffect()}),this.isDraggingNativeItem()?this.endDragNativeItem():this.monitor.isDragging()&&this.actions.endDrag(),this.cancelHover()},this.handleSelectStart=a=>{const p=a.target;typeof p.dragDrop=="function"&&(p.tagName==="INPUT"||p.tagName==="SELECT"||p.tagName==="TEXTAREA"||p.isContentEditable||(a.preventDefault(),p.dragDrop()))},this.options=new f.OptionsReader(n,s),this.actions=e.getActions(),this.monitor=e.getMonitor(),this.registry=e.getRegistry(),this.enterLeaveCounter=new r.EnterLeaveCounter(this.isNodeInDocument)}}l.HTML5BackendImpl=m},80557:function(v,l){"use strict";Object.defineProperty(l,"__esModule",{value:!0});class t{interpolate(c){const{xs:u,ys:h,c1s:f,c2s:_,c3s:i}=this;let o=u.length-1;if(c===u[o])return h[o];let m=0,d=i.length-1,e;for(;m<=d;){e=Math.floor(.5*(m+d));const a=u[e];if(a<c)m=e+1;else if(a>c)d=e-1;else return h[e]}o=Math.max(0,d);const n=c-u[o],s=n*n;return h[o]+f[o]*n+_[o]*s+i[o]*n*s}constructor(c,u){const{length:h}=c,f=[];for(let p=0;p<h;p++)f.push(p);f.sort((p,E)=>c[p]<c[E]?-1:1);const _=[],i=[],o=[];let m,d;for(let p=0;p<h-1;p++)m=c[p+1]-c[p],d=u[p+1]-u[p],i.push(m),_.push(d),o.push(d/m);const e=[o[0]];for(let p=0;p<i.length-1;p++){const E=o[p],g=o[p+1];if(E*g<=0)e.push(0);else{m=i[p];const D=i[p+1],O=m+D;e.push(3*O/((O+D)/E+(O+m)/g))}}e.push(o[o.length-1]);const n=[],s=[];let a;for(let p=0;p<e.length-1;p++){a=o[p];const E=e[p],g=1/i[p],D=E+e[p+1]-a-a;n.push((a-E-D)*g),s.push(D*g*g)}this.xs=c,this.ys=u,this.c1s=e,this.c2s=n,this.c3s=s}}l.MonotonicInterpolant=t},81061:function(v,l){"use strict";Object.defineProperty(l,"__esModule",{value:!0});class t{initializeExposedProperties(){Object.keys(this.config.exposeProperties).forEach(c=>{Object.defineProperty(this.item,c,{configurable:!0,enumerable:!0,get(){return console.warn(`Browser doesn't allow reading "${c}" until the drop event.`),null}})})}loadDataTransfer(c){if(c){const u={};Object.keys(this.config.exposeProperties).forEach(h=>{const f=this.config.exposeProperties[h];f!=null&&(u[h]={value:f(c,this.config.matchesTypes),configurable:!0,enumerable:!0})}),Object.defineProperties(this.item,u)}}canDrag(){return!0}beginDrag(){return this.item}isDragging(c,u){return u===c.getSourceId()}endDrag(){}constructor(c){this.config=c,this.item={},this.initializeExposedProperties()}}l.NativeDragSource=t},17892:function(v,l){"use strict";Object.defineProperty(l,"__esModule",{value:!0}),l.getDataFromDataTransfer=t;function t(r,c,u){const h=c.reduce((f,_)=>f||r.getData(_),"");return h??u}},54935:function(v,l,t){"use strict";Object.defineProperty(l,"__esModule",{value:!0}),l.createNativeDragSource=u,l.matchNativeItemType=h;var r=t(66826),c=t(81061);function u(f,_){const i=r.nativeTypesConfig[f];if(!i)throw new Error(`native type ${f} has no configuration`);const o=new c.NativeDragSource(i);return o.loadDataTransfer(_),o}function h(f){if(!f)return null;const _=Array.prototype.slice.call(f.types||[]);return Object.keys(r.nativeTypesConfig).filter(i=>{const o=r.nativeTypesConfig[i];return o?.matchesTypes?o.matchesTypes.some(m=>_.indexOf(m)>-1):!1})[0]||null}},66826:function(v,l,t){"use strict";Object.defineProperty(l,"__esModule",{value:!0}),l.nativeTypesConfig=void 0;var r=u(t(9689)),c=t(17892);function u(f){if(f&&f.__esModule)return f;var _={};if(f!=null){for(var i in f)if(Object.prototype.hasOwnProperty.call(f,i)){var o=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(f,i):{};o.get||o.set?Object.defineProperty(_,i,o):_[i]=f[i]}}return _.default=f,_}const h={[r.FILE]:{exposeProperties:{files:f=>Array.prototype.slice.call(f.files),items:f=>f.items,dataTransfer:f=>f},matchesTypes:["Files"]},[r.HTML]:{exposeProperties:{html:(f,_)=>c.getDataFromDataTransfer(f,_,""),dataTransfer:f=>f},matchesTypes:["Html","text/html"]},[r.URL]:{exposeProperties:{urls:(f,_)=>c.getDataFromDataTransfer(f,_,"").split(`
2
- `),dataTransfer:f=>f},matchesTypes:["Url","text/uri-list"]},[r.TEXT]:{exposeProperties:{text:(f,_)=>c.getDataFromDataTransfer(f,_,""),dataTransfer:f=>f},matchesTypes:["Text","text/plain"]}};l.nativeTypesConfig=h},9689:function(v,l){"use strict";Object.defineProperty(l,"__esModule",{value:!0}),l.HTML=l.TEXT=l.URL=l.FILE=void 0;const t="__NATIVE_FILE__";l.FILE=t;const r="__NATIVE_URL__";l.URL=r;const c="__NATIVE_TEXT__";l.TEXT=c;const u="__NATIVE_HTML__";l.HTML=u},5782:function(v,l,t){"use strict";Object.defineProperty(l,"__esModule",{value:!0}),l.getNodeClientOffset=h,l.getEventClientOffset=f,l.getDragPreviewOffset=o;var r=t(13272),c=t(80557);const u=1;function h(m){const d=m.nodeType===u?m:m.parentElement;if(!d)return null;const{top:e,left:n}=d.getBoundingClientRect();return{x:n,y:e}}function f(m){return{x:m.clientX,y:m.clientY}}function _(m){var d;return m.nodeName==="IMG"&&(r.isFirefox()||!(!((d=document.documentElement)===null||d===void 0)&&d.contains(m)))}function i(m,d,e,n){let s=m?d.width:e,a=m?d.height:n;return r.isSafari()&&m&&(a/=window.devicePixelRatio,s/=window.devicePixelRatio),{dragPreviewWidth:s,dragPreviewHeight:a}}function o(m,d,e,n,s){const a=_(d),E=h(a?m:d),g={x:e.x-E.x,y:e.y-E.y},{offsetWidth:D,offsetHeight:O}=m,{anchorX:I,anchorY:T}=n,{dragPreviewWidth:L,dragPreviewHeight:N}=i(a,d,D,O),R=()=>{let S=new c.MonotonicInterpolant([0,.5,1],[g.y,g.y/O*N,g.y+N-O]).interpolate(T);return r.isSafari()&&a&&(S+=(window.devicePixelRatio-1)*N),S},M=()=>new c.MonotonicInterpolant([0,.5,1],[g.x,g.x/D*L,g.x+L-D]).interpolate(I),{offsetX:P,offsetY:A}=s,C=P===0||P,x=A===0||A;return{x:C?P:M(),y:x?A:R()}}},44444:function(v,l){"use strict";Object.defineProperty(l,"__esModule",{value:!0});class t{get window(){if(this.globalContext)return this.globalContext;if(typeof window<"u")return window}get document(){var c;return!((c=this.globalContext)===null||c===void 0)&&c.document?this.globalContext.document:this.window?this.window.document:void 0}get rootElement(){var c;return((c=this.optionsArgs)===null||c===void 0?void 0:c.rootElement)||this.window}constructor(c,u){this.ownerDocument=null,this.globalContext=c,this.optionsArgs=u}}l.OptionsReader=t},15970:function(v,l){"use strict";Object.defineProperty(l,"__esModule",{value:!0}),l.getEmptyImage=r;let t;function r(){return t||(t=new Image,t.src="data:image/gif;base64,R0lGODlhAQABAAAAACH5BAEKAAEALAAAAAABAAEAAAICTAEAOw=="),t}},51968:function(v,l,t){"use strict";var r;r={value:!0},Object.defineProperty(l,"rX",{enumerable:!0,get:function(){return h.getEmptyImage}}),l.PD=r=void 0;var c=t(32022),u=f(t(9689)),h=t(15970);r=u;function f(i){if(i&&i.__esModule)return i;var o={};if(i!=null){for(var m in i)if(Object.prototype.hasOwnProperty.call(i,m)){var d=Object.defineProperty&&Object.getOwnPropertyDescriptor?Object.getOwnPropertyDescriptor(i,m):{};d.get||d.set?Object.defineProperty(o,m,d):o[m]=i[m]}}return o.default=i,o}const _=function(o,m,d){return new c.HTML5BackendImpl(o,m,d)};l.PD=_},17611:function(v,l){"use strict";Object.defineProperty(l,"__esModule",{value:!0}),l.memoize=t,l.without=r,l.union=c;function t(u){let h=null;return()=>(h==null&&(h=u()),h)}function r(u,h){return u.filter(f=>f!==h)}function c(u,h){const f=new Set,_=o=>f.add(o);u.forEach(_),h.forEach(_);const i=[];return f.forEach(o=>i.push(o)),i}},98178:function(v,l,t){"use strict";t.d(l,{P1:function(){return m}});var r="NOT_FOUND";function c(e){var n;return{get:function(a){return n&&e(n.key,a)?n.value:r},put:function(a,p){n={key:a,value:p}},getEntries:function(){return n?[n]:[]},clear:function(){n=void 0}}}function u(e,n){var s=[];function a(D){var O=s.findIndex(function(T){return n(D,T.key)});if(O>-1){var I=s[O];return O>0&&(s.splice(O,1),s.unshift(I)),I.value}return r}function p(D,O){a(D)===r&&(s.unshift({key:D,value:O}),s.length>e&&s.pop())}function E(){return s}function g(){s=[]}return{get:a,put:p,getEntries:E,clear:g}}var h=function(n,s){return n===s};function f(e){return function(s,a){if(s===null||a===null||s.length!==a.length)return!1;for(var p=s.length,E=0;E<p;E++)if(!e(s[E],a[E]))return!1;return!0}}function _(e,n){var s=typeof n=="object"?n:{equalityCheck:n},a=s.equalityCheck,p=a===void 0?h:a,E=s.maxSize,g=E===void 0?1:E,D=s.resultEqualityCheck,O=f(p),I=g===1?c(O):u(g,O);function T(){var L=I.get(arguments);if(L===r){if(L=e.apply(null,arguments),D){var N=I.getEntries(),R=N.find(function(M){return D(M.value,L)});R&&(L=R.value)}I.put(arguments,L)}return L}return T.clearCache=function(){return I.clear()},T}function i(e){var n=Array.isArray(e[0])?e[0]:e;if(!n.every(function(a){return typeof a=="function"})){var s=n.map(function(a){return typeof a=="function"?"function "+(a.name||"unnamed")+"()":typeof a}).join(", ");throw new Error("createSelector expects all input-selectors to be functions, but received the following types: ["+s+"]")}return n}function o(e){for(var n=arguments.length,s=new Array(n>1?n-1:0),a=1;a<n;a++)s[a-1]=arguments[a];var p=function(){for(var g=arguments.length,D=new Array(g),O=0;O<g;O++)D[O]=arguments[O];var I=0,T,L={memoizeOptions:void 0},N=D.pop();if(typeof N=="object"&&(L=N,N=D.pop()),typeof N!="function")throw new Error("createSelector expects an output function after the inputs, but received: ["+typeof N+"]");var R=L,M=R.memoizeOptions,P=M===void 0?s:M,A=Array.isArray(P)?P:[P],C=i(D),x=e.apply(void 0,[function(){return I++,N.apply(null,arguments)}].concat(A)),w=e(function(){for(var j=[],$=C.length,y=0;y<$;y++)j.push(C[y].apply(null,arguments));return T=x.apply(null,j),T});return Object.assign(w,{resultFunc:N,memoizedResultFunc:x,dependencies:C,lastResult:function(){return T},recomputations:function(){return I},resetRecomputations:function(){return I=0}}),w};return p}var m=o(_),d=function(n,s){if(s===void 0&&(s=m),typeof n!="object")throw new Error("createStructuredSelector expects first argument to be an object "+("where each property is a selector, instead received a "+typeof n));var a=Object.keys(n),p=s(a.map(function(E){return n[E]}),function(){for(var E=arguments.length,g=new Array(E),D=0;D<E;D++)g[D]=arguments[D];return g.reduce(function(O,I,T){return O[a[T]]=I,O},{})});return p}},39405:function(v,l,t){const r=t(33843),{MAX_LENGTH:c,MAX_SAFE_INTEGER:u}=t(88202),{safeRe:h,t:f}=t(90887),_=t(30156),{compareIdentifiers:i}=t(31630);class o{constructor(d,e){if(e=_(e),d instanceof o){if(d.loose===!!e.loose&&d.includePrerelease===!!e.includePrerelease)return d;d=d.version}else if(typeof d!="string")throw new TypeError(`Invalid version. Must be a string. Got type "${typeof d}".`);if(d.length>c)throw new TypeError(`version is longer than ${c} characters`);r("SemVer",d,e),this.options=e,this.loose=!!e.loose,this.includePrerelease=!!e.includePrerelease;const n=d.trim().match(e.loose?h[f.LOOSE]:h[f.FULL]);if(!n)throw new TypeError(`Invalid Version: ${d}`);if(this.raw=d,this.major=+n[1],this.minor=+n[2],this.patch=+n[3],this.major>u||this.major<0)throw new TypeError("Invalid major version");if(this.minor>u||this.minor<0)throw new TypeError("Invalid minor version");if(this.patch>u||this.patch<0)throw new TypeError("Invalid patch version");n[4]?this.prerelease=n[4].split(".").map(s=>{if(/^[0-9]+$/.test(s)){const a=+s;if(a>=0&&a<u)return a}return s}):this.prerelease=[],this.build=n[5]?n[5].split("."):[],this.format()}format(){return this.version=`${this.major}.${this.minor}.${this.patch}`,this.prerelease.length&&(this.version+=`-${this.prerelease.join(".")}`),this.version}toString(){return this.version}compare(d){if(r("SemVer.compare",this.version,this.options,d),!(d instanceof o)){if(typeof d=="string"&&d===this.version)return 0;d=new o(d,this.options)}return d.version===this.version?0:this.compareMain(d)||this.comparePre(d)}compareMain(d){return d instanceof o||(d=new o(d,this.options)),i(this.major,d.major)||i(this.minor,d.minor)||i(this.patch,d.patch)}comparePre(d){if(d instanceof o||(d=new o(d,this.options)),this.prerelease.length&&!d.prerelease.length)return-1;if(!this.prerelease.length&&d.prerelease.length)return 1;if(!this.prerelease.length&&!d.prerelease.length)return 0;let e=0;do{const n=this.prerelease[e],s=d.prerelease[e];if(r("prerelease compare",e,n,s),n===void 0&&s===void 0)return 0;if(s===void 0)return 1;if(n===void 0)return-1;if(n===s)continue;return i(n,s)}while(++e)}compareBuild(d){d instanceof o||(d=new o(d,this.options));let e=0;do{const n=this.build[e],s=d.build[e];if(r("prerelease compare",e,n,s),n===void 0&&s===void 0)return 0;if(s===void 0)return 1;if(n===void 0)return-1;if(n===s)continue;return i(n,s)}while(++e)}inc(d,e,n){switch(d){case"premajor":this.prerelease.length=0,this.patch=0,this.minor=0,this.major++,this.inc("pre",e,n);break;case"preminor":this.prerelease.length=0,this.patch=0,this.minor++,this.inc("pre",e,n);break;case"prepatch":this.prerelease.length=0,this.inc("patch",e,n),this.inc("pre",e,n);break;case"prerelease":this.prerelease.length===0&&this.inc("patch",e,n),this.inc("pre",e,n);break;case"major":(this.minor!==0||this.patch!==0||this.prerelease.length===0)&&this.major++,this.minor=0,this.patch=0,this.prerelease=[];break;case"minor":(this.patch!==0||this.prerelease.length===0)&&this.minor++,this.patch=0,this.prerelease=[];break;case"patch":this.prerelease.length===0&&this.patch++,this.prerelease=[];break;case"pre":{const s=Number(n)?1:0;if(!e&&n===!1)throw new Error("invalid increment argument: identifier is empty");if(this.prerelease.length===0)this.prerelease=[s];else{let a=this.prerelease.length;for(;--a>=0;)typeof this.prerelease[a]=="number"&&(this.prerelease[a]++,a=-2);if(a===-1){if(e===this.prerelease.join(".")&&n===!1)throw new Error("invalid increment argument: identifier already exists");this.prerelease.push(s)}}if(e){let a=[e,s];n===!1&&(a=[e]),i(this.prerelease[0],e)===0?isNaN(this.prerelease[1])&&(this.prerelease=a):this.prerelease=a}break}default:throw new Error(`invalid increment argument: ${d}`)}return this.raw=this.format(),this.build.length&&(this.raw+=`+${this.build.join(".")}`),this}}v.exports=o},73308:function(v,l,t){const r=t(39405),c=(u,h,f)=>new r(u,f).compare(new r(h,f));v.exports=c},63433:function(v,l,t){const r=t(73308),c=(u,h,f)=>r(u,h,f)<0;v.exports=c},15497:function(v,l,t){const r=t(39405),c=(u,h,f=!1)=>{if(u instanceof r)return u;try{return new r(u,h)}catch(_){if(!f)return null;throw _}};v.exports=c},34512:function(v,l,t){const r=t(15497),c=(u,h)=>{const f=r(u,h);return f?f.version:null};v.exports=c},88202:function(v){const l="2.0.0",r=Number.MAX_SAFE_INTEGER||9007199254740991,c=16,u=256-6,h=["major","premajor","minor","preminor","patch","prepatch","prerelease"];v.exports={MAX_LENGTH:256,MAX_SAFE_COMPONENT_LENGTH:c,MAX_SAFE_BUILD_LENGTH:u,MAX_SAFE_INTEGER:r,RELEASE_TYPES:h,SEMVER_SPEC_VERSION:l,FLAG_INCLUDE_PRERELEASE:1,FLAG_LOOSE:2}},33843:function(v){const l=typeof process=="object"&&{ADMIN_PATH:"/admin/",NODE_ENV:"production",STRAPI_ADMIN_BACKEND_URL:"http://localhost:1337",STRAPI_TELEMETRY_DISABLED:!1}&&{ADMIN_PATH:"/admin/",NODE_ENV:"production",STRAPI_ADMIN_BACKEND_URL:"http://localhost:1337",STRAPI_TELEMETRY_DISABLED:!1}.NODE_DEBUG&&/\bsemver\b/i.test({ADMIN_PATH:"/admin/",NODE_ENV:"production",STRAPI_ADMIN_BACKEND_URL:"http://localhost:1337",STRAPI_TELEMETRY_DISABLED:!1}.NODE_DEBUG)?(...t)=>console.error("SEMVER",...t):()=>{};v.exports=l},31630:function(v){const l=/^[0-9]+$/,t=(c,u)=>{const h=l.test(c),f=l.test(u);return h&&f&&(c=+c,u=+u),c===u?0:h&&!f?-1:f&&!h?1:c<u?-1:1},r=(c,u)=>t(u,c);v.exports={compareIdentifiers:t,rcompareIdentifiers:r}},30156:function(v){const l=Object.freeze({loose:!0}),t=Object.freeze({}),r=c=>c?typeof c!="object"?l:c:t;v.exports=r},90887:function(v,l,t){const{MAX_SAFE_COMPONENT_LENGTH:r,MAX_SAFE_BUILD_LENGTH:c,MAX_LENGTH:u}=t(88202),h=t(33843);l=v.exports={};const f=l.re=[],_=l.safeRe=[],i=l.src=[],o=l.t={};let m=0;const d="[a-zA-Z0-9-]",e=[["\\s",1],["\\d",u],[d,c]],n=a=>{for(const[p,E]of e)a=a.split(`${p}*`).join(`${p}{0,${E}}`).split(`${p}+`).join(`${p}{1,${E}}`);return a},s=(a,p,E)=>{const g=n(p),D=m++;h(a,D,p),o[a]=D,i[D]=p,f[D]=new RegExp(p,E?"g":void 0),_[D]=new RegExp(g,E?"g":void 0)};s("NUMERICIDENTIFIER","0|[1-9]\\d*"),s("NUMERICIDENTIFIERLOOSE","\\d+"),s("NONNUMERICIDENTIFIER",`\\d*[a-zA-Z-]${d}*`),s("MAINVERSION",`(${i[o.NUMERICIDENTIFIER]})\\.(${i[o.NUMERICIDENTIFIER]})\\.(${i[o.NUMERICIDENTIFIER]})`),s("MAINVERSIONLOOSE",`(${i[o.NUMERICIDENTIFIERLOOSE]})\\.(${i[o.NUMERICIDENTIFIERLOOSE]})\\.(${i[o.NUMERICIDENTIFIERLOOSE]})`),s("PRERELEASEIDENTIFIER",`(?:${i[o.NUMERICIDENTIFIER]}|${i[o.NONNUMERICIDENTIFIER]})`),s("PRERELEASEIDENTIFIERLOOSE",`(?:${i[o.NUMERICIDENTIFIERLOOSE]}|${i[o.NONNUMERICIDENTIFIER]})`),s("PRERELEASE",`(?:-(${i[o.PRERELEASEIDENTIFIER]}(?:\\.${i[o.PRERELEASEIDENTIFIER]})*))`),s("PRERELEASELOOSE",`(?:-?(${i[o.PRERELEASEIDENTIFIERLOOSE]}(?:\\.${i[o.PRERELEASEIDENTIFIERLOOSE]})*))`),s("BUILDIDENTIFIER",`${d}+`),s("BUILD",`(?:\\+(${i[o.BUILDIDENTIFIER]}(?:\\.${i[o.BUILDIDENTIFIER]})*))`),s("FULLPLAIN",`v?${i[o.MAINVERSION]}${i[o.PRERELEASE]}?${i[o.BUILD]}?`),s("FULL",`^${i[o.FULLPLAIN]}$`),s("LOOSEPLAIN",`[v=\\s]*${i[o.MAINVERSIONLOOSE]}${i[o.PRERELEASELOOSE]}?${i[o.BUILD]}?`),s("LOOSE",`^${i[o.LOOSEPLAIN]}$`),s("GTLT","((?:<|>)?=?)"),s("XRANGEIDENTIFIERLOOSE",`${i[o.NUMERICIDENTIFIERLOOSE]}|x|X|\\*`),s("XRANGEIDENTIFIER",`${i[o.NUMERICIDENTIFIER]}|x|X|\\*`),s("XRANGEPLAIN",`[v=\\s]*(${i[o.XRANGEIDENTIFIER]})(?:\\.(${i[o.XRANGEIDENTIFIER]})(?:\\.(${i[o.XRANGEIDENTIFIER]})(?:${i[o.PRERELEASE]})?${i[o.BUILD]}?)?)?`),s("XRANGEPLAINLOOSE",`[v=\\s]*(${i[o.XRANGEIDENTIFIERLOOSE]})(?:\\.(${i[o.XRANGEIDENTIFIERLOOSE]})(?:\\.(${i[o.XRANGEIDENTIFIERLOOSE]})(?:${i[o.PRERELEASELOOSE]})?${i[o.BUILD]}?)?)?`),s("XRANGE",`^${i[o.GTLT]}\\s*${i[o.XRANGEPLAIN]}$`),s("XRANGELOOSE",`^${i[o.GTLT]}\\s*${i[o.XRANGEPLAINLOOSE]}$`),s("COERCE",`(^|[^\\d])(\\d{1,${r}})(?:\\.(\\d{1,${r}}))?(?:\\.(\\d{1,${r}}))?(?:$|[^\\d])`),s("COERCERTL",i[o.COERCE],!0),s("LONETILDE","(?:~>?)"),s("TILDETRIM",`(\\s*)${i[o.LONETILDE]}\\s+`,!0),l.tildeTrimReplace="$1~",s("TILDE",`^${i[o.LONETILDE]}${i[o.XRANGEPLAIN]}$`),s("TILDELOOSE",`^${i[o.LONETILDE]}${i[o.XRANGEPLAINLOOSE]}$`),s("LONECARET","(?:\\^)"),s("CARETTRIM",`(\\s*)${i[o.LONECARET]}\\s+`,!0),l.caretTrimReplace="$1^",s("CARET",`^${i[o.LONECARET]}${i[o.XRANGEPLAIN]}$`),s("CARETLOOSE",`^${i[o.LONECARET]}${i[o.XRANGEPLAINLOOSE]}$`),s("COMPARATORLOOSE",`^${i[o.GTLT]}\\s*(${i[o.LOOSEPLAIN]})$|^$`),s("COMPARATOR",`^${i[o.GTLT]}\\s*(${i[o.FULLPLAIN]})$|^$`),s("COMPARATORTRIM",`(\\s*)${i[o.GTLT]}\\s*(${i[o.LOOSEPLAIN]}|${i[o.XRANGEPLAIN]})`,!0),l.comparatorTrimReplace="$1$2$3",s("HYPHENRANGE",`^\\s*(${i[o.XRANGEPLAIN]})\\s+-\\s+(${i[o.XRANGEPLAIN]})\\s*$`),s("HYPHENRANGELOOSE",`^\\s*(${i[o.XRANGEPLAINLOOSE]})\\s+-\\s+(${i[o.XRANGEPLAINLOOSE]})\\s*$`),s("STAR","(<|>)?=?\\s*\\*"),s("GTE0","^\\s*>=\\s*0\\.0\\.0\\s*$"),s("GTE0PRE","^\\s*>=\\s*0\\.0\\.0-0\\s*$")},27277:function(v,l,t){"use strict";t.d(l,{$:function(){return _}});var r=t(74512),c=t(8471),u=t(58634),h=t(84642);const f=(0,c.ZP)(h.k)`
3
- width: ${({condensed:i})=>i?"max-content":`${224/16}rem`};
4
- border-right: 1px solid ${({theme:i})=>i.colors.neutral150};
5
- `,_=({condensed:i=!1,...o})=>(0,r.jsx)(u.f.Provider,{value:i,children:(0,r.jsx)(f,{alignItems:"normal",as:"nav",background:"neutral0",condensed:i,direction:"column",height:"100vh",position:"sticky",top:0,zIndex:2,...o})})},58634:function(v,l,t){"use strict";t.d(l,{S:function(){return u},f:function(){return c}});var r=t(32735);const c=(0,r.createContext)(!1),u=()=>(0,r.useContext)(c)},65213:function(v,l,t){"use strict";t.d(l,{D:function(){return n}});var r=t(74512),c=t(32735),u=t(8471),h=t(58634),f=t(42561),_=t(77981),i=t(99320),o=t(84642),m=t(8365);const d=u.ZP.div`
6
- border-radius: ${({theme:s})=>s.borderRadius};
7
-
8
- svg,
9
- img {
10
- height: ${({condensed:s})=>s?`${40/16}rem`:`${32/16}rem`};
11
- width: ${({condensed:s})=>s?`${40/16}rem`:`${32/16}rem`};
12
- }
13
- `,e=(0,u.ZP)(f.f)`
14
- text-decoration: unset;
15
- color: inherit;
16
- `,n=c.forwardRef(({workplace:s,title:a,icon:p,...E},g)=>{const D=(0,h.S)();return E.to=E?.to??"/",D?(0,r.jsx)(f.f,{ref:g,...E,children:(0,r.jsx)(_.x,{paddingLeft:3,paddingRight:3,paddingTop:4,paddingBottom:4,children:(0,r.jsxs)(d,{condensed:!0,children:[p,(0,r.jsxs)(i.T,{children:[(0,r.jsx)("span",{children:a}),(0,r.jsx)("span",{children:s})]})]})})}):(0,r.jsx)(e,{ref:g,...E,children:(0,r.jsx)(_.x,{paddingLeft:3,paddingRight:3,paddingTop:4,paddingBottom:4,children:(0,r.jsxs)(o.k,{children:[(0,r.jsx)(d,{"aria-hidden":!0,tabIndex:-1,children:p}),(0,r.jsxs)(_.x,{paddingLeft:2,children:[(0,r.jsxs)(m.Z,{fontWeight:"bold",textColor:"neutral800",as:"span",children:[a,(0,r.jsx)(i.T,{as:"span",children:s})]}),(0,r.jsx)(m.Z,{variant:"pi",as:"p",textColor:"neutral600","aria-hidden":!0,children:s})]})]})})})})},19546:function(v,l,t){"use strict";t.d(l,{w:function(){return d}});var r=t(74512),c=t(51939),u=t(40329),h=t(8471),f=t(58634),_=t(84642),i=t(18129),o=t(99320);const m=(0,h.ZP)(_.k).attrs(e=>({justifyContent:"center",...e}))`
17
- background: ${({theme:e})=>e.colors.neutral0};
18
- border: 1px solid ${({theme:e})=>e.colors.neutral150};
19
- border-radius: ${({theme:e})=>e.borderRadius};
20
- position: absolute;
21
- bottom: ${(9+4)/16}rem; // 9 is the height of the svg and 4 is the padding below
22
- right: ${({theme:e,condensed:n})=>n?0:e.spaces[5]};
23
- transform: ${({condensed:e})=>e?"translateX(50%)":void 0};
24
- z-index: 2;
25
- width: ${18/16}rem;
26
- height: ${25/16}rem;
27
-
28
- svg {
29
- width: ${6/16}rem;
30
- height: ${9/16}rem;
31
- }
32
- `,d=({children:e,...n})=>{const s=(0,f.S)();return(0,r.jsxs)(m,{as:"button",condensed:s,...n,children:[(0,r.jsx)(i.J,{as:s?c.Z:u.Z,"aria-hidden":!0,color:"neutral600"}),(0,r.jsx)(o.T,{children:e})]})}},52242:function(v,l,t){"use strict";t.d(l,{q:function(){return u}});var r=t(74512),c=t(77981);const u=({children:h})=>(0,r.jsx)(c.x,{position:"relative",children:h})},14848:function(v,l,t){"use strict";t.d(l,{O:function(){return p}});var r=t(74512),c=t(32735),u=t(8471),h=t(58634),f=t(77981),_=t(42561),i=t(8365),o=t(84642),m=t(14298),d=t(11349);const e=(0,u.ZP)(f.x)`
33
- svg {
34
- width: 1rem;
35
- height: 1rem;
36
- }
37
- `,n=(0,u.ZP)(_.f)`
38
- position: relative;
39
- text-decoration: none;
40
- display: block;
41
- border-radius: ${({theme:E})=>E.borderRadius};
42
- background: ${({theme:E})=>E.colors.neutral0};
43
-
44
- ${i.Z} {
45
- color: ${({theme:E})=>E.colors.neutral600};
46
- }
47
-
48
- svg path {
49
- fill: ${({theme:E})=>E.colors.neutral500};
50
- }
51
-
52
- &:hover {
53
- background: ${({theme:E})=>E.colors.neutral100};
54
-
55
- ${i.Z} {
56
- color: ${({theme:E})=>E.colors.neutral700};
57
- }
58
-
59
- svg path {
60
- fill: ${({theme:E})=>E.colors.neutral600};
61
- }
62
- }
63
-
64
- &.active {
65
- background: ${({theme:E})=>E.colors.primary100};
66
-
67
- svg path {
68
- fill: ${({theme:E})=>E.colors.primary600};
69
- }
70
-
71
- ${i.Z} {
72
- color: ${({theme:E})=>E.colors.primary600};
73
- font-weight: 500;
74
- }
75
- }
76
- `,s=(0,u.ZP)(o.k)`
77
- padding: ${({theme:E})=>`${E.spaces[2]} ${E.spaces[3]}`};
78
- `,a=(0,u.ZP)(m.C)`
79
- ${({theme:E,condensed:g})=>g&&`
80
- position: absolute;
81
- // Values based on visual aspect
82
- top: -${E.spaces[3]};
83
- right: -${E.spaces[1]};
84
- `}
85
-
86
- ${i.Z} {
87
- //find a solution to remove !important
88
- color: ${({theme:E})=>E.colors.neutral0} !important;
89
- line-height: 0;
90
- }
91
-
92
- display: flex;
93
- justify-content: center;
94
- align-items: center;
95
- min-width: ${({theme:E})=>E.spaces[6]};
96
- height: ${({theme:E})=>E.spaces[5]};
97
- padding: ${({theme:E})=>`0 ${E.spaces[2]}`};
98
- border-radius: ${({theme:E})=>E.spaces[10]};
99
- background: ${({theme:E})=>E.colors.primary600};
100
- `,p=c.forwardRef(({children:E,icon:g,badgeContent:D,badgeAriaLabel:O,...I},T)=>(0,h.S)()?(0,r.jsx)(n,{ref:T,...I,children:(0,r.jsx)(d.u,{position:"right",label:E,children:(0,r.jsxs)(s,{as:"span",justifyContent:"center",children:[(0,r.jsx)(e,{"aria-hidden":!0,paddingRight:0,as:"span",children:g}),D&&(0,r.jsx)(a,{condensed:!0,"aria-label":O,children:D})]})})}):(0,r.jsx)(n,{ref:T,...I,children:(0,r.jsxs)(s,{as:"span",justifyContent:"space-between",children:[(0,r.jsxs)(o.k,{children:[(0,r.jsx)(e,{"aria-hidden":!0,paddingRight:3,as:"span",children:g}),(0,r.jsx)(i.Z,{children:E})]}),D&&(0,r.jsx)(a,{justifyContent:"center","aria-label":O,children:D})]})}))},17681:function(v,l,t){"use strict";t.d(l,{y:function(){return m}});var r=t(74512),c=t(32735),u=t(58634),h=t(84642),f=t(77981),_=t(2775),i=t(99320),o=t(8365);const m=({label:d,children:e,horizontal:n=!1,spacing:s=2,...a})=>(0,u.S)()?(0,r.jsxs)(h.k,{direction:"column",alignItems:"stretch",gap:2,children:[(0,r.jsxs)(f.x,{paddingTop:1,paddingBottom:1,background:"neutral0",hasRadius:!0,as:"span",children:[(0,r.jsx)(_.i,{}),(0,r.jsx)(i.T,{children:(0,r.jsx)("span",{children:d})})]}),(0,r.jsx)(h.k,{as:"ul",gap:s,direction:n?"row":"column",alignItems:n?"center":"stretch",...a,children:c.Children.map(e,(E,g)=>(0,r.jsx)("li",{children:E},g))})]}):(0,r.jsxs)(h.k,{direction:"column",alignItems:"stretch",gap:2,children:[(0,r.jsx)(f.x,{paddingTop:1,paddingBottom:1,background:"neutral0",paddingRight:3,paddingLeft:3,hasRadius:!0,as:"span",children:(0,r.jsx)(o.Z,{variant:"sigma",textColor:"neutral600",children:d})}),(0,r.jsx)(h.k,{as:"ul",gap:s,direction:n?"row":"column",alignItems:n?"center":"stretch",...a,children:c.Children.map(e,(E,g)=>(0,r.jsx)("li",{children:E},g))})]})},42203:function(v,l,t){"use strict";t.d(l,{_:function(){return i}});var r=t(74512),c=t(32735),u=t(8471),h=t(77981),f=t(84642);const _=(0,u.ZP)(h.x)`
101
- flex-grow: 1;
102
- overflow-y: auto;
103
- `,i=({children:o,spacing:m=4,horizontal:d=!1,...e})=>(0,r.jsx)(_,{paddingLeft:3,paddingRight:2,paddingTop:3,paddingBottom:8,children:(0,r.jsx)(f.k,{as:"ul",gap:m,direction:d?"row":"column",alignItems:d?"center":"stretch",...e,children:c.Children.map(o,(n,s)=>(0,r.jsx)("li",{children:n},s))})})},86267:function(v,l,t){"use strict";t.d(l,{r:function(){return e}});var r=t(74512),c=t(32735),u=t(8471),h=t(58634),f=t(77981),_=t(84642),i=t(246),o=t(99320),m=t(8365);const d=(0,u.ZP)(f.x)`
104
- border-top: 1px solid ${({theme:n})=>n.colors.neutral150};
105
- `,e=c.forwardRef(({src:n,children:s,initials:a,...p},E)=>{const g=(0,h.S)();return(0,r.jsx)(d,{paddingTop:3,paddingBottom:3,paddingLeft:5,paddingRight:5,...p,children:(0,r.jsxs)(_.k,{as:"button",justifyContent:g?"center":void 0,ref:E,children:[n?(0,r.jsx)(i.q,{src:n,alt:"","aria-hidden":!0}):(0,r.jsx)(i.L,{children:a}),g?(0,r.jsx)(o.T,{children:(0,r.jsx)("span",{children:s})}):(0,r.jsx)(f.x,{width:`${130/16}rem`,paddingLeft:2,as:"span",children:(0,r.jsx)(m.Z,{ellipsis:!0,textColor:"neutral600",children:s})})]})})})},19999:function(v,l,t){"use strict";t.d(l,{Z:function(){return u}});var r=t(74512);const c=h=>(0,r.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...h,children:(0,r.jsx)("path",{fill:"#212134",d:"M13 21v2.5l-3-2-3 2V21h-.5A3.5 3.5 0 0 1 3 17.5V5a3 3 0 0 1 3-3h14a1 1 0 0 1 1 1v17a1 1 0 0 1-1 1h-7Zm-6-2v-2h6v2h6v-3H6.5a1.5 1.5 0 1 0 0 3H7ZM7 5v2h2V5H7Zm0 3v2h2V8H7Zm0 3v2h2v-2H7Z"})}),u=c},19594:function(v,l,t){"use strict";t.d(l,{Z:function(){return u}});var r=t(74512);const c=h=>(0,r.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...h,children:(0,r.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M2.68 9.192c-.6.276-2.114 1.18-2.306 1.303a.792.792 0 0 0-.374.68v1.65a.797.797 0 0 0 .384.687c.254.16 1.73 1.042 2.306 1.303l.744 1.8c-.24.634-.67 2.333-.72 2.554a.797.797 0 0 0 .216.744l1.167 1.166a.801.801 0 0 0 .744.216l.03-.008c.36-.092 1.946-.498 2.523-.712l1.8.744c.276.6 1.181 2.115 1.304 2.307a.805.805 0 0 0 .679.374h1.649a.797.797 0 0 0 .686-.384c.16-.254 1.042-1.73 1.303-2.306l1.8-.744c.634.24 2.333.67 2.554.72a.797.797 0 0 0 .744-.216l1.166-1.167a.803.803 0 0 0 .216-.744l-.008-.03c-.092-.36-.498-1.946-.712-2.523l.744-1.8c.6-.276 2.115-1.181 2.307-1.304a.804.804 0 0 0 .374-.679v-1.649a.796.796 0 0 0-.382-.679c-.254-.16-1.73-1.041-2.306-1.303l-.744-1.8c.24-.634.67-2.333.72-2.554a.796.796 0 0 0-.216-.744l-1.166-1.173a.802.802 0 0 0-.744-.216l-.03.008c-.361.092-1.947.498-2.524.712l-1.8-.744c-.276-.6-1.18-2.115-1.303-2.307a.803.803 0 0 0-.68-.374h-1.65a.797.797 0 0 0-.68.382c-.16.254-1.041 1.73-1.303 2.306l-1.8.744c-.634-.24-2.333-.67-2.554-.72a.797.797 0 0 0-.744.216L2.921 4.094a.802.802 0 0 0-.216.744l.008.03c.092.361.498 1.947.712 2.524l-.744 1.8ZM12 17a5 5 0 1 0 0-10 5 5 0 0 0 0 10Z",clipRule:"evenodd"})}),u=c},32880:function(v,l,t){"use strict";t.d(l,{Z:function(){return u}});var r=t(74512);const c=h=>(0,r.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...h,children:[(0,r.jsx)("path",{fill:"#212134",d:"M11.987 23.036v-.964H1.876V1.876h10.111V0H0v24h11.987v-.964Z"}),(0,r.jsx)("path",{fill:"#212134",d:"M8 11.2c0-.11.09-.2.2-.2h11.973l-5.445-5.445a.2.2 0 0 1 0-.283l1.13-1.13a.2.2 0 0 1 .283 0l7.718 7.717a.2.2 0 0 1 0 .282L16.14 19.86a.2.2 0 0 1-.282 0l-1.13-1.13a.2.2 0 0 1 0-.284L20.172 13H8.2a.2.2 0 0 1-.2-.2v-1.6Z"})]}),u=c},18981:function(v,l,t){"use strict";t.d(l,{Z:function(){return u}});var r=t(74512);const c=h=>(0,r.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...h,children:(0,r.jsx)("path",{fill:"#212134",d:"M6.455 19 2 22.5V4a1 1 0 0 1 1-1h18a1 1 0 0 1 1 1v14a1 1 0 0 1-1 1H6.455ZM7 10v2h2v-2H7Zm4 0v2h2v-2h-2Zm4 0v2h2v-2h-2Z"})}),u=c},39544:function(v,l,t){"use strict";t.d(l,{Z:function(){return u}});var r=t(74512);const c=h=>(0,r.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...h,children:(0,r.jsx)("path",{fill:"#212134",d:"M1.946 9.315c-.522-.174-.527-.455.01-.634l19.087-6.362c.53-.176.832.12.684.638l-5.454 19.086c-.15.529-.455.547-.679.045L12 14l6-8-8 6-8.054-2.685Z"})}),u=c},58518:function(v,l,t){"use strict";t.d(l,{Z:function(){return u}});var r=t(74512);const c=h=>(0,r.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 8 8",...h,children:(0,r.jsx)("path",{fill:"#212134",d:"M2 .93c0-.4.45-.63.78-.41l4.6 3.06c.3.2.3.64 0 .84l-4.6 3.06A.5.5 0 0 1 2 7.07V.93Z"})}),u=c},601:function(v,l,t){"use strict";t.d(l,{Z:function(){return u}});var r=t(74512);const c=h=>(0,r.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 25 25",...h,children:(0,r.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"m13.58.448 3.177 3.176L18.66 1.72a3.267 3.267 0 1 1 4.62 4.62l-1.904 1.904 3.175 3.175a1.528 1.528 0 0 1 0 2.162l-3.175 3.175L20.2 15.58a3.267 3.267 0 1 0-4.62 4.62l1.177 1.177-3.176 3.176a1.528 1.528 0 0 1-2.162 0l-3.175-3.175-1.902 1.902a3.267 3.267 0 1 1-4.62-4.62l1.902-1.902-3.176-3.176a1.528 1.528 0 0 1 0-2.162l3.176-3.176L4.8 9.42a3.267 3.267 0 0 0 4.62-4.62L8.244 3.623 11.419.448a1.528 1.528 0 0 1 2.162 0Z",clipRule:"evenodd"})}),u=c},47372:function(v,l,t){"use strict";t.d(l,{Z:function(){return u}});var r=t(74512);const c=h=>(0,r.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 15 14",...h,children:(0,r.jsx)("path",{fill:"#212134",d:"M5.08 4.1c0-1.19 1.18-2.17 2.42-2.17s2.43.98 2.43 2.17c0 1.1-.56 1.61-1.31 2.28l-.03.03c-.75.65-1.66 1.47-1.66 3.09a.57.57 0 1 0 1.15 0c0-1.08.55-1.6 1.3-2.26l.02-.02c.75-.66 1.67-1.48 1.67-3.12C11.07 2.13 9.22.78 7.5.78 5.78.78 3.93 2.13 3.93 4.1a.57.57 0 1 0 1.15 0Zm2.42 9.26a.88.88 0 1 0 0-1.75.88.88 0 0 0 0 1.75Z"})}),u=c},90230:function(v,l,t){"use strict";t.d(l,{Z:function(){return u}});var r=t(74512);const c=h=>(0,r.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...h,children:(0,r.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M23.12 3.907c-.025 0-.055-.005-.087-.011a.72.72 0 0 0-.13-.016H5.929l-.27-1.805A2.413 2.413 0 0 0 3.26 0H1.078C.485 0 0 .485 0 1.078c0 .593.485 1.078 1.078 1.078H3.26c.135 0 .243.107.27.242L5.2 13.77a2.954 2.954 0 0 0 2.91 2.506h11.21c1.401 0 2.614-.997 2.91-2.371l1.752-8.757a1.065 1.065 0 0 0-.863-1.24Zm-4.932 13.927a2.8 2.8 0 0 0-2.802 2.802 2.8 2.8 0 0 0 2.802 2.802 2.8 2.8 0 0 0 2.803-2.802c-.027-1.536-1.267-2.802-2.803-2.802Zm-9.646 0a2.786 2.786 0 0 1 2.775 2.667c.081 1.536-1.132 2.83-2.667 2.91h-.054a2.762 2.762 0 0 1-2.749-2.667 2.819 2.819 0 0 1 2.695-2.91Z",clipRule:"evenodd"})}),u=c},22356:function(v,l,t){"use strict";t.d(l,{Z:function(){return u}});var r=t(74512);const c=h=>(0,r.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...h,children:(0,r.jsx)("path",{fill:"#212134",fillRule:"evenodd",d:"M23.707.297A1 1 0 0 0 23 .004h-2a13.907 13.907 0 0 0-5.38 1.077 1 1 0 0 0-.615.923V4.92a.035.035 0 0 1-.022.038l-2-1.47a1 1 0 0 0-1.265.052A14 14 0 0 0 7 14.004v1.585l-2.707 2.707a1 1 0 1 0 1.415 1.415l2.707-2.708H10a14.014 14.014 0 0 0 14-14v-2a1 1 0 0 0-.293-.706ZM18 23.999H3a3 3 0 0 1-3-3V6A3 3 0 0 1 3 3h3a1 1 0 1 1 0 2H3a1 1 0 0 0-1 1v15a1 1 0 0 0 1 1h15a1 1 0 0 0 1-1v-3a1 1 0 1 1 2 0v3a3 3 0 0 1-3 3Z",clipRule:"evenodd"})}),u=c}}]);
@@ -1,26 +0,0 @@
1
- (self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[8894],{56671:function(h,y,n){var a=n(35897),f=n(74741),c=f(a);h.exports=c},52920:function(h,y,n){var a=n(56671),f=n(81580);function c(u,d){var g=-1,l=f(u)?Array(u.length):[];return a(u,function(x,b,R){l[++g]=d(x,b,R)}),l}h.exports=c},50690:function(h,y,n){var a=n(26460),f=n(80166),c=n(88904),u=n(52920),d=n(36024),g=n(76535),l=n(1397),x=n(15362),b=n(77236);function R(P,O,p){O.length?O=a(O,function(E){return b(E)?function(M){return f(M,E.length===1?E[0]:E)}:E}):O=[x];var j=-1;O=a(O,g(c));var w=u(P,function(E,M,S){var C=a(O,function(Z){return Z(E)});return{criteria:C,index:++j,value:E}});return d(w,function(E,M){return l(E,M,p)})}h.exports=R},37410:function(h,y,n){var a=n(96621),f=n(33646);function c(u,d){return a(u,d,function(g,l){return f(u,l)})}h.exports=c},96621:function(h,y,n){var a=n(80166),f=n(58116),c=n(18422);function u(d,g,l){for(var x=-1,b=g.length,R={};++x<b;){var P=g[x],O=a(d,P);l(O,P)&&f(R,c(P,d),O)}return R}h.exports=u},36024:function(h){function y(n,a){var f=n.length;for(n.sort(a);f--;)n[f]=n[f].value;return n}h.exports=y},40709:function(h,y,n){var a=n(22945);function f(c,u){if(c!==u){var d=c!==void 0,g=c===null,l=c===c,x=a(c),b=u!==void 0,R=u===null,P=u===u,O=a(u);if(!R&&!O&&!x&&c>u||x&&b&&P&&!R&&!O||g&&b&&P||!d&&P||!l)return 1;if(!g&&!x&&!O&&c<u||O&&d&&l&&!g&&!x||R&&d&&l||!b&&l||!P)return-1}return 0}h.exports=f},1397:function(h,y,n){var a=n(40709);function f(c,u,d){for(var g=-1,l=c.criteria,x=u.criteria,b=l.length,R=d.length;++g<b;){var P=a(l[g],x[g]);if(P){if(g>=R)return P;var O=d[g];return P*(O=="desc"?-1:1)}}return c.index-u.index}h.exports=f},74741:function(h,y,n){var a=n(81580);function f(c,u){return function(d,g){if(d==null)return d;if(!a(d))return c(d,g);for(var l=d.length,x=u?l:-1,b=Object(d);(u?x--:++x<l)&&g(b[x],x,b)!==!1;);return d}}h.exports=f},72245:function(h,y,n){var a=n(63920),f=n(85973);function c(u,d,g,l,x,b){return f(u)&&f(d)&&(b.set(d,u),a(u,d,void 0,c,b),b.delete(d)),u}h.exports=c},58732:function(h,y,n){var a=n(85198),f=n(94569),c=n(72245),u=n(54754),d=f(function(g){return g.push(void 0,c),a(u,void 0,g)});h.exports=d},54754:function(h,y,n){var a=n(63920),f=n(32544),c=f(function(u,d,g,l){a(u,d,g,l)});h.exports=c},88423:function(h,y,n){var a=n(37410),f=n(83368),c=f(function(u,d){return u==null?{}:a(u,d)});h.exports=c},98978:function(h,y,n){var a=n(40314),f=n(50690),c=n(94569),u=n(63108),d=c(function(g,l){if(g==null)return[];var x=l.length;return x>1&&u(g,l[0],l[1])?l=[]:x>2&&u(l[0],l[1],l[2])&&(l=[l[0]]),f(g,a(l,1),[])});h.exports=d},78023:function(h,y,n){"use strict";n.d(y,{Z:function(){return pt}});var a=n(31191),f=n(32735),c=n(72067),u=n(42447),d=n(26356),g=n(75461),l=n(68833),x=n(20552);function b(t,s){return Object.keys(t).reduce(function(r,e){return r[e]=(0,a.pi)({timeZone:s},t[e]),r},{})}function R(t,s){var r=Object.keys((0,a.pi)((0,a.pi)({},t),s));return r.reduce(function(e,i){return e[i]=(0,a.pi)((0,a.pi)({},t[i]||{}),s[i]||{}),e},{})}function P(t,s){if(!s)return t;var r=g.C.formats;return(0,a.pi)((0,a.pi)((0,a.pi)({},r),t),{date:R(b(r.date,s),b(t.date||{},s)),time:R(b(r.time,s),b(t.time||{},s))})}var O=function(t,s,r,e,i){var o=t.locale,m=t.formats,v=t.messages,T=t.defaultLocale,F=t.defaultFormats,L=t.fallbackOnEmptyString,B=t.onError,N=t.timeZone,J=t.defaultRichTextElements;r===void 0&&(r={id:""});var V=r.id,I=r.defaultMessage;(0,d.kG)(!!V,"[@formatjs/intl] An `id` must be provided to format a message. You can either:\n1. Configure your build toolchain with [babel-plugin-formatjs](https://formatjs.io/docs/tooling/babel-plugin)\nor [@formatjs/ts-transformer](https://formatjs.io/docs/tooling/ts-transformer) OR\n2. Configure your `eslint` config to include [eslint-plugin-formatjs](https://formatjs.io/docs/tooling/linter#enforce-id)\nto autofix this issue");var A=String(V),D=v&&Object.prototype.hasOwnProperty.call(v,A)&&v[A];if(Array.isArray(D)&&D.length===1&&D[0].type===x.wD.literal)return D[0].value;if(!e&&D&&typeof D=="string"&&!J)return D.replace(/'\{(.*?)\}'/gi,"{$1}");if(e=(0,a.pi)((0,a.pi)({},J),e||{}),m=P(m,N),F=P(F,N),!D){if(L===!1&&D==="")return D;if((!I||o&&o.toLowerCase()!==T.toLowerCase())&&B(new l.$6(r,o)),I)try{var W=s.getMessageFormat(I,T,F,i);return W.format(e)}catch(U){return B(new l.X9('Error formatting default message for: "'.concat(A,'", rendering default message verbatim'),o,r,U)),typeof I=="string"?I:A}return A}try{var W=s.getMessageFormat(D,o,m,(0,a.pi)({formatters:s},i||{}));return W.format(e)}catch(U){B(new l.X9('Error formatting message: "'.concat(A,'", using ').concat(I?"default message":"id"," as fallback."),o,r,U))}if(I)try{var W=s.getMessageFormat(I,T,F,i);return W.format(e)}catch(U){B(new l.X9('Error formatting the default message for: "'.concat(A,'", rendering message verbatim'),o,r,U))}return typeof D=="string"?D:typeof I=="string"?I:A},p=n(32409),j=["style","currency","currencyDisplay","unit","unitDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","compactDisplay","currencyDisplay","currencySign","notation","signDisplay","unit","unitDisplay","numberingSystem"];function w(t,s,r){var e=t.locale,i=t.formats,o=t.onError;r===void 0&&(r={});var m=r.format,v=m&&(0,p.TB)(i,"number",m,o)||{},T=(0,p.L6)(r,j,v);return s(e,T)}function E(t,s,r,e){e===void 0&&(e={});try{return w(t,s,e).format(r)}catch(i){t.onError(new l.Qe("Error formatting number.",t.locale,i))}return String(r)}function M(t,s,r,e){e===void 0&&(e={});try{return w(t,s,e).formatToParts(r)}catch(i){t.onError(new l.Qe("Error formatting number.",t.locale,i))}return[]}var S=n(14979),C=["numeric","style"];function Z(t,s,r){var e=t.locale,i=t.formats,o=t.onError;r===void 0&&(r={});var m=r.format,v=!!m&&(0,p.TB)(i,"relative",m,o)||{},T=(0,p.L6)(r,C,v);return s(e,T)}function z(t,s,r,e,i){i===void 0&&(i={}),e||(e="second");var o=Intl.RelativeTimeFormat;o||t.onError(new S.u_(`Intl.RelativeTimeFormat is not available in this environment.
2
- Try polyfilling it using "@formatjs/intl-relativetimeformat"
3
- `,S.jK.MISSING_INTL_API));try{return Z(t,s,i).format(r,e)}catch(m){t.onError(new l.Qe("Error formatting relative time.",t.locale,m))}return String(r)}var k=["formatMatcher","timeZone","hour12","weekday","era","year","month","day","hour","minute","second","timeZoneName","hourCycle","dateStyle","timeStyle","calendar","numberingSystem","fractionalSecondDigits"];function K(t,s,r,e){var i=t.locale,o=t.formats,m=t.onError,v=t.timeZone;e===void 0&&(e={});var T=e.format,F=(0,a.pi)((0,a.pi)({},v&&{timeZone:v}),T&&(0,p.TB)(o,s,T,m)),L=(0,p.L6)(e,k,F);return s==="time"&&!L.hour&&!L.minute&&!L.second&&!L.timeStyle&&!L.dateStyle&&(L=(0,a.pi)((0,a.pi)({},L),{hour:"numeric",minute:"numeric"})),r(i,L)}function _(t,s){for(var r=[],e=2;e<arguments.length;e++)r[e-2]=arguments[e];var i=r[0],o=r[1],m=o===void 0?{}:o,v=typeof i=="string"?new Date(i||0):i;try{return K(t,"date",s,m).format(v)}catch(T){t.onError(new l.Qe("Error formatting date.",t.locale,T))}return String(v)}function q(t,s){for(var r=[],e=2;e<arguments.length;e++)r[e-2]=arguments[e];var i=r[0],o=r[1],m=o===void 0?{}:o,v=typeof i=="string"?new Date(i||0):i;try{return K(t,"time",s,m).format(v)}catch(T){t.onError(new l.Qe("Error formatting time.",t.locale,T))}return String(v)}function tt(t,s){for(var r=[],e=2;e<arguments.length;e++)r[e-2]=arguments[e];var i=r[0],o=r[1],m=r[2],v=m===void 0?{}:m,T=t.timeZone,F=t.locale,L=t.onError,B=(0,p.L6)(v,k,T?{timeZone:T}:{});try{return s(F,B).formatRange(i,o)}catch(N){L(new l.Qe("Error formatting date time range.",t.locale,N))}return String(i)}function et(t,s){for(var r=[],e=2;e<arguments.length;e++)r[e-2]=arguments[e];var i=r[0],o=r[1],m=o===void 0?{}:o,v=typeof i=="string"?new Date(i||0):i;try{return K(t,"date",s,m).formatToParts(v)}catch(T){t.onError(new l.Qe("Error formatting date.",t.locale,T))}return[]}function rt(t,s){for(var r=[],e=2;e<arguments.length;e++)r[e-2]=arguments[e];var i=r[0],o=r[1],m=o===void 0?{}:o,v=typeof i=="string"?new Date(i||0):i;try{return K(t,"time",s,m).formatToParts(v)}catch(T){t.onError(new l.Qe("Error formatting time.",t.locale,T))}return[]}var nt=["type"];function at(t,s,r,e){var i=t.locale,o=t.onError;e===void 0&&(e={}),Intl.PluralRules||o(new S.u_(`Intl.PluralRules is not available in this environment.
4
- Try polyfilling it using "@formatjs/intl-pluralrules"
5
- `,S.jK.MISSING_INTL_API));var m=(0,p.L6)(e,nt);try{return s(i,m).select(r)}catch(v){o(new l.Qe("Error formatting plural.",i,v))}return"other"}var ot=["type","style"],$=Date.now();function it(t){return"".concat($,"_").concat(t,"_").concat($)}function st(t,s,r,e){e===void 0&&(e={});var i=G(t,s,r,e).reduce(function(o,m){var v=m.value;return typeof v!="string"?o.push(v):typeof o[o.length-1]=="string"?o[o.length-1]+=v:o.push(v),o},[]);return i.length===1?i[0]:i.length===0?"":i}function G(t,s,r,e){var i=t.locale,o=t.onError;e===void 0&&(e={});var m=Intl.ListFormat;m||o(new S.u_(`Intl.ListFormat is not available in this environment.
6
- Try polyfilling it using "@formatjs/intl-listformat"
7
- `,S.jK.MISSING_INTL_API));var v=(0,p.L6)(e,ot);try{var T={},F=r.map(function(L,B){if(typeof L=="object"){var N=it(B);return T[N]=L,N}return String(L)});return s(i,v).formatToParts(F).map(function(L){return L.type==="literal"?L:(0,a.pi)((0,a.pi)({},L),{value:T[L.value]||L.value})})}catch(L){o(new l.Qe("Error formatting list.",i,L))}return r}var lt=["style","type","fallback","languageDisplay"];function ut(t,s,r,e){var i=t.locale,o=t.onError,m=Intl.DisplayNames;m||o(new S.u_(`Intl.DisplayNames is not available in this environment.
8
- Try polyfilling it using "@formatjs/intl-displaynames"
9
- `,S.jK.MISSING_INTL_API));var v=(0,p.L6)(e,lt);try{return s(i,v).of(r)}catch(T){o(new l.Qe("Error formatting display name.",i,T))}}function ft(t){var s=t?t[Object.keys(t)[0]]:void 0;return typeof s=="string"}function ct(t){t.onWarn&&t.defaultRichTextElements&&ft(t.messages||{})&&t.onWarn(`[@formatjs/intl] "defaultRichTextElements" was specified but "message" was not pre-compiled.
10
- Please consider using "@formatjs/cli" to pre-compile your messages for performance.
11
- For more details see https://formatjs.io/docs/getting-started/message-distribution`)}function mt(t,s){var r=(0,p.ax)(s),e=(0,a.pi)((0,a.pi)({},p.Z0),t),i=e.locale,o=e.defaultLocale,m=e.onError;return i?!Intl.NumberFormat.supportedLocalesOf(i).length&&m?m(new l.gb('Missing locale data for locale: "'.concat(i,'" in Intl.NumberFormat. Using default locale: "').concat(o,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):!Intl.DateTimeFormat.supportedLocalesOf(i).length&&m&&m(new l.gb('Missing locale data for locale: "'.concat(i,'" in Intl.DateTimeFormat. Using default locale: "').concat(o,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):(m&&m(new l.OV('"locale" was not configured, using "'.concat(o,'" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))),e.locale=e.defaultLocale||"en"),ct(e),(0,a.pi)((0,a.pi)({},e),{formatters:r,formatNumber:E.bind(null,e,r.getNumberFormat),formatNumberToParts:M.bind(null,e,r.getNumberFormat),formatRelativeTime:z.bind(null,e,r.getRelativeTimeFormat),formatDate:_.bind(null,e,r.getDateTimeFormat),formatDateToParts:et.bind(null,e,r.getDateTimeFormat),formatTime:q.bind(null,e,r.getDateTimeFormat),formatDateTimeRange:tt.bind(null,e,r.getDateTimeFormat),formatTimeToParts:rt.bind(null,e,r.getDateTimeFormat),formatPlural:at.bind(null,e,r.getPluralRules),formatMessage:O.bind(null,e,r),$t:O.bind(null,e,r),formatList:st.bind(null,e,r.getListFormat),formatListToParts:G.bind(null,e,r.getListFormat),formatDisplayName:ut.bind(null,e,r.getDisplayNames)})}var dt=n(33961);function Q(t){return{locale:t.locale,timeZone:t.timeZone,fallbackOnEmptyString:t.fallbackOnEmptyString,formats:t.formats,textComponent:t.textComponent,messages:t.messages,defaultLocale:t.defaultLocale,defaultFormats:t.defaultFormats,onError:t.onError,onWarn:t.onWarn,wrapRichTextChunksInFragment:t.wrapRichTextChunksInFragment,defaultRichTextElements:t.defaultRichTextElements}}function H(t){return t&&Object.keys(t).reduce(function(s,r){var e=t[r];return s[r]=(0,dt.Gt)(e)?(0,u.dt)(e):e,s},{})}var X=function(t,s,r,e){for(var i=[],o=4;o<arguments.length;o++)i[o-4]=arguments[o];var m=H(e),v=O.apply(void 0,(0,a.ev)([t,s,r,m],i,!1));return Array.isArray(v)?f.Children.toArray(v):v},Y=function(t,s){var r=t.defaultRichTextElements,e=(0,a._T)(t,["defaultRichTextElements"]),i=H(r),o=mt((0,a.pi)((0,a.pi)((0,a.pi)({},u.Z0),e),{defaultRichTextElements:i}),s),m={locale:o.locale,timeZone:o.timeZone,fallbackOnEmptyString:o.fallbackOnEmptyString,formats:o.formats,defaultLocale:o.defaultLocale,defaultFormats:o.defaultFormats,messages:o.messages,onError:o.onError,defaultRichTextElements:i};return(0,a.pi)((0,a.pi)({},o),{formatMessage:X.bind(null,m,o.formatters),$t:X.bind(null,m,o.formatters)})},gt=function(t){(0,a.ZT)(s,t);function s(){var r=t!==null&&t.apply(this,arguments)||this;return r.cache=(0,p.Sn)(),r.state={cache:r.cache,intl:Y(Q(r.props),r.cache),prevConfig:Q(r.props)},r}return s.getDerivedStateFromProps=function(r,e){var i=e.prevConfig,o=e.cache,m=Q(r);return(0,u.wU)(i,m)?null:{intl:Y(m,o),prevConfig:m}},s.prototype.render=function(){return(0,u.lq)(this.state.intl),f.createElement(c.zt,{value:this.state.intl},this.props.children)},s.displayName="IntlProvider",s.defaultProps=u.Z0,s}(f.PureComponent),pt=gt},56932:function(h,y,n){"use strict";n.d(y,{D:function(){return c}});var a=n(74512),f=n(77981);const c=({children:u})=>(0,a.jsx)(f.x,{paddingLeft:10,paddingRight:10,children:u})},64092:function(h,y,n){"use strict";n.d(y,{T:function(){return R}});var a=n(74512),f=n(32735),c=n(8471);const u=p=>{const j=(0,f.useRef)(null),[w,E]=(0,f.useState)(!0),M=([S])=>{E(S.isIntersecting)};return(0,f.useEffect)(()=>{const S=j.current,C=new IntersectionObserver(M,p);return S&&C.observe(j.current),()=>{S&&C.disconnect()}},[j,p]),[j,w]};var d=n(81957);const g=(p,j)=>{const w=(0,d.W)(j);(0,f.useLayoutEffect)(()=>{const E=new ResizeObserver(w);return Array.isArray(p)?p.forEach(M=>{M.current&&E.observe(M.current)}):p.current&&E.observe(p.current),()=>{E.disconnect()}},[p,w])};var l=n(77981),x=n(84642),b=n(8365);const R=p=>{const j=(0,f.useRef)(null),[w,E]=(0,f.useState)(null),[M,S]=u({root:null,rootMargin:"0px",threshold:0});return g(M,()=>{M.current&&E(M.current.getBoundingClientRect())}),(0,f.useEffect)(()=>{j.current&&E(j.current.getBoundingClientRect())},[j]),(0,a.jsxs)(a.Fragment,{children:[(0,a.jsx)("div",{style:{height:w?.height},ref:M,children:S&&(0,a.jsx)(O,{ref:j,...p})}),!S&&(0,a.jsx)(O,{...p,sticky:!0,width:w?.width})]})};R.displayName="HeaderLayout";const P=(0,c.ZP)(l.x)`
12
- width: ${({width:p})=>p?`${p/16}rem`:void 0};
13
- z-index: ${({theme:p})=>p.zIndices[1]};
14
- `,O=f.forwardRef(({navigationAction:p,primaryAction:j,secondaryAction:w,subtitle:E,title:M,sticky:S,width:C,...Z},z)=>{const k=typeof E=="string";return S?(0,a.jsx)(P,{paddingLeft:6,paddingRight:6,paddingTop:3,paddingBottom:3,position:"fixed",top:0,right:0,background:"neutral0",shadow:"tableShadow",width:C,"data-strapi-header-sticky":!0,children:(0,a.jsxs)(x.k,{justifyContent:"space-between",children:[(0,a.jsxs)(x.k,{children:[p&&(0,a.jsx)(l.x,{paddingRight:3,children:p}),(0,a.jsxs)(l.x,{children:[(0,a.jsx)(b.Z,{variant:"beta",as:"h1",...Z,children:M}),k?(0,a.jsx)(b.Z,{variant:"pi",textColor:"neutral600",children:E}):E]}),w?(0,a.jsx)(l.x,{paddingLeft:4,children:w}):null]}),(0,a.jsx)(x.k,{children:j?(0,a.jsx)(l.x,{paddingLeft:2,children:j}):void 0})]})}):(0,a.jsxs)(l.x,{ref:z,paddingLeft:10,paddingRight:10,paddingBottom:8,paddingTop:p?6:8,background:"neutral100","data-strapi-header":!0,children:[p?(0,a.jsx)(l.x,{paddingBottom:2,children:p}):null,(0,a.jsxs)(x.k,{justifyContent:"space-between",children:[(0,a.jsxs)(x.k,{minWidth:0,children:[(0,a.jsx)(b.Z,{as:"h1",variant:"alpha",...Z,children:M}),w?(0,a.jsx)(l.x,{paddingLeft:4,children:w}):null]}),j]}),k?(0,a.jsx)(b.Z,{variant:"epsilon",textColor:"neutral600",as:"p",children:E}):E]})})},95162:function(h,y,n){"use strict";n.d(y,{o:function(){return d}});var a=n(74512),f=n(8471),c=n(77981);const u=(0,f.ZP)(c.x)`
15
- // To prevent global outline on focus visible to force an outline when Main is focused
16
- &:focus-visible {
17
- outline: none;
18
- }
19
- `,d=({labelledBy:g="main-content-title",...l})=>(0,a.jsx)(u,{"aria-labelledby":g,as:"main",id:"main-content",tabIndex:-1,...l})},34197:function(h,y,n){"use strict";n.d(y,{z:function(){return d}});var a=n(74512),f=n(8471),c=n(77981);const u=(0,f.ZP)(c.x)`
20
- text-decoration: none;
21
-
22
- &:focus {
23
- left: ${({theme:g})=>g.spaces[3]};
24
- top: ${({theme:g})=>g.spaces[3]};
25
- }
26
- `,d=({children:g})=>(0,a.jsx)(u,{as:"a",href:"#main-content",background:"primary600",color:"neutral0",left:"-100%",padding:3,position:"absolute",top:"-100%",hasRadius:!0,zIndex:9999,children:g})},88492:function(h,y,n){"use strict";n.d(y,{$:function(){return u}});const a={color:{alternative100:"#181826",alternative200:"#4a4a6a",alternative500:"#ac73e6",alternative600:"#ac73e6",alternative700:"#e0c1f4",buttonNeutral0:"#ffffff",buttonPrimary500:"#7b79ff",buttonPrimary600:"#4945ff",danger100:"#181826",danger200:"#4a4a6a",danger500:"#ee5e52",danger600:"#ee5e52",danger700:"#ee5e52",neutral0:"#212134",neutral100:"#181826",neutral1000:"#ffffff",neutral150:"#32324d",neutral200:"#4a4a6a",neutral300:"#666687",neutral400:"#a5a5ba",neutral500:"#c0c0cf",neutral600:"#a5a5ba",neutral700:"#eaeaef",neutral800:"#ffffff",neutral900:"#ffffff",primary100:"#181826",primary200:"#4a4a6a",primary500:"#4945ff",primary600:"#7b79ff",primary700:"#7b79ff",secondary100:"#181826",secondary200:"#4a4a6a",secondary500:"#66b7f1",secondary600:"#66b7f1",secondary700:"#b8e1ff",success100:"#181826",success200:"#4a4a6a",success500:"#5cb176",success600:"#5cb176",success700:"#c6f0c2",warning100:"#181826",warning200:"#4a4a6a",warning500:"#f29d41",warning600:"#f29d41",warning700:"#fae7b9"}},f={shadow:{filterShadow:"1px 1px 10px rgba(3, 3, 5, 0.35)",focus:"inset 2px 0px 0px rgb(39, 31, 224), inset 0px 2px 0px rgb(39, 31, 224), inset -2px 0px 0px rgb(39, 31, 224), inset 0px -2px 0px rgb(39, 31, 224)",focusShadow:"0px 0px 6px rgba(76, 191, 255, 0.75)",popupShadow:"1px 1px 10px rgba(3, 3, 5, 0.35)",tableShadow:"1px 1px 10px rgba(3, 3, 5, 0.2)"}};var c=n(30987);const u={colors:a.color,shadows:f.shadow,...c.x}},25919:function(h,y,n){"use strict";n.d(y,{Z:function(){return c}});var a=n(74512);const f=u=>(0,a.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...u,children:(0,a.jsx)("path",{fill:"#212134",d:"M0 10.7c0-.11.09-.2.2-.2h18.06l-8.239-8.239a.2.2 0 0 1 0-.282L11.86.14a.2.2 0 0 1 .282 0L23.86 11.86a.2.2 0 0 1 0 .282L12.14 23.86a.2.2 0 0 1-.282 0L10.02 22.02a.2.2 0 0 1 0-.282L18.26 13.5H.2a.2.2 0 0 1-.2-.2v-2.6Z"})}),c=f}}]);