@strapi/admin 4.11.0-beta.1 → 4.11.0-exp.push-transfer-push-stuck

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 (53) hide show
  1. package/admin/src/components/Providers/index.js +32 -32
  2. package/admin/src/components/Theme/index.js +3 -5
  3. package/admin/src/content-manager/components/DynamicTable/ConfirmDialogDeleteAll/index.js +73 -0
  4. package/admin/src/content-manager/components/DynamicTable/index.js +4 -20
  5. package/admin/src/content-manager/components/EditViewDataManagerProvider/index.js +2 -3
  6. package/admin/src/content-manager/components/EditViewDataManagerProvider/utils/index.js +1 -0
  7. package/admin/src/content-manager/{utils → components/EditViewDataManagerProvider/utils}/schema.js +1 -1
  8. package/admin/src/content-manager/components/Inputs/index.js +11 -18
  9. package/admin/src/content-manager/components/Inputs/utils/getStep.js +13 -0
  10. package/admin/src/content-manager/components/Inputs/utils/index.js +1 -0
  11. package/admin/src/content-manager/pages/ListView/index.js +2 -118
  12. package/admin/src/content-manager/utils/index.js +0 -2
  13. package/admin/src/injectionZones.js +1 -6
  14. package/admin/src/translations/ar.json +1 -684
  15. package/admin/src/translations/en.json +1 -6
  16. package/build/3816.60f858cf.chunk.js +211 -0
  17. package/build/6858.85d76858.chunk.js +50 -0
  18. package/build/6970.6a329e15.chunk.js +1 -0
  19. package/build/{Admin-authenticatedApp.990df65d.chunk.js → Admin-authenticatedApp.d425b485.chunk.js} +2 -2
  20. package/build/{Admin_marketplace.1436fc2b.chunk.js → Admin_marketplace.717bd7ca.chunk.js} +1 -1
  21. package/build/Admin_pluginsPage.7df6b5a9.chunk.js +6 -0
  22. package/build/{Admin_profilePage.75bc083a.chunk.js → Admin_profilePage.a8fa3a56.chunk.js} +1 -1
  23. package/build/{Admin_settingsPage.bd715ed3.chunk.js → Admin_settingsPage.1394aaf2.chunk.js} +1 -1
  24. package/build/{admin-app.8b102fe2.chunk.js → admin-app.ac5b1f59.chunk.js} +8 -8
  25. package/build/ar-json.39e54aba.chunk.js +1 -0
  26. package/build/content-manager.70548048.chunk.js +1123 -0
  27. package/build/{email-settings-page.4368689f.chunk.js → email-settings-page.dba83275.chunk.js} +1 -1
  28. package/build/{en-json.0f5cc115.chunk.js → en-json.d965e364.chunk.js} +1 -1
  29. package/build/i18n-settings-page.55628f74.chunk.js +114 -0
  30. package/build/i18n-translation-en-json.60af6722.chunk.js +1 -0
  31. package/build/index.html +1 -1
  32. package/build/main.d9d9ed10.js +2630 -0
  33. package/build/{review-workflows-settings.4b39b837.chunk.js → review-workflows-settings.56cab253.chunk.js} +1 -1
  34. package/build/{runtime~main.55d43bd7.js → runtime~main.adbe36a4.js} +2 -2
  35. package/build/users-advanced-settings-page.4f49ca57.chunk.js +9 -0
  36. package/build/users-email-settings-page.d2429d0a.chunk.js +24 -0
  37. package/build/users-providers-settings-page.50c5ba27.chunk.js +29 -0
  38. package/build/{users-roles-settings-page.c773086b.chunk.js → users-roles-settings-page.2549794b.chunk.js} +1 -1
  39. package/build/{webhook-list-page.b0f5a02c.chunk.js → webhook-list-page.e2fca9f8.chunk.js} +1 -1
  40. package/package.json +15 -15
  41. package/admin/src/content-manager/components/DynamicTable/BulkActionsBar/index.js +0 -307
  42. package/build/3562.e0b1a0b3.chunk.js +0 -50
  43. package/build/456.9b85d4c6.chunk.js +0 -39
  44. package/build/6970.7ea35fbd.chunk.js +0 -1
  45. package/build/Admin_pluginsPage.e1afd5ed.chunk.js +0 -6
  46. package/build/ar-json.f530bc3f.chunk.js +0 -1
  47. package/build/content-manager.89099707.chunk.js +0 -1123
  48. package/build/i18n-settings-page.7988d872.chunk.js +0 -114
  49. package/build/i18n-translation-en-json.1ec7becf.chunk.js +0 -1
  50. package/build/main.5a232c3d.js +0 -2630
  51. package/build/users-advanced-settings-page.2cfb5d24.chunk.js +0 -9
  52. package/build/users-email-settings-page.bd6c774a.chunk.js +0 -24
  53. package/build/users-providers-settings-page.528f0036.chunk.js +0 -29
