svelte 5.43.5 → 5.43.7
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/compiler/index.js +1 -1
- package/package.json +1 -1
- package/src/compiler/phases/1-parse/state/element.js +5 -0
- package/src/compiler/phases/2-analyze/visitors/Component.js +6 -0
- package/src/compiler/phases/2-analyze/visitors/SvelteComponent.js +1 -1
- package/src/compiler/phases/3-transform/client/visitors/TitleElement.js +3 -4
- package/src/compiler/phases/3-transform/client/visitors/shared/component.js +5 -0
- package/src/compiler/phases/3-transform/server/visitors/shared/component.js +13 -4
- package/src/internal/client/index.js +1 -0
- package/src/internal/client/reactivity/batch.js +32 -2
- package/src/internal/client/reactivity/effects.js +22 -4
- package/src/version.js +1 -1
- package/types/index.d.ts.map +1 -1
package/package.json
CHANGED
|
@@ -242,6 +242,10 @@ export default function element(parser) {
|
|
|
242
242
|
parser.allow_whitespace();
|
|
243
243
|
}
|
|
244
244
|
|
|
245
|
+
if (element.type === 'Component') {
|
|
246
|
+
element.metadata.expression = new ExpressionMetadata();
|
|
247
|
+
}
|
|
248
|
+
|
|
245
249
|
if (element.type === 'SvelteComponent') {
|
|
246
250
|
const index = element.attributes.findIndex(
|
|
247
251
|
/** @param {any} attr */
|
|
@@ -257,6 +261,7 @@ export default function element(parser) {
|
|
|
257
261
|
}
|
|
258
262
|
|
|
259
263
|
element.expression = get_attribute_expression(definition);
|
|
264
|
+
element.metadata.expression = new ExpressionMetadata();
|
|
260
265
|
}
|
|
261
266
|
|
|
262
267
|
if (element.type === 'SvelteElement') {
|
|
@@ -16,5 +16,11 @@ export function Component(node, context) {
|
|
|
16
16
|
binding !== null &&
|
|
17
17
|
(binding.kind !== 'normal' || node.name.includes('.'));
|
|
18
18
|
|
|
19
|
+
if (binding) {
|
|
20
|
+
node.metadata.expression.has_state = node.metadata.dynamic;
|
|
21
|
+
node.metadata.expression.dependencies.add(binding);
|
|
22
|
+
node.metadata.expression.references.add(binding);
|
|
23
|
+
}
|
|
24
|
+
|
|
19
25
|
visit_component(node, context);
|
|
20
26
|
}
|
|
@@ -12,7 +12,7 @@ export function SvelteComponent(node, context) {
|
|
|
12
12
|
w.svelte_component_deprecated(node);
|
|
13
13
|
}
|
|
14
14
|
|
|
15
|
-
context.visit(node.expression);
|
|
15
|
+
context.visit(node.expression, { ...context.state, expression: node.metadata.expression });
|
|
16
16
|
|
|
17
17
|
visit_component(node, context);
|
|
18
18
|
}
|
|
@@ -29,17 +29,16 @@ export function TitleElement(node, context) {
|
|
|
29
29
|
)
|
|
30
30
|
);
|
|
31
31
|
|
|
32
|
-
//
|
|
32
|
+
// Make sure it only changes the title once async work is done
|
|
33
33
|
if (has_state) {
|
|
34
34
|
context.state.after_update.push(
|
|
35
35
|
b.stmt(
|
|
36
36
|
b.call(
|
|
37
|
-
'$.
|
|
37
|
+
'$.deferred_template_effect',
|
|
38
38
|
b.arrow(memoizer.apply(), b.block([statement])),
|
|
39
39
|
memoizer.sync_values(),
|
|
40
40
|
memoizer.async_values(),
|
|
41
|
-
memoizer.blockers()
|
|
42
|
-
b.true
|
|
41
|
+
memoizer.blockers()
|
|
43
42
|
)
|
|
44
43
|
)
|
|
45
44
|
);
|
|
@@ -451,6 +451,11 @@ export function build_component(node, component_name, context) {
|
|
|
451
451
|
};
|
|
452
452
|
}
|
|
453
453
|
|
|
454
|
+
if (node.type !== 'SvelteSelf') {
|
|
455
|
+
// Component name itself could be blocked on async values
|
|
456
|
+
memoizer.check_blockers(node.metadata.expression);
|
|
457
|
+
}
|
|
458
|
+
|
|
454
459
|
const statements = [...snippet_declarations, ...memoizer.deriveds(context.state.analysis.runes)];
|
|
455
460
|
|
|
456
461
|
if (is_component_dynamic) {
|
|
@@ -325,17 +325,26 @@ export function build_inline_component(node, expression, context) {
|
|
|
325
325
|
);
|
|
326
326
|
}
|
|
327
327
|
|
|
328
|
+
if (node.type !== 'SvelteSelf') {
|
|
329
|
+
// Component name itself could be blocked on async values
|
|
330
|
+
optimiser.check_blockers(node.metadata.expression);
|
|
331
|
+
}
|
|
332
|
+
|
|
328
333
|
const is_async = optimiser.is_async();
|
|
329
334
|
|
|
330
335
|
if (is_async) {
|
|
331
336
|
statement = create_async_block(
|
|
332
|
-
b.block([
|
|
337
|
+
b.block([
|
|
338
|
+
optimiser.apply(),
|
|
339
|
+
dynamic && custom_css_props.length === 0
|
|
340
|
+
? b.stmt(b.call('$$renderer.push', empty_comment))
|
|
341
|
+
: b.empty,
|
|
342
|
+
statement
|
|
343
|
+
]),
|
|
333
344
|
optimiser.blockers(),
|
|
334
345
|
optimiser.has_await
|
|
335
346
|
);
|
|
336
|
-
}
|
|
337
|
-
|
|
338
|
-
if (dynamic && custom_css_props.length === 0) {
|
|
347
|
+
} else if (dynamic && custom_css_props.length === 0) {
|
|
339
348
|
context.state.template.push(empty_comment);
|
|
340
349
|
}
|
|
341
350
|
|
|
@@ -16,7 +16,8 @@ import {
|
|
|
16
16
|
BOUNDARY_EFFECT,
|
|
17
17
|
EAGER_EFFECT,
|
|
18
18
|
HEAD_EFFECT,
|
|
19
|
-
ERROR_VALUE
|
|
19
|
+
ERROR_VALUE,
|
|
20
|
+
WAS_MARKED
|
|
20
21
|
} from '#client/constants';
|
|
21
22
|
import { async_mode_flag } from '../../flags/index.js';
|
|
22
23
|
import { deferred, define_property } from '../../shared/utils.js';
|
|
@@ -144,6 +145,10 @@ export class Batch {
|
|
|
144
145
|
|
|
145
146
|
is_fork = false;
|
|
146
147
|
|
|
148
|
+
is_deferred() {
|
|
149
|
+
return this.is_fork || this.#blocking_pending > 0;
|
|
150
|
+
}
|
|
151
|
+
|
|
147
152
|
/**
|
|
148
153
|
*
|
|
149
154
|
* @param {Effect[]} root_effects
|
|
@@ -172,7 +177,7 @@ export class Batch {
|
|
|
172
177
|
this.#resolve();
|
|
173
178
|
}
|
|
174
179
|
|
|
175
|
-
if (this
|
|
180
|
+
if (this.is_deferred()) {
|
|
176
181
|
this.#defer_effects(target.effects);
|
|
177
182
|
this.#defer_effects(target.render_effects);
|
|
178
183
|
this.#defer_effects(target.block_effects);
|
|
@@ -270,11 +275,32 @@ export class Batch {
|
|
|
270
275
|
const target = (e.f & DIRTY) !== 0 ? this.#dirty_effects : this.#maybe_dirty_effects;
|
|
271
276
|
target.push(e);
|
|
272
277
|
|
|
278
|
+
// Since we're not executing these effects now, we need to clear any WAS_MARKED flags
|
|
279
|
+
// so that other batches can correctly reach these effects during their own traversal
|
|
280
|
+
this.#clear_marked(e.deps);
|
|
281
|
+
|
|
273
282
|
// mark as clean so they get scheduled if they depend on pending async state
|
|
274
283
|
set_signal_status(e, CLEAN);
|
|
275
284
|
}
|
|
276
285
|
}
|
|
277
286
|
|
|
287
|
+
/**
|
|
288
|
+
* @param {Value[] | null} deps
|
|
289
|
+
*/
|
|
290
|
+
#clear_marked(deps) {
|
|
291
|
+
if (deps === null) return;
|
|
292
|
+
|
|
293
|
+
for (const dep of deps) {
|
|
294
|
+
if ((dep.f & DERIVED) === 0 || (dep.f & WAS_MARKED) === 0) {
|
|
295
|
+
continue;
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
dep.f ^= WAS_MARKED;
|
|
299
|
+
|
|
300
|
+
this.#clear_marked(/** @type {Derived} */ (dep).deps);
|
|
301
|
+
}
|
|
302
|
+
}
|
|
303
|
+
|
|
278
304
|
/**
|
|
279
305
|
* Associate a change to a given source with the current
|
|
280
306
|
* batch, noting its previous and current values
|
|
@@ -299,6 +325,10 @@ export class Batch {
|
|
|
299
325
|
}
|
|
300
326
|
|
|
301
327
|
deactivate() {
|
|
328
|
+
// If we're not the current batch, don't deactivate,
|
|
329
|
+
// else we could create zombie batches that are never flushed
|
|
330
|
+
if (current_batch !== this) return;
|
|
331
|
+
|
|
302
332
|
current_batch = null;
|
|
303
333
|
batch_values = null;
|
|
304
334
|
}
|
|
@@ -40,7 +40,7 @@ import { DEV } from 'esm-env';
|
|
|
40
40
|
import { define_property } from '../../shared/utils.js';
|
|
41
41
|
import { get_next_sibling } from '../dom/operations.js';
|
|
42
42
|
import { component_context, dev_current_component_function, dev_stack } from '../context.js';
|
|
43
|
-
import { Batch, schedule_effect } from './batch.js';
|
|
43
|
+
import { Batch, current_batch, schedule_effect } from './batch.js';
|
|
44
44
|
import { flatten } from './async.js';
|
|
45
45
|
import { without_reactive_context } from '../dom/elements/bindings/shared.js';
|
|
46
46
|
|
|
@@ -366,11 +366,29 @@ export function render_effect(fn, flags = 0) {
|
|
|
366
366
|
* @param {Array<() => any>} sync
|
|
367
367
|
* @param {Array<() => Promise<any>>} async
|
|
368
368
|
* @param {Array<Promise<void>>} blockers
|
|
369
|
-
* @param {boolean} defer
|
|
370
369
|
*/
|
|
371
|
-
export function template_effect(fn, sync = [], async = [], blockers = []
|
|
370
|
+
export function template_effect(fn, sync = [], async = [], blockers = []) {
|
|
372
371
|
flatten(blockers, sync, async, (values) => {
|
|
373
|
-
create_effect(
|
|
372
|
+
create_effect(RENDER_EFFECT, () => fn(...values.map(get)), true);
|
|
373
|
+
});
|
|
374
|
+
}
|
|
375
|
+
|
|
376
|
+
/**
|
|
377
|
+
* Like `template_effect`, but with an effect which is deferred until the batch commits
|
|
378
|
+
* @param {(...expressions: any) => void | (() => void)} fn
|
|
379
|
+
* @param {Array<() => any>} sync
|
|
380
|
+
* @param {Array<() => Promise<any>>} async
|
|
381
|
+
* @param {Array<Promise<void>>} blockers
|
|
382
|
+
*/
|
|
383
|
+
export function deferred_template_effect(fn, sync = [], async = [], blockers = []) {
|
|
384
|
+
var batch = /** @type {Batch} */ (current_batch);
|
|
385
|
+
var is_async = async.length > 0 || blockers.length > 0;
|
|
386
|
+
|
|
387
|
+
if (is_async) batch.increment(true);
|
|
388
|
+
|
|
389
|
+
flatten(blockers, sync, async, (values) => {
|
|
390
|
+
create_effect(EFFECT, () => fn(...values.map(get)), false);
|
|
391
|
+
if (is_async) batch.decrement(true);
|
|
374
392
|
});
|
|
375
393
|
}
|
|
376
394
|
|
package/src/version.js
CHANGED
package/types/index.d.ts.map
CHANGED
|
@@ -263,6 +263,6 @@
|
|
|
263
263
|
null,
|
|
264
264
|
null
|
|
265
265
|
],
|
|
266
|
-
"mappings": ";;;;;;;kBAUiBA,2BAA2BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkC/BC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAwEhBC,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;kBAwBbC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoCbC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;aAwBrBC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAiCfC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA6BdC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;kBAuBRC,OAAOA;;;;;;;;;;;;;;;;kBAgBPC,eAAeA;;;;;;;;;;;;;;;;aAgBpBC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA0CPC,IAAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCnSLC,cAAcA;;;;;;;;;;;;iBAsBdC,OAAOA;;;;;;;;iBAwBPC,SAASA;;;;;;;;;;;;;;;;;;;;;;iBA0CTC,qBAAqBA;;;;;;;;;;iBA2CrBC,YAAYA;;;;;;;;;;iBAuBZC,WAAWA;;;;iBCtJXC,gBAAgBA;;;;;MCvEpBC,WAAWA;;;;;
|
|
266
|
+
"mappings": ";;;;;;;kBAUiBA,2BAA2BA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAkC/BC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAwEhBC,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;kBAwBbC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAoCbC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;aAwBrBC,eAAeA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aAiCfC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aA6BdC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;kBAuBRC,OAAOA;;;;;;;;;;;;;;;;kBAgBPC,eAAeA;;;;;;;;;;;;;;;;aAgBpBC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA0CPC,IAAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCnSLC,cAAcA;;;;;;;;;;;;iBAsBdC,OAAOA;;;;;;;;iBAwBPC,SAASA;;;;;;;;;;;;;;;;;;;;;;iBA0CTC,qBAAqBA;;;;;;;;;;iBA2CrBC,YAAYA;;;;;;;;;;iBAuBZC,WAAWA;;;;iBCtJXC,gBAAgBA;;;;;MCvEpBC,WAAWA;;;;;iBC0iBPC,SAASA;;;;;;;;;;;;;;;;;;iBAkXTC,IAAIA;;;;;;;;iBC70BJC,aAAaA;;;;;;;;iBAyBbC,UAAUA;;;;;;;;;;;iBAoBVC,UAAUA;;;;;;iBA2BVC,UAAUA;;;;;;;iBAaVC,cAAcA;;;;;;iBCnGdC,KAAKA;;;;;iBA2BLC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBA+MPC,OAAOA;;;;;;iBC+JDC,IAAIA;;;;;;iBAwBVC,OAAOA;;;;;;;;;;;;;;iBA0NPC,OAAOA;MCxrBXC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBCqBFC,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA6BZC,MAAMA;;;;;;;;;;;;;;;;;;;;kBCtDNC,eAAeA;;;;;;;;kBAQfC,UAAUA;;;;;;;;;;iBCGXC,IAAIA;;;;;;;;;;;;;;;;kBCLHC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;iBCsBXC,mBAAmBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WJHlBN,YAAYA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA6BZC,MAAMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBKnCPM,OAAOA;;;;;;iBA2CPC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBAsGbC,IAAIA;;;;kBClKHC,SAASA;;;;;;;;;;;;;;;;;;;;;;;aAuBdC,kBAAkBA;;;;;;;;;;;;;;aAclBC,YAAYA;;;;;;;;;;;;;;;;;;;;;;kBAsBPC,iBAAiBA;;;;;;;;kBCjDjBC,aAAaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAsCbC,OAAOA;;kBAEPC,YAAYA;;MAEjBC,aAAaA;;;;;;;kBAWRC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBAmIdC,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MC3KzBC,SAASA;;kBAEJC,GAAGA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCqTUC,UAAUA;;;;;;cC3U3BC,OAAOA;;;;;;iBCqHJC,OAAOA;;;;;;;;;;;;;;;;WCzHNC,IAAIA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCOLC,MAAMA;;iBAQNC,SAASA;;iBAUTC,MAAMA;;iBASNC,OAAOA;;iBASPC,SAASA;;iBAqBTC,WAAWA;;iBAQXC,QAAQA;;iBAQRC,SAASA;;iBASTC,MAAMA;;iBAQNC,OAAOA;;iBAQPC,UAAUA;;iBAQVC,OAAOA;;iBAQPC,QAAQA;;iBASRC,YAAYA;;iBAaZC,SAASA;;iBAQTC,UAAUA;;iBAQVC,SAASA;;iBAYTC,MAAMA;;iBAQNC,OAAOA;;iBAQPC,SAASA;;iBAWTC,MAAMA;;iBAQNC,OAAOA;;iBAQPC,UAAUA;;iBAQVC,OAAOA;;iBAQPC,QAAQA;;iBAQRC,UAAUA;;iBASVC,OAAOA;;iBAQPC,QAAQA;;iBAQRC,SAASA;;iBAQTC,MAAMA;;iBAUNC,OAAOA;;;;;;;;;;;;;iBC7PPC,oBAAoBA;;;;;;;;;iBAkBpBC,gBAAgBA;;;;;;iBA2IhBC,GAAGA;;;;;iBAuBHC,QAAQA;;;;;iBAqCRC,aAAaA;;;;aAxLkKC,mBAAmBA;;;;;;;;iBCrDlMC,OAAOA;;;;;iBAgBPC,IAAIA;;;;;iBAiBJC,eAAeA;;;;;iBAefC,IAAIA;;;;;iBAkBJC,wBAAwBA;;;;;iBAexBC,cAAcA;;;;;iBAedC,OAAOA;;;;;iBAcPC,UAAUA;;;;;;;;;;;kBClFbC,MAAMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cAANA,MAAMA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;kBA4CFC,OAAOA;;;;;MCjFZC,UAAUA;;;MAGVC,YAAYA;;;WAoBPC,QAAQA;;;;;;;;WCbRC,UAAUA;;;;;;WAMVC,gBAAgBA;;;;;;;;;;;;;;;;;;;MAmBrBC,OAAOA;;WAEFC,cAAcA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCTlBC,oBAAoBA;;;;;;iBCsCjBC,MAAMA;;;;;;iBCsBNC,OAAOA;;;;;;;;;;;;;;;;;cAyFVC,KAAKA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCzILC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCKVC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCMTC,SAASA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;cCXTC,SAASA;;;;OCnCTC,OAAOA;;;;;;;;;;;;;;;;;;;;;;;;;;;cA4BPC,qBAAqBA;;;;;;;;;;;;;;;;;;;;;;;cCErBC,UAAUA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBCiBPC,gBAAgBA;OChDnBC,aAAaA;;;;;;;;;;;;;;;cCMbC,OAAOA;;;;;cASPC,OAAOA;;;;;cASPC,UAAUA;;;;;cASVC,WAAWA;;;;;cASXC,UAAUA;;;;;cASVC,WAAWA;;;;;cASXC,UAAUA;;;;;cAuBVC,SAASA;;;;;cAuBTC,MAAMA;;;;;;;cAmBNC,gBAAgBA;;;OD7HhBV,aAAaA;;;;;;;;;;;;;;;;iBEEVW,MAAMA;;;;;;;;;;;;;;;;;;;;;;WCSLC,gBAAgBA;;;;;;;;;MASrBC,YAAYA;;;;;;;afxBZhC,UAAUA;;;aAGVC,YAAYA;;;aAGZI,OAAOA;;;;;;;;;;;aAWP4B,iBAAiBA;;;;;;kBAMZ/B,QAAQA;;;;;;;;;;kBAURgC,QAAQA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;iBgBfTC,QAAQA;;;;;;iBAcRC,QAAQA;;;;;;;;;;;;;;;;;;iBA4JRC,QAAQA;;;;;iBAcRC,GAAGA;;;;;;;;;;;;aC3MPC,cAAcA;;kBAETC,gBAAgBA;;;;;;;;kBAQhBC,UAAUA;;;;;;;;kBAQVC,UAAUA;;;;;;kBAMVC,SAASA;;;;;;;;;kBASTC,WAAWA;;;;;;;kBAOXC,WAAWA;;;;;;;;kBAQXC,UAAUA;;;;;;;kBAOVC,eAAeA;;;;;;;;;iBClBhBC,IAAIA;;;;;iBAwBJC,IAAIA;;;;;iBAiBJC,GAAGA;;;;;iBA6BHC,KAAKA;;;;;iBAmDLC,KAAKA;;;;;iBA2BLC,IAAIA;;;;;;;iBA+CJC,SAASA;;;;;;;;;;;;;;;;;;;iBCrLTC,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;iBAAFA,EAAEA;;;;;;;;;;;;a9BzBNrH,kBAAkBA;;aAclBC,YAAYA;;aAsBPC,iBAAiBA;;aA3DjBH,SAASA;;aAuETuH,kBAAkBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;aCRlB/G,cAAcA;;aAfdH,OAAOA;;;MAIZE,aAAaA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;WA8IRE,oBAAoBA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;MC3KzBC,SAASA",
|
|
267
267
|
"ignoreList": []
|
|
268
268
|
}
|