proto-logo-wc 0.1.38 → 0.1.40

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.
@@ -0,0 +1,5 @@
1
+ 'use strict';
2
+
3
+ const globalScripts = () => {};
4
+
5
+ exports.globalScripts = globalScripts;
@@ -3,11 +3,8 @@
3
3
  const NAMESPACE = 'proto-logo-wc';
4
4
  const BUILD = /* proto-logo-wc */ { hydratedSelectorName: "hydrated", lazyLoad: true, updatable: true, watchCallback: false };
5
5
 
6
- const globalScripts = () => {};
7
- const globalStyles = "";
8
-
9
6
  /*
10
- Stencil Client Platform v4.35.1 | MIT Licensed | https://stenciljs.com
7
+ Stencil Client Platform v4.36.1 | MIT Licensed | https://stenciljs.com
11
8
  */
12
9
  var __defProp = Object.defineProperty;
13
10
  var __export = (target, all) => {
@@ -104,6 +101,7 @@ var supportsConstructableStylesheets = /* @__PURE__ */ (() => {
104
101
  }
105
102
  return false;
106
103
  })() ;
104
+ var supportsMutableAdoptedStyleSheets = supportsConstructableStylesheets ? /* @__PURE__ */ (() => !!win.document && Object.getOwnPropertyDescriptor(win.document.adoptedStyleSheets, "length").writable)() : false;
107
105
  var queuePending = false;
108
106
  var queueDomReads = [];
109
107
  var queueDomWrites = [];
@@ -203,12 +201,24 @@ var unwrapErr = (result) => {
203
201
  throw result.value;
204
202
  }
205
203
  };
204
+
205
+ // src/utils/style.ts
206
+ function createStyleSheetIfNeededAndSupported(styles2) {
207
+ return void 0;
208
+ }
209
+
210
+ // src/utils/shadow-root.ts
211
+ var globalStyleSheet;
206
212
  function createShadowRoot(cmpMeta) {
213
+ var _a;
207
214
  const shadowRoot = this.attachShadow({ mode: "open" });
208
- if (supportsConstructableStylesheets) {
209
- const sheet = new CSSStyleSheet();
210
- sheet.replaceSync(globalStyles);
211
- shadowRoot.adoptedStyleSheets.push(sheet);
215
+ if (globalStyleSheet === void 0) globalStyleSheet = (_a = createStyleSheetIfNeededAndSupported()) != null ? _a : null;
216
+ if (globalStyleSheet) {
217
+ if (supportsMutableAdoptedStyleSheets) {
218
+ shadowRoot.adoptedStyleSheets.push(globalStyleSheet);
219
+ } else {
220
+ shadowRoot.adoptedStyleSheets = [...shadowRoot.adoptedStyleSheets, globalStyleSheet];
221
+ }
212
222
  }
213
223
  }
214
224
  var createTime = (fnName, tagName = "") => {
@@ -225,93 +235,6 @@ var uniqueTime = (key, measureText) => {
225
235
  };
226
236
  }
227
237
  };
228
- var h = (nodeName, vnodeData, ...children) => {
229
- let child = null;
230
- let key = null;
231
- let simple = false;
232
- let lastSimple = false;
233
- const vNodeChildren = [];
234
- const walk = (c) => {
235
- for (let i2 = 0; i2 < c.length; i2++) {
236
- child = c[i2];
237
- if (Array.isArray(child)) {
238
- walk(child);
239
- } else if (child != null && typeof child !== "boolean") {
240
- if (simple = typeof nodeName !== "function" && !isComplexType(child)) {
241
- child = String(child);
242
- }
243
- if (simple && lastSimple) {
244
- vNodeChildren[vNodeChildren.length - 1].$text$ += child;
245
- } else {
246
- vNodeChildren.push(simple ? newVNode(null, child) : child);
247
- }
248
- lastSimple = simple;
249
- }
250
- }
251
- };
252
- walk(children);
253
- if (vnodeData) {
254
- if (vnodeData.key) {
255
- key = vnodeData.key;
256
- }
257
- }
258
- const vnode = newVNode(nodeName, null);
259
- vnode.$attrs$ = vnodeData;
260
- if (vNodeChildren.length > 0) {
261
- vnode.$children$ = vNodeChildren;
262
- }
263
- {
264
- vnode.$key$ = key;
265
- }
266
- return vnode;
267
- };
268
- var newVNode = (tag, text) => {
269
- const vnode = {
270
- $flags$: 0,
271
- $tag$: tag,
272
- $text$: text,
273
- $elm$: null,
274
- $children$: null
275
- };
276
- {
277
- vnode.$attrs$ = null;
278
- }
279
- {
280
- vnode.$key$ = null;
281
- }
282
- return vnode;
283
- };
284
- var Host = {};
285
- var isHost = (node) => node && node.$tag$ === Host;
286
- var createSupportsRuleRe = (selector) => {
287
- const safeSelector2 = escapeRegExpSpecialCharacters(selector);
288
- return new RegExp(
289
- // First capture group: match any context before the selector that's not inside @supports selector()
290
- // Using negative lookahead to avoid matching inside @supports selector(...) condition
291
- `(^|[^@]|@(?!supports\\s+selector\\s*\\([^{]*?${safeSelector2}))(${safeSelector2}\\b)`,
292
- "g"
293
- );
294
- };
295
- createSupportsRuleRe("::slotted");
296
- createSupportsRuleRe(":host");
297
- createSupportsRuleRe(":host-context");
298
- var parsePropertyValue = (propValue, propType, isFormAssociated) => {
299
- if (propValue != null && !isComplexType(propValue)) {
300
- if (propType & 2 /* Number */) {
301
- return typeof propValue === "string" ? parseFloat(propValue) : typeof propValue === "number" ? propValue : NaN;
302
- }
303
- if (propType & 1 /* String */) {
304
- return String(propValue);
305
- }
306
- return propValue;
307
- }
308
- return propValue;
309
- };
310
- var emitEvent = (elm, name, opts) => {
311
- const ev = plt.ce(name, opts);
312
- elm.dispatchEvent(ev);
313
- return ev;
314
- };
315
238
  var rootAppliedStyles = /* @__PURE__ */ new WeakMap();
316
239
  var registerStyle = (scopeId2, cssText, allowCS) => {
317
240
  let style = styles.get(scopeId2);
@@ -363,7 +286,11 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
363
286
  if (supportsConstructableStylesheets) {
364
287
  const stylesheet = new CSSStyleSheet();
365
288
  stylesheet.replaceSync(style);
366
- styleContainerNode.adoptedStyleSheets = [stylesheet, ...styleContainerNode.adoptedStyleSheets];
289
+ if (supportsMutableAdoptedStyleSheets) {
290
+ styleContainerNode.adoptedStyleSheets.unshift(stylesheet);
291
+ } else {
292
+ styleContainerNode.adoptedStyleSheets = [stylesheet, ...styleContainerNode.adoptedStyleSheets];
293
+ }
367
294
  } else {
368
295
  const existingStyleContainer = styleContainerNode.querySelector("style");
369
296
  if (existingStyleContainer) {
@@ -388,7 +315,11 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
388
315
  }
389
316
  }
390
317
  } else if (!styleContainerNode.adoptedStyleSheets.includes(style)) {
391
- styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
318
+ if (supportsMutableAdoptedStyleSheets) {
319
+ styleContainerNode.adoptedStyleSheets.push(style);
320
+ } else {
321
+ styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
322
+ }
392
323
  }
393
324
  }
394
325
  return scopeId2;
@@ -408,6 +339,93 @@ var attachStyles = (hostRef) => {
408
339
  endAttachStyles();
409
340
  };
410
341
  var getScopeId = (cmp, mode) => "sc-" + (cmp.$tagName$);
342
+ var h = (nodeName, vnodeData, ...children) => {
343
+ let child = null;
344
+ let key = null;
345
+ let simple = false;
346
+ let lastSimple = false;
347
+ const vNodeChildren = [];
348
+ const walk = (c) => {
349
+ for (let i2 = 0; i2 < c.length; i2++) {
350
+ child = c[i2];
351
+ if (Array.isArray(child)) {
352
+ walk(child);
353
+ } else if (child != null && typeof child !== "boolean") {
354
+ if (simple = typeof nodeName !== "function" && !isComplexType(child)) {
355
+ child = String(child);
356
+ }
357
+ if (simple && lastSimple) {
358
+ vNodeChildren[vNodeChildren.length - 1].$text$ += child;
359
+ } else {
360
+ vNodeChildren.push(simple ? newVNode(null, child) : child);
361
+ }
362
+ lastSimple = simple;
363
+ }
364
+ }
365
+ };
366
+ walk(children);
367
+ if (vnodeData) {
368
+ if (vnodeData.key) {
369
+ key = vnodeData.key;
370
+ }
371
+ }
372
+ const vnode = newVNode(nodeName, null);
373
+ vnode.$attrs$ = vnodeData;
374
+ if (vNodeChildren.length > 0) {
375
+ vnode.$children$ = vNodeChildren;
376
+ }
377
+ {
378
+ vnode.$key$ = key;
379
+ }
380
+ return vnode;
381
+ };
382
+ var newVNode = (tag, text) => {
383
+ const vnode = {
384
+ $flags$: 0,
385
+ $tag$: tag,
386
+ $text$: text,
387
+ $elm$: null,
388
+ $children$: null
389
+ };
390
+ {
391
+ vnode.$attrs$ = null;
392
+ }
393
+ {
394
+ vnode.$key$ = null;
395
+ }
396
+ return vnode;
397
+ };
398
+ var Host = {};
399
+ var isHost = (node) => node && node.$tag$ === Host;
400
+ var createSupportsRuleRe = (selector) => {
401
+ const safeSelector2 = escapeRegExpSpecialCharacters(selector);
402
+ return new RegExp(
403
+ // First capture group: match any context before the selector that's not inside @supports selector()
404
+ // Using negative lookahead to avoid matching inside @supports selector(...) condition
405
+ `(^|[^@]|@(?!supports\\s+selector\\s*\\([^{]*?${safeSelector2}))(${safeSelector2}\\b)`,
406
+ "g"
407
+ );
408
+ };
409
+ createSupportsRuleRe("::slotted");
410
+ createSupportsRuleRe(":host");
411
+ createSupportsRuleRe(":host-context");
412
+ var parsePropertyValue = (propValue, propType, isFormAssociated) => {
413
+ if (propValue != null && !isComplexType(propValue)) {
414
+ if (propType & 2 /* Number */) {
415
+ return typeof propValue === "string" ? parseFloat(propValue) : typeof propValue === "number" ? propValue : NaN;
416
+ }
417
+ if (propType & 1 /* String */) {
418
+ return String(propValue);
419
+ }
420
+ return propValue;
421
+ }
422
+ return propValue;
423
+ };
424
+ var emitEvent = (elm, name, opts) => {
425
+ const ev = plt.ce(name, opts);
426
+ elm.dispatchEvent(ev);
427
+ return ev;
428
+ };
411
429
  var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags, initialRender) => {
412
430
  if (oldValue === newValue) {
413
431
  return;
@@ -676,7 +694,7 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
676
694
  !isInitialRender && BUILD.updatable && oldChildren !== null
677
695
  ) {
678
696
  removeVnodes(oldChildren, 0, oldChildren.length - 1);
679
- }
697
+ } else ;
680
698
  if (isSvgMode && tag === "svg") {
681
699
  isSvgMode = false;
682
700
  }
@@ -730,6 +748,12 @@ var scheduleUpdate = (hostRef, isInitialLoad) => {
730
748
  }
731
749
  attachToAncestor(hostRef, hostRef.$ancestorComponent$);
732
750
  const dispatch = () => dispatchHooks(hostRef, isInitialLoad);
751
+ if (isInitialLoad) {
752
+ queueMicrotask(() => {
753
+ dispatch();
754
+ });
755
+ return;
756
+ }
733
757
  return writeTask(dispatch) ;
734
758
  };