@@ -1,307 +0,0 @@
1
- import React, { useState } from 'react';
2
- import PropTypes from 'prop-types';
3
- import { Button, Dialog, DialogBody, DialogFooter, Flex, Typography } from '@strapi/design-system';
4
- import { Check, ExclamationMarkCircle, Trash } from '@strapi/icons';
5
- import { useIntl } from 'react-intl';
6
- import { useSelector } from 'react-redux';
7
- import { useTracking } from '@strapi/helper-plugin';
8
- import { getTrad } from '../../../utils';
9
- import InjectionZoneList from '../../InjectionZoneList';
10
- import { listViewDomain } from '../../../pages/ListView/selectors';
11
-
12
- const ConfirmBulkActionDialog = ({ onToggleDialog, isOpen, dialogBody, endAction }) => {
13
- const { formatMessage } = useIntl();
14
-
15
- return (
16
- <Dialog
17
- onClose={onToggleDialog}
18
- title={formatMessage({
19
- id: 'app.components.ConfirmDialog.title',
20
- defaultMessage: 'Confirmation',
21
- })}
22
- labelledBy="confirmation"
23
- describedBy="confirm-description"
24
- isOpen={isOpen}
25
- >
26
- <DialogBody icon={<ExclamationMarkCircle />}>
27
- <Flex direction="column" alignItems="stretch" gap={2}>
28
- {dialogBody}
29
- </Flex>
30
- </DialogBody>
31
- <DialogFooter
32
- startAction={
33
- <Button onClick={onToggleDialog} variant="tertiary">
34
- {formatMessage({
35
- id: 'app.components.Button.cancel',
36
- defaultMessage: 'Cancel',
37
- })}
38
- </Button>
39
- }
40
- endAction={endAction}
41
- />
42
- </Dialog>
43
- );
44
- };
45
-
46
- ConfirmBulkActionDialog.propTypes = {
47
- isOpen: PropTypes.bool.isRequired,
48
- onToggleDialog: PropTypes.func.isRequired,
49
- dialogBody: PropTypes.node.isRequired,
50
- endAction: PropTypes.node.isRequired,
51
- };
52
-
53
- const confirmDialogsPropTypes = {
54
- isConfirmButtonLoading: PropTypes.bool.isRequired,
55
- isOpen: PropTypes.bool.isRequired,
56
- onConfirm: PropTypes.func.isRequired,
57
- onToggleDialog: PropTypes.func.isRequired,
58
- };
59
-
60
- const ConfirmDialogPublishAll = ({ isOpen, onToggleDialog, isConfirmButtonLoading, onConfirm }) => {
61
- const { formatMessage } = useIntl();
62
-
63
- return (
64
- <ConfirmBulkActionDialog
65
- isOpen={isOpen}
66
- onToggleDialog={onToggleDialog}
67
- dialogBody={
68
- <>
69
- <Typography id="confirm-description" textAlign="center">
70
- {formatMessage({
71
- id: getTrad('popUpWarning.bodyMessage.contentType.publish.all'),
72
- defaultMessage: 'Are you sure you want to publish these entries?',
73
- })}
74
- </Typography>
75
- <InjectionZoneList area="contentManager.listView.publishModalAdditionalInfos" />
76
- </>
77
- }
78
- endAction={
79
- <Button
80
- onClick={onConfirm}
81
- variant="secondary"
82
- startIcon={<Check />}
83
- loading={isConfirmButtonLoading}
84
- >
85
- {formatMessage({
86
- id: 'app.utils.publish',
87
- defaultMessage: 'Publish',
88
- })}
89
- </Button>
90
- }
91
- />
92
- );
93
- };
94
-
95
- ConfirmDialogPublishAll.propTypes = confirmDialogsPropTypes;
96
-
97
- const ConfirmDialogUnpublishAll = ({
98
- isOpen,
99
- onToggleDialog,
100
- isConfirmButtonLoading,
101
- onConfirm,
102
- }) => {
103
- const { formatMessage } = useIntl();
104
-
105
- return (
106
- <ConfirmBulkActionDialog
107
- isOpen={isOpen}
108
- onToggleDialog={onToggleDialog}
109
- dialogBody={
110
- <>
111
- <Typography id="confirm-description" textAlign="center">
112
- {formatMessage({
113
- id: getTrad('popUpWarning.bodyMessage.contentType.unpublish.all'),
114
- defaultMessage: 'Are you sure you want to unpublish these entries?',
115
- })}
116
- </Typography>
117
- <InjectionZoneList area="contentManager.listView.unpublishModalAdditionalInfos" />
118
- </>
119
- }
120
- endAction={
121
- <Button
122
- onClick={onConfirm}
123
- variant="secondary"
124
- startIcon={<Check />}
125
- loading={isConfirmButtonLoading}
126
- >
127
- {formatMessage({
128
- id: 'app.utils.unpublish',
129
- defaultMessage: 'Unpublish',
130
- })}
131
- </Button>
132
- }
133
- />
134
- );
135
- };
136
-
137
- ConfirmDialogUnpublishAll.propTypes = confirmDialogsPropTypes;
138
-
139
- const ConfirmDialogDeleteAll = ({ isOpen, onToggleDialog, isConfirmButtonLoading, onConfirm }) => {
140
- const { formatMessage } = useIntl();
141
-
142
- return (
143
- <ConfirmBulkActionDialog
144
- isOpen={isOpen}
145
- onToggleDialog={onToggleDialog}
146
- dialogBody={
147
- <>
148
- <Typography id="confirm-description" textAlign="center">
149
- {formatMessage({
150
- id: getTrad('popUpWarning.bodyMessage.contentType.delete.all'),
151
- defaultMessage: 'Are you sure you want to delete these entries?',
152
- })}
153
- </Typography>
154
- <InjectionZoneList area="contentManager.listView.deleteModalAdditionalInfos" />
155
- </>
156
- }
157
- endAction={
158
- <Button
159
- onClick={onConfirm}
160
- variant="danger-light"
161
- startIcon={<Trash />}
162
- id="confirm-delete"
163
- loading={isConfirmButtonLoading}
164
- >
165
- {formatMessage({
166
- id: 'app.components.Button.confirm',
167
- defaultMessage: 'Confirm',
168
- })}
169
- </Button>
170
- }
171
- />
172
- );
173
- };
174
-
175
- ConfirmDialogDeleteAll.propTypes = confirmDialogsPropTypes;
176
-
177
- const BulkActionsBar = ({
178
- showPublish,
179
- showDelete,
180
- onConfirmDeleteAll,
181
- onConfirmPublishAll,
182
- onConfirmUnpublishAll,
183
- selectedEntries,
184
- clearSelectedEntries,
185
- }) => {
186
- const { formatMessage } = useIntl();
187
- const { trackUsage } = useTracking();
188
- const { data } = useSelector(listViewDomain());
189
-
190
- const [isConfirmButtonLoading, setIsConfirmButtonLoading] = useState(false);
191
- const [dialogToOpen, setDialogToOpen] = useState(null);
192
-
193
- // Filters for Bulk actions
194
- const selectedEntriesObjects = data.filter((entry) => selectedEntries.includes(entry.id));
195
- const publishButtonIsShown =
196
- showPublish && selectedEntriesObjects.some((entry) => !entry.publishedAt);
197
- const unpublishButtonIsShown =
198
- showPublish && selectedEntriesObjects.some((entry) => entry.publishedAt);
199
-
200
- const toggleDeleteModal = () => {
201
- if (dialogToOpen === 'delete') {
202
- setDialogToOpen(null);
203
- } else {
204
- setDialogToOpen('delete');
205
- trackUsage('willBulkDeleteEntries');
206
- }
207
- };
208
-
209
- const togglePublishModal = () => {
210
- if (dialogToOpen === 'publish') {
211
- setDialogToOpen(null);
212
- } else {
213
- setDialogToOpen('publish');
214
- trackUsage('willBulkPublishEntries');
215
- }
216
- };
217
-
218
- const toggleUnpublishModal = () => {
219
- if (dialogToOpen === 'unpublish') {
220
- setDialogToOpen(null);
221
- } else {
222
- setDialogToOpen('unpublish');
223
- trackUsage('willBulkUnpublishEntries');
224
- }
225
- };
226
-
227
- const handleBulkAction = async (confirmAction, toggleModal) => {
228
- try {
229
- setIsConfirmButtonLoading(true);
230
- await confirmAction(selectedEntries);
231
- setIsConfirmButtonLoading(false);
232
- toggleModal();
233
- clearSelectedEntries();
234
- } catch (error) {
235
- setIsConfirmButtonLoading(false);
236
- toggleModal();
237
- }
238
- };
239
-
240
- const handleBulkDelete = () => handleBulkAction(onConfirmDeleteAll, toggleDeleteModal);
241
- const handleBulkPublish = () => handleBulkAction(onConfirmPublishAll, togglePublishModal);
242
- const handleBulkUnpublish = () => handleBulkAction(onConfirmUnpublishAll, toggleUnpublishModal);
243
-
244
- return (
245
- <>
246
- {publishButtonIsShown && (
247
- <>
248
- <Button variant="tertiary" onClick={togglePublishModal}>
249
- {formatMessage({ id: 'app.utils.publish', defaultMessage: 'Publish' })}
250
- </Button>
251
- <ConfirmDialogPublishAll
252
- isOpen={dialogToOpen === 'publish'}
253
- onToggleDialog={togglePublishModal}
254
- isConfirmButtonLoading={isConfirmButtonLoading}
255
- onConfirm={handleBulkPublish}
256
- />
257
- </>
258
- )}
259
- {unpublishButtonIsShown && (
260
- <>
261
- <Button variant="tertiary" onClick={toggleUnpublishModal}>
262
- {formatMessage({ id: 'app.utils.unpublish', defaultMessage: 'Unpublish' })}
263
- </Button>
264
- <ConfirmDialogUnpublishAll
265
- isOpen={dialogToOpen === 'unpublish'}
266
- onToggleDialog={toggleUnpublishModal}
267
- isConfirmButtonLoading={isConfirmButtonLoading}
268
- onConfirm={handleBulkUnpublish}
269
- />
270
- </>
271
- )}
272
- {showDelete && (
273
- <>
274
- <Button variant="danger-light" onClick={toggleDeleteModal}>
275
- {formatMessage({ id: 'global.delete', defaultMessage: 'Delete' })}
276
- </Button>
277
- <ConfirmDialogDeleteAll
278
- isOpen={dialogToOpen === 'delete'}
279
- onToggleDialog={toggleDeleteModal}
280
- isConfirmButtonLoading={isConfirmButtonLoading}
281
- onConfirm={handleBulkDelete}
282
- />
283
- </>
284
- )}
285
- </>
286
- );
287
- };
288
-
289
- BulkActionsBar.defaultProps = {
290
- showPublish: false,
291
- showDelete: false,
292
- onConfirmDeleteAll() {},
293
- onConfirmPublishAll() {},
294
- onConfirmUnpublishAll() {},
295
- };
296
-
297
- BulkActionsBar.propTypes = {
298
- showPublish: PropTypes.bool,
299
- showDelete: PropTypes.bool,
300
- onConfirmDeleteAll: PropTypes.func,
301
- onConfirmPublishAll: PropTypes.func,
302
- onConfirmUnpublishAll: PropTypes.func,
303
- selectedEntries: PropTypes.array.isRequired,
304
- clearSelectedEntries: PropTypes.func.isRequired,
305
- };
306
-
307
- export default BulkActionsBar;
@@ -1,50 +0,0 @@
1
- (self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[3562],{51355:function(E,m,r){var n=r(94318),u=r(3387),s="[object Boolean]";function x(v){return v===!0||v===!1||u(v)&&n(v)==s}E.exports=x},95919:function(E,m,r){var n=r(80022);function u(s){return n(s)&&s!=+s}E.exports=u},80022:function(E,m,r){var n=r(94318),u=r(3387),s="[object Number]";function x(v){return typeof v=="number"||u(v)&&n(v)==s}E.exports=x},59578:function(E,m,r){var n=r(41119);function u(s){return n(s).toLowerCase()}E.exports=u},98178:function(E,m,r){"use strict";r.d(m,{P1:function(){return j}});var n="NOT_FOUND";function u(l){var a;return{get:function(t){return a&&l(a.key,t)?a.value:n},put:function(t,o){a={key:t,value:o}},getEntries:function(){return a?[a]:[]},clear:function(){a=void 0}}}function s(l,a){var e=[];function t(p){var f=e.findIndex(function(g){return a(p,g.key)});if(f>-1){var h=e[f];return f>0&&(e.splice(f,1),e.unshift(h)),h.value}return n}function o(p,f){t(p)===n&&(e.unshift({key:p,value:f}),e.length>l&&e.pop())}function i(){return e}function c(){e=[]}return{get:t,put:o,getEntries:i,clear:c}}var x=function(a,e){return a===e};function v(l){return function(e,t){if(e===null||t===null||e.length!==t.length)return!1;for(var o=e.length,i=0;i<o;i++)if(!l(e[i],t[i]))return!1;return!0}}function M(l,a){var e=typeof a=="object"?a:{equalityCheck:a},t=e.equalityCheck,o=t===void 0?x:t,i=e.maxSize,c=i===void 0?1:i,p=e.resultEqualityCheck,f=v(o),h=c===1?u(f):s(c,f);function g(){var d=h.get(arguments);if(d===n){if(d=l.apply(null,arguments),p){var _=h.getEntries(),y=_.find(function(O){return p(O.value,d)});y&&(d=y.value)}h.put(arguments,d)}return d}return g.clearCache=function(){return h.clear()},g}function P(l){var a=Array.isArray(l[0])?l[0]:l;if(!a.every(function(t){return typeof t=="function"})){var e=a.map(function(t){return typeof t=="function"?"function "+(t.name||"unnamed")+"()":typeof t}).join(", ");throw new Error("createSelector expects all input-selectors to be functions, but received the following types: ["+e+"]")}return a}function b(l){for(var a=arguments.length,e=new Array(a>1?a-1:0),t=1;t<a;t++)e[t-1]=arguments[t];var o=function(){for(var c=arguments.length,p=new Array(c),f=0;f<c;f++)p[f]=arguments[f];var h=0,g,d={memoizeOptions:void 0},_=p.pop();if(typeof _=="object"&&(d=_,_=p.pop()),typeof _!="function")throw new Error("createSelector expects an output function after the inputs, but received: ["+typeof _+"]");var y=d,O=y.memoizeOptions,C=O===void 0?e:O,Z=Array.isArray(C)?C:[C],D=P(p),R=l.apply(void 0,[function(){return h++,_.apply(null,arguments)}].concat(Z)),A=l(function(){for(var B=[],S=D.length,T=0;T<S;T++)B.push(D[T].apply(null,arguments));return g=R.apply(null,B),g});return Object.assign(A,{resultFunc:_,memoizedResultFunc:R,dependencies:D,lastResult:function(){return g},recomputations:function(){return h},resetRecomputations:function(){return h=0}}),A};return o}var j=b(M),w=function(a,e){if(e===void 0&&(e=j),typeof a!="object")throw new Error("createStructuredSelector expects first argument to be an object "+("where each property is a selector, instead received a "+typeof a));var t=Object.keys(a),o=e(t.map(function(i){return a[i]}),function(){for(var i=arguments.length,c=new Array(i),p=0;p<i;p++)c[p]=arguments[p];return c.reduce(function(f,h,g){return f[t[g]]=h,f},{})});return o}},83828:function(E,m,r){"use strict";r.d(m,{U:function(){return a},y:function(){return w}});var n=r(74512),u=r(32735),s=r(8471),x=r(91045),v=r(74971),M=r(49372),P=r(87933),b=r(72850);const j=({theme:e,expanded:t,variant:o,disabled:i,error:c})=>c?`1px solid ${e.colors.danger600} !important`:i?`1px solid ${e.colors.neutral150}`:t?`1px solid ${e.colors.primary600}`:o==="primary"?`1px solid ${e.colors.neutral0}`:`1px solid ${e.colors.neutral100}`,w=(0,s.ZP)(M.Z)``,l=(0,s.ZP)(b.x)`
2
- border: ${j};
3
-
4
- &:hover:not([aria-disabled='true']) {
5
- border: 1px solid ${({theme:e})=>e.colors.primary600};
6
-
7
- ${w} {
8
- color: ${({theme:e,expanded:t})=>t?void 0:e.colors.primary700};
9
- }
10
-
11
- ${M.Z} {
12
- color: ${({theme:e,expanded:t})=>t?void 0:e.colors.primary600};
13
- }
14
-
15
- & > ${P.k} {
16
- background: ${({theme:e})=>e.colors.primary100};
17
- }
18
-
19
- [data-strapi-dropdown='true'] {
20
- background: ${({theme:e})=>e.colors.primary200};
21
- }
22
- }
23
- `,a=({children:e,disabled:t=!1,error:o,expanded:i=!1,hasErrorMessage:c=!0,id:p,onToggle:f,toggle:h,size:g="M",variant:d="primary",shadow:_})=>{const y=(0,v.M)(p),O=u.useMemo(()=>({expanded:i,onToggle:f,toggle:h,id:y,size:g,variant:d,disabled:t}),[t,i,y,f,g,h,d]);return(0,n.jsxs)(x.S.Provider,{value:O,children:[(0,n.jsx)(l,{"data-strapi-expanded":i,disabled:t,"aria-disabled":t,expanded:i,hasRadius:!0,variant:d,error:o,shadow:_,children:e}),o&&c&&(0,n.jsx)(b.x,{paddingTop:1,children:(0,n.jsx)(M.Z,{variant:"pi",textColor:"danger600",children:o})})]})}},89966:function(E,m,r){"use strict";r.d(m,{v:function(){return x}});var n=r(74512),u=r(91045),s=r(72850);const x=({children:v,...M})=>{const{expanded:P,id:b}=(0,u.A)();if(!P)return null;const j=`accordion-content-${b}`,w=`accordion-label-${b}`,l=`accordion-desc-${b}`;return(0,n.jsx)(s.x,{role:"region",id:j,"aria-labelledby":w,"aria-describedby":l,...M,children:v})}},91045:function(E,m,r){"use strict";r.d(m,{A:function(){return s},S:function(){return u}});var n=r(32735);const u=(0,n.createContext)({disabled:!1,expanded:!1,id:"",size:"M",variant:"primary"}),s=()=>(0,n.useContext)(u)},61762:function(E,m,r){"use strict";r.d(m,{B:function(){return e}});var n=r(74512),u=r(16899),s=r(8471),x=r(83828),v=r(91045);const M=({expanded:t,disabled:o,variant:i})=>{let c="neutral100";return t?c="primary100":o?c="neutral150":i==="primary"&&(c="neutral0"),c};var P=r(7563),b=r(99140),j=r(87933),w=r(49372);const l=(0,s.ZP)(P.A)`
24
- text-align: left;
25
-
26
- // necessary to make the ellipsis prop work on the title
27
- > span {
28
- max-width: 100%;
29
- }
30
-
31
- svg {
32
- width: ${14/16}rem;
33
- height: ${14/16}rem;
34
-
35
- path {
36
- fill: ${({theme:t,expanded:o})=>o?t.colors.primary600:t.colors.neutral500};
37
- }
38
- }
39
- `,a=(0,s.ZP)(j.k)`
40
- min-height: ${({theme:t,size:o})=>t.sizes.accordions[o]};
41
- border-radius: ${({theme:t,expanded:o})=>o?`${t.borderRadius} ${t.borderRadius} 0 0`:t.borderRadius};
42
-
43
- &:hover {
44
- svg {
45
- path {
46
- fill: ${({theme:t})=>t.colors.primary600};
47
- }
48
- }
49
- }
50
- `,e=({title:t,description:o,as:i="span",togglePosition:c="right",action:p,...f})=>{const{onToggle:h,toggle:g,expanded:d,id:_,size:y,variant:O,disabled:C}=(0,v.A)(),Z=`accordion-content-${_}`,D=`accordion-label-${_}`,R=`accordion-desc-${_}`,A=y==="M"?6:4,$=y==="M"?A:A-2,B=M({expanded:d,disabled:C,variant:O}),S={as:i,fontWeight:y==="S"?"bold":void 0,id:D,textColor:d?"primary600":"neutral700",ellipsis:!0,variant:y==="M"?"delta":void 0},T=d?"primary600":"neutral600",W=d?"primary200":"neutral200",L=y==="M"?`${32/16}rem`:`${24/16}rem`,I=()=>{C||(g&&!h?(console.warn('Deprecation warning: Usage of "toggle" prop in Accordion component is deprecated. This is discouraged and will be removed in the next major release. Please use "onToggle" instead'),g()):h&&h())},U=(0,n.jsx)(j.k,{justifyContent:"center",borderRadius:"50%",height:L,width:L,transform:d?"rotate(180deg)":void 0,"data-strapi-dropdown":!0,"aria-hidden":!0,as:"span",background:W,cursor:C?"not-allowed":"pointer",onClick:I,shrink:0,children:(0,n.jsx)(b.J,{as:u.Z,width:y==="M"?`${11/16}rem`:`${8/16}rem`,color:d?"primary600":"neutral600"})});return(0,n.jsx)(a,{paddingBottom:$,paddingLeft:A,paddingRight:A,paddingTop:$,background:B,expanded:d,size:y,justifyContent:"space-between",cursor:C?"not-allowed":"",children:(0,n.jsxs)(j.k,{gap:3,flex:1,maxWidth:"100%",children:[c==="left"&&U,(0,n.jsx)(l,{onClick:I,"aria-disabled":C,"aria-expanded":d,"aria-controls":Z,"aria-labelledby":D,"data-strapi-accordion-toggle":!0,expanded:d,type:"button",flex:1,minWidth:0,...f,children:(0,n.jsxs)(n.Fragment,{children:[(0,n.jsx)(x.y,{...S,children:t}),o&&(0,n.jsx)(w.Z,{as:"p",id:R,textColor:T,children:o})]})}),c==="right"&&(0,n.jsxs)(j.k,{gap:3,children:[U,p]}),c==="left"&&p]})})}},47081:function(E,m,r){"use strict";r.d(m,{Z:function(){return s}});var n=r(74512);const u=x=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...x,children:[(0,n.jsx)("path",{fill:"#212134",d:"M16.563 5.587a2.503 2.503 0 1 0 0-5.007 2.503 2.503 0 0 0 0 5.007Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M18.487 3.083c-.012.788-.487 1.513-1.229 1.797a1.954 1.954 0 0 1-2.184-.574A1.943 1.943 0 0 1 14.9 2.11c.4-.684 1.2-1.066 1.981-.927a1.954 1.954 0 0 1 1.606 1.9c.011.748 1.17.748 1.158 0A3.138 3.138 0 0 0 17.565.17c-1.176-.423-2.567-.03-3.36.933-.83 1.002-.968 2.45-.284 3.575.678 1.124 1.993 1.674 3.273 1.431 1.432-.272 2.428-1.593 2.451-3.019.012-.753-1.147-.753-1.158-.006ZM16.563 14.372a2.503 2.503 0 1 0 0-5.007 2.503 2.503 0 0 0 0 5.007Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M18.487 11.867c-.012.789-.487 1.513-1.229 1.797a1.954 1.954 0 0 1-2.184-.574 1.943 1.943 0 0 1-.174-2.196c.4-.684 1.2-1.066 1.981-.927.928.156 1.588.968 1.606 1.9.011.748 1.17.748 1.158 0a3.138 3.138 0 0 0-2.08-2.914c-1.176-.423-2.567-.029-3.36.933-.83 1.002-.968 2.45-.284 3.575.678 1.124 1.993 1.675 3.273 1.431 1.432-.272 2.428-1.593 2.451-3.019.012-.753-1.147-.753-1.158-.005ZM16.563 23.392a2.503 2.503 0 1 0 0-5.006 2.503 2.503 0 0 0 0 5.006Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M18.487 20.89c-.012.787-.487 1.512-1.229 1.796a1.954 1.954 0 0 1-2.184-.574 1.943 1.943 0 0 1-.174-2.196c.4-.684 1.2-1.066 1.981-.927.928.156 1.588.967 1.606 1.9.011.748 1.17.748 1.158 0a3.138 3.138 0 0 0-2.08-2.914c-1.176-.423-2.567-.03-3.36.933-.83 1.002-.968 2.45-.284 3.575.678 1.124 1.993 1.674 3.273 1.431 1.432-.272 2.428-1.593 2.451-3.019.012-.753-1.147-.753-1.158-.006ZM7.378 5.622a2.503 2.503 0 1 0 0-5.007 2.503 2.503 0 0 0 0 5.007Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M9.302 3.119c-.011.788-.486 1.512-1.228 1.796a1.954 1.954 0 0 1-2.185-.574 1.943 1.943 0 0 1-.173-2.196c.4-.684 1.199-1.066 1.981-.927a1.943 1.943 0 0 1 1.605 1.9c.012.748 1.17.748 1.16 0A3.138 3.138 0 0 0 8.38.205c-1.176-.423-2.567-.029-3.36.933-.83 1.002-.968 2.45-.285 3.575.678 1.124 1.994 1.675 3.274 1.431 1.431-.272 2.428-1.593 2.451-3.019.012-.753-1.147-.753-1.159-.005ZM7.378 14.406a2.503 2.503 0 1 0 0-5.006 2.503 2.503 0 0 0 0 5.006Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M9.302 11.902c-.011.788-.486 1.513-1.228 1.797a1.954 1.954 0 0 1-2.185-.574 1.943 1.943 0 0 1-.173-2.196c.4-.684 1.199-1.066 1.981-.927a1.943 1.943 0 0 1 1.605 1.9c.012.748 1.17.748 1.16 0A3.138 3.138 0 0 0 8.38 8.988c-1.176-.423-2.567-.03-3.36.933-.83 1.002-.968 2.45-.285 3.575.678 1.124 1.994 1.674 3.274 1.431 1.431-.272 2.428-1.593 2.451-3.019.012-.753-1.147-.753-1.159-.006ZM7.378 23.427a2.503 2.503 0 1 0 0-5.007 2.503 2.503 0 0 0 0 5.007Z"}),(0,n.jsx)("path",{fill:"#212134",d:"M9.302 20.924c-.011.788-.486 1.513-1.228 1.797a1.954 1.954 0 0 1-2.185-.574 1.943 1.943 0 0 1-.173-2.196c.4-.684 1.199-1.066 1.981-.927.933.156 1.594.967 1.605 1.9.012.748 1.17.748 1.16 0A3.139 3.139 0 0 0 8.38 18.01c-1.176-.423-2.567-.03-3.36.933-.83 1.002-.968 2.45-.285 3.569.678 1.124 1.994 1.675 3.274 1.431 1.431-.272 2.428-1.593 2.451-3.019.012-.747-1.147-.747-1.159 0Z"})]}),s=u},86308:function(E,m,r){"use strict";r.d(m,{Z:function(){return s}});var n=r(74512);const u=x=>(0,n.jsxs)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...x,children:[(0,n.jsx)("circle",{cx:12,cy:12,r:12,fill:"#212134"}),(0,n.jsx)("path",{fill:"#F6F6F9",d:"M17 12.569c0 .124-.1.224-.225.224h-3.981v3.982c0 .124-.101.225-.226.225h-1.136a.225.225 0 0 1-.226-.225v-3.981H7.226A.225.225 0 0 1 7 12.567v-1.136c0-.125.1-.226.225-.226h3.982V7.226c0-.124.1-.225.224-.225h1.138c.124 0 .224.1.224.225v3.982h3.982c.124 0 .225.1.225.224v1.138Z"})]}),s=u}}]);
@@ -1,39 +0,0 @@
1
- (self.webpackChunk_strapi_admin=self.webpackChunk_strapi_admin||[]).push([[456],{73307:function(V,W,d){"use strict";d.d(W,{ZP:function(){return Mn}});var c=function(e,t){return c=Object.setPrototypeOf||{__proto__:[]}instanceof Array&&function(n,r){n.__proto__=r}||function(n,r){for(var a in r)Object.prototype.hasOwnProperty.call(r,a)&&(n[a]=r[a])},c(e,t)};function y(e,t){if(typeof t!="function"&&t!==null)throw new TypeError("Class extends value "+String(t)+" is not a constructor or null");c(e,t);function n(){this.constructor=e}e.prototype=t===null?Object.create(t):(n.prototype=t.prototype,new n)}var x=function(){return x=Object.assign||function(t){for(var n,r=1,a=arguments.length;r<a;r++){n=arguments[r];for(var i in n)Object.prototype.hasOwnProperty.call(n,i)&&(t[i]=n[i])}return t},x.apply(this,arguments)};function b(e,t){var n={};for(var r in e)Object.prototype.hasOwnProperty.call(e,r)&&t.indexOf(r)<0&&(n[r]=e[r]);if(e!=null&&typeof Object.getOwnPropertySymbols=="function")for(var a=0,r=Object.getOwnPropertySymbols(e);a<r.length;a++)t.indexOf(r[a])<0&&Object.prototype.propertyIsEnumerable.call(e,r[a])&&(n[r[a]]=e[r[a]]);return n}function R(e,t,n,r){var a=arguments.length,i=a<3?t:r===null?r=Object.getOwnPropertyDescriptor(t,n):r,s;if(typeof Reflect=="object"&&typeof Reflect.decorate=="function")i=Reflect.decorate(e,t,n,r);else for(var f=e.length-1;f>=0;f--)(s=e[f])&&(i=(a<3?s(i):a>3?s(t,n,i):s(t,n))||i);return a>3&&i&&Object.defineProperty(t,n,i),i}function E(e,t){return function(n,r){t(n,r,e)}}function O(e,t,n,r,a,i){function s(U){if(U!==void 0&&typeof U!="function")throw new TypeError("Function expected");return U}for(var f=r.kind,F=f==="getter"?"get":f==="setter"?"set":"value",C=!t&&e?r.static?e:e.prototype:null,w=t||(C?Object.getOwnPropertyDescriptor(C,r.name):{}),Z,I=!1,Y=n.length-1;Y>=0;Y--){var H={};for(var z in r)H[z]=z==="access"?{}:r[z];for(var z in r.access)H.access[z]=r.access[z];H.addInitializer=function(U){if(I)throw new TypeError("Cannot add initializers after decoration has completed");i.push(s(U||null))};var J=(0,n[Y])(f==="accessor"?{get:w.get,set:w.set}:w[F],H);if(f==="accessor"){if(J===void 0)continue;if(J===null||typeof J!="object")throw new TypeError("Object expected");(Z=s(J.get))&&(w.get=Z),(Z=s(J.set))&&(w.set=Z),(Z=s(J.init))&&a.push(Z)}else(Z=s(J))&&(f==="field"?a.push(Z):w[F]=Z)}C&&Object.defineProperty(C,r.name,w),I=!0}function _(e,t,n){for(var r=arguments.length>2,a=0;a<t.length;a++)n=r?t[a].call(e,n):t[a].call(e);return r?n:void 0}function N(e){return typeof e=="symbol"?e:"".concat(e)}function Q(e,t,n){return typeof t=="symbol"&&(t=t.description?"[".concat(t.description,"]"):""),Object.defineProperty(e,"name",{configurable:!0,value:n?"".concat(n," ",t):t})}function K(e,t){if(typeof Reflect=="object"&&typeof Reflect.metadata=="function")return Reflect.metadata(e,t)}function P(e,t,n,r){function a(i){return i instanceof n?i:new n(function(s){s(i)})}return new(n||(n=Promise))(function(i,s){function f(w){try{C(r.next(w))}catch(Z){s(Z)}}function F(w){try{C(r.throw(w))}catch(Z){s(Z)}}function C(w){w.done?i(w.value):a(w.value).then(f,F)}C((r=r.apply(e,t||[])).next())})}function B(e,t){var n={label:0,sent:function(){if(i[0]&1)throw i[1];return i[1]},trys:[],ops:[]},r,a,i,s;return s={next:f(0),throw:f(1),return:f(2)},typeof Symbol=="function"&&(s[Symbol.iterator]=function(){return this}),s;function f(C){return function(w){return F([C,w])}}function F(C){if(r)throw new TypeError("Generator is already executing.");for(;s&&(s=0,C[0]&&(n=0)),n;)try{if(r=1,a&&(i=C[0]&2?a.return:C[0]?a.throw||((i=a.return)&&i.call(a),0):a.next)&&!(i=i.call(a,C[1])).done)return i;switch(a=0,i&&(C=[C[0]&2,i.value]),C[0]){case 0:case 1:i=C;break;case 4:return n.label++,{value:C[1],done:!1};case 5:n.label++,a=C[1],C=[0];continue;case 7:C=n.ops.pop(),n.trys.pop();continue;default:if(i=n.trys,!(i=i.length>0&&i[i.length-1])&&(C[0]===6||C[0]===2)){n=0;continue}if(C[0]===3&&(!i||C[1]>i[0]&&C[1]<i[3])){n.label=C[1];break}if(C[0]===6&&n.label<i[1]){n.label=i[1],i=C;break}if(i&&n.label<i[2]){n.label=i[2],n.ops.push(C);break}i[2]&&n.ops.pop(),n.trys.pop();continue}C=t.call(e,n)}catch(w){C=[6,w],a=0}finally{r=i=0}if(C[0]&5)throw C[1];return{value:C[0]?C[1]:void 0,done:!0}}}var re=Object.create?function(e,t,n,r){r===void 0&&(r=n);var a=Object.getOwnPropertyDescriptor(t,n);(!a||("get"in a?!t.__esModule:a.writable||a.configurable))&&(a={enumerable:!0,get:function(){return t[n]}}),Object.defineProperty(e,r,a)}:function(e,t,n,r){r===void 0&&(r=n),e[r]=t[n]};function G(e,t){for(var n in e)n!=="default"&&!Object.prototype.hasOwnProperty.call(t,n)&&re(t,e,n)}function D(e){var t=typeof Symbol=="function"&&Symbol.iterator,n=t&&e[t],r=0;if(n)return n.call(e);if(e&&typeof e.length=="number")return{next:function(){return e&&r>=e.length&&(e=void 0),{value:e&&e[r++],done:!e}}};throw new TypeError(t?"Object is not iterable.":"Symbol.iterator is not defined.")}function g(e,t){var n=typeof Symbol=="function"&&e[Symbol.iterator];if(!n)return e;var r=n.call(e),a,i=[],s;try{for(;(t===void 0||t-- >0)&&!(a=r.next()).done;)i.push(a.value)}catch(f){s={error:f}}finally{try{a&&!a.done&&(n=r.return)&&n.call(r)}finally{if(s)throw s.error}}return i}function h(){for(var e=[],t=0;t<arguments.length;t++)e=e.concat(g(arguments[t]));return e}function o(){for(var e=0,t=0,n=arguments.length;t<n;t++)e+=arguments[t].length;for(var r=Array(e),a=0,t=0;t<n;t++)for(var i=arguments[t],s=0,f=i.length;s<f;s++,a++)r[a]=i[s];return r}function u(e,t,n){if(n||arguments.length===2)for(var r=0,a=t.length,i;r<a;r++)(i||!(r in t))&&(i||(i=Array.prototype.slice.call(t,0,r)),i[r]=t[r]);return e.concat(i||Array.prototype.slice.call(t))}function l(e){return this instanceof l?(this.v=e,this):new l(e)}function T(e,t,n){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var r=n.apply(e,t||[]),a,i=[];return a={},s("next"),s("throw"),s("return"),a[Symbol.asyncIterator]=function(){return this},a;function s(I){r[I]&&(a[I]=function(Y){return new Promise(function(H,z){i.push([I,Y,H,z])>1||f(I,Y)})})}function f(I,Y){try{F(r[I](Y))}catch(H){Z(i[0][3],H)}}function F(I){I.value instanceof l?Promise.resolve(I.value.v).then(C,w):Z(i[0][2],I)}function C(I){f("next",I)}function w(I){f("throw",I)}function Z(I,Y){I(Y),i.shift(),i.length&&f(i[0][0],i[0][1])}}function A(e){var t,n;return t={},r("next"),r("throw",function(a){throw a}),r("return"),t[Symbol.iterator]=function(){return this},t;function r(a,i){t[a]=e[a]?function(s){return(n=!n)?{value:l(e[a](s)),done:!1}:i?i(s):s}:i}}function k(e){if(!Symbol.asyncIterator)throw new TypeError("Symbol.asyncIterator is not defined.");var t=e[Symbol.asyncIterator],n;return t?t.call(e):(e=typeof D=="function"?D(e):e[Symbol.iterator](),n={},r("next"),r("throw"),r("return"),n[Symbol.asyncIterator]=function(){return this},n);function r(i){n[i]=e[i]&&function(s){return new Promise(function(f,F){s=e[i](s),a(f,F,s.done,s.value)})}}function a(i,s,f,F){Promise.resolve(F).then(function(C){i({value:C,done:f})},s)}}function ie(e,t){return Object.defineProperty?Object.defineProperty(e,"raw",{value:t}):e.raw=t,e}var ae=Object.create?function(e,t){Object.defineProperty(e,"default",{enumerable:!0,value:t})}:function(e,t){e.default=t};function oe(e){if(e&&e.__esModule)return e;var t={};if(e!=null)for(var n in e)n!=="default"&&Object.prototype.hasOwnProperty.call(e,n)&&re(t,e,n);return ae(t,e),t}function ue(e){return e&&e.__esModule?e:{default:e}}function Ce(e,t,n,r){if(n==="a"&&!r)throw new TypeError("Private accessor was defined without a getter");if(typeof t=="function"?e!==t||!r:!t.has(e))throw new TypeError("Cannot read private member from an object whose class did not declare it");return n==="m"?r:n==="a"?r.call(e):r?r.value:t.get(e)}function Fe(e,t,n,r,a){if(r==="m")throw new TypeError("Private method is not writable");if(r==="a"&&!a)throw new TypeError("Private accessor was defined without a setter");if(typeof t=="function"?e!==t||!a:!t.has(e))throw new TypeError("Cannot write private member to an object whose class did not declare it");return r==="a"?a.call(e,n):a?a.value=n:t.set(e,n),n}function pe(e,t){if(t===null||typeof t!="object"&&typeof t!="function")throw new TypeError("Cannot use 'in' operator on non-object");return typeof e=="function"?t===e:e.has(t)}var fe="3.4.1";function xe(e,t){return new Promise(function(n){return setTimeout(n,e,t)})}function Ge(e,t){t===void 0&&(t=1/0);var n=window.requestIdleCallback;return n?new Promise(function(r){return n.call(window,function(){return r()},{timeout:t})}):xe(Math.min(e,t))}function Le(e){return!!e&&typeof e.then=="function"}function Ze(e,t){try{var n=e();Le(n)?n.then(function(r){return t(!0,r)},function(r){return t(!1,r)}):t(!0,n)}catch(r){t(!1,r)}}function je(e,t,n){return n===void 0&&(n=16),P(this,void 0,void 0,function(){var r,a,i;return B(this,function(s){switch(s.label){case 0:r=Date.now(),a=0,s.label=1;case 1:return a<e.length?(t(e[a],a),i=Date.now(),i>=r+n?(r=i,[4,xe(0)]):[3,3]):[3,4];case 2:s.sent(),s.label=3;case 3:return++a,[3,1];case 4:return[2]}})})}function Te(e){e.then(void 0,function(){})}function ye(e,t){e=[e[0]>>>16,e[0]&65535,e[1]>>>16,e[1]&65535],t=[t[0]>>>16,t[0]&65535,t[1]>>>16,t[1]&65535];var n=[0,0,0,0];return n[3]+=e[3]+t[3],n[2]+=n[3]>>>16,n[3]&=65535,n[2]+=e[2]+t[2],n[1]+=n[2]>>>16,n[2]&=65535,n[1]+=e[1]+t[1],n[0]+=n[1]>>>16,n[1]&=65535,n[0]+=e[0]+t[0],n[0]&=65535,[n[0]<<16|n[1],n[2]<<16|n[3]]}function he(e,t){e=[e[0]>>>16,e[0]&65535,e[1]>>>16,e[1]&65535],t=[t[0]>>>16,t[0]&65535,t[1]>>>16,t[1]&65535];var n=[0,0,0,0];return n[3]+=e[3]*t[3],n[2]+=n[3]>>>16,n[3]&=65535,n[2]+=e[2]*t[3],n[1]+=n[2]>>>16,n[2]&=65535,n[2]+=e[3]*t[2],n[1]+=n[2]>>>16,n[2]&=65535,n[1]+=e[1]*t[3],n[0]+=n[1]>>>16,n[1]&=65535,n[1]+=e[2]*t[2],n[0]+=n[1]>>>16,n[1]&=65535,n[1]+=e[3]*t[1],n[0]+=n[1]>>>16,n[1]&=65535,n[0]+=e[0]*t[3]+e[1]*t[2]+e[2]*t[1]+e[3]*t[0],n[0]&=65535,[n[0]<<16|n[1],n[2]<<16|n[3]]}function Se(e,t){return t%=64,t===32?[e[1],e[0]]:t<32?[e[0]<<t|e[1]>>>32-t,e[1]<<t|e[0]>>>32-t]:(t-=32,[e[1]<<t|e[0]>>>32-t,e[0]<<t|e[1]>>>32-t])}function se(e,t){return t%=64,t===0?e:t<32?[e[0]<<t|e[1]>>>32-t,e[1]<<t]:[e[1]<<t-32,0]}function ee(e,t){return[e[0]^t[0],e[1]^t[1]]}function De(e){return e=ee(e,[0,e[0]>>>1]),e=he(e,[4283543511,3981806797]),e=ee(e,[0,e[0]>>>1]),e=he(e,[3301882366,444984403]),e=ee(e,[0,e[0]>>>1]),e}function Ie(e,t){e=e||"",t=t||0;var n=e.length%16,r=e.length-n,a=[0,t],i=[0,t],s=[0,0],f=[0,0],F=[2277735313,289559509],C=[1291169091,658871167],w;for(w=0;w<r;w=w+16)s=[e.charCodeAt(w+4)&255|(e.charCodeAt(w+5)&255)<<8|(e.charCodeAt(w+6)&255)<<16|(e.charCodeAt(w+7)&255)<<24,e.charCodeAt(w)&255|(e.charCodeAt(w+1)&255)<<8|(e.charCodeAt(w+2)&255)<<16|(e.charCodeAt(w+3)&255)<<24],f=[e.charCodeAt(w+12)&255|(e.charCodeAt(w+13)&255)<<8|(e.charCodeAt(w+14)&255)<<16|(e.charCodeAt(w+15)&255)<<24,e.charCodeAt(w+8)&255|(e.charCodeAt(w+9)&255)<<8|(e.charCodeAt(w+10)&255)<<16|(e.charCodeAt(w+11)&255)<<24],s=he(s,F),s=Se(s,31),s=he(s,C),a=ee(a,s),a=Se(a,27),a=ye(a,i),a=ye(he(a,[0,5]),[0,1390208809]),f=he(f,C),f=Se(f,33),f=he(f,F),i=ee(i,f),i=Se(i,31),i=ye(i,a),i=ye(he(i,[0,5]),[0,944331445]);switch(s=[0,0],f=[0,0],n){case 15:f=ee(f,se([0,e.charCodeAt(w+14)],48));case 14:f=ee(f,se([0,e.charCodeAt(w+13)],40));case 13:f=ee(f,se([0,e.charCodeAt(w+12)],32));case 12:f=ee(f,se([0,e.charCodeAt(w+11)],24));case 11:f=ee(f,se([0,e.charCodeAt(w+10)],16));case 10:f=ee(f,se([0,e.charCodeAt(w+9)],8));case 9:f=ee(f,[0,e.charCodeAt(w+8)]),f=he(f,C),f=Se(f,33),f=he(f,F),i=ee(i,f);case 8:s=ee(s,se([0,e.charCodeAt(w+7)],56));case 7:s=ee(s,se([0,e.charCodeAt(w+6)],48));case 6:s=ee(s,se([0,e.charCodeAt(w+5)],40));case 5:s=ee(s,se([0,e.charCodeAt(w+4)],32));case 4:s=ee(s,se([0,e.charCodeAt(w+3)],24));case 3:s=ee(s,se([0,e.charCodeAt(w+2)],16));case 2:s=ee(s,se([0,e.charCodeAt(w+1)],8));case 1:s=ee(s,[0,e.charCodeAt(w)]),s=he(s,F),s=Se(s,31),s=he(s,C),a=ee(a,s)}return a=ee(a,[0,e.length]),i=ee(i,[0,e.length]),a=ye(a,i),i=ye(i,a),a=De(a),i=De(i),a=ye(a,i),i=ye(i,a),("00000000"+(a[0]>>>0).toString(16)).slice(-8)+("00000000"+(a[1]>>>0).toString(16)).slice(-8)+("00000000"+(i[0]>>>0).toString(16)).slice(-8)+("00000000"+(i[1]>>>0).toString(16)).slice(-8)}function _e(e){var t;return x({name:e.name,message:e.message,stack:(t=e.stack)===null||t===void 0?void 0:t.split(`
2
- `)},e)}function Xe(e,t){for(var n=0,r=e.length;n<r;++n)if(e[n]===t)return!0;return!1}function m(e,t){return!Xe(e,t)}function M(e){return parseInt(e)}function p(e){return parseFloat(e)}function v(e,t){return typeof e=="number"&&isNaN(e)?t:e}function S(e){return e.reduce(function(t,n){return t+(n?1:0)},0)}function L(e,t){if(t===void 0&&(t=1),Math.abs(t)>=1)return Math.round(e/t)*t;var n=1/t;return Math.round(e*n)/n}function j(e){for(var t,n,r="Unexpected syntax '".concat(e,"'"),a=/^\s*([a-z-]*)(.*)$/i.exec(e),i=a[1]||void 0,s={},f=/([.:#][\w-]+|\[.+?\])/gi,F=function(I,Y){s[I]=s[I]||[],s[I].push(Y)};;){var C=f.exec(a[2]);if(!C)break;var w=C[0];switch(w[0]){case".":F("class",w.slice(1));break;case"#":F("id",w.slice(1));break;case"[":{var Z=/^\[([\w-]+)([~|^$*]?=("(.*?)"|([\w-]+)))?(\s+[is])?\]$/.exec(w);if(Z)F(Z[1],(n=(t=Z[4])!==null&&t!==void 0?t:Z[5])!==null&&n!==void 0?n:"");else throw new Error(r);break}default:throw new Error(r)}}return[i,s]}function X(e){return e&&typeof e=="object"&&"message"in e?e:{message:e}}function q(e){return typeof e!="function"}function me(e,t){var n=new Promise(function(r){var a=Date.now();Ze(e.bind(null,t),function(){for(var i=[],s=0;s<arguments.length;s++)i[s]=arguments[s];var f=Date.now()-a;if(!i[0])return r(function(){return{error:X(i[1]),duration:f}});var F=i[1];if(q(F))return r(function(){return{value:F,duration:f}});r(function(){return new Promise(function(C){var w=Date.now();Ze(F,function(){for(var Z=[],I=0;I<arguments.length;I++)Z[I]=arguments[I];var Y=f+Date.now()-w;if(!Z[0])return C({error:X(Z[1]),duration:Y});C({value:Z[1],duration:Y})})})})})});return Te(n),function(){return n.then(function(a){return a()})}}function te(e,t,n){var r=Object.keys(e).filter(function(i){return m(n,i)}),a=Array(r.length);return je(r,function(i,s){a[s]=me(e[i],t)}),function(){return P(this,void 0,void 0,function(){var s,f,F,C,w,Z,I;return B(this,function(Y){switch(Y.label){case 0:for(s={},f=0,F=r;f<F.length;f++)C=F[f],s[C]=void 0;w=Array(r.length),Z=function(){var H;return B(this,function(z){switch(z.label){case 0:return H=!0,[4,je(r,function(J,U){if(!w[U])if(a[U]){var be=a[U]().then(function(Re){return s[J]=Re});Te(be),w[U]=be}else H=!1})];case 1:return z.sent(),H?[2,"break"]:[4,xe(1)];case 2:return z.sent(),[2]}})},Y.label=1;case 1:return[5,Z()];case 2:if(I=Y.sent(),I==="break")return[3,4];Y.label=3;case 3:return[3,1];case 4:return[4,Promise.all(w)];case 5:return Y.sent(),[2,s]}})})}}function we(e,t){var n=function(r){return q(r)?t(r):function(){var a=r();return Le(a)?a.then(t):t(a)}};return function(r){var a=e(r);return Le(a)?a.then(n):n(a)}}function ge(){var e=window,t=navigator;return S(["MSCSSMatrix"in e,"msSetImmediate"in e,"msIndexedDB"in e,"msMaxTouchPoints"in t,"msPointerEnabled"in t])>=4}function Ve(){var e=window,t=navigator;return S(["msWriteProfilerMark"in e,"MSStream"in e,"msLaunchUri"in t,"msSaveBlob"in t])>=3&&!ge()}function Ae(){var e=window,t=navigator;return S(["webkitPersistentStorage"in t,"webkitTemporaryStorage"in t,t.vendor.indexOf("Google")===0,"webkitResolveLocalFileSystemURL"in e,"BatteryManager"in e,"webkitMediaStream"in e,"webkitSpeechGrammar"in e])>=5}function ce(){var e=window,t=navigator;return S(["ApplePayError"in e,"CSSPrimitiveValue"in e,"Counter"in e,t.vendor.indexOf("Apple")===0,"getStorageUpdates"in t,"WebKitMediaKeys"in e])>=4}function ve(){var e=window;return S(["safari"in e,!("DeviceMotionEvent"in e),!("ongestureend"in e),!("standalone"in navigator)])>=3}function le(){var e,t,n=window;return S(["buildID"in navigator,"MozAppearance"in((t=(e=document.documentElement)===null||e===void 0?void 0:e.style)!==null&&t!==void 0?t:{}),"onmozfullscreenchange"in n,"mozInnerScreenX"in n,"CSSMozDocumentRule"in n,"CanvasCaptureMediaStream"in n])>=4}function Oe(){var e=window;return S([!("MediaSettingsRange"in e),"RTCEncodedAudioFrame"in e,""+e.Intl=="[object Intl]",""+e.Reflect=="[object Reflect]"])>=3}function Me(){var e=window;return S(["DOMRectList"in e,"RTCPeerConnectionIceEvent"in e,"SVGGeometryElement"in e,"ontransitioncancel"in e])>=3}function ot(){if(navigator.platform==="iPad")return!0;var e=screen,t=e.width/e.height;return S(["MediaSource"in window,!!Element.prototype.webkitRequestFullscreen,t>.65&&t<1.53])>=2}function ut(){var e=document;return e.fullscreenElement||e.msFullscreenElement||e.mozFullScreenElement||e.webkitFullscreenElement||null}function st(){var e=document;return(e.exitFullscreen||e.msExitFullscreen||e.mozCancelFullScreen||e.webkitExitFullscreen).call(e)}function Je(){var e=Ae(),t=le();if(!e&&!t)return!1;var n=window;return S(["onorientationchange"in n,"orientation"in n,e&&!("SharedWorker"in n),t&&/android/i.test(navigator.appVersion)])>=2}function ct(){var e=window,t=e.OfflineAudioContext||e.webkitOfflineAudioContext;if(!t)return-2;if(ft())return-1;var n=4500,r=5e3,a=new t(1,r,44100),i=a.createOscillator();i.type="triangle",i.frequency.value=1e4;var s=a.createDynamicsCompressor();s.threshold.value=-50,s.knee.value=40,s.ratio.value=12,s.attack.value=0,s.release.value=.25,i.connect(s),s.connect(a.destination),i.start(0);var f=lt(a),F=f[0],C=f[1],w=F.then(function(Z){return dt(Z.getChannelData(0).subarray(n))},function(Z){if(Z.name==="timeout"||Z.name==="suspended")return-3;throw Z});return Te(w),function(){return C(),w}}function ft(){return ce()&&!ve()&&!Me()}function lt(e){var t=3,n=500,r=500,a=5e3,i=function(){},s=new Promise(function(f,F){var C=!1,w=0,Z=0;e.oncomplete=function(H){return f(H.renderedBuffer)};var I=function(){setTimeout(function(){return F(Ue("timeout"))},Math.min(r,Z+a-Date.now()))},Y=function(){try{var H=e.startRendering();switch(Le(H)&&Te(H),e.state){case"running":Z=Date.now(),C&&I();break;case"suspended":document.hidden||w++,C&&w>=t?F(Ue("suspended")):setTimeout(Y,n);break}}catch(z){F(z)}};Y(),i=function(){C||(C=!0,Z>0&&I())}});return[s,i]}function dt(e){for(var t=0,n=0;n<e.length;++n)t+=Math.abs(e[n]);return t}function Ue(e){var t=new Error(e);return t.name=e,t}function Ke(e,t,n){var r,a,i;return n===void 0&&(n=50),P(this,void 0,void 0,function(){var s,f;return B(this,function(F){switch(F.label){case 0:s=document,F.label=1;case 1:return s.body?[3,3]:[4,xe(n)];case 2:return F.sent(),[3,1];case 3:f=s.createElement("iframe"),F.label=4;case 4:return F.trys.push([4,,10,11]),[4,new Promise(function(C,w){var Z=!1,I=function(){Z=!0,C()},Y=function(J){Z=!0,w(J)};f.onload=I,f.onerror=Y;var H=f.style;H.setProperty("display","block","important"),H.position="absolute",H.top="0",H.left="0",H.visibility="hidden",t&&"srcdoc"in f?f.srcdoc=t:f.src="about:blank",s.body.appendChild(f);var z=function(){var J,U;Z||(((U=(J=f.contentWindow)===null||J===void 0?void 0:J.document)===null||U===void 0?void 0:U.readyState)==="complete"?I():setTimeout(z,10))};z()})];case 5:F.sent(),F.label=6;case 6:return!((a=(r=f.contentWindow)===null||r===void 0?void 0:r.document)===null||a===void 0)&&a.body?[3,8]:[4,xe(n)];case 7:return F.sent(),[3,6];case 8:return[4,e(f,f.contentWindow)];case 9:return[2,F.sent()];case 10:return(i=f.parentNode)===null||i===void 0||i.removeChild(f),[7];case 11:return[2]}})})}function ht(e){for(var t=j(e),n=t[0],r=t[1],a=document.createElement(n??"div"),i=0,s=Object.keys(r);i<s.length;i++){var f=s[i],F=r[f].join(" ");f==="style"?mt(a.style,F):a.setAttribute(f,F)}return a}function mt(e,t){for(var n=0,r=t.split(";");n<r.length;n++){var a=r[n],i=/^\s*([\w-]+)\s*:\s*(.+?)(\s*!([\w-]+))?\s*$/.exec(a);if(i){var s=i[1],f=i[2],F=i[4];e.setProperty(s,f,F||"")}}}var vt="mmMwWLliI0O&1",pt="48px",Ee=["monospace","sans-serif","serif"],$e=["sans-serif-thin","ARNO PRO","Agency FB","Arabic Typesetting","Arial Unicode MS","AvantGarde Bk BT","BankGothic Md BT","Batang","Bitstream Vera Sans Mono","Calibri","Century","Century Gothic","Clarendon","EUROSTILE","Franklin Gothic","Futura Bk BT","Futura Md BT","GOTHAM","Gill Sans","HELV","Haettenschweiler","Helvetica Neue","Humanst521 BT","Leelawadee","Letter Gothic","Levenim MT","Lucida Bright","Lucida Sans","Menlo","MS Mincho","MS Outlook","MS Reference Specialty","MS UI Gothic","MT Extra","MYRIAD PRO","Marlett","Meiryo UI","Microsoft Uighur","Minion Pro","Monotype Corsiva","PMingLiU","Pristina","SCRIPTINA","Segoe UI Light","Serifa","SimHei","Small Fonts","Staccato222 BT","TRAJAN PRO","Univers CE 55 Medium","Vrinda","ZWAdobeF"];function yt(){return Ke(function(e,t){var n=t.document,r=n.body;r.style.fontSize=pt;var a=n.createElement("div"),i={},s={},f=function(z){var J=n.createElement("span"),U=J.style;return U.position="absolute",U.top="0",U.left="0",U.fontFamily=z,J.textContent=vt,a.appendChild(J),J},F=function(z,J){return f("'".concat(z,"',").concat(J))},C=function(){return Ee.map(f)},w=function(){for(var z={},J=function(ke){z[ke]=Ee.map(function(ze){return F(ke,ze)})},U=0,be=$e;U<be.length;U++){var Re=be[U];J(Re)}return z},Z=function(z){return Ee.some(function(J,U){return z[U].offsetWidth!==i[J]||z[U].offsetHeight!==s[J]})},I=C(),Y=w();r.appendChild(a);for(var H=0;H<Ee.length;H++)i[Ee[H]]=I[H].offsetWidth,s[Ee[H]]=I[H].offsetHeight;return $e.filter(function(z){return Z(Y[z])})})}function gt(){var e=navigator.plugins;if(e){for(var t=[],n=0;n<e.length;++n){var r=e[n];if(r){for(var a=[],i=0;i<r.length;++i){var s=r[i];a.push({type:s.type,suffixes:s.suffixes})}t.push({name:r.name,description:r.description,mimeTypes:a})}}return t}}function bt(){var e=!1,t,n,r=wt(),a=r[0],i=r[1];if(!xt(a,i))t=n="";else{e=St(i),Ct(a,i);var s=Be(a),f=Be(a);s!==f?t=n="unstable":(n=s,Ft(a,i),t=Be(a))}return{winding:e,geometry:t,text:n}}function wt(){var e=document.createElement("canvas");return e.width=1,e.height=1,[e,e.getContext("2d")]}function xt(e,t){return!!(t&&e.toDataURL)}function St(e){return e.rect(0,0,10,10),e.rect(2,2,6,6),!e.isPointInPath(5,5,"evenodd")}function Ct(e,t){e.width=240,e.height=60,t.textBaseline="alphabetic",t.fillStyle="#f60",t.fillRect(100,1,62,20),t.fillStyle="#069",t.font='11pt "Times New Roman"';var n="Cwm fjordbank gly ".concat(String.fromCharCode(55357,56835));t.fillText(n,2,15),t.fillStyle="rgba(102, 204, 0, 0.2)",t.font="18pt Arial",t.fillText(n,4,45)}function Ft(e,t){e.width=122,e.height=110,t.globalCompositeOperation="multiply";for(var n=0,r=[["#f2f",40,40],["#2ff",80,40],["#ff2",60,80]];n<r.length;n++){var a=r[n],i=a[0],s=a[1],f=a[2];t.fillStyle=i,t.beginPath(),t.arc(s,f,40,0,Math.PI*2,!0),t.closePath(),t.fill()}t.fillStyle="#f9c",t.arc(60,60,60,0,Math.PI*2,!0),t.arc(60,60,20,0,Math.PI*2,!0),t.fill("evenodd")}function Be(e){return e.toDataURL()}function Lt(){var e=navigator,t=0,n;e.maxTouchPoints!==void 0?t=M(e.maxTouchPoints):e.msMaxTouchPoints!==void 0&&(t=e.msMaxTouchPoints);try{document.createEvent("TouchEvent"),n=!0}catch{n=!1}var r="ontouchstart"in window;return{maxTouchPoints:t,touchEvent:n,touchStart:r}}function Ot(){return navigator.oscpu}function Mt(){var e=navigator,t=[],n=e.language||e.userLanguage||e.browserLanguage||e.systemLanguage;if(n!==void 0&&t.push([n]),Array.isArray(e.languages))Ae()&&Oe()||t.push(e.languages);else if(typeof e.languages=="string"){var r=e.languages;r&&t.push(r.split(","))}return t}function Tt(){return window.screen.colorDepth}function At(){return v(p(navigator.deviceMemory),void 0)}function Et(){var e=screen,t=function(r){return v(M(r),null)},n=[t(e.width),t(e.height)];return n.sort().reverse(),n}var Pt=2500,Dt=10,We,Ne;function Rt(){if(Ne===void 0){var e=function(){var t=Ye();Qe(t)?Ne=setTimeout(e,Pt):(We=t,Ne=void 0)};e()}}function Zt(){var e=this;return Rt(),function(){return P(e,void 0,void 0,function(){var t;return B(this,function(n){switch(n.label){case 0:return t=Ye(),Qe(t)?We?[2,u([],We,!0)]:ut()?[4,st()]:[3,2]:[3,2];case 1:n.sent(),t=Ye(),n.label=2;case 2:return Qe(t)||(We=t),[2,t]}})})}}function jt(){var e=this,t=Zt();return function(){return P(e,void 0,void 0,function(){var n,r;return B(this,function(a){switch(a.label){case 0:return[4,t()];case 1:return n=a.sent(),r=function(i){return i===null?null:L(i,Dt)},[2,[r(n[0]),r(n[1]),r(n[2]),r(n[3])]]}})})}}function Ye(){var e=screen;return[v(p(e.availTop),null),v(p(e.width)-p(e.availWidth)-v(p(e.availLeft),0),null),v(p(e.height)-p(e.availHeight)-v(p(e.availTop),0),null),v(p(e.availLeft),null)]}function Qe(e){for(var t=0;t<4;++t)if(e[t])return!1;return!0}function It(){return v(M(navigator.hardwareConcurrency),void 0)}function Vt(){var e,t=(e=window.Intl)===null||e===void 0?void 0:e.DateTimeFormat;if(t){var n=new t().resolvedOptions().timeZone;if(n)return n}var r=-Wt();return"UTC".concat(r>=0?"+":"").concat(Math.abs(r))}function Wt(){var e=new Date().getFullYear();return Math.max(p(new Date(e,0,1).getTimezoneOffset()),p(new Date(e,6,1).getTimezoneOffset()))}function kt(){try{return!!window.sessionStorage}catch{return!0}}function Gt(){try{return!!window.localStorage}catch{return!0}}function _t(){if(!(ge()||Ve()))try{return!!window.indexedDB}catch{return!0}}function Xt(){return!!window.openDatabase}function Bt(){return navigator.cpuClass}function Nt(){var e=navigator.platform;return e==="MacIntel"&&ce()&&!ve()?ot()?"iPad":"iPhone":e}function Yt(){return navigator.vendor||""}function Qt(){for(var e=[],t=0,n=["chrome","safari","__crWeb","__gCrWeb","yandex","__yb","__ybro","__firefox__","__edgeTrackingPreventionStatistics","webkit","oprt","samsungAr","ucweb","UCShellJava","puffinDevice"];t<n.length;t++){var r=n[t],a=window[r];a&&typeof a=="object"&&e.push(r)}return e.sort()}function Ht(){var e=document;try{e.cookie="cookietest=1; SameSite=Strict;";var t=e.cookie.indexOf("cookietest=")!==-1;return e.cookie="cookietest=1; SameSite=Strict; expires=Thu, 01-Jan-1970 00:00:01 GMT",t}catch{return!1}}function zt(){var e=atob;return{abpIndo:["#Iklan-Melayang","#Kolom-Iklan-728","#SidebarIklan-wrapper",e("YVt0aXRsZT0iN25hZ2EgcG9rZXIiIGld"),'[title="ALIENBOLA" i]'],abpvn:["#quangcaomb",e("Lmlvc0Fkc2lvc0Fkcy1sYXlvdXQ="),".quangcao",e("W2hyZWZePSJodHRwczovL3I4OC52bi8iXQ=="),e("W2hyZWZePSJodHRwczovL3piZXQudm4vIl0=")],adBlockFinland:[".mainostila",e("LnNwb25zb3JpdA=="),".ylamainos",e("YVtocmVmKj0iL2NsaWNrdGhyZ2guYXNwPyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9hcHAucmVhZHBlYWsuY29tL2FkcyJd")],adBlockPersian:["#navbar_notice_50",".kadr",'TABLE[width="140px"]',"#divAgahi",e("I2FkMl9pbmxpbmU=")],adBlockWarningRemoval:["#adblock-honeypot",".adblocker-root",".wp_adblock_detect",e("LmhlYWRlci1ibG9ja2VkLWFk"),e("I2FkX2Jsb2NrZXI=")],adGuardAnnoyances:['amp-embed[type="zen"]',".hs-sosyal","#cookieconsentdiv",'div[class^="app_gdpr"]',".as-oil"],adGuardBase:[".BetterJsPopOverlay",e("I2FkXzMwMFgyNTA="),e("I2Jhbm5lcmZsb2F0MjI="),e("I2FkLWJhbm5lcg=="),e("I2NhbXBhaWduLWJhbm5lcg==")],adGuardChinese:[e("LlppX2FkX2FfSA=="),e("YVtocmVmKj0iL29kMDA1LmNvbSJd"),e("YVtocmVmKj0iLmh0aGJldDM0LmNvbSJd"),".qq_nr_lad","#widget-quan"],adGuardFrench:[e("I2Jsb2NrLXZpZXdzLWFkcy1zaWRlYmFyLWJsb2NrLWJsb2Nr"),"#pavePub",e("LmFkLWRlc2t0b3AtcmVjdGFuZ2xl"),".mobile_adhesion",".widgetadv"],adGuardGerman:[e("LmJhbm5lcml0ZW13ZXJidW5nX2hlYWRfMQ=="),e("LmJveHN0YXJ0d2VyYnVuZw=="),e("LndlcmJ1bmcz"),e("YVtocmVmXj0iaHR0cDovL3d3dy5laXMuZGUvaW5kZXgucGh0bWw/cmVmaWQ9Il0="),e("YVtocmVmXj0iaHR0cHM6Ly93d3cudGlwaWNvLmNvbS8/YWZmaWxpYXRlSWQ9Il0=")],adGuardJapanese:["#kauli_yad_1",e("YVtocmVmXj0iaHR0cDovL2FkMi50cmFmZmljZ2F0ZS5uZXQvIl0="),e("Ll9wb3BJbl9pbmZpbml0ZV9hZA=="),e("LmFkZ29vZ2xl"),e("LmFkX3JlZ3VsYXIz")],adGuardMobile:[e("YW1wLWF1dG8tYWRz"),e("LmFtcF9hZA=="),'amp-embed[type="24smi"]',"#mgid_iframe1",e("I2FkX2ludmlld19hcmVh")],adGuardRussian:[e("YVtocmVmXj0iaHR0cHM6Ly9hZC5sZXRtZWFkcy5jb20vIl0="),e("LnJlY2xhbWE="),'div[id^="smi2adblock"]',e("ZGl2W2lkXj0iQWRGb3hfYmFubmVyXyJd"),e("I2FkX3NxdWFyZQ==")],adGuardSocial:[e("YVtocmVmXj0iLy93d3cuc3R1bWJsZXVwb24uY29tL3N1Ym1pdD91cmw9Il0="),e("YVtocmVmXj0iLy90ZWxlZ3JhbS5tZS9zaGFyZS91cmw/Il0="),".etsy-tweet","#inlineShare",".popup-social"],adGuardSpanishPortuguese:["#barraPublicidade","#Publicidade","#publiEspecial","#queTooltip",e("W2hyZWZePSJodHRwOi8vYWRzLmdsaXNwYS5jb20vIl0=")],adGuardTrackingProtection:["#qoo-counter",e("YVtocmVmXj0iaHR0cDovL2NsaWNrLmhvdGxvZy5ydS8iXQ=="),e("YVtocmVmXj0iaHR0cDovL2hpdGNvdW50ZXIucnUvdG9wL3N0YXQucGhwIl0="),e("YVtocmVmXj0iaHR0cDovL3RvcC5tYWlsLnJ1L2p1bXAiXQ=="),"#top100counter"],adGuardTurkish:["#backkapat",e("I3Jla2xhbWk="),e("YVtocmVmXj0iaHR0cDovL2Fkc2Vydi5vbnRlay5jb20udHIvIl0="),e("YVtocmVmXj0iaHR0cDovL2l6bGVuemkuY29tL2NhbXBhaWduLyJd"),e("YVtocmVmXj0iaHR0cDovL3d3dy5pbnN0YWxsYWRzLm5ldC8iXQ==")],bulgarian:[e("dGQjZnJlZW5ldF90YWJsZV9hZHM="),"#ea_intext_div",".lapni-pop-over","#xenium_hot_offers",e("I25ld0Fk")],easyList:[e("I0FEX0NPTlRST0xfMjg="),e("LnNlY29uZC1wb3N0LWFkcy13cmFwcGVy"),".universalboxADVBOX03",e("LmFkdmVydGlzZW1lbnQtNzI4eDkw"),e("LnNxdWFyZV9hZHM=")],easyListChina:[e("YVtocmVmKj0iLndlbnNpeHVldGFuZy5jb20vIl0="),e("LmFwcGd1aWRlLXdyYXBbb25jbGljayo9ImJjZWJvcy5jb20iXQ=="),e("LmZyb250cGFnZUFkdk0="),"#taotaole","#aafoot.top_box"],easyListCookie:["#AdaCompliance.app-notice",".text-center.rgpd",".panel--cookie",".js-cookies-andromeda",".elxtr-consent"],easyListCzechSlovak:["#onlajny-stickers",e("I3Jla2xhbW5pLWJveA=="),e("LnJla2xhbWEtbWVnYWJvYXJk"),".sklik",e("W2lkXj0ic2tsaWtSZWtsYW1hIl0=")],easyListDutch:[e("I2FkdmVydGVudGll"),e("I3ZpcEFkbWFya3RCYW5uZXJCbG9jaw=="),".adstekst",e("YVtocmVmXj0iaHR0cHM6Ly94bHR1YmUubmwvY2xpY2svIl0="),"#semilo-lrectangle"],easyListGermany:[e("I0FkX1dpbjJkYXk="),e("I3dlcmJ1bmdzYm94MzAw"),e("YVtocmVmXj0iaHR0cDovL3d3dy5yb3RsaWNodGthcnRlaS5jb20vP3NjPSJd"),e("I3dlcmJ1bmdfd2lkZXNreXNjcmFwZXJfc2NyZWVu"),e("YVtocmVmXj0iaHR0cDovL2xhbmRpbmcucGFya3BsYXR6a2FydGVpLmNvbS8/YWc9Il0=")],easyListItaly:[e("LmJveF9hZHZfYW5udW5jaQ=="),".sb-box-pubbliredazionale",e("YVtocmVmXj0iaHR0cDovL2FmZmlsaWF6aW9uaWFkcy5zbmFpLml0LyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9hZHNlcnZlci5odG1sLml0LyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9hZmZpbGlhemlvbmlhZHMuc25haS5pdC8iXQ==")],easyListLithuania:[e("LnJla2xhbW9zX3RhcnBhcw=="),e("LnJla2xhbW9zX251b3JvZG9z"),e("aW1nW2FsdD0iUmVrbGFtaW5pcyBza3lkZWxpcyJd"),e("aW1nW2FsdD0iRGVkaWt1b3RpLmx0IHNlcnZlcmlhaSJd"),e("aW1nW2FsdD0iSG9zdGluZ2FzIFNlcnZlcmlhaS5sdCJd")],estonian:[e("QVtocmVmKj0iaHR0cDovL3BheTRyZXN1bHRzMjQuZXUiXQ==")],fanboyAnnoyances:["#feedback-tab","#taboola-below-article",".feedburnerFeedBlock",".widget-feedburner-counter",'[title="Subscribe to our blog"]'],fanboyAntiFacebook:[".util-bar-module-firefly-visible"],fanboyEnhancedTrackers:[".open.pushModal","#issuem-leaky-paywall-articles-zero-remaining-nag","#sovrn_container",'div[class$="-hide"][zoompage-fontsize][style="display: block;"]',".BlockNag__Card"],fanboySocial:[".td-tags-and-social-wrapper-box",".twitterContainer",".youtube-social",'a[title^="Like us on Facebook"]','img[alt^="Share on Digg"]'],frellwitSwedish:[e("YVtocmVmKj0iY2FzaW5vcHJvLnNlIl1bdGFyZ2V0PSJfYmxhbmsiXQ=="),e("YVtocmVmKj0iZG9rdG9yLXNlLm9uZWxpbmsubWUiXQ=="),"article.category-samarbete",e("ZGl2LmhvbGlkQWRz"),"ul.adsmodern"],greekAdBlock:[e("QVtocmVmKj0iYWRtYW4ub3RlbmV0LmdyL2NsaWNrPyJd"),e("QVtocmVmKj0iaHR0cDovL2F4aWFiYW5uZXJzLmV4b2R1cy5nci8iXQ=="),e("QVtocmVmKj0iaHR0cDovL2ludGVyYWN0aXZlLmZvcnRobmV0LmdyL2NsaWNrPyJd"),"DIV.agores300","TABLE.advright"],hungarian:["#cemp_doboz",".optimonk-iframe-container",e("LmFkX19tYWlu"),e("W2NsYXNzKj0iR29vZ2xlQWRzIl0="),"#hirdetesek_box"],iDontCareAboutCookies:['.alert-info[data-block-track*="CookieNotice"]',".ModuleTemplateCookieIndicator",".o--cookies--container",".cookie-msg-info-container","#cookies-policy-sticky"],icelandicAbp:[e("QVtocmVmXj0iL2ZyYW1ld29yay9yZXNvdXJjZXMvZm9ybXMvYWRzLmFzcHgiXQ==")],latvian:[e("YVtocmVmPSJodHRwOi8vd3d3LnNhbGlkemluaS5sdi8iXVtzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdpZHRoOiAxMjBweDsgaGVpZ2h0OiA0MHB4OyBvdmVyZmxvdzogaGlkZGVuOyBwb3NpdGlvbjogcmVsYXRpdmU7Il0="),e("YVtocmVmPSJodHRwOi8vd3d3LnNhbGlkemluaS5sdi8iXVtzdHlsZT0iZGlzcGxheTogYmxvY2s7IHdpZHRoOiA4OHB4OyBoZWlnaHQ6IDMxcHg7IG92ZXJmbG93OiBoaWRkZW47IHBvc2l0aW9uOiByZWxhdGl2ZTsiXQ==")],listKr:[e("YVtocmVmKj0iLy9hZC5wbGFuYnBsdXMuY28ua3IvIl0="),e("I2xpdmVyZUFkV3JhcHBlcg=="),e("YVtocmVmKj0iLy9hZHYuaW1hZHJlcC5jby5rci8iXQ=="),e("aW5zLmZhc3R2aWV3LWFk"),".revenue_unit_item.dable"],listeAr:[e("LmdlbWluaUxCMUFk"),".right-and-left-sponsers",e("YVtocmVmKj0iLmFmbGFtLmluZm8iXQ=="),e("YVtocmVmKj0iYm9vcmFxLm9yZyJd"),e("YVtocmVmKj0iZHViaXp6bGUuY29tL2FyLz91dG1fc291cmNlPSJd")],listeFr:[e("YVtocmVmXj0iaHR0cDovL3Byb21vLnZhZG9yLmNvbS8iXQ=="),e("I2FkY29udGFpbmVyX3JlY2hlcmNoZQ=="),e("YVtocmVmKj0id2Vib3JhbWEuZnIvZmNnaS1iaW4vIl0="),".site-pub-interstitiel",'div[id^="crt-"][data-criteo-id]'],officialPolish:["#ceneo-placeholder-ceneo-12",e("W2hyZWZePSJodHRwczovL2FmZi5zZW5kaHViLnBsLyJd"),e("YVtocmVmXj0iaHR0cDovL2Fkdm1hbmFnZXIudGVjaGZ1bi5wbC9yZWRpcmVjdC8iXQ=="),e("YVtocmVmXj0iaHR0cDovL3d3dy50cml6ZXIucGwvP3V0bV9zb3VyY2UiXQ=="),e("ZGl2I3NrYXBpZWNfYWQ=")],ro:[e("YVtocmVmXj0iLy9hZmZ0cmsuYWx0ZXgucm8vQ291bnRlci9DbGljayJd"),'a[href^="/magazin/"]',e("YVtocmVmXj0iaHR0cHM6Ly9ibGFja2ZyaWRheXNhbGVzLnJvL3Ryay9zaG9wLyJd"),e("YVtocmVmXj0iaHR0cHM6Ly9ldmVudC4ycGVyZm9ybWFudC5jb20vZXZlbnRzL2NsaWNrIl0="),e("YVtocmVmXj0iaHR0cHM6Ly9sLnByb2ZpdHNoYXJlLnJvLyJd")],ruAd:[e("YVtocmVmKj0iLy9mZWJyYXJlLnJ1LyJd"),e("YVtocmVmKj0iLy91dGltZy5ydS8iXQ=="),e("YVtocmVmKj0iOi8vY2hpa2lkaWtpLnJ1Il0="),"#pgeldiz",".yandex-rtb-block"],thaiAds:["a[href*=macau-uta-popup]",e("I2Fkcy1nb29nbGUtbWlkZGxlX3JlY3RhbmdsZS1ncm91cA=="),e("LmFkczMwMHM="),".bumq",".img-kosana"],webAnnoyancesUltralist:["#mod-social-share-2","#social-tools",e("LmN0cGwtZnVsbGJhbm5lcg=="),".zergnet-recommend",".yt.btn-link.btn-md.btn"]}}function Jt(e){var t=e===void 0?{}:e,n=t.debug;return P(this,void 0,void 0,function(){var r,a,i,s,f,F;return B(this,function(C){switch(C.label){case 0:return Ut()?(r=zt(),a=Object.keys(r),i=(F=[]).concat.apply(F,a.map(function(w){return r[w]})),[4,Kt(i)]):[2,void 0];case 1:return s=C.sent(),n&&$t(r,s),f=a.filter(function(w){var Z=r[w],I=S(Z.map(function(Y){return s[Y]}));return I>Z.length*.6}),f.sort(),[2,f]}})})}function Ut(){return ce()||Je()}function Kt(e){var t;return P(this,void 0,void 0,function(){var n,r,a,i,F,s,f,F;return B(this,function(C){switch(C.label){case 0:for(n=document,r=n.createElement("div"),a=new Array(e.length),i={},qe(r),F=0;F<e.length;++F)s=ht(e[F]),f=n.createElement("div"),qe(f),f.appendChild(s),r.appendChild(f),a[F]=s;C.label=1;case 1:return n.body?[3,3]:[4,xe(50)];case 2:return C.sent(),[3,1];case 3:n.body.appendChild(r);try{for(F=0;F<e.length;++F)a[F].offsetParent||(i[e[F]]=!0)}finally{(t=r.parentNode)===null||t===void 0||t.removeChild(r)}return[2,i]}})})}function qe(e){e.style.setProperty("display","block","important")}function $t(e,t){for(var n="DOM blockers debug:\n```",r=0,a=Object.keys(e);r<a.length;r++){var i=a[r];n+=`
3
- `.concat(i,":");for(var s=0,f=e[i];s<f.length;s++){var F=f[s];n+=`
4
- `.concat(t[F]?"\u{1F6AB}":"\u27A1\uFE0F"," ").concat(F)}}console.log("".concat(n,"\n```"))}function qt(){for(var e=0,t=["rec2020","p3","srgb"];e<t.length;e++){var n=t[e];if(matchMedia("(color-gamut: ".concat(n,")")).matches)return n}}function en(){if(et("inverted"))return!0;if(et("none"))return!1}function et(e){return matchMedia("(inverted-colors: ".concat(e,")")).matches}function tn(){if(tt("active"))return!0;if(tt("none"))return!1}function tt(e){return matchMedia("(forced-colors: ".concat(e,")")).matches}var nn=100;function rn(){if(matchMedia("(min-monochrome: 0)").matches){for(var e=0;e<=nn;++e)if(matchMedia("(max-monochrome: ".concat(e,")")).matches)return e;throw new Error("Too high value")}}function an(){if(Pe("no-preference"))return 0;if(Pe("high")||Pe("more"))return 1;if(Pe("low")||Pe("less"))return-1;if(Pe("forced"))return 10}function Pe(e){return matchMedia("(prefers-contrast: ".concat(e,")")).matches}function on(){if(nt("reduce"))return!0;if(nt("no-preference"))return!1}function nt(e){return matchMedia("(prefers-reduced-motion: ".concat(e,")")).matches}function un(){if(rt("high"))return!0;if(rt("standard"))return!1}function rt(e){return matchMedia("(dynamic-range: ".concat(e,")")).matches}var $=Math,de=function(){return 0};function sn(){var e=$.acos||de,t=$.acosh||de,n=$.asin||de,r=$.asinh||de,a=$.atanh||de,i=$.atan||de,s=$.sin||de,f=$.sinh||de,F=$.cos||de,C=$.cosh||de,w=$.tan||de,Z=$.tanh||de,I=$.exp||de,Y=$.expm1||de,H=$.log1p||de,z=function(ne){return $.pow($.PI,ne)},J=function(ne){return $.log(ne+$.sqrt(ne*ne-1))},U=function(ne){return $.log(ne+$.sqrt(ne*ne+1))},be=function(ne){return $.log((1+ne)/(1-ne))/2},Re=function(ne){return $.exp(ne)-1/$.exp(ne)/2},ke=function(ne){return($.exp(ne)+1/$.exp(ne))/2},ze=function(ne){return $.exp(ne)-1},Tn=function(ne){return($.exp(2*ne)-1)/($.exp(2*ne)+1)},An=function(ne){return $.log(1+ne)};return{acos:e(.12312423423423424),acosh:t(1e308),acoshPf:J(1e154),asin:n(.12312423423423424),asinh:r(1),asinhPf:U(1),atanh:a(.5),atanhPf:be(.5),atan:i(.5),sin:s(-1e300),sinh:f(1),sinhPf:Re(1),cos:F(10.000000000123),cosh:C(1),coshPf:ke(1),tan:w(-1e300),tanh:Z(1),tanhPf:Tn(1),exp:I(1),expm1:Y(1),expm1Pf:ze(1),log1p:H(10),log1pPf:An(10),powPI:z(-100)}}var cn="mmMwWLliI0fiflO&1",He={default:[],apple:[{font:"-apple-system-body"}],serif:[{fontFamily:"serif"}],sans:[{fontFamily:"sans-serif"}],mono:[{fontFamily:"monospace"}],min:[{fontSize:"1px"}],system:[{fontFamily:"system-ui"}]};function fn(){return ln(function(e,t){for(var n={},r={},a=0,i=Object.keys(He);a<i.length;a++){var s=i[a],f=He[s],F=f[0],C=F===void 0?{}:F,w=f[1],Z=w===void 0?cn:w,I=e.createElement("span");I.textContent=Z,I.style.whiteSpace="nowrap";for(var Y=0,H=Object.keys(C);Y<H.length;Y++){var z=H[Y],J=C[z];J!==void 0&&(I.style[z]=J)}n[s]=I,t.appendChild(e.createElement("br")),t.appendChild(I)}for(var U=0,be=Object.keys(He);U<be.length;U++){var s=be[U];r[s]=n[s].getBoundingClientRect().width}return r})}function ln(e,t){return t===void 0&&(t=4e3),Ke(function(n,r){var a=r.document,i=a.body,s=i.style;s.width="".concat(t,"px"),s.webkitTextSizeAdjust=s.textSizeAdjust="none",Ae()?i.style.zoom="".concat(1/r.devicePixelRatio):ce()&&(i.style.zoom="reset");var f=a.createElement("div");return f.textContent=u([],Array(t/20<<0),!0).map(function(){return"word"}).join(" "),i.appendChild(f),e(a,i)},'<!doctype html><html><head><meta name="viewport" content="width=device-width, initial-scale=1">')}function dn(){var e,t=document.createElement("canvas"),n=(e=t.getContext("webgl"))!==null&&e!==void 0?e:t.getContext("experimental-webgl");if(n&&"getExtension"in n){var r=n.getExtension("WEBGL_debug_renderer_info");if(r)return{vendor:(n.getParameter(r.UNMASKED_VENDOR_WEBGL)||"").toString(),renderer:(n.getParameter(r.UNMASKED_RENDERER_WEBGL)||"").toString()}}}function hn(){return navigator.pdfViewerEnabled}function mn(){var e=new Float32Array(1),t=new Uint8Array(e.buffer);return e[0]=1/0,e[0]=e[0]-e[0],t[3]}var vn={fonts:yt,domBlockers:Jt,fontPreferences:fn,audio:ct,screenFrame:jt,osCpu:Ot,languages:Mt,colorDepth:Tt,deviceMemory:At,screenResolution:Et,hardwareConcurrency:It,timezone:Vt,sessionStorage:kt,localStorage:Gt,indexedDB:_t,openDatabase:Xt,cpuClass:Bt,platform:Nt,plugins:gt,canvas:bt,touchSupport:Lt,vendor:Yt,vendorFlavors:Qt,cookiesEnabled:Ht,colorGamut:qt,invertedColors:en,forcedColors:tn,monochrome:rn,contrast:an,reducedMotion:on,hdr:un,math:sn,videoCard:dn,pdfViewerEnabled:hn,architecture:mn};function pn(e){return te(vn,e,[])}var yn="$ if upgrade to Pro: https://fpjs.dev/pro";function gn(e){var t=bn(e),n=wn(t);return{score:t,comment:yn.replace(/\$/g,"".concat(n))}}function bn(e){if(Je())return .4;if(ce())return ve()?.5:.3;var t=e.platform.value||"";return/^Win/.test(t)?.6:/^Mac/.test(t)?.5:.7}function wn(e){return L(.99+.01*e,1e-4)}function xn(e){for(var t="",n=0,r=Object.keys(e).sort();n<r.length;n++){var a=r[n],i=e[a],s=i.error?"error":JSON.stringify(i.value);t+="".concat(t?"|":"").concat(a.replace(/([:|\\])/g,"\\$1"),":").concat(s)}return t}function at(e){return JSON.stringify(e,function(t,n){return n instanceof Error?_e(n):n},2)}function it(e){return Ie(xn(e))}function Sn(e){var t,n=gn(e);return{get visitorId(){return t===void 0&&(t=it(this.components)),t},set visitorId(r){t=r},confidence:n,components:e,version:fe}}function Cn(e){return e===void 0&&(e=50),Ge(e,e*2)}function Fn(e,t){var n=Date.now();return{get:function(r){return P(this,void 0,void 0,function(){var a,i,s;return B(this,function(f){switch(f.label){case 0:return a=Date.now(),[4,e()];case 1:return i=f.sent(),s=Sn(i),(t||r?.debug)&&console.log("Copy the text below to get the debug data:\n\n```\nversion: ".concat(s.version,`
5
- userAgent: `).concat(navigator.userAgent,`
6
- timeBetweenLoadAndGet: `).concat(a-n,`
7
- visitorId: `).concat(s.visitorId,`
8
- components: `).concat(at(i),"\n```")),[2,s]}})})}}}function Ln(){if(!(window.__fpjs_d_m||Math.random()>=.001))try{var e=new XMLHttpRequest;e.open("get","https://m1.openfpcdn.io/fingerprintjs/v".concat(fe,"/npm-monitoring"),!0),e.send()}catch(t){console.error(t)}}function On(e){var t=e===void 0?{}:e,n=t.delayFallback,r=t.debug,a=t.monitoring,i=a===void 0?!0:a;return P(this,void 0,void 0,function(){var s;return B(this,function(f){switch(f.label){case 0:return i&&Ln(),[4,Cn(n)];case 1:return f.sent(),s=pn({debug:r}),[2,Fn(s,r)]}})})}var Mn={load:On,hashComponents:it,componentsToDebugString:at},En=null},49189:function(V,W,d){var c,y;/*!
9
- * JavaScript Cookie v2.2.1
10
- * https://github.com/js-cookie/js-cookie
11
- *
12
- * Copyright 2006, 2015 Klaus Hartl & Fagner Brack
13
- * Released under the MIT license
14
- */(function(x){var b;if(c=x,y=typeof c=="function"?c.call(W,d,W,V):c,y!==void 0&&(V.exports=y),b=!0,V.exports=x(),b=!0,!b){var R=window.Cookies,E=window.Cookies=x();E.noConflict=function(){return window.Cookies=R,E}}})(function(){function x(){for(var E=0,O={};E<arguments.length;E++){var _=arguments[E];for(var N in _)O[N]=_[N]}return O}function b(E){return E.replace(/(%[0-9A-Z]{2})+/g,decodeURIComponent)}function R(E){function O(){}function _(Q,K,P){if(!(typeof document>"u")){P=x({path:"/"},O.defaults,P),typeof P.expires=="number"&&(P.expires=new Date(new Date*1+P.expires*864e5)),P.expires=P.expires?P.expires.toUTCString():"";try{var B=JSON.stringify(K);/^[\{\[]/.test(B)&&(K=B)}catch{}K=E.write?E.write(K,Q):encodeURIComponent(String(K)).replace(/%(23|24|26|2B|3A|3C|3E|3D|2F|3F|40|5B|5D|5E|60|7B|7D|7C)/g,decodeURIComponent),Q=encodeURIComponent(String(Q)).replace(/%(23|24|26|2B|5E|60|7C)/g,decodeURIComponent).replace(/[\(\)]/g,escape);var re="";for(var G in P)P[G]&&(re+="; "+G,P[G]!==!0&&(re+="="+P[G].split(";")[0]));return document.cookie=Q+"="+K+re}}function N(Q,K){if(!(typeof document>"u")){for(var P={},B=document.cookie?document.cookie.split("; "):[],re=0;re<B.length;re++){var G=B[re].split("="),D=G.slice(1).join("=");!K&&D.charAt(0)==='"'&&(D=D.slice(1,-1));try{var g=b(G[0]);if(D=(E.read||E)(D,g)||b(D),K)try{D=JSON.parse(D)}catch{}if(P[g]=D,Q===g)break}catch{}}return Q?P[Q]:P}}return O.set=_,O.get=function(Q){return N(Q,!1)},O.getJSON=function(Q){return N(Q,!0)},O.remove=function(Q,K){_(Q,"",x(K,{expires:-1}))},O.defaults={},O.withConverter=R,O}return R(function(){})})},56671:function(V,W,d){var c=d(35897),y=d(74741),x=y(c);V.exports=x},52920:function(V,W,d){var c=d(56671),y=d(81580);function x(b,R){var E=-1,O=y(b)?Array(b.length):[];return c(b,function(_,N,Q){O[++E]=R(_,N,Q)}),O}V.exports=x},50690:function(V,W,d){var c=d(26460),y=d(80166),x=d(88904),b=d(52920),R=d(36024),E=d(76535),O=d(1397),_=d(15362),N=d(77236);function Q(K,P,B){P.length?P=c(P,function(D){return N(D)?function(g){return y(g,D.length===1?D[0]:D)}:D}):P=[_];var re=-1;P=c(P,E(x));var G=b(K,function(D,g,h){var o=c(P,function(u){return u(D)});return{criteria:o,index:++re,value:D}});return R(G,function(D,g){return O(D,g,B)})}V.exports=Q},37410:function(V,W,d){var c=d(96621),y=d(33646);function x(b,R){return c(b,R,function(E,O){return y(b,O)})}V.exports=x},36024:function(V){function W(d,c){var y=d.length;for(d.sort(c);y--;)d[y]=d[y].value;return d}V.exports=W},40709:function(V,W,d){var c=d(22945);function y(x,b){if(x!==b){var R=x!==void 0,E=x===null,O=x===x,_=c(x),N=b!==void 0,Q=b===null,K=b===b,P=c(b);if(!Q&&!P&&!_&&x>b||_&&N&&K&&!Q&&!P||E&&N&&K||!R&&K||!O)return 1;if(!E&&!_&&!P&&x<b||P&&R&&O&&!E&&!_||Q&&R&&O||!N&&O||!K)return-1}return 0}V.exports=y},1397:function(V,W,d){var c=d(40709);function y(x,b,R){for(var E=-1,O=x.criteria,_=b.criteria,N=O.length,Q=R.length;++E<N;){var K=c(O[E],_[E]);if(K){if(E>=Q)return K;var P=R[E];return K*(P=="desc"?-1:1)}}return x.index-b.index}V.exports=y},74741:function(V,W,d){var c=d(81580);function y(x,b){return function(R,E){if(R==null)return R;if(!c(R))return x(R,E);for(var O=R.length,_=b?O:-1,N=Object(R);(b?_--:++_<O)&&E(N[_],_,N)!==!1;);return R}}V.exports=y},72245:function(V,W,d){var c=d(63920),y=d(85973);function x(b,R,E,O,_,N){return y(b)&&y(R)&&(N.set(R,b),c(b,R,void 0,x,N),N.delete(R)),b}V.exports=x},58732:function(V,W,d){var c=d(85198),y=d(94569),x=d(72245),b=d(54754),R=y(function(E){return E.push(void 0,x),c(b,void 0,E)});V.exports=R},54754:function(V,W,d){var c=d(63920),y=d(32544),x=y(function(b,R,E,O){c(b,R,E,O)});V.exports=x},88423:function(V,W,d){var c=d(37410),y=d(83368),x=y(function(b,R){return b==null?{}:c(b,R)});V.exports=x},98978:function(V,W,d){var c=d(40314),y=d(50690),x=d(94569),b=d(63108),R=x(function(E,O){if(E==null)return[];var _=O.length;return _>1&&b(E,O[0],O[1])?O=[]:_>2&&b(O[0],O[1],O[2])&&(O=[O[0]]),y(E,c(O,1),[])});V.exports=R},56236:function(V,W,d){var c=d(69386);function y(x,b){return x==null?!0:c(x,b)}V.exports=y},78023:function(V,W,d){"use strict";d.d(W,{Z:function(){return Xe}});var c=d(31191),y=d(32735),x=d(72067),b=d(42447),R=d(26356),E=d(75461),O=d(68833),_=d(20552);function N(m,M){return Object.keys(m).reduce(function(p,v){return p[v]=(0,c.pi)({timeZone:M},m[v]),p},{})}function Q(m,M){var p=Object.keys((0,c.pi)((0,c.pi)({},m),M));return p.reduce(function(v,S){return v[S]=(0,c.pi)((0,c.pi)({},m[S]||{}),M[S]||{}),v},{})}function K(m,M){if(!M)return m;var p=E.C.formats;return(0,c.pi)((0,c.pi)((0,c.pi)({},p),m),{date:Q(N(p.date,M),N(m.date||{},M)),time:Q(N(p.time,M),N(m.time||{},M))})}var P=function(m,M,p,v,S){var L=m.locale,j=m.formats,X=m.messages,q=m.defaultLocale,me=m.defaultFormats,te=m.fallbackOnEmptyString,we=m.onError,ge=m.timeZone,Ve=m.defaultRichTextElements;p===void 0&&(p={id:""});var Ae=p.id,ce=p.defaultMessage;(0,R.kG)(!!Ae,"[@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 ve=String(Ae),le=X&&Object.prototype.hasOwnProperty.call(X,ve)&&X[ve];if(Array.isArray(le)&&le.length===1&&le[0].type===_.wD.literal)return le[0].value;if(!v&&le&&typeof le=="string"&&!Ve)return le.replace(/'\{(.*?)\}'/gi,"{$1}");if(v=(0,c.pi)((0,c.pi)({},Ve),v||{}),j=K(j,ge),me=K(me,ge),!le){if(te===!1&&le==="")return le;if((!ce||L&&L.toLowerCase()!==q.toLowerCase())&&we(new O.$6(p,L)),ce)try{var Oe=M.getMessageFormat(ce,q,me,S);return Oe.format(v)}catch(Me){return we(new O.X9('Error formatting default message for: "'.concat(ve,'", rendering default message verbatim'),L,p,Me)),typeof ce=="string"?ce:ve}return ve}try{var Oe=M.getMessageFormat(le,L,j,(0,c.pi)({formatters:M},S||{}));return Oe.format(v)}catch(Me){we(new O.X9('Error formatting message: "'.concat(ve,'", using ').concat(ce?"default message":"id"," as fallback."),L,p,Me))}if(ce)try{var Oe=M.getMessageFormat(ce,q,me,S);return Oe.format(v)}catch(Me){we(new O.X9('Error formatting the default message for: "'.concat(ve,'", rendering message verbatim'),L,p,Me))}return typeof le=="string"?le:typeof ce=="string"?ce:ve},B=d(32409),re=["style","currency","currencyDisplay","unit","unitDisplay","useGrouping","minimumIntegerDigits","minimumFractionDigits","maximumFractionDigits","minimumSignificantDigits","maximumSignificantDigits","compactDisplay","currencyDisplay","currencySign","notation","signDisplay","unit","unitDisplay","numberingSystem"];function G(m,M,p){var v=m.locale,S=m.formats,L=m.onError;p===void 0&&(p={});var j=p.format,X=j&&(0,B.TB)(S,"number",j,L)||{},q=(0,B.L6)(p,re,X);return M(v,q)}function D(m,M,p,v){v===void 0&&(v={});try{return G(m,M,v).format(p)}catch(S){m.onError(new O.Qe("Error formatting number.",m.locale,S))}return String(p)}function g(m,M,p,v){v===void 0&&(v={});try{return G(m,M,v).formatToParts(p)}catch(S){m.onError(new O.Qe("Error formatting number.",m.locale,S))}return[]}var h=d(14979),o=["numeric","style"];function u(m,M,p){var v=m.locale,S=m.formats,L=m.onError;p===void 0&&(p={});var j=p.format,X=!!j&&(0,B.TB)(S,"relative",j,L)||{},q=(0,B.L6)(p,o,X);return M(v,q)}function l(m,M,p,v,S){S===void 0&&(S={}),v||(v="second");var L=Intl.RelativeTimeFormat;L||m.onError(new h.u_(`Intl.RelativeTimeFormat is not available in this environment.
15
- Try polyfilling it using "@formatjs/intl-relativetimeformat"
16
- `,h.jK.MISSING_INTL_API));try{return u(m,M,S).format(p,v)}catch(j){m.onError(new O.Qe("Error formatting relative time.",m.locale,j))}return String(p)}var T=["formatMatcher","timeZone","hour12","weekday","era","year","month","day","hour","minute","second","timeZoneName","hourCycle","dateStyle","timeStyle","calendar","numberingSystem","fractionalSecondDigits"];function A(m,M,p,v){var S=m.locale,L=m.formats,j=m.onError,X=m.timeZone;v===void 0&&(v={});var q=v.format,me=(0,c.pi)((0,c.pi)({},X&&{timeZone:X}),q&&(0,B.TB)(L,M,q,j)),te=(0,B.L6)(v,T,me);return M==="time"&&!te.hour&&!te.minute&&!te.second&&!te.timeStyle&&!te.dateStyle&&(te=(0,c.pi)((0,c.pi)({},te),{hour:"numeric",minute:"numeric"})),p(S,te)}function k(m,M){for(var p=[],v=2;v<arguments.length;v++)p[v-2]=arguments[v];var S=p[0],L=p[1],j=L===void 0?{}:L,X=typeof S=="string"?new Date(S||0):S;try{return A(m,"date",M,j).format(X)}catch(q){m.onError(new O.Qe("Error formatting date.",m.locale,q))}return String(X)}function ie(m,M){for(var p=[],v=2;v<arguments.length;v++)p[v-2]=arguments[v];var S=p[0],L=p[1],j=L===void 0?{}:L,X=typeof S=="string"?new Date(S||0):S;try{return A(m,"time",M,j).format(X)}catch(q){m.onError(new O.Qe("Error formatting time.",m.locale,q))}return String(X)}function ae(m,M){for(var p=[],v=2;v<arguments.length;v++)p[v-2]=arguments[v];var S=p[0],L=p[1],j=p[2],X=j===void 0?{}:j,q=m.timeZone,me=m.locale,te=m.onError,we=(0,B.L6)(X,T,q?{timeZone:q}:{});try{return M(me,we).formatRange(S,L)}catch(ge){te(new O.Qe("Error formatting date time range.",m.locale,ge))}return String(S)}function oe(m,M){for(var p=[],v=2;v<arguments.length;v++)p[v-2]=arguments[v];var S=p[0],L=p[1],j=L===void 0?{}:L,X=typeof S=="string"?new Date(S||0):S;try{return A(m,"date",M,j).formatToParts(X)}catch(q){m.onError(new O.Qe("Error formatting date.",m.locale,q))}return[]}function ue(m,M){for(var p=[],v=2;v<arguments.length;v++)p[v-2]=arguments[v];var S=p[0],L=p[1],j=L===void 0?{}:L,X=typeof S=="string"?new Date(S||0):S;try{return A(m,"time",M,j).formatToParts(X)}catch(q){m.onError(new O.Qe("Error formatting time.",m.locale,q))}return[]}var Ce=["type"];function Fe(m,M,p,v){var S=m.locale,L=m.onError;v===void 0&&(v={}),Intl.PluralRules||L(new h.u_(`Intl.PluralRules is not available in this environment.
17
- Try polyfilling it using "@formatjs/intl-pluralrules"
18
- `,h.jK.MISSING_INTL_API));var j=(0,B.L6)(v,Ce);try{return M(S,j).select(p)}catch(X){L(new O.Qe("Error formatting plural.",S,X))}return"other"}var pe=["type","style"],fe=Date.now();function xe(m){return"".concat(fe,"_").concat(m,"_").concat(fe)}function Ge(m,M,p,v){v===void 0&&(v={});var S=Le(m,M,p,v).reduce(function(L,j){var X=j.value;return typeof X!="string"?L.push(X):typeof L[L.length-1]=="string"?L[L.length-1]+=X:L.push(X),L},[]);return S.length===1?S[0]:S.length===0?"":S}function Le(m,M,p,v){var S=m.locale,L=m.onError;v===void 0&&(v={});var j=Intl.ListFormat;j||L(new h.u_(`Intl.ListFormat is not available in this environment.
19
- Try polyfilling it using "@formatjs/intl-listformat"
20
- `,h.jK.MISSING_INTL_API));var X=(0,B.L6)(v,pe);try{var q={},me=p.map(function(te,we){if(typeof te=="object"){var ge=xe(we);return q[ge]=te,ge}return String(te)});return M(S,X).formatToParts(me).map(function(te){return te.type==="literal"?te:(0,c.pi)((0,c.pi)({},te),{value:q[te.value]||te.value})})}catch(te){L(new O.Qe("Error formatting list.",S,te))}return p}var Ze=["style","type","fallback","languageDisplay"];function je(m,M,p,v){var S=m.locale,L=m.onError,j=Intl.DisplayNames;j||L(new h.u_(`Intl.DisplayNames is not available in this environment.
21
- Try polyfilling it using "@formatjs/intl-displaynames"
22
- `,h.jK.MISSING_INTL_API));var X=(0,B.L6)(v,Ze);try{return M(S,X).of(p)}catch(q){L(new O.Qe("Error formatting display name.",S,q))}}function Te(m){var M=m?m[Object.keys(m)[0]]:void 0;return typeof M=="string"}function ye(m){m.onWarn&&m.defaultRichTextElements&&Te(m.messages||{})&&m.onWarn(`[@formatjs/intl] "defaultRichTextElements" was specified but "message" was not pre-compiled.
23
- Please consider using "@formatjs/cli" to pre-compile your messages for performance.
24
- For more details see https://formatjs.io/docs/getting-started/message-distribution`)}function he(m,M){var p=(0,B.ax)(M),v=(0,c.pi)((0,c.pi)({},B.Z0),m),S=v.locale,L=v.defaultLocale,j=v.onError;return S?!Intl.NumberFormat.supportedLocalesOf(S).length&&j?j(new O.gb('Missing locale data for locale: "'.concat(S,'" in Intl.NumberFormat. Using default locale: "').concat(L,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):!Intl.DateTimeFormat.supportedLocalesOf(S).length&&j&&j(new O.gb('Missing locale data for locale: "'.concat(S,'" in Intl.DateTimeFormat. Using default locale: "').concat(L,'" as fallback. See https://formatjs.io/docs/react-intl#runtime-requirements for more details'))):(j&&j(new O.OV('"locale" was not configured, using "'.concat(L,'" as fallback. See https://formatjs.io/docs/react-intl/api#intlshape for more details'))),v.locale=v.defaultLocale||"en"),ye(v),(0,c.pi)((0,c.pi)({},v),{formatters:p,formatNumber:D.bind(null,v,p.getNumberFormat),formatNumberToParts:g.bind(null,v,p.getNumberFormat),formatRelativeTime:l.bind(null,v,p.getRelativeTimeFormat),formatDate:k.bind(null,v,p.getDateTimeFormat),formatDateToParts:oe.bind(null,v,p.getDateTimeFormat),formatTime:ie.bind(null,v,p.getDateTimeFormat),formatDateTimeRange:ae.bind(null,v,p.getDateTimeFormat),formatTimeToParts:ue.bind(null,v,p.getDateTimeFormat),formatPlural:Fe.bind(null,v,p.getPluralRules),formatMessage:P.bind(null,v,p),$t:P.bind(null,v,p),formatList:Ge.bind(null,v,p.getListFormat),formatListToParts:Le.bind(null,v,p.getListFormat),formatDisplayName:je.bind(null,v,p.getDisplayNames)})}var Se=d(33961);function se(m){return{locale:m.locale,timeZone:m.timeZone,fallbackOnEmptyString:m.fallbackOnEmptyString,formats:m.formats,textComponent:m.textComponent,messages:m.messages,defaultLocale:m.defaultLocale,defaultFormats:m.defaultFormats,onError:m.onError,onWarn:m.onWarn,wrapRichTextChunksInFragment:m.wrapRichTextChunksInFragment,defaultRichTextElements:m.defaultRichTextElements}}function ee(m){return m&&Object.keys(m).reduce(function(M,p){var v=m[p];return M[p]=(0,Se.Gt)(v)?(0,b.dt)(v):v,M},{})}var De=function(m,M,p,v){for(var S=[],L=4;L<arguments.length;L++)S[L-4]=arguments[L];var j=ee(v),X=P.apply(void 0,(0,c.ev)([m,M,p,j],S,!1));return Array.isArray(X)?y.Children.toArray(X):X},Ie=function(m,M){var p=m.defaultRichTextElements,v=(0,c._T)(m,["defaultRichTextElements"]),S=ee(p),L=he((0,c.pi)((0,c.pi)((0,c.pi)({},b.Z0),v),{defaultRichTextElements:S}),M),j={locale:L.locale,timeZone:L.timeZone,fallbackOnEmptyString:L.fallbackOnEmptyString,formats:L.formats,defaultLocale:L.defaultLocale,defaultFormats:L.defaultFormats,messages:L.messages,onError:L.onError,defaultRichTextElements:S};return(0,c.pi)((0,c.pi)({},L),{formatMessage:De.bind(null,j,L.formatters),$t:De.bind(null,j,L.formatters)})},_e=function(m){(0,c.ZT)(M,m);function M(){var p=m!==null&&m.apply(this,arguments)||this;return p.cache=(0,B.Sn)(),p.state={cache:p.cache,intl:Ie(se(p.props),p.cache),prevConfig:se(p.props)},p}return M.getDerivedStateFromProps=function(p,v){var S=v.prevConfig,L=v.cache,j=se(p);return(0,b.wU)(S,j)?null:{intl:Ie(j,L),prevConfig:j}},M.prototype.render=function(){return(0,b.lq)(this.state.intl),y.createElement(x.zt,{value:this.state.intl},this.props.children)},M.displayName="IntlProvider",M.defaultProps=b.Z0,M}(y.PureComponent),Xe=_e},86113:function(V,W,d){"use strict";d.d(W,{S:function(){return G}});var c=d(20011),y=d(17209),x=d(23788),b=d(6265),R=d(52510),E=d(68143),O=function(){function D(h){this.defaultOptions=h.defaultOptions,this.setOptions(h.options),this.observers=[],this.cache=h.cache,this.queryKey=h.queryKey,this.queryHash=h.queryHash,this.initialState=h.state||this.getDefaultState(this.options),this.state=this.initialState,this.scheduleGc()}var g=D.prototype;return g.setOptions=function(o){var u;this.options=(0,c.Z)({},this.defaultOptions,o),this.cacheTime=Math.max(this.cacheTime||0,(u=this.options.cacheTime)!=null?u:5*60*1e3)},g.setDefaultOptions=function(o){this.defaultOptions=o},g.scheduleGc=function(){var o=this;this.clearGcTimeout(),(0,y.PN)(this.cacheTime)&&(this.gcTimeout=setTimeout(function(){o.optionalRemove()},this.cacheTime))},g.clearGcTimeout=function(){clearTimeout(this.gcTimeout),this.gcTimeout=void 0},g.optionalRemove=function(){!this.observers.length&&!this.state.isFetching&&this.cache.remove(this)},g.setData=function(o,u){var l,T,A=this.state.data,k=(0,y.SE)(o,A);return(l=(T=this.options).isDataEqual)!=null&&l.call(T,A,k)?k=A:this.options.structuralSharing!==!1&&(k=(0,y.Q$)(A,k)),this.dispatch({data:k,type:"success",dataUpdatedAt:u?.updatedAt}),k},g.setState=function(o,u){this.dispatch({type:"setState",state:o,setStateOptions:u})},g.cancel=function(o){var u,l=this.promise;return(u=this.retryer)==null||u.cancel(o),l?l.then(y.ZT).catch(y.ZT):Promise.resolve()},g.destroy=function(){this.clearGcTimeout(),this.cancel({silent:!0})},g.reset=function(){this.destroy(),this.setState(this.initialState)},g.isActive=function(){return this.observers.some(function(o){return o.options.enabled!==!1})},g.isFetching=function(){return this.state.isFetching},g.isStale=function(){return this.state.isInvalidated||!this.state.dataUpdatedAt||this.observers.some(function(o){return o.getCurrentResult().isStale})},g.isStaleByTime=function(o){return o===void 0&&(o=0),this.state.isInvalidated||!this.state.dataUpdatedAt||!(0,y.Kp)(this.state.dataUpdatedAt,o)},g.onFocus=function(){var o,u=this.observers.find(function(l){return l.shouldFetchOnWindowFocus()});u&&u.refetch(),(o=this.retryer)==null||o.continue()},g.onOnline=function(){var o,u=this.observers.find(function(l){return l.shouldFetchOnReconnect()});u&&u.refetch(),(o=this.retryer)==null||o.continue()},g.addObserver=function(o){this.observers.indexOf(o)===-1&&(this.observers.push(o),this.clearGcTimeout(),this.cache.notify({type:"observerAdded",query:this,observer:o}))},g.removeObserver=function(o){this.observers.indexOf(o)!==-1&&(this.observers=this.observers.filter(function(u){return u!==o}),this.observers.length||(this.retryer&&(this.retryer.isTransportCancelable?this.retryer.cancel({revert:!0}):this.retryer.cancelRetry()),this.cacheTime?this.scheduleGc():this.cache.remove(this)),this.cache.notify({type:"observerRemoved",query:this,observer:o}))},g.getObserversCount=function(){return this.observers.length},g.invalidate=function(){this.state.isInvalidated||this.dispatch({type:"invalidate"})},g.fetch=function(o,u){var l=this,T,A;if(this.state.isFetching){if(this.state.dataUpdatedAt&&u?.cancelRefetch)this.cancel({silent:!0});else if(this.promise)return this.promise}if(o&&this.setOptions(o),!this.options.queryFn){var k=this.observers.find(function(pe){return pe.options.queryFn});k&&this.setOptions(k.options)}var ie=(0,y.mc)(this.queryKey),ae={queryKey:ie,pageParam:void 0},oe=function(){return l.options.queryFn?l.options.queryFn(ae):Promise.reject("Missing queryFn")},ue={fetchOptions:u,options:this.options,queryKey:ie,state:this.state,fetchFn:oe};if((T=this.options.behavior)!=null&&T.onFetch){var Ce;(Ce=this.options.behavior)==null||Ce.onFetch(ue)}if(this.revertState=this.state,!this.state.isFetching||this.state.fetchMeta!==((A=ue.fetchOptions)==null?void 0:A.meta)){var Fe;this.dispatch({type:"fetch",meta:(Fe=ue.fetchOptions)==null?void 0:Fe.meta})}return this.retryer=new E.m4({fn:ue.fetchFn,onSuccess:function(fe){l.setData(fe),l.cache.config.onSuccess==null||l.cache.config.onSuccess(fe,l),l.cacheTime===0&&l.optionalRemove()},onError:function(fe){(0,E.DV)(fe)&&fe.silent||l.dispatch({type:"error",error:fe}),(0,E.DV)(fe)||(l.cache.config.onError==null||l.cache.config.onError(fe,l),(0,R.j)().error(fe)),l.cacheTime===0&&l.optionalRemove()},onFail:function(){l.dispatch({type:"failed"})},onPause:function(){l.dispatch({type:"pause"})},onContinue:function(){l.dispatch({type:"continue"})},retry:ue.options.retry,retryDelay:ue.options.retryDelay}),this.promise=this.retryer.promise,this.promise},g.dispatch=function(o){var u=this;this.state=this.reducer(this.state,o),b.V.batch(function(){u.observers.forEach(function(l){l.onQueryUpdate(o)}),u.cache.notify({query:u,type:"queryUpdated",action:o})})},g.getDefaultState=function(o){var u=typeof o.initialData=="function"?o.initialData():o.initialData,l=typeof o.initialData<"u",T=l?typeof o.initialDataUpdatedAt=="function"?o.initialDataUpdatedAt():o.initialDataUpdatedAt:0,A=typeof u<"u";return{data:u,dataUpdateCount:0,dataUpdatedAt:A?T??Date.now():0,error:null,errorUpdateCount:0,errorUpdatedAt:0,fetchFailureCount:0,fetchMeta:null,isFetching:!1,isInvalidated:!1,isPaused:!1,status:A?"success":"idle"}},g.reducer=function(o,u){var l,T;switch(u.type){case"failed":return(0,c.Z)({},o,{fetchFailureCount:o.fetchFailureCount+1});case"pause":return(0,c.Z)({},o,{isPaused:!0});case"continue":return(0,c.Z)({},o,{isPaused:!1});case"fetch":return(0,c.Z)({},o,{fetchFailureCount:0,fetchMeta:(l=u.meta)!=null?l:null,isFetching:!0,isPaused:!1,status:o.dataUpdatedAt?o.status:"loading"});case"success":return(0,c.Z)({},o,{data:u.data,dataUpdateCount:o.dataUpdateCount+1,dataUpdatedAt:(T=u.dataUpdatedAt)!=null?T:Date.now(),error:null,fetchFailureCount:0,isFetching:!1,isInvalidated:!1,isPaused:!1,status:"success"});case"error":var A=u.error;return(0,E.DV)(A)&&A.revert&&this.revertState?(0,c.Z)({},this.revertState):(0,c.Z)({},o,{error:A,errorUpdateCount:o.errorUpdateCount+1,errorUpdatedAt:Date.now(),fetchFailureCount:o.fetchFailureCount+1,isFetching:!1,isPaused:!1,status:"error"});case"invalidate":return(0,c.Z)({},o,{isInvalidated:!0});case"setState":return(0,c.Z)({},o,u.state);default:return o}},D}(),_=d(30128),N=function(D){(0,x.Z)(g,D);function g(o){var u;return u=D.call(this)||this,u.config=o||{},u.queries=[],u.queriesMap={},u}var h=g.prototype;return h.build=function(u,l,T){var A,k=l.queryKey,ie=(A=l.queryHash)!=null?A:(0,y.Rm)(k,l),ae=this.get(ie);return ae||(ae=new O({cache:this,queryKey:k,queryHash:ie,options:u.defaultQueryOptions(l),state:T,defaultOptions:u.getQueryDefaults(k)}),this.add(ae)),ae},h.add=function(u){this.queriesMap[u.queryHash]||(this.queriesMap[u.queryHash]=u,this.queries.push(u),this.notify({type:"queryAdded",query:u}))},h.remove=function(u){var l=this.queriesMap[u.queryHash];l&&(u.destroy(),this.queries=this.queries.filter(function(T){return T!==u}),l===u&&delete this.queriesMap[u.queryHash],this.notify({type:"queryRemoved",query:u}))},h.clear=function(){var u=this;b.V.batch(function(){u.queries.forEach(function(l){u.remove(l)})})},h.get=function(u){return this.queriesMap[u]},h.getAll=function(){return this.queries},h.find=function(u,l){var T=(0,y.I6)(u,l),A=T[0];return typeof A.exact>"u"&&(A.exact=!0),this.queries.find(function(k){return(0,y._x)(A,k)})},h.findAll=function(u,l){var T=(0,y.I6)(u,l),A=T[0];return A?this.queries.filter(function(k){return(0,y._x)(A,k)}):this.queries},h.notify=function(u){var l=this;b.V.batch(function(){l.listeners.forEach(function(T){T(u)})})},h.onFocus=function(){var u=this;b.V.batch(function(){u.queries.forEach(function(l){l.onFocus()})})},h.onOnline=function(){var u=this;b.V.batch(function(){u.queries.forEach(function(l){l.onOnline()})})},g}(_.l),Q=d(7216),K=function(D){(0,x.Z)(g,D);function g(o){var u;return u=D.call(this)||this,u.config=o||{},u.mutations=[],u.mutationId=0,u}var h=g.prototype;return h.build=function(u,l,T){var A=new Q.m({mutationCache:this,mutationId:++this.mutationId,options:u.defaultMutationOptions(l),state:T,defaultOptions:l.mutationKey?u.getMutationDefaults(l.mutationKey):void 0});return this.add(A),A},h.add=function(u){this.mutations.push(u),this.notify(u)},h.remove=function(u){this.mutations=this.mutations.filter(function(l){return l!==u}),u.cancel(),this.notify(u)},h.clear=function(){var u=this;b.V.batch(function(){u.mutations.forEach(function(l){u.remove(l)})})},h.getAll=function(){return this.mutations},h.find=function(u){return typeof u.exact>"u"&&(u.exact=!0),this.mutations.find(function(l){return(0,y.X7)(u,l)})},h.findAll=function(u){return this.mutations.filter(function(l){return(0,y.X7)(u,l)})},h.notify=function(u){var l=this;b.V.batch(function(){l.listeners.forEach(function(T){T(u)})})},h.onFocus=function(){this.resumePausedMutations()},h.onOnline=function(){this.resumePausedMutations()},h.resumePausedMutations=function(){var u=this.mutations.filter(function(l){return l.state.isPaused});return b.V.batch(function(){return u.reduce(function(l,T){return l.then(function(){return T.continue().catch(y.ZT)})},Promise.resolve())})},g}(_.l),P=d(43596),B=d(8144),re=d(34215),G=function(){function D(h){h===void 0&&(h={}),this.queryCache=h.queryCache||new N,this.mutationCache=h.mutationCache||new K,this.defaultOptions=h.defaultOptions||{},this.queryDefaults=[],this.mutationDefaults=[]}var g=D.prototype;return g.mount=function(){var o=this;this.unsubscribeFocus=P.j.subscribe(function(){P.j.isFocused()&&B.N.isOnline()&&(o.mutationCache.onFocus(),o.queryCache.onFocus())}),this.unsubscribeOnline=B.N.subscribe(function(){P.j.isFocused()&&B.N.isOnline()&&(o.mutationCache.onOnline(),o.queryCache.onOnline())})},g.unmount=function(){var o,u;(o=this.unsubscribeFocus)==null||o.call(this),(u=this.unsubscribeOnline)==null||u.call(this)},g.isFetching=function(o,u){var l=(0,y.I6)(o,u),T=l[0];return T.fetching=!0,this.queryCache.findAll(T).length},g.isMutating=function(o){return this.mutationCache.findAll((0,c.Z)({},o,{fetching:!0})).length},g.getQueryData=function(o,u){var l;return(l=this.queryCache.find(o,u))==null?void 0:l.state.data},g.getQueriesData=function(o){return this.getQueryCache().findAll(o).map(function(u){var l=u.queryKey,T=u.state,A=T.data;return[l,A]})},g.setQueryData=function(o,u,l){var T=(0,y._v)(o),A=this.defaultQueryOptions(T);return this.queryCache.build(this,A).setData(u,l)},g.setQueriesData=function(o,u,l){var T=this;return b.V.batch(function(){return T.getQueryCache().findAll(o).map(function(A){var k=A.queryKey;return[k,T.setQueryData(k,u,l)]})})},g.getQueryState=function(o,u){var l;return(l=this.queryCache.find(o,u))==null?void 0:l.state},g.removeQueries=function(o,u){var l=(0,y.I6)(o,u),T=l[0],A=this.queryCache;b.V.batch(function(){A.findAll(T).forEach(function(k){A.remove(k)})})},g.resetQueries=function(o,u,l){var T=this,A=(0,y.I6)(o,u,l),k=A[0],ie=A[1],ae=this.queryCache,oe=(0,c.Z)({},k,{active:!0});return b.V.batch(function(){return ae.findAll(k).forEach(function(ue){ue.reset()}),T.refetchQueries(oe,ie)})},g.cancelQueries=function(o,u,l){var T=this,A=(0,y.I6)(o,u,l),k=A[0],ie=A[1],ae=ie===void 0?{}:ie;typeof ae.revert>"u"&&(ae.revert=!0);var oe=b.V.batch(function(){return T.queryCache.findAll(k).map(function(ue){return ue.cancel(ae)})});return Promise.all(oe).then(y.ZT).catch(y.ZT)},g.invalidateQueries=function(o,u,l){var T,A,k,ie=this,ae=(0,y.I6)(o,u,l),oe=ae[0],ue=ae[1],Ce=(0,c.Z)({},oe,{active:(T=(A=oe.refetchActive)!=null?A:oe.active)!=null?T:!0,inactive:(k=oe.refetchInactive)!=null?k:!1});return b.V.batch(function(){return ie.queryCache.findAll(oe).forEach(function(Fe){Fe.invalidate()}),ie.refetchQueries(Ce,ue)})},g.refetchQueries=function(o,u,l){var T=this,A=(0,y.I6)(o,u,l),k=A[0],ie=A[1],ae=b.V.batch(function(){return T.queryCache.findAll(k).map(function(ue){return ue.fetch(void 0,{meta:{refetchPage:k?.refetchPage}})})}),oe=Promise.all(ae).then(y.ZT);return ie?.throwOnError||(oe=oe.catch(y.ZT)),oe},g.fetchQuery=function(o,u,l){var T=(0,y._v)(o,u,l),A=this.defaultQueryOptions(T);typeof A.retry>"u"&&(A.retry=!1);var k=this.queryCache.build(this,A);return k.isStaleByTime(A.staleTime)?k.fetch(A):Promise.resolve(k.state.data)},g.prefetchQuery=function(o,u,l){return this.fetchQuery(o,u,l).then(y.ZT).catch(y.ZT)},g.fetchInfiniteQuery=function(o,u,l){var T=(0,y._v)(o,u,l);return T.behavior=(0,re.Gm)(),this.fetchQuery(T)},g.prefetchInfiniteQuery=function(o,u,l){return this.fetchInfiniteQuery(o,u,l).then(y.ZT).catch(y.ZT)},g.cancelMutations=function(){var o=this,u=b.V.batch(function(){return o.mutationCache.getAll().map(function(l){return l.cancel()})});return Promise.all(u).then(y.ZT).catch(y.ZT)},g.resumePausedMutations=function(){return this.getMutationCache().resumePausedMutations()},g.executeMutation=function(o){return this.mutationCache.build(this,o).execute()},g.getQueryCache=function(){return this.queryCache},g.getMutationCache=function(){return this.mutationCache},g.getDefaultOptions=function(){return this.defaultOptions},g.setDefaultOptions=function(o){this.defaultOptions=o},g.setQueryDefaults=function(o,u){var l=this.queryDefaults.find(function(T){return(0,y.yF)(o)===(0,y.yF)(T.queryKey)});l?l.defaultOptions=u:this.queryDefaults.push({queryKey:o,defaultOptions:u})},g.getQueryDefaults=function(o){var u;return o?(u=this.queryDefaults.find(function(l){return(0,y.to)(o,l.queryKey)}))==null?void 0:u.defaultOptions:void 0},g.setMutationDefaults=function(o,u){var l=this.mutationDefaults.find(function(T){return(0,y.yF)(o)===(0,y.yF)(T.mutationKey)});l?l.defaultOptions=u:this.mutationDefaults.push({mutationKey:o,defaultOptions:u})},g.getMutationDefaults=function(o){var u;return o?(u=this.mutationDefaults.find(function(l){return(0,y.to)(o,l.mutationKey)}))==null?void 0:u.defaultOptions:void 0},g.defaultQueryOptions=function(o){if(o?._defaulted)return o;var u=(0,c.Z)({},this.defaultOptions.queries,this.getQueryDefaults(o?.queryKey),o,{_defaulted:!0});return!u.queryHash&&u.queryKey&&(u.queryHash=(0,y.Rm)(u.queryKey,u)),u},g.defaultQueryObserverOptions=function(o){return this.defaultQueryOptions(o)},g.defaultMutationOptions=function(o){return o?._defaulted?o:(0,c.Z)({},this.defaultOptions.mutations,this.getMutationDefaults(o?.mutationKey),o,{_defaulted:!0})},g.clear=function(){this.queryCache.clear(),this.mutationCache.clear()},D}()},17e3:function(V,W,d){"use strict";d.d(W,{D:function(){return R}});var c=d(74512),y=d(32735),x=d(60216),b=d(72850);const R=({children:E})=>(0,c.jsx)(b.x,{paddingLeft:10,paddingRight:10,children:E});R.propTypes={children:x.node.isRequired}},82055:function(V,W,d){"use strict";d.d(W,{T:function(){return P}});var c=d(74512),y=d(32735),x=d(60216),b=d(8471);const R=G=>{const D=(0,y.useRef)(null),[g,h]=(0,y.useState)(!0),o=([u])=>{h(u.isIntersecting)};return(0,y.useEffect)(()=>{const u=D.current,l=new IntersectionObserver(o,G);return u&&l.observe(D.current),()=>{u&&l.disconnect()}},[D,G]),[D,g]};var E=d(63060);const O=(G,D)=>{const g=(0,E.W)(D);(0,y.useLayoutEffect)(()=>{const h=new ResizeObserver(g);return Array.isArray(G)?G.forEach(o=>{o.current&&h.observe(o.current)}):G.current&&h.observe(G.current),()=>{h.disconnect()}},[G,g])};var _=d(72850),N=d(87933),Q=d(49372);const K=()=>{const G=(0,y.useRef)(null),[D,g]=(0,y.useState)(null),[h,o]=R({root:null,rootMargin:"0px",threshold:0});return O(h,()=>{h.current&&g(h.current.getBoundingClientRect())}),(0,y.useEffect)(()=>{G.current&&g(G.current.getBoundingClientRect())},[G]),{containerRef:h,isVisible:o,baseHeaderLayoutRef:G,headerSize:D}},P=G=>{const{containerRef:D,isVisible:g,baseHeaderLayoutRef:h,headerSize:o}=K();return(0,c.jsxs)(c.Fragment,{children:[(0,c.jsx)("div",{style:{height:o?.height},ref:D,children:g&&(0,c.jsx)(re,{ref:h,...G})}),!g&&(0,c.jsx)(re,{...G,sticky:!0,width:o?.width})]})};P.displayName="HeaderLayout";const B=(0,b.ZP)(_.x)`
25
- width: ${G=>G.width}px;
26
- z-index: ${({theme:G})=>G.zIndices[1]};
27
- `,re=y.forwardRef(({navigationAction:G,primaryAction:D,secondaryAction:g,subtitle:h,title:o,sticky:u,width:l,...T},A)=>{const k=typeof h=="string";return u?(0,c.jsx)(B,{paddingLeft:6,paddingRight:6,paddingTop:3,paddingBottom:3,position:"fixed",top:0,right:0,background:"neutral0",shadow:"tableShadow",width:l,"data-strapi-header-sticky":!0,children:(0,c.jsxs)(N.k,{justifyContent:"space-between",children:[(0,c.jsxs)(N.k,{children:[G&&(0,c.jsx)(_.x,{paddingRight:3,children:G}),(0,c.jsxs)(_.x,{children:[(0,c.jsx)(Q.Z,{variant:"beta",as:"h1",...T,children:o}),k?(0,c.jsx)(Q.Z,{variant:"pi",textColor:"neutral600",children:h}):h]}),g?(0,c.jsx)(_.x,{paddingLeft:4,children:g}):null]}),(0,c.jsx)(N.k,{children:D?(0,c.jsx)(_.x,{paddingLeft:2,children:D}):void 0})]})}):(0,c.jsxs)(_.x,{ref:A,paddingLeft:10,paddingRight:10,paddingBottom:8,paddingTop:G?6:8,background:"neutral100","data-strapi-header":!0,children:[G?(0,c.jsx)(_.x,{paddingBottom:2,children:G}):null,(0,c.jsxs)(N.k,{justifyContent:"space-between",children:[(0,c.jsxs)(N.k,{minWidth:0,children:[(0,c.jsx)(Q.Z,{as:"h1",variant:"alpha",...T,children:o}),g?(0,c.jsx)(_.x,{paddingLeft:4,children:g}):null]}),D]}),k?(0,c.jsx)(Q.Z,{variant:"epsilon",textColor:"neutral600",as:"p",children:h}):h]})});re.displayName="BaseHeaderLayout",re.defaultProps={navigationAction:void 0,primaryAction:void 0,secondaryAction:void 0,subtitle:void 0,sticky:!1,width:void 0},re.propTypes={navigationAction:x.node,primaryAction:x.node,secondaryAction:x.node,sticky:x.bool,subtitle:x.oneOfType([x.string,x.node]),title:x.string.isRequired,width:x.number},P.defaultProps={navigationAction:void 0,primaryAction:void 0,secondaryAction:void 0,subtitle:void 0},P.propTypes={navigationAction:x.node,primaryAction:x.node,secondaryAction:x.node,subtitle:x.oneOfType([x.string,x.node]),title:x.string.isRequired}},27649:function(V,W,d){"use strict";d.d(W,{o:function(){return R}});var c=d(74512),y=d(8471),x=d(72850);const b=(0,y.ZP)(x.x)`
28
- // To prevent global outline on focus visible to force an outline when Main is focused
29
- &:focus-visible {
30
- outline: none;
31
- }
32
- `,R=({labelledBy:E="main-content-title",...O})=>(0,c.jsx)(b,{"aria-labelledby":E,as:"main",id:"main-content",tabIndex:-1,...O})},10728:function(V,W,d){"use strict";d.d(W,{z:function(){return R}});var c=d(74512),y=d(8471),x=d(72850);const b=(0,y.ZP)(x.x)`
33
- text-decoration: none;
34
-
35
- &:focus {
36
- left: ${({theme:E})=>E.spaces[3]};
37
- top: ${({theme:E})=>E.spaces[3]};
38
- }
39
- `,R=({children:E})=>(0,c.jsx)(b,{as:"a",href:"#main-content",background:"primary600",color:"neutral0",left:"-100%",padding:3,position:"absolute",top:"-100%",hasRadius:!0,zIndex:9999,children:E})},69706:function(){"use strict"},37930:function(V,W,d){"use strict";d.d(W,{x:function(){return y}});const y={sizes:{input:{S:"2rem",M:`${2.5}rem`},accordions:{S:"3rem",M:`${5.5}rem`},badge:{S:"1rem",M:`${1.5}rem`},button:{S:"2rem",M:`${2.25}rem`,L:`${2.5}rem`}},zIndices:[5,10,15,20],spaces:["0px","4px","8px","12px","16px","20px","24px","32px","40px","48px","56px","64px"],borderRadius:"4px",mediaQueries:{tablet:`@media (max-width: ${1100/16}rem)`,mobile:`@media (max-width: ${550/16}rem)`},fontSizes:[`${11/16}rem`,`${12/16}rem`,`${14/16}rem`,"1rem",`${18/16}rem`,`${32/16}rem`],lineHeights:[1.14,1.22,1.25,1.33,1.43,1.45,1.5],fontWeights:{regular:400,semiBold:500,bold:600}}},65810:function(V,W,d){"use strict";d.d(W,{$:function(){return b}});const c={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"}},y={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 x=d(37930);const b={colors:c.color,shadows:y.shadow,...x.x}},12301:function(V,W,d){"use strict";d.d(W,{W:function(){return b}});const c={color:{alternative100:"#f6ecfc",alternative200:"#e0c1f4",alternative500:"#ac73e6",alternative600:"#9736e8",alternative700:"#8312d1",buttonNeutral0:"#ffffff",buttonPrimary500:"#7b79ff",buttonPrimary600:"#4945ff",danger100:"#fcecea",danger200:"#f5c0b8",danger500:"#ee5e52",danger600:"#d02b20",danger700:"#b72b1a",neutral0:"#ffffff",neutral100:"#f6f6f9",neutral1000:"#181826",neutral150:"#eaeaef",neutral200:"#dcdce4",neutral300:"#c0c0cf",neutral400:"#a5a5ba",neutral500:"#8e8ea9",neutral600:"#666687",neutral700:"#4a4a6a",neutral800:"#32324d",neutral900:"#212134",primary100:"#f0f0ff",primary200:"#d9d8ff",primary500:"#7b79ff",primary600:"#4945ff",primary700:"#271fe0",secondary100:"#eaf5ff",secondary200:"#b8e1ff",secondary500:"#66b7f1",secondary600:"#0c75af",secondary700:"#006096",success100:"#eafbe7",success200:"#c6f0c2",success500:"#5cb176",success600:"#328048",success700:"#2f6846",warning100:"#fdf4dc",warning200:"#fae7b9",warning500:"#f29d41",warning600:"#d9822f",warning700:"#be5d01"}},y={shadow:{filterShadow:"0px 1px 4px rgba(33, 33, 52, 0.1)",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:"0px 2px 15px rgba(33, 33, 52, 0.1)",tableShadow:"0px 1px 4px rgba(33, 33, 52, 0.1)"}};var x=d(37930);const b={colors:c.color,shadows:y.shadow,...x.x}},8482:function(V,W,d){"use strict";d.d(W,{Z:function(){return x}});var c=d(74512);const y=b=>(0,c.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...b,children:(0,c.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"})}),x=y},45112:function(V,W,d){"use strict";d.d(W,{Z:function(){return x}});var c=d(74512);const y=b=>(0,c.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...b,children:(0,c.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"})}),x=y},2287:function(V,W,d){"use strict";d.d(W,{Z:function(){return x}});var c=d(74512);const y=b=>(0,c.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 25 25",...b,children:(0,c.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"})}),x=y},36919:function(V,W,d){"use strict";d.d(W,{Z:function(){return x}});var c=d(74512);const y=b=>(0,c.jsx)("svg",{xmlns:"http://www.w3.org/2000/svg",width:"1rem",height:"1rem",fill:"none",viewBox:"0 0 24 24",...b,children:(0,c.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"})}),x=y}}]);