proto-logo-wc 0.0.293 → 0.0.294
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/dist/cjs/{index-35d55756.js → index-2e04595f.js} +164 -146
- package/dist/cjs/loader.cjs.js +2 -2
- package/dist/cjs/my-logo.cjs.entry.js +1 -1
- package/dist/cjs/proto-logo-wc.cjs.js +2 -2
- package/dist/collection/collection-manifest.json +1 -1
- package/dist/esm/{index-d3d03569.js → index-a7801013.js} +164 -146
- package/dist/esm/loader.js +2 -2
- package/dist/esm/my-logo.entry.js +1 -1
- package/dist/esm/polyfills/css-shim.js +1 -1
- package/dist/esm/proto-logo-wc.js +2 -2
- package/dist/proto-logo-wc/p-1009345b.js +2 -0
- package/dist/proto-logo-wc/{p-78315aa1.entry.js → p-cffd7261.entry.js} +1 -1
- package/dist/proto-logo-wc/proto-logo-wc.esm.js +1 -1
- package/dist/types/stencil-public-runtime.d.ts +15 -4
- package/package.json +2 -2
- package/dist/proto-logo-wc/p-8375f33f.js +0 -2
|
@@ -22,32 +22,18 @@ function _interopNamespace(e) {
|
|
|
22
22
|
|
|
23
23
|
const NAMESPACE = 'proto-logo-wc';
|
|
24
24
|
|
|
25
|
+
/**
|
|
26
|
+
* Virtual DOM patching algorithm based on Snabbdom by
|
|
27
|
+
* Simon Friis Vindum (@paldepind)
|
|
28
|
+
* Licensed under the MIT License
|
|
29
|
+
* https://github.com/snabbdom/snabbdom/blob/master/LICENSE
|
|
30
|
+
*
|
|
31
|
+
* Modified for Stencil's renderer and slot projection
|
|
32
|
+
*/
|
|
25
33
|
let scopeId;
|
|
26
34
|
let hostTagName;
|
|
27
35
|
let isSvgMode = false;
|
|
28
36
|
let queuePending = false;
|
|
29
|
-
const win = typeof window !== 'undefined' ? window : {};
|
|
30
|
-
const doc = win.document || { head: {} };
|
|
31
|
-
const plt = {
|
|
32
|
-
$flags$: 0,
|
|
33
|
-
$resourcesUrl$: '',
|
|
34
|
-
jmp: (h) => h(),
|
|
35
|
-
raf: (h) => requestAnimationFrame(h),
|
|
36
|
-
ael: (el, eventName, listener, opts) => el.addEventListener(eventName, listener, opts),
|
|
37
|
-
rel: (el, eventName, listener, opts) => el.removeEventListener(eventName, listener, opts),
|
|
38
|
-
ce: (eventName, opts) => new CustomEvent(eventName, opts),
|
|
39
|
-
};
|
|
40
|
-
const promiseResolve = (v) => Promise.resolve(v);
|
|
41
|
-
const supportsConstructableStylesheets = /*@__PURE__*/ (() => {
|
|
42
|
-
try {
|
|
43
|
-
new CSSStyleSheet();
|
|
44
|
-
return typeof new CSSStyleSheet().replaceSync === 'function';
|
|
45
|
-
}
|
|
46
|
-
catch (e) { }
|
|
47
|
-
return false;
|
|
48
|
-
})()
|
|
49
|
-
;
|
|
50
|
-
const HYDRATED_CSS = '{visibility:hidden}.hydrated{visibility:inherit}';
|
|
51
37
|
const createTime = (fnName, tagName = '') => {
|
|
52
38
|
{
|
|
53
39
|
return () => {
|
|
@@ -62,76 +48,7 @@ const uniqueTime = (key, measureText) => {
|
|
|
62
48
|
};
|
|
63
49
|
}
|
|
64
50
|
};
|
|
65
|
-
const
|
|
66
|
-
const registerStyle = (scopeId, cssText, allowCS) => {
|
|
67
|
-
let style = styles.get(scopeId);
|
|
68
|
-
if (supportsConstructableStylesheets && allowCS) {
|
|
69
|
-
style = (style || new CSSStyleSheet());
|
|
70
|
-
if (typeof style === 'string') {
|
|
71
|
-
style = cssText;
|
|
72
|
-
}
|
|
73
|
-
else {
|
|
74
|
-
style.replaceSync(cssText);
|
|
75
|
-
}
|
|
76
|
-
}
|
|
77
|
-
else {
|
|
78
|
-
style = cssText;
|
|
79
|
-
}
|
|
80
|
-
styles.set(scopeId, style);
|
|
81
|
-
};
|
|
82
|
-
const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
|
|
83
|
-
let scopeId = getScopeId(cmpMeta);
|
|
84
|
-
const style = styles.get(scopeId);
|
|
85
|
-
// if an element is NOT connected then getRootNode() will return the wrong root node
|
|
86
|
-
// so the fallback is to always use the document for the root node in those cases
|
|
87
|
-
styleContainerNode = styleContainerNode.nodeType === 11 /* NODE_TYPE.DocumentFragment */ ? styleContainerNode : doc;
|
|
88
|
-
if (style) {
|
|
89
|
-
if (typeof style === 'string') {
|
|
90
|
-
styleContainerNode = styleContainerNode.head || styleContainerNode;
|
|
91
|
-
let appliedStyles = rootAppliedStyles.get(styleContainerNode);
|
|
92
|
-
let styleElm;
|
|
93
|
-
if (!appliedStyles) {
|
|
94
|
-
rootAppliedStyles.set(styleContainerNode, (appliedStyles = new Set()));
|
|
95
|
-
}
|
|
96
|
-
if (!appliedStyles.has(scopeId)) {
|
|
97
|
-
{
|
|
98
|
-
{
|
|
99
|
-
styleElm = doc.createElement('style');
|
|
100
|
-
styleElm.innerHTML = style;
|
|
101
|
-
}
|
|
102
|
-
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector('link'));
|
|
103
|
-
}
|
|
104
|
-
if (appliedStyles) {
|
|
105
|
-
appliedStyles.add(scopeId);
|
|
106
|
-
}
|
|
107
|
-
}
|
|
108
|
-
}
|
|
109
|
-
else if (!styleContainerNode.adoptedStyleSheets.includes(style)) {
|
|
110
|
-
styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
|
|
111
|
-
}
|
|
112
|
-
}
|
|
113
|
-
return scopeId;
|
|
114
|
-
};
|
|
115
|
-
const attachStyles = (hostRef) => {
|
|
116
|
-
const cmpMeta = hostRef.$cmpMeta$;
|
|
117
|
-
const elm = hostRef.$hostElement$;
|
|
118
|
-
const flags = cmpMeta.$flags$;
|
|
119
|
-
const endAttachStyles = createTime('attachStyles', cmpMeta.$tagName$);
|
|
120
|
-
const scopeId = addStyle(elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(), cmpMeta);
|
|
121
|
-
if (flags & 10 /* CMP_FLAGS.needsScopedEncapsulation */) {
|
|
122
|
-
// only required when we're NOT using native shadow dom (slot)
|
|
123
|
-
// or this browser doesn't support native shadow dom
|
|
124
|
-
// and this host element was NOT created with SSR
|
|
125
|
-
// let's pick out the inner content for slot projection
|
|
126
|
-
// create a node to represent where the original
|
|
127
|
-
// content was first placed, which is useful later on
|
|
128
|
-
// DOM WRITE!!
|
|
129
|
-
elm['s-sc'] = scopeId;
|
|
130
|
-
elm.classList.add(scopeId + '-h');
|
|
131
|
-
}
|
|
132
|
-
endAttachStyles();
|
|
133
|
-
};
|
|
134
|
-
const getScopeId = (cmp, mode) => 'sc-' + (cmp.$tagName$);
|
|
51
|
+
const HYDRATED_CSS = '{visibility:hidden}.hydrated{visibility:inherit}';
|
|
135
52
|
/**
|
|
136
53
|
* Default style mode id
|
|
137
54
|
*/
|
|
@@ -212,6 +129,130 @@ const newVNode = (tag, text) => {
|
|
|
212
129
|
};
|
|
213
130
|
const Host = {};
|
|
214
131
|
const isHost = (node) => node && node.$tag$ === Host;
|
|
132
|
+
/**
|
|
133
|
+
* Parse a new property value for a given property type.
|
|
134
|
+
*
|
|
135
|
+
* While the prop value can reasonably be expected to be of `any` type as far as TypeScript's type checker is concerned,
|
|
136
|
+
* it is not safe to assume that the string returned by evaluating `typeof propValue` matches:
|
|
137
|
+
* 1. `any`, the type given to `propValue` in the function signature
|
|
138
|
+
* 2. the type stored from `propType`.
|
|
139
|
+
*
|
|
140
|
+
* This function provides the capability to parse/coerce a property's value to potentially any other JavaScript type.
|
|
141
|
+
*
|
|
142
|
+
* Property values represented in TSX preserve their type information. In the example below, the number 0 is passed to
|
|
143
|
+
* a component. This `propValue` will preserve its type information (`typeof propValue === 'number'`). Note that is
|
|
144
|
+
* based on the type of the value being passed in, not the type declared of the class member decorated with `@Prop`.
|
|
145
|
+
* ```tsx
|
|
146
|
+
* <my-cmp prop-val={0}></my-cmp>
|
|
147
|
+
* ```
|
|
148
|
+
*
|
|
149
|
+
* HTML prop values on the other hand, will always a string
|
|
150
|
+
*
|
|
151
|
+
* @param propValue the new value to coerce to some type
|
|
152
|
+
* @param propType the type of the prop, expressed as a binary number
|
|
153
|
+
* @returns the parsed/coerced value
|
|
154
|
+
*/
|
|
155
|
+
const parsePropertyValue = (propValue, propType) => {
|
|
156
|
+
// ensure this value is of the correct prop type
|
|
157
|
+
if (propValue != null && !isComplexType(propValue)) {
|
|
158
|
+
if (propType & 2 /* MEMBER_FLAGS.Number */) {
|
|
159
|
+
// force it to be a number
|
|
160
|
+
return parseFloat(propValue);
|
|
161
|
+
}
|
|
162
|
+
if (propType & 1 /* MEMBER_FLAGS.String */) {
|
|
163
|
+
// could have been passed as a number or boolean
|
|
164
|
+
// but we still want it as a string
|
|
165
|
+
return String(propValue);
|
|
166
|
+
}
|
|
167
|
+
// redundant return here for better minification
|
|
168
|
+
return propValue;
|
|
169
|
+
}
|
|
170
|
+
// not sure exactly what type we want
|
|
171
|
+
// so no need to change to a different type
|
|
172
|
+
return propValue;
|
|
173
|
+
};
|
|
174
|
+
/**
|
|
175
|
+
* Helper function to create & dispatch a custom Event on a provided target
|
|
176
|
+
* @param elm the target of the Event
|
|
177
|
+
* @param name the name to give the custom Event
|
|
178
|
+
* @param opts options for configuring a custom Event
|
|
179
|
+
* @returns the custom Event
|
|
180
|
+
*/
|
|
181
|
+
const emitEvent = (elm, name, opts) => {
|
|
182
|
+
const ev = plt.ce(name, opts);
|
|
183
|
+
elm.dispatchEvent(ev);
|
|
184
|
+
return ev;
|
|
185
|
+
};
|
|
186
|
+
const rootAppliedStyles = /*@__PURE__*/ new WeakMap();
|
|
187
|
+
const registerStyle = (scopeId, cssText, allowCS) => {
|
|
188
|
+
let style = styles.get(scopeId);
|
|
189
|
+
if (supportsConstructableStylesheets && allowCS) {
|
|
190
|
+
style = (style || new CSSStyleSheet());
|
|
191
|
+
if (typeof style === 'string') {
|
|
192
|
+
style = cssText;
|
|
193
|
+
}
|
|
194
|
+
else {
|
|
195
|
+
style.replaceSync(cssText);
|
|
196
|
+
}
|
|
197
|
+
}
|
|
198
|
+
else {
|
|
199
|
+
style = cssText;
|
|
200
|
+
}
|
|
201
|
+
styles.set(scopeId, style);
|
|
202
|
+
};
|
|
203
|
+
const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
|
|
204
|
+
let scopeId = getScopeId(cmpMeta);
|
|
205
|
+
const style = styles.get(scopeId);
|
|
206
|
+
// if an element is NOT connected then getRootNode() will return the wrong root node
|
|
207
|
+
// so the fallback is to always use the document for the root node in those cases
|
|
208
|
+
styleContainerNode = styleContainerNode.nodeType === 11 /* NODE_TYPE.DocumentFragment */ ? styleContainerNode : doc;
|
|
209
|
+
if (style) {
|
|
210
|
+
if (typeof style === 'string') {
|
|
211
|
+
styleContainerNode = styleContainerNode.head || styleContainerNode;
|
|
212
|
+
let appliedStyles = rootAppliedStyles.get(styleContainerNode);
|
|
213
|
+
let styleElm;
|
|
214
|
+
if (!appliedStyles) {
|
|
215
|
+
rootAppliedStyles.set(styleContainerNode, (appliedStyles = new Set()));
|
|
216
|
+
}
|
|
217
|
+
if (!appliedStyles.has(scopeId)) {
|
|
218
|
+
{
|
|
219
|
+
{
|
|
220
|
+
styleElm = doc.createElement('style');
|
|
221
|
+
styleElm.innerHTML = style;
|
|
222
|
+
}
|
|
223
|
+
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector('link'));
|
|
224
|
+
}
|
|
225
|
+
if (appliedStyles) {
|
|
226
|
+
appliedStyles.add(scopeId);
|
|
227
|
+
}
|
|
228
|
+
}
|
|
229
|
+
}
|
|
230
|
+
else if (!styleContainerNode.adoptedStyleSheets.includes(style)) {
|
|
231
|
+
styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
|
|
232
|
+
}
|
|
233
|
+
}
|
|
234
|
+
return scopeId;
|
|
235
|
+
};
|
|
236
|
+
const attachStyles = (hostRef) => {
|
|
237
|
+
const cmpMeta = hostRef.$cmpMeta$;
|
|
238
|
+
const elm = hostRef.$hostElement$;
|
|
239
|
+
const flags = cmpMeta.$flags$;
|
|
240
|
+
const endAttachStyles = createTime('attachStyles', cmpMeta.$tagName$);
|
|
241
|
+
const scopeId = addStyle(elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(), cmpMeta);
|
|
242
|
+
if (flags & 10 /* CMP_FLAGS.needsScopedEncapsulation */) {
|
|
243
|
+
// only required when we're NOT using native shadow dom (slot)
|
|
244
|
+
// or this browser doesn't support native shadow dom
|
|
245
|
+
// and this host element was NOT created with SSR
|
|
246
|
+
// let's pick out the inner content for slot projection
|
|
247
|
+
// create a node to represent where the original
|
|
248
|
+
// content was first placed, which is useful later on
|
|
249
|
+
// DOM WRITE!!
|
|
250
|
+
elm['s-sc'] = scopeId;
|
|
251
|
+
elm.classList.add(scopeId + '-h');
|
|
252
|
+
}
|
|
253
|
+
endAttachStyles();
|
|
254
|
+
};
|
|
255
|
+
const getScopeId = (cmp, mode) => 'sc-' + (cmp.$tagName$);
|
|
215
256
|
/**
|
|
216
257
|
* Production setAccessor() function based on Preact by
|
|
217
258
|
* Jason Miller (@developit)
|
|
@@ -623,18 +664,6 @@ const renderVdom = (hostRef, renderFnResults) => {
|
|
|
623
664
|
// synchronous patch
|
|
624
665
|
patch(oldVNode, rootVnode);
|
|
625
666
|
};
|
|
626
|
-
/**
|
|
627
|
-
* Helper function to create & dispatch a custom Event on a provided target
|
|
628
|
-
* @param elm the target of the Event
|
|
629
|
-
* @param name the name to give the custom Event
|
|
630
|
-
* @param opts options for configuring a custom Event
|
|
631
|
-
* @returns the custom Event
|
|
632
|
-
*/
|
|
633
|
-
const emitEvent = (elm, name, opts) => {
|
|
634
|
-
const ev = plt.ce(name, opts);
|
|
635
|
-
elm.dispatchEvent(ev);
|
|
636
|
-
return ev;
|
|
637
|
-
};
|
|
638
667
|
const attachToAncestor = (hostRef, ancestorComponent) => {
|
|
639
668
|
if (ancestorComponent && !hostRef.$onRenderResolve$ && ancestorComponent['s-p']) {
|
|
640
669
|
ancestorComponent['s-p'].push(new Promise((r) => (hostRef.$onRenderResolve$ = r)));
|
|
@@ -773,48 +802,6 @@ const then = (promise, thenFn) => {
|
|
|
773
802
|
};
|
|
774
803
|
const addHydratedFlag = (elm) => elm.classList.add('hydrated')
|
|
775
804
|
;
|
|
776
|
-
/**
|
|
777
|
-
* Parse a new property value for a given property type.
|
|
778
|
-
*
|
|
779
|
-
* While the prop value can reasonably be expected to be of `any` type as far as TypeScript's type checker is concerned,
|
|
780
|
-
* it is not safe to assume that the string returned by evaluating `typeof propValue` matches:
|
|
781
|
-
* 1. `any`, the type given to `propValue` in the function signature
|
|
782
|
-
* 2. the type stored from `propType`.
|
|
783
|
-
*
|
|
784
|
-
* This function provides the capability to parse/coerce a property's value to potentially any other JavaScript type.
|
|
785
|
-
*
|
|
786
|
-
* Property values represented in TSX preserve their type information. In the example below, the number 0 is passed to
|
|
787
|
-
* a component. This `propValue` will preserve its type information (`typeof propValue === 'number'`). Note that is
|
|
788
|
-
* based on the type of the value being passed in, not the type declared of the class member decorated with `@Prop`.
|
|
789
|
-
* ```tsx
|
|
790
|
-
* <my-cmp prop-val={0}></my-cmp>
|
|
791
|
-
* ```
|
|
792
|
-
*
|
|
793
|
-
* HTML prop values on the other hand, will always a string
|
|
794
|
-
*
|
|
795
|
-
* @param propValue the new value to coerce to some type
|
|
796
|
-
* @param propType the type of the prop, expressed as a binary number
|
|
797
|
-
* @returns the parsed/coerced value
|
|
798
|
-
*/
|
|
799
|
-
const parsePropertyValue = (propValue, propType) => {
|
|
800
|
-
// ensure this value is of the correct prop type
|
|
801
|
-
if (propValue != null && !isComplexType(propValue)) {
|
|
802
|
-
if (propType & 2 /* MEMBER_FLAGS.Number */) {
|
|
803
|
-
// force it to be a number
|
|
804
|
-
return parseFloat(propValue);
|
|
805
|
-
}
|
|
806
|
-
if (propType & 1 /* MEMBER_FLAGS.String */) {
|
|
807
|
-
// could have been passed as a number or boolean
|
|
808
|
-
// but we still want it as a string
|
|
809
|
-
return String(propValue);
|
|
810
|
-
}
|
|
811
|
-
// redundant return here for better minification
|
|
812
|
-
return propValue;
|
|
813
|
-
}
|
|
814
|
-
// not sure exactly what type we want
|
|
815
|
-
// so no need to change to a different type
|
|
816
|
-
return propValue;
|
|
817
|
-
};
|
|
818
805
|
const getValue = (ref, propName) => getHostRef(ref).$instanceValues$.get(propName);
|
|
819
806
|
const setValue = (ref, propName, newVal, cmpMeta) => {
|
|
820
807
|
// check our new property value against our internal value
|
|
@@ -841,6 +828,16 @@ const setValue = (ref, propName, newVal, cmpMeta) => {
|
|
|
841
828
|
}
|
|
842
829
|
}
|
|
843
830
|
};
|
|
831
|
+
/**
|
|
832
|
+
* Attach a series of runtime constructs to a compiled Stencil component
|
|
833
|
+
* constructor, including getters and setters for the `@Prop` and `@State`
|
|
834
|
+
* decorators, callbacks for when attributes change, and so on.
|
|
835
|
+
*
|
|
836
|
+
* @param Cstr the constructor for a component that we need to process
|
|
837
|
+
* @param cmpMeta metadata collected previously about the component
|
|
838
|
+
* @param flags a number used to store a series of bit flags
|
|
839
|
+
* @returns a reference to the same constructor passed in (but now mutated)
|
|
840
|
+
*/
|
|
844
841
|
const proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
845
842
|
if (cmpMeta.$members$) {
|
|
846
843
|
// It's better to have a const than two Object.entries()
|
|
@@ -1176,6 +1173,27 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
|
|
|
1176
1173
|
}, consoleError);
|
|
1177
1174
|
};
|
|
1178
1175
|
const styles = /*@__PURE__*/ new Map();
|
|
1176
|
+
const win = typeof window !== 'undefined' ? window : {};
|
|
1177
|
+
const doc = win.document || { head: {} };
|
|
1178
|
+
const plt = {
|
|
1179
|
+
$flags$: 0,
|
|
1180
|
+
$resourcesUrl$: '',
|
|
1181
|
+
jmp: (h) => h(),
|
|
1182
|
+
raf: (h) => requestAnimationFrame(h),
|
|
1183
|
+
ael: (el, eventName, listener, opts) => el.addEventListener(eventName, listener, opts),
|
|
1184
|
+
rel: (el, eventName, listener, opts) => el.removeEventListener(eventName, listener, opts),
|
|
1185
|
+
ce: (eventName, opts) => new CustomEvent(eventName, opts),
|
|
1186
|
+
};
|
|
1187
|
+
const promiseResolve = (v) => Promise.resolve(v);
|
|
1188
|
+
const supportsConstructableStylesheets = /*@__PURE__*/ (() => {
|
|
1189
|
+
try {
|
|
1190
|
+
new CSSStyleSheet();
|
|
1191
|
+
return typeof new CSSStyleSheet().replaceSync === 'function';
|
|
1192
|
+
}
|
|
1193
|
+
catch (e) { }
|
|
1194
|
+
return false;
|
|
1195
|
+
})()
|
|
1196
|
+
;
|
|
1179
1197
|
const queueDomReads = [];
|
|
1180
1198
|
const queueDomWrites = [];
|
|
1181
1199
|
const queueTask = (queue, write) => (cb) => {
|
package/dist/cjs/loader.cjs.js
CHANGED
|
@@ -2,10 +2,10 @@
|
|
|
2
2
|
|
|
3
3
|
Object.defineProperty(exports, '__esModule', { value: true });
|
|
4
4
|
|
|
5
|
-
const index = require('./index-
|
|
5
|
+
const index = require('./index-2e04595f.js');
|
|
6
6
|
|
|
7
7
|
/*
|
|
8
|
-
Stencil Client Patch Esm v2.18.
|
|
8
|
+
Stencil Client Patch Esm v2.18.1 | MIT Licensed | https://stenciljs.com
|
|
9
9
|
*/
|
|
10
10
|
const patchEsm = () => {
|
|
11
11
|
return index.promiseResolve();
|
|
@@ -1,9 +1,9 @@
|
|
|
1
1
|
'use strict';
|
|
2
2
|
|
|
3
|
-
const index = require('./index-
|
|
3
|
+
const index = require('./index-2e04595f.js');
|
|
4
4
|
|
|
5
5
|
/*
|
|
6
|
-
Stencil Client Patch Browser v2.18.
|
|
6
|
+
Stencil Client Patch Browser v2.18.1 | MIT Licensed | https://stenciljs.com
|
|
7
7
|
*/
|
|
8
8
|
const patchBrowser = () => {
|
|
9
9
|
const importMeta = (typeof document === 'undefined' ? new (require('u' + 'rl').URL)('file:' + __filename).href : (document.currentScript && document.currentScript.src || new URL('proto-logo-wc.cjs.js', document.baseURI).href));
|
|
@@ -1,31 +1,17 @@
|
|
|
1
1
|
const NAMESPACE = 'proto-logo-wc';
|
|
2
2
|
|
|
3
|
+
/**
|
|
4
|
+
* Virtual DOM patching algorithm based on Snabbdom by
|
|
5
|
+
* Simon Friis Vindum (@paldepind)
|
|
6
|
+
* Licensed under the MIT License
|
|
7
|
+
* https://github.com/snabbdom/snabbdom/blob/master/LICENSE
|
|
8
|
+
*
|
|
9
|
+
* Modified for Stencil's renderer and slot projection
|
|
10
|
+
*/
|
|
3
11
|
let scopeId;
|
|
4
12
|
let hostTagName;
|
|
5
13
|
let isSvgMode = false;
|
|
6
14
|
let queuePending = false;
|
|
7
|
-
const win = typeof window !== 'undefined' ? window : {};
|
|
8
|
-
const doc = win.document || { head: {} };
|
|
9
|
-
const plt = {
|
|
10
|
-
$flags$: 0,
|
|
11
|
-
$resourcesUrl$: '',
|
|
12
|
-
jmp: (h) => h(),
|
|
13
|
-
raf: (h) => requestAnimationFrame(h),
|
|
14
|
-
ael: (el, eventName, listener, opts) => el.addEventListener(eventName, listener, opts),
|
|
15
|
-
rel: (el, eventName, listener, opts) => el.removeEventListener(eventName, listener, opts),
|
|
16
|
-
ce: (eventName, opts) => new CustomEvent(eventName, opts),
|
|
17
|
-
};
|
|
18
|
-
const promiseResolve = (v) => Promise.resolve(v);
|
|
19
|
-
const supportsConstructableStylesheets = /*@__PURE__*/ (() => {
|
|
20
|
-
try {
|
|
21
|
-
new CSSStyleSheet();
|
|
22
|
-
return typeof new CSSStyleSheet().replaceSync === 'function';
|
|
23
|
-
}
|
|
24
|
-
catch (e) { }
|
|
25
|
-
return false;
|
|
26
|
-
})()
|
|
27
|
-
;
|
|
28
|
-
const HYDRATED_CSS = '{visibility:hidden}.hydrated{visibility:inherit}';
|
|
29
15
|
const createTime = (fnName, tagName = '') => {
|
|
30
16
|
{
|
|
31
17
|
return () => {
|
|
@@ -40,76 +26,7 @@ const uniqueTime = (key, measureText) => {
|
|
|
40
26
|
};
|
|
41
27
|
}
|
|
42
28
|
};
|
|
43
|
-
const
|
|
44
|
-
const registerStyle = (scopeId, cssText, allowCS) => {
|
|
45
|
-
let style = styles.get(scopeId);
|
|
46
|
-
if (supportsConstructableStylesheets && allowCS) {
|
|
47
|
-
style = (style || new CSSStyleSheet());
|
|
48
|
-
if (typeof style === 'string') {
|
|
49
|
-
style = cssText;
|
|
50
|
-
}
|
|
51
|
-
else {
|
|
52
|
-
style.replaceSync(cssText);
|
|
53
|
-
}
|
|
54
|
-
}
|
|
55
|
-
else {
|
|
56
|
-
style = cssText;
|
|
57
|
-
}
|
|
58
|
-
styles.set(scopeId, style);
|
|
59
|
-
};
|
|
60
|
-
const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
|
|
61
|
-
let scopeId = getScopeId(cmpMeta);
|
|
62
|
-
const style = styles.get(scopeId);
|
|
63
|
-
// if an element is NOT connected then getRootNode() will return the wrong root node
|
|
64
|
-
// so the fallback is to always use the document for the root node in those cases
|
|
65
|
-
styleContainerNode = styleContainerNode.nodeType === 11 /* NODE_TYPE.DocumentFragment */ ? styleContainerNode : doc;
|
|
66
|
-
if (style) {
|
|
67
|
-
if (typeof style === 'string') {
|
|
68
|
-
styleContainerNode = styleContainerNode.head || styleContainerNode;
|
|
69
|
-
let appliedStyles = rootAppliedStyles.get(styleContainerNode);
|
|
70
|
-
let styleElm;
|
|
71
|
-
if (!appliedStyles) {
|
|
72
|
-
rootAppliedStyles.set(styleContainerNode, (appliedStyles = new Set()));
|
|
73
|
-
}
|
|
74
|
-
if (!appliedStyles.has(scopeId)) {
|
|
75
|
-
{
|
|
76
|
-
{
|
|
77
|
-
styleElm = doc.createElement('style');
|
|
78
|
-
styleElm.innerHTML = style;
|
|
79
|
-
}
|
|
80
|
-
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector('link'));
|
|
81
|
-
}
|
|
82
|
-
if (appliedStyles) {
|
|
83
|
-
appliedStyles.add(scopeId);
|
|
84
|
-
}
|
|
85
|
-
}
|
|
86
|
-
}
|
|
87
|
-
else if (!styleContainerNode.adoptedStyleSheets.includes(style)) {
|
|
88
|
-
styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
|
|
89
|
-
}
|
|
90
|
-
}
|
|
91
|
-
return scopeId;
|
|
92
|
-
};
|
|
93
|
-
const attachStyles = (hostRef) => {
|
|
94
|
-
const cmpMeta = hostRef.$cmpMeta$;
|
|
95
|
-
const elm = hostRef.$hostElement$;
|
|
96
|
-
const flags = cmpMeta.$flags$;
|
|
97
|
-
const endAttachStyles = createTime('attachStyles', cmpMeta.$tagName$);
|
|
98
|
-
const scopeId = addStyle(elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(), cmpMeta);
|
|
99
|
-
if (flags & 10 /* CMP_FLAGS.needsScopedEncapsulation */) {
|
|
100
|
-
// only required when we're NOT using native shadow dom (slot)
|
|
101
|
-
// or this browser doesn't support native shadow dom
|
|
102
|
-
// and this host element was NOT created with SSR
|
|
103
|
-
// let's pick out the inner content for slot projection
|
|
104
|
-
// create a node to represent where the original
|
|
105
|
-
// content was first placed, which is useful later on
|
|
106
|
-
// DOM WRITE!!
|
|
107
|
-
elm['s-sc'] = scopeId;
|
|
108
|
-
elm.classList.add(scopeId + '-h');
|
|
109
|
-
}
|
|
110
|
-
endAttachStyles();
|
|
111
|
-
};
|
|
112
|
-
const getScopeId = (cmp, mode) => 'sc-' + (cmp.$tagName$);
|
|
29
|
+
const HYDRATED_CSS = '{visibility:hidden}.hydrated{visibility:inherit}';
|
|
113
30
|
/**
|
|
114
31
|
* Default style mode id
|
|
115
32
|
*/
|
|
@@ -190,6 +107,130 @@ const newVNode = (tag, text) => {
|
|
|
190
107
|
};
|
|
191
108
|
const Host = {};
|
|
192
109
|
const isHost = (node) => node && node.$tag$ === Host;
|
|
110
|
+
/**
|
|
111
|
+
* Parse a new property value for a given property type.
|
|
112
|
+
*
|
|
113
|
+
* While the prop value can reasonably be expected to be of `any` type as far as TypeScript's type checker is concerned,
|
|
114
|
+
* it is not safe to assume that the string returned by evaluating `typeof propValue` matches:
|
|
115
|
+
* 1. `any`, the type given to `propValue` in the function signature
|
|
116
|
+
* 2. the type stored from `propType`.
|
|
117
|
+
*
|
|
118
|
+
* This function provides the capability to parse/coerce a property's value to potentially any other JavaScript type.
|
|
119
|
+
*
|
|
120
|
+
* Property values represented in TSX preserve their type information. In the example below, the number 0 is passed to
|
|
121
|
+
* a component. This `propValue` will preserve its type information (`typeof propValue === 'number'`). Note that is
|
|
122
|
+
* based on the type of the value being passed in, not the type declared of the class member decorated with `@Prop`.
|
|
123
|
+
* ```tsx
|
|
124
|
+
* <my-cmp prop-val={0}></my-cmp>
|
|
125
|
+
* ```
|
|
126
|
+
*
|
|
127
|
+
* HTML prop values on the other hand, will always a string
|
|
128
|
+
*
|
|
129
|
+
* @param propValue the new value to coerce to some type
|
|
130
|
+
* @param propType the type of the prop, expressed as a binary number
|
|
131
|
+
* @returns the parsed/coerced value
|
|
132
|
+
*/
|
|
133
|
+
const parsePropertyValue = (propValue, propType) => {
|
|
134
|
+
// ensure this value is of the correct prop type
|
|
135
|
+
if (propValue != null && !isComplexType(propValue)) {
|
|
136
|
+
if (propType & 2 /* MEMBER_FLAGS.Number */) {
|
|
137
|
+
// force it to be a number
|
|
138
|
+
return parseFloat(propValue);
|
|
139
|
+
}
|
|
140
|
+
if (propType & 1 /* MEMBER_FLAGS.String */) {
|
|
141
|
+
// could have been passed as a number or boolean
|
|
142
|
+
// but we still want it as a string
|
|
143
|
+
return String(propValue);
|
|
144
|
+
}
|
|
145
|
+
// redundant return here for better minification
|
|
146
|
+
return propValue;
|
|
147
|
+
}
|
|
148
|
+
// not sure exactly what type we want
|
|
149
|
+
// so no need to change to a different type
|
|
150
|
+
return propValue;
|
|
151
|
+
};
|
|
152
|
+
/**
|
|
153
|
+
* Helper function to create & dispatch a custom Event on a provided target
|
|
154
|
+
* @param elm the target of the Event
|
|
155
|
+
* @param name the name to give the custom Event
|
|
156
|
+
* @param opts options for configuring a custom Event
|
|
157
|
+
* @returns the custom Event
|
|
158
|
+
*/
|
|
159
|
+
const emitEvent = (elm, name, opts) => {
|
|
160
|
+
const ev = plt.ce(name, opts);
|
|
161
|
+
elm.dispatchEvent(ev);
|
|
162
|
+
return ev;
|
|
163
|
+
};
|
|
164
|
+
const rootAppliedStyles = /*@__PURE__*/ new WeakMap();
|
|
165
|
+
const registerStyle = (scopeId, cssText, allowCS) => {
|
|
166
|
+
let style = styles.get(scopeId);
|
|
167
|
+
if (supportsConstructableStylesheets && allowCS) {
|
|
168
|
+
style = (style || new CSSStyleSheet());
|
|
169
|
+
if (typeof style === 'string') {
|
|
170
|
+
style = cssText;
|
|
171
|
+
}
|
|
172
|
+
else {
|
|
173
|
+
style.replaceSync(cssText);
|
|
174
|
+
}
|
|
175
|
+
}
|
|
176
|
+
else {
|
|
177
|
+
style = cssText;
|
|
178
|
+
}
|
|
179
|
+
styles.set(scopeId, style);
|
|
180
|
+
};
|
|
181
|
+
const addStyle = (styleContainerNode, cmpMeta, mode, hostElm) => {
|
|
182
|
+
let scopeId = getScopeId(cmpMeta);
|
|
183
|
+
const style = styles.get(scopeId);
|
|
184
|
+
// if an element is NOT connected then getRootNode() will return the wrong root node
|
|
185
|
+
// so the fallback is to always use the document for the root node in those cases
|
|
186
|
+
styleContainerNode = styleContainerNode.nodeType === 11 /* NODE_TYPE.DocumentFragment */ ? styleContainerNode : doc;
|
|
187
|
+
if (style) {
|
|
188
|
+
if (typeof style === 'string') {
|
|
189
|
+
styleContainerNode = styleContainerNode.head || styleContainerNode;
|
|
190
|
+
let appliedStyles = rootAppliedStyles.get(styleContainerNode);
|
|
191
|
+
let styleElm;
|
|
192
|
+
if (!appliedStyles) {
|
|
193
|
+
rootAppliedStyles.set(styleContainerNode, (appliedStyles = new Set()));
|
|
194
|
+
}
|
|
195
|
+
if (!appliedStyles.has(scopeId)) {
|
|
196
|
+
{
|
|
197
|
+
{
|
|
198
|
+
styleElm = doc.createElement('style');
|
|
199
|
+
styleElm.innerHTML = style;
|
|
200
|
+
}
|
|
201
|
+
styleContainerNode.insertBefore(styleElm, styleContainerNode.querySelector('link'));
|
|
202
|
+
}
|
|
203
|
+
if (appliedStyles) {
|
|
204
|
+
appliedStyles.add(scopeId);
|
|
205
|
+
}
|
|
206
|
+
}
|
|
207
|
+
}
|
|
208
|
+
else if (!styleContainerNode.adoptedStyleSheets.includes(style)) {
|
|
209
|
+
styleContainerNode.adoptedStyleSheets = [...styleContainerNode.adoptedStyleSheets, style];
|
|
210
|
+
}
|
|
211
|
+
}
|
|
212
|
+
return scopeId;
|
|
213
|
+
};
|
|
214
|
+
const attachStyles = (hostRef) => {
|
|
215
|
+
const cmpMeta = hostRef.$cmpMeta$;
|
|
216
|
+
const elm = hostRef.$hostElement$;
|
|
217
|
+
const flags = cmpMeta.$flags$;
|
|
218
|
+
const endAttachStyles = createTime('attachStyles', cmpMeta.$tagName$);
|
|
219
|
+
const scopeId = addStyle(elm.shadowRoot ? elm.shadowRoot : elm.getRootNode(), cmpMeta);
|
|
220
|
+
if (flags & 10 /* CMP_FLAGS.needsScopedEncapsulation */) {
|
|
221
|
+
// only required when we're NOT using native shadow dom (slot)
|
|
222
|
+
// or this browser doesn't support native shadow dom
|
|
223
|
+
// and this host element was NOT created with SSR
|
|
224
|
+
// let's pick out the inner content for slot projection
|
|
225
|
+
// create a node to represent where the original
|
|
226
|
+
// content was first placed, which is useful later on
|
|
227
|
+
// DOM WRITE!!
|
|
228
|
+
elm['s-sc'] = scopeId;
|
|
229
|
+
elm.classList.add(scopeId + '-h');
|
|
230
|
+
}
|
|
231
|
+
endAttachStyles();
|
|
232
|
+
};
|
|
233
|
+
const getScopeId = (cmp, mode) => 'sc-' + (cmp.$tagName$);
|
|
193
234
|
/**
|
|
194
235
|
* Production setAccessor() function based on Preact by
|
|
195
236
|
* Jason Miller (@developit)
|
|
@@ -601,18 +642,6 @@ const renderVdom = (hostRef, renderFnResults) => {
|
|
|
601
642
|
// synchronous patch
|
|
602
643
|
patch(oldVNode, rootVnode);
|
|
603
644
|
};
|
|
604
|
-
/**
|
|
605
|
-
* Helper function to create & dispatch a custom Event on a provided target
|
|
606
|
-
* @param elm the target of the Event
|
|
607
|
-
* @param name the name to give the custom Event
|
|
608
|
-
* @param opts options for configuring a custom Event
|
|
609
|
-
* @returns the custom Event
|
|
610
|
-
*/
|
|
611
|
-
const emitEvent = (elm, name, opts) => {
|
|
612
|
-
const ev = plt.ce(name, opts);
|
|
613
|
-
elm.dispatchEvent(ev);
|
|
614
|
-
return ev;
|
|
615
|
-
};
|
|
616
645
|
const attachToAncestor = (hostRef, ancestorComponent) => {
|
|
617
646
|
if (ancestorComponent && !hostRef.$onRenderResolve$ && ancestorComponent['s-p']) {
|
|
618
647
|
ancestorComponent['s-p'].push(new Promise((r) => (hostRef.$onRenderResolve$ = r)));
|
|
@@ -751,48 +780,6 @@ const then = (promise, thenFn) => {
|
|
|
751
780
|
};
|
|
752
781
|
const addHydratedFlag = (elm) => elm.classList.add('hydrated')
|
|
753
782
|
;
|
|
754
|
-
/**
|
|
755
|
-
* Parse a new property value for a given property type.
|
|
756
|
-
*
|
|
757
|
-
* While the prop value can reasonably be expected to be of `any` type as far as TypeScript's type checker is concerned,
|
|
758
|
-
* it is not safe to assume that the string returned by evaluating `typeof propValue` matches:
|
|
759
|
-
* 1. `any`, the type given to `propValue` in the function signature
|
|
760
|
-
* 2. the type stored from `propType`.
|
|
761
|
-
*
|
|
762
|
-
* This function provides the capability to parse/coerce a property's value to potentially any other JavaScript type.
|
|
763
|
-
*
|
|
764
|
-
* Property values represented in TSX preserve their type information. In the example below, the number 0 is passed to
|
|
765
|
-
* a component. This `propValue` will preserve its type information (`typeof propValue === 'number'`). Note that is
|
|
766
|
-
* based on the type of the value being passed in, not the type declared of the class member decorated with `@Prop`.
|
|
767
|
-
* ```tsx
|
|
768
|
-
* <my-cmp prop-val={0}></my-cmp>
|
|
769
|
-
* ```
|
|
770
|
-
*
|
|
771
|
-
* HTML prop values on the other hand, will always a string
|
|
772
|
-
*
|
|
773
|
-
* @param propValue the new value to coerce to some type
|
|
774
|
-
* @param propType the type of the prop, expressed as a binary number
|
|
775
|
-
* @returns the parsed/coerced value
|
|
776
|
-
*/
|
|
777
|
-
const parsePropertyValue = (propValue, propType) => {
|
|
778
|
-
// ensure this value is of the correct prop type
|
|
779
|
-
if (propValue != null && !isComplexType(propValue)) {
|
|
780
|
-
if (propType & 2 /* MEMBER_FLAGS.Number */) {
|
|
781
|
-
// force it to be a number
|
|
782
|
-
return parseFloat(propValue);
|
|
783
|
-
}
|
|
784
|
-
if (propType & 1 /* MEMBER_FLAGS.String */) {
|
|
785
|
-
// could have been passed as a number or boolean
|
|
786
|
-
// but we still want it as a string
|
|
787
|
-
return String(propValue);
|
|
788
|
-
}
|
|
789
|
-
// redundant return here for better minification
|
|
790
|
-
return propValue;
|
|
791
|
-
}
|
|
792
|
-
// not sure exactly what type we want
|
|
793
|
-
// so no need to change to a different type
|
|
794
|
-
return propValue;
|
|
795
|
-
};
|
|
796
783
|
const getValue = (ref, propName) => getHostRef(ref).$instanceValues$.get(propName);
|
|
797
784
|
const setValue = (ref, propName, newVal, cmpMeta) => {
|
|
798
785
|
// check our new property value against our internal value
|
|
@@ -819,6 +806,16 @@ const setValue = (ref, propName, newVal, cmpMeta) => {
|
|
|
819
806
|
}
|
|
820
807
|
}
|
|
821
808
|
};
|
|
809
|
+
/**
|
|
810
|
+
* Attach a series of runtime constructs to a compiled Stencil component
|
|
811
|
+
* constructor, including getters and setters for the `@Prop` and `@State`
|
|
812
|
+
* decorators, callbacks for when attributes change, and so on.
|
|
813
|
+
*
|
|
814
|
+
* @param Cstr the constructor for a component that we need to process
|
|
815
|
+
* @param cmpMeta metadata collected previously about the component
|
|
816
|
+
* @param flags a number used to store a series of bit flags
|
|
817
|
+
* @returns a reference to the same constructor passed in (but now mutated)
|
|
818
|
+
*/
|
|
822
819
|
const proxyComponent = (Cstr, cmpMeta, flags) => {
|
|
823
820
|
if (cmpMeta.$members$) {
|
|
824
821
|
// It's better to have a const than two Object.entries()
|
|
@@ -1154,6 +1151,27 @@ const loadModule = (cmpMeta, hostRef, hmrVersionId) => {
|
|
|
1154
1151
|
}, consoleError);
|
|
1155
1152
|
};
|
|
1156
1153
|
const styles = /*@__PURE__*/ new Map();
|
|
1154
|
+
const win = typeof window !== 'undefined' ? window : {};
|
|
1155
|
+
const doc = win.document || { head: {} };
|
|
1156
|
+
const plt = {
|
|
1157
|
+
$flags$: 0,
|
|
1158
|
+
$resourcesUrl$: '',
|
|
1159
|
+
jmp: (h) => h(),
|
|
1160
|
+
raf: (h) => requestAnimationFrame(h),
|
|
1161
|
+
ael: (el, eventName, listener, opts) => el.addEventListener(eventName, listener, opts),
|
|
1162
|
+
rel: (el, eventName, listener, opts) => el.removeEventListener(eventName, listener, opts),
|
|
1163
|
+
ce: (eventName, opts) => new CustomEvent(eventName, opts),
|
|
1164
|
+
};
|
|
1165
|
+
const promiseResolve = (v) => Promise.resolve(v);
|
|
1166
|
+
const supportsConstructableStylesheets = /*@__PURE__*/ (() => {
|
|
1167
|
+
try {
|
|
1168
|
+
new CSSStyleSheet();
|
|
1169
|
+
return typeof new CSSStyleSheet().replaceSync === 'function';
|
|
1170
|
+
}
|
|
1171
|
+
catch (e) { }
|
|
1172
|
+
return false;
|
|
1173
|
+
})()
|
|
1174
|
+
;
|
|
1157
1175
|
const queueDomReads = [];
|
|
1158
1176
|
const queueDomWrites = [];
|
|
1159
1177
|
const queueTask = (queue, write) => (cb) => {
|
package/dist/esm/loader.js
CHANGED
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-a7801013.js';
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
|
-
Stencil Client Patch Esm v2.18.
|
|
4
|
+
Stencil Client Patch Esm v2.18.1 | MIT Licensed | https://stenciljs.com
|
|
5
5
|
*/
|
|
6
6
|
const patchEsm = () => {
|
|
7
7
|
return promiseResolve();
|
|
@@ -1 +1 @@
|
|
|
1
|
-
var __assign=this&&this.__assign||function(){return(__assign=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var s in t=arguments[r])Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s]);return e}).apply(this,arguments)},StyleNode=function(){this.start=0,this.end=0,this.previous=null,this.parent=null,this.rules=null,this.parsedCssText="",this.cssText="",this.atRule=!1,this.type=0,this.keyframesName="",this.selector="",this.parsedSelector=""};function parse(e){return parseCss(lex(e=clean(e)),e)}function clean(e){return e.replace(RX.comments,"").replace(RX.port,"")}function lex(e){var t=new StyleNode;t.start=0,t.end=e.length;for(var r=t,n=0,s=e.length;n<s;n++)if(e[n]===OPEN_BRACE){r.rules||(r.rules=[]);var o=r,a=o.rules[o.rules.length-1]||null;(r=new StyleNode).start=n+1,r.parent=o,r.previous=a,o.rules.push(r)}else e[n]===CLOSE_BRACE&&(r.end=n+1,r=r.parent||t);return t}function parseCss(e,t){var r=t.substring(e.start,e.end-1);if(e.parsedCssText=e.cssText=r.trim(),e.parent){var n=e.previous?e.previous.end:e.parent.start;r=(r=(r=_expandUnicodeEscapes(r=t.substring(n,e.start-1))).replace(RX.multipleSpaces," ")).substring(r.lastIndexOf(";")+1);var s=e.parsedSelector=e.selector=r.trim();e.atRule=0===s.indexOf(AT_START),e.atRule?0===s.indexOf(MEDIA_START)?e.type=types.MEDIA_RULE:s.match(RX.keyframesRule)&&(e.type=types.KEYFRAMES_RULE,e.keyframesName=e.selector.split(RX.multipleSpaces).pop()):0===s.indexOf(VAR_START)?e.type=types.MIXIN_RULE:e.type=types.STYLE_RULE}var o=e.rules;if(o)for(var a=0,i=o.length,l=void 0;a<i&&(l=o[a]);a++)parseCss(l,t);return e}function _expandUnicodeEscapes(e){return e.replace(/\\([0-9a-f]{1,6})\s/gi,(function(){for(var e=arguments[1],t=6-e.length;t--;)e="0"+e;return"\\"+e}))}var types={STYLE_RULE:1,KEYFRAMES_RULE:7,MEDIA_RULE:4,MIXIN_RULE:1e3},OPEN_BRACE="{",CLOSE_BRACE="}",RX={comments:/\/\*[^*]*\*+([^/*][^*]*\*+)*\//gim,port:/@import[^;]*;/gim,customProp:/(?:^[^;\-\s}]+)?--[^;{}]*?:[^{};]*?(?:[;\n]|$)/gim,mixinProp:/(?:^[^;\-\s}]+)?--[^;{}]*?:[^{};]*?{[^}]*?}(?:[;\n]|$)?/gim,mixinApply:/@apply\s*\(?[^);]*\)?\s*(?:[;\n]|$)?/gim,varApply:/[^;:]*?:[^;]*?var\([^;]*\)(?:[;\n]|$)?/gim,keyframesRule:/^@[^\s]*keyframes/,multipleSpaces:/\s+/g},VAR_START="--",MEDIA_START="@media",AT_START="@";function findRegex(e,t,r){e.lastIndex=0;var n=t.substring(r).match(e);if(n){var s=r+n.index;return{start:s,end:s+n[0].length}}return null}var VAR_USAGE_START=/\bvar\(/,VAR_ASSIGN_START=/\B--[\w-]+\s*:/,COMMENTS=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//gim,TRAILING_LINES=/^[\t ]+\n/gm;function resolveVar(e,t,r){return e[t]?e[t]:r?executeTemplate(r,e):""}function findVarEndIndex(e,t){for(var r=0,n=t;n<e.length;n++){var s=e[n];if("("===s)r++;else if(")"===s&&--r<=0)return n+1}return n}function parseVar(e,t){var r=findRegex(VAR_USAGE_START,e,t);if(!r)return null;var n=findVarEndIndex(e,r.start),s=e.substring(r.end,n-1).split(","),o=s[0],a=s.slice(1);return{start:r.start,end:n,propName:o.trim(),fallback:a.length>0?a.join(",").trim():void 0}}function compileVar(e,t,r){var n=parseVar(e,r);if(!n)return t.push(e.substring(r,e.length)),e.length;var s=n.propName,o=null!=n.fallback?compileTemplate(n.fallback):void 0;return t.push(e.substring(r,n.start),(function(e){return resolveVar(e,s,o)})),n.end}function executeTemplate(e,t){for(var r="",n=0;n<e.length;n++){var s=e[n];r+="string"==typeof s?s:s(t)}return r}function findEndValue(e,t){for(var r=!1,n=!1,s=t;s<e.length;s++){var o=e[s];if(r)n&&'"'===o&&(r=!1),n||"'"!==o||(r=!1);else if('"'===o)r=!0,n=!0;else if("'"===o)r=!0,n=!1;else{if(";"===o)return s+1;if("}"===o)return s}}return s}function removeCustomAssigns(e){for(var t="",r=0;;){var n=findRegex(VAR_ASSIGN_START,e,r),s=n?n.start:e.length;if(t+=e.substring(r,s),!n)break;r=findEndValue(e,s)}return t}function compileTemplate(e){var t=0;e=removeCustomAssigns(e=e.replace(COMMENTS,"")).replace(TRAILING_LINES,"");for(var r=[];t<e.length;)t=compileVar(e,r,t);return r}function resolveValues(e){var t={};e.forEach((function(e){e.declarations.forEach((function(e){t[e.prop]=e.value}))}));for(var r={},n=Object.entries(t),s=function(e){var t=!1;if(n.forEach((function(e){var n=e[0],s=executeTemplate(e[1],r);s!==r[n]&&(r[n]=s,t=!0)})),!t)return"break"},o=0;o<10;o++){if("break"===s())break}return r}function getSelectors(e,t){if(void 0===t&&(t=0),!e.rules)return[];var r=[];return e.rules.filter((function(e){return e.type===types.STYLE_RULE})).forEach((function(e){var n=getDeclarations(e.cssText);n.length>0&&e.parsedSelector.split(",").forEach((function(e){e=e.trim(),r.push({selector:e,declarations:n,specificity:computeSpecificity(),nu:t})})),t++})),r}function computeSpecificity(e){return 1}var IMPORTANT="!important",FIND_DECLARATIONS=/(?:^|[;\s{]\s*)(--[\w-]*?)\s*:\s*(?:((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};{])+)|\{([^}]*)\}(?:(?=[;\s}])|$))/gm;function getDeclarations(e){for(var t,r=[];t=FIND_DECLARATIONS.exec(e.trim());){var n=normalizeValue(t[2]),s=n.value,o=n.important;r.push({prop:t[1].trim(),value:compileTemplate(s),important:o})}return r}function normalizeValue(e){var t=(e=e.replace(/\s+/gim," ").trim()).endsWith(IMPORTANT);return t&&(e=e.slice(0,e.length-IMPORTANT.length).trim()),{value:e,important:t}}function getActiveSelectors(e,t,r){var n=[],s=getScopesForElement(t,e);return r.forEach((function(e){return n.push(e)})),s.forEach((function(e){return n.push(e)})),sortSelectors(getSelectorsForScopes(n).filter((function(t){return matches(e,t.selector)})))}function getScopesForElement(e,t){for(var r=[];t;){var n=e.get(t);n&&r.push(n),t=t.parentElement}return r}function getSelectorsForScopes(e){var t=[];return e.forEach((function(e){t.push.apply(t,e.selectors)})),t}function sortSelectors(e){return e.sort((function(e,t){return e.specificity===t.specificity?e.nu-t.nu:e.specificity-t.specificity})),e}function matches(e,t){return":root"===t||"html"===t||e.matches(t)}function parseCSS(e){var t=parse(e),r=compileTemplate(e);return{original:e,template:r,selectors:getSelectors(t),usesCssVars:r.length>1}}function addGlobalStyle(e,t){if(e.some((function(e){return e.styleEl===t})))return!1;var r=parseCSS(t.textContent);return r.styleEl=t,e.push(r),!0}function updateGlobalScopes(e){var t=resolveValues(getSelectorsForScopes(e));e.forEach((function(e){e.usesCssVars&&(e.styleEl.textContent=executeTemplate(e.template,t))}))}function reScope(e,t){var r=e.template.map((function(r){return"string"==typeof r?replaceScope(r,e.scopeId,t):r})),n=e.selectors.map((function(r){return __assign(__assign({},r),{selector:replaceScope(r.selector,e.scopeId,t)})}));return __assign(__assign({},e),{template:r,selectors:n,scopeId:t})}function replaceScope(e,t,r){return e=replaceAll(e,"\\.".concat(t),".".concat(r))}function replaceAll(e,t,r){return e.replace(new RegExp(t,"g"),r)}function loadDocument(e,t){return loadDocumentStyles(e,t),loadDocumentLinks(e,t).then((function(){updateGlobalScopes(t)}))}function startWatcher(e,t){"undefined"!=typeof MutationObserver&&new MutationObserver((function(){loadDocumentStyles(e,t)&&updateGlobalScopes(t)})).observe(document.head,{childList:!0})}function loadDocumentLinks(e,t){for(var r=[],n=e.querySelectorAll('link[rel="stylesheet"][href]:not([data-no-shim])'),s=0;s<n.length;s++)r.push(addGlobalLink(e,t,n[s]));return Promise.all(r)}function loadDocumentStyles(e,t){return Array.from(e.querySelectorAll("style:not([data-styles]):not([data-no-shim])")).map((function(e){return addGlobalStyle(t,e)})).some(Boolean)}function addGlobalLink(e,t,r){var n=r.href;return fetch(n).then((function(e){return e.text()})).then((function(s){if(hasCssVariables(s)&&r.parentNode){hasRelativeUrls(s)&&(s=fixRelativeUrls(s,n));var o=e.createElement("style");o.setAttribute("data-styles",""),o.textContent=s,addGlobalStyle(t,o),r.parentNode.insertBefore(o,r),r.remove()}})).catch((function(e){console.error(e)}))}var CSS_VARIABLE_REGEXP=/[\s;{]--[-a-zA-Z0-9]+\s*:/m;function hasCssVariables(e){return e.indexOf("var(")>-1||CSS_VARIABLE_REGEXP.test(e)}var CSS_URL_REGEXP=/url[\s]*\([\s]*['"]?(?!(?:https?|data)\:|\/)([^\'\"\)]*)[\s]*['"]?\)[\s]*/gim;function hasRelativeUrls(e){return CSS_URL_REGEXP.lastIndex=0,CSS_URL_REGEXP.test(e)}function fixRelativeUrls(e,t){var r=t.replace(/[^/]*$/,"");return e.replace(CSS_URL_REGEXP,(function(e,t){var n=r+t;return e.replace(t,n)}))}var CustomStyle=function(){function e(e,t){this.win=e,this.doc=t,this.count=0,this.hostStyleMap=new WeakMap,this.hostScopeMap=new WeakMap,this.globalScopes=[],this.scopesMap=new Map,this.didInit=!1}return e.prototype.i=function(){var e=this;return this.didInit||!this.win.requestAnimationFrame?Promise.resolve():(this.didInit=!0,new Promise((function(t){e.win.requestAnimationFrame((function(){startWatcher(e.doc,e.globalScopes),loadDocument(e.doc,e.globalScopes).then((function(){return t()}))}))})))},e.prototype.addLink=function(e){var t=this;return addGlobalLink(this.doc,this.globalScopes,e).then((function(){t.updateGlobal()}))},e.prototype.addGlobalStyle=function(e){addGlobalStyle(this.globalScopes,e)&&this.updateGlobal()},e.prototype.createHostStyle=function(e,t,r,n){if(this.hostScopeMap.has(e))throw new Error("host style already created");var s=this.registerHostTemplate(r,t,n),o=this.doc.createElement("style");return o.setAttribute("data-no-shim",""),s.usesCssVars?n?(o["s-sc"]=t="".concat(s.scopeId,"-").concat(this.count),o.textContent="/*needs update*/",this.hostStyleMap.set(e,o),this.hostScopeMap.set(e,reScope(s,t)),this.count++):(s.styleEl=o,s.usesCssVars||(o.textContent=executeTemplate(s.template,{})),this.globalScopes.push(s),this.updateGlobal(),this.hostScopeMap.set(e,s)):o.textContent=r,o},e.prototype.removeHost=function(e){var t=this.hostStyleMap.get(e);t&&t.remove(),this.hostStyleMap.delete(e),this.hostScopeMap.delete(e)},e.prototype.updateHost=function(e){var t=this.hostScopeMap.get(e);if(t&&t.usesCssVars&&t.isScoped){var r=this.hostStyleMap.get(e);if(r){var n=resolveValues(getActiveSelectors(e,this.hostScopeMap,this.globalScopes));r.textContent=executeTemplate(t.template,n)}}},e.prototype.updateGlobal=function(){updateGlobalScopes(this.globalScopes)},e.prototype.registerHostTemplate=function(e,t,r){var n=this.scopesMap.get(t);return n||((n=parseCSS(e)).scopeId=t,n.isScoped=r,this.scopesMap.set(t,n)),n},e}();!function(e){!e||e.__cssshim||e.CSS&&e.CSS.supports&&e.CSS.supports("color","var(--c)")||(e.__cssshim=new CustomStyle(e,e.document))}("undefined"!=typeof window&&window);
|
|
1
|
+
var __assign=this&&this.__assign||function(){return(__assign=Object.assign||function(e){for(var t,r=1,n=arguments.length;r<n;r++)for(var s in t=arguments[r])Object.prototype.hasOwnProperty.call(t,s)&&(e[s]=t[s]);return e}).apply(this,arguments)},StyleNode=function(){this.start=0,this.end=0,this.previous=null,this.parent=null,this.rules=null,this.parsedCssText="",this.cssText="",this.atRule=!1,this.type=0,this.keyframesName="",this.selector="",this.parsedSelector=""};function parse(e){return parseCss(lex(e=clean(e)),e)}function clean(e){return e.replace(RX.comments,"").replace(RX.port,"")}function lex(e){var t=new StyleNode;t.start=0,t.end=e.length;for(var r=t,n=0,s=e.length;n<s;n++)if(e[n]===OPEN_BRACE){r.rules||(r.rules=[]);var o=r,a=o.rules[o.rules.length-1]||null;(r=new StyleNode).start=n+1,r.parent=o,r.previous=a,o.rules.push(r)}else e[n]===CLOSE_BRACE&&(r.end=n+1,r=r.parent||t);return t}function parseCss(e,t){var r=t.substring(e.start,e.end-1);if(e.parsedCssText=e.cssText=r.trim(),e.parent){var n=e.previous?e.previous.end:e.parent.start;r=(r=(r=_expandUnicodeEscapes(r=t.substring(n,e.start-1))).replace(RX.multipleSpaces," ")).substring(r.lastIndexOf(";")+1);var s=e.parsedSelector=e.selector=r.trim();e.atRule=0===s.indexOf(AT_START),e.atRule?0===s.indexOf(MEDIA_START)?e.type=types.MEDIA_RULE:s.match(RX.keyframesRule)&&(e.type=types.KEYFRAMES_RULE,e.keyframesName=e.selector.split(RX.multipleSpaces).pop()):0===s.indexOf(VAR_START)?e.type=types.MIXIN_RULE:e.type=types.STYLE_RULE}var o=e.rules;if(o)for(var a=0,i=o.length,l=void 0;a<i&&(l=o[a]);a++)parseCss(l,t);return e}function _expandUnicodeEscapes(e){return e.replace(/\\([0-9a-f]{1,6})\s/gi,(function(){for(var e=arguments[1],t=6-e.length;t--;)e="0"+e;return"\\"+e}))}var types={STYLE_RULE:1,KEYFRAMES_RULE:7,MEDIA_RULE:4,MIXIN_RULE:1e3},OPEN_BRACE="{",CLOSE_BRACE="}",RX={comments:/\/\*[^*]*\*+([^/*][^*]*\*+)*\//gim,port:/@import[^;]*;/gim,customProp:/(?:^[^;\-\s}]+)?--[^;{}]*?:[^{};]*?(?:[;\n]|$)/gim,mixinProp:/(?:^[^;\-\s}]+)?--[^;{}]*?:[^{};]*?{[^}]*?}(?:[;\n]|$)?/gim,mixinApply:/@apply\s*\(?[^);]*\)?\s*(?:[;\n]|$)?/gim,varApply:/[^;:]*?:[^;]*?var\([^;]*\)(?:[;\n]|$)?/gim,keyframesRule:/^@[^\s]*keyframes/,multipleSpaces:/\s+/g},VAR_START="--",MEDIA_START="@media",AT_START="@",VAR_USAGE_START=/\bvar\(/,VAR_ASSIGN_START=/\B--[\w-]+\s*:/,COMMENTS=/\/\*[^*]*\*+([^/*][^*]*\*+)*\//gim,TRAILING_LINES=/^[\t ]+\n/gm;function findRegex(e,t,r){e.lastIndex=0;var n=t.substring(r).match(e);if(n){var s=r+n.index;return{start:s,end:s+n[0].length}}return null}function resolveVar(e,t,r){return e[t]?e[t]:r?executeTemplate(r,e):""}function findVarEndIndex(e,t){for(var r=0,n=t;n<e.length;n++){var s=e[n];if("("===s)r++;else if(")"===s&&--r<=0)return n+1}return n}function parseVar(e,t){var r=findRegex(VAR_USAGE_START,e,t);if(!r)return null;var n=findVarEndIndex(e,r.start),s=e.substring(r.end,n-1).split(","),o=s[0],a=s.slice(1);return{start:r.start,end:n,propName:o.trim(),fallback:a.length>0?a.join(",").trim():void 0}}function compileVar(e,t,r){var n=parseVar(e,r);if(!n)return t.push(e.substring(r,e.length)),e.length;var s=n.propName,o=null!=n.fallback?compileTemplate(n.fallback):void 0;return t.push(e.substring(r,n.start),(function(e){return resolveVar(e,s,o)})),n.end}function executeTemplate(e,t){for(var r="",n=0;n<e.length;n++){var s=e[n];r+="string"==typeof s?s:s(t)}return r}function findEndValue(e,t){for(var r=!1,n=!1,s=t;s<e.length;s++){var o=e[s];if(r)n&&'"'===o&&(r=!1),n||"'"!==o||(r=!1);else if('"'===o)r=!0,n=!0;else if("'"===o)r=!0,n=!1;else{if(";"===o)return s+1;if("}"===o)return s}}return s}function removeCustomAssigns(e){for(var t="",r=0;;){var n=findRegex(VAR_ASSIGN_START,e,r),s=n?n.start:e.length;if(t+=e.substring(r,s),!n)break;r=findEndValue(e,s)}return t}function compileTemplate(e){var t=0;e=removeCustomAssigns(e=e.replace(COMMENTS,"")).replace(TRAILING_LINES,"");for(var r=[];t<e.length;)t=compileVar(e,r,t);return r}function resolveValues(e){var t={};e.forEach((function(e){e.declarations.forEach((function(e){t[e.prop]=e.value}))}));for(var r={},n=Object.entries(t),s=function(e){var t=!1;if(n.forEach((function(e){var n=e[0],s=executeTemplate(e[1],r);s!==r[n]&&(r[n]=s,t=!0)})),!t)return"break"},o=0;o<10;o++){if("break"===s())break}return r}function getSelectors(e,t){if(void 0===t&&(t=0),!e.rules)return[];var r=[];return e.rules.filter((function(e){return e.type===types.STYLE_RULE})).forEach((function(e){var n=getDeclarations(e.cssText);n.length>0&&e.parsedSelector.split(",").forEach((function(e){e=e.trim(),r.push({selector:e,declarations:n,specificity:computeSpecificity(),nu:t})})),t++})),r}function computeSpecificity(e){return 1}var IMPORTANT="!important",FIND_DECLARATIONS=/(?:^|[;\s{]\s*)(--[\w-]*?)\s*:\s*(?:((?:'(?:\\'|.)*?'|"(?:\\"|.)*?"|\([^)]*?\)|[^};{])+)|\{([^}]*)\}(?:(?=[;\s}])|$))/gm;function getDeclarations(e){for(var t,r=[];t=FIND_DECLARATIONS.exec(e.trim());){var n=normalizeValue(t[2]),s=n.value,o=n.important;r.push({prop:t[1].trim(),value:compileTemplate(s),important:o})}return r}function normalizeValue(e){var t=(e=e.replace(/\s+/gim," ").trim()).endsWith(IMPORTANT);return t&&(e=e.slice(0,e.length-IMPORTANT.length).trim()),{value:e,important:t}}function getActiveSelectors(e,t,r){var n=[],s=getScopesForElement(t,e);return r.forEach((function(e){return n.push(e)})),s.forEach((function(e){return n.push(e)})),sortSelectors(getSelectorsForScopes(n).filter((function(t){return matches(e,t.selector)})))}function getScopesForElement(e,t){for(var r=[];t;){var n=e.get(t);n&&r.push(n),t=t.parentElement}return r}function getSelectorsForScopes(e){var t=[];return e.forEach((function(e){t.push.apply(t,e.selectors)})),t}function sortSelectors(e){return e.sort((function(e,t){return e.specificity===t.specificity?e.nu-t.nu:e.specificity-t.specificity})),e}function matches(e,t){return":root"===t||"html"===t||e.matches(t)}function parseCSS(e){var t=parse(e),r=compileTemplate(e);return{original:e,template:r,selectors:getSelectors(t),usesCssVars:r.length>1}}function addGlobalStyle(e,t){if(e.some((function(e){return e.styleEl===t})))return!1;var r=parseCSS(t.textContent);return r.styleEl=t,e.push(r),!0}function updateGlobalScopes(e){var t=resolveValues(getSelectorsForScopes(e));e.forEach((function(e){e.usesCssVars&&(e.styleEl.textContent=executeTemplate(e.template,t))}))}function reScope(e,t){var r=e.template.map((function(r){return"string"==typeof r?replaceScope(r,e.scopeId,t):r})),n=e.selectors.map((function(r){return __assign(__assign({},r),{selector:replaceScope(r.selector,e.scopeId,t)})}));return __assign(__assign({},e),{template:r,selectors:n,scopeId:t})}function replaceScope(e,t,r){return e=replaceAll(e,"\\.".concat(t),".".concat(r))}function replaceAll(e,t,r){return e.replace(new RegExp(t,"g"),r)}function loadDocument(e,t){return loadDocumentStyles(e,t),loadDocumentLinks(e,t).then((function(){updateGlobalScopes(t)}))}function startWatcher(e,t){"undefined"!=typeof MutationObserver&&new MutationObserver((function(){loadDocumentStyles(e,t)&&updateGlobalScopes(t)})).observe(document.head,{childList:!0})}function loadDocumentLinks(e,t){for(var r=[],n=e.querySelectorAll('link[rel="stylesheet"][href]:not([data-no-shim])'),s=0;s<n.length;s++)r.push(addGlobalLink(e,t,n[s]));return Promise.all(r)}function loadDocumentStyles(e,t){return Array.from(e.querySelectorAll("style:not([data-styles]):not([data-no-shim])")).map((function(e){return addGlobalStyle(t,e)})).some(Boolean)}function addGlobalLink(e,t,r){var n=r.href;return fetch(n).then((function(e){return e.text()})).then((function(s){if(hasCssVariables(s)&&r.parentNode){hasRelativeUrls(s)&&(s=fixRelativeUrls(s,n));var o=e.createElement("style");o.setAttribute("data-styles",""),o.textContent=s,addGlobalStyle(t,o),r.parentNode.insertBefore(o,r),r.remove()}})).catch((function(e){console.error(e)}))}var CSS_VARIABLE_REGEXP=/[\s;{]--[-a-zA-Z0-9]+\s*:/m;function hasCssVariables(e){return e.indexOf("var(")>-1||CSS_VARIABLE_REGEXP.test(e)}var CSS_URL_REGEXP=/url[\s]*\([\s]*['"]?(?!(?:https?|data)\:|\/)([^\'\"\)]*)[\s]*['"]?\)[\s]*/gim;function hasRelativeUrls(e){return CSS_URL_REGEXP.lastIndex=0,CSS_URL_REGEXP.test(e)}function fixRelativeUrls(e,t){var r=t.replace(/[^/]*$/,"");return e.replace(CSS_URL_REGEXP,(function(e,t){var n=r+t;return e.replace(t,n)}))}var CustomStyle=function(){function e(e,t){this.win=e,this.doc=t,this.count=0,this.hostStyleMap=new WeakMap,this.hostScopeMap=new WeakMap,this.globalScopes=[],this.scopesMap=new Map,this.didInit=!1}return e.prototype.i=function(){var e=this;return this.didInit||!this.win.requestAnimationFrame?Promise.resolve():(this.didInit=!0,new Promise((function(t){e.win.requestAnimationFrame((function(){startWatcher(e.doc,e.globalScopes),loadDocument(e.doc,e.globalScopes).then((function(){return t()}))}))})))},e.prototype.addLink=function(e){var t=this;return addGlobalLink(this.doc,this.globalScopes,e).then((function(){t.updateGlobal()}))},e.prototype.addGlobalStyle=function(e){addGlobalStyle(this.globalScopes,e)&&this.updateGlobal()},e.prototype.createHostStyle=function(e,t,r,n){if(this.hostScopeMap.has(e))throw new Error("host style already created");var s=this.registerHostTemplate(r,t,n),o=this.doc.createElement("style");return o.setAttribute("data-no-shim",""),s.usesCssVars?n?(o["s-sc"]=t="".concat(s.scopeId,"-").concat(this.count),o.textContent="/*needs update*/",this.hostStyleMap.set(e,o),this.hostScopeMap.set(e,reScope(s,t)),this.count++):(s.styleEl=o,s.usesCssVars||(o.textContent=executeTemplate(s.template,{})),this.globalScopes.push(s),this.updateGlobal(),this.hostScopeMap.set(e,s)):o.textContent=r,o},e.prototype.removeHost=function(e){var t=this.hostStyleMap.get(e);t&&t.remove(),this.hostStyleMap.delete(e),this.hostScopeMap.delete(e)},e.prototype.updateHost=function(e){var t=this.hostScopeMap.get(e);if(t&&t.usesCssVars&&t.isScoped){var r=this.hostStyleMap.get(e);if(r){var n=resolveValues(getActiveSelectors(e,this.hostScopeMap,this.globalScopes));r.textContent=executeTemplate(t.template,n)}}},e.prototype.updateGlobal=function(){updateGlobalScopes(this.globalScopes)},e.prototype.registerHostTemplate=function(e,t,r){var n=this.scopesMap.get(t);return n||((n=parseCSS(e)).scopeId=t,n.isScoped=r,this.scopesMap.set(t,n)),n},e}();!function(e){!e||e.__cssshim||e.CSS&&e.CSS.supports&&e.CSS.supports("color","var(--c)")||(e.__cssshim=new CustomStyle(e,e.document))}("undefined"!=typeof window&&window);
|
|
@@ -1,7 +1,7 @@
|
|
|
1
|
-
import { p as promiseResolve, b as bootstrapLazy } from './index-
|
|
1
|
+
import { p as promiseResolve, b as bootstrapLazy } from './index-a7801013.js';
|
|
2
2
|
|
|
3
3
|
/*
|
|
4
|
-
Stencil Client Patch Browser v2.18.
|
|
4
|
+
Stencil Client Patch Browser v2.18.1 | MIT Licensed | https://stenciljs.com
|
|
5
5
|
*/
|
|
6
6
|
const patchBrowser = () => {
|
|
7
7
|
const importMeta = import.meta.url;
|
|
@@ -0,0 +1,2 @@
|
|
|
1
|
+
let t,e,n=!1,l=!1;const o={},s=t=>"object"==(t=typeof t)||"function"===t,r=(t,e,...n)=>{let l=null,o=!1,r=!1;const c=[],u=e=>{for(let n=0;n<e.length;n++)l=e[n],Array.isArray(l)?u(l):null!=l&&"boolean"!=typeof l&&((o="function"!=typeof t&&!s(l))&&(l+=""),o&&r?c[c.length-1].t+=l:c.push(o?i(null,l):l),r=o)};u(n);const a=i(t,null);return a.l=e,c.length>0&&(a.o=c),a},i=(t,e)=>({i:0,u:t,t:e,h:null,o:null,l:null}),c={},u=new WeakMap,a=t=>"sc-"+t.$,f=(t,e,n,l,o,r)=>{if(n!==l){let i=A(t,e);e.toLowerCase();{const c=s(l);if((i||c&&null!==l)&&!o)try{if(t.tagName.includes("-"))t[e]=l;else{const o=null==l?"":l;"list"===e?i=!1:null!=n&&t[e]==o||(t[e]=o)}}catch(t){}null==l||!1===l?!1===l&&""!==t.getAttribute(e)||t.removeAttribute(e):(!i||4&r||o)&&!c&&t.setAttribute(e,l=!0===l?"":l)}}},h=(t,e,n,l)=>{const s=11===e.h.nodeType&&e.h.host?e.h.host:e.h,r=t&&t.l||o,i=e.l||o;for(l in r)l in i||f(s,l,r[l],void 0,n,e.i);for(l in i)f(s,l,r[l],i[l],n,e.i)},$=(e,l,o)=>{const s=l.o[o];let r,i,c=0;if(n||(n="svg"===s.u),r=s.h=q.createElementNS(n?"http://www.w3.org/2000/svg":"http://www.w3.org/1999/xhtml",s.u),n&&"foreignObject"===s.u&&(n=!1),h(null,s,n),null!=t&&r["s-si"]!==t&&r.classList.add(r["s-si"]=t),s.o)for(c=0;c<s.o.length;++c)i=$(e,s,c),i&&r.appendChild(i);return"svg"===s.u?n=!1:"foreignObject"===r.tagName&&(n=!0),r},p=(t,n,l,o,s,r)=>{let i,c=t;for(c.shadowRoot&&c.tagName===e&&(c=c.shadowRoot);s<=r;++s)o[s]&&(i=$(null,l,s),i&&(o[s].h=i,c.insertBefore(i,n)))},w=(t,e,n,l)=>{for(;e<=n;++e)(l=t[e])&&l.h.remove()},y=(t,e)=>t.u===e.u,d=(t,e)=>{const l=e.h=t.h,o=t.o,s=e.o,r=e.u;n="svg"===r||"foreignObject"!==r&&n,h(t,e,n),null!==o&&null!==s?((t,e,n,l)=>{let o,s=0,r=0,i=e.length-1,c=e[0],u=e[i],a=l.length-1,f=l[0],h=l[a];for(;s<=i&&r<=a;)null==c?c=e[++s]:null==u?u=e[--i]:null==f?f=l[++r]:null==h?h=l[--a]:y(c,f)?(d(c,f),c=e[++s],f=l[++r]):y(u,h)?(d(u,h),u=e[--i],h=l[--a]):y(c,h)?(d(c,h),t.insertBefore(c.h,u.h.nextSibling),c=e[++s],h=l[--a]):y(u,f)?(d(u,f),t.insertBefore(u.h,c.h),u=e[--i],f=l[++r]):(o=$(e&&e[r],n,r),f=l[++r],o&&c.h.parentNode.insertBefore(o,c.h));s>i?p(t,null==l[a+1]?null:l[a+1].h,n,l,r,a):r>a&&w(e,s,i)})(l,o,e,s):null!==s?p(l,null,e,s,0,s.length-1):null!==o&&w(o,0,o.length-1),n&&"svg"===r&&(n=!1)},m=(t,e)=>{e&&!t.p&&e["s-p"]&&e["s-p"].push(new Promise((e=>t.p=e)))},b=(t,e)=>{if(t.i|=16,!(4&t.i))return m(t,t.m),K((()=>g(t,e)));t.i|=512},g=(t,e)=>{const n=t.g;return O(void 0,(()=>v(t,n,e)))},v=async(t,e,n)=>{const l=t.v,o=l["s-rc"];n&&(t=>{const e=t.S,n=t.v,l=e.i,o=((t,e)=>{let n=a(e);const l=U.get(n);if(t=11===t.nodeType?t:q,l)if("string"==typeof l){let e,o=u.get(t=t.head||t);o||u.set(t,o=new Set),o.has(n)||(e=q.createElement("style"),e.innerHTML=l,t.insertBefore(e,t.querySelector("link")),o&&o.add(n))}else t.adoptedStyleSheets.includes(l)||(t.adoptedStyleSheets=[...t.adoptedStyleSheets,l]);return n})(n.shadowRoot?n.shadowRoot:n.getRootNode(),e);10&l&&(n["s-sc"]=o,n.classList.add(o+"-h"))})(t);S(t,e),o&&(o.map((t=>t())),l["s-rc"]=void 0);{const e=l["s-p"],n=()=>j(t);0===e.length?n():(Promise.all(e).then(n),t.i|=4,e.length=0)}},S=(n,l)=>{try{l=l.render(),n.i&=-17,n.i|=2,((n,l)=>{const o=n.v,s=n.j||i(null,null),u=(t=>t&&t.u===c)(l)?l:r(null,null,l);e=o.tagName,u.u=null,u.i|=4,n.j=u,u.h=s.h=o.shadowRoot||o,t=o["s-sc"],d(s,u)})(n,l)}catch(t){F(t,n.v)}return null},j=t=>{const e=t.v,n=t.m;64&t.i||(t.i|=64,k(e),t.M(e),n||M()),t.p&&(t.p(),t.p=void 0),512&t.i&&J((()=>b(t,!1))),t.i&=-517},M=()=>{k(q.documentElement),J((()=>(t=>{const e=H.ce("appload",{detail:{namespace:"proto-logo-wc"}});return t.dispatchEvent(e),e})(W)))},O=(t,e)=>t&&t.then?t.then(e):e(),k=t=>t.classList.add("hydrated"),C=(t,e,n)=>{if(e.O){const l=Object.entries(e.O),o=t.prototype;if(l.map((([t,[l]])=>{(31&l||2&n&&32&l)&&Object.defineProperty(o,t,{get(){return((t,e)=>E(this).k.get(e))(0,t)},set(n){((t,e,n,l)=>{const o=E(t),r=o.k.get(e),i=o.i,c=o.g;n=((t,e)=>null==t||s(t)?t:2&e?parseFloat(t):1&e?t+"":t)(n,l.O[e][0]),8&i&&void 0!==r||n===r||Number.isNaN(r)&&Number.isNaN(n)||(o.k.set(e,n),c&&2==(18&i)&&b(o,!1))})(this,t,n,e)},configurable:!0,enumerable:!0})})),1&n){const e=new Map;o.attributeChangedCallback=function(t,n,l){H.jmp((()=>{const n=e.get(t);if(this.hasOwnProperty(n))l=this[n],delete this[n];else if(o.hasOwnProperty(n)&&"number"==typeof this[n]&&this[n]==l)return;this[n]=(null!==l||"boolean"!=typeof this[n])&&l}))},t.observedAttributes=l.filter((([t,e])=>15&e[0])).map((([t,n])=>{const l=n[1]||t;return e.set(l,t),l}))}}return t},x=(t,e={})=>{const n=[],l=e.exclude||[],o=W.customElements,s=q.head,r=s.querySelector("meta[charset]"),i=q.createElement("style"),c=[];let u,f=!0;Object.assign(H,e),H.C=new URL(e.resourcesUrl||"./",q.baseURI).href,t.map((t=>{t[1].map((e=>{const s={i:e[0],$:e[1],O:e[2],P:e[3]};s.O=e[2];const r=s.$,i=class extends HTMLElement{constructor(t){super(t),T(t=this,s),1&s.i&&t.attachShadow({mode:"open"})}connectedCallback(){u&&(clearTimeout(u),u=null),f?c.push(this):H.jmp((()=>(t=>{if(0==(1&H.i)){const e=E(t),n=e.S,l=()=>{};if(!(1&e.i)){e.i|=1;{let n=t;for(;n=n.parentNode||n.host;)if(n["s-p"]){m(e,e.m=n);break}}n.O&&Object.entries(n.O).map((([e,[n]])=>{if(31&n&&t.hasOwnProperty(e)){const n=t[e];delete t[e],t[e]=n}})),(async(t,e,n,l,o)=>{if(0==(32&e.i)){{if(e.i|=32,(o=R(n)).then){const t=()=>{};o=await o,t()}o.isProxied||(C(o,n,2),o.isProxied=!0);const t=()=>{};e.i|=8;try{new o(e)}catch(t){F(t)}e.i&=-9,t()}if(o.style){let t=o.style;const e=a(n);if(!U.has(e)){const l=()=>{};((t,e,n)=>{let l=U.get(t);_&&n?(l=l||new CSSStyleSheet,"string"==typeof l?l=e:l.replaceSync(e)):l=e,U.set(t,l)})(e,t,!!(1&n.i)),l()}}}const s=e.m,r=()=>b(e,!0);s&&s["s-rc"]?s["s-rc"].push(r):r()})(0,e,n)}l()}})(this)))}disconnectedCallback(){H.jmp((()=>{}))}componentOnReady(){return E(this).N}};s.T=t[0],l.includes(r)||o.get(r)||(n.push(r),o.define(r,C(i,s,1)))}))})),i.innerHTML=n+"{visibility:hidden}.hydrated{visibility:inherit}",i.setAttribute("data-styles",""),s.insertBefore(i,r?r.nextSibling:s.firstChild),f=!1,c.length?c.map((t=>t.connectedCallback())):H.jmp((()=>u=setTimeout(M,30)))},P=new WeakMap,E=t=>P.get(t),N=(t,e)=>P.set(e.g=t,e),T=(t,e)=>{const n={i:0,v:t,S:e,k:new Map};return n.N=new Promise((t=>n.M=t)),t["s-p"]=[],t["s-rc"]=[],P.set(t,n)},A=(t,e)=>e in t,F=(t,e)=>(0,console.error)(t,e),L=new Map,R=t=>{const e=t.$.replace(/-/g,"_"),n=t.T,l=L.get(n);return l?l[e]:import(`./${n}.entry.js`).then((t=>(L.set(n,t),t[e])),F)
|
|
2
|
+
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/},U=new Map,W="undefined"!=typeof window?window:{},q=W.document||{head:{}},H={i:0,C:"",jmp:t=>t(),raf:t=>requestAnimationFrame(t),ael:(t,e,n,l)=>t.addEventListener(e,n,l),rel:(t,e,n,l)=>t.removeEventListener(e,n,l),ce:(t,e)=>new CustomEvent(t,e)},V=t=>Promise.resolve(t),_=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(t){}return!1})(),z=[],B=[],D=(t,e)=>n=>{t.push(n),l||(l=!0,e&&4&H.i?J(I):H.raf(I))},G=t=>{for(let e=0;e<t.length;e++)try{t[e](performance.now())}catch(t){F(t)}t.length=0},I=()=>{G(z),G(B),(l=z.length>0)&&H.raf(I)},J=t=>V().then(t),K=D(B,!0);export{x as b,r as h,V as p,N as r}
|
|
@@ -1 +1 @@
|
|
|
1
|
-
import{r as c,h as l}from"./p-8375f33f.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",{width:z,height:z,viewBox:"0 0 818 874","fill-rule":"evenodd","clip-rule":"evenodd","stroke-linejoin":"round","stroke-miterlimit":"2"},l("g",{fill:c,stroke:a,"fill-opacity":M},l("path",{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",{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",{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",{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",{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",{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",{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",{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-1009345b.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",{width:z,height:z,viewBox:"0 0 818 874","fill-rule":"evenodd","clip-rule":"evenodd","stroke-linejoin":"round","stroke-miterlimit":"2"},l("g",{fill:c,stroke:a,"fill-opacity":M},l("path",{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",{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",{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",{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",{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",{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",{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",{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,b as p}from"./p-
|
|
1
|
+
import{p as o,b as p}from"./p-1009345b.js";(()=>{const p=import.meta.url,r={};return""!==p&&(r.resourcesUrl=new URL(".",p).href),o(r)})().then((o=>p([["p-cffd7261",[[1,"my-logo",{fill:[1],stroke:[1],opacity:[2],size:[2]}]]]],o)));
|
|
@@ -221,7 +221,8 @@ export declare type ErrorHandler = (err: any, element?: HTMLElement) => void;
|
|
|
221
221
|
*/
|
|
222
222
|
export declare const setMode: (handler: ResolutionHandler) => void;
|
|
223
223
|
/**
|
|
224
|
-
* getMode
|
|
224
|
+
* `getMode()` is used for libraries which provide multiple "modes" for styles.
|
|
225
|
+
* @param ref a reference to the node to get styles for
|
|
225
226
|
*/
|
|
226
227
|
export declare function getMode<T = string | undefined>(ref: any): T;
|
|
227
228
|
export declare function setPlatformHelpers(helpers: {
|
|
@@ -234,6 +235,8 @@ export declare function setPlatformHelpers(helpers: {
|
|
|
234
235
|
/**
|
|
235
236
|
* Get the base path to where the assets can be found. Use `setAssetPath(path)`
|
|
236
237
|
* if the path needs to be customized.
|
|
238
|
+
* @param path the path to use in calculating the asset path. this value will be
|
|
239
|
+
* used in conjunction with the base asset path
|
|
237
240
|
*/
|
|
238
241
|
export declare function getAssetPath(path: string): string;
|
|
239
242
|
/**
|
|
@@ -246,18 +249,22 @@ export declare function getAssetPath(path: string): string;
|
|
|
246
249
|
* `setAssetPath(document.currentScript.src)`, or using a bundler's replace plugin to
|
|
247
250
|
* dynamically set the path at build time, such as `setAssetPath(process.env.ASSET_PATH)`.
|
|
248
251
|
* But do note that this configuration depends on how your script is bundled, or lack of
|
|
249
|
-
*
|
|
252
|
+
* bundling, and where your assets can be loaded from. Additionally custom bundling
|
|
250
253
|
* will have to ensure the static assets are copied to its build directory.
|
|
254
|
+
* @param path the asset path to set
|
|
251
255
|
*/
|
|
252
256
|
export declare function setAssetPath(path: string): string;
|
|
253
257
|
/**
|
|
254
|
-
*
|
|
258
|
+
* Retrieve a Stencil element for a given reference
|
|
259
|
+
* @param ref the ref to get the Stencil element for
|
|
255
260
|
*/
|
|
256
261
|
export declare function getElement(ref: any): HTMLStencilElement;
|
|
257
262
|
/**
|
|
258
263
|
* Schedules a new render of the given instance or element even if no state changed.
|
|
259
264
|
*
|
|
260
|
-
* Notice `forceUpdate()` is not
|
|
265
|
+
* Notice `forceUpdate()` is not synchronous and might perform the DOM render in the next frame.
|
|
266
|
+
*
|
|
267
|
+
* @param ref the node/element to force the re-render of
|
|
261
268
|
*/
|
|
262
269
|
export declare function forceUpdate(ref: any): void;
|
|
263
270
|
/**
|
|
@@ -272,6 +279,8 @@ export interface HTMLStencilElement extends HTMLElement {
|
|
|
272
279
|
* in the best moment to perform DOM mutation without causing layout thrashing.
|
|
273
280
|
*
|
|
274
281
|
* For further information: https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing
|
|
282
|
+
*
|
|
283
|
+
* @param task the DOM-write to schedule
|
|
275
284
|
*/
|
|
276
285
|
export declare function writeTask(task: RafCallback): void;
|
|
277
286
|
/**
|
|
@@ -279,6 +288,8 @@ export declare function writeTask(task: RafCallback): void;
|
|
|
279
288
|
* in the best moment to perform DOM reads without causing layout thrashing.
|
|
280
289
|
*
|
|
281
290
|
* For further information: https://developers.google.com/web/fundamentals/performance/rendering/avoid-large-complex-layouts-and-layout-thrashing
|
|
291
|
+
*
|
|
292
|
+
* @param task the DOM-read to schedule
|
|
282
293
|
*/
|
|
283
294
|
export declare function readTask(task: RafCallback): void;
|
|
284
295
|
/**
|
package/package.json
CHANGED
|
@@ -1,6 +1,6 @@
|
|
|
1
1
|
{
|
|
2
2
|
"name": "proto-logo-wc",
|
|
3
|
-
"version": "0.0.
|
|
3
|
+
"version": "0.0.294",
|
|
4
4
|
"description": "Stencil Component Starter",
|
|
5
5
|
"main": "dist/index.cjs.js",
|
|
6
6
|
"module": "dist/index.js",
|
|
@@ -27,7 +27,7 @@
|
|
|
27
27
|
"format": "prettier --write src"
|
|
28
28
|
},
|
|
29
29
|
"dependencies": {
|
|
30
|
-
"@stencil/core": "2.18.
|
|
30
|
+
"@stencil/core": "2.18.1"
|
|
31
31
|
},
|
|
32
32
|
"devDependencies": {
|
|
33
33
|
"@types/jest": "29.1.1",
|
|
@@ -1,2 +0,0 @@
|
|
|
1
|
-
let t,e,n=!1,l=!1;const o="undefined"!=typeof window?window:{},s=o.document||{head:{}},r={t:0,l:"",jmp:t=>t(),raf:t=>requestAnimationFrame(t),ael:(t,e,n,l)=>t.addEventListener(e,n,l),rel:(t,e,n,l)=>t.removeEventListener(e,n,l),ce:(t,e)=>new CustomEvent(t,e)},i=t=>Promise.resolve(t),c=(()=>{try{return new CSSStyleSheet,"function"==typeof(new CSSStyleSheet).replaceSync}catch(t){}return!1})(),u=new WeakMap,a=t=>"sc-"+t.o,f={},h=t=>"object"==(t=typeof t)||"function"===t,$=(t,e,...n)=>{let l=null,o=!1,s=!1;const r=[],i=e=>{for(let n=0;n<e.length;n++)l=e[n],Array.isArray(l)?i(l):null!=l&&"boolean"!=typeof l&&((o="function"!=typeof t&&!h(l))&&(l+=""),o&&s?r[r.length-1].i+=l:r.push(o?p(null,l):l),s=o)};i(n);const c=p(t,null);return c.u=e,r.length>0&&(c.h=r),c},p=(t,e)=>({t:0,$:t,i:e,p:null,h:null,u:null}),w={},y=(t,e,n,l,o,s)=>{if(n!==l){let r=W(t,e);e.toLowerCase();{const i=h(l);if((r||i&&null!==l)&&!o)try{if(t.tagName.includes("-"))t[e]=l;else{const o=null==l?"":l;"list"===e?r=!1:null!=n&&t[e]==o||(t[e]=o)}}catch(t){}null==l||!1===l?!1===l&&""!==t.getAttribute(e)||t.removeAttribute(e):(!r||4&s||o)&&!i&&t.setAttribute(e,l=!0===l?"":l)}}},d=(t,e,n,l)=>{const o=11===e.p.nodeType&&e.p.host?e.p.host:e.p,s=t&&t.u||f,r=e.u||f;for(l in s)l in r||y(o,l,s[l],void 0,n,e.t);for(l in r)y(o,l,s[l],r[l],n,e.t)},m=(e,l,o)=>{const r=l.h[o];let i,c,u=0;if(n||(n="svg"===r.$),i=r.p=s.createElementNS(n?"http://www.w3.org/2000/svg":"http://www.w3.org/1999/xhtml",r.$),n&&"foreignObject"===r.$&&(n=!1),d(null,r,n),null!=t&&i["s-si"]!==t&&i.classList.add(i["s-si"]=t),r.h)for(u=0;u<r.h.length;++u)c=m(e,r,u),c&&i.appendChild(c);return"svg"===r.$?n=!1:"foreignObject"===i.tagName&&(n=!0),i},b=(t,n,l,o,s,r)=>{let i,c=t;for(c.shadowRoot&&c.tagName===e&&(c=c.shadowRoot);s<=r;++s)o[s]&&(i=m(null,l,s),i&&(o[s].p=i,c.insertBefore(i,n)))},g=(t,e,n,l)=>{for(;e<=n;++e)(l=t[e])&&l.p.remove()},v=(t,e)=>t.$===e.$,S=(t,e)=>{const l=e.p=t.p,o=t.h,s=e.h,r=e.$;n="svg"===r||"foreignObject"!==r&&n,d(t,e,n),null!==o&&null!==s?((t,e,n,l)=>{let o,s=0,r=0,i=e.length-1,c=e[0],u=e[i],a=l.length-1,f=l[0],h=l[a];for(;s<=i&&r<=a;)null==c?c=e[++s]:null==u?u=e[--i]:null==f?f=l[++r]:null==h?h=l[--a]:v(c,f)?(S(c,f),c=e[++s],f=l[++r]):v(u,h)?(S(u,h),u=e[--i],h=l[--a]):v(c,h)?(S(c,h),t.insertBefore(c.p,u.p.nextSibling),c=e[++s],h=l[--a]):v(u,f)?(S(u,f),t.insertBefore(u.p,c.p),u=e[--i],f=l[++r]):(o=m(e&&e[r],n,r),f=l[++r],o&&c.p.parentNode.insertBefore(o,c.p));s>i?b(t,null==l[a+1]?null:l[a+1].p,n,l,r,a):r>a&&g(e,s,i)})(l,o,e,s):null!==s?b(l,null,e,s,0,s.length-1):null!==o&&g(o,0,o.length-1),n&&"svg"===r&&(n=!1)},j=(t,e)=>{e&&!t.m&&e["s-p"]&&e["s-p"].push(new Promise((e=>t.m=e)))},M=(t,e)=>{if(t.t|=16,!(4&t.t))return j(t,t.g),K((()=>O(t,e)));t.t|=512},O=(t,e)=>{const n=t.v;return E(void 0,(()=>k(t,n,e)))},k=async(t,e,n)=>{const l=t.S,o=l["s-rc"];n&&(t=>{const e=t.j,n=t.S,l=e.t,o=((t,e)=>{let n=a(e);const l=_.get(n);if(t=11===t.nodeType?t:s,l)if("string"==typeof l){let e,o=u.get(t=t.head||t);o||u.set(t,o=new Set),o.has(n)||(e=s.createElement("style"),e.innerHTML=l,t.insertBefore(e,t.querySelector("link")),o&&o.add(n))}else t.adoptedStyleSheets.includes(l)||(t.adoptedStyleSheets=[...t.adoptedStyleSheets,l]);return n})(n.shadowRoot?n.shadowRoot:n.getRootNode(),e);10&l&&(n["s-sc"]=o,n.classList.add(o+"-h"))})(t);C(t,e),o&&(o.map((t=>t())),l["s-rc"]=void 0);{const e=l["s-p"],n=()=>x(t);0===e.length?n():(Promise.all(e).then(n),t.t|=4,e.length=0)}},C=(n,l)=>{try{l=l.render(),n.t&=-17,n.t|=2,((n,l)=>{const o=n.S,s=n.M||p(null,null),r=(t=>t&&t.$===w)(l)?l:$(null,null,l);e=o.tagName,r.$=null,r.t|=4,n.M=r,r.p=s.p=o.shadowRoot||o,t=o["s-sc"],S(s,r)})(n,l)}catch(t){q(t,n.S)}return null},x=t=>{const e=t.S,n=t.g;64&t.t||(t.t|=64,N(e),t.O(e),n||P()),t.m&&(t.m(),t.m=void 0),512&t.t&&J((()=>M(t,!1))),t.t&=-517},P=()=>{N(s.documentElement),J((()=>(t=>{const e=r.ce("appload",{detail:{namespace:"proto-logo-wc"}});return t.dispatchEvent(e),e})(o)))},E=(t,e)=>t&&t.then?t.then(e):e(),N=t=>t.classList.add("hydrated"),T=(t,e,n)=>{if(e.k){const l=Object.entries(e.k),o=t.prototype;if(l.map((([t,[l]])=>{(31&l||2&n&&32&l)&&Object.defineProperty(o,t,{get(){return((t,e)=>L(this).C.get(e))(0,t)},set(n){((t,e,n,l)=>{const o=L(t),s=o.C.get(e),r=o.t,i=o.v;n=((t,e)=>null==t||h(t)?t:2&e?parseFloat(t):1&e?t+"":t)(n,l.k[e][0]),8&r&&void 0!==s||n===s||Number.isNaN(s)&&Number.isNaN(n)||(o.C.set(e,n),i&&2==(18&r)&&M(o,!1))})(this,t,n,e)},configurable:!0,enumerable:!0})})),1&n){const e=new Map;o.attributeChangedCallback=function(t,n,l){r.jmp((()=>{const n=e.get(t);if(this.hasOwnProperty(n))l=this[n],delete this[n];else if(o.hasOwnProperty(n)&&"number"==typeof this[n]&&this[n]==l)return;this[n]=(null!==l||"boolean"!=typeof this[n])&&l}))},t.observedAttributes=l.filter((([t,e])=>15&e[0])).map((([t,n])=>{const l=n[1]||t;return e.set(l,t),l}))}}return t},A=(t,e={})=>{const n=[],l=e.exclude||[],i=o.customElements,u=s.head,f=u.querySelector("meta[charset]"),h=s.createElement("style"),$=[];let p,w=!0;Object.assign(r,e),r.l=new URL(e.resourcesUrl||"./",s.baseURI).href,t.map((t=>{t[1].map((e=>{const o={t:e[0],o:e[1],k:e[2],P:e[3]};o.k=e[2];const s=o.o,u=class extends HTMLElement{constructor(t){super(t),U(t=this,o),1&o.t&&t.attachShadow({mode:"open"})}connectedCallback(){p&&(clearTimeout(p),p=null),w?$.push(this):r.jmp((()=>(t=>{if(0==(1&r.t)){const e=L(t),n=e.j,l=()=>{};if(!(1&e.t)){e.t|=1;{let n=t;for(;n=n.parentNode||n.host;)if(n["s-p"]){j(e,e.g=n);break}}n.k&&Object.entries(n.k).map((([e,[n]])=>{if(31&n&&t.hasOwnProperty(e)){const n=t[e];delete t[e],t[e]=n}})),(async(t,e,n,l,o)=>{if(0==(32&e.t)){{if(e.t|=32,(o=V(n)).then){const t=()=>{};o=await o,t()}o.isProxied||(T(o,n,2),o.isProxied=!0);const t=()=>{};e.t|=8;try{new o(e)}catch(t){q(t)}e.t&=-9,t()}if(o.style){let t=o.style;const e=a(n);if(!_.has(e)){const l=()=>{};((t,e,n)=>{let l=_.get(t);c&&n?(l=l||new CSSStyleSheet,"string"==typeof l?l=e:l.replaceSync(e)):l=e,_.set(t,l)})(e,t,!!(1&n.t)),l()}}}const s=e.g,r=()=>M(e,!0);s&&s["s-rc"]?s["s-rc"].push(r):r()})(0,e,n)}l()}})(this)))}disconnectedCallback(){r.jmp((()=>{}))}componentOnReady(){return L(this).N}};o.T=t[0],l.includes(s)||i.get(s)||(n.push(s),i.define(s,T(u,o,1)))}))})),h.innerHTML=n+"{visibility:hidden}.hydrated{visibility:inherit}",h.setAttribute("data-styles",""),u.insertBefore(h,f?f.nextSibling:u.firstChild),w=!1,$.length?$.map((t=>t.connectedCallback())):r.jmp((()=>p=setTimeout(P,30)))},F=new WeakMap,L=t=>F.get(t),R=(t,e)=>F.set(e.v=t,e),U=(t,e)=>{const n={t:0,S:t,j:e,C:new Map};return n.N=new Promise((t=>n.O=t)),t["s-p"]=[],t["s-rc"]=[],F.set(t,n)},W=(t,e)=>e in t,q=(t,e)=>(0,console.error)(t,e),H=new Map,V=t=>{const e=t.o.replace(/-/g,"_"),n=t.T,l=H.get(n);return l?l[e]:import(`./${n}.entry.js`).then((t=>(H.set(n,t),t[e])),q)
|
|
2
|
-
/*!__STENCIL_STATIC_IMPORT_SWITCH__*/},_=new Map,z=[],B=[],D=(t,e)=>n=>{t.push(n),l||(l=!0,e&&4&r.t?J(I):r.raf(I))},G=t=>{for(let e=0;e<t.length;e++)try{t[e](performance.now())}catch(t){q(t)}t.length=0},I=()=>{G(z),G(B),(l=z.length>0)&&r.raf(I)},J=t=>i().then(t),K=D(B,!0);export{A as b,$ as h,i as p,R as r}
|