735
759
  var dispatchHooks = (hostRef, isInitialLoad) => {
@@ -864,6 +888,9 @@ var addHydratedFlag = (elm) => {
864
888
  var getValue = (ref, propName) => getHostRef(ref).$instanceValues$.get(propName);
865
889
  var setValue = (ref, propName, newVal, cmpMeta) => {
866
890
  const hostRef = getHostRef(ref);
891
+ if (!hostRef) {
892
+ return;
893
+ }
867
894
  if (!hostRef) {
868
895
  throw new Error(
869
896
  `Couldn't find host element for "${cmpMeta.$tagName$}" as it is unknown to this Stencil runtime. This usually happens when integrating a 3rd party Stencil component with another Stencil component or application. Please reach out to the maintainers of the 3rd party Stencil component or report this on the Stencil Discord server (https://chat.stenciljs.com) or comment on this similar [GitHub issue](https://github.com/stenciljs/core/issues/5457).`
@@ -923,6 +950,9 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
923
950
  Object.defineProperty(prototype, memberName, {
924
951
  set(newValue) {
925
952
  const ref = getHostRef(this);
953
+ if (!ref) {
954
+ return;
955
+ }
926
956
  if (origSetter) {
927
957
  const currentValue = memberFlags & 32 /* State */ ? this[memberName] : ref.$hostElement$[memberName];
928
958
  if (typeof currentValue === "undefined" && ref.$instanceValues$.get(memberName)) {
@@ -986,7 +1016,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
986
1016
  } else if (propName == null) {
987
1017
  const hostRef = getHostRef(this);
988
1018
  const flags2 = hostRef == null ? void 0 : hostRef.$flags$;
989
- if (flags2 && !(flags2 & 8 /* isConstructingInstance */) && flags2 & 128 /* isWatchReady */ && newValue !== oldValue) {
1019
+ if (hostRef && flags2 && !(flags2 & 8 /* isConstructingInstance */) && flags2 & 128 /* isWatchReady */ && newValue !== oldValue) {
990
1020
  const instance = hostRef.$lazyInstance$ ;
991
1021
  const entry = (_a2 = cmpMeta.$watchers$) == null ? void 0 : _a2[attrName];
992
1022
  entry == null ? void 0 : entry.forEach((callbackName) => {
@@ -1091,6 +1121,9 @@ var fireConnectedCallback = (instance, elm) => {
1091
1121
  var connectedCallback = (elm) => {
1092
1122
  if ((plt.$flags$ & 1 /* isTmpDisconnected */) === 0) {
1093
1123
  const hostRef = getHostRef(elm);
1124
+ if (!hostRef) {
1125
+ return;
1126
+ }
1094
1127
  const cmpMeta = hostRef.$cmpMeta$;
1095
1128
  const endConnected = createTime("connectedCallback", cmpMeta.$tagName$);
1096
1129
  if (!(hostRef.$flags$ & 1 /* hasConnected */)) {
@@ -1205,7 +1238,10 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
1205
1238
  }
1206
1239
  }
1207
1240
  connectedCallback() {
1208
- getHostRef(this);
1241
+ const hostRef = getHostRef(this);
1242
+ if (!hostRef) {
1243
+ return;
1244
+ }
1209
1245
  if (!this.hasRegisteredEventListeners) {
1210
1246
  this.hasRegisteredEventListeners = true;
1211
1247
  }
@@ -1224,6 +1260,9 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
1224
1260
  plt.raf(() => {
1225
1261
  var _a3;
1226
1262
  const hostRef = getHostRef(this);
1263
+ if (!hostRef) {
1264
+ return;
1265
+ }
1227
1266
  const i2 = deferredConnectedCallbacks.findIndex((host) => host === this);
1228
1267
  if (i2 > -1) {
1229
1268
  deferredConnectedCallbacks.splice(i2, 1);
@@ -1234,7 +1273,8 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
1234
1273
  });
1235
1274
  }
1236
1275
  componentOnReady() {
1237
- return getHostRef(this).$onReadyPromise$;
1276
+ var _a3;
1277
+ return (_a3 = getHostRef(this)) == null ? void 0 : _a3.$onReadyPromise$;
1238
1278
  }
1239
1279
  };
1240
1280
  cmpMeta.$lazyBundleId$ = lazyBundle[0];
@@ -1278,7 +1318,6 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
1278
1318
  var setNonce = (nonce) => plt.$nonce$ = nonce;
1279
1319
 
1280
1320
  exports.bootstrapLazy = bootstrapLazy;
1281
- exports.globalScripts = globalScripts;
1282
1321
  exports.h = h;
1283
1322
  exports.promiseResolve = promiseResolve;
1284
1323
  exports.registerInstance = registerInstance;
@@ -1,11 +1,12 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-DZ72Ycxa.js');
3
+ var index = require('./index-C6B2a0WN.js');
4
+ var appGlobals = require('./app-globals-V2Kpy_OQ.js');
4
5
 
5
6
  const defineCustomElements = async (win, options) => {
6
7
  if (typeof window === 'undefined') return undefined;
7
- await index.globalScripts();
8
- return index.bootstrapLazy([["my-logo.cjs",[[1,"my-logo",{"fill":[1],"stroke":[1],"opacity":[2],"size":[2]}]]]], options);
8
+ await appGlobals.globalScripts();
9
+ return index.bootstrapLazy([["my-logo.cjs",[[257,"my-logo",{"fill":[1],"stroke":[1],"opacity":[2],"size":[2]}]]]], options);
9
10
  };
10
11
 
11
12
  exports.setNonce = index.setNonce;
@@ -1,6 +1,6 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-DZ72Ycxa.js');
3
+ var index = require('./index-C6B2a0WN.js');
4
4
 
5
5
  const myLogoCss = "my-logo{}";
6
6
 
@@ -1,10 +1,11 @@
1
1
  'use strict';
2
2
 
3
- var index = require('./index-DZ72Ycxa.js');
3
+ var index = require('./index-C6B2a0WN.js');
4
+ var appGlobals = require('./app-globals-V2Kpy_OQ.js');
4
5
 
5
6
  var _documentCurrentScript = typeof document !== 'undefined' ? document.currentScript : null;
6
7
  /*
7
- Stencil Client Patch Browser v4.35.1 | MIT Licensed | https://stenciljs.com
8
+ Stencil Client Patch Browser v4.36.1 | MIT Licensed | https://stenciljs.com
8
9
  */
9
10
 
10
11
  var patchBrowser = () => {
@@ -17,8 +18,8 @@ var patchBrowser = () => {
17
18
  };
18
19
 
19
20
  patchBrowser().then(async (options) => {
20
- await index.globalScripts();
21
- return index.bootstrapLazy([["my-logo.cjs",[[1,"my-logo",{"fill":[1],"stroke":[1],"opacity":[2],"size":[2]}]]]], options);
21
+ await appGlobals.globalScripts();
22
+ return index.bootstrapLazy([["my-logo.cjs",[[257,"my-logo",{"fill":[1],"stroke":[1],"opacity":[2],"size":[2]}]]]], options);
22
23
  });
23
24
 
24
25
  exports.setNonce = index.setNonce;
@@ -4,7 +4,7 @@
4
4
  ],
5
5
  "compiler": {
6
6
  "name": "@stencil/core",
7
- "version": "4.35.1",
7
+ "version": "4.36.1",
8
8
  "typescriptVersion": "5.5.4"
9
9
  },
10
10
  "collections": [],
@@ -0,0 +1,3 @@
1
+ const globalScripts = () => {};
2
+
3
+ export { globalScripts as g };
@@ -1,11 +1,8 @@
1
1
  const NAMESPACE = 'proto-logo-wc';
2
2
  const BUILD = /* proto-logo-wc */ { hydratedSelectorName: "hydrated", lazyLoad: true, updatable: true, watchCallback: false };
3
3
 
4
- const globalScripts = () => {};
5
- const globalStyles = "";
6
-
7
4
  /*
8
- Stencil Client Platform v4.35.1 | MIT Licensed | https://stenciljs.com
5
+ Stencil Client Platform v4.36.1 | MIT Licensed | https://stenciljs.com
9
6
  */
10
7
  var __defProp = Object.defineProperty;
11
8
  var __export = (target, all) => {
@@ -102,6 +99,7 @@ var supportsConstructableStylesheets = /* @__PURE__ */ (() => {
102
99
  }
103
100
  return false;
104
101
  })() ;
102
+ var supportsMutableAdoptedStyleSheets = supportsConstructableStylesheets ? /* @__PURE__ */ (() => !!win.document && Object.getOwnPropertyDescriptor(win.document.adoptedStyleSheets, "length").writable)() : false;
105
103
  var queuePending = false;
106
104
  var queueDomReads = [];
107
105
  var queueDomWrites = [];
@@ -201,12 +199,24 @@ var unwrapErr = (result) => {
201
199
  throw result.value;
202
200
  }
203
201
  };
202
+
203
+ // src/utils/style.ts
204
+ function createStyleSheetIfNeededAndSupported(styles2) {
205
+ return void 0;
206
+ }
207
+
208
+ // src/utils/shadow-root.ts
209
+ var globalStyleSheet;
204
210
  function createShadowRoot(cmpMeta) {
211
+ var _a;
205
212
  const shadowRoot = this.attachShadow({ mode: "open" });
206
- if (supportsConstructableStylesheets) {
207
- const sheet = new CSSStyleSheet();
208
- sheet.replaceSync(globalStyles);
209
- shadowRoot.adoptedStyleSheets.push(sheet);
213
+ if (globalStyleSheet === void 0) globalStyleSheet = (_a = createStyleSheetIfNeededAndSupported()) != null ? _a : null;
214
+ if (globalStyleSheet) {
215
+ if (supportsMutableAdoptedStyleSheets) {
216
+ shadowRoot.adoptedStyleSheets.push(globalStyleSheet);
217
+ } else {
218
+ shadowRoot.adoptedStyleSheets = [...shadowRoot.adoptedStyleSheets, globalStyleSheet];
219
+ }
210
220
  }
211
221
  }
212
222
  var createTime = (fnName, tagName = "") => {
@@ -223,93 +233,6 @@ var uniqueTime = (key, measureText) => {
223
233
  };
224
234
  }
225
235
  };
226
- var h = (nodeName, vnodeData, ...children) => {
227
- let child = null;
228
- let key = null;
229
- let simple = false;
230
- let lastSimple = false;
231
- const vNodeChildren = [];
232
- const walk = (c) => {
233
- for (let i2 = 0; i2 < c.length; i2++) {
234
- child = c[i2];
235
- if (Array.isArray(child)) {
236
- walk(child);
237
- } else if (child != null && typeof child !== "boolean") {
238
- if (simple = typeof nodeName !== "function" && !isComplexType(child)) {
239
- child = String(child);
240
- }
241
- if (simple && lastSimple) {
242
- vNodeChildren[vNodeChildren.length - 1].$text$ += child;
243
- } else {
244
- vNodeChildren.push(simple ? newVNode(null, child) : child);
245
- }
246
- lastSimple = simple;
247
- }
248
- }
249
- };
250
- walk(children);
251
- if (vnodeData) {
252
- if (vnodeData.key) {
253
- key = vnodeData.key;
254
- }
255
- }
256
- const vnode = newVNode(nodeName, null);
257
- vnode.$attrs$ = vnodeData;
258
- if (vNodeChildren.length > 0) {
259
- vnode.$children$ = vNodeChildren;
260
- }
261
- {
262
- vnode.$key$ = key;
263
- }
264
- return vnode;
265
- };
266
- var newVNode = (tag, text) => {
267
- const vnode = {
268
- $flags$: 0,
269
- $tag$: tag,
270
- $text$: text,
271
- $elm$: null,
272
- $children$: null
273
- };
274
- {
275
- vnode.$attrs$ = null;
276
- }
277
- {
278
- vnode.$key$ = null;
279
- }
280
- return vnode;
281
- };
282
- var Host = {};
283
- var isHost = (node) => node && node.$tag$ === Host;
284
- var createSupportsRuleRe = (selector) => {
285
- const safeSelector2 = escapeRegExpSpecialCharacters(selector);
286
- return new RegExp(
287
- // First capture group: match any context before the selector that's not inside @supports selector()
288
- // Using negative lookahead to avoid matching inside @supports selector(...) condition
289
- `(^|[^@]|@(?!supports\\s+selector\\s*\\([^{]*?${safeSelector2}))(${safeSelector2}\\b)`,
290
- "g"
291
- );
292
- };
293
- createSupportsRuleRe("::slotted");
294
- createSupportsRuleRe(":host");
295
- createSupportsRuleRe(":host-context");
296
- var parsePropertyValue = (propValue, propType, isFormAssociated) => {
297
- if (propValue != null && !isComplexType(propValue)) {
298
- if (propType & 2 /* Number */) {
299
- return typeof propValue === "string" ? parseFloat(propValue) : typeof propValue === "number" ? propValue : NaN;
300
- }
301
- if (propType & 1 /* String */) {
302
- return String(propValue);
303
- }
304
- return propValue;
305
- }
306
- return propValue;
307
- };
308
- var emitEvent = (elm, name, opts) => {
309
- const ev = plt.ce(name, opts);
310
- elm.dispatchEvent(ev);
311
- return ev;
312
- };
313
236
  var rootAppliedStyles = /* @__PURE__ */ new WeakMap();
314
237
  var registerStyle = (scopeId2, cssText, allowCS) => {
315
238
  let style = styles.get(scopeId2);
@@ -361,7 +284,11 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
361
284
  if (supportsConstructableStylesheets) {
362
285
  const stylesheet = new CSSStyleSheet();
363
286
  stylesheet.replaceSync(style);
364
- styleContainerNode.adoptedStyleSheets = [stylesheet, ...styleContainerNode.adoptedStyleSheets];
287
+ if (supportsMutableAdoptedStyleSheets) {
288
+ styleContainerNode.adoptedStyleSheets.unshift(stylesheet);
289
+ } else {
290
+ styleContainerNode.adoptedStyleSheets = [stylesheet, ...styleContainerNode.adoptedStyleSheets];
291
+ }
365
292
  } else {
366
293
  const existingStyleContainer = styleContainerNode.querySelector("style");
367
294
  if (existingStyleContainer) {
@@ -386,7 +313,11 @@ var addStyle = (styleContainerNode, cmpMeta, mode) => {
386
313
  }
387
314
  }
388
315
  } else if (!styleContainerNode.adoptedStyleSheets.includes(style)) {
389
- styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
316
+ if (supportsMutableAdoptedStyleSheets) {
317
+ styleContainerNode.adoptedStyleSheets.push(style);
318
+ } else {
319
+ styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
320
+ }
390
321
  }
391
322
  }
392
323
  return scopeId2;
@@ -406,6 +337,93 @@ var attachStyles = (hostRef) => {
406
337
  endAttachStyles();
407
338
  };
408
339
  var getScopeId = (cmp, mode) => "sc-" + (cmp.$tagName$);
340
+ var h = (nodeName, vnodeData, ...children) => {
341
+ let child = null;
342
+ let key = null;
343
+ let simple = false;
344
+ let lastSimple = false;
345
+ const vNodeChildren = [];
346
+ const walk = (c) => {
347
+ for (let i2 = 0; i2 < c.length; i2++) {
348
+ child = c[i2];
349
+ if (Array.isArray(child)) {
350
+ walk(child);
351
+ } else if (child != null && typeof child !== "boolean") {
352
+ if (simple = typeof nodeName !== "function" && !isComplexType(child)) {
353
+ child = String(child);
354
+ }
355
+ if (simple && lastSimple) {
356
+ vNodeChildren[vNodeChildren.length - 1].$text$ += child;
357
+ } else {
358
+ vNodeChildren.push(simple ? newVNode(null, child) : child);
359
+ }
360
+ lastSimple = simple;
361
+ }
362
+ }
363
+ };
364
+ walk(children);
365
+ if (vnodeData) {
366
+ if (vnodeData.key) {
367
+ key = vnodeData.key;
368
+ }
369
+ }
370
+ const vnode = newVNode(nodeName, null);
371
+ vnode.$attrs$ = vnodeData;
372
+ if (vNodeChildren.length > 0) {
373
+ vnode.$children$ = vNodeChildren;
374
+ }
375
+ {
376
+ vnode.$key$ = key;
377
+ }
378
+ return vnode;
379
+ };
380
+ var newVNode = (tag, text) => {
381
+ const vnode = {
382
+ $flags$: 0,
383
+ $tag$: tag,
384
+ $text$: text,
385
+ $elm$: null,
386
+ $children$: null
387
+ };
388
+ {
389
+ vnode.$attrs$ = null;
390
+ }
391
+ {
392
+ vnode.$key$ = null;
393
+ }
394
+ return vnode;
395
+ };
396
+ var Host = {};
397
+ var isHost = (node) => node && node.$tag$ === Host;
398
+ var createSupportsRuleRe = (selector) => {
399
+ const safeSelector2 = escapeRegExpSpecialCharacters(selector);
400
+ return new RegExp(
401
+ // First capture group: match any context before the selector that's not inside @supports selector()
402
+ // Using negative lookahead to avoid matching inside @supports selector(...) condition
403
+ `(^|[^@]|@(?!supports\\s+selector\\s*\\([^{]*?${safeSelector2}))(${safeSelector2}\\b)`,
404
+ "g"
405
+ );
406
+ };
407
+ createSupportsRuleRe("::slotted");
408
+ createSupportsRuleRe(":host");
409
+ createSupportsRuleRe(":host-context");
410
+ var parsePropertyValue = (propValue, propType, isFormAssociated) => {
411
+ if (propValue != null && !isComplexType(propValue)) {
412
+ if (propType & 2 /* Number */) {
413
+ return typeof propValue === "string" ? parseFloat(propValue) : typeof propValue === "number" ? propValue : NaN;
414
+ }
415
+ if (propType & 1 /* String */) {
416
+ return String(propValue);
417
+ }
418
+ return propValue;
419
+ }
420
+ return propValue;
421
+ };
422
+ var emitEvent = (elm, name, opts) => {
423
+ const ev = plt.ce(name, opts);
424
+ elm.dispatchEvent(ev);
425
+ return ev;
426
+ };
409
427
  var setAccessor = (elm, memberName, oldValue, newValue, isSvg, flags, initialRender) => {
410
428
  if (oldValue === newValue) {
411
429
  return;
@@ -674,7 +692,7 @@ var patch = (oldVNode, newVNode2, isInitialRender = false) => {
674
692
  !isInitialRender && BUILD.updatable && oldChildren !== null
675
693
  ) {
676
694
  removeVnodes(oldChildren, 0, oldChildren.length - 1);
677
- }
695
+ } else ;
678
696
  if (isSvgMode && tag === "svg") {
679
697
  isSvgMode = false;
680
698
  }
@@ -728,6 +746,12 @@ var scheduleUpdate = (hostRef, isInitialLoad) => {
728
746
  }
729
747
  attachToAncestor(hostRef, hostRef.$ancestorComponent$);
730
748
  const dispatch = () => dispatchHooks(hostRef, isInitialLoad);
749
+ if (isInitialLoad) {
750
+ queueMicrotask(() => {
751
+ dispatch();
752
+ });
753
+ return;
754
+ }
731
755
  return writeTask(dispatch) ;
732
756
  };
733
757
  var dispatchHooks = (hostRef, isInitialLoad) => {
@@ -862,6 +886,9 @@ var addHydratedFlag = (elm) => {
862
886
  var getValue = (ref, propName) => getHostRef(ref).$instanceValues$.get(propName);
863
887
  var setValue = (ref, propName, newVal, cmpMeta) => {
864
888
  const hostRef = getHostRef(ref);
889
+ if (!hostRef) {
890
+ return;
891
+ }
865
892
  if (!hostRef) {
866
893
  throw new Error(
867
894
  `Couldn't find host element for "${cmpMeta.$tagName$}" as it is unknown to this Stencil runtime. This usually happens when integrating a 3rd party Stencil component with another Stencil component or application. Please reach out to the maintainers of the 3rd party Stencil component or report this on the Stencil Discord server (https://chat.stenciljs.com) or comment on this similar [GitHub issue](https://github.com/stenciljs/core/issues/5457).`
@@ -921,6 +948,9 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
921
948
  Object.defineProperty(prototype, memberName, {
922
949
  set(newValue) {
923
950
  const ref = getHostRef(this);
951
+ if (!ref) {
952
+ return;
953
+ }
924
954
  if (origSetter) {
925
955
  const currentValue = memberFlags & 32 /* State */ ? this[memberName] : ref.$hostElement$[memberName];
926
956
  if (typeof currentValue === "undefined" && ref.$instanceValues$.get(memberName)) {
@@ -984,7 +1014,7 @@ var proxyComponent = (Cstr, cmpMeta, flags) => {
984
1014
  } else if (propName == null) {
985
1015
  const hostRef = getHostRef(this);
986
1016
  const flags2 = hostRef == null ? void 0 : hostRef.$flags$;
987
- if (flags2 && !(flags2 & 8 /* isConstructingInstance */) && flags2 & 128 /* isWatchReady */ && newValue !== oldValue) {
1017
+ if (hostRef && flags2 && !(flags2 & 8 /* isConstructingInstance */) && flags2 & 128 /* isWatchReady */ && newValue !== oldValue) {
988
1018
  const instance = hostRef.$lazyInstance$ ;
989
1019
  const entry = (_a2 = cmpMeta.$watchers$) == null ? void 0 : _a2[attrName];
990
1020
  entry == null ? void 0 : entry.forEach((callbackName) => {
@@ -1089,6 +1119,9 @@ var fireConnectedCallback = (instance, elm) => {
1089
1119
  var connectedCallback = (elm) => {
1090
1120
  if ((plt.$flags$ & 1 /* isTmpDisconnected */) === 0) {
1091
1121
  const hostRef = getHostRef(elm);
1122
+ if (!hostRef) {
1123
+ return;
1124
+ }
1092
1125
  const cmpMeta = hostRef.$cmpMeta$;
1093
1126
  const endConnected = createTime("connectedCallback", cmpMeta.$tagName$);
1094
1127
  if (!(hostRef.$flags$ & 1 /* hasConnected */)) {
@@ -1203,7 +1236,10 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
1203
1236
  }
1204
1237
  }
1205
1238
  connectedCallback() {
1206
- getHostRef(this);
1239
+ const hostRef = getHostRef(this);
1240
+ if (!hostRef) {
1241
+ return;
1242
+ }
1207
1243
  if (!this.hasRegisteredEventListeners) {
1208
1244
  this.hasRegisteredEventListeners = true;
1209
1245
  }
@@ -1222,6 +1258,9 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
1222
1258
  plt.raf(() => {
1223
1259
  var _a3;
1224
1260
  const hostRef = getHostRef(this);
1261
+ if (!hostRef) {
1262
+ return;
1263
+ }
1225
1264
  const i2 = deferredConnectedCallbacks.findIndex((host) => host === this);
1226
1265
  if (i2 > -1) {
1227
1266
  deferredConnectedCallbacks.splice(i2, 1);
@@ -1232,7 +1271,8 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
1232
1271
  });
1233
1272
  }
1234
1273
  componentOnReady() {
1235
- return getHostRef(this).$onReadyPromise$;
1274
+ var _a3;
1275
+ return (_a3 = getHostRef(this)) == null ? void 0 : _a3.$onReadyPromise$;
1236
1276
  }
1237
1277
  };
1238
1278
  cmpMeta.$lazyBundleId$ = lazyBundle[0];
@@ -1275,4 +1315,4 @@ var bootstrapLazy = (lazyBundles, options = {}) => {
1275
1315
  // src/runtime/nonce.ts
1276
1316
  var setNonce = (nonce) => plt.$nonce$ = nonce;
1277
1317
 
1278
- export { bootstrapLazy as b, globalScripts as g, h, promiseResolve as p, registerInstance as r, setNonce as s };
1318
+ export { bootstrapLazy as b, h, promiseResolve as p, registerInstance as r, setNonce as s };
@@ -1,10 +1,11 @@
1
- import { g as globalScripts, b as bootstrapLazy } from './index-DArlw1GZ.js';
2
- export { s as setNonce } from './index-DArlw1GZ.js';
1
+ import { b as bootstrapLazy } from './index-C-hXMJD_.js';
2
+ export { s as setNonce } from './index-C-hXMJD_.js';
3
+ import { g as globalScripts } from './app-globals-DQuL1Twl.js';
3
4
 
4
5
  const defineCustomElements = async (win, options) => {
5
6
  if (typeof window === 'undefined') return undefined;
6
7
  await globalScripts();
7
- return bootstrapLazy([["my-logo",[[1,"my-logo",{"fill":[1],"stroke":[1],"opacity":[2],"size":[2]}]]]], options);
8
+ return bootstrapLazy([["my-logo",[[257,"my-logo",{"fill":[1],"stroke":[1],"opacity":[2],"size":[2]}]]]], options);
8
9
  };
9
10
 
10
11
  export { defineCustomElements };
@@ -1,4 +1,4 @@
1
- import { r as registerInstance, h } from './index-DArlw1GZ.js';
1
+ import { r as registerInstance, h } from './index-C-hXMJD_.js';
2
2
 
3
3
  const myLogoCss = "my-logo{}";
4
4
 
@@ -1,8 +1,9 @@
1
- import { p as promiseResolve, g as globalScripts, b as bootstrapLazy } from './index-DArlw1GZ.js';
2
- export { s as setNonce } from './index-DArlw1GZ.js';
1
+ import { p as promiseResolve, b as bootstrapLazy } from './index-C-hXMJD_.js';
2
+ export { s as setNonce } from './index-C-hXMJD_.js';
3
+ import { g as globalScripts } from './app-globals-DQuL1Twl.js';
3
4
 
4
5
  /*
5
- Stencil Client Patch Browser v4.35.1 | MIT Licensed | https://stenciljs.com
6
+ Stencil Client Patch Browser v4.36.1 | MIT Licensed | https://stenciljs.com
6
7
  */
7
8
 
8
9
  var patchBrowser = () => {
@@ -16,5 +17,5 @@ var patchBrowser = () => {
16
17
 
17
18
  patchBrowser().then(async (options) => {
18
19
  await globalScripts();
19
- return bootstrapLazy([["my-logo",[[1,"my-logo",{"fill":[1],"stroke":[1],"opacity":[2],"size":[2]}]]]], options);
20
+ return bootstrapLazy([["my-logo",[[257,"my-logo",{"fill":[1],"stroke":[1],"opacity":[2],"size":[2]}]]]], options);
20
21
  });
@@ -0,0 +1,2 @@
1
+ var t=Object.defineProperty,e=t=>{if(t.__stencil__getHostRef)return t.__stencil__getHostRef()},n=(t,e)=>{t.__stencil__getHostRef=()=>e,e.t=t},o=(t,e)=>(0,console.error)(t,e),i=new Map,l=new Map,r="slot-fb{display:contents}slot-fb[hidden]{display:none}",s="undefined"!=typeof window?window:{},c={o:0,i:"",jmp:t=>t(),raf:t=>requestAnimationFrame(t),ael:(t,e,n,o)=>t.addEventListener(e,n,o),rel:(t,e,n,o)=>t.removeEventListener(e,n,o),ce:(t,e)=>new CustomEvent(t,e)},u=t=>Promise.resolve(t),a=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(t){}return!1})(),f=!!a&&(()=>!!s.document&&Object.getOwnPropertyDescriptor(s.document.adoptedStyleSheets,"length").writable)(),d=!1,h=[],p=[],m=(t,e)=>n=>{t.push(n),d||(d=!0,e&&4&c.o?y(w):c.raf(w))},v=t=>{for(let e=0;e<t.length;e++)try{t[e](performance.now())}catch(t){o(t)}t.length=0},w=()=>{v(h),v(p),(d=h.length>0)&&c.raf(w)},y=t=>u().then(t),b=m(p,!0),$=t=>"object"==(t=typeof t)||"function"===t;function g(t){var e,n,o;return null!=(o=null==(n=null==(e=t.head)?void 0:e.querySelector('meta[name="csp-nonce"]'))?void 0:n.getAttribute("content"))?o:void 0}((e,n)=>{for(var o in n)t(e,o,{get:n[o],enumerable:!0})})({},{err:()=>j,map:()=>O,ok:()=>S,unwrap:()=>E,unwrapErr:()=>C});var S=t=>({isOk:!0,isErr:!1,value:t}),j=t=>({isOk:!1,isErr:!0,value:t});function O(t,e){if(t.isOk){const n=e(t.value);return n instanceof Promise?n.then((t=>S(t))):S(n)}if(t.isErr)return j(t.value);throw"should never get here"}var k,E=t=>{if(t.isOk)return t.value;throw t.value},C=t=>{if(t.isErr)return t.value;throw t.value};function M(){const t=this.attachShadow({mode:"open"});void 0===k&&(k=null),k&&(f?t.adoptedStyleSheets.push(k):t.adoptedStyleSheets=[...t.adoptedStyleSheets,k])}var x=new WeakMap,P=t=>"sc-"+t.l,N=(t,e,...n)=>{let o=null,i=null,l=!1,r=!1;const s=[],c=e=>{for(let n=0;n<e.length;n++)o=e[n],Array.isArray(o)?c(o):null!=o&&"boolean"!=typeof o&&((l="function"!=typeof t&&!$(o))&&(o+=""),l&&r?s[s.length-1].u+=o:s.push(l?D(null,o):o),r=l)};c(n),e&&e.key&&(i=e.key);const u=D(t,null);return u.h=e,s.length>0&&(u.p=s),u.m=i,u},D=(t,e)=>({o:0,v:t,u:e,$:null,p:null,h:null,m:null}),R={},U=t=>{const e=(t=>t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"))(t);return RegExp(`(^|[^@]|@(?!supports\\s+selector\\s*\\([^{]*?${e}))(${e}\\b)`,"g")};U("::slotted"),U(":host"),U(":host-context");var W,A=(t,e)=>null==t||$(t)?t:2&e?"string"==typeof t?parseFloat(t):"number"==typeof t?t:NaN:1&e?t+"":t,L=(t,e,n,o,i,l)=>{if(n===o)return;let r=((t,e)=>e in t)(t,e);if(e.toLowerCase(),"key"===e);else{const s=$(o);if((r||s&&null!==o)&&!i)try{if(t.tagName.includes("-"))t[e]!==o&&(t[e]=o);else{const i=null==o?"":o;"list"===e?r=!1:null!=n&&t[e]==i||("function"==typeof t.__lookupSetter__(e)?t[e]=i:t.setAttribute(e,i))}}catch(t){}null==o||!1===o?!1===o&&""!==t.getAttribute(e)||t.removeAttribute(e):(!r||4&l||i)&&!s&&1===t.nodeType&&t.setAttribute(e,o=!0===o?"":o)}},T=(t,e,n)=>{const o=11===e.$.nodeType&&e.$.host?e.$.host:e.$,i=t&&t.h||{},l=e.h||{};for(const t of F(Object.keys(i)))t in l||L(o,t,i[t],void 0,n,e.o);for(const t of F(Object.keys(l)))L(o,t,i[t],l[t],n,e.o)};function F(t){return t.includes("ref")?[...t.filter((t=>"ref"!==t)),"ref"]:t}var H=!1,q=(t,e,n)=>{const o=e.p[n];let i,l,r=0;if(H||(H="svg"===o.v),!s.document)throw Error("You are trying to render a Stencil component in an environment that doesn't support the DOM. Make sure to populate the [`window`](https://developer.mozilla.org/en-US/docs/Web/API/Window/window) object before rendering a component.");if(i=o.$=s.document.createElementNS(H?"http://www.w3.org/2000/svg":"http://www.w3.org/1999/xhtml",o.v),H&&"foreignObject"===o.v&&(H=!1),T(null,o,H),o.p)for(r=0;r<o.p.length;++r)l=q(t,o,r),l&&i.appendChild(l);return"svg"===o.v?H=!1:"foreignObject"===i.tagName&&(H=!0),i["s-hn"]=W,i},z=(t,e,n,o,i,l)=>{let r,s=t;for(s.shadowRoot&&s.tagName===W&&(s=s.shadowRoot);i<=l;++i)o[i]&&(r=q(null,n,i),r&&(o[i].$=r,Y(s,r,e)))},G=(t,e,n)=>{for(let o=e;o<=n;++o){const e=t[o];if(e){const t=e.$;t&&t.remove()}}},I=(t,e,n=!1)=>t.v===e.v&&(n?(n&&!t.m&&e.m&&(t.m=e.m),!0):t.m===e.m),V=(t,e,n=!1)=>{const o=e.$=t.$,i=t.p,l=e.p,r=e.v;T(t,e,H="svg"===r||"foreignObject"!==r&&H),null!==i&&null!==l?((t,e,n,o,i=!1)=>{let l,r,s=0,c=0,u=0,a=0,f=e.length-1,d=e[0],h=e[f],p=o.length-1,m=o[0],v=o[p];for(;s<=f&&c<=p;)if(null==d)d=e[++s];else if(null==h)h=e[--f];else if(null==m)m=o[++c];else if(null==v)v=o[--p];else if(I(d,m,i))V(d,m,i),d=e[++s],m=o[++c];else if(I(h,v,i))V(h,v,i),h=e[--f],v=o[--p];else if(I(d,v,i))V(d,v,i),Y(t,d.$,h.$.nextSibling),d=e[++s],v=o[--p];else if(I(h,m,i))V(h,m,i),Y(t,h.$,d.$),h=e[--f],m=o[++c];else{for(u=-1,a=s;a<=f;++a)if(e[a]&&null!==e[a].m&&e[a].m===m.m){u=a;break}u>=0?(r=e[u],r.v!==m.v?l=q(e&&e[c],n,u):(V(r,m,i),e[u]=void 0,l=r.$),m=o[++c]):(l=q(e&&e[c],n,c),m=o[++c]),l&&Y(d.$.parentNode,l,d.$)}s>f?z(t,null==o[p+1]?null:o[p+1].$,n,o,c,p):c>p&&G(e,s,f)})(o,i,e,l,n):null!==l?z(o,null,e,l,0,l.length-1):!n&&null!==i&&G(i,0,i.length-1),H&&"svg"===r&&(H=!1)},Y=(t,e,n)=>null==t?void 0:t.insertBefore(e,n),_=(t,e)=>{if(e&&!t.S&&e["s-p"]){const n=e["s-p"].push(new Promise((o=>t.S=()=>{e["s-p"].splice(n-1,1),o()})))}},B=(t,e)=>{if(t.o|=16,4&t.o)return void(t.o|=512);_(t,t.j);const n=()=>J(t,e);if(!e)return b(n);queueMicrotask((()=>{n()}))},J=(t,e)=>{const n=t.$hostElement$,o=t.t;if(!o)throw Error(`Can't render component <${n.tagName.toLowerCase()} /> with invalid Stencil runtime! Make sure this imported component is compiled with a \`externalRuntime: true\` flag. For more information, please refer to https://stenciljs.com/docs/custom-elements#externalruntime`);let i;return i=nt(o,e?"componentWillLoad":"componentWillUpdate",void 0,n),i=K(i,(()=>nt(o,"componentWillRender",void 0,n))),K(i,(()=>X(t,o,e)))},K=(t,e)=>Q(t)?t.then(e).catch((t=>{console.error(t),e()})):e(),Q=t=>t instanceof Promise||t&&t.then&&"function"==typeof t.then,X=async(t,e,n)=>{var o;const i=t.$hostElement$,u=i["s-rc"];n&&(t=>{const e=t.O,n=t.$hostElement$,o=e.o,i=((t,e)=>{var n;const o=P(e),i=l.get(o);if(!s.document)return o;if(t=11===t.nodeType?t:s.document,i)if("string"==typeof i){let l,u=x.get(t=t.head||t);if(u||x.set(t,u=new Set),!u.has(o)){{l=s.document.createElement("style"),l.innerHTML=i;const o=null!=(n=c.k)?n:g(s.document);if(null!=o&&l.setAttribute("nonce",o),!(1&e.o))if("HEAD"===t.nodeName){const e=t.querySelectorAll("link[rel=preconnect]"),n=e.length>0?e[e.length-1].nextSibling:t.querySelector("style");t.insertBefore(l,(null==n?void 0:n.parentNode)===t?n:null)}else if("host"in t)if(a){const e=new CSSStyleSheet;e.replaceSync(i),f?t.adoptedStyleSheets.unshift(e):t.adoptedStyleSheets=[e,...t.adoptedStyleSheets]}else{const e=t.querySelector("style");e?e.innerHTML=i+e.innerHTML:t.prepend(l)}else t.append(l);1&e.o&&t.insertBefore(l,null)}4&e.o&&(l.innerHTML+=r),u&&u.add(o)}}else t.adoptedStyleSheets.includes(i)||(f?t.adoptedStyleSheets.push(i):t.adoptedStyleSheets=[...t.adoptedStyleSheets,i]);return o})(n.shadowRoot?n.shadowRoot:n.getRootNode(),e);10&o&&(n["s-sc"]=i,n.classList.add(i+"-h"))})(t);Z(t,e,i,n),u&&(u.map((t=>t())),i["s-rc"]=void 0);{const e=null!=(o=i["s-p"])?o:[],n=()=>tt(t);0===e.length?n():(Promise.all(e).then(n),t.o|=4,e.length=0)}},Z=(t,e,n,i)=>{try{e=e.render(),t.o&=-17,t.o|=2,((t,e,n=!1)=>{const o=t.$hostElement$,i=t.C||D(null,null),l=(t=>t&&t.v===R)(e)?e:N(null,null,e);if(W=o.tagName,n&&l.h)for(const t of Object.keys(l.h))o.hasAttribute(t)&&!["key","ref","style","class"].includes(t)&&(l.h[t]=o[t]);l.v=null,l.o|=4,t.C=l,l.$=i.$=o.shadowRoot||o,V(i,l,n)})(t,e,i)}catch(e){o(e,t.$hostElement$)}return null},tt=t=>{const e=t.$hostElement$,n=t.t,o=t.j;nt(n,"componentDidRender",void 0,e),64&t.o?nt(n,"componentDidUpdate",void 0,e):(t.o|=64,ot(e),nt(n,"componentDidLoad",void 0,e),t.M(e),o||et()),t.S&&(t.S(),t.S=void 0),512&t.o&&y((()=>B(t,!1))),t.o&=-517},et=()=>{y((()=>(t=>{const e=c.ce("appload",{detail:{namespace:"proto-logo-wc"}});return t.dispatchEvent(e),e})(s)))},nt=(t,e,n,i)=>{if(t&&t[e])try{return t[e](n)}catch(t){o(t,i)}},ot=t=>t.classList.add("hydrated"),it=(t,n,o,i)=>{const l=e(t);if(!l)return;if(!l)throw Error(`Couldn't find host element for "${i.l}" as it is unknown to this Stencil runtime. This usually happens when integrating a 3rd party Stencil component with another Stencil component or application. Please reach out to the maintainers of the 3rd party Stencil component or report this on the Stencil Discord server (https://chat.stenciljs.com) or comment on this similar [GitHub issue](https://github.com/stenciljs/core/issues/5457).`);const r=l.P.get(n),s=l.o,c=l.t;if(o=A(o,i.N[n][0]),(!(8&s)||void 0===r)&&o!==r&&(!Number.isNaN(r)||!Number.isNaN(o))&&(l.P.set(n,o),c&&2==(18&s))){if(c.componentShouldUpdate&&!1===c.componentShouldUpdate(o,r,n))return;B(l,!1)}},lt=(t,n,o)=>{var i,l;const r=t.prototype;if(n.N){const s=Object.entries(null!=(i=n.N)?i:{});if(s.map((([t,[i]])=>{if(31&i||2&o&&32&i){const{get:l,set:s}=Object.getOwnPropertyDescriptor(r,t)||{};l&&(n.N[t][0]|=2048),s&&(n.N[t][0]|=4096),(1&o||!l)&&Object.defineProperty(r,t,{get(){{if(!(2048&n.N[t][0]))return((t,n)=>e(this).P.get(n))(0,t);const o=e(this),i=o?o.t:r;if(!i)return;return i[t]}},configurable:!0,enumerable:!0}),Object.defineProperty(r,t,{set(l){const r=e(this);if(r){if(s){const e=32&i?this[t]:r.$hostElement$[t];return void 0===e&&r.P.get(t)?l=r.P.get(t):!r.P.get(t)&&e&&r.P.set(t,e),s.call(this,A(l,i)),void it(this,t,l=32&i?this[t]:r.$hostElement$[t],n)}{if(!(1&o&&4096&n.N[t][0]))return it(this,t,l,n),void(1&o&&!r.t&&r.D.then((()=>{4096&n.N[t][0]&&r.t[t]!==r.P.get(t)&&(r.t[t]=l)})));const e=()=>{const e=r.t[t];!r.P.get(t)&&e&&r.P.set(t,e),r.t[t]=A(l,i),it(this,t,r.t[t],n)};r.t?e():r.D.then((()=>e()))}}}})}})),1&o){const o=new Map;r.attributeChangedCallback=function(t,i,l){c.jmp((()=>{var s;const c=o.get(t);if(this.hasOwnProperty(c))l=this[c],delete this[c];else{if(r.hasOwnProperty(c)&&"number"==typeof this[c]&&this[c]==l)return;if(null==c){const o=e(this),r=null==o?void 0:o.o;if(o&&r&&!(8&r)&&128&r&&l!==i){const e=o.t,r=null==(s=n.R)?void 0:s[t];null==r||r.forEach((n=>{null!=e[n]&&e[n].call(e,l,i,t)}))}return}}const u=Object.getOwnPropertyDescriptor(r,c);(l=(null!==l||"boolean"!=typeof this[c])&&l)===this[c]||u.get&&!u.set||(this[c]=l)}))},t.observedAttributes=Array.from(new Set([...Object.keys(null!=(l=n.R)?l:{}),...s.filter((([t,e])=>15&e[0])).map((([t,e])=>{const n=e[1]||t;return o.set(n,t),n}))]))}}return t},rt=(t,e)=>{nt(t,"connectedCallback",void 0,e)},st=(t,e)=>{nt(t,"disconnectedCallback",void 0,e||t)},ct=(t,n={})=>{var u;if(!s.document)return void console.warn("Stencil: No document found. Skipping bootstrapping lazy components.");const f=[],d=n.exclude||[],h=s.customElements,p=s.document.head,m=p.querySelector("meta[charset]"),v=s.document.createElement("style"),w=[];let y,b=!0;Object.assign(c,n),c.i=new URL(n.resourcesUrl||"./",s.document.baseURI).href;let $=!1;if(t.map((t=>{t[1].map((n=>{const r={o:n[0],l:n[1],N:n[2],U:n[3]};4&r.o&&($=!0),r.N=n[2];const s=r.l,u=class extends HTMLElement{constructor(t){if(super(t),this.hasRegisteredEventListeners=!1,((t,e)=>{const n={o:0,$hostElement$:t,O:e,P:new Map};n.D=new Promise((t=>n.M=t)),t["s-p"]=[],t["s-rc"]=[];const o=n;t.__stencil__getHostRef=()=>o})(t=this,r),1&r.o)if(t.shadowRoot){if("open"!==t.shadowRoot.mode)throw Error(`Unable to re-use existing shadow root for ${r.l}! Mode is set to ${t.shadowRoot.mode} but Stencil only supports open shadow roots.`)}else M.call(t,r)}connectedCallback(){e(this)&&(this.hasRegisteredEventListeners||(this.hasRegisteredEventListeners=!0),y&&(clearTimeout(y),y=null),b?w.push(this):c.jmp((()=>(t=>{if(!(1&c.o)){const n=e(t);if(!n)return;const r=n.O,s=()=>{};if(1&n.o)(null==n?void 0:n.t)?rt(n.t,t):(null==n?void 0:n.D)&&n.D.then((()=>rt(n.t,t)));else{n.o|=1;{let e=t;for(;e=e.parentNode||e.host;)if(e["s-p"]){_(n,n.j=e);break}}r.N&&Object.entries(r.N).map((([e,[n]])=>{if(31&n&&t.hasOwnProperty(e)){const n=t[e];delete t[e],t[e]=n}})),(async(t,e,n)=>{let r;if(!(32&e.o)){if(e.o|=32,n.W){const l=((t,e)=>{const n=t.l.replace(/-/g,"_"),l=t.W;if(!l)return;const r=i.get(l);return r?r[n]:import(`./${l}.entry.js`).then((t=>(i.set(l,t),t[n])),(t=>{o(t,e.$hostElement$)}))
2
+ /*!__STENCIL_STATIC_IMPORT_SWITCH__*/})(n,e);if(l&&"then"in l){const t=()=>{};r=await l,t()}else r=l;if(!r)throw Error(`Constructor for "${n.l}#${e.A}" was not found`);r.isProxied||(lt(r,n,2),r.isProxied=!0);const s=()=>{};e.o|=8;try{new r(e)}catch(e){o(e,t)}e.o&=-9,s(),rt(e.t,t)}else r=t.constructor,customElements.whenDefined(t.localName).then((()=>e.o|=128));if(r&&r.style){let t;"string"==typeof r.style&&(t=r.style);const e=P(n);if(!l.has(e)){const o=()=>{};((t,e,n)=>{let o=l.get(t);a&&n?(o=o||new CSSStyleSheet,"string"==typeof o?o=e:o.replaceSync(e)):o=e,l.set(t,o)})(e,t,!!(1&n.o)),o()}}}const s=e.j,c=()=>B(e,!0);s&&s["s-rc"]?s["s-rc"].push(c):c()})(t,n,r)}s()}})(this))))}disconnectedCallback(){c.jmp((()=>(async t=>{if(!(1&c.o)){const n=e(t);(null==n?void 0:n.t)?st(n.t,t):(null==n?void 0:n.D)&&n.D.then((()=>st(n.t,t)))}x.has(t)&&x.delete(t),t.shadowRoot&&x.has(t.shadowRoot)&&x.delete(t.shadowRoot)})(this))),c.raf((()=>{var t;const n=e(this);if(!n)return;const o=w.findIndex((t=>t===this));o>-1&&w.splice(o,1),(null==(t=null==n?void 0:n.C)?void 0:t.$)instanceof Node&&!n.C.$.isConnected&&delete n.C.$}))}componentOnReady(){var t;return null==(t=e(this))?void 0:t.D}};r.W=t[0],d.includes(s)||h.get(s)||(f.push(s),h.define(s,lt(u,r,1)))}))})),f.length>0&&($&&(v.textContent+=r),v.textContent+=f.sort()+"{visibility:hidden}.hydrated{visibility:inherit}",v.innerHTML.length)){v.setAttribute("data-styles","");const t=null!=(u=c.k)?u:g(s.document);null!=t&&v.setAttribute("nonce",t),p.insertBefore(v,m?m.nextSibling:p.firstChild)}b=!1,w.length?w.map((t=>t.connectedCallback())):c.jmp((()=>y=setTimeout(et,30)))},ut=t=>c.k=t;export{ct as b,N as h,u as p,n as r,ut as s}
@@ -0,0 +1 @@
1
+ const o=()=>{};export{o as g}
@@ -1 +1 @@
1
- import{r as c,h as l}from"./p-DArlw1GZ.js";const a=class{constructor(l){c(this,l),this.fill="currentcolor",this.stroke=void 0,this.opacity=1,this.size=void 0}render(){const{fill:c,stroke:a,opacity:M,size:z}=this;return l("svg",{key:"e8ce95bc3a637d30c2e61392950b2e7cb1156376",width:z,height:z,viewBox:"0 0 818 874","fill-rule":"evenodd","clip-rule":"evenodd","stroke-linejoin":"round","stroke-miterlimit":"2"},l("g",{key:"5352532ebf3edadaecedd06d25f27e469b92864d",fill:c,stroke:a,"fill-opacity":M},l("path",{key:"5bde5e66ba000e6aeffae505b3401b5175a807a9",d:"M134.304 112.082l1-.113c.294.453.615.781 1.086 1.011.77.358 1.842.52 3.242.362 1.373-.035 2.924-.291 4.576-.722a28.466 28.466 0 004.837-1.642c1.63-.63 3.086-1.363 4.218-2.099.83-.54 1.912-1.35 3.172-2.385 1.31-.959 2.471-2.143 3.508-3.355 1.038-1.211 1.777-2.55 2.316-3.868.54-1.316.354-2.592-.382-3.723-.735-1.132-1.777-1.743-2.95-1.732-1.25.06-2.675.344-4.256 1.05-1.58.706-3.388 1.559-5.248 2.661-1.935 1.151-3.87 2.302-5.855 3.378-1.984 1.076-4.018 2.076-6.074 2.876-2.131.85-4.108 1.276-6.082 1.379-1.973.102-3.916-.245-5.678-1.139-1.838-.845-3.468-2.361-4.99-4.7-1.03-1.584-1.633-3.339-1.86-5.338-.302-1.951-.054-4.045.72-6.158.772-2.113 2.02-4.32 3.869-6.596 1.897-2.2 4.368-4.344 7.462-6.355 2.64-1.717 5.127-3.012 7.334-3.91a55.02 55.02 0 015.964-2.054c1.728-.48 3.23-.812 4.456-1.073 1.226-.26 2.128-.524 2.807-.966.68-.442 1.11-.936 1.215-1.434l1.298.015.927 12.817-.951.188c-.517-.63-1.136-1.086-1.732-1.342-.77-.359-1.842-.52-3.14-.536-1.324.11-2.724.269-4.3.65-1.578.382-3.181.887-4.81 1.518-1.582.706-3.189 1.536-4.622 2.468a30.611 30.611 0 00-3.248 2.435c-1.06 1.01-1.97 1.924-2.705 2.94-.736 1.014-1.196 1.958-1.456 2.878-.286 1.045-.098 1.996.442 2.826.785 1.207 1.827 1.818 3.124 1.833 1.223.064 2.725-.268 4.354-.899a34.599 34.599 0 005.297-2.585c1.86-1.102 3.844-2.178 5.829-3.254 1.984-1.075 4.018-2.075 6.15-2.925 2.055-.8 4.108-1.276 6.081-1.378 1.973-.102 3.841.293 5.679 1.138 1.762.894 3.392 2.41 4.864 4.674 1.717 2.64 2.412 5.195 2.133 7.738-.354 2.592-1.255 5.003-2.655 7.309-1.399 2.305-3.27 4.38-5.413 6.204a52.034 52.034 0 01-6.371 4.895c-2.867 1.864-5.38 3.283-7.512 4.132-2.157.974-3.987 1.627-5.613 1.933-1.577.382-2.928.616-3.928.73-1 .113-1.777.403-2.305.747-.377.245-.532.668-.588 1.241l-1.45.083-1.786-11.828zM199.519 64.52c1.53-.761 2.74-1.765 3.507-2.85.767-1.086.689-2.454-.153-4.146-.842-1.693-1.887-2.58-3.295-2.784-1.368-.123-2.898.236-4.43.998l-13.536 6.736 4.37 8.783 13.537-6.736zm-27.286-1.5c-.401-.806-1.246-.888-2.616-.207l-.722-1.45 23.448-11.668c4.35-2.165 7.975-2.963 10.993-2.555 2.937.448 5.348 2.667 7.272 6.534 1.925 3.868 2.2 7.048.747 9.581-1.495 2.654-4.357 4.983-8.708 7.148l-13.698 6.816 6.015 12.086c.4.806 1.165.928 2.293.367l.722 1.45-11.442 5.694-.721-1.45c1.37-.682 1.813-1.406 1.412-2.211l-14.995-30.136zM237.764 37.195c-1.774.652-3.455 1.558-4.927 2.77a15.493 15.493 0 00-3.714 4.243c-.948 1.595-1.549 3.35-1.719 5.234-.255 1.916-.025 3.845.72 5.872.746 2.028 1.82 3.646 3.255 4.94 1.35 1.326 2.915 2.19 4.67 2.79 1.786.687 3.586.888 5.578.827 1.906-.03 3.805-.344 5.578-.997 1.774-.652 3.424-1.642 4.98-2.885 1.473-1.213 2.714-2.532 3.63-4.212.948-1.595 1.58-3.265 1.835-5.18.17-1.885-.06-3.815-.805-5.842-.745-2.027-1.82-3.646-3.17-4.971-1.435-1.295-3.03-2.243-4.785-2.844a16.048 16.048 0 00-5.494-.857 17.77 17.77 0 00-5.632 1.112zm-2.298-6.25a35.093 35.093 0 019.22-2.048c2.982-.234 5.782.08 8.4.939a18.42 18.42 0 016.989 4.143c2.083 2.014 3.7 4.585 4.88 7.795 1.18 3.21 1.613 6.214 1.3 9.014-.282 2.885-1.173 5.418-2.61 7.768-1.437 2.35-3.398 4.318-5.853 5.988-2.508 1.785-5.256 3.179-8.381 4.328-3.126 1.15-6.122 1.867-9.105 2.1-3.036.35-5.805.121-8.422-.738-2.618-.86-4.937-2.213-7.02-4.228-2.052-1.93-3.669-4.5-4.849-7.71-1.18-3.21-1.613-6.215-1.332-9.1a18.42 18.42 0 012.641-7.683c1.438-2.35 3.368-4.402 5.876-6.187a33.933 33.933 0 018.266-4.382zM288.314 53.081c.216.874.848 1.181 1.984.9l.39 1.572-11.445 2.834-.39-1.573c.962-.238 1.29-.783 1.074-1.656l-8.09-32.674c-.216-.874-.76-1.202-1.721-.964l-.39-1.573 11.445-2.833.389 1.572c-1.136.281-1.552.848-1.335 1.722l3.525 14.24c1.598-2.158 3.197-4.315 4.883-6.494 1.685-2.179 3.24-4.14 4.553-5.949 1.314-1.808 2.41-3.378 3.307-4.62.898-1.242 1.292-1.896 1.227-2.158-.064-.262-.304-.48-.61-.59-.392-.089-.763-.09-1.025-.025l-.325-1.31 14.415-3.57.39 1.573c-.635.436-1.532 1.307-2.648 2.788L296.247 29.7l18.043 13.706c.915.7 1.917 1.38 2.92 2.059 1.024.766 2.028 1.074 2.879 1.141l.39 1.573-12.93 3.2-.39-1.572c.612-.151.918-.412.831-.762-.065-.262-.217-.502-.587-.874s-1.046-.854-2.048-1.533l-13.99-10.444-5.474 7.104 2.423 9.784z","fill-rule":"nonzero"}),l("path",{key:"127745bf5981828b25e0c9d629275d8de85cde3e",d:"M347.793 27.702l-9.298-13.975-4.252 15.854 13.55-1.88zM320.071 46.63c.7-.188 1.186-.619 1.634-1.317.372-.596.565-1.168.77-1.651l9.265-30.815c.245-.852.413-1.603.607-2.175.116-.47.131-1.017.07-1.463-.05-.357-.176-.612-.278-.688l-.572-.194-.223-1.604 13.462-1.868.222 1.605-.498.342c-.255.126-.32.317-.257.762.05.357.29.778.619 1.187.341.497.695 1.084 1.05 1.671l18.645 28.307a3.25 3.25 0 001.142 1.023 2.79 2.79 0 001.233.374l.222 1.604-12.658 1.756-.186-1.337c.268-.037.612-.175.944-.403.242-.216.371-.597.31-1.043-.05-.356-.189-.7-.315-.956a26.637 26.637 0 00-.606-1.097l-3.112-4.747-19.078 2.646-1.828 5.16a4.81 4.81 0 00-.362 1.323c-.116.47-.156.839-.119 1.106.062.446.29.778.57.83.28.052.737.08 1.272.005l.223 1.605-11.946 1.657-.222-1.605zM373.087 39.689c1.08-.024 1.61-.486 1.59-1.385l-.738-33.652c-.02-.9-.57-1.338-1.65-1.315l-.035-1.62 13.227-.29.036 1.62c-.448.1-.626.194-.62.464.006.27.653 1.066 2.032 2.386l22.097 22.38-.535-24.383c-.02-.9-.66-1.336-1.83-1.31l-.035-1.62 10.977-.241.036 1.62c-1.08.023-1.61.485-1.59 1.385l.738 33.652c.02.9.57 1.338 1.65 1.314l.035 1.62-11.697.256-.036-1.62c.45-.01.626-.193.62-.463-.006-.27-.284-.624-.837-1.242-.644-.616-1.288-1.232-2.025-2.026L381.66 11.954l.574 26.184c.02.9.66 1.336 1.92 1.308l.035 1.62-11.067.242-.036-1.62zM468.005 13.216c.11-1.164-.735-1.787-2.617-1.965l-21.862-2.067-.848 8.96 13.799 1.305c.985.093 1.8.08 2.265-.057.457-.047.768-.47.827-1.097l1.613.152-.898 9.498-1.792-.17c.238-.61.012-1.083-.598-1.322a20.511 20.511 0 00-2.761-.441l-13.082-1.238-1 10.573 22.938 2.17c.717.067 1.361-.053 1.843-.369.474-.226.785-.649.836-1.186l1.612.152-.89 9.408-1.612-.152c.05-.538-.193-.832-.632-.964-.44-.132-1.067-.191-1.784-.26l-32.883-3.109.152-1.613c.27.026.636-.03.93-.273.286-.154.5-.495.541-.943l3.17-33.511a1.49 1.49 0 00-.347-1.118 1.737 1.737 0 00-.87-.353l.152-1.613 31.808 3.008c1.882.178 2.829-.275 2.93-1.35l1.613.152-.94 9.946-1.613-.153zM555.313 25.982c.164-.609.043-1.2-.298-1.665-.451-.4-1.274-.808-2.49-1.135l-28.16-7.569-2.898 10.777 17.036 4.58c1.13.303 2.109.473 2.788.376.678-.097 1.166-.525 1.376-1.308l1.565.42-3.364 12.517-1.565-.42c.35-1.305.236-2.267-.255-2.865-.515-.512-1.424-.942-2.554-1.246l-17.036-4.579-4.532 16.862c-.14.521.004 1.026.479 1.34.364.377.926.715 1.708.925l-.42 1.565-14.776-3.972.42-1.564c1.478.397 2.4.086 2.68-.957l10.607-39.46c.28-1.043-.362-1.775-1.84-2.172l.421-1.564 40.329 10.84c1.217.326 2.132.386 2.77.092.529-.231.93-.683 1.093-1.29l1.565.42-3.084 11.472-1.565-.42zM555.335 64.501c.93.34 1.553.47 1.984.34.4-.045.692-.322.846-.745l11.531-31.623a1.283 1.283 0 00-.137-1.2c-.277-.292-.838-.592-1.768-.932l.555-1.522 12.852 4.687-.555 1.522c-1.606-.586-2.521-.44-2.83.405l-11.53 31.623c-.309.846.298 1.546 1.905 2.132l-.555 1.522-12.852-4.687.554-1.522zM611.868 65.307c5.296 2.483 8.788 2.033 10.354-1.308.65-1.385.495-2.75-.346-4.138-.96-1.345-2.806-2.708-5.576-4.007l-12.875-6.037-4.433 9.453 12.876 6.037zM619.29 49.9c4.808 2.254 8.256 4.864 10.219 7.674 1.925 2.89 2.01 6.31.215 10.14-.688 1.467-1.543 2.656-2.649 3.53-1.105.873-2.215 1.545-3.494 1.94-1.317.476-2.682.63-3.97.623a14.015 14.015 0 01-3.914-.344l2.522 15.397c.14.761.4 1.48.855 1.992a6.496 6.496 0 001.286 1.497l-.688 1.467-12.467-5.846.688-1.467c.733.344 1.174.253 1.403-.236.267-.57.242-1.577-.038-3.1l-1.93-12.634-11.326-5.31-5.464 11.652c-.19.408-.18.81.15 1.164.212.397.5.632.826.785l-.688 1.466-10.838-5.081.688-1.467c.978.458 1.658.28 2.04-.535l14.29-30.476c.381-.815.083-1.452-.894-1.91l.687-1.467 22.491 10.546zM673.328 89.784c.61-.998.124-1.928-1.49-2.913L653.1 75.422l-4.692 7.68 11.828 7.226c.844.516 1.583.862 2.06.943.431.157.896-.086 1.225-.623l1.382.844-4.973 8.141-1.536-.938c.482-.444.486-.969.042-1.45a20.511 20.511 0 00-2.287-1.609l-11.213-6.85-5.536 9.062 19.66 12.012c.615.375 1.247.55 1.819.477.524.005.99-.239 1.27-.7l1.383.845-4.926 8.064-1.383-.844c.282-.461.192-.832-.145-1.144-.337-.311-.875-.64-1.49-1.015l-28.186-17.22.845-1.382c.23.141.585.252.956.162.324-.013.665-.226.9-.61L647.65 67.77a1.49 1.49 0 00.179-1.156 1.737 1.737 0 00-.628-.7l.845-1.382 27.265 16.656c1.613.986 2.662.994 3.225.072l1.383.845-5.208 8.525-1.383-.845zM232.902 140.753c1.851-.91 3.436-1.91 4.663-2.884 1.227-.973 2.128-2.157 2.613-3.434.515-1.216.704-2.644.507-4.252-.257-1.58-.84-3.37-1.867-5.46-1.027-2.09-2.087-3.646-3.18-4.814-1.153-1.14-2.398-1.862-3.705-2.258-1.277-.337-2.765-.347-4.286.029-1.52.376-3.281 1.019-5.133 1.928l-9.258 4.548 10.387 21.146 9.259-4.549zm-10.522-27.456c2.21-1.085 4.388-1.784 6.622-2.066 2.174-.253 4.316-.119 6.306.46 2.02.64 3.947 1.695 5.692 3.285s3.307 3.714 4.628 6.402c1.32 2.688 2.017 5.163 2.209 7.516.192 2.352-.122 4.582-.88 6.512-.728 1.989-1.93 3.766-3.46 5.333-1.588 1.596-3.473 2.892-5.683 3.978l-19.83 9.741-.529-1.075c.896-.44 1.198-1.033.846-1.75l-13.322-27.118c-.352-.717-1.006-.84-1.902-.4l-.528-1.076 19.831-9.742zM276.433 104.021c-.297-.812-1.06-.958-2.372-.477l-15.246 5.59 2.29 6.248 9.623-3.528c.688-.252 1.227-.52 1.494-.76.29-.177.362-.558.202-.995l1.125-.413 2.428 6.624-1.25.458c-.035-.483-.337-.727-.82-.692-.46.098-1.171.288-1.983.585l-9.123 3.345 2.703 7.373 15.996-5.864c.5-.184.891-.469 1.112-.833.244-.302.317-.683.18-1.058l1.124-.413 2.405 6.561-1.125.412c-.137-.374-.393-.493-.728-.441-.336.052-.773.212-1.273.396l-22.932 8.406-.412-1.124a.953.953 0 00.533-.48c.142-.193.175-.489.06-.801l-8.566-23.37a1.102 1.102 0 00-.588-.634 1.284 1.284 0 00-.693.041l-.413-1.125 22.182-8.131c1.312-.482 1.8-1.086 1.525-1.835l1.124-.413 2.543 6.936-1.125.412zM306.873 101.54c1.222-.326 2.247-.875 2.963-1.547.716-.673.863-1.676.503-3.027-.36-1.35-.985-2.148-1.975-2.504-.973-.292-2.135-.258-3.357.067l-10.804 2.877 1.866 7.01 10.804-2.877zm-19.546-5.127c-.171-.643-.771-.828-1.864-.537l-.309-1.157 18.715-4.983c3.472-.924 6.216-.966 8.342-.224 2.062.76 3.48 2.724 4.302 5.81.822 3.087.55 5.432-.877 7.052-1.476 1.701-3.894 2.965-7.367 3.89l-10.932 2.91 2.568 9.647c.171.643.707.845 1.607.605l.309 1.158-9.132 2.431-.309-1.157c1.094-.291 1.522-.75 1.351-1.393l-6.404-24.052zM343.46 98.99l-7.197-10.113-2.774 11.817 9.97-1.704zm-20.05 14.634c.514-.156.863-.485 1.178-1.012.26-.45.39-.877.53-1.238l6.132-22.99c.162-.636.269-1.194.399-1.621.075-.35.073-.755.017-1.083-.045-.263-.144-.448-.22-.503l-.428-.13-.202-1.18 9.906-1.693.201 1.181-.36.264c-.185.1-.228.242-.172.57.045.262.232.568.485.862.264.36.539.786.814 1.211l14.438 20.488c.264.36.572.578.868.73.296.152.58.238.92.248l.201 1.18-9.315 1.592-.168-.984c.197-.033.448-.144.688-.32.175-.165.26-.45.205-.777a2.392 2.392 0 00-.255-.7c-.099-.185-.286-.49-.473-.796l-2.41-3.437-14.039 2.399-1.231 3.856c-.141.362-.216.712-.237.986-.075.35-.096.624-.062.82.056.328.232.568.44.6.208.032.547.042.94-.025l.202 1.18-8.79 1.502-.202-1.18zM379.584 90.53c4.314-.319 6.4-1.875 6.199-4.596-.084-1.128-.678-1.952-1.723-2.542-1.106-.518-2.79-.727-5.047-.56l-10.486.777.57 7.698 10.487-.776zm-.802-12.62c3.916-.29 7.085.143 9.368 1.242 2.289 1.165 3.584 3.338 3.815 6.458.089 1.194-.032 2.27-.428 3.234-.395.964-.867 1.8-1.548 2.517-.676.785-1.5 1.38-2.333 1.842-.828.528-1.733.929-2.647 1.197l7.207 9.009c.366.44.794.808 1.273.973.418.236.897.4 1.372.499l.088 1.195-10.154.752-.089-1.195c.598-.044.849-.263.819-.661-.034-.465-.415-1.104-1.148-1.984l-5.823-7.443-9.225.684.703 9.49c.024.332.177.588.518.696.28.18.55.226.816.206l.089 1.195-8.827.654-.089-1.195c.797-.059 1.17-.42 1.121-1.084l-1.838-24.822c-.05-.663-.472-.966-1.269-.907l-.088-1.194 18.317-1.357zM408.891 105.074c.2.003.467-.059.67-.255.202-.13.34-.394.345-.726l.374-22.158-8.65-.146a1.878 1.878 0 00-1.003.249c-.336.194-.473.458-.48.857l-1.198-.02.13-7.652 1.197.02c-.01.599.115 1.067.445 1.272.329.205.66.344.992.35l23.689.4c.332.005.667-.123 1.003-.317.337-.194.477-.657.488-1.256l1.197.02-.129 7.652-1.198-.02c.007-.399-.121-.667-.45-.873a1.878 1.878 0 00-.994-.283l-8.65-.146-.375 22.158c-.01.666.383 1.005 1.181 1.019l-.02 1.198-8.584-.145.02-1.198zM434.3 105.672c.205-.043.411-.086.625-.195.148-.116.253-.439.307-.902l2.847-24.19c.07-.595.05-1 0-1.14-.117-.147-.307-.237-.638-.275l.14-1.19 9.188 1.081-.14 1.19c-.463-.055-.685.12-.731.517-.024.198.019.404.186.692.094.346.245.766.513 1.333l6.314 15.82 9.872-13.848c.392-.49.645-.93.882-1.236.237-.307.327-.498.342-.63.047-.397-.128-.618-.458-.657l.14-1.19 9.319 1.097-.14 1.19c-.198-.024-.404.019-.61.062-.28.1-.378.357-.416.688l-2.925 24.851c-.039.33-.004.603.245.766.175.222.365.311.564.335l-.14 1.19-7.667-.903.14-1.19c.925.11 1.36-.175 1.306-.851l2.186-18.573-.132-.015-13.679 19.431-.528-.062-8.2-22.006.067.008-.133-.016-2.185 18.573c-.078.66.28 1.038 1.007 1.124l-.14 1.19-7.469-.88.14-1.19zM509.372 96.079c.191-.844-.37-1.38-1.733-1.689l-15.838-3.582-1.468 6.491 9.996 2.261c.714.162 1.313.229 1.667.172.339.009.607-.272.71-.726l1.168.264-1.556 6.88-1.298-.293c.232-.425.111-.793-.314-1.026a15.167 15.167 0 00-1.983-.585l-9.477-2.143-1.732 7.66 16.617 3.757c.52.118 1.003.09 1.386-.095.369-.122.637-.402.725-.792l1.169.265-1.542 6.815-1.168-.264c.088-.39-.063-.628-.373-.767-.31-.138-.764-.24-1.283-.358l-23.823-5.388.265-1.168c.194.044.469.037.707-.113.225-.086.413-.316.487-.64l5.49-24.278a1.102 1.102 0 00-.148-.852 1.284 1.284 0 00-.605-.341l.264-1.169 23.043 5.212c1.364.308 2.1.066 2.277-.713l1.168.264-1.63 7.205-1.168-.264zM513.885 119.831c.757.254 1.242.066 1.453-.565l7.917-23.597c.211-.631-.061-1.074-.819-1.328l.381-1.136 9.275 3.112-.38 1.136c-.337-.043-.485-.022-.548.167-.064.19.188.905.816 2.17l9.767 21.105 5.736-17.099c.212-.63-.124-1.094-.944-1.37l.38-1.135 7.698 2.582-.38 1.136c-.758-.254-1.242-.065-1.454.565l-7.916 23.598c-.212.63.06 1.073.818 1.327l-.381 1.136-8.202-2.752.38-1.135c.316.105.485.022.548-.168.064-.189-.041-.505-.271-1.073-.294-.59-.587-1.18-.902-1.917l-10.06-21.907-6.159 18.361c-.211.63.125 1.095 1.008 1.39l-.381 1.137-7.76-2.604.38-1.136zM560.678 137c.182.08.452.129.716.028.236-.04.466-.229.602-.533l9.043-20.232-7.899-3.53a1.878 1.878 0 00-1.02-.165c-.385.047-.615.236-.778.6l-1.093-.489 3.122-6.987 1.094.489c-.244.547-.313 1.026-.09 1.345.222.318.471.575.775.71l21.63 9.668c.304.136.662.15 1.047.104.385-.047.697-.418.941-.965l1.094.489-3.123 6.987-1.094-.489c.163-.364.15-.661-.072-.98a1.878 1.878 0 00-.803-.65l-7.898-3.53-9.043 20.232c-.272.608-.043 1.075.686 1.4l-.488 1.094-7.838-3.503.489-1.094zM97.085 747.003c-.455.485-.391 1 .24 1.592l-.819.873-6.357-5.957.819-.873c.534.5 1.004.485 1.458 0l17.007-18.148c.454-.486.44-.956-.095-1.456l.819-.873 6.357 5.957-.819.873c-.63-.591-1.15-.621-1.604-.136l-7.412 7.91c1.98.123 3.96.247 5.989.416 2.028.17 3.869.345 5.518.433 1.65.087 3.063.136 4.194.193 1.13.057 1.695.04 1.831-.107.137-.145.176-.382.121-.615a1.734 1.734 0 00-.397-.646l.682-.728 8.006 7.503-.818.874c-.525-.219-1.425-.425-2.793-.521l-14.242-1.043-1.246 16.695c-.066.849-.084 1.743-.102 2.638-.064.943.149 1.689.45 2.243l-.82.874-7.18-6.73.818-.873c.34.318.624.403.806.209.137-.146.225-.337.306-.716.082-.379.11-.991.127-1.886l.853-12.872-6.605-.538-5.092 5.435zM119.713 769.015c.631.488 1.15.47 1.557-.057l15.22-19.67c.406-.527.294-1.034-.337-1.522l.733-.947 7.731 5.982-.732.947c-.304-.151-.45-.18-.572-.022-.122.158-.12.916.058 2.315l2.287 23.126 11.028-14.254c.407-.525.242-1.073-.441-1.602l.732-.947 6.417 4.964-.733.947c-.63-.488-1.15-.47-1.557.057l-15.219 19.67c-.407.527-.295 1.034.337 1.522l-.733.947-6.837-5.29.732-.947c.263.203.45.18.572.022.122-.158.127-.49.096-1.103-.083-.653-.167-1.306-.221-2.105l-2.301-23.977-11.842 15.306c-.407.526-.242 1.073.494 1.643l-.732.947-6.47-5.005.733-.947zM156.831 796.544c.612.402 1.037.602 1.369.581.295.035.553-.114.735-.392l13.66-20.784a.948.948 0 00.104-.886c-.149-.258-.501-.569-1.113-.97l.658-1 8.447 5.55-.658 1c-1.055-.693-1.738-.744-2.103-.188l-13.66 20.784c-.365.556-.048 1.162 1.008 1.856l-.657 1-8.447-5.55.657-1.001zM207.492 805.484l-.47-.795c.285-.374.44-.516.473-.574.194-.349.189-.885-.107-1.583-.329-.64-.74-1.403-1.36-2.205-.618-.802-1.386-1.61-2.243-2.393-.949-.758-1.93-1.457-2.975-2.04a20.782 20.782 0 00-4.324-1.803c-1.472-.364-2.867-.456-4.243-.31-1.409.204-2.682.712-3.878 1.492-1.197.78-2.264 2.011-3.171 3.638-.907 1.626-1.394 3.182-1.338 4.583.023 1.46.318 2.843.949 4.032a10.096 10.096 0 002.41 3.324c1.058.971 2.122 1.793 3.226 2.408a35.639 35.639 0 004.956 2.308 15.33 15.33 0 004.81.932l2.041-3.66-5.982-3.336c-.406-.226-.845-.395-1.233-.383-.387.013-.814.231-1.131.664l-1.045-.583 3.336-5.982 1.045.583c-.168.439-.066.8.16 1.079.226.278.6.563 1.006.79l11.384 6.348-.583 1.045c-.446-.02-.776.025-.989.134-.213.11-.433.368-.66.774l-3.077 5.518c-.195.348-.266.613-.215.794-.039.207.129.452.438.853l-.389.697c-.478.038-1.162.037-2.144.022a31.876 31.876 0 01-3.526-.367c-1.388-.241-2.886-.696-4.526-1.306-1.672-.552-3.42-1.375-5.28-2.411-2.497-1.393-4.6-2.947-6.308-4.661-1.742-1.657-2.998-3.5-3.777-5.38-.836-1.914-1.162-3.923-.952-5.938.12-1.99.75-4.074 1.883-6.107 1.134-2.033 2.577-3.665 4.239-4.87 1.571-1.179 3.452-1.957 5.552-2.31 2.01-.325 4.237-.225 6.626.27 2.357.553 4.784 1.526 7.281 2.919 1.51.842 2.782 1.703 3.781 2.641 1 .938 1.825 1.78 2.534 2.556.71.776 1.303 1.487 1.663 2.07.361.581.703.924.993 1.086.29.162.555.234.762.273.207.039.446.02.775-.025l.503.737-6.9 4.452zM220.634 831.287c-.133.305-.117.602.013.804.103.262.26.403.504.509l-.477 1.097-7.685-3.34.478-1.098c.244.106.453.125.777.048.175-.07.403-.26.535-.565l9.917-22.809c.132-.305.116-.602.074-.838-.191-.228-.348-.368-.592-.474l.478-1.098 7.684 3.34-.477 1.099a1.123 1.123 0 00-.69-.083c-.262.104-.49.295-.623.6l-3.738 8.599 16.344 7.105 3.738-8.599c.133-.304.178-.575.074-.837a1.34 1.34 0 00-.59-.475l.476-1.098 7.685 3.341-.478 1.098a1.123 1.123 0 00-.689-.082c-.263.103-.49.294-.623.599l-9.916 22.808c-.133.305-.117.602.013.804.103.262.26.403.504.509l-.478 1.098-7.684-3.341.477-1.098c.244.106.515.151.777.048.236-.043.403-.26.536-.565l4.004-9.209-16.345-7.106-4.003 9.21zM262.063 848.82c.19.062.463.083.715-.044.231-.063.441-.274.546-.59l6.961-21.021-8.207-2.718a1.877 1.877 0 00-1.03-.061c-.378.085-.588.295-.714.674l-1.136-.376 2.404-7.26 1.136.376c-.188.568-.208 1.052.045 1.346.253.294.527.525.843.63l22.473 7.442c.316.104.673.083 1.052-.002.378-.085.65-.485.839-1.053l1.136.376-2.404 7.26-1.136-.377c.125-.378.082-.673-.17-.967a1.877 1.877 0 00-.864-.566l-8.206-2.717-6.962 21.021c-.21.632.065 1.073.823 1.324l-.377 1.136-8.143-2.697.376-1.136zM292.401 848.824l-.346 1.147c-.157.647.09 1.322.805 2.043.7.785 1.559 1.472 2.644 2.077 1.005.655 2.09 1.26 3.206 1.735 1.052.46 1.925.809 2.572.966.581.14 1.373.264 2.293.418a9.595 9.595 0 002.726.045c.903-.055 1.773-.254 2.48-.63.69-.312 1.17-.88 1.374-1.72.235-.97-.125-1.741-1.05-2.444-.989-.719-2.203-1.355-3.756-2.005-1.569-.586-3.187-1.251-4.998-1.964a22.213 22.213 0 01-4.889-2.416c-1.49-.909-2.595-1.998-3.378-3.282-.864-1.236-1.037-2.783-.583-4.657.674-2.78 2.37-4.695 5.023-5.763 2.654-1.067 6.089-1.124 10.225-.122 2.004.485 3.717 1.038 5.126 1.721 1.343.668 2.477 1.353 3.353 1.976.875.622 1.637 1.15 2.205 1.629.503.464.909.768 1.232.846.323.078.597.076.822-.006.21-.018.435-.1.725-.167l.539.884-4.704 5.292-1.07-.67c-.001-.274.061-.533.06-.807-.003-.274-.134-.58-.394-.916-.668-.915-1.869-1.89-3.553-2.846-1.685-.955-3.625-1.7-5.887-2.247-.84-.204-1.697-.343-2.488-.466-.807-.059-1.565-.037-2.209.08-.644.118-1.24.316-1.657.625a2.706 2.706 0 00-.893 1.426c-.234.97.126 1.741 1.13 2.395.925.703 2.14 1.34 3.708 1.925 1.553.65 3.171 1.316 4.998 1.964 1.812.712 3.398 1.507 4.873 2.48 1.475.974 2.58 2.062 3.412 3.427.768 1.35.925 2.961.47 4.836-.454 1.874-1.282 3.315-2.484 4.324-1.267.993-2.65 1.616-4.18 1.998-1.529.382-3.19.459-4.852.261-1.728-.213-3.31-.46-4.797-.82-1.486-.36-2.877-.834-4.22-1.502a27.854 27.854 0 01-3.708-1.925c-1.15-.62-2.04-1.178-2.787-1.77-.762-.526-1.183-.765-1.377-.812a.948.948 0 00-.869.2l-.748-.866 4.727-6.518 1.15.62zM363.784 847.014c-1.39-.138-2.799-.078-4.168.253a11.448 11.448 0 00-3.838 1.623 9.133 9.133 0 00-2.83 2.927c-.787 1.191-1.256 2.548-1.414 4.136-.158 1.588.035 3.01.571 4.334.47 1.316 1.232 2.394 2.205 3.36.967 1.032 2.099 1.746 3.442 2.347 1.278.595 2.641.998 4.03 1.136 1.39.139 2.806.012 4.242-.313 1.37-.331 2.62-.808 3.77-1.63 1.145-.754 2.104-1.661 2.891-2.853.72-1.198 1.19-2.555 1.348-4.143.158-1.588-.035-3.01-.505-4.327a10.15 10.15 0 00-2.265-3.433 11.858 11.858 0 00-3.376-2.34 13.13 13.13 0 00-4.103-1.077zm.487-4.897a25.93 25.93 0 016.79 1.611c2.058.806 3.82 1.917 5.282 3.332a13.61 13.61 0 013.311 5.008c.736 2.011.982 4.24.731 6.755-.25 2.515-.93 4.653-2.041 6.413a13.245 13.245 0 01-4.24 4.323c-1.713 1.1-3.651 1.775-5.821 2.094-2.243.378-4.52.42-6.968.176-2.448-.244-4.672-.732-6.73-1.539-2.131-.746-3.898-1.79-5.361-3.206a13.245 13.245 0 01-3.305-5.074c-.742-1.945-.988-4.175-.738-6.69.25-2.514.93-4.651 2.048-6.478a13.61 13.61 0 014.233-4.257c1.713-1.1 3.658-1.841 5.901-2.22a25.073 25.073 0 016.908-.248zM416.242 850.505c.002-.2-.129-.466-.46-.668-.33-.202-.862-.273-1.594-.28l-18.02-.144-.057 7.049 11.704.094c.731.006 1.197-.057 1.398-.255.2-.131.27-.397.339-.729l1.196.01-.056 6.982-1.197-.01c-.063-.332-.128-.599-.326-.8-.198-.201-.663-.271-1.394-.277l-11.704-.094-.081 10.174c-.003.332.128.6.46.735.33.202.662.271 1.061.275l-.01 1.197-9.176-.074.01-1.197c.864.007 1.266-.322 1.27-.987l.2-24.87c.006-.666-.457-1.002-1.388-1.01l.01-1.196 25.801.207c.731.006 1.265-.123 1.599-.32.334-.196.47-.528.472-.86l1.197.01-.057 7.048-1.197-.01zM454.915 869.845a.953.953 0 00.628-.345c.181-.156.281-.436.241-.766l-2.68-21.982-8.581 1.046c-.33.04-.652.147-.958.385-.306.238-.406.519-.358.915l-1.188.144-.926-7.59 1.189-.146c.072.594.26 1.04.615 1.198.354.158.7.25 1.03.21l23.5-2.866c.33-.04.644-.212.95-.45.306-.239.382-.717.31-1.31l1.187-.146.926 7.591-1.188.145c-.049-.396-.213-.644-.567-.801a1.877 1.877 0 00-1.022-.144l-8.582 1.046 2.68 21.982c.08.66.517.942 1.31.846l.144 1.188-8.516 1.038-.144-1.188zM489.6 863.5c.066.326.249.56.47.652.235.157.444.183.705.13l.235 1.174-8.216 1.646-.235-1.174c.26-.052.443-.156.665-.404.104-.157.182-.444.117-.77l-4.886-24.386a1.426 1.426 0 00-.417-.73c-.287-.078-.496-.104-.757-.052l-.235-1.174 8.216-1.646.235 1.174c-.26.052-.443.156-.613.326a1.101 1.101 0 00-.17.848l1.843 9.194 17.475-3.502-1.842-9.193c-.066-.326-.183-.574-.418-.73a1.34 1.34 0 00-.756-.052l-.236-1.174 8.216-1.646.235 1.174c-.26.052-.443.156-.613.326a1.101 1.101 0 00-.169.848l4.886 24.386c.065.326.248.56.47.652.235.156.443.182.704.13l.235 1.174-8.216 1.646-.235-1.174c.261-.052.509-.17.665-.404.17-.17.183-.444.117-.77l-1.972-9.846-17.475 3.501 1.973 9.846zM545.046 827.293c-.259-.825-1.013-1.006-2.345-.588l-15.481 4.86 1.991 6.345 9.771-3.068c.698-.219 1.25-.461 1.527-.688.297-.163.388-.54.248-.984l1.142-.359 2.112 6.726-1.27.398c-.012-.484-.302-.741-.786-.729-.464.076-1.181.232-2.006.49l-9.264 2.91 2.35 7.486 16.243-5.1c.508-.159.912-.425 1.15-.779.257-.29.348-.666.228-1.047l1.142-.359 2.092 6.662-1.142.359c-.12-.38-.37-.512-.707-.475-.337.036-.781.175-1.289.335l-23.285 7.31-.358-1.142a.953.953 0 00.555-.453c.15-.187.197-.48.098-.798l-7.45-23.729a1.101 1.101 0 00-.556-.662 1.283 1.283 0 00-.694.01l-.359-1.143 22.524-7.071c1.332-.418 1.847-.998 1.608-1.76l1.142-.358 2.21 7.043-1.141.358zM583.223 836.036c.72-.345.936-.817.649-1.417l-10.741-22.432c-.288-.6-.791-.727-1.51-.383l-.518-1.08 8.817-4.221.517 1.08c-.271.203-.362.32-.276.5.086.18.764.52 2.095.988l21.69 8.342-7.784-16.254c-.287-.6-.85-.699-1.63-.326l-.517-1.08 7.317-3.503.517 1.08c-.72.344-.936.816-.648 1.416l10.74 22.432c.288.6.791.727 1.511.383l.517 1.08-7.797 3.733-.517-1.08c.3-.143.362-.32.276-.5-.086-.18-.38-.334-.942-.582-.62-.219-1.241-.437-1.98-.747l-22.456-8.712 8.357 17.454c.287.6.85.698 1.69.296l.517 1.08-7.377 3.532-.517-1.08zM624.868 787.695c-1.194.726-2.283 1.622-3.178 2.71a11.448 11.448 0 00-2.088 3.605 9.133 9.133 0 00-.501 4.04c.088 1.426.53 2.792 1.359 4.156.83 1.363 1.839 2.384 3.063 3.118 1.168.768 2.425 1.172 3.783 1.357 1.393.243 2.727.133 4.162-.195 1.378-.294 2.71-.792 3.903-1.517 1.193-.726 2.248-1.679 3.2-2.802.894-1.089 1.606-2.222 2.031-3.57.46-1.292.68-2.593.592-4.018-.145-1.391-.586-2.757-1.415-4.12-.83-1.364-1.84-2.385-3.007-3.153a10.15 10.15 0 00-3.874-1.38 11.858 11.858 0 00-4.105.16 13.13 13.13 0 00-3.925 1.61zm-2.557-4.204a25.93 25.93 0 016.393-2.798c2.13-.594 4.204-.766 6.224-.516 2.02.25 3.894.9 5.657 2.008 1.798 1.164 3.336 2.797 4.648 4.957 1.313 2.159 2.056 4.276 2.228 6.35a13.245 13.245 0 01-.786 6.004c-.707 1.909-1.849 3.615-3.39 5.175-1.565 1.651-3.359 3.053-5.46 4.332-2.103 1.278-4.173 2.226-6.303 2.82-2.151.685-4.191.914-6.211.664-2.02-.25-3.895-.9-5.692-2.065-1.763-1.107-3.3-2.74-4.614-4.9-1.313-2.159-2.055-4.276-2.262-6.407a13.61 13.61 0 01.82-5.947c.708-1.909 1.815-3.672 3.38-5.323a25.073 25.073 0 015.368-4.354zM665.328 769.97c3.462-2.587 4.384-5.02 2.752-7.203-.676-.906-1.62-1.28-2.817-1.216-1.21.158-2.742.887-4.553 2.24l-8.417 6.29 4.618 6.179 8.417-6.29zm-7.457-10.2c3.143-2.35 6.045-3.687 8.56-3.989 2.553-.248 4.812.887 6.683 3.39.717.96 1.194 1.931 1.378 2.956.184 1.024.236 1.982.048 2.952-.148 1.024-.522 1.968-.976 2.805-.414.89-.96 1.714-1.587 2.43l10.913 3.718c.545.174 1.103.254 1.595.136a4.8 4.8 0 001.424-.317l.717.959-8.15 6.09-.717-.959c.479-.358.573-.677.334-.997-.279-.373-.943-.706-2.033-1.054l-8.906-3.142-7.404 5.533 5.692 7.618c.199.266.465.4.81.307.333.001.586-.105.8-.264l.716.959-7.086 5.294-.716-.96c.64-.477.76-.982.362-1.515l-14.887-19.923c-.398-.533-.917-.56-1.556-.083l-.717-.959 14.703-10.986zM698.657 762.706a.953.953 0 00.319-.641c.06-.232-.017-.52-.239-.767l-14.736-16.53-6.453 5.754a1.877 1.877 0 00-.568.862c-.115.37-.037.657.228.955l-.893.797-5.09-5.709.894-.796c.398.447.807.705 1.188.633.381-.072.718-.194.966-.416l17.67-15.754c.249-.221.409-.542.524-.912.115-.37-.095-.806-.493-1.253l.893-.797 5.09 5.709-.894.796c-.266-.298-.542-.408-.923-.335-.38.072-.673.244-.921.465l-6.453 5.753 14.737 16.53c.442.495.961.478 1.557-.053l.796.894-6.403 5.708-.796-.893zM723.745 737.648c.243.227.528.312.761.257.282-.01.467-.11.649-.304l.874.818-5.726 6.118-.874-.818c.182-.194.27-.385.306-.716-.006-.188-.11-.467-.352-.694l-18.16-16.994a1.426 1.426 0 00-.764-.351c-.279.103-.464.203-.645.397l-.874-.817 5.725-6.118.874.818c-.182.194-.27.385-.309.622.01.282.113.56.356.788l6.846 6.407 12.178-13.013-6.846-6.407c-.243-.227-.483-.36-.765-.35a1.34 1.34 0 00-.645.397l-.874-.818 5.725-6.118.874.818c-.182.194-.27.385-.309.622.01.282.113.56.356.788l18.16 16.994c.242.228.527.312.76.258.282-.01.467-.11.649-.304l.874.818-5.725 6.117-.874-.817c.181-.195.315-.434.305-.716.04-.237-.11-.467-.352-.694l-7.332-6.862-12.178 13.013 7.332 6.861zM288.144 287.296c-2.19-1.331-5.52.391-5.698 2.948 1.667 1.359 4.654.15 4.905-1.986l.793-.962zM546.829 472.98c3.317-.146 4.46-5.451 1.778-7.409a22.212 22.212 0 00-2.07 6.73l.292.679zM464.214 298.32c-1.272-2.42-4.729-3.366-7.056-1.93 1.716 2.445 4.957 3.712 7.877 3.079l-.821-1.149zM344.446 681.229c1.292 2.484 4.903 3.385 7.21 1.798-1.853-2.36-5.12-3.513-8.043-2.837l.833 1.039zM202.624 348.007c2.938-1.425 4.445-5.252 3.267-8.298-2.253 1.319-3.665 3.954-3.517 6.56l.25 1.738zM633.579 439.582c-.261 4.771 1.216 9.618 4.092 13.434 1.131-4.774-.491-10.101-4.092-13.434M340.148 676.448a13.968 13.968 0 00-8.029-3.902c.62 4.614 5.772 8.054 10.272 6.86.019-1.058-.637-2.097-1.6-2.536l-.643-.422zM170.214 455.277l.382 9.504c1.646-.38 2.028-2.515 2.068-4.203l.303-12.758c-2.179 1.197-3.29 4.044-2.497 6.401l-.256 1.056zM535.477 523.118l-4.284-4.594c-1.908 1.487-2.38 4.514-1.013 6.51 1.367 1.996 4.36 2.65 6.436 1.407 1.096-.67.866-2.654-.355-3.054l-.784-.269zM461.634 402.456a199.854 199.854 0 00-12.267 7.885c5.261 2.317 12.19-2.137 12.267-7.885M387.898 788.868a75.617 75.617 0 0010.073-10.192c-5.63-1.996-12.135 4.587-10.073 10.192M193.171 521.846a51.827 51.827 0 00-5.629-15.585c-.672-1.208-1.678-2.548-3.057-2.448.486 6.816 3.659 13.404 8.686 18.033M488.647 402.5c-2.896-.734-6.022 2.294-5.382 5.211.642 2.917 4.75 4.356 7.07 2.476-.05-1.007-.997-1.882-2.004-1.856l4.17-6.035-2.606-.712-1.248.916zM393.596 787.474l-2.386 1.771c.891.11 1.033 1.664.176 1.932 2.822 1.342 7.048 2.233 8.345-.61 1.083-2.373-.603-6.341 1.895-7.092-2.792-1.527-6.826.641-7.093 3.812l-.937.187zM351.881 684.276a22.704 22.704 0 0013.476 6.337c1.455.149 3.263-.045 3.852-1.385-4.807-3.868-11.203-5.696-17.328-4.952M399.975 487.865a7.033 7.033 0 001.334-5.9c-4.744-.898-9.875 2.625-10.744 7.374 2.87 1.005 6.203.58 8.728-1.116l.682-.358zM350.801 312.177c2.549-6.105 2.4-13.282-.399-19.276-3.257 5.892-3.099 13.523.399 19.276M489.613 452.979a49.848 49.848 0 0110.741-12.684c-3.371-1.16-7.402-.051-9.706 2.67-2.305 2.721-2.734 6.879-1.035 10.014M281.783 645.518c3.196-2.856 6.602-6.095 7.134-10.349a92.749 92.749 0 00-19.84 17.988c1.705 1.45 4.246-.08 5.916-1.573 2.264-2.021 4.527-4.045 6.79-6.066M467.647 500.027c-.216-.852-.881-1.504-1.518-2.109l-3.801-3.618c-1.341-1.275-3.138-2.65-4.855-1.96-1.487.599-2.011 2.565-1.54 4.099.471 1.533 1.656 2.725 2.799 3.85 1.448 1.425 3.048 2.926 5.062 3.186 2.015.26 4.354-1.479 3.853-3.448M404.578 763.468a129.79 129.79 0 00-.944 16.095c.007 1.903 1.635 4.582 3.024 3.28 2.366-6.743 2.607-14.216.677-21.097l-2.757 1.722M404.521 746.15c-.053 1.206-.282 2.509.335 3.547.632 1.062 2.145 1.485 3.236.903a333.566 333.566 0 01-.171-23.435c-3.615.266-5.468 4.67-5.161 8.282.307 3.612 1.92 7.081 1.761 10.703M414.32 655.138c1.858 2.57 6.596 1.925 7.698-1.049 1.03-2.775-.734-6.406 1.261-8.592 1.443-1.581 3.93-1.33 6.051-1.618 2.121-.289 4.539-2.291 3.497-4.161-4.536 1.014-10.413-1.459-13.283 2.196-1.585 2.018-1.212 4.87-1.305 7.435-.093 2.564-1.356 5.658-3.919 5.789M547.882 310.719l2.381 3.364c3.6-3.353 3.641-9.782.085-13.182a22.004 22.004 0 00-2.283 8.043c-3.73-.3-7.547 1.725-9.391 4.981-1.844 3.255-1.616 7.57.559 10.614a47.644 47.644 0 018.649-13.82M243.505 326.452l16.734-8.986c-1.939-2.362-5.351-3.153-8.346-2.546-2.996.608-5.622 2.411-7.864 4.489a32.905 32.905 0 00-6.85 9.01c2.234.185 4.352-.907 6.326-1.967M267.908 441.446c-6.573 3.802-9.024 12.246-8.678 19.83.17 3.704 1.289 7.959 4.691 9.43 2.699-2.455.154-6.755-.376-10.365-.952-6.489 5.423-12.423 4.363-18.895M313.599 468.785c3.708-2.334 5.663-6.779 6.062-11.142.397-4.363-.542-8.726-1.477-13.006-.308-1.409-.825-3.055-2.205-3.469-2.713 1.443-3.105 5.207-2.464 8.213.641 3.006 1.966 6.011 1.408 9.033-.665 3.608-3.799 7.663-1.324 10.371M331.924 374.512c-.905-1.185-2.786-2.386-3.621-1.151-.473 3.193 1.404 6.212 3.198 8.895-4.946 2.804-9.904-6.867-15.306-5.095 1.86 4.716 6.076 8.434 10.987 9.69 2.376.608 5.215.537 6.895-1.25 2.819-2.999.346-7.818-2.153-11.089M307.344 420.407c-.501-.542-1.209-.835-1.897-1.102a69.723 69.723 0 00-20.591-4.55c2.926 4.846 8.427 7.401 13.609 9.682 2.105.927 4.421 1.872 6.638 1.262 2.218-.609 3.803-3.605 2.241-5.292M296.292 498.133c4.845-.371 7.126-6.87 5.195-11.328-1.932-4.458-6.39-7.19-10.59-9.637l-2.684-1.564c.106 8.235 10.932 14.803 8.079 22.529M635.25 471.833l-10.13 32.842c-.578 1.878-1.066 4.184.304 5.593a146.023 146.023 0 0013.283-43.553c-1.98.792-2.828 3.079-3.457 5.118M458.539 663.424c-3.258 2.781-9.197.895-10.254-3.256-.62-2.436-3.772-3.456-6.168-2.691-2.395.764-4.172 2.74-5.827 4.633-1.355 1.549-2.732 3.918-1.356 5.45 1.971.98 3.79-1.451 5.041-3.264 1.252-1.812 4.618-2.967 5.14-.827.756 3.097 3.454 5.628 6.594 6.184 3.139.556 6.543-.894 8.317-3.542l-1.487-2.687M292.218 280.703a79.211 79.211 0 01-27.748-7.96c-1.766-.882-4.162-1.732-5.475-.258 6.251 8.572 18.119 10.357 28.7 11.13 2.148.158 5.282-.896 4.523-2.912M391.603 534.895c2.559-.514 3.692-3.624 3.547-6.229-.145-2.606-1.085-5.19-.699-7.771.453-3.024 2.677-5.631 2.799-8.687-6.094 2.492-10.55 8.588-11.074 15.152-.286 3.587 1.899 8.243 5.427 7.535M300.623 394.282l.9 2.686a11.636 11.636 0 006.733 1.977c3.793-.088 7.769-2.606 8.307-6.361.538-3.756-3.904-7.576-7.174-5.654a10.195 10.195 0 003.145 6.22c-3.239 1.545-7.314 1.155-10.201-.976-2.455-1.812-6.061-1.221-8.539.559-2.479 1.78-4.088 4.496-5.626 7.131a55.968 55.968 0 0012.455-5.582M359.389 422.956l14.396 12.23c2.6 2.209 5.297 4.473 8.558 5.48 3.259 1.007 7.26.435 9.343-2.269-10.32-1.278-18.54-8.931-25.982-16.195 1.263.102 2.476-1.075 2.411-2.341-.064-1.266-1.389-2.313-2.636-2.084a22.054 22.054 0 01-6.09 5.179M344.689 582.751l2.186 3.1a31.897 31.897 0 008.868-15.332c.259-1.053.413-2.31-.339-3.09-1.057-1.1-2.904-.36-4.152.517-6.18 4.343-10.74 10.937-12.622 18.252 2.442.072 4.872-1.311 6.059-3.447M400.815 713.955c3.791.687 4.094 5.968 3.439 9.765 1.297-.369 2.768-.717 3.928-.031l.216-25.386c.011-1.374-.398-3.215-1.772-3.243-2.864 1.301-2.205 5.45-1.595 8.536.61 3.087-.849 7.64-3.885 6.813l1.073-7.334c-2.774-.216-5.516 2.013-5.873 4.773-.356 2.759 1.73 5.612 4.469 6.107M388.019 696.451c-1.792 1.687-2.094 4.728-.672 6.735 2.792 1.316 5.222-2.705 4.964-5.78-.257-3.075-1.472-6.525.372-9 2.454-3.295-1.924-7.814-1.164-11.852.733-3.904 5.866-5.625 6.926-9.453-2.834-1.458-6.469.337-8.135 3.054-1.666 2.717-1.874 6.051-2.038 9.234l-.253 4.913c-.208 4.048-.416 8.116 0 12.149M188.553 392.16l-15.29 44.498c-.822 2.39-1.607 5.17-.272 7.315a374.987 374.987 0 0018.986-53.786c-.867-1.424-2.882.397-3.424 1.972"}),l("path",{key:"7984e90a914ba3add6f7a7e1ca6e387eeb414716",d:"M555.848 476.488c.868-4.228 2.731-8.265 2.981-12.573.25-4.309-1.794-9.257-5.972-10.337-1.065-.275-2.519-.044-2.763 1.028 4.48 3.775 4.029 10.76 2.542 16.427-1.486 5.666-3.593 11.807-1.217 17.162.938 2.114 3.439 4.089 5.391 2.847a27.643 27.643 0 01-.962-14.554M181.122 505.28c-5.857-3.845-4.54-15.221-11.383-16.727a425.177 425.177 0 0024.595 51.391c2.048-.061 1.86-3.192.975-5.04l-14.187-29.624M321.432 342.342c-1.436.716-3.05-.563-4.03-1.834a23.325 23.325 0 01-3.22-5.674 19.842 19.842 0 017.25 7.508m-.244-8.649l-7.291-7.274c-.59-.59-1.204-1.195-1.979-1.507-2.855-1.151-5.641 2.55-5.139 5.588.501 3.037 2.827 5.382 4.576 7.916 1.633 2.366 2.85 5.066 4.937 7.043 2.087 1.977 5.484 3.026 7.84 1.379 2.113-1.477 2.527-4.577 1.643-6.999-.883-2.422-2.762-4.325-4.587-6.146M436.375 607.867c-1.093 4.092-1.407 8.346-1.716 12.57-.156 2.126-.267 4.431.916 6.204 5.902-3.972 10.375-10.022 12.445-16.83.988-3.252 1.065-7.524-1.867-9.244-2.039-1.195-4.787-.494-6.524 1.109-1.737 1.602-2.645 3.907-3.254 6.191M465.423 655.365c.737-.78 2.331.184 1.983 1.198-.347 1.015-2.197.799-2.301-.268l.318-.93zm13.446-4.622c-.483-.663-1.094-1.228-1.761-1.705-3.293-2.359-8.058-2.427-11.416-.163-3.359 2.263-5.083 6.706-4.131 10.642.474 1.967 1.698 3.894 3.605 4.57.895.318 1.865.338 2.815.297 3.57-.154 7.269-1.239 9.729-3.832 2.46-2.593 3.268-6.923 1.159-9.809M414.285 642.057c-1.524-.998-3.475-.982-5.296-.934-4.894.133-10.654.754-13.1 4.996-1.41 2.446-1.494 5.834-3.852 7.389-1.037.684-2.32.85-3.554.997l-31.138 3.737c-.732 1.029-.01 2.572 1.115 3.147 1.124.576 2.462.466 3.719.342l26.169-2.587c2.874-.283 6.009-.691 7.998-2.783 2.678-2.821 2.478-7.927 5.847-9.868 2.035-1.174 4.569-.67 6.917-.739 2.349-.069 5.157-1.347 5.175-3.697M261.228 578.546c13.413 6.389 29.214 7.597 43.443 3.322.355-.107.726-.226.985-.492 1.068-1.098-.755-2.643-2.233-3.043a92.11 92.11 0 00-38.406-2.036c-1.534.245-3.339.763-3.789 2.249M383.505 420.409c-2.866-3.399-6.168-6.404-9.546-9.295a221.376 221.376 0 00-13.952-11.002c-2.504-1.818-5.174-3.634-8.238-4.069-3.065-.435-6.616.96-7.636 3.882a11.903 11.903 0 00-2.272-4.169l-3.474 3.501c.58 1.701 2.93 2.493 4.421 1.49l2.05 3.99c1.725 1.262 2.625-2.579 4.487-3.63 1.227-.692 2.743.031 3.946.766a115.292 115.292 0 0127.986 24.033c1.795 2.129 3.545 5.281 1.816 7.464a19.342 19.342 0 019.173 2.088 50.58 50.58 0 00-8.761-15.049M278.679 333.573c-2.334 1.938-6.542.414-7.094-2.569 1.696-1.418 4.691-.685 5.539 1.356l1.555 1.213zm2.361 11.249c2.631-2.231 6.976-2.043 9.404.406a10.2 10.2 0 00-4.823 3.193c1.417 1.058 3.813.12 4.136-1.619 3.905 1.321 7.146 4.479 8.566 8.351-1.53 1.578-3.994-.496-5.196-2.335-1.203-1.84-3.889-3.745-5.219-1.994 1.548 3.331 3.307 6.89 6.562 8.591 3.255 1.7 8.319.171 8.646-3.487.218-2.436-1.637-4.511-3.362-6.246l-22.922-23.058c-2.553-2.569-7.546-1.173-8.94 2.17-1.395 3.342.506 7.469 3.682 9.209 3.177 1.739 7.206 1.372 10.443-.252l-.977 7.071"}),l("path",{key:"a36e568596e11207a0722ebef9ed647cd08866f7",d:"M448.489 642.861l12.812-.723c-2.583 2.203-5.266 4.545-6.473 7.718-1.207 3.174-.342 7.412 2.742 8.833-2.018-5.432 1.902-11.715 7.233-13.985 5.332-2.271 11.486-1.407 17.019.316a8.114 8.114 0 01.467-6.564 616.257 616.257 0 00-34.475-.048c-2.351.063-5.092.349-6.34 2.345-1.64 2.623.4 6.594-1.623 8.935-3.055 1.377-6.956-2.549-5.305-5.467l-3.35-.618c-2.427 3.884-.26 9.797 4.103 11.194 4.362 1.395 9.559-2.163 9.837-6.734.101-1.663-.197-3.696 1.163-4.66.622-.441 1.428-.499 2.19-.542M364.822 246.777l-2.41 2.011c-.212-5.041 5.03-9.547 9.982-8.58l-7.171 5.937-.401.632zm25.351-9.251c-3.023 3.925-8.206 5.302-12.645 7.503a32.913 32.913 0 00-12.449 10.808c-1.537-.787-1.925-2.942-1.267-4.539.659-1.595 2.072-2.739 3.472-3.749a59.561 59.561 0 0122.889-10.023m-30.502 16.946c.639 2.091 1.597 4.423 3.666 5.127 3.728 1.267 6.348-3.454 8.897-6.454 3.449-4.059 8.915-5.608 13.867-7.57 4.952-1.962 10.161-5.132 11.343-10.326-11.506-2.615-23.867-1.306-34.57 3.658-5.265 2.442-4.899 10.016-3.203 15.565M397.858 216.345c-3.09-.266-5.341-3.968-4.155-6.834 2.736 1.019 4.695 3.84 4.693 6.76l-.538.074zm-7.646-1.874l-19.416.689c-1.485.053-3.297-.075-3.967-1.402a145.03 145.03 0 0123.479-8.385 15.551 15.551 0 00-.096 9.098m-22.918-5.446c-3.527 1.522-7.514 3.593-8.224 7.368 9.925 6.274 23.374-.331 34.571 3.202 2.028.64 3.982 1.615 6.1 1.795 2.118.181 4.546-.717 5.266-2.717.885-2.458-1.143-4.925-3.007-6.756l-8.288-8.138c-1.353-1.329-2.83-2.723-4.701-3.038-1.762-.297-3.519.427-5.16 1.136l-16.557 7.148M459.833 259.609l-14.382-17.306c-7.296-8.78-20.994-11.442-31.048-6.032 4.13 4.463 8.991 9.226 15.071 9.317 4.451.067 9.613-2.263 12.925.712-.006 3.403-1.722 6.759-4.476 8.757a81.368 81.368 0 0021.91 4.552M337.955 418.84c2.254 1.469 4.041 3.632 6.458 4.813 2.418 1.182 5.963.872 7.033-1.597a8.027 8.027 0 00-2.821 5.412c-.252 2.945 1.381 6.041 4.086 7.232 2.705 1.19 6.28.149 7.689-2.448 1.409-2.597.13-6.359-2.663-7.325-1.285.964-1.849 2.788-1.332 4.309-.654.594-1.699.706-2.464.265-1.407-.599-1.814-2.527-1.253-3.951.561-1.423 1.798-2.45 2.987-3.414 2.824-2.287 6.034-4.704 9.659-4.439l.901-2.405c-.62-1.846-3.286-1.787-5.076-1.022-3.44 1.471-6.262 4.146-9.714 5.588-3.451 1.442-8.216 1.123-9.986-2.173 3.207-.312 5.863-3.462 5.629-6.675-.234-3.214-3.318-5.945-6.536-5.789-2.676.13-5.311-1.798-5.997-4.387-.687-2.589.646-5.569 3.034-6.782-2.303-1.913-6.185-.844-7.712 1.731-1.527 2.575-.958 6.022.803 8.444 1.76 2.422 4.505 3.954 7.325 4.961 1.791.639 3.89 1.315 4.56 3.095-3.092 2.4-7.484.643-11.347.015-4.908-.797-10.125.546-14.037 3.614a161.212 161.212 0 0026.824 14.097c-1.468-5.203-6.303-9.282-11.679-9.852-2.145-.228-5.179-.776-4.978-2.923 3.546-1.009 7.518-.407 10.607 1.606M284.576 455.102c-.863-1.112-.208-3.025 1.155-3.375 1.18 1.203.74 3.546-.798 4.237l-.357-.862zm-5.674 1.635c.234 2.613 3.008 4.398 5.63 4.472 2.622.075 5.097-1.107 7.452-2.262-1.534-3.082-1.01-7.07 1.268-9.65a80.036 80.036 0 005.092 13.207c2.355-5.279 2.201-11.725-.83-16.648-3.032-4.922-9.009-8.007-14.729-7.167-5.719.841-10.693 5.831-11.08 11.599-.087 1.281.033 2.585-.252 3.836-1.445 6.346 1.801 13.464 7.541 16.533 5.739 3.068 13.462 1.815 17.936-2.912-1.858-2.86-5.984-2.935-9.348-2.368-3.363.566-7.145 1.366-9.929-.606-4.431-3.136-2.552-10.013-.193-14.902 1.297.137 1.961 1.69 1.898 2.993-.063 1.303-.573 2.576-.456 3.875M523.307 455.714c.104 1.872-2.835 2.944-3.962 1.446-.081-1.113 1.498-1.911 2.346-1.185l1.616-.261zm5.172 5.265c.339 1.112.678 2.225 1.015 3.338-4.966 3.671-11.95 4.407-17.573 1.852-5.624-2.556-9.662-8.301-10.162-14.457-.125-1.541 2.186-2.214 3.461-1.34 1.275.874 1.77 2.477 2.411 3.884 3.407 7.476 13.715 10.799 20.848 6.723m-31.102-2.517c2.83 8.444 11.323 14.655 20.227 14.794 8.905.139 17.587-5.805 20.679-14.157.771-2.082 1.209-4.434.394-6.499-.891-2.257-3.077-3.71-5.232-4.823-7.692-3.968-16.657-5.418-25.207-4.077-4.503.707-9.415 2.641-11.089 6.881-.985 2.496-.624 5.337.228 7.881M299.734 253.298c1.387 1.652 3.875-.274 5.393-1.806 3.048-3.076 7.437-4.776 11.762-4.556a337.79 337.79 0 01-37.348 25.879c3.383 1.189 7.133.613 10.57-.413 13.206-3.941 23.768-14.11 31.455-25.55l10.862-2.662c7.119-1.745 14.785-3.83 19.3-9.604.61-.782 1.166-1.658 1.28-2.642.307-2.621-2.458-4.495-4.939-5.393-12.275-4.441-26.385-.871-37.11 6.571-10.725 7.442-18.573 18.306-25.377 29.447 7.005-.615 10.856-8.086 14.908-13.833 10.615-15.051 31.088-22.357 48.833-17.426-4.173 7.232-14.793 6.138-22.458 9.45-2.015.871-4.051 2.124-6.228 1.835-8.049-1.068-15.089 5.036-20.903 10.703M324.072 278.604a19.107 19.107 0 01-5.695 10.602c-1.006.947-2.306 1.833-3.663 1.571 1.09-5.179 4.633-9.787 9.358-12.173m-23.255 25.685a221.772 221.772 0 0112.154-14.911c-.838 8.158-5.794 15.788-12.907 19.869-1.381-1.226-.35-3.478.753-4.958m28.672-45.2c-2.969 3.946-3.675 9.138-6.017 13.485-5.315 9.869-18.728 15.059-20.18 26.174l-5.949-3.311c5.395-6.434 11.88-11.879 17.354-18.247 5.474-6.367 10.028-14.034 10.412-22.422-3.808-.106-5.45 4.601-6.986 8.086-.945 2.145-2.239 4.116-3.572 6.042a144.841 144.841 0 01-36.524 36.526c6.415 3.637 13.35-7.053 20.519-5.326-.343 4.371-4.395 7.558-8.507 9.082-4.111 1.523-8.602 1.978-12.537 3.912-1.584.779-3.156 2.966-1.748 4.031l24.262-4.775c6.204-1.221 10.911-6.168 14.983-11.006 3.766-4.476 7.398-9.124 10.057-14.335 4.355-8.532 5.93-18.455 4.433-27.916M176.264 233.03c-2.381-.097-4.638-1.683-5.537-3.891-.737-1.814-.569-3.94.309-5.69a15.675 15.675 0 015.228 9.581m19.489 20.362l5.449 5.346c-2.686-.796-4.984-2.808-6.129-5.364m51.59 53.536c1.564-8.086-4.86-15.314-10.774-21.046l-48.751-47.253c-2.585-2.506-5.214-5.07-6.874-8.264-1.323-2.545-1.991-5.421-3.582-7.807-1.591-2.385-4.611-4.231-7.285-3.193-3.993 1.549-3.532 7.465-1.438 11.201 2.55 4.545 6.341 8.245 10.079 11.876l60.662 58.922c2.347 2.28 4.825 4.639 7.963 5.564"}),l("path",{key:"9ba90ddfb2c8be10999bb28362602a4344e68206",d:"M260.383 280.105c-1.884-1.432-3.764-3.101-4.481-5.355-.717-2.254.229-5.189 2.5-5.854 14.089-4.128 26.736-13.021 35.387-24.883l-59.246 14.382c-.62.15-1.272.318-1.724.768-1.285 1.276-.019 3.408 1.24 4.71a272.513 272.513 0 0032.926 28.972c2.569 1.917 5.636 3.89 8.749 3.122 3.111-.768 4.46-6.001 1.418-7.013a58.113 58.113 0 01-16.769-8.849M359.084 668.446a48.15 48.15 0 0019.763.139c3.611 5.152 1.751 12.127.64 18.319-1.376 7.673-1.356 15.52-1.332 23.314l.26 83.798c.007 2.436 1.593 5.902 3.715 4.706l2.357-127.116c.067-3.566-3.208-6.451-6.661-7.346-3.453-.894-7.088-.328-10.647-.085-6.83.465-14.41-.624-18.978-5.723-4.567-5.1-3.531-15.011 3.03-16.962 1.836-.546 3.796-.418 5.707-.284l14.197.991c-.988 3.68-5.257 5.3-9.009 5.959-3.752.658-7.975 1.124-10.403 4.06-2.429 2.935-.249 8.929 3.407 7.859-1.452-3.562 2.903-6.717 6.63-7.667 3.949-1.008 8.313-1.498 11.297-4.274 2.985-2.776 2.93-8.952-1.024-9.943-5.718-1.433-11.589-2.878-17.444-2.189-5.854.688-11.778 3.983-13.885 9.488-1.995 5.21-.089 11.357 3.719 15.435 3.808 4.076 9.211 6.334 14.661 7.521M258.443 601.337c-4.685-.744-8.813 2.945-12.168 6.358l-86.149 87.628c-4.991 5.077-10.257 12.983-5.943 18.666 2.595 3.419 7.712 3.88 11.633 2.232 3.921-1.648 6.927-4.919 9.804-8.096l83.403-92.129c2.836-3.132 5.779-7.901 3.154-11.218L167.46 708.55c-1.963 2.15-4.987 4.47-7.399 2.864-3.033-2.018-.66-6.78 1.856-9.435l33.16-34.992c.743-.785 1.647-1.632 2.712-1.525 1.066.108 1.675 1.9.664 2.26l59.99-66.385M626.337 666.13c-.904 2.321 2.01 4.17 4.309 5.132 2.297.961 4.893 3.554 3.298 5.467l-50.537-45.22c-1.152-1.031-2.356-2.82-1.268-3.919l40.221 31.1c2.396 1.852 5.077 4.619 3.977 7.44m43.109 26.592c-.675 3.594-3.441 6.716-6.927 7.82l-26.147-21.759c4.54-.782 9.317-1.548 13.664-.022 2.789.979 5.173 2.83 7.502 4.651l11.908 9.31m-39.561-24.495c1.181-2.118 2.361-4.237 3.543-6.355a1122.964 1122.964 0 00-60.916-45.615c-3.321-2.315-7.914-4.609-11.086-2.097a1033.013 1033.013 0 0096.242 88.306c1.169.943 2.384 1.908 3.831 2.311 4.156 1.16 7.933-2.57 10.646-5.925 1.059-1.311 2.165-2.734 2.296-4.414.191-2.457-1.722-4.516-3.496-6.228-8.319-8.032-18.665-16.705-29.994-14.381-2.054.422-4.632 1.03-5.897-.642l9.569-4.792a26.295 26.295 0 00-14.738-.168M400.542 598.79c-3.191-.064-6.561-.293-9.392 1.181-2.831 1.474-4.637 5.431-2.676 7.95 1.388 1.782 4.064 2.077 6.206 1.358 2.141-.719 3.903-2.234 5.692-3.613l.708 4.639c2.882-1.98 6.684-1.642 10.158-2.036 3.475-.393 7.468-2.377 7.607-5.872 3.982 3.943 2.816 11.686-2.151 14.28-3.902 2.039-8.605.965-13.007.871-4.402-.095-9.743 1.774-10.382 6.131l27.07 1.24c1.695.077 3.483.136 4.983-.659 2.62-1.388 3.355-4.743 3.712-7.686a140.215 140.215 0 00-1.415-42.849c-.518-2.746-1.255-5.703-3.446-7.437-1.79-1.417-4.194-1.722-6.47-1.91a122.046 122.046 0 00-27.201.8c-2.656.378-5.898 1.425-6.248 4.086-.274 2.09 1.635 3.947 3.685 4.445 2.049.498 4.191.019 6.27-.338a53.332 53.332 0 0122.984 1.114c2.283.624 2.312 4.221.512 5.757-1.799 1.536-4.395 1.576-6.761 1.537l-13.179-.214c-4.93-.08-10.788.324-13.336 4.546 1.405 3.999 7.082 3.495 11.285 2.95 7.533-.977 15.145.483 22.6 1.936 1.153 1.646.355 4.077-1.209 5.339-1.566 1.261-3.65 1.633-5.644 1.882a76.115 76.115 0 01-10.955.572M527.556 344.686c39.868-31.92 72.076-72.522 111.674-104.776 5.545-4.516 11.604-12.699 6.505-17.711-4.647-4.567-12.24.149-16.859 4.743l-67.761 67.408c-3.976 3.955-8.292 9.331-6.247 14.553a2420.267 2420.267 0 0179.989-80.796c1.325-1.277 2.8-2.624 4.632-2.798 1.833-.175 3.881 1.562 3.256 3.294-.213.592-.682 1.051-1.137 1.488L526.433 340.78c-2.512 2.413-5.983 5.012-9.132 3.523.285-10.59 20.005-14.863 16.654-24.913l-15.994 14.584c-3.687 3.362-7.646 8.734-4.69 12.755 3.203 4.356 10.064 1.336 14.285-2.043"}),l("path",{key:"42b52a16e71893adcbfa91475b28369dbe647589",d:"M360.486 694.789a392.818 392.818 0 00-98.549-33.79c7.086-18.98 27.222-28.949 43.044-41.602 2.962-2.368 5.958-5.106 6.913-8.776.956-3.669-1.158-8.346-4.933-8.693-2.788-.256-5.203 1.785-7.251 3.693l-67.149 62.553a322.945 322.945 0 0197.387 25.369c12.966 5.659 25.846 12.259 39.883 14.024 1.838-5.484-4.171-10.192-9.345-12.778M336.467 468.415c-2.319 5.587-8.261 8.612-13.742 11.172-.93-2.541.973-5.254 3.129-6.889 2.155-1.635 4.76-2.865 6.177-5.17 3.362-5.467-1.937-13.094.951-18.827 2.306.601 3.137 3.385 3.578 5.727.875 4.651 1.721 9.616-.093 13.987m11.46-14.858l1.977 1.278a377.58 377.58 0 0123.134 3.451c1.221.221 2.509.48 3.433 1.308.925.828 1.275 2.428.388 3.298l-25.571-1.644c-3.139-.201-6.492-.481-8.961-2.432-2.468-1.95-3.32-6.219-.833-8.146.24-.186.537-.35.833-.284.399.089.591.533.722.92l1.875 5.538c1.553-.321 2.823-1.711 3.003-3.287m-21.203-4.218c1.363 12.38-5.054 24.684-14.344 32.98-2.799 2.499-5.936 4.8-7.728 8.097a403.49 403.49 0 0170.747-2.29c2.383.133 4.968.234 6.935-1.119 2.458-1.69 3.059-4.972 4.142-7.752 1.082-2.779 3.776-5.651 6.588-4.654 3.659 1.296 7.797-2.068 8.212-5.929.415-3.86-2.056-7.573-5.271-9.75-3.215-2.178-7.084-3.12-10.861-4.022l-27.785-6.636-24.607-5.877c-1.486-.355-3.15-.686-4.46.1-2.134 1.279-1.84 4.38-1.568 6.852M445.027 528.908a78.149 78.149 0 01-29.519-8.225c-3.473-1.763-4.237-7.219-1.382-9.87 1.752 5.942 8.344 8.88 14.335 10.454 5.99 1.575 12.643 2.848 16.566 7.641m11.605 35.725c1.923 1.514 2.062 4.344 1.871 6.784a54.79 54.79 0 01-2.695 13.182c5.392 2.155 10.456-4.609 10.405-10.415-.052-5.805-2.752-11.463-2.073-17.229.255-2.169 1.2-4.509 3.215-5.351 3.119-1.301 6.526 2.056 6.78 5.426.256 3.37-1.465 6.524-2.801 9.628-1.191 2.766-1.435 7.021 1.484 7.762 6.754-7.566 8.706-19.079 4.824-28.448-1.298-3.131-3.19-6.044-3.962-9.346-.578-2.476-.498-5.069-1.079-7.544-2.284-9.719-13.322-14.2-22.966-16.784a376.145 376.145 0 00-37.823-8.078c-2.747-.441-6.264-.481-7.498 2.012-2.026 4.092-4.1 8.389-4.005 12.955.095 4.566 3.133 9.42 7.672 9.914a90.946 90.946 0 0129.764 8.559c5.845 2.835 12.517 6.373 18.442 3.709 4.335-1.948 8.344-7.075 12.652-5.065a116.173 116.173 0 01-12.999 17.321c-2.188 2.41-5.386 4.932-8.361 3.611a159.702 159.702 0 00-38.734-11.604c6.282 7.828 16.009 12.785 26.034 13.267 2.927.141 5.269 2.731 6.086 5.543.817 2.814.443 5.817.062 8.722l-2.786 21.229c3.197 2.541 8.351.794 10.516-2.669 2.165-3.462 1.992-7.906 1.062-11.882-.846-3.618-2.263-7.323-1.409-10.938.854-3.615 5.405-6.569 8.322-4.271M507.662 626.694l37.65 33.813-45.362 12.708a97.746 97.746 0 0138.175-15.405c-10.849-.852-21.572 2.597-31.604 6.817a200.903 200.903 0 00-47.579 28.309c-1.632 1.307-3.355 2.828-3.676 4.894-.321 2.066 1.769 4.455 3.663 3.569 36.892-17.254 77.023-27.554 117.665-30.197l-53.136-49.85c-2.499-2.344-5.255-4.81-8.662-5.167-3.406-.356-7.279 2.669-6.356 5.968-3.145-.89-3.623-5.551-1.656-8.163 1.966-2.611 5.279-3.729 8.311-4.953 3.031-1.226 6.238-2.989 7.293-6.083a317.926 317.926 0 01-67.48 3.704c-1.314 1.316-.538 3.751 1.028 4.755 1.568 1.003 3.554.989 5.413.942l34.04-.866c4.862-.124 5.828 6.853 4.962 11.64-.864 4.786-.297 11.699 4.559 11.972a28.325 28.325 0 012.752-8.407M420.955 701.924c.152-.619.388-1.311.973-1.564.266-.117.581-.118.849-.004 1.661 6.423 3.156 13.841-.738 19.214a29.919 29.919 0 01-1.084-17.646m-16.988-31.852c5.187 2.36 12.113-1.918 12.326-7.612 3.344 1.747 3.428 6.419 3.071 10.176a947.494 947.494 0 00-3.742 120.017c.053 1.63.209 3.47 1.473 4.5 1.061.866 2.563.865 3.932.821l20.391-.654a858.971 858.971 0 014.731-108.603c.593-5.527.828-12.102-3.55-15.525-3.213-2.511-7.685-2.273-11.714-2.897-4.03-.624-8.604-3.257-8.371-7.328.242-4.244-6.597-4.82-9.751-1.972-3.156 2.85-4.915 7.341-8.796 9.077M128.001 236.422L80 269.892c-.381.265-.794.542-1.259.542-1.839.004-1.035-2.981.34-4.203a234.165 234.165 0 0142.779-30.184c2.055-1.129 5.332-1.826 6.141.375m-76.268 75.525c5.926-5.575 9.585-13.494 9.989-21.62l3.939 8.528 3.143-8.65 65.235-44.799c4.916-3.376 9.968-6.891 13.151-11.934 3.183-5.043 4.025-12.063.393-16.792a38.988 38.988 0 0011.896-15.113c-.743-3.046-5.337-3.343-7.755-1.346-2.418 1.996-3.413 5.183-4.969 7.906-4.964 8.692-15.345 12.347-24.631 16.087C71.009 244.8 29.801 288.647 12.423 340.94 4.983 351.136.606 363.54 0 376.148a300.992 300.992 0 0151.733-64.201M652.733 197.652c1.584-1.123 3.793-1.291 5.527-.419a17.655 17.655 0 01-7.298 5.933c-1.159-1.512-.39-4.07 1.411-4.693l.36-.821zm72.221 73.787l13.418 10.533c-.844 2.759-5.005 1.605-7.353-.073a7561.683 7561.683 0 01-42.021-30.268c.776-1.827 3.447-1.486 5.304-.784a118.56 118.56 0 0120.869 10.337l4.788.635c-1.493 3.6 1.929 7.213 4.995 9.62m-45.356-55.747c-3.75-3.485-7.641-7.318-8.768-12.312-1.502-6.654-8.043-12.017-14.846-11.498-6.802.52-12.615 7.467-11.306 14.162 1.311 6.695 10.09 10.872 15.822 7.172 5.824-3.758 13.879 1.699 15.848 8.344 1.97 6.646.099 13.727-.606 20.622s.328 14.929 6.06 18.824a824.68 824.68 0 01106.375 85.991 411.837 411.837 0 0029.22 36.575c-9.423-35.53-31.35-66.594-56.658-93.251-25.309-26.657-54.217-49.604-81.141-74.629"}),l("path",{key:"9d9c5c9f483375bdcb72a958ea3c40be54da064c",d:"M357.82 509.813c-.843-1.466.535-3.465 2.212-3.682 1.677-.216 3.285.867 4.3 2.219-1.385 1.401-3.594 1.914-5.454 1.271l-1.058.192zm-64.466 6.021a52.141 52.141 0 01-11.141 10.528c3.468.293 6.838-1.05 10.102-2.26 20.475-7.585 42.571-10.761 64.354-9.248 3.145.219 6.457.597 8.989 2.475-5.062 1.989-10.686 1.671-16.124 1.584a170.584 170.584 0 00-61.067 10.29c-3.393 1.238-8.352 1.924-9.565-1.478-.665-1.867.41-3.901 1.691-5.414 3.165-3.739 7.874-6.129 12.761-6.477m-11.217 40.642c6.328 11.533 21.714 17.117 33.966 12.328l-.436 3.804 4.033-1.408a178.371 178.371 0 01-2.742 62.141c5.151-.578 9.023-5.368 10.218-10.413 1.196-5.044.292-10.32-.616-15.424l9.455 7.498a17.285 17.285 0 00-4.83-11.08l6.067 3.288-9.235-31.955c-.343-1.185-.683-2.475-.234-3.626.499-1.281 1.822-2.01 3.046-2.635l41.732-21.294c2.071-1.057 4.251-2.212 5.44-4.211 1.031-1.735 1.155-3.842 1.253-5.857l1.568-32.332c.077-1.578.133-3.25-.627-4.636-1.531-2.788-5.377-3.018-8.556-2.892-16.423.65-32.844 1.339-49.264 2.065-9.496.421-19.213.901-28 4.527-11.917 4.916-21.227 15.735-24.313 28.252-3.522-9.256-.157-20.666 7.824-26.53-10.773.002-19.878 9.209-22.965 19.531-3.087 10.321-1.378 21.439 1.139 31.915l5.934-16.231a20.79 20.79 0 013.241 11.113c11.105-12.605 27.021-20.187 43.36-24.084 16.34-3.898 33.271-4.408 50.062-4.901 6.254-.183 14.979 2.218 13.986 8.395-.347 2.159-1.956 3.871-3.543 5.375-22.639 21.45-57.381 29.151-86.963 19.277M481.832 494.106a9.93 9.93 0 01-5.734-4.411c3.21-1.326 7.36 1.014 7.888 4.447l-2.154-.036zm-15.001-45.396l5.915-.943c-.675 2.902-3.456 5.175-6.435 5.257-2.979.082-5.881-2.034-6.714-4.895 2.005-.755 4.378-.444 6.12.802m-8.518 15.93a93.403 93.403 0 01-18.023 2.922c-1.56.098-3.673-.311-3.741-1.872-.065-1.483 1.825-2.131 3.297-2.319l13.521-1.727c2.341-.299 5.877.828 4.946 2.996m40.614 33.251a116.498 116.498 0 00-21.719-16.356c-4.993-2.914-8.406-8.376-8.835-14.14-.073-.983-.028-2.075.64-2.799.669-.723 2.151-.655 2.408.296 1.896 7 6.619 13.191 12.869 16.871 3.429 2.019 7.297 3.317 10.437 5.763 3.141 2.445 5.487 6.598 4.2 10.365m2.062-16.804c-9.297-7.43-16.259-17.739-19.677-29.139-.925-3.086-1.794-6.538-4.47-8.333-2.511-1.685-5.82-1.351-8.81-.89a223.892 223.892 0 00-46.53 12.422c-1.979.764-4.057 1.642-5.28 3.375-1.097 1.556-1.322 3.546-1.474 5.444-.75 9.337-.589 18.747.479 28.052a54.12 54.12 0 009.133-9.758 28.331 28.331 0 01-1.799 11.106l7.071-4.731c3.234 3.421 7.116 6.68 11.792 7.222 4.676.542 10.021-2.843 9.905-7.549-.048-1.942 1.986-3.415 3.928-3.488 1.941-.073 3.764.851 5.486 1.751 7.468 3.905 16.188 10.339 14.229 18.536-.534 2.239.851 4.443 2.17 6.329l11.495 16.449c.974 1.393 2.012 2.843 3.539 3.589 1.859.91 4.054.599 6.096.267 5.464-.887 11.383-2.015 15.049-6.162 5.659-6.4 3.242-16.583 6.707-24.392a16.66 16.66 0 005.711 9.99l-1.52-27.375c-3.032 1.57-5.206 4.692-5.627 8.08-8.094-1.994-14.133-10.297-13.538-18.613-2.827 1.38-4.559 4.711-4.065 7.818M89.72 390.532c-14.454 13.79-35.267 20.622-55.081 18.08l-.005 14.334a201.521 201.521 0 0136.696 1.093l-.022 88.686c-.001 3.641-.024 7.397-1.445 10.75-2.775 6.544-10.378 9.954-17.486 9.954-4.647 0-9.536-1.137-13.79.735-4.254 1.871-6.316 8.825-2.174 10.93 1.08.549 2.33.627 3.542.692a1141.071 1141.071 0 00105.658.836c4.35-.167 9.72-1.095 11.018-5.252 1.506-4.824-4.241-8.979-9.285-9.298-5.044-.319-10.272 1.307-15.076-.264-9.441-3.088-11.063-15.541-10.987-25.475l.945-122.66c-10.971-3.955-24.07-1.191-32.508 6.859M744.41 398.223c9.603 7.645 10.696 21.702 9.833 33.946-.578 8.197-1.72 16.515-5.251 23.936-8.967-3.213-18.061-6.491-25.814-12.024-7.752-5.533-14.125-13.711-15.298-23.163-1.127-9.092 3.1-18.762 10.804-23.72 7.705-4.958 18.558-4.682 25.726 1.025m13.75 111.474c4.693 9.289 3.29 21.25-3.211 29.377-6.502 8.128-17.681 12.122-27.916 10.232-10.234-1.891-19.159-9.469-22.954-19.161-1.33-3.397-2.066-7.004-2.477-10.629-1.526-13.478 1.519-27.432 8.52-39.049a205.01 205.01 0 0124.715 9.951c9.262 4.451 18.688 10.107 23.323 19.279m-31.81 50.56c17.94.299 36.556-2.531 51.549-12.386 14.993-9.855 25.515-27.898 22.571-45.597-3.446-20.716-23.498-34.836-43.66-40.717 16.646-4.053 33.72-14.804 36.838-31.649 2.613-14.11-5.826-28.622-17.827-36.488-12.001-7.867-26.864-10.108-41.214-10.125-14.526-.017-29.414 2.17-42.096 9.252-12.683 7.083-22.868 19.682-24.325 34.135-2.164 21.459 15.356 40.904 35.535 48.518-16.88 3.028-34.76 11.399-40.706 27.486-5.808 15.715 2.357 34.101 15.763 44.149 13.406 10.049 30.82 13.142 47.572 13.422","fill-rule":"nonzero"}),l("path",{key:"d3eca3ac7bf734cb80bf09869776effc18209c56",d:"M531.316 414.264l-2.376 3.517c-2.499-1.624-2.024-6.137.758-7.206.514.909 1.03 1.817 1.545 2.726l.073.963zm3.663-3.614c1.799 1.961 1.618 5.398-.377 7.159-2.45-1.212-2.806-5.191-.609-6.819m-29.011 164.037c-1.545 2.19-5.766.942-5.871-1.737a11.16 11.16 0 017.681-1.438c1.075.815.378 2.918-.972 2.93m-75.977-291.024c-.891-1.553-1.812-3.233-1.66-5.017.153-1.784 1.918-3.526 3.611-2.942a58.588 58.588 0 003.619 9.531c-1.645.393-3.492-.26-4.523-1.599m84.758 273.731c-1.391-3.429-.351-7.694 2.463-10.099 2.813-2.405 7.187-2.769 10.36-.863-4.961 1.526-9.076 5.568-10.692 10.499-.485.621-1.432.827-2.131.463M410.161 262.341c.212-1.76 1.185-4.063 2.914-3.671 2.127 4.416.854 9.608.437 14.491-.466 5.461.204 10.947.873 16.387.404 3.277 1.11 7.03 3.986 8.653 3.566 2.014 8.173-.54 12.097.634 1.251.793-.511 2.517-1.963 2.813a66.737 66.737 0 01-10.494 1.284c-1.53.065-3.157.053-4.462-.75-1.961-1.207-2.543-3.749-2.885-6.026a126.086 126.086 0 01-.503-33.815m25.464 121.929a30.421 30.421 0 0110.043-13.596c1.597.292 1.288 2.684.538 4.125a132.36 132.36 0 01-15.005 22.736c-3.246-4.103-3.592-9.717-3.8-14.944l-1.207-30.279c-.111-2.778-.207-5.65.807-8.239 2.271-5.8 9.059-8.157 15.057-9.832.147 2.557-2.005 4.662-4.224 5.94-2.221 1.278-4.756 2.182-6.433 4.119-1.677 1.937-1.919 5.451.319 6.698.734-1.476 2.533-2.336 4.143-1.979-.137 1.985-1.392 3.856-3.176 4.736 2.039 2.318 1.29 6.474-1.431 7.934l3.172 2.327c-5.096 6.567-1.532 16.159-3.266 24.288 2.091.848 3.682-1.916 4.463-4.034m-77.305-30.054c1.25-4.722-.36-9.657-1.458-14.416-1.098-4.759-1.528-10.26 1.557-14.047l18.996 10.658c3.135 1.76 6.472 3.734 7.922 7.023.86 1.952.944 4.145 1.001 6.277a504.123 504.123 0 01-.942 47.037 159.132 159.132 0 01-19.318-20.383c-5.047-6.367-9.837-14.295-7.758-22.149m1.384-60.078c-.953-3.397-1.916-6.895-1.538-10.403.378-3.508 2.419-7.074 5.767-8.187a107.458 107.458 0 0036.855-21.138c.895-.786 2.411-.266 3.068.729.657.994.695 2.259.713 3.45l.497 33.929c.049 3.405-1.258 8.109-4.628 7.631a180.91 180.91 0 00-36.729-1.439c-2.198.137-3.411-2.452-4.005-4.572m83.646 130.153c3.431-3.917 8.655-6.196 13.861-6.048a44.707 44.707 0 01-17.303 11.363c3.153-14.162 11.008-27.237 22.032-36.671.743 5.474 9.55 7.326 12.434 2.614 1.347-4.467-2.554-9.675-7.22-9.638 3.927-2.617 6.484-7.178 6.67-11.893a227.308 227.308 0 00-36.117 40.641c-2.951 4.252-5.883 9.171-4.986 14.269.897 5.098 7.867 8.905 11.443 5.162 11.552-12.097 38.118-4.033 43.923-19.721l-.591 12.568a192.444 192.444 0 0145.099-30.758c2.464-.528 1.434 3.847-.635 5.284l-30.731 21.344 20.353.217c7.083.075 15.172-.291 19.687-5.748 5.251-6.345 2.728-15.799-.051-23.553 11.219 10.533 17.86 25.785 17.926 41.173a25.323 25.323 0 005.312-11.66 247.1 247.1 0 015.297 82.864c-.279 2.636-.784 5.589-2.956 7.108-2.17 1.52-6.162-.294-5.333-2.811a44.534 44.534 0 00-2.049 24.104c8.926 2.596 13.024 13.932 10.339 22.831-2.686 8.901-10.291 15.461-18.331 20.129 5.693-9.591 1.865-22.897-6.779-29.946-8.643-7.049-20.8-8.562-31.748-6.434-11.761 2.287-23.639 9.678-26.522 21.307-3.368 13.58-13.474 25.313-26.406 30.655a336.758 336.758 0 0057.994-3.075c6.382-.895 14.582-4.345 13.514-10.7-.824-4.912-6.163-11.776-1.334-12.994a63.629 63.629 0 019.596 28.062 86.342 86.342 0 0127.179-14.867 318.599 318.599 0 0031.903 40.253c2.498 2.677 5.298 5.451 8.905 6.078 3.608.626 7.955-2.131 7.474-5.761-7.478-56.311 43.415-106.921 40.102-163.631-1.446-24.758-13.147-47.54-22.189-70.633a345.023 345.023 0 01-22.746-99.885 725.622 725.622 0 01-66.949 78.436c-.793 3.837 3.493 7.187 7.405 6.978 3.913-.209 7.263-2.756 10.273-5.263a248.037 248.037 0 0042.015-44.916c.495 32.502 8.691 64.862 23.727 93.681 6.333 12.137 13.984 24.005 16.226 37.51 3.701 22.289-7.879 43.858-17.261 64.414a371.81 371.81 0 00-27.164 85.754c-15.928-11.411-24.874-31.865-22.439-51.307 1.415-11.303-13.448-22.845-6.655-31.989 6.601-8.887 6.933-20.793 7.001-31.863.165-27.227-.208-56.326-15.466-78.875-10.11-14.943-25.633-25.191-40.745-35.044l-40.627-26.488c8.824-1.004 14.771-9.164 19.973-16.362 22.068-30.536 50.715-56.291 83.418-74.998-59.694.891-114.128-32.395-172.419-45.294-1.18 4.288.099 9.163 3.232 12.319 9.064-1.379 18.339-2.756 27.347-1.046 9.009 1.709 17.86 7.123 21.158 15.678 2.93 7.6 11.928 10.546 19.822 12.555l65.063 16.563a1508.8 1508.8 0 00-51.435 42.191c-9.784 8.393-20.005 17.804-22.716 30.407-7.515-4.419-12.098-13.378-11.284-22.058.811-8.66-5.897-15.911-10.24-23.446-4.344-7.536-5.015-19.581 3.121-22.657l-.595 20.723c4.986 1.179 9.645-4.059 9.788-9.181.302-10.852-12.282-16.965-22.9-19.228-10.618-2.262-23.355-4.955-27.194-15.11-1.557-4.122-7.732-2.519-11.482-.205l-43.402 26.786c-1.882 1.161-3.82 2.375-5.074 4.196-3.004 4.364-1.076 10.222.102 15.387 2.621 11.486.775 23.931-5.068 34.161-6.677 11.692-17.906 19.95-28.808 27.851l-56.771 41.144c-16.358 11.855-22.183 33.165-26.928 52.803-1.131 4.679-2.265 9.575-1.133 14.255 1.152 4.765 4.611 9.259 3.587 14.053a332.687 332.687 0 00-7.07 56.251c-.366 9.212.229 19.748 7.35 25.602 4.427 3.64 1.017 10.721-2.566 15.194l-33.272 41.541-4.079-29.644c-1.96-14.247-3.95-28.615-8.819-42.147-6.21-17.256-16.96-32.74-21.875-50.409-8.884-31.937 2.41-65.628 13.578-96.839 8.517-23.803 17.033-47.605 25.551-71.407a312.293 312.293 0 0048.652 46.569c4.577 3.518 9.984 7.093 15.661 6.049 5.677-1.044 9.289-9.63 4.395-12.691-31.825-19.903-56.159-49.515-79.896-78.591a994.815 994.815 0 01-33.735 131.798c-4.545 13.759-9.436 27.643-10.204 42.113-1.431 26.975 11.448 52.307 21.282 77.467a365.293 365.293 0 0123.707 101.822 465.121 465.121 0 0146.432-56.153c7.886-8.143 4.89-21.528.788-32.096-4.102-10.567-8.707-22.917-2.844-32.618 1.735-2.871 4.309-5.279 5.387-8.455 1.077-3.176-.328-7.606-3.665-7.942-4.374-.439-4.641-6.977-2.441-10.784 2.199-3.807 5.682-7.744 4.451-11.965-8.83-30.255 3.177-65.442 28.66-83.989 4.369 10.713 18.442 12.655 30.008 12.962-4.526-5.731-12.494-8.502-19.599-6.815.441-7.795 5.873-15.079 13.217-17.725l6.92 2.621c-.642-12.184 8.401-24.17 20.292-26.898a14.977 14.977 0 00-.588 10.583l14.139-6.849c3.747 8.849 10.505 16.39 18.891 21.082a154.147 154.147 0 00-10.936-24.188l.164 8.886c-3.333-2.701-5.542-6.748-6.009-11.013a35.531 35.531 0 00-11.338 6.591c1.132-9.859 8.088-18.827 17.356-22.375 7.927 28.868 24.383 55.337 46.765 75.218l-1.179-72.959c-.151-9.35-11.024-13.925-19.47-17.939-8.447-4.015-16.876-14.731-10.484-21.558 27.209 1.553 54.914 3.063 81.352-3.557 7.256-1.817 11.962 9.13 8.199 15.594-3.764 6.464-11.486 9.194-18.25 12.388-6.764 3.194-13.868 8.62-13.8 16.1l.666 73.542c19.822-21.754 40.693-45.828 42.971-75.171a67.504 67.504 0 0120.946 24.548c3.13-2.594 3.98-7.549 1.896-11.038 9.845 3.93 17.47 12.995 19.656 23.368l-11.111-2.951a35.132 35.132 0 01-9.16 14.169l1.164-7.893c-3.775 1.429-6.289 5.632-5.759 9.635 4.706 3.096 12.147-.298 12.893-5.883 4.377 2.136 9.87 1.782 13.937-.897a21.66 21.66 0 01-8.727 10.179c10.069-1.161 17.022-13.543 12.772-22.744l19.171 18c-9.745-1.199-19.957 2.189-27.053 8.975l11.117-3.877a143.798 143.798 0 00-22.279 18.388c-2.664-5.162-10.509-3.272-15.4-.137-4.891 3.133-11.338 6.831-15.926 3.268a40.065 40.065 0 001.022-10.941c-8.054 1.991-15.216 7.354-19.393 14.521"})))}};a.style="my-logo{}";export{a as my_logo}
1
+ import{r as c,h as l}from"./p-C-hXMJD_.js";const a=class{constructor(l){c(this,l),this.fill="currentcolor",this.stroke=void 0,this.opacity=1,this.size=void 0}render(){const{fill:c,stroke:a,opacity:M,size:z}=this;return l("svg",{key:"e8ce95bc3a637d30c2e61392950b2e7cb1156376",width:z,height:z,viewBox:"0 0 818 874","fill-rule":"evenodd","clip-rule":"evenodd","stroke-linejoin":"round","stroke-miterlimit":"2"},l("g",{key:"5352532ebf3edadaecedd06d25f27e469b92864d",fill:c,stroke:a,"fill-opacity":M},l("path",{key:"5bde5e66ba000e6aeffae505b3401b5175a807a9",d:"M134.304 112.082l1-.113c.294.453.615.781 1.086 1.011.77.358 1.842.52 3.242.362 1.373-.035 2.924-.291 4.576-.722a28.466 28.466 0 004.837-1.642c1.63-.63 3.086-1.363 4.218-2.099.83-.54 1.912-1.35 3.172-2.385 1.31-.959 2.471-2.143 3.508-3.355 1.038-1.211 1.777-2.55 2.316-3.868.54-1.316.354-2.592-.382-3.723-.735-1.132-1.777-1.743-2.95-1.732-1.25.06-2.675.344-4.256 1.05-1.58.706-3.388 1.559-5.248 2.661-1.935 1.151-3.87 2.302-5.855 3.378-1.984 1.076-4.018 2.076-6.074 2.876-2.131.85-4.108 1.276-6.082 1.379-1.973.102-3.916-.245-5.678-1.139-1.838-.845-3.468-2.361-4.99-4.7-1.03-1.584-1.633-3.339-1.86-5.338-.302-1.951-.054-4.045.72-6.158.772-2.113 2.02-4.32 3.869-6.596 1.897-2.2 4.368-4.344 7.462-6.355 2.64-1.717 5.127-3.012 7.334-3.91a55.02 55.02 0 015.964-2.054c1.728-.48 3.23-.812 4.456-1.073 1.226-.26 2.128-.524 2.807-.966.68-.442 1.11-.936 1.215-1.434l1.298.015.927 12.817-.951.188c-.517-.63-1.136-1.086-1.732-1.342-.77-.359-1.842-.52-3.14-.536-1.324.11-2.724.269-4.3.65-1.578.382-3.181.887-4.81 1.518-1.582.706-3.189 1.536-4.622 2.468a30.611 30.611 0 00-3.248 2.435c-1.06 1.01-1.97 1.924-2.705 2.94-.736 1.014-1.196 1.958-1.456 2.878-.286 1.045-.098 1.996.442 2.826.785 1.207 1.827 1.818 3.124 1.833 1.223.064 2.725-.268 4.354-.899a34.599 34.599 0 005.297-2.585c1.86-1.102 3.844-2.178 5.829-3.254 1.984-1.075 4.018-2.075 6.15-2.925 2.055-.8 4.108-1.276 6.081-1.378 1.973-.102 3.841.293 5.679 1.138 1.762.894 3.392 2.41 4.864 4.674 1.717 2.64 2.412 5.195 2.133 7.738-.354 2.592-1.255 5.003-2.655 7.309-1.399 2.305-3.27 4.38-5.413 6.204a52.034 52.034 0 01-6.371 4.895c-2.867 1.864-5.38 3.283-7.512 4.132-2.157.974-3.987 1.627-5.613 1.933-1.577.382-2.928.616-3.928.73-1 .113-1.777.403-2.305.747-.377.245-.532.668-.588 1.241l-1.45.083-1.786-11.828zM199.519 64.52c1.53-.761 2.74-1.765 3.507-2.85.767-1.086.689-2.454-.153-4.146-.842-1.693-1.887-2.58-3.295-2.784-1.368-.123-2.898.236-4.43.998l-13.536 6.736 4.37 8.783 13.537-6.736zm-27.286-1.5c-.401-.806-1.246-.888-2.616-.207l-.722-1.45 23.448-11.668c4.35-2.165 7.975-2.963 10.993-2.555 2.937.448 5.348 2.667 7.272 6.534 1.925 3.868 2.2 7.048.747 9.581-1.495 2.654-4.357 4.983-8.708 7.148l-13.698 6.816 6.015 12.086c.4.806 1.165.928 2.293.367l.722 1.45-11.442 5.694-.721-1.45c1.37-.682 1.813-1.406 1.412-2.211l-14.995-30.136zM237.764 37.195c-1.774.652-3.455 1.558-4.927 2.77a15.493 15.493 0 00-3.714 4.243c-.948 1.595-1.549 3.35-1.719 5.234-.255 1.916-.025 3.845.72 5.872.746 2.028 1.82 3.646 3.255 4.94 1.35 1.326 2.915 2.19 4.67 2.79 1.786.687 3.586.888 5.578.827 1.906-.03 3.805-.344 5.578-.997 1.774-.652 3.424-1.642 4.98-2.885 1.473-1.213 2.714-2.532 3.63-4.212.948-1.595 1.58-3.265 1.835-5.18.17-1.885-.06-3.815-.805-5.842-.745-2.027-1.82-3.646-3.17-4.971-1.435-1.295-3.03-2.243-4.785-2.844a16.048 16.048 0 00-5.494-.857 17.77 17.77 0 00-5.632 1.112zm-2.298-6.25a35.093 35.093 0 019.22-2.048c2.982-.234 5.782.08 8.4.939a18.42 18.42 0 016.989 4.143c2.083 2.014 3.7 4.585 4.88 7.795 1.18 3.21 1.613 6.214 1.3 9.014-.282 2.885-1.173 5.418-2.61 7.768-1.437 2.35-3.398 4.318-5.853 5.988-2.508 1.785-5.256 3.179-8.381 4.328-3.126 1.15-6.122 1.867-9.105 2.1-3.036.35-5.805.121-8.422-.738-2.618-.86-4.937-2.213-7.02-4.228-2.052-1.93-3.669-4.5-4.849-7.71-1.18-3.21-1.613-6.215-1.332-9.1a18.42 18.42 0 012.641-7.683c1.438-2.35 3.368-4.402 5.876-6.187a33.933 33.933 0 018.266-4.382zM288.314 53.081c.216.874.848 1.181 1.984.9l.39 1.572-11.445 2.834-.39-1.573c.962-.238 1.29-.783 1.074-1.656l-8.09-32.674c-.216-.874-.76-1.202-1.721-.964l-.39-1.573 11.445-2.833.389 1.572c-1.136.281-1.552.848-1.335 1.722l3.525 14.24c1.598-2.158 3.197-4.315 4.883-6.494 1.685-2.179 3.24-4.14 4.553-5.949 1.314-1.808 2.41-3.378 3.307-4.62.898-1.242 1.292-1.896 1.227-2.158-.064-.262-.304-.48-.61-.59-.392-.089-.763-.09-1.025-.025l-.325-1.31 14.415-3.57.39 1.573c-.635.436-1.532 1.307-2.648 2.788L296.247 29.7l18.043 13.706c.915.7 1.917 1.38 2.92 2.059 1.024.766 2.028 1.074 2.879 1.141l.39 1.573-12.93 3.2-.39-1.572c.612-.151.918-.412.831-.762-.065-.262-.217-.502-.587-.874s-1.046-.854-2.048-1.533l-13.99-10.444-5.474 7.104 2.423 9.784z","fill-rule":"nonzero"}),l("path",{key:"127745bf5981828b25e0c9d629275d8de85cde3e",d:"M347.793 27.702l-9.298-13.975-4.252 15.854 13.55-1.88zM320.071 46.63c.7-.188 1.186-.619 1.634-1.317.372-.596.565-1.168.77-1.651l9.265-30.815c.245-.852.413-1.603.607-2.175.116-.47.131-1.017.07-1.463-.05-.357-.176-.612-.278-.688l-.572-.194-.223-1.604 13.462-1.868.222 1.605-.498.342c-.255.126-.32.317-.257.762.05.357.29.778.619 1.187.341.497.695 1.084 1.05 1.671l18.645 28.307a3.25 3.25 0 001.142 1.023 2.79 2.79 0 001.233.374l.222 1.604-12.658 1.756-.186-1.337c.268-.037.612-.175.944-.403.242-.216.371-.597.31-1.043-.05-.356-.189-.7-.315-.956a26.637 26.637 0 00-.606-1.097l-3.112-4.747-19.078 2.646-1.828 5.16a4.81 4.81 0 00-.362 1.323c-.116.47-.156.839-.119 1.106.062.446.29.778.57.83.28.052.737.08 1.272.005l.223 1.605-11.946 1.657-.222-1.605zM373.087 39.689c1.08-.024 1.61-.486 1.59-1.385l-.738-33.652c-.02-.9-.57-1.338-1.65-1.315l-.035-1.62 13.227-.29.036 1.62c-.448.1-.626.194-.62.464.006.27.653 1.066 2.032 2.386l22.097 22.38-.535-24.383c-.02-.9-.66-1.336-1.83-1.31l-.035-1.62 10.977-.241.036 1.62c-1.08.023-1.61.485-1.59 1.385l.738 33.652c.02.9.57 1.338 1.65 1.314l.035 1.62-11.697.256-.036-1.62c.45-.01.626-.193.62-.463-.006-.27-.284-.624-.837-1.242-.644-.616-1.288-1.232-2.025-2.026L381.66 11.954l.574 26.184c.02.9.66 1.336 1.92 1.308l.035 1.62-11.067.242-.036-1.62zM468.005 13.216c.11-1.164-.735-1.787-2.617-1.965l-21.862-2.067-.848 8.96 13.799 1.305c.985.093 1.8.08 2.265-.057.457-.047.768-.47.827-1.097l1.613.152-.898 9.498-1.792-.17c.238-.61.012-1.083-.598-1.322a20.511 20.511 0 00-2.761-.441l-13.082-1.238-1 10.573 22.938 2.17c.717.067 1.361-.053 1.843-.369.474-.226.785-.649.836-1.186l1.612.152-.89 9.408-1.612-.152c.05-.538-.193-.832-.632-.964-.44-.132-1.067-.191-1.784-.26l-32.883-3.109.152-1.613c.27.026.636-.03.93-.273.286-.154.5-.495.541-.943l3.17-33.511a1.49 1.49 0 00-.347-1.118 1.737 1.737 0 00-.87-.353l.152-1.613 31.808 3.008c1.882.178 2.829-.275 2.93-1.35l1.613.152-.94 9.946-1.613-.153zM555.313 25.982c.164-.609.043-1.2-.298-1.665-.451-.4-1.274-.808-2.49-1.135l-28.16-7.569-2.898 10.777 17.036 4.58c1.13.303 2.109.473 2.788.376.678-.097 1.166-.525 1.376-1.308l1.565.42-3.364 12.517-1.565-.42c.35-1.305.236-2.267-.255-2.865-.515-.512-1.424-.942-2.554-1.246l-17.036-4.579-4.532 16.862c-.14.521.004 1.026.479 1.34.364.377.926.715 1.708.925l-.42 1.565-14.776-3.972.42-1.564c1.478.397 2.4.086 2.68-.957l10.607-39.46c.28-1.043-.362-1.775-1.84-2.172l.421-1.564 40.329 10.84c1.217.326 2.132.386 2.77.092.529-.231.93-.683 1.093-1.29l1.565.42-3.084 11.472-1.565-.42zM555.335 64.501c.93.34 1.553.47 1.984.34.4-.045.692-.322.846-.745l11.531-31.623a1.283 1.283 0 00-.137-1.2c-.277-.292-.838-.592-1.768-.932l.555-1.522 12.852 4.687-.555 1.522c-1.606-.586-2.521-.44-2.83.405l-11.53 31.623c-.309.846.298 1.546 1.905 2.132l-.555 1.522-12.852-4.687.554-1.522zM611.868 65.307c5.296 2.483 8.788 2.033 10.354-1.308.65-1.385.495-2.75-.346-4.138-.96-1.345-2.806-2.708-5.576-4.007l-12.875-6.037-4.433 9.453 12.876 6.037zM619.29 49.9c4.808 2.254 8.256 4.864 10.219 7.674 1.925 2.89 2.01 6.31.215 10.14-.688 1.467-1.543 2.656-2.649 3.53-1.105.873-2.215 1.545-3.494 1.94-1.317.476-2.682.63-3.97.623a14.015 14.015 0 01-3.914-.344l2.522 15.397c.14.761.4 1.48.855 1.992a6.496 6.496 0 001.286 1.497l-.688 1.467-12.467-5.846.688-1.467c.733.344 1.174.253 1.403-.236.267-.57.242-1.577-.038-3.1l-1.93-12.634-11.326-5.31-5.464 11.652c-.19.408-.18.81.15 1.164.212.397.5.632.826.785l-.688 1.466-10.838-5.081.688-1.467c.978.458 1.658.28 2.04-.535l14.29-30.476c.381-.815.083-1.452-.894-1.91l.687-1.467 22.491 10.546zM673.328 89.784c.61-.998.124-1.928-1.49-2.913L653.1 75.422l-4.692 7.68 11.828 7.226c.844.516 1.583.862 2.06.943.431.157.896-.086 1.225-.623l1.382.844-4.973 8.141-1.536-.938c.482-.444.486-.969.042-1.45a20.511 20.511 0 00-2.287-1.609l-11.213-6.85-5.536 9.062 19.66 12.012c.615.375 1.247.55 1.819.477.524.005.99-.239 1.27-.7l1.383.845-4.926 8.064-1.383-.844c.282-.461.192-.832-.145-1.144-.337-.311-.875-.64-1.49-1.015l-28.186-17.22.845-1.382c.23.141.585.252.956.162.324-.013.665-.226.9-.61L647.65 67.77a1.49 1.49 0 00.179-1.156 1.737 1.737 0 00-.628-.7l.845-1.382 27.265 16.656c1.613.986 2.662.994 3.225.072l1.383.845-5.208 8.525-1.383-.845zM232.902 140.753c1.851-.91 3.436-1.91 4.663-2.884 1.227-.973 2.128-2.157 2.613-3.434.515-1.216.704-2.644.507-4.252-.257-1.58-.84-3.37-1.867-5.46-1.027-2.09-2.087-3.646-3.18-4.814-1.153-1.14-2.398-1.862-3.705-2.258-1.277-.337-2.765-.347-4.286.029-1.52.376-3.281 1.019-5.133 1.928l-9.258 4.548 10.387 21.146 9.259-4.549zm-10.522-27.456c2.21-1.085 4.388-1.784 6.622-2.066 2.174-.253 4.316-.119 6.306.46 2.02.64 3.947 1.695 5.692 3.285s3.307 3.714 4.628 6.402c1.32 2.688 2.017 5.163 2.209 7.516.192 2.352-.122 4.582-.88 6.512-.728 1.989-1.93 3.766-3.46 5.333-1.588 1.596-3.473 2.892-5.683 3.978l-19.83 9.741-.529-1.075c.896-.44 1.198-1.033.846-1.75l-13.322-27.118c-.352-.717-1.006-.84-1.902-.4l-.528-1.076 19.831-9.742zM276.433 104.021c-.297-.812-1.06-.958-2.372-.477l-15.246 5.59 2.29 6.248 9.623-3.528c.688-.252 1.227-.52 1.494-.76.29-.177.362-.558.202-.995l1.125-.413 2.428 6.624-1.25.458c-.035-.483-.337-.727-.82-.692-.46.098-1.171.288-1.983.585l-9.123 3.345 2.703 7.373 15.996-5.864c.5-.184.891-.469 1.112-.833.244-.302.317-.683.18-1.058l1.124-.413 2.405 6.561-1.125.412c-.137-.374-.393-.493-.728-.441-.336.052-.773.212-1.273.396l-22.932 8.406-.412-1.124a.953.953 0 00.533-.48c.142-.193.175-.489.06-.801l-8.566-23.37a1.102 1.102 0 00-.588-.634 1.284 1.284 0 00-.693.041l-.413-1.125 22.182-8.131c1.312-.482 1.8-1.086 1.525-1.835l1.124-.413 2.543 6.936-1.125.412zM306.873 101.54c1.222-.326 2.247-.875 2.963-1.547.716-.673.863-1.676.503-3.027-.36-1.35-.985-2.148-1.975-2.504-.973-.292-2.135-.258-3.357.067l-10.804 2.877 1.866 7.01 10.804-2.877zm-19.546-5.127c-.171-.643-.771-.828-1.864-.537l-.309-1.157 18.715-4.983c3.472-.924 6.216-.966 8.342-.224 2.062.76 3.48 2.724 4.302 5.81.822 3.087.55 5.432-.877 7.052-1.476 1.701-3.894 2.965-7.367 3.89l-10.932 2.91 2.568 9.647c.171.643.707.845 1.607.605l.309 1.158-9.132 2.431-.309-1.157c1.094-.291 1.522-.75 1.351-1.393l-6.404-24.052zM343.46 98.99l-7.197-10.113-2.774 11.817 9.97-1.704zm-20.05 14.634c.514-.156.863-.485 1.178-1.012.26-.45.39-.877.53-1.238l6.132-22.99c.162-.636.269-1.194.399-1.621.075-.35.073-.755.017-1.083-.045-.263-.144-.448-.22-.503l-.428-.13-.202-1.18 9.906-1.693.201 1.181-.36.264c-.185.1-.228.242-.172.57.045.262.232.568.485.862.264.36.539.786.814 1.211l14.438 20.488c.264.36.572.578.868.73.296.152.58.238.92.248l.201 1.18-9.315 1.592-.168-.984c.197-.033.448-.144.688-.32.175-.165.26-.45.205-.777a2.392 2.392 0 00-.255-.7c-.099-.185-.286-.49-.473-.796l-2.41-3.437-14.039 2.399-1.231 3.856c-.141.362-.216.712-.237.986-.075.35-.096.624-.062.82.056.328.232.568.44.6.208.032.547.042.94-.025l.202 1.18-8.79 1.502-.202-1.18zM379.584 90.53c4.314-.319 6.4-1.875 6.199-4.596-.084-1.128-.678-1.952-1.723-2.542-1.106-.518-2.79-.727-5.047-.56l-10.486.777.57 7.698 10.487-.776zm-.802-12.62c3.916-.29 7.085.143 9.368 1.242 2.289 1.165 3.584 3.338 3.815 6.458.089 1.194-.032 2.27-.428 3.234-.395.964-.867 1.8-1.548 2.517-.676.785-1.5 1.38-2.333 1.842-.828.528-1.733.929-2.647 1.197l7.207 9.009c.366.44.794.808 1.273.973.418.236.897.4 1.372.499l.088 1.195-10.154.752-.089-1.195c.598-.044.849-.263.819-.661-.034-.465-.415-1.104-1.148-1.984l-5.823-7.443-9.225.684.703 9.49c.024.332.177.588.518.696.28.18.55.226.816.206l.089 1.195-8.827.654-.089-1.195c.797-.059 1.17-.42 1.121-1.084l-1.838-24.822c-.05-.663-.472-.966-1.269-.907l-.088-1.194 18.317-1.357zM408.891 105.074c.2.003.467-.059.67-.255.202-.13.34-.394.345-.726l.374-22.158-8.65-.146a1.878 1.878 0 00-1.003.249c-.336.194-.473.458-.48.857l-1.198-.02.13-7.652 1.197.02c-.01.599.115 1.067.445 1.272.329.205.66.344.992.35l23.689.4c.332.005.667-.123 1.003-.317.337-.194.477-.657.488-1.256l1.197.02-.129 7.652-1.198-.02c.007-.399-.121-.667-.45-.873a1.878 1.878 0 00-.994-.283l-8.65-.146-.375 22.158c-.01.666.383 1.005 1.181 1.019l-.02 1.198-8.584-.145.02-1.198zM434.3 105.672c.205-.043.411-.086.625-.195.148-.116.253-.439.307-.902l2.847-24.19c.07-.595.05-1 0-1.14-.117-.147-.307-.237-.638-.275l.14-1.19 9.188 1.081-.14 1.19c-.463-.055-.685.12-.731.517-.024.198.019.404.186.692.094.346.245.766.513 1.333l6.314 15.82 9.872-13.848c.392-.49.645-.93.882-1.236.237-.307.327-.498.342-.63.047-.397-.128-.618-.458-.657l.14-1.19 9.319 1.097-.14 1.19c-.198-.024-.404.019-.61.062-.28.1-.378.357-.416.688l-2.925 24.851c-.039.33-.004.603.245.766.175.222.365.311.564.335l-.14 1.19-7.667-.903.14-1.19c.925.11 1.36-.175 1.306-.851l2.186-18.573-.132-.015-13.679 19.431-.528-.062-8.2-22.006.067.008-.133-.016-2.185 18.573c-.078.66.28 1.038 1.007 1.124l-.14 1.19-7.469-.88.14-1.19zM509.372 96.079c.191-.844-.37-1.38-1.733-1.689l-15.838-3.582-1.468 6.491 9.996 2.261c.714.162 1.313.229 1.667.172.339.009.607-.272.71-.726l1.168.264-1.556 6.88-1.298-.293c.232-.425.111-.793-.314-1.026a15.167 15.167 0 00-1.983-.585l-9.477-2.143-1.732 7.66 16.617 3.757c.52.118 1.003.09 1.386-.095.369-.122.637-.402.725-.792l1.169.265-1.542 6.815-1.168-.264c.088-.39-.063-.628-.373-.767-.31-.138-.764-.24-1.283-.358l-23.823-5.388.265-1.168c.194.044.469.037.707-.113.225-.086.413-.316.487-.64l5.49-24.278a1.102 1.102 0 00-.148-.852 1.284 1.284 0 00-.605-.341l.264-1.169 23.043 5.212c1.364.308 2.1.066 2.277-.713l1.168.264-1.63 7.205-1.168-.264zM513.885 119.831c.757.254 1.242.066 1.453-.565l7.917-23.597c.211-.631-.061-1.074-.819-1.328l.381-1.136 9.275 3.112-.38 1.136c-.337-.043-.485-.022-.548.167-.064.19.188.905.816 2.17l9.767 21.105 5.736-17.099c.212-.63-.124-1.094-.944-1.37l.38-1.135 7.698 2.582-.38 1.136c-.758-.254-1.242-.065-1.454.565l-7.916 23.598c-.212.63.06 1.073.818 1.327l-.381 1.136-8.202-2.752.38-1.135c.316.105.485.022.548-.168.064-.189-.041-.505-.271-1.073-.294-.59-.587-1.18-.902-1.917l-10.06-21.907-6.159 18.361c-.211.63.125 1.095 1.008 1.39l-.381 1.137-7.76-2.604.38-1.136zM560.678 137c.182.08.452.129.716.028.236-.04.466-.229.602-.533l9.043-20.232-7.899-3.53a1.878 1.878 0 00-1.02-.165c-.385.047-.615.236-.778.6l-1.093-.489 3.122-6.987 1.094.489c-.244.547-.313 1.026-.09 1.345.222.318.471.575.775.71l21.63 9.668c.304.136.662.15 1.047.104.385-.047.697-.418.941-.965l1.094.489-3.123 6.987-1.094-.489c.163-.364.15-.661-.072-.98a1.878 1.878 0 00-.803-.65l-7.898-3.53-9.043 20.232c-.272.608-.043 1.075.686 1.4l-.488 1.094-7.838-3.503.489-1.094zM97.085 747.003c-.455.485-.391 1 .24 1.592l-.819.873-6.357-5.957.819-.873c.534.5 1.004.485 1.458 0l17.007-18.148c.454-.486.44-.956-.095-1.456l.819-.873 6.357 5.957-.819.873c-.63-.591-1.15-.621-1.604-.136l-7.412 7.91c1.98.123 3.96.247 5.989.416 2.028.17 3.869.345 5.518.433 1.65.087 3.063.136 4.194.193 1.13.057 1.695.04 1.831-.107.137-.145.176-.382.121-.615a1.734 1.734 0 00-.397-.646l.682-.728 8.006 7.503-.818.874c-.525-.219-1.425-.425-2.793-.521l-14.242-1.043-1.246 16.695c-.066.849-.084 1.743-.102 2.638-.064.943.149 1.689.45 2.243l-.82.874-7.18-6.73.818-.873c.34.318.624.403.806.209.137-.146.225-.337.306-.716.082-.379.11-.991.127-1.886l.853-12.872-6.605-.538-5.092 5.435zM119.713 769.015c.631.488 1.15.47 1.557-.057l15.22-19.67c.406-.527.294-1.034-.337-1.522l.733-.947 7.731 5.982-.732.947c-.304-.151-.45-.18-.572-.022-.122.158-.12.916.058 2.315l2.287 23.126 11.028-14.254c.407-.525.242-1.073-.441-1.602l.732-.947 6.417 4.964-.733.947c-.63-.488-1.15-.47-1.557.057l-15.219 19.67c-.407.527-.295 1.034.337 1.522l-.733.947-6.837-5.29.732-.947c.263.203.45.18.572.022.122-.158.127-.49.096-1.103-.083-.653-.167-1.306-.221-2.105l-2.301-23.977-11.842 15.306c-.407.526-.242 1.073.494 1.643l-.732.947-6.47-5.005.733-.947zM156.831 796.544c.612.402 1.037.602 1.369.581.295.035.553-.114.735-.392l13.66-20.784a.948.948 0 00.104-.886c-.149-.258-.501-.569-1.113-.97l.658-1 8.447 5.55-.658 1c-1.055-.693-1.738-.744-2.103-.188l-13.66 20.784c-.365.556-.048 1.162 1.008 1.856l-.657 1-8.447-5.55.657-1.001zM207.492 805.484l-.47-.795c.285-.374.44-.516.473-.574.194-.349.189-.885-.107-1.583-.329-.64-.74-1.403-1.36-2.205-.618-.802-1.386-1.61-2.243-2.393-.949-.758-1.93-1.457-2.975-2.04a20.782 20.782 0 00-4.324-1.803c-1.472-.364-2.867-.456-4.243-.31-1.409.204-2.682.712-3.878 1.492-1.197.78-2.264 2.011-3.171 3.638-.907 1.626-1.394 3.182-1.338 4.583.023 1.46.318 2.843.949 4.032a10.096 10.096 0 002.41 3.324c1.058.971 2.122 1.793 3.226 2.408a35.639 35.639 0 004.956 2.308 15.33 15.33 0 004.81.932l2.041-3.66-5.982-3.336c-.406-.226-.845-.395-1.233-.383-.387.013-.814.231-1.131.664l-1.045-.583 3.336-5.982 1.045.583c-.168.439-.066.8.16 1.079.226.278.6.563 1.006.79l11.384 6.348-.583 1.045c-.446-.02-.776.025-.989.134-.213.11-.433.368-.66.774l-3.077 5.518c-.195.348-.266.613-.215.794-.039.207.129.452.438.853l-.389.697c-.478.038-1.162.037-2.144.022a31.876 31.876 0 01-3.526-.367c-1.388-.241-2.886-.696-4.526-1.306-1.672-.552-3.42-1.375-5.28-2.411-2.497-1.393-4.6-2.947-6.308-4.661-1.742-1.657-2.998-3.5-3.777-5.38-.836-1.914-1.162-3.923-.952-5.938.12-1.99.75-4.074 1.883-6.107 1.134-2.033 2.577-3.665 4.239-4.87 1.571-1.179 3.452-1.957 5.552-2.31 2.01-.325 4.237-.225 6.626.27 2.357.553 4.784 1.526 7.281 2.919 1.51.842 2.782 1.703 3.781 2.641 1 .938 1.825 1.78 2.534 2.556.71.776 1.303 1.487 1.663 2.07.361.581.703.924.993 1.086.29.162.555.234.762.273.207.039.446.02.775-.025l.503.737-6.9 4.452zM220.634 831.287c-.133.305-.117.602.013.804.103.262.26.403.504.509l-.477 1.097-7.685-3.34.478-1.098c.244.106.453.125.777.048.175-.07.403-.26.535-.565l9.917-22.809c.132-.305.116-.602.074-.838-.191-.228-.348-.368-.592-.474l.478-1.098 7.684 3.34-.477 1.099a1.123 1.123 0 00-.69-.083c-.262.104-.49.295-.623.6l-3.738 8.599 16.344 7.105 3.738-8.599c.133-.304.178-.575.074-.837a1.34 1.34 0 00-.59-.475l.476-1.098 7.685 3.341-.478 1.098a1.123 1.123 0 00-.689-.082c-.263.103-.49.294-.623.599l-9.916 22.808c-.133.305-.117.602.013.804.103.262.26.403.504.509l-.478 1.098-7.684-3.341.477-1.098c.244.106.515.151.777.048.236-.043.403-.26.536-.565l4.004-9.209-16.345-7.106-4.003 9.21zM262.063 848.82c.19.062.463.083.715-.044.231-.063.441-.274.546-.59l6.961-21.021-8.207-2.718a1.877 1.877 0 00-1.03-.061c-.378.085-.588.295-.714.674l-1.136-.376 2.404-7.26 1.136.376c-.188.568-.208 1.052.045 1.346.253.294.527.525.843.63l22.473 7.442c.316.104.673.083 1.052-.002.378-.085.65-.485.839-1.053l1.136.376-2.404 7.26-1.136-.377c.125-.378.082-.673-.17-.967a1.877 1.877 0 00-.864-.566l-8.206-2.717-6.962 21.021c-.21.632.065 1.073.823 1.324l-.377 1.136-8.143-2.697.376-1.136zM292.401 848.824l-.346 1.147c-.157.647.09 1.322.805 2.043.7.785 1.559 1.472 2.644 2.077 1.005.655 2.09 1.26 3.206 1.735 1.052.46 1.925.809 2.572.966.581.14 1.373.264 2.293.418a9.595 9.595 0 002.726.045c.903-.055 1.773-.254 2.48-.63.69-.312 1.17-.88 1.374-1.72.235-.97-.125-1.741-1.05-2.444-.989-.719-2.203-1.355-3.756-2.005-1.569-.586-3.187-1.251-4.998-1.964a22.213 22.213 0 01-4.889-2.416c-1.49-.909-2.595-1.998-3.378-3.282-.864-1.236-1.037-2.783-.583-4.657.674-2.78 2.37-4.695 5.023-5.763 2.654-1.067 6.089-1.124 10.225-.122 2.004.485 3.717 1.038 5.126 1.721 1.343.668 2.477 1.353 3.353 1.976.875.622 1.637 1.15 2.205 1.629.503.464.909.768 1.232.846.323.078.597.076.822-.006.21-.018.435-.1.725-.167l.539.884-4.704 5.292-1.07-.67c-.001-.274.061-.533.06-.807-.003-.274-.134-.58-.394-.916-.668-.915-1.869-1.89-3.553-2.846-1.685-.955-3.625-1.7-5.887-2.247-.84-.204-1.697-.343-2.488-.466-.807-.059-1.565-.037-2.209.08-.644.118-1.24.316-1.657.625a2.706 2.706 0 00-.893 1.426c-.234.97.126 1.741 1.13 2.395.925.703 2.14 1.34 3.708 1.925 1.553.65 3.171 1.316 4.998 1.964 1.812.712 3.398 1.507 4.873 2.48 1.475.974 2.58 2.062 3.412 3.427.768 1.35.925 2.961.47 4.836-.454 1.874-1.282 3.315-2.484 4.324-1.267.993-2.65 1.616-4.18 1.998-1.529.382-3.19.459-4.852.261-1.728-.213-3.31-.46-4.797-.82-1.486-.36-2.877-.834-4.22-1.502a27.854 27.854 0 01-3.708-1.925c-1.15-.62-2.04-1.178-2.787-1.77-.762-.526-1.183-.765-1.377-.812a.948.948 0 00-.869.2l-.748-.866 4.727-6.518 1.15.62zM363.784 847.014c-1.39-.138-2.799-.078-4.168.253a11.448 11.448 0 00-3.838 1.623 9.133 9.133 0 00-2.83 2.927c-.787 1.191-1.256 2.548-1.414 4.136-.158 1.588.035 3.01.571 4.334.47 1.316 1.232 2.394 2.205 3.36.967 1.032 2.099 1.746 3.442 2.347 1.278.595 2.641.998 4.03 1.136 1.39.139 2.806.012 4.242-.313 1.37-.331 2.62-.808 3.77-1.63 1.145-.754 2.104-1.661 2.891-2.853.72-1.198 1.19-2.555 1.348-4.143.158-1.588-.035-3.01-.505-4.327a10.15 10.15 0 00-2.265-3.433 11.858 11.858 0 00-3.376-2.34 13.13 13.13 0 00-4.103-1.077zm.487-4.897a25.93 25.93 0 016.79 1.611c2.058.806 3.82 1.917 5.282 3.332a13.61 13.61 0 013.311 5.008c.736 2.011.982 4.24.731 6.755-.25 2.515-.93 4.653-2.041 6.413a13.245 13.245 0 01-4.24 4.323c-1.713 1.1-3.651 1.775-5.821 2.094-2.243.378-4.52.42-6.968.176-2.448-.244-4.672-.732-6.73-1.539-2.131-.746-3.898-1.79-5.361-3.206a13.245 13.245 0 01-3.305-5.074c-.742-1.945-.988-4.175-.738-6.69.25-2.514.93-4.651 2.048-6.478a13.61 13.61 0 014.233-4.257c1.713-1.1 3.658-1.841 5.901-2.22a25.073 25.073 0 016.908-.248zM416.242 850.505c.002-.2-.129-.466-.46-.668-.33-.202-.862-.273-1.594-.28l-18.02-.144-.057 7.049 11.704.094c.731.006 1.197-.057 1.398-.255.2-.131.27-.397.339-.729l1.196.01-.056 6.982-1.197-.01c-.063-.332-.128-.599-.326-.8-.198-.201-.663-.271-1.394-.277l-11.704-.094-.081 10.174c-.003.332.128.6.46.735.33.202.662.271 1.061.275l-.01 1.197-9.176-.074.01-1.197c.864.007 1.266-.322 1.27-.987l.2-24.87c.006-.666-.457-1.002-1.388-1.01l.01-1.196 25.801.207c.731.006 1.265-.123 1.599-.32.334-.196.47-.528.472-.86l1.197.01-.057 7.048-1.197-.01zM454.915 869.845a.953.953 0 00.628-.345c.181-.156.281-.436.241-.766l-2.68-21.982-8.581 1.046c-.33.04-.652.147-.958.385-.306.238-.406.519-.358.915l-1.188.144-.926-7.59 1.189-.146c.072.594.26 1.04.615 1.198.354.158.7.25 1.03.21l23.5-2.866c.33-.04.644-.212.95-.45.306-.239.382-.717.31-1.31l1.187-.146.926 7.591-1.188.145c-.049-.396-.213-.644-.567-.801a1.877 1.877 0 00-1.022-.144l-8.582 1.046 2.68 21.982c.08.66.517.942 1.31.846l.144 1.188-8.516 1.038-.144-1.188zM489.6 863.5c.066.326.249.56.47.652.235.157.444.183.705.13l.235 1.174-8.216 1.646-.235-1.174c.26-.052.443-.156.665-.404.104-.157.182-.444.117-.77l-4.886-24.386a1.426 1.426 0 00-.417-.73c-.287-.078-.496-.104-.757-.052l-.235-1.174 8.216-1.646.235 1.174c-.26.052-.443.156-.613.326a1.101 1.101 0 00-.17.848l1.843 9.194 17.475-3.502-1.842-9.193c-.066-.326-.183-.574-.418-.73a1.34 1.34 0 00-.756-.052l-.236-1.174 8.216-1.646.235 1.174c-.26.052-.443.156-.613.326a1.101 1.101 0 00-.169.848l4.886 24.386c.065.326.248.56.47.652.235.156.443.182.704.13l.235 1.174-8.216 1.646-.235-1.174c.261-.052.509-.17.665-.404.17-.17.183-.444.117-.77l-1.972-9.846-17.475 3.501 1.973 9.846zM545.046 827.293c-.259-.825-1.013-1.006-2.345-.588l-15.481 4.86 1.991 6.345 9.771-3.068c.698-.219 1.25-.461 1.527-.688.297-.163.388-.54.248-.984l1.142-.359 2.112 6.726-1.27.398c-.012-.484-.302-.741-.786-.729-.464.076-1.181.232-2.006.49l-9.264 2.91 2.35 7.486 16.243-5.1c.508-.159.912-.425 1.15-.779.257-.29.348-.666.228-1.047l1.142-.359 2.092 6.662-1.142.359c-.12-.38-.37-.512-.707-.475-.337.036-.781.175-1.289.335l-23.285 7.31-.358-1.142a.953.953 0 00.555-.453c.15-.187.197-.48.098-.798l-7.45-23.729a1.101 1.101 0 00-.556-.662 1.283 1.283 0 00-.694.01l-.359-1.143 22.524-7.071c1.332-.418 1.847-.998 1.608-1.76l1.142-.358 2.21 7.043-1.141.358zM583.223 836.036c.72-.345.936-.817.649-1.417l-10.741-22.432c-.288-.6-.791-.727-1.51-.383l-.518-1.08 8.817-4.221.517 1.08c-.271.203-.362.32-.276.5.086.18.764.52 2.095.988l21.69 8.342-7.784-16.254c-.287-.6-.85-.699-1.63-.326l-.517-1.08 7.317-3.503.517 1.08c-.72.344-.936.816-.648 1.416l10.74 22.432c.288.6.791.727 1.511.383l.517 1.08-7.797 3.733-.517-1.08c.3-.143.362-.32.276-.5-.086-.18-.38-.334-.942-.582-.62-.219-1.241-.437-1.98-.747l-22.456-8.712 8.357 17.454c.287.6.85.698 1.69.296l.517 1.08-7.377 3.532-.517-1.08zM624.868 787.695c-1.194.726-2.283 1.622-3.178 2.71a11.448 11.448 0 00-2.088 3.605 9.133 9.133 0 00-.501 4.04c.088 1.426.53 2.792 1.359 4.156.83 1.363 1.839 2.384 3.063 3.118 1.168.768 2.425 1.172 3.783 1.357 1.393.243 2.727.133 4.162-.195 1.378-.294 2.71-.792 3.903-1.517 1.193-.726 2.248-1.679 3.2-2.802.894-1.089 1.606-2.222 2.031-3.57.46-1.292.68-2.593.592-4.018-.145-1.391-.586-2.757-1.415-4.12-.83-1.364-1.84-2.385-3.007-3.153a10.15 10.15 0 00-3.874-1.38 11.858 11.858 0 00-4.105.16 13.13 13.13 0 00-3.925 1.61zm-2.557-4.204a25.93 25.93 0 016.393-2.798c2.13-.594 4.204-.766 6.224-.516 2.02.25 3.894.9 5.657 2.008 1.798 1.164 3.336 2.797 4.648 4.957 1.313 2.159 2.056 4.276 2.228 6.35a13.245 13.245 0 01-.786 6.004c-.707 1.909-1.849 3.615-3.39 5.175-1.565 1.651-3.359 3.053-5.46 4.332-2.103 1.278-4.173 2.226-6.303 2.82-2.151.685-4.191.914-6.211.664-2.02-.25-3.895-.9-5.692-2.065-1.763-1.107-3.3-2.74-4.614-4.9-1.313-2.159-2.055-4.276-2.262-6.407a13.61 13.61 0 01.82-5.947c.708-1.909 1.815-3.672 3.38-5.323a25.073 25.073 0 015.368-4.354zM665.328 769.97c3.462-2.587 4.384-5.02 2.752-7.203-.676-.906-1.62-1.28-2.817-1.216-1.21.158-2.742.887-4.553 2.24l-8.417 6.29 4.618 6.179 8.417-6.29zm-7.457-10.2c3.143-2.35 6.045-3.687 8.56-3.989 2.553-.248 4.812.887 6.683 3.39.717.96 1.194 1.931 1.378 2.956.184 1.024.236 1.982.048 2.952-.148 1.024-.522 1.968-.976 2.805-.414.89-.96 1.714-1.587 2.43l10.913 3.718c.545.174 1.103.254 1.595.136a4.8 4.8 0 001.424-.317l.717.959-8.15 6.09-.717-.959c.479-.358.573-.677.334-.997-.279-.373-.943-.706-2.033-1.054l-8.906-3.142-7.404 5.533 5.692 7.618c.199.266.465.4.81.307.333.001.586-.105.8-.264l.716.959-7.086 5.294-.716-.96c.64-.477.76-.982.362-1.515l-14.887-19.923c-.398-.533-.917-.56-1.556-.083l-.717-.959 14.703-10.986zM698.657 762.706a.953.953 0 00.319-.641c.06-.232-.017-.52-.239-.767l-14.736-16.53-6.453 5.754a1.877 1.877 0 00-.568.862c-.115.37-.037.657.228.955l-.893.797-5.09-5.709.894-.796c.398.447.807.705 1.188.633.381-.072.718-.194.966-.416l17.67-15.754c.249-.221.409-.542.524-.912.115-.37-.095-.806-.493-1.253l.893-.797 5.09 5.709-.894.796c-.266-.298-.542-.408-.923-.335-.38.072-.673.244-.921.465l-6.453 5.753 14.737 16.53c.442.495.961.478 1.557-.053l.796.894-6.403 5.708-.796-.893zM723.745 737.648c.243.227.528.312.761.257.282-.01.467-.11.649-.304l.874.818-5.726 6.118-.874-.818c.182-.194.27-.385.306-.716-.006-.188-.11-.467-.352-.694l-18.16-16.994a1.426 1.426 0 00-.764-.351c-.279.103-.464.203-.645.397l-.874-.817 5.725-6.118.874.818c-.182.194-.27.385-.309.622.01.282.113.56.356.788l6.846 6.407 12.178-13.013-6.846-6.407c-.243-.227-.483-.36-.765-.35a1.34 1.34 0 00-.645.397l-.874-.818 5.725-6.118.874.818c-.182.194-.27.385-.309.622.01.282.113.56.356.788l18.16 16.994c.242.228.527.312.76.258.282-.01.467-.11.649-.304l.874.818-5.725 6.117-.874-.817c.181-.195.315-.434.305-.716.04-.237-.11-.467-.352-.694l-7.332-6.862-12.178 13.013 7.332 6.861zM288.144 287.296c-2.19-1.331-5.52.391-5.698 2.948 1.667 1.359 4.654.15 4.905-1.986l.793-.962zM546.829 472.98c3.317-.146 4.46-5.451 1.778-7.409a22.212 22.212 0 00-2.07 6.73l.292.679zM464.214 298.32c-1.272-2.42-4.729-3.366-7.056-1.93 1.716 2.445 4.957 3.712 7.877 3.079l-.821-1.149zM344.446 681.229c1.292 2.484 4.903 3.385 7.21 1.798-1.853-2.36-5.12-3.513-8.043-2.837l.833 1.039zM202.624 348.007c2.938-1.425 4.445-5.252 3.267-8.298-2.253 1.319-3.665 3.954-3.517 6.56l.25 1.738zM633.579 439.582c-.261 4.771 1.216 9.618 4.092 13.434 1.131-4.774-.491-10.101-4.092-13.434M340.148 676.448a13.968 13.968 0 00-8.029-3.902c.62 4.614 5.772 8.054 10.272 6.86.019-1.058-.637-2.097-1.6-2.536l-.643-.422zM170.214 455.277l.382 9.504c1.646-.38 2.028-2.515 2.068-4.203l.303-12.758c-2.179 1.197-3.29 4.044-2.497 6.401l-.256 1.056zM535.477 523.118l-4.284-4.594c-1.908 1.487-2.38 4.514-1.013 6.51 1.367 1.996 4.36 2.65 6.436 1.407 1.096-.67.866-2.654-.355-3.054l-.784-.269zM461.634 402.456a199.854 199.854 0 00-12.267 7.885c5.261 2.317 12.19-2.137 12.267-7.885M387.898 788.868a75.617 75.617 0 0010.073-10.192c-5.63-1.996-12.135 4.587-10.073 10.192M193.171 521.846a51.827 51.827 0 00-5.629-15.585c-.672-1.208-1.678-2.548-3.057-2.448.486 6.816 3.659 13.404 8.686 18.033M488.647 402.5c-2.896-.734-6.022 2.294-5.382 5.211.642 2.917 4.75 4.356 7.07 2.476-.05-1.007-.997-1.882-2.004-1.856l4.17-6.035-2.606-.712-1.248.916zM393.596 787.474l-2.386 1.771c.891.11 1.033 1.664.176 1.932 2.822 1.342 7.048 2.233 8.345-.61 1.083-2.373-.603-6.341 1.895-7.092-2.792-1.527-6.826.641-7.093 3.812l-.937.187zM351.881 684.276a22.704 22.704 0 0013.476 6.337c1.455.149 3.263-.045 3.852-1.385-4.807-3.868-11.203-5.696-17.328-4.952M399.975 487.865a7.033 7.033 0 001.334-5.9c-4.744-.898-9.875 2.625-10.744 7.374 2.87 1.005 6.203.58 8.728-1.116l.682-.358zM350.801 312.177c2.549-6.105 2.4-13.282-.399-19.276-3.257 5.892-3.099 13.523.399 19.276M489.613 452.979a49.848 49.848 0 0110.741-12.684c-3.371-1.16-7.402-.051-9.706 2.67-2.305 2.721-2.734 6.879-1.035 10.014M281.783 645.518c3.196-2.856 6.602-6.095 7.134-10.349a92.749 92.749 0 00-19.84 17.988c1.705 1.45 4.246-.08 5.916-1.573 2.264-2.021 4.527-4.045 6.79-6.066M467.647 500.027c-.216-.852-.881-1.504-1.518-2.109l-3.801-3.618c-1.341-1.275-3.138-2.65-4.855-1.96-1.487.599-2.011 2.565-1.54 4.099.471 1.533 1.656 2.725 2.799 3.85 1.448 1.425 3.048 2.926 5.062 3.186 2.015.26 4.354-1.479 3.853-3.448M404.578 763.468a129.79 129.79 0 00-.944 16.095c.007 1.903 1.635 4.582 3.024 3.28 2.366-6.743 2.607-14.216.677-21.097l-2.757 1.722M404.521 746.15c-.053 1.206-.282 2.509.335 3.547.632 1.062 2.145 1.485 3.236.903a333.566 333.566 0 01-.171-23.435c-3.615.266-5.468 4.67-5.161 8.282.307 3.612 1.92 7.081 1.761 10.703M414.32 655.138c1.858 2.57 6.596 1.925 7.698-1.049 1.03-2.775-.734-6.406 1.261-8.592 1.443-1.581 3.93-1.33 6.051-1.618 2.121-.289 4.539-2.291 3.497-4.161-4.536 1.014-10.413-1.459-13.283 2.196-1.585 2.018-1.212 4.87-1.305 7.435-.093 2.564-1.356 5.658-3.919 5.789M547.882 310.719l2.381 3.364c3.6-3.353 3.641-9.782.085-13.182a22.004 22.004 0 00-2.283 8.043c-3.73-.3-7.547 1.725-9.391 4.981-1.844 3.255-1.616 7.57.559 10.614a47.644 47.644 0 018.649-13.82M243.505 326.452l16.734-8.986c-1.939-2.362-5.351-3.153-8.346-2.546-2.996.608-5.622 2.411-7.864 4.489a32.905 32.905 0 00-6.85 9.01c2.234.185 4.352-.907 6.326-1.967M267.908 441.446c-6.573 3.802-9.024 12.246-8.678 19.83.17 3.704 1.289 7.959 4.691 9.43 2.699-2.455.154-6.755-.376-10.365-.952-6.489 5.423-12.423 4.363-18.895M313.599 468.785c3.708-2.334 5.663-6.779 6.062-11.142.397-4.363-.542-8.726-1.477-13.006-.308-1.409-.825-3.055-2.205-3.469-2.713 1.443-3.105 5.207-2.464 8.213.641 3.006 1.966 6.011 1.408 9.033-.665 3.608-3.799 7.663-1.324 10.371M331.924 374.512c-.905-1.185-2.786-2.386-3.621-1.151-.473 3.193 1.404 6.212 3.198 8.895-4.946 2.804-9.904-6.867-15.306-5.095 1.86 4.716 6.076 8.434 10.987 9.69 2.376.608 5.215.537 6.895-1.25 2.819-2.999.346-7.818-2.153-11.089M307.344 420.407c-.501-.542-1.209-.835-1.897-1.102a69.723 69.723 0 00-20.591-4.55c2.926 4.846 8.427 7.401 13.609 9.682 2.105.927 4.421 1.872 6.638 1.262 2.218-.609 3.803-3.605 2.241-5.292M296.292 498.133c4.845-.371 7.126-6.87 5.195-11.328-1.932-4.458-6.39-7.19-10.59-9.637l-2.684-1.564c.106 8.235 10.932 14.803 8.079 22.529M635.25 471.833l-10.13 32.842c-.578 1.878-1.066 4.184.304 5.593a146.023 146.023 0 0013.283-43.553c-1.98.792-2.828 3.079-3.457 5.118M458.539 663.424c-3.258 2.781-9.197.895-10.254-3.256-.62-2.436-3.772-3.456-6.168-2.691-2.395.764-4.172 2.74-5.827 4.633-1.355 1.549-2.732 3.918-1.356 5.45 1.971.98 3.79-1.451 5.041-3.264 1.252-1.812 4.618-2.967 5.14-.827.756 3.097 3.454 5.628 6.594 6.184 3.139.556 6.543-.894 8.317-3.542l-1.487-2.687M292.218 280.703a79.211 79.211 0 01-27.748-7.96c-1.766-.882-4.162-1.732-5.475-.258 6.251 8.572 18.119 10.357 28.7 11.13 2.148.158 5.282-.896 4.523-2.912M391.603 534.895c2.559-.514 3.692-3.624 3.547-6.229-.145-2.606-1.085-5.19-.699-7.771.453-3.024 2.677-5.631 2.799-8.687-6.094 2.492-10.55 8.588-11.074 15.152-.286 3.587 1.899 8.243 5.427 7.535M300.623 394.282l.9 2.686a11.636 11.636 0 006.733 1.977c3.793-.088 7.769-2.606 8.307-6.361.538-3.756-3.904-7.576-7.174-5.654a10.195 10.195 0 003.145 6.22c-3.239 1.545-7.314 1.155-10.201-.976-2.455-1.812-6.061-1.221-8.539.559-2.479 1.78-4.088 4.496-5.626 7.131a55.968 55.968 0 0012.455-5.582M359.389 422.956l14.396 12.23c2.6 2.209 5.297 4.473 8.558 5.48 3.259 1.007 7.26.435 9.343-2.269-10.32-1.278-18.54-8.931-25.982-16.195 1.263.102 2.476-1.075 2.411-2.341-.064-1.266-1.389-2.313-2.636-2.084a22.054 22.054 0 01-6.09 5.179M344.689 582.751l2.186 3.1a31.897 31.897 0 008.868-15.332c.259-1.053.413-2.31-.339-3.09-1.057-1.1-2.904-.36-4.152.517-6.18 4.343-10.74 10.937-12.622 18.252 2.442.072 4.872-1.311 6.059-3.447M400.815 713.955c3.791.687 4.094 5.968 3.439 9.765 1.297-.369 2.768-.717 3.928-.031l.216-25.386c.011-1.374-.398-3.215-1.772-3.243-2.864 1.301-2.205 5.45-1.595 8.536.61 3.087-.849 7.64-3.885 6.813l1.073-7.334c-2.774-.216-5.516 2.013-5.873 4.773-.356 2.759 1.73 5.612 4.469 6.107M388.019 696.451c-1.792 1.687-2.094 4.728-.672 6.735 2.792 1.316 5.222-2.705 4.964-5.78-.257-3.075-1.472-6.525.372-9 2.454-3.295-1.924-7.814-1.164-11.852.733-3.904 5.866-5.625 6.926-9.453-2.834-1.458-6.469.337-8.135 3.054-1.666 2.717-1.874 6.051-2.038 9.234l-.253 4.913c-.208 4.048-.416 8.116 0 12.149M188.553 392.16l-15.29 44.498c-.822 2.39-1.607 5.17-.272 7.315a374.987 374.987 0 0018.986-53.786c-.867-1.424-2.882.397-3.424 1.972"}),l("path",{key:"7984e90a914ba3add6f7a7e1ca6e387eeb414716",d:"M555.848 476.488c.868-4.228 2.731-8.265 2.981-12.573.25-4.309-1.794-9.257-5.972-10.337-1.065-.275-2.519-.044-2.763 1.028 4.48 3.775 4.029 10.76 2.542 16.427-1.486 5.666-3.593 11.807-1.217 17.162.938 2.114 3.439 4.089 5.391 2.847a27.643 27.643 0 01-.962-14.554M181.122 505.28c-5.857-3.845-4.54-15.221-11.383-16.727a425.177 425.177 0 0024.595 51.391c2.048-.061 1.86-3.192.975-5.04l-14.187-29.624M321.432 342.342c-1.436.716-3.05-.563-4.03-1.834a23.325 23.325 0 01-3.22-5.674 19.842 19.842 0 017.25 7.508m-.244-8.649l-7.291-7.274c-.59-.59-1.204-1.195-1.979-1.507-2.855-1.151-5.641 2.55-5.139 5.588.501 3.037 2.827 5.382 4.576 7.916 1.633 2.366 2.85 5.066 4.937 7.043 2.087 1.977 5.484 3.026 7.84 1.379 2.113-1.477 2.527-4.577 1.643-6.999-.883-2.422-2.762-4.325-4.587-6.146M436.375 607.867c-1.093 4.092-1.407 8.346-1.716 12.57-.156 2.126-.267 4.431.916 6.204 5.902-3.972 10.375-10.022 12.445-16.83.988-3.252 1.065-7.524-1.867-9.244-2.039-1.195-4.787-.494-6.524 1.109-1.737 1.602-2.645 3.907-3.254 6.191M465.423 655.365c.737-.78 2.331.184 1.983 1.198-.347 1.015-2.197.799-2.301-.268l.318-.93zm13.446-4.622c-.483-.663-1.094-1.228-1.761-1.705-3.293-2.359-8.058-2.427-11.416-.163-3.359 2.263-5.083 6.706-4.131 10.642.474 1.967 1.698 3.894 3.605 4.57.895.318 1.865.338 2.815.297 3.57-.154 7.269-1.239 9.729-3.832 2.46-2.593 3.268-6.923 1.159-9.809M414.285 642.057c-1.524-.998-3.475-.982-5.296-.934-4.894.133-10.654.754-13.1 4.996-1.41 2.446-1.494 5.834-3.852 7.389-1.037.684-2.32.85-3.554.997l-31.138 3.737c-.732 1.029-.01 2.572 1.115 3.147 1.124.576 2.462.466 3.719.342l26.169-2.587c2.874-.283 6.009-.691 7.998-2.783 2.678-2.821 2.478-7.927 5.847-9.868 2.035-1.174 4.569-.67 6.917-.739 2.349-.069 5.157-1.347 5.175-3.697M261.228 578.546c13.413 6.389 29.214 7.597 43.443 3.322.355-.107.726-.226.985-.492 1.068-1.098-.755-2.643-2.233-3.043a92.11 92.11 0 00-38.406-2.036c-1.534.245-3.339.763-3.789 2.249M383.505 420.409c-2.866-3.399-6.168-6.404-9.546-9.295a221.376 221.376 0 00-13.952-11.002c-2.504-1.818-5.174-3.634-8.238-4.069-3.065-.435-6.616.96-7.636 3.882a11.903 11.903 0 00-2.272-4.169l-3.474 3.501c.58 1.701 2.93 2.493 4.421 1.49l2.05 3.99c1.725 1.262 2.625-2.579 4.487-3.63 1.227-.692 2.743.031 3.946.766a115.292 115.292 0 0127.986 24.033c1.795 2.129 3.545 5.281 1.816 7.464a19.342 19.342 0 019.173 2.088 50.58 50.58 0 00-8.761-15.049M278.679 333.573c-2.334 1.938-6.542.414-7.094-2.569 1.696-1.418 4.691-.685 5.539 1.356l1.555 1.213zm2.361 11.249c2.631-2.231 6.976-2.043 9.404.406a10.2 10.2 0 00-4.823 3.193c1.417 1.058 3.813.12 4.136-1.619 3.905 1.321 7.146 4.479 8.566 8.351-1.53 1.578-3.994-.496-5.196-2.335-1.203-1.84-3.889-3.745-5.219-1.994 1.548 3.331 3.307 6.89 6.562 8.591 3.255 1.7 8.319.171 8.646-3.487.218-2.436-1.637-4.511-3.362-6.246l-22.922-23.058c-2.553-2.569-7.546-1.173-8.94 2.17-1.395 3.342.506 7.469 3.682 9.209 3.177 1.739 7.206 1.372 10.443-.252l-.977 7.071"}),l("path",{key:"a36e568596e11207a0722ebef9ed647cd08866f7",d:"M448.489 642.861l12.812-.723c-2.583 2.203-5.266 4.545-6.473 7.718-1.207 3.174-.342 7.412 2.742 8.833-2.018-5.432 1.902-11.715 7.233-13.985 5.332-2.271 11.486-1.407 17.019.316a8.114 8.114 0 01.467-6.564 616.257 616.257 0 00-34.475-.048c-2.351.063-5.092.349-6.34 2.345-1.64 2.623.4 6.594-1.623 8.935-3.055 1.377-6.956-2.549-5.305-5.467l-3.35-.618c-2.427 3.884-.26 9.797 4.103 11.194 4.362 1.395 9.559-2.163 9.837-6.734.101-1.663-.197-3.696 1.163-4.66.622-.441 1.428-.499 2.19-.542M364.822 246.777l-2.41 2.011c-.212-5.041 5.03-9.547 9.982-8.58l-7.171 5.937-.401.632zm25.351-9.251c-3.023 3.925-8.206 5.302-12.645 7.503a32.913 32.913 0 00-12.449 10.808c-1.537-.787-1.925-2.942-1.267-4.539.659-1.595 2.072-2.739 3.472-3.749a59.561 59.561 0 0122.889-10.023m-30.502 16.946c.639 2.091 1.597 4.423 3.666 5.127 3.728 1.267 6.348-3.454 8.897-6.454 3.449-4.059 8.915-5.608 13.867-7.57 4.952-1.962 10.161-5.132 11.343-10.326-11.506-2.615-23.867-1.306-34.57 3.658-5.265 2.442-4.899 10.016-3.203 15.565M397.858 216.345c-3.09-.266-5.341-3.968-4.155-6.834 2.736 1.019 4.695 3.84 4.693 6.76l-.538.074zm-7.646-1.874l-19.416.689c-1.485.053-3.297-.075-3.967-1.402a145.03 145.03 0 0123.479-8.385 15.551 15.551 0 00-.096 9.098m-22.918-5.446c-3.527 1.522-7.514 3.593-8.224 7.368 9.925 6.274 23.374-.331 34.571 3.202 2.028.64 3.982 1.615 6.1 1.795 2.118.181 4.546-.717 5.266-2.717.885-2.458-1.143-4.925-3.007-6.756l-8.288-8.138c-1.353-1.329-2.83-2.723-4.701-3.038-1.762-.297-3.519.427-5.16 1.136l-16.557 7.148M459.833 259.609l-14.382-17.306c-7.296-8.78-20.994-11.442-31.048-6.032 4.13 4.463 8.991 9.226 15.071 9.317 4.451.067 9.613-2.263 12.925.712-.006 3.403-1.722 6.759-4.476 8.757a81.368 81.368 0 0021.91 4.552M337.955 418.84c2.254 1.469 4.041 3.632 6.458 4.813 2.418 1.182 5.963.872 7.033-1.597a8.027 8.027 0 00-2.821 5.412c-.252 2.945 1.381 6.041 4.086 7.232 2.705 1.19 6.28.149 7.689-2.448 1.409-2.597.13-6.359-2.663-7.325-1.285.964-1.849 2.788-1.332 4.309-.654.594-1.699.706-2.464.265-1.407-.599-1.814-2.527-1.253-3.951.561-1.423 1.798-2.45 2.987-3.414 2.824-2.287 6.034-4.704 9.659-4.439l.901-2.405c-.62-1.846-3.286-1.787-5.076-1.022-3.44 1.471-6.262 4.146-9.714 5.588-3.451 1.442-8.216 1.123-9.986-2.173 3.207-.312 5.863-3.462 5.629-6.675-.234-3.214-3.318-5.945-6.536-5.789-2.676.13-5.311-1.798-5.997-4.387-.687-2.589.646-5.569 3.034-6.782-2.303-1.913-6.185-.844-7.712 1.731-1.527 2.575-.958 6.022.803 8.444 1.76 2.422 4.505 3.954 7.325 4.961 1.791.639 3.89 1.315 4.56 3.095-3.092 2.4-7.484.643-11.347.015-4.908-.797-10.125.546-14.037 3.614a161.212 161.212 0 0026.824 14.097c-1.468-5.203-6.303-9.282-11.679-9.852-2.145-.228-5.179-.776-4.978-2.923 3.546-1.009 7.518-.407 10.607 1.606M284.576 455.102c-.863-1.112-.208-3.025 1.155-3.375 1.18 1.203.74 3.546-.798 4.237l-.357-.862zm-5.674 1.635c.234 2.613 3.008 4.398 5.63 4.472 2.622.075 5.097-1.107 7.452-2.262-1.534-3.082-1.01-7.07 1.268-9.65a80.036 80.036 0 005.092 13.207c2.355-5.279 2.201-11.725-.83-16.648-3.032-4.922-9.009-8.007-14.729-7.167-5.719.841-10.693 5.831-11.08 11.599-.087 1.281.033 2.585-.252 3.836-1.445 6.346 1.801 13.464 7.541 16.533 5.739 3.068 13.462 1.815 17.936-2.912-1.858-2.86-5.984-2.935-9.348-2.368-3.363.566-7.145 1.366-9.929-.606-4.431-3.136-2.552-10.013-.193-14.902 1.297.137 1.961 1.69 1.898 2.993-.063 1.303-.573 2.576-.456 3.875M523.307 455.714c.104 1.872-2.835 2.944-3.962 1.446-.081-1.113 1.498-1.911 2.346-1.185l1.616-.261zm5.172 5.265c.339 1.112.678 2.225 1.015 3.338-4.966 3.671-11.95 4.407-17.573 1.852-5.624-2.556-9.662-8.301-10.162-14.457-.125-1.541 2.186-2.214 3.461-1.34 1.275.874 1.77 2.477 2.411 3.884 3.407 7.476 13.715 10.799 20.848 6.723m-31.102-2.517c2.83 8.444 11.323 14.655 20.227 14.794 8.905.139 17.587-5.805 20.679-14.157.771-2.082 1.209-4.434.394-6.499-.891-2.257-3.077-3.71-5.232-4.823-7.692-3.968-16.657-5.418-25.207-4.077-4.503.707-9.415 2.641-11.089 6.881-.985 2.496-.624 5.337.228 7.881M299.734 253.298c1.387 1.652 3.875-.274 5.393-1.806 3.048-3.076 7.437-4.776 11.762-4.556a337.79 337.79 0 01-37.348 25.879c3.383 1.189 7.133.613 10.57-.413 13.206-3.941 23.768-14.11 31.455-25.55l10.862-2.662c7.119-1.745 14.785-3.83 19.3-9.604.61-.782 1.166-1.658 1.28-2.642.307-2.621-2.458-4.495-4.939-5.393-12.275-4.441-26.385-.871-37.11 6.571-10.725 7.442-18.573 18.306-25.377 29.447 7.005-.615 10.856-8.086 14.908-13.833 10.615-15.051 31.088-22.357 48.833-17.426-4.173 7.232-14.793 6.138-22.458 9.45-2.015.871-4.051 2.124-6.228 1.835-8.049-1.068-15.089 5.036-20.903 10.703M324.072 278.604a19.107 19.107 0 01-5.695 10.602c-1.006.947-2.306 1.833-3.663 1.571 1.09-5.179 4.633-9.787 9.358-12.173m-23.255 25.685a221.772 221.772 0 0112.154-14.911c-.838 8.158-5.794 15.788-12.907 19.869-1.381-1.226-.35-3.478.753-4.958m28.672-45.2c-2.969 3.946-3.675 9.138-6.017 13.485-5.315 9.869-18.728 15.059-20.18 26.174l-5.949-3.311c5.395-6.434 11.88-11.879 17.354-18.247 5.474-6.367 10.028-14.034 10.412-22.422-3.808-.106-5.45 4.601-6.986 8.086-.945 2.145-2.239 4.116-3.572 6.042a144.841 144.841 0 01-36.524 36.526c6.415 3.637 13.35-7.053 20.519-5.326-.343 4.371-4.395 7.558-8.507 9.082-4.111 1.523-8.602 1.978-12.537 3.912-1.584.779-3.156 2.966-1.748 4.031l24.262-4.775c6.204-1.221 10.911-6.168 14.983-11.006 3.766-4.476 7.398-9.124 10.057-14.335 4.355-8.532 5.93-18.455 4.433-27.916M176.264 233.03c-2.381-.097-4.638-1.683-5.537-3.891-.737-1.814-.569-3.94.309-5.69a15.675 15.675 0 015.228 9.581m19.489 20.362l5.449 5.346c-2.686-.796-4.984-2.808-6.129-5.364m51.59 53.536c1.564-8.086-4.86-15.314-10.774-21.046l-48.751-47.253c-2.585-2.506-5.214-5.07-6.874-8.264-1.323-2.545-1.991-5.421-3.582-7.807-1.591-2.385-4.611-4.231-7.285-3.193-3.993 1.549-3.532 7.465-1.438 11.201 2.55 4.545 6.341 8.245 10.079 11.876l60.662 58.922c2.347 2.28 4.825 4.639 7.963 5.564"}),l("path",{key:"9ba90ddfb2c8be10999bb28362602a4344e68206",d:"M260.383 280.105c-1.884-1.432-3.764-3.101-4.481-5.355-.717-2.254.229-5.189 2.5-5.854 14.089-4.128 26.736-13.021 35.387-24.883l-59.246 14.382c-.62.15-1.272.318-1.724.768-1.285 1.276-.019 3.408 1.24 4.71a272.513 272.513 0 0032.926 28.972c2.569 1.917 5.636 3.89 8.749 3.122 3.111-.768 4.46-6.001 1.418-7.013a58.113 58.113 0 01-16.769-8.849M359.084 668.446a48.15 48.15 0 0019.763.139c3.611 5.152 1.751 12.127.64 18.319-1.376 7.673-1.356 15.52-1.332 23.314l.26 83.798c.007 2.436 1.593 5.902 3.715 4.706l2.357-127.116c.067-3.566-3.208-6.451-6.661-7.346-3.453-.894-7.088-.328-10.647-.085-6.83.465-14.41-.624-18.978-5.723-4.567-5.1-3.531-15.011 3.03-16.962 1.836-.546 3.796-.418 5.707-.284l14.197.991c-.988 3.68-5.257 5.3-9.009 5.959-3.752.658-7.975 1.124-10.403 4.06-2.429 2.935-.249 8.929 3.407 7.859-1.452-3.562 2.903-6.717 6.63-7.667 3.949-1.008 8.313-1.498 11.297-4.274 2.985-2.776 2.93-8.952-1.024-9.943-5.718-1.433-11.589-2.878-17.444-2.189-5.854.688-11.778 3.983-13.885 9.488-1.995 5.21-.089 11.357 3.719 15.435 3.808 4.076 9.211 6.334 14.661 7.521M258.443 601.337c-4.685-.744-8.813 2.945-12.168 6.358l-86.149 87.628c-4.991 5.077-10.257 12.983-5.943 18.666 2.595 3.419 7.712 3.88 11.633 2.232 3.921-1.648 6.927-4.919 9.804-8.096l83.403-92.129c2.836-3.132 5.779-7.901 3.154-11.218L167.46 708.55c-1.963 2.15-4.987 4.47-7.399 2.864-3.033-2.018-.66-6.78 1.856-9.435l33.16-34.992c.743-.785 1.647-1.632 2.712-1.525 1.066.108 1.675 1.9.664 2.26l59.99-66.385M626.337 666.13c-.904 2.321 2.01 4.17 4.309 5.132 2.297.961 4.893 3.554 3.298 5.467l-50.537-45.22c-1.152-1.031-2.356-2.82-1.268-3.919l40.221 31.1c2.396 1.852 5.077 4.619 3.977 7.44m43.109 26.592c-.675 3.594-3.441 6.716-6.927 7.82l-26.147-21.759c4.54-.782 9.317-1.548 13.664-.022 2.789.979 5.173 2.83 7.502 4.651l11.908 9.31m-39.561-24.495c1.181-2.118 2.361-4.237 3.543-6.355a1122.964 1122.964 0 00-60.916-45.615c-3.321-2.315-7.914-4.609-11.086-2.097a1033.013 1033.013 0 0096.242 88.306c1.169.943 2.384 1.908 3.831 2.311 4.156 1.16 7.933-2.57 10.646-5.925 1.059-1.311 2.165-2.734 2.296-4.414.191-2.457-1.722-4.516-3.496-6.228-8.319-8.032-18.665-16.705-29.994-14.381-2.054.422-4.632 1.03-5.897-.642l9.569-4.792a26.295 26.295 0 00-14.738-.168M400.542 598.79c-3.191-.064-6.561-.293-9.392 1.181-2.831 1.474-4.637 5.431-2.676 7.95 1.388 1.782 4.064 2.077 6.206 1.358 2.141-.719 3.903-2.234 5.692-3.613l.708 4.639c2.882-1.98 6.684-1.642 10.158-2.036 3.475-.393 7.468-2.377 7.607-5.872 3.982 3.943 2.816 11.686-2.151 14.28-3.902 2.039-8.605.965-13.007.871-4.402-.095-9.743 1.774-10.382 6.131l27.07 1.24c1.695.077 3.483.136 4.983-.659 2.62-1.388 3.355-4.743 3.712-7.686a140.215 140.215 0 00-1.415-42.849c-.518-2.746-1.255-5.703-3.446-7.437-1.79-1.417-4.194-1.722-6.47-1.91a122.046 122.046 0 00-27.201.8c-2.656.378-5.898 1.425-6.248 4.086-.274 2.09 1.635 3.947 3.685 4.445 2.049.498 4.191.019 6.27-.338a53.332 53.332 0 0122.984 1.114c2.283.624 2.312 4.221.512 5.757-1.799 1.536-4.395 1.576-6.761 1.537l-13.179-.214c-4.93-.08-10.788.324-13.336 4.546 1.405 3.999 7.082 3.495 11.285 2.95 7.533-.977 15.145.483 22.6 1.936 1.153 1.646.355 4.077-1.209 5.339-1.566 1.261-3.65 1.633-5.644 1.882a76.115 76.115 0 01-10.955.572M527.556 344.686c39.868-31.92 72.076-72.522 111.674-104.776 5.545-4.516 11.604-12.699 6.505-17.711-4.647-4.567-12.24.149-16.859 4.743l-67.761 67.408c-3.976 3.955-8.292 9.331-6.247 14.553a2420.267 2420.267 0 0179.989-80.796c1.325-1.277 2.8-2.624 4.632-2.798 1.833-.175 3.881 1.562 3.256 3.294-.213.592-.682 1.051-1.137 1.488L526.433 340.78c-2.512 2.413-5.983 5.012-9.132 3.523.285-10.59 20.005-14.863 16.654-24.913l-15.994 14.584c-3.687 3.362-7.646 8.734-4.69 12.755 3.203 4.356 10.064 1.336 14.285-2.043"}),l("path",{key:"42b52a16e71893adcbfa91475b28369dbe647589",d:"M360.486 694.789a392.818 392.818 0 00-98.549-33.79c7.086-18.98 27.222-28.949 43.044-41.602 2.962-2.368 5.958-5.106 6.913-8.776.956-3.669-1.158-8.346-4.933-8.693-2.788-.256-5.203 1.785-7.251 3.693l-67.149 62.553a322.945 322.945 0 0197.387 25.369c12.966 5.659 25.846 12.259 39.883 14.024 1.838-5.484-4.171-10.192-9.345-12.778M336.467 468.415c-2.319 5.587-8.261 8.612-13.742 11.172-.93-2.541.973-5.254 3.129-6.889 2.155-1.635 4.76-2.865 6.177-5.17 3.362-5.467-1.937-13.094.951-18.827 2.306.601 3.137 3.385 3.578 5.727.875 4.651 1.721 9.616-.093 13.987m11.46-14.858l1.977 1.278a377.58 377.58 0 0123.134 3.451c1.221.221 2.509.48 3.433 1.308.925.828 1.275 2.428.388 3.298l-25.571-1.644c-3.139-.201-6.492-.481-8.961-2.432-2.468-1.95-3.32-6.219-.833-8.146.24-.186.537-.35.833-.284.399.089.591.533.722.92l1.875 5.538c1.553-.321 2.823-1.711 3.003-3.287m-21.203-4.218c1.363 12.38-5.054 24.684-14.344 32.98-2.799 2.499-5.936 4.8-7.728 8.097a403.49 403.49 0 0170.747-2.29c2.383.133 4.968.234 6.935-1.119 2.458-1.69 3.059-4.972 4.142-7.752 1.082-2.779 3.776-5.651 6.588-4.654 3.659 1.296 7.797-2.068 8.212-5.929.415-3.86-2.056-7.573-5.271-9.75-3.215-2.178-7.084-3.12-10.861-4.022l-27.785-6.636-24.607-5.877c-1.486-.355-3.15-.686-4.46.1-2.134 1.279-1.84 4.38-1.568 6.852M445.027 528.908a78.149 78.149 0 01-29.519-8.225c-3.473-1.763-4.237-7.219-1.382-9.87 1.752 5.942 8.344 8.88 14.335 10.454 5.99 1.575 12.643 2.848 16.566 7.641m11.605 35.725c1.923 1.514 2.062 4.344 1.871 6.784a54.79 54.79 0 01-2.695 13.182c5.392 2.155 10.456-4.609 10.405-10.415-.052-5.805-2.752-11.463-2.073-17.229.255-2.169 1.2-4.509 3.215-5.351 3.119-1.301 6.526 2.056 6.78 5.426.256 3.37-1.465 6.524-2.801 9.628-1.191 2.766-1.435 7.021 1.484 7.762 6.754-7.566 8.706-19.079 4.824-28.448-1.298-3.131-3.19-6.044-3.962-9.346-.578-2.476-.498-5.069-1.079-7.544-2.284-9.719-13.322-14.2-22.966-16.784a376.145 376.145 0 00-37.823-8.078c-2.747-.441-6.264-.481-7.498 2.012-2.026 4.092-4.1 8.389-4.005 12.955.095 4.566 3.133 9.42 7.672 9.914a90.946 90.946 0 0129.764 8.559c5.845 2.835 12.517 6.373 18.442 3.709 4.335-1.948 8.344-7.075 12.652-5.065a116.173 116.173 0 01-12.999 17.321c-2.188 2.41-5.386 4.932-8.361 3.611a159.702 159.702 0 00-38.734-11.604c6.282 7.828 16.009 12.785 26.034 13.267 2.927.141 5.269 2.731 6.086 5.543.817 2.814.443 5.817.062 8.722l-2.786 21.229c3.197 2.541 8.351.794 10.516-2.669 2.165-3.462 1.992-7.906 1.062-11.882-.846-3.618-2.263-7.323-1.409-10.938.854-3.615 5.405-6.569 8.322-4.271M507.662 626.694l37.65 33.813-45.362 12.708a97.746 97.746 0 0138.175-15.405c-10.849-.852-21.572 2.597-31.604 6.817a200.903 200.903 0 00-47.579 28.309c-1.632 1.307-3.355 2.828-3.676 4.894-.321 2.066 1.769 4.455 3.663 3.569 36.892-17.254 77.023-27.554 117.665-30.197l-53.136-49.85c-2.499-2.344-5.255-4.81-8.662-5.167-3.406-.356-7.279 2.669-6.356 5.968-3.145-.89-3.623-5.551-1.656-8.163 1.966-2.611 5.279-3.729 8.311-4.953 3.031-1.226 6.238-2.989 7.293-6.083a317.926 317.926 0 01-67.48 3.704c-1.314 1.316-.538 3.751 1.028 4.755 1.568 1.003 3.554.989 5.413.942l34.04-.866c4.862-.124 5.828 6.853 4.962 11.64-.864 4.786-.297 11.699 4.559 11.972a28.325 28.325 0 012.752-8.407M420.955 701.924c.152-.619.388-1.311.973-1.564.266-.117.581-.118.849-.004 1.661 6.423 3.156 13.841-.738 19.214a29.919 29.919 0 01-1.084-17.646m-16.988-31.852c5.187 2.36 12.113-1.918 12.326-7.612 3.344 1.747 3.428 6.419 3.071 10.176a947.494 947.494 0 00-3.742 120.017c.053 1.63.209 3.47 1.473 4.5 1.061.866 2.563.865 3.932.821l20.391-.654a858.971 858.971 0 014.731-108.603c.593-5.527.828-12.102-3.55-15.525-3.213-2.511-7.685-2.273-11.714-2.897-4.03-.624-8.604-3.257-8.371-7.328.242-4.244-6.597-4.82-9.751-1.972-3.156 2.85-4.915 7.341-8.796 9.077M128.001 236.422L80 269.892c-.381.265-.794.542-1.259.542-1.839.004-1.035-2.981.34-4.203a234.165 234.165 0 0142.779-30.184c2.055-1.129 5.332-1.826 6.141.375m-76.268 75.525c5.926-5.575 9.585-13.494 9.989-21.62l3.939 8.528 3.143-8.65 65.235-44.799c4.916-3.376 9.968-6.891 13.151-11.934 3.183-5.043 4.025-12.063.393-16.792a38.988 38.988 0 0011.896-15.113c-.743-3.046-5.337-3.343-7.755-1.346-2.418 1.996-3.413 5.183-4.969 7.906-4.964 8.692-15.345 12.347-24.631 16.087C71.009 244.8 29.801 288.647 12.423 340.94 4.983 351.136.606 363.54 0 376.148a300.992 300.992 0 0151.733-64.201M652.733 197.652c1.584-1.123 3.793-1.291 5.527-.419a17.655 17.655 0 01-7.298 5.933c-1.159-1.512-.39-4.07 1.411-4.693l.36-.821zm72.221 73.787l13.418 10.533c-.844 2.759-5.005 1.605-7.353-.073a7561.683 7561.683 0 01-42.021-30.268c.776-1.827 3.447-1.486 5.304-.784a118.56 118.56 0 0120.869 10.337l4.788.635c-1.493 3.6 1.929 7.213 4.995 9.62m-45.356-55.747c-3.75-3.485-7.641-7.318-8.768-12.312-1.502-6.654-8.043-12.017-14.846-11.498-6.802.52-12.615 7.467-11.306 14.162 1.311 6.695 10.09 10.872 15.822 7.172 5.824-3.758 13.879 1.699 15.848 8.344 1.97 6.646.099 13.727-.606 20.622s.328 14.929 6.06 18.824a824.68 824.68 0 01106.375 85.991 411.837 411.837 0 0029.22 36.575c-9.423-35.53-31.35-66.594-56.658-93.251-25.309-26.657-54.217-49.604-81.141-74.629"}),l("path",{key:"9d9c5c9f483375bdcb72a958ea3c40be54da064c",d:"M357.82 509.813c-.843-1.466.535-3.465 2.212-3.682 1.677-.216 3.285.867 4.3 2.219-1.385 1.401-3.594 1.914-5.454 1.271l-1.058.192zm-64.466 6.021a52.141 52.141 0 01-11.141 10.528c3.468.293 6.838-1.05 10.102-2.26 20.475-7.585 42.571-10.761 64.354-9.248 3.145.219 6.457.597 8.989 2.475-5.062 1.989-10.686 1.671-16.124 1.584a170.584 170.584 0 00-61.067 10.29c-3.393 1.238-8.352 1.924-9.565-1.478-.665-1.867.41-3.901 1.691-5.414 3.165-3.739 7.874-6.129 12.761-6.477m-11.217 40.642c6.328 11.533 21.714 17.117 33.966 12.328l-.436 3.804 4.033-1.408a178.371 178.371 0 01-2.742 62.141c5.151-.578 9.023-5.368 10.218-10.413 1.196-5.044.292-10.32-.616-15.424l9.455 7.498a17.285 17.285 0 00-4.83-11.08l6.067 3.288-9.235-31.955c-.343-1.185-.683-2.475-.234-3.626.499-1.281 1.822-2.01 3.046-2.635l41.732-21.294c2.071-1.057 4.251-2.212 5.44-4.211 1.031-1.735 1.155-3.842 1.253-5.857l1.568-32.332c.077-1.578.133-3.25-.627-4.636-1.531-2.788-5.377-3.018-8.556-2.892-16.423.65-32.844 1.339-49.264 2.065-9.496.421-19.213.901-28 4.527-11.917 4.916-21.227 15.735-24.313 28.252-3.522-9.256-.157-20.666 7.824-26.53-10.773.002-19.878 9.209-22.965 19.531-3.087 10.321-1.378 21.439 1.139 31.915l5.934-16.231a20.79 20.79 0 013.241 11.113c11.105-12.605 27.021-20.187 43.36-24.084 16.34-3.898 33.271-4.408 50.062-4.901 6.254-.183 14.979 2.218 13.986 8.395-.347 2.159-1.956 3.871-3.543 5.375-22.639 21.45-57.381 29.151-86.963 19.277M481.832 494.106a9.93 9.93 0 01-5.734-4.411c3.21-1.326 7.36 1.014 7.888 4.447l-2.154-.036zm-15.001-45.396l5.915-.943c-.675 2.902-3.456 5.175-6.435 5.257-2.979.082-5.881-2.034-6.714-4.895 2.005-.755 4.378-.444 6.12.802m-8.518 15.93a93.403 93.403 0 01-18.023 2.922c-1.56.098-3.673-.311-3.741-1.872-.065-1.483 1.825-2.131 3.297-2.319l13.521-1.727c2.341-.299 5.877.828 4.946 2.996m40.614 33.251a116.498 116.498 0 00-21.719-16.356c-4.993-2.914-8.406-8.376-8.835-14.14-.073-.983-.028-2.075.64-2.799.669-.723 2.151-.655 2.408.296 1.896 7 6.619 13.191 12.869 16.871 3.429 2.019 7.297 3.317 10.437 5.763 3.141 2.445 5.487 6.598 4.2 10.365m2.062-16.804c-9.297-7.43-16.259-17.739-19.677-29.139-.925-3.086-1.794-6.538-4.47-8.333-2.511-1.685-5.82-1.351-8.81-.89a223.892 223.892 0 00-46.53 12.422c-1.979.764-4.057 1.642-5.28 3.375-1.097 1.556-1.322 3.546-1.474 5.444-.75 9.337-.589 18.747.479 28.052a54.12 54.12 0 009.133-9.758 28.331 28.331 0 01-1.799 11.106l7.071-4.731c3.234 3.421 7.116 6.68 11.792 7.222 4.676.542 10.021-2.843 9.905-7.549-.048-1.942 1.986-3.415 3.928-3.488 1.941-.073 3.764.851 5.486 1.751 7.468 3.905 16.188 10.339 14.229 18.536-.534 2.239.851 4.443 2.17 6.329l11.495 16.449c.974 1.393 2.012 2.843 3.539 3.589 1.859.91 4.054.599 6.096.267 5.464-.887 11.383-2.015 15.049-6.162 5.659-6.4 3.242-16.583 6.707-24.392a16.66 16.66 0 005.711 9.99l-1.52-27.375c-3.032 1.57-5.206 4.692-5.627 8.08-8.094-1.994-14.133-10.297-13.538-18.613-2.827 1.38-4.559 4.711-4.065 7.818M89.72 390.532c-14.454 13.79-35.267 20.622-55.081 18.08l-.005 14.334a201.521 201.521 0 0136.696 1.093l-.022 88.686c-.001 3.641-.024 7.397-1.445 10.75-2.775 6.544-10.378 9.954-17.486 9.954-4.647 0-9.536-1.137-13.79.735-4.254 1.871-6.316 8.825-2.174 10.93 1.08.549 2.33.627 3.542.692a1141.071 1141.071 0 00105.658.836c4.35-.167 9.72-1.095 11.018-5.252 1.506-4.824-4.241-8.979-9.285-9.298-5.044-.319-10.272 1.307-15.076-.264-9.441-3.088-11.063-15.541-10.987-25.475l.945-122.66c-10.971-3.955-24.07-1.191-32.508 6.859M744.41 398.223c9.603 7.645 10.696 21.702 9.833 33.946-.578 8.197-1.72 16.515-5.251 23.936-8.967-3.213-18.061-6.491-25.814-12.024-7.752-5.533-14.125-13.711-15.298-23.163-1.127-9.092 3.1-18.762 10.804-23.72 7.705-4.958 18.558-4.682 25.726 1.025m13.75 111.474c4.693 9.289 3.29 21.25-3.211 29.377-6.502 8.128-17.681 12.122-27.916 10.232-10.234-1.891-19.159-9.469-22.954-19.161-1.33-3.397-2.066-7.004-2.477-10.629-1.526-13.478 1.519-27.432 8.52-39.049a205.01 205.01 0 0124.715 9.951c9.262 4.451 18.688 10.107 23.323 19.279m-31.81 50.56c17.94.299 36.556-2.531 51.549-12.386 14.993-9.855 25.515-27.898 22.571-45.597-3.446-20.716-23.498-34.836-43.66-40.717 16.646-4.053 33.72-14.804 36.838-31.649 2.613-14.11-5.826-28.622-17.827-36.488-12.001-7.867-26.864-10.108-41.214-10.125-14.526-.017-29.414 2.17-42.096 9.252-12.683 7.083-22.868 19.682-24.325 34.135-2.164 21.459 15.356 40.904 35.535 48.518-16.88 3.028-34.76 11.399-40.706 27.486-5.808 15.715 2.357 34.101 15.763 44.149 13.406 10.049 30.82 13.142 47.572 13.422","fill-rule":"nonzero"}),l("path",{key:"d3eca3ac7bf734cb80bf09869776effc18209c56",d:"M531.316 414.264l-2.376 3.517c-2.499-1.624-2.024-6.137.758-7.206.514.909 1.03 1.817 1.545 2.726l.073.963zm3.663-3.614c1.799 1.961 1.618 5.398-.377 7.159-2.45-1.212-2.806-5.191-.609-6.819m-29.011 164.037c-1.545 2.19-5.766.942-5.871-1.737a11.16 11.16 0 017.681-1.438c1.075.815.378 2.918-.972 2.93m-75.977-291.024c-.891-1.553-1.812-3.233-1.66-5.017.153-1.784 1.918-3.526 3.611-2.942a58.588 58.588 0 003.619 9.531c-1.645.393-3.492-.26-4.523-1.599m84.758 273.731c-1.391-3.429-.351-7.694 2.463-10.099 2.813-2.405 7.187-2.769 10.36-.863-4.961 1.526-9.076 5.568-10.692 10.499-.485.621-1.432.827-2.131.463M410.161 262.341c.212-1.76 1.185-4.063 2.914-3.671 2.127 4.416.854 9.608.437 14.491-.466 5.461.204 10.947.873 16.387.404 3.277 1.11 7.03 3.986 8.653 3.566 2.014 8.173-.54 12.097.634 1.251.793-.511 2.517-1.963 2.813a66.737 66.737 0 01-10.494 1.284c-1.53.065-3.157.053-4.462-.75-1.961-1.207-2.543-3.749-2.885-6.026a126.086 126.086 0 01-.503-33.815m25.464 121.929a30.421 30.421 0 0110.043-13.596c1.597.292 1.288 2.684.538 4.125a132.36 132.36 0 01-15.005 22.736c-3.246-4.103-3.592-9.717-3.8-14.944l-1.207-30.279c-.111-2.778-.207-5.65.807-8.239 2.271-5.8 9.059-8.157 15.057-9.832.147 2.557-2.005 4.662-4.224 5.94-2.221 1.278-4.756 2.182-6.433 4.119-1.677 1.937-1.919 5.451.319 6.698.734-1.476 2.533-2.336 4.143-1.979-.137 1.985-1.392 3.856-3.176 4.736 2.039 2.318 1.29 6.474-1.431 7.934l3.172 2.327c-5.096 6.567-1.532 16.159-3.266 24.288 2.091.848 3.682-1.916 4.463-4.034m-77.305-30.054c1.25-4.722-.36-9.657-1.458-14.416-1.098-4.759-1.528-10.26 1.557-14.047l18.996 10.658c3.135 1.76 6.472 3.734 7.922 7.023.86 1.952.944 4.145 1.001 6.277a504.123 504.123 0 01-.942 47.037 159.132 159.132 0 01-19.318-20.383c-5.047-6.367-9.837-14.295-7.758-22.149m1.384-60.078c-.953-3.397-1.916-6.895-1.538-10.403.378-3.508 2.419-7.074 5.767-8.187a107.458 107.458 0 0036.855-21.138c.895-.786 2.411-.266 3.068.729.657.994.695 2.259.713 3.45l.497 33.929c.049 3.405-1.258 8.109-4.628 7.631a180.91 180.91 0 00-36.729-1.439c-2.198.137-3.411-2.452-4.005-4.572m83.646 130.153c3.431-3.917 8.655-6.196 13.861-6.048a44.707 44.707 0 01-17.303 11.363c3.153-14.162 11.008-27.237 22.032-36.671.743 5.474 9.55 7.326 12.434 2.614 1.347-4.467-2.554-9.675-7.22-9.638 3.927-2.617 6.484-7.178 6.67-11.893a227.308 227.308 0 00-36.117 40.641c-2.951 4.252-5.883 9.171-4.986 14.269.897 5.098 7.867 8.905 11.443 5.162 11.552-12.097 38.118-4.033 43.923-19.721l-.591 12.568a192.444 192.444 0 0145.099-30.758c2.464-.528 1.434 3.847-.635 5.284l-30.731 21.344 20.353.217c7.083.075 15.172-.291 19.687-5.748 5.251-6.345 2.728-15.799-.051-23.553 11.219 10.533 17.86 25.785 17.926 41.173a25.323 25.323 0 005.312-11.66 247.1 247.1 0 015.297 82.864c-.279 2.636-.784 5.589-2.956 7.108-2.17 1.52-6.162-.294-5.333-2.811a44.534 44.534 0 00-2.049 24.104c8.926 2.596 13.024 13.932 10.339 22.831-2.686 8.901-10.291 15.461-18.331 20.129 5.693-9.591 1.865-22.897-6.779-29.946-8.643-7.049-20.8-8.562-31.748-6.434-11.761 2.287-23.639 9.678-26.522 21.307-3.368 13.58-13.474 25.313-26.406 30.655a336.758 336.758 0 0057.994-3.075c6.382-.895 14.582-4.345 13.514-10.7-.824-4.912-6.163-11.776-1.334-12.994a63.629 63.629 0 019.596 28.062 86.342 86.342 0 0127.179-14.867 318.599 318.599 0 0031.903 40.253c2.498 2.677 5.298 5.451 8.905 6.078 3.608.626 7.955-2.131 7.474-5.761-7.478-56.311 43.415-106.921 40.102-163.631-1.446-24.758-13.147-47.54-22.189-70.633a345.023 345.023 0 01-22.746-99.885 725.622 725.622 0 01-66.949 78.436c-.793 3.837 3.493 7.187 7.405 6.978 3.913-.209 7.263-2.756 10.273-5.263a248.037 248.037 0 0042.015-44.916c.495 32.502 8.691 64.862 23.727 93.681 6.333 12.137 13.984 24.005 16.226 37.51 3.701 22.289-7.879 43.858-17.261 64.414a371.81 371.81 0 00-27.164 85.754c-15.928-11.411-24.874-31.865-22.439-51.307 1.415-11.303-13.448-22.845-6.655-31.989 6.601-8.887 6.933-20.793 7.001-31.863.165-27.227-.208-56.326-15.466-78.875-10.11-14.943-25.633-25.191-40.745-35.044l-40.627-26.488c8.824-1.004 14.771-9.164 19.973-16.362 22.068-30.536 50.715-56.291 83.418-74.998-59.694.891-114.128-32.395-172.419-45.294-1.18 4.288.099 9.163 3.232 12.319 9.064-1.379 18.339-2.756 27.347-1.046 9.009 1.709 17.86 7.123 21.158 15.678 2.93 7.6 11.928 10.546 19.822 12.555l65.063 16.563a1508.8 1508.8 0 00-51.435 42.191c-9.784 8.393-20.005 17.804-22.716 30.407-7.515-4.419-12.098-13.378-11.284-22.058.811-8.66-5.897-15.911-10.24-23.446-4.344-7.536-5.015-19.581 3.121-22.657l-.595 20.723c4.986 1.179 9.645-4.059 9.788-9.181.302-10.852-12.282-16.965-22.9-19.228-10.618-2.262-23.355-4.955-27.194-15.11-1.557-4.122-7.732-2.519-11.482-.205l-43.402 26.786c-1.882 1.161-3.82 2.375-5.074 4.196-3.004 4.364-1.076 10.222.102 15.387 2.621 11.486.775 23.931-5.068 34.161-6.677 11.692-17.906 19.95-28.808 27.851l-56.771 41.144c-16.358 11.855-22.183 33.165-26.928 52.803-1.131 4.679-2.265 9.575-1.133 14.255 1.152 4.765 4.611 9.259 3.587 14.053a332.687 332.687 0 00-7.07 56.251c-.366 9.212.229 19.748 7.35 25.602 4.427 3.64 1.017 10.721-2.566 15.194l-33.272 41.541-4.079-29.644c-1.96-14.247-3.95-28.615-8.819-42.147-6.21-17.256-16.96-32.74-21.875-50.409-8.884-31.937 2.41-65.628 13.578-96.839 8.517-23.803 17.033-47.605 25.551-71.407a312.293 312.293 0 0048.652 46.569c4.577 3.518 9.984 7.093 15.661 6.049 5.677-1.044 9.289-9.63 4.395-12.691-31.825-19.903-56.159-49.515-79.896-78.591a994.815 994.815 0 01-33.735 131.798c-4.545 13.759-9.436 27.643-10.204 42.113-1.431 26.975 11.448 52.307 21.282 77.467a365.293 365.293 0 0123.707 101.822 465.121 465.121 0 0146.432-56.153c7.886-8.143 4.89-21.528.788-32.096-4.102-10.567-8.707-22.917-2.844-32.618 1.735-2.871 4.309-5.279 5.387-8.455 1.077-3.176-.328-7.606-3.665-7.942-4.374-.439-4.641-6.977-2.441-10.784 2.199-3.807 5.682-7.744 4.451-11.965-8.83-30.255 3.177-65.442 28.66-83.989 4.369 10.713 18.442 12.655 30.008 12.962-4.526-5.731-12.494-8.502-19.599-6.815.441-7.795 5.873-15.079 13.217-17.725l6.92 2.621c-.642-12.184 8.401-24.17 20.292-26.898a14.977 14.977 0 00-.588 10.583l14.139-6.849c3.747 8.849 10.505 16.39 18.891 21.082a154.147 154.147 0 00-10.936-24.188l.164 8.886c-3.333-2.701-5.542-6.748-6.009-11.013a35.531 35.531 0 00-11.338 6.591c1.132-9.859 8.088-18.827 17.356-22.375 7.927 28.868 24.383 55.337 46.765 75.218l-1.179-72.959c-.151-9.35-11.024-13.925-19.47-17.939-8.447-4.015-16.876-14.731-10.484-21.558 27.209 1.553 54.914 3.063 81.352-3.557 7.256-1.817 11.962 9.13 8.199 15.594-3.764 6.464-11.486 9.194-18.25 12.388-6.764 3.194-13.868 8.62-13.8 16.1l.666 73.542c19.822-21.754 40.693-45.828 42.971-75.171a67.504 67.504 0 0120.946 24.548c3.13-2.594 3.98-7.549 1.896-11.038 9.845 3.93 17.47 12.995 19.656 23.368l-11.111-2.951a35.132 35.132 0 01-9.16 14.169l1.164-7.893c-3.775 1.429-6.289 5.632-5.759 9.635 4.706 3.096 12.147-.298 12.893-5.883 4.377 2.136 9.87 1.782 13.937-.897a21.66 21.66 0 01-8.727 10.179c10.069-1.161 17.022-13.543 12.772-22.744l19.171 18c-9.745-1.199-19.957 2.189-27.053 8.975l11.117-3.877a143.798 143.798 0 00-22.279 18.388c-2.664-5.162-10.509-3.272-15.4-.137-4.891 3.133-11.338 6.831-15.926 3.268a40.065 40.065 0 001.022-10.941c-8.054 1.991-15.216 7.354-19.393 14.521"})))}};a.style="my-logo{}";export{a as my_logo}
@@ -1 +1 @@
1
- import{p as o,g as r,b as t}from"./p-DArlw1GZ.js";export{s as setNonce}from"./p-DArlw1GZ.js";(()=>{const s=import.meta.url,r={};return""!==s&&(r.resourcesUrl=new URL(".",s).href),o(r)})().then((async s=>(await r(),t([["p-1d38d70e",[[1,"my-logo",{fill:[1],stroke:[1],opacity:[2],size:[2]}]]]],s))));
1
+ import{p as o,b as t}from"./p-C-hXMJD_.js";export{s as setNonce}from"./p-C-hXMJD_.js";import{g as a}from"./p-DQuL1Twl.js";(()=>{const s=import.meta.url,t={};return""!==s&&(t.resourcesUrl=new URL(".",s).href),o(t)})().then((async o=>(await a(),t([["p-ba18b886",[[257,"my-logo",{fill:[1],stroke:[1],opacity:[2],size:[2]}]]]],o))));
@@ -846,7 +846,7 @@ export declare namespace JSXBase {
846
846
  interface DetailsHTMLAttributes<T> extends HTMLAttributes<T> {
847
847
  open?: boolean;
848
848
  name?: string;
849
- onToggle?: (event: Event) => void;
849
+ onToggle?: (event: ToggleEvent) => void;
850
850
  }
851
851
  interface DelHTMLAttributes<T> extends HTMLAttributes<T> {
852
852
  cite?: string;
@@ -1552,6 +1552,13 @@ export declare namespace JSXBase {
1552
1552
  z?: number | string;
1553
1553
  zoomAndPan?: string;
1554
1554
  }
1555
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent) */
1556
+ interface ToggleEvent extends Event {
1557
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent/newState) */
1558
+ readonly newState: string;
1559
+ /** [MDN Reference](https://developer.mozilla.org/docs/Web/API/ToggleEvent/oldState) */
1560
+ readonly oldState: string;
1561
+ }
1555
1562
  interface DOMAttributes<T> extends JSXAttributes<T> {
1556
1563
  slot?: string;
1557
1564
  part?: string;
@@ -1568,6 +1575,10 @@ export declare namespace JSXBase {
1568
1575
  onCompositionstartCapture?: (event: CompositionEvent) => void;
1569
1576
  onCompositionupdate?: (event: CompositionEvent) => void;
1570
1577
  onCompositionupdateCapture?: (event: CompositionEvent) => void;
1578
+ onBeforeToggle?: (event: ToggleEvent) => void;
1579
+ onBeforeToggleCapture?: (event: ToggleEvent) => void;
1580
+ onToggle?: (event: ToggleEvent) => void;
1581
+ onToggleCapture?: (event: ToggleEvent) => void;
1571
1582
  onFocus?: (event: FocusEvent) => void;
1572
1583
  onFocusCapture?: (event: FocusEvent) => void;
1573
1584
  onFocusin?: (event: FocusEvent) => void;
@@ -1586,10 +1597,6 @@ export declare namespace JSXBase {
1586
1597
  onSubmitCapture?: (event: Event) => void;
1587
1598
  onInvalid?: (event: Event) => void;
1588
1599
  onInvalidCapture?: (event: Event) => void;
1589
- onBeforeToggle?: (event: Event) => void;
1590
- onBeforeToggleCapture?: (event: Event) => void;
1591
- onToggle?: (event: Event) => void;
1592
- onToggleCapture?: (event: Event) => void;
1593
1600
  onLoad?: (event: Event) => void;
1594
1601
  onLoadCapture?: (event: Event) => void;
1595
1602
  onError?: (event: Event) => void;
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "proto-logo-wc",
3
- "version": "0.1.38",
3
+ "version": "0.1.40",
4
4
  "description": "Stencil Component Starter",
5
5
  "main": "dist/index.cjs.js",
6
6
  "module": "dist/index.js",
@@ -25,11 +25,11 @@
25
25
  "format": "prettier --write src"
26
26
  },
27
27
  "dependencies": {
28
- "@stencil/core": "4.35.1"
28
+ "@stencil/core": "4.36.1"
29
29
  },
30
30
  "devDependencies": {
31
- "cspell": "9.1.2",
32
- "eslint": "9.30.1",
31
+ "cspell": "9.1.5",
32
+ "eslint": "9.31.0",
33
33
  "prettier": "3.6.2",
34
34
  "typescript": "5.8.3"
35
35
  },
@@ -1,2 +0,0 @@
1
- const t=()=>{};var e=Object.defineProperty,n=t=>{if(t.__stencil__getHostRef)return t.__stencil__getHostRef()},o=(t,e)=>{t.__stencil__getHostRef=()=>e,e.t=t},l=(t,e)=>(0,console.error)(t,e),s=new Map,i=new Map,r="slot-fb{display:contents}slot-fb[hidden]{display:none}",c="undefined"!=typeof window?window:{},u={o:0,l:"",jmp:t=>t(),raf:t=>requestAnimationFrame(t),ael:(t,e,n,o)=>t.addEventListener(e,n,o),rel:(t,e,n,o)=>t.removeEventListener(e,n,o),ce:(t,e)=>new CustomEvent(t,e)},a=t=>Promise.resolve(t),f=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(t){}return!1})(),d=!1,h=[],p=[],m=(t,e)=>n=>{t.push(n),d||(d=!0,e&&4&u.o?y(w):u.raf(w))},v=t=>{for(let e=0;e<t.length;e++)try{t[e](performance.now())}catch(t){l(t)}t.length=0},w=()=>{v(h),v(p),(d=h.length>0)&&u.raf(w)},y=t=>a().then(t),b=m(p,!0),$=t=>"object"==(t=typeof t)||"function"===t;function g(t){var e,n,o;return null!=(o=null==(n=null==(e=t.head)?void 0:e.querySelector('meta[name="csp-nonce"]'))?void 0:n.getAttribute("content"))?o:void 0}((t,n)=>{for(var o in n)e(t,o,{get:n[o],enumerable:!0})})({},{err:()=>j,map:()=>O,ok:()=>S,unwrap:()=>k,unwrapErr:()=>E});var S=t=>({isOk:!0,isErr:!1,value:t}),j=t=>({isOk:!1,isErr:!0,value:t});function O(t,e){if(t.isOk){const n=e(t.value);return n instanceof Promise?n.then((t=>S(t))):S(n)}if(t.isErr)return j(t.value);throw"should never get here"}var k=t=>{if(t.isOk)return t.value;throw t.value},E=t=>{if(t.isErr)return t.value;throw t.value};function C(){const t=this.attachShadow({mode:"open"});if(f){const e=new CSSStyleSheet;e.replaceSync(""),t.adoptedStyleSheets.push(e)}}var M=(t,e,...n)=>{let o=null,l=null,s=!1,i=!1;const r=[],c=e=>{for(let n=0;n<e.length;n++)o=e[n],Array.isArray(o)?c(o):null!=o&&"boolean"!=typeof o&&((s="function"!=typeof t&&!$(o))&&(o+=""),s&&i?r[r.length-1].i+=o:r.push(s?x(null,o):o),i=s)};c(n),e&&e.key&&(l=e.key);const u=x(t,null);return u.u=e,r.length>0&&(u.h=r),u.p=l,u},x=(t,e)=>({o:0,m:t,i:e,v:null,h:null,u:null,p:null}),P={},N=t=>{const e=(t=>t.replace(/[.*+?^${}()|[\]\\]/g,"\\$&"))(t);return RegExp(`(^|[^@]|@(?!supports\\s+selector\\s*\\([^{]*?${e}))(${e}\\b)`,"g")};N("::slotted"),N(":host"),N(":host-context");var D,R=(t,e)=>null==t||$(t)?t:2&e?"string"==typeof t?parseFloat(t):"number"==typeof t?t:NaN:1&e?t+"":t,U=new WeakMap,W=t=>"sc-"+t.$,A=(t,e,n,o,l,s)=>{if(n===o)return;let i=((t,e)=>e in t)(t,e);if(e.toLowerCase(),"key"===e);else{const r=$(o);if((i||r&&null!==o)&&!l)try{if(t.tagName.includes("-"))t[e]!==o&&(t[e]=o);else{const l=null==o?"":o;"list"===e?i=!1:null!=n&&t[e]==l||("function"==typeof t.__lookupSetter__(e)?t[e]=l:t.setAttribute(e,l))}}catch(t){}null==o||!1===o?!1===o&&""!==t.getAttribute(e)||t.removeAttribute(e):(!i||4&s||l)&&!r&&1===t.nodeType&&t.setAttribute(e,o=!0===o?"":o)}},L=(t,e,n)=>{const o=11===e.v.nodeType&&e.v.host?e.v.host:e.v,l=t&&t.u||{},s=e.u||{};for(const t of T(Object.keys(l)))t in s||A(o,t,l[t],void 0,n,e.o);for(const t of T(Object.keys(s)))A(o,t,l[t],s[t],n,e.o)};function T(t){return t.includes("ref")?[...t.filter((t=>"ref"!==t)),"ref"]:t}var F=!1,H=(t,e,n)=>{const o=e.h[n];let l,s,i=0;if(F||(F="svg"===o.m),!c.document)throw Error("You are trying to render a Stencil component in an environment that doesn't support the DOM. Make sure to populate the [`window`](https://developer.mozilla.org/en-US/docs/Web/API/Window/window) object before rendering a component.");if(l=o.v=c.document.createElementNS(F?"http://www.w3.org/2000/svg":"http://www.w3.org/1999/xhtml",o.m),F&&"foreignObject"===o.m&&(F=!1),L(null,o,F),o.h)for(i=0;i<o.h.length;++i)s=H(t,o,i),s&&l.appendChild(s);return"svg"===o.m?F=!1:"foreignObject"===l.tagName&&(F=!0),l["s-hn"]=D,l},z=(t,e,n,o,l,s)=>{let i,r=t;for(r.shadowRoot&&r.tagName===D&&(r=r.shadowRoot);l<=s;++l)o[l]&&(i=H(null,n,l),i&&(o[l].v=i,V(r,i,e)))},q=(t,e,n)=>{for(let o=e;o<=n;++o){const e=t[o];if(e){const t=e.v;t&&t.remove()}}},G=(t,e,n=!1)=>t.m===e.m&&(n?(n&&!t.p&&e.p&&(t.p=e.p),!0):t.p===e.p),I=(t,e,n=!1)=>{const o=e.v=t.v,l=t.h,s=e.h,i=e.m;L(t,e,F="svg"===i||"foreignObject"!==i&&F),null!==l&&null!==s?((t,e,n,o,l=!1)=>{let s,i,r=0,c=0,u=0,a=0,f=e.length-1,d=e[0],h=e[f],p=o.length-1,m=o[0],v=o[p];for(;r<=f&&c<=p;)if(null==d)d=e[++r];else if(null==h)h=e[--f];else if(null==m)m=o[++c];else if(null==v)v=o[--p];else if(G(d,m,l))I(d,m,l),d=e[++r],m=o[++c];else if(G(h,v,l))I(h,v,l),h=e[--f],v=o[--p];else if(G(d,v,l))I(d,v,l),V(t,d.v,h.v.nextSibling),d=e[++r],v=o[--p];else if(G(h,m,l))I(h,m,l),V(t,h.v,d.v),h=e[--f],m=o[++c];else{for(u=-1,a=r;a<=f;++a)if(e[a]&&null!==e[a].p&&e[a].p===m.p){u=a;break}u>=0?(i=e[u],i.m!==m.m?s=H(e&&e[c],n,u):(I(i,m,l),e[u]=void 0,s=i.v),m=o[++c]):(s=H(e&&e[c],n,c),m=o[++c]),s&&V(d.v.parentNode,s,d.v)}r>f?z(t,null==o[p+1]?null:o[p+1].v,n,o,c,p):c>p&&q(e,r,f)})(o,l,e,s,n):null!==s?z(o,null,e,s,0,s.length-1):!n&&null!==l&&q(l,0,l.length-1),F&&"svg"===i&&(F=!1)},V=(t,e,n)=>null==t?void 0:t.insertBefore(e,n),Y=(t,e)=>{if(e&&!t.S&&e["s-p"]){const n=e["s-p"].push(new Promise((o=>t.S=()=>{e["s-p"].splice(n-1,1),o()})))}},_=(t,e)=>{if(t.o|=16,!(4&t.o))return Y(t,t.j),b((()=>B(t,e)));t.o|=512},B=(t,e)=>{const n=t.$hostElement$,o=t.t;if(!o)throw Error(`Can't render component <${n.tagName.toLowerCase()} /> with invalid Stencil runtime! Make sure this imported component is compiled with a \`externalRuntime: true\` flag. For more information, please refer to https://stenciljs.com/docs/custom-elements#externalruntime`);let l;return l=et(o,e?"componentWillLoad":"componentWillUpdate",void 0,n),l=J(l,(()=>et(o,"componentWillRender",void 0,n))),J(l,(()=>Q(t,o,e)))},J=(t,e)=>K(t)?t.then(e).catch((t=>{console.error(t),e()})):e(),K=t=>t instanceof Promise||t&&t.then&&"function"==typeof t.then,Q=async(t,e,n)=>{var o;const l=t.$hostElement$,s=l["s-rc"];n&&(t=>{const e=t.O,n=t.$hostElement$,o=e.o,l=((t,e)=>{var n;const o=W(e),l=i.get(o);if(!c.document)return o;if(t=11===t.nodeType?t:c.document,l)if("string"==typeof l){let s,i=U.get(t=t.head||t);if(i||U.set(t,i=new Set),!i.has(o)){{s=c.document.createElement("style"),s.innerHTML=l;const o=null!=(n=u.k)?n:g(c.document);if(null!=o&&s.setAttribute("nonce",o),!(1&e.o))if("HEAD"===t.nodeName){const e=t.querySelectorAll("link[rel=preconnect]"),n=e.length>0?e[e.length-1].nextSibling:t.querySelector("style");t.insertBefore(s,(null==n?void 0:n.parentNode)===t?n:null)}else if("host"in t)if(f){const e=new CSSStyleSheet;e.replaceSync(l),t.adoptedStyleSheets=[e,...t.adoptedStyleSheets]}else{const e=t.querySelector("style");e?e.innerHTML=l+e.innerHTML:t.prepend(s)}else t.append(s);1&e.o&&t.insertBefore(s,null)}4&e.o&&(s.innerHTML+=r),i&&i.add(o)}}else t.adoptedStyleSheets.includes(l)||(t.adoptedStyleSheets=[...t.adoptedStyleSheets,l]);return o})(n.shadowRoot?n.shadowRoot:n.getRootNode(),e);10&o&&(n["s-sc"]=l,n.classList.add(l+"-h"))})(t);X(t,e,l,n),s&&(s.map((t=>t())),l["s-rc"]=void 0);{const e=null!=(o=l["s-p"])?o:[],n=()=>Z(t);0===e.length?n():(Promise.all(e).then(n),t.o|=4,e.length=0)}},X=(t,e,n,o)=>{try{e=e.render(),t.o&=-17,t.o|=2,((t,e,n=!1)=>{const o=t.$hostElement$,l=t.C||x(null,null),s=(t=>t&&t.m===P)(e)?e:M(null,null,e);if(D=o.tagName,n&&s.u)for(const t of Object.keys(s.u))o.hasAttribute(t)&&!["key","ref","style","class"].includes(t)&&(s.u[t]=o[t]);s.m=null,s.o|=4,t.C=s,s.v=l.v=o.shadowRoot||o,I(l,s,n)})(t,e,o)}catch(e){l(e,t.$hostElement$)}return null},Z=t=>{const e=t.$hostElement$,n=t.t,o=t.j;et(n,"componentDidRender",void 0,e),64&t.o?et(n,"componentDidUpdate",void 0,e):(t.o|=64,nt(e),et(n,"componentDidLoad",void 0,e),t.M(e),o||tt()),t.S&&(t.S(),t.S=void 0),512&t.o&&y((()=>_(t,!1))),t.o&=-517},tt=()=>{y((()=>(t=>{const e=u.ce("appload",{detail:{namespace:"proto-logo-wc"}});return t.dispatchEvent(e),e})(c)))},et=(t,e,n,o)=>{if(t&&t[e])try{return t[e](n)}catch(t){l(t,o)}},nt=t=>t.classList.add("hydrated"),ot=(t,e,o,l)=>{const s=n(t);if(!s)throw Error(`Couldn't find host element for "${l.$}" as it is unknown to this Stencil runtime. This usually happens when integrating a 3rd party Stencil component with another Stencil component or application. Please reach out to the maintainers of the 3rd party Stencil component or report this on the Stencil Discord server (https://chat.stenciljs.com) or comment on this similar [GitHub issue](https://github.com/stenciljs/core/issues/5457).`);const i=s.P.get(e),r=s.o,c=s.t;if(o=R(o,l.N[e][0]),(!(8&r)||void 0===i)&&o!==i&&(!Number.isNaN(i)||!Number.isNaN(o))&&(s.P.set(e,o),c&&2==(18&r))){if(c.componentShouldUpdate&&!1===c.componentShouldUpdate(o,i,e))return;_(s,!1)}},lt=(t,e,o)=>{var l,s;const i=t.prototype;if(e.N){const r=Object.entries(null!=(l=e.N)?l:{});if(r.map((([t,[l]])=>{if(31&l||2&o&&32&l){const{get:s,set:r}=Object.getOwnPropertyDescriptor(i,t)||{};s&&(e.N[t][0]|=2048),r&&(e.N[t][0]|=4096),(1&o||!s)&&Object.defineProperty(i,t,{get(){{if(!(2048&e.N[t][0]))return((t,e)=>n(this).P.get(e))(0,t);const o=n(this),l=o?o.t:i;if(!l)return;return l[t]}},configurable:!0,enumerable:!0}),Object.defineProperty(i,t,{set(s){const i=n(this);if(r){const n=32&l?this[t]:i.$hostElement$[t];return void 0===n&&i.P.get(t)?s=i.P.get(t):!i.P.get(t)&&n&&i.P.set(t,n),r.call(this,R(s,l)),void ot(this,t,s=32&l?this[t]:i.$hostElement$[t],e)}{if(!(1&o&&4096&e.N[t][0]))return ot(this,t,s,e),void(1&o&&!i.t&&i.D.then((()=>{4096&e.N[t][0]&&i.t[t]!==i.P.get(t)&&(i.t[t]=s)})));const n=()=>{const n=i.t[t];!i.P.get(t)&&n&&i.P.set(t,n),i.t[t]=R(s,l),ot(this,t,i.t[t],e)};i.t?n():i.D.then((()=>n()))}}})}})),1&o){const o=new Map;i.attributeChangedCallback=function(t,l,s){u.jmp((()=>{var r;const c=o.get(t);if(this.hasOwnProperty(c))s=this[c],delete this[c];else{if(i.hasOwnProperty(c)&&"number"==typeof this[c]&&this[c]==s)return;if(null==c){const o=n(this),i=null==o?void 0:o.o;if(i&&!(8&i)&&128&i&&s!==l){const n=o.t,i=null==(r=e.R)?void 0:r[t];null==i||i.forEach((e=>{null!=n[e]&&n[e].call(n,s,l,t)}))}return}}const u=Object.getOwnPropertyDescriptor(i,c);(s=(null!==s||"boolean"!=typeof this[c])&&s)===this[c]||u.get&&!u.set||(this[c]=s)}))},t.observedAttributes=Array.from(new Set([...Object.keys(null!=(s=e.R)?s:{}),...r.filter((([t,e])=>15&e[0])).map((([t,e])=>{const n=e[1]||t;return o.set(n,t),n}))]))}}return t},st=(t,e)=>{et(t,"connectedCallback",void 0,e)},it=(t,e)=>{et(t,"disconnectedCallback",void 0,e||t)},rt=(t,e={})=>{var o;if(!c.document)return void console.warn("Stencil: No document found. Skipping bootstrapping lazy components.");const a=[],d=e.exclude||[],h=c.customElements,p=c.document.head,m=p.querySelector("meta[charset]"),v=c.document.createElement("style"),w=[];let y,b=!0;Object.assign(u,e),u.l=new URL(e.resourcesUrl||"./",c.document.baseURI).href;let $=!1;if(t.map((t=>{t[1].map((e=>{const o={o:e[0],$:e[1],N:e[2],U:e[3]};4&o.o&&($=!0),o.N=e[2];const r=o.$,c=class extends HTMLElement{constructor(t){if(super(t),this.hasRegisteredEventListeners=!1,((t,e)=>{const n={o:0,$hostElement$:t,O:e,P:new Map};n.D=new Promise((t=>n.M=t)),t["s-p"]=[],t["s-rc"]=[];const o=n;t.__stencil__getHostRef=()=>o})(t=this,o),1&o.o)if(t.shadowRoot){if("open"!==t.shadowRoot.mode)throw Error(`Unable to re-use existing shadow root for ${o.$}! Mode is set to ${t.shadowRoot.mode} but Stencil only supports open shadow roots.`)}else C.call(t,o)}connectedCallback(){this.hasRegisteredEventListeners||(this.hasRegisteredEventListeners=!0),y&&(clearTimeout(y),y=null),b?w.push(this):u.jmp((()=>(t=>{if(!(1&u.o)){const e=n(t),o=e.O,r=()=>{};if(1&e.o)(null==e?void 0:e.t)?st(e.t,t):(null==e?void 0:e.D)&&e.D.then((()=>st(e.t,t)));else{e.o|=1;{let n=t;for(;n=n.parentNode||n.host;)if(n["s-p"]){Y(e,e.j=n);break}}o.N&&Object.entries(o.N).map((([e,[n]])=>{if(31&n&&t.hasOwnProperty(e)){const n=t[e];delete t[e],t[e]=n}})),(async(t,e,n)=>{let o;if(!(32&e.o)){if(e.o|=32,n.W){const i=((t,e)=>{const n=t.$.replace(/-/g,"_"),o=t.W;if(!o)return;const i=s.get(o);return i?i[n]:import(`./${o}.entry.js`).then((t=>(s.set(o,t),t[n])),(t=>{l(t,e.$hostElement$)}))
2
- /*!__STENCIL_STATIC_IMPORT_SWITCH__*/})(n,e);if(i&&"then"in i){const t=()=>{};o=await i,t()}else o=i;if(!o)throw Error(`Constructor for "${n.$}#${e.A}" was not found`);o.isProxied||(lt(o,n,2),o.isProxied=!0);const r=()=>{};e.o|=8;try{new o(e)}catch(e){l(e,t)}e.o&=-9,r(),st(e.t,t)}else o=t.constructor,customElements.whenDefined(t.localName).then((()=>e.o|=128));if(o&&o.style){let t;"string"==typeof o.style&&(t=o.style);const e=W(n);if(!i.has(e)){const o=()=>{};((t,e,n)=>{let o=i.get(t);f&&n?(o=o||new CSSStyleSheet,"string"==typeof o?o=e:o.replaceSync(e)):o=e,i.set(t,o)})(e,t,!!(1&n.o)),o()}}}const r=e.j,c=()=>_(e,!0);r&&r["s-rc"]?r["s-rc"].push(c):c()})(t,e,o)}r()}})(this)))}disconnectedCallback(){u.jmp((()=>(async t=>{if(!(1&u.o)){const e=n(t);(null==e?void 0:e.t)?it(e.t,t):(null==e?void 0:e.D)&&e.D.then((()=>it(e.t,t)))}U.has(t)&&U.delete(t),t.shadowRoot&&U.has(t.shadowRoot)&&U.delete(t.shadowRoot)})(this))),u.raf((()=>{var t;const e=n(this),o=w.findIndex((t=>t===this));o>-1&&w.splice(o,1),(null==(t=null==e?void 0:e.C)?void 0:t.v)instanceof Node&&!e.C.v.isConnected&&delete e.C.v}))}componentOnReady(){return n(this).D}};o.W=t[0],d.includes(r)||h.get(r)||(a.push(r),h.define(r,lt(c,o,1)))}))})),a.length>0&&($&&(v.textContent+=r),v.textContent+=a.sort()+"{visibility:hidden}.hydrated{visibility:inherit}",v.innerHTML.length)){v.setAttribute("data-styles","");const t=null!=(o=u.k)?o:g(c.document);null!=t&&v.setAttribute("nonce",t),p.insertBefore(v,m?m.nextSibling:p.firstChild)}b=!1,w.length?w.map((t=>t.connectedCallback())):u.jmp((()=>y=setTimeout(tt,30)))},ct=t=>u.k=t;export{rt as b,t as g,M as h,a as p,o as r,ct as s}