@unikue/react-native-pull-refresh 1.2.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/LICENSE +20 -0
- package/README.md +96 -0
- package/dist/commonjs/DefaultLoading.js +89 -0
- package/dist/commonjs/DefaultLoading.js.map +1 -0
- package/dist/commonjs/LoadMore.js +31 -0
- package/dist/commonjs/LoadMore.js.map +1 -0
- package/dist/commonjs/LottieLoading.js +73 -0
- package/dist/commonjs/LottieLoading.js.map +1 -0
- package/dist/commonjs/PullRefresh.js +326 -0
- package/dist/commonjs/PullRefresh.js.map +1 -0
- package/dist/commonjs/assets/PinJump.json +1 -0
- package/dist/commonjs/assets/Watermelon.json +1 -0
- package/dist/commonjs/assets/hero.json +1 -0
- package/dist/commonjs/assets/hero.lottie +0 -0
- package/dist/commonjs/constants.js +33 -0
- package/dist/commonjs/constants.js.map +1 -0
- package/dist/commonjs/context.js +15 -0
- package/dist/commonjs/context.js.map +1 -0
- package/dist/commonjs/hooks.js +63 -0
- package/dist/commonjs/hooks.js.map +1 -0
- package/dist/commonjs/index.js +66 -0
- package/dist/commonjs/index.js.map +1 -0
- package/dist/commonjs/package.json +1 -0
- package/dist/commonjs/types/index.d.js +2 -0
- package/dist/commonjs/types/index.d.js.map +1 -0
- package/dist/commonjs/utils.js +53 -0
- package/dist/commonjs/utils.js.map +1 -0
- package/dist/commonjs/z.polyfily.js +4 -0
- package/dist/commonjs/z.polyfily.js.map +1 -0
- package/dist/module/DefaultLoading.js +80 -0
- package/dist/module/DefaultLoading.js.map +1 -0
- package/dist/module/LoadMore.js +25 -0
- package/dist/module/LoadMore.js.map +1 -0
- package/dist/module/LottieLoading.js +65 -0
- package/dist/module/LottieLoading.js.map +1 -0
- package/dist/module/PullRefresh.js +321 -0
- package/dist/module/PullRefresh.js.map +1 -0
- package/dist/module/assets/PinJump.json +1 -0
- package/dist/module/assets/Watermelon.json +1 -0
- package/dist/module/assets/hero.json +1 -0
- package/dist/module/assets/hero.lottie +0 -0
- package/dist/module/constants.js +28 -0
- package/dist/module/constants.js.map +1 -0
- package/dist/module/context.js +12 -0
- package/dist/module/context.js.map +1 -0
- package/dist/module/hooks.js +54 -0
- package/dist/module/hooks.js.map +1 -0
- package/dist/module/index.js +9 -0
- package/dist/module/index.js.map +1 -0
- package/dist/module/types/index.d.js +2 -0
- package/dist/module/types/index.d.js.map +1 -0
- package/dist/module/utils.js +40 -0
- package/dist/module/utils.js.map +1 -0
- package/dist/module/z.polyfily.js +4 -0
- package/dist/module/z.polyfily.js.map +1 -0
- package/dist/typescript/DefaultLoading.d.ts +9 -0
- package/dist/typescript/DefaultLoading.d.ts.map +1 -0
- package/dist/typescript/LoadMore.d.ts +8 -0
- package/dist/typescript/LoadMore.d.ts.map +1 -0
- package/dist/typescript/LottieLoading.d.ts +3 -0
- package/dist/typescript/LottieLoading.d.ts.map +1 -0
- package/dist/typescript/PullRefresh.d.ts +17 -0
- package/dist/typescript/PullRefresh.d.ts.map +1 -0
- package/dist/typescript/constants.d.ts +19 -0
- package/dist/typescript/constants.d.ts.map +1 -0
- package/dist/typescript/context.d.ts +17 -0
- package/dist/typescript/context.d.ts.map +1 -0
- package/dist/typescript/hooks.d.ts +30 -0
- package/dist/typescript/hooks.d.ts.map +1 -0
- package/dist/typescript/index.d.ts +7 -0
- package/dist/typescript/index.d.ts.map +1 -0
- package/dist/typescript/utils.d.ts +8 -0
- package/dist/typescript/utils.d.ts.map +1 -0
- package/dist/typescript/z.polyfily.d.ts +5 -0
- package/dist/typescript/z.polyfily.d.ts.map +1 -0
- package/package.json +123 -0
|
@@ -0,0 +1,321 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
import React, { memo, useCallback } from 'react';
|
|
4
|
+
import { StyleSheet, View } from 'react-native';
|
|
5
|
+
import { Gesture, GestureDetector } from 'react-native-gesture-handler';
|
|
6
|
+
import { Extrapolate, interpolate, runOnJS, runOnUI, useAnimatedScrollHandler, useAnimatedStyle, useSharedValue } from 'react-native-reanimated';
|
|
7
|
+
import { FnNull, LogFlag, PullingRefreshStatus, SystemOffset } from './constants';
|
|
8
|
+
import { MrPullRefreshContext } from './context';
|
|
9
|
+
import { PulldownLoading, PullupLoading } from './DefaultLoading';
|
|
10
|
+
import { actuallyMove, checkChildren, isPromise, withAnimation } from './utils';
|
|
11
|
+
import { jsx as _jsx, jsxs as _jsxs } from "react/jsx-runtime";
|
|
12
|
+
const RefreshWrapper = ({
|
|
13
|
+
onPulldownRefresh = FnNull,
|
|
14
|
+
onPullupRefresh = FnNull,
|
|
15
|
+
pulldownHeight = 80,
|
|
16
|
+
pullupHeight = 100,
|
|
17
|
+
pulldownLoading = /*#__PURE__*/_jsx(PulldownLoading, {}),
|
|
18
|
+
pullupLoading = /*#__PURE__*/_jsx(PullupLoading, {}),
|
|
19
|
+
containerFactor = 0.5,
|
|
20
|
+
pullingFactor = 2.2,
|
|
21
|
+
pullupEnabled = false /* TODO: will re-render */,
|
|
22
|
+
style,
|
|
23
|
+
children
|
|
24
|
+
}) => {
|
|
25
|
+
// custom
|
|
26
|
+
const pulldownState = useSharedValue(PullingRefreshStatus.IDLE);
|
|
27
|
+
const pullupState = useSharedValue(PullingRefreshStatus.IDLE);
|
|
28
|
+
const containerY = useSharedValue(0);
|
|
29
|
+
const contentY = useSharedValue(0);
|
|
30
|
+
const scrollerOffsetY = useSharedValue(0);
|
|
31
|
+
const panTranslateY = useSharedValue(0);
|
|
32
|
+
const recordValue = useSharedValue(0);
|
|
33
|
+
const lockIDLE = useSharedValue(0);
|
|
34
|
+
|
|
35
|
+
// TODO: By ClassComponent ?
|
|
36
|
+
const onPulldownLoading = async () => {
|
|
37
|
+
const res = onPulldownRefresh();
|
|
38
|
+
if (isPromise(res)) {
|
|
39
|
+
await res;
|
|
40
|
+
}
|
|
41
|
+
runOnUI(() => {
|
|
42
|
+
'worklet';
|
|
43
|
+
|
|
44
|
+
pulldownState.value = PullingRefreshStatus.BACKUP;
|
|
45
|
+
panTranslateY.value = withAnimation(0, () => {
|
|
46
|
+
pulldownState.value = PullingRefreshStatus.IDLE;
|
|
47
|
+
});
|
|
48
|
+
})();
|
|
49
|
+
};
|
|
50
|
+
const onPullupLoading = async () => {
|
|
51
|
+
const res = onPullupRefresh();
|
|
52
|
+
if (isPromise(res)) {
|
|
53
|
+
await res;
|
|
54
|
+
}
|
|
55
|
+
runOnUI(() => {
|
|
56
|
+
'worklet';
|
|
57
|
+
|
|
58
|
+
pullupState.value = PullingRefreshStatus.BACKUP;
|
|
59
|
+
panTranslateY.value = withAnimation(0, () => {
|
|
60
|
+
pullupState.value = PullingRefreshStatus.IDLE;
|
|
61
|
+
});
|
|
62
|
+
})();
|
|
63
|
+
};
|
|
64
|
+
const native = Gesture.Native();
|
|
65
|
+
// FIXME: 响应有一个延时偏差,本来就很难搞呀
|
|
66
|
+
const panGesture = Gesture.Pan().onStart(event => {
|
|
67
|
+
'worklet';
|
|
68
|
+
|
|
69
|
+
// FIXME: Check Pull Status.
|
|
70
|
+
if (pulldownState.value >= PullingRefreshStatus.PULLINGBACK || pullupState.value >= PullingRefreshStatus.PULLINGBACK) {
|
|
71
|
+
return;
|
|
72
|
+
}
|
|
73
|
+
if (scrollerOffsetY.value <= SystemOffset && pulldownState.value === PullingRefreshStatus.IDLE && event.translationY > 0) {
|
|
74
|
+
pulldownState.value = PullingRefreshStatus.PULLING;
|
|
75
|
+
recordValue.value = event.translationY;
|
|
76
|
+
}
|
|
77
|
+
if (scrollerOffsetY.value <= contentY.value - containerY.value - SystemOffset && pullupState.value === PullingRefreshStatus.IDLE && event.translationY < 0) {
|
|
78
|
+
pullupState.value = PullingRefreshStatus.PULLING;
|
|
79
|
+
recordValue.value = event.translationY;
|
|
80
|
+
}
|
|
81
|
+
|
|
82
|
+
// eslint-disable-next-line no-console, @typescript-eslint/no-unused-expressions, @typescript-eslint/no-unnecessary-condition
|
|
83
|
+
LogFlag && console.log('onStart', pulldownState.value, pullupState.value);
|
|
84
|
+
}).onChange(event => {
|
|
85
|
+
'worklet';
|
|
86
|
+
|
|
87
|
+
// when loading do nothing.
|
|
88
|
+
if (pulldownState.value >= PullingRefreshStatus.PULLINGBACK || pullupState.value >= PullingRefreshStatus.PULLINGBACK) {
|
|
89
|
+
return;
|
|
90
|
+
}
|
|
91
|
+
|
|
92
|
+
// pull down
|
|
93
|
+
if (event.translationY > 0) {
|
|
94
|
+
if (pullupState.value !== PullingRefreshStatus.IDLE) {
|
|
95
|
+
// FIXME: The delay released here will trigger the freezing of the bottom scroll,
|
|
96
|
+
// which is more obvious on Android than on iOS.
|
|
97
|
+
lockIDLE.value = 1;
|
|
98
|
+
pullupState.value = PullingRefreshStatus.IDLE;
|
|
99
|
+
}
|
|
100
|
+
if (scrollerOffsetY.value <= SystemOffset) {
|
|
101
|
+
const newStatus = actuallyMove(event.translationY, containerY.value) > pulldownHeight * pullingFactor ? PullingRefreshStatus.PULLINGGO : PullingRefreshStatus.PULLING;
|
|
102
|
+
if (newStatus !== pulldownState.value) {
|
|
103
|
+
if (pulldownState.value === PullingRefreshStatus.IDLE) {
|
|
104
|
+
recordValue.value = event.translationY;
|
|
105
|
+
}
|
|
106
|
+
pulldownState.value = newStatus;
|
|
107
|
+
}
|
|
108
|
+
const move = event.translationY - recordValue.value;
|
|
109
|
+
if (move < 0) {
|
|
110
|
+
pulldownState.value = PullingRefreshStatus.IDLE;
|
|
111
|
+
} else {
|
|
112
|
+
panTranslateY.value = move;
|
|
113
|
+
}
|
|
114
|
+
}
|
|
115
|
+
}
|
|
116
|
+
|
|
117
|
+
// FIXME: release switch has an issue.
|
|
118
|
+
if (event.translationY < 0) {
|
|
119
|
+
// up
|
|
120
|
+
if (pulldownState.value !== PullingRefreshStatus.IDLE) {
|
|
121
|
+
lockIDLE.value = 1;
|
|
122
|
+
pulldownState.value = PullingRefreshStatus.IDLE;
|
|
123
|
+
}
|
|
124
|
+
|
|
125
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions, @typescript-eslint/no-unnecessary-condition
|
|
126
|
+
LogFlag &&
|
|
127
|
+
// eslint-disable-next-line no-console
|
|
128
|
+
console.log('onChangeBottom', scrollerOffsetY.value >= contentY.value - containerY.value - SystemOffset);
|
|
129
|
+
if (scrollerOffsetY.value >= contentY.value - containerY.value - SystemOffset) {
|
|
130
|
+
const newStatus = actuallyMove(-event.translationY, containerY.value) > pullupHeight * pullingFactor ? PullingRefreshStatus.PULLINGGO : PullingRefreshStatus.PULLING;
|
|
131
|
+
if (newStatus !== pullupState.value) {
|
|
132
|
+
// TODO: 个人感觉是这个值记录得有问题
|
|
133
|
+
if (pullupState.value === PullingRefreshStatus.IDLE) {
|
|
134
|
+
recordValue.value = event.translationY;
|
|
135
|
+
}
|
|
136
|
+
pullupState.value = newStatus;
|
|
137
|
+
}
|
|
138
|
+
const move = event.translationY - recordValue.value;
|
|
139
|
+
|
|
140
|
+
// if (move > 0) {
|
|
141
|
+
// pullupState.value = PullingRefreshStatus.IDLE;
|
|
142
|
+
// } else {
|
|
143
|
+
panTranslateY.value = move;
|
|
144
|
+
// }
|
|
145
|
+
}
|
|
146
|
+
}
|
|
147
|
+
if (lockIDLE.value) {
|
|
148
|
+
lockIDLE.value = 0;
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// FIXME: when fast move, need recheck it
|
|
152
|
+
|
|
153
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions, @typescript-eslint/no-unnecessary-condition
|
|
154
|
+
LogFlag &&
|
|
155
|
+
// eslint-disable-next-line no-console
|
|
156
|
+
console.log('onChange-value', scrollerOffsetY.value, contentY.value - containerY.value, contentY.value, containerY.value, scrollerOffsetY.value - (contentY.value - containerY.value));
|
|
157
|
+
|
|
158
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions, @typescript-eslint/no-unnecessary-condition
|
|
159
|
+
LogFlag &&
|
|
160
|
+
// eslint-disable-next-line no-console
|
|
161
|
+
console.log('onChange', pulldownState.value, pullupState.value);
|
|
162
|
+
}).onEnd(() => {
|
|
163
|
+
'worklet';
|
|
164
|
+
|
|
165
|
+
if (pulldownState.value >= PullingRefreshStatus.PULLINGBACK || pullupState.value >= PullingRefreshStatus.PULLINGBACK) {
|
|
166
|
+
return;
|
|
167
|
+
}
|
|
168
|
+
|
|
169
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions, @typescript-eslint/no-unnecessary-condition
|
|
170
|
+
LogFlag &&
|
|
171
|
+
// eslint-disable-next-line no-console
|
|
172
|
+
console.log(scrollerOffsetY.value >= contentY.value - containerY.value - SystemOffset);
|
|
173
|
+
if (scrollerOffsetY.value <= SystemOffset) {
|
|
174
|
+
if (pulldownState.value !== PullingRefreshStatus.IDLE) {
|
|
175
|
+
pulldownState.value = panTranslateY.value >= pulldownHeight * pullingFactor ? PullingRefreshStatus.PULLINGBACK : PullingRefreshStatus.BACKUP;
|
|
176
|
+
if (pulldownState.value === PullingRefreshStatus.BACKUP) {
|
|
177
|
+
panTranslateY.value = withAnimation(0, () => {
|
|
178
|
+
pulldownState.value = PullingRefreshStatus.IDLE;
|
|
179
|
+
});
|
|
180
|
+
}
|
|
181
|
+
if (pulldownState.value === PullingRefreshStatus.PULLINGBACK) {
|
|
182
|
+
panTranslateY.value = withAnimation(pulldownHeight, () => {
|
|
183
|
+
pulldownState.value = PullingRefreshStatus.LOADING;
|
|
184
|
+
runOnJS(onPulldownLoading)();
|
|
185
|
+
});
|
|
186
|
+
}
|
|
187
|
+
}
|
|
188
|
+
}
|
|
189
|
+
if (scrollerOffsetY.value >= contentY.value - containerY.value - SystemOffset) {
|
|
190
|
+
if (pullupState.value !== PullingRefreshStatus.IDLE) {
|
|
191
|
+
pullupState.value = -panTranslateY.value >= pullupHeight * pullingFactor ? PullingRefreshStatus.PULLINGBACK : PullingRefreshStatus.BACKUP;
|
|
192
|
+
if (pullupState.value === PullingRefreshStatus.BACKUP) {
|
|
193
|
+
panTranslateY.value = withAnimation(0, () => {
|
|
194
|
+
pullupState.value = PullingRefreshStatus.IDLE;
|
|
195
|
+
});
|
|
196
|
+
}
|
|
197
|
+
if (pullupState.value === PullingRefreshStatus.PULLINGBACK) {
|
|
198
|
+
panTranslateY.value = withAnimation(-pullupHeight, () => {
|
|
199
|
+
pullupState.value = PullingRefreshStatus.LOADING;
|
|
200
|
+
runOnJS(onPullupLoading)();
|
|
201
|
+
});
|
|
202
|
+
}
|
|
203
|
+
}
|
|
204
|
+
}
|
|
205
|
+
if (scrollerOffsetY.value >= SystemOffset && scrollerOffsetY.value <= contentY.value - containerY.value - SystemOffset) {
|
|
206
|
+
if (pulldownState.value !== PullingRefreshStatus.IDLE) {
|
|
207
|
+
pulldownState.value = PullingRefreshStatus.IDLE;
|
|
208
|
+
}
|
|
209
|
+
if (pullupState.value !== PullingRefreshStatus.IDLE) {
|
|
210
|
+
pullupState.value = PullingRefreshStatus.IDLE;
|
|
211
|
+
}
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions, @typescript-eslint/no-unnecessary-condition
|
|
215
|
+
LogFlag &&
|
|
216
|
+
// eslint-disable-next-line no-console
|
|
217
|
+
console.log('onEnd-value', scrollerOffsetY.value, contentY.value - containerY.value, contentY.value, containerY.value, scrollerOffsetY.value - (contentY.value - containerY.value));
|
|
218
|
+
|
|
219
|
+
// eslint-disable-next-line @typescript-eslint/no-unused-expressions, @typescript-eslint/no-unnecessary-condition, no-console
|
|
220
|
+
LogFlag && console.log('onEnd', pulldownState.value, pullupState.value);
|
|
221
|
+
});
|
|
222
|
+
const contentAnimation = useAnimatedStyle(() => {
|
|
223
|
+
const isPulldown = pulldownState.value !== PullingRefreshStatus.IDLE;
|
|
224
|
+
let input = [0, pulldownHeight, containerY.value];
|
|
225
|
+
let output = [0, pulldownHeight, containerY.value * containerFactor];
|
|
226
|
+
if (!isPulldown) {
|
|
227
|
+
input = [-containerY.value, -pullupHeight, 0];
|
|
228
|
+
output = [-containerY.value * containerFactor, -pullupHeight, 0];
|
|
229
|
+
}
|
|
230
|
+
return {
|
|
231
|
+
/**
|
|
232
|
+
* FIXME: #issue 👀
|
|
233
|
+
* Pullup to bounce back failed during the quick move down to up
|
|
234
|
+
* at the bottom on ios and android simulator.
|
|
235
|
+
* However, it works fine on the real device.
|
|
236
|
+
* Maybe the simulator cant tracking gestures by mouse normally.
|
|
237
|
+
* */
|
|
238
|
+
overflowY: /* for web */
|
|
239
|
+
pullupState.value !== PullingRefreshStatus.IDLE || pulldownState.value !== PullingRefreshStatus.IDLE || lockIDLE.value ? 'hidden' : 'auto',
|
|
240
|
+
pointerEvents: pullupState.value !== PullingRefreshStatus.IDLE || pulldownState.value !== PullingRefreshStatus.IDLE || lockIDLE.value ? 'none' : 'auto',
|
|
241
|
+
transform: [{
|
|
242
|
+
translateY: interpolate(panTranslateY.value, input, output, Extrapolate.CLAMP)
|
|
243
|
+
}]
|
|
244
|
+
};
|
|
245
|
+
});
|
|
246
|
+
const onScroll = useAnimatedScrollHandler(event => {
|
|
247
|
+
// FIXME: 下拉刷新是一定依赖这个数据值的,不然你无法处理的
|
|
248
|
+
scrollerOffsetY.value = event.contentOffset.y;
|
|
249
|
+
// LogFlag && console.log('onScroll', event.contentOffset);
|
|
250
|
+
|
|
251
|
+
const _children = children;
|
|
252
|
+
// @ts-ignore
|
|
253
|
+
if (_children?.props?.onScroll) {
|
|
254
|
+
// @ts-ignore
|
|
255
|
+
runOnJS(_children?.props?.onScroll)(event);
|
|
256
|
+
}
|
|
257
|
+
});
|
|
258
|
+
const onLayout = useCallback(event => {
|
|
259
|
+
containerY.value = event.nativeEvent.layout.height;
|
|
260
|
+
}, [containerY]);
|
|
261
|
+
const onContentSizeChange = useCallback((_width, height) => {
|
|
262
|
+
contentY.value = height;
|
|
263
|
+
|
|
264
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
265
|
+
// @ts-ignore
|
|
266
|
+
if (children.onContentSizeChange) {
|
|
267
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
268
|
+
// @ts-ignore
|
|
269
|
+
children.onContentSizeChange(event);
|
|
270
|
+
}
|
|
271
|
+
}, [contentY, children]);
|
|
272
|
+
const childStyle = [StyleSheet.absoluteFill, styles.zTop,
|
|
273
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
274
|
+
// @ts-ignore
|
|
275
|
+
children?.props?.style, contentAnimation];
|
|
276
|
+
return /*#__PURE__*/_jsx(MrPullRefreshContext.Provider, {
|
|
277
|
+
value: {
|
|
278
|
+
pulldownState,
|
|
279
|
+
pullupState,
|
|
280
|
+
panTranslateY,
|
|
281
|
+
scrollerOffsetY,
|
|
282
|
+
contentY,
|
|
283
|
+
containerY,
|
|
284
|
+
pulldownHeight,
|
|
285
|
+
pullupHeight,
|
|
286
|
+
pullingFactor,
|
|
287
|
+
containerFactor
|
|
288
|
+
},
|
|
289
|
+
children: /*#__PURE__*/_jsxs(View, {
|
|
290
|
+
style: [styles.flex, styles.overhidden, style],
|
|
291
|
+
children: [pulldownLoading, /*#__PURE__*/_jsx(GestureDetector, {
|
|
292
|
+
gesture: Gesture.Simultaneous(panGesture, native),
|
|
293
|
+
children: /*#__PURE__*/React.cloneElement(checkChildren(children), {
|
|
294
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
295
|
+
// @ts-ignore
|
|
296
|
+
onContentSizeChange,
|
|
297
|
+
onScroll,
|
|
298
|
+
bounces: false,
|
|
299
|
+
// eslint-disable-next-line @typescript-eslint/ban-ts-comment
|
|
300
|
+
// @ts-ignore
|
|
301
|
+
style: childStyle,
|
|
302
|
+
scrollEventThrottle: 16,
|
|
303
|
+
onLayout
|
|
304
|
+
})
|
|
305
|
+
}), pullupEnabled && pullupLoading]
|
|
306
|
+
})
|
|
307
|
+
});
|
|
308
|
+
};
|
|
309
|
+
const styles = StyleSheet.create({
|
|
310
|
+
flex: {
|
|
311
|
+
flex: 1
|
|
312
|
+
},
|
|
313
|
+
zTop: {
|
|
314
|
+
zIndex: 2
|
|
315
|
+
},
|
|
316
|
+
overhidden: {
|
|
317
|
+
overflow: 'hidden'
|
|
318
|
+
}
|
|
319
|
+
});
|
|
320
|
+
export const PullRefresh = /*#__PURE__*/memo(RefreshWrapper);
|
|
321
|
+
//# sourceMappingURL=PullRefresh.js.map
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"version":3,"names":["React","memo","useCallback","StyleSheet","View","Gesture","GestureDetector","Extrapolate","interpolate","runOnJS","runOnUI","useAnimatedScrollHandler","useAnimatedStyle","useSharedValue","FnNull","LogFlag","PullingRefreshStatus","SystemOffset","MrPullRefreshContext","PulldownLoading","PullupLoading","actuallyMove","checkChildren","isPromise","withAnimation","jsx","_jsx","jsxs","_jsxs","RefreshWrapper","onPulldownRefresh","onPullupRefresh","pulldownHeight","pullupHeight","pulldownLoading","pullupLoading","containerFactor","pullingFactor","pullupEnabled","style","children","pulldownState","IDLE","pullupState","containerY","contentY","scrollerOffsetY","panTranslateY","recordValue","lockIDLE","onPulldownLoading","res","value","BACKUP","onPullupLoading","native","Native","panGesture","Pan","onStart","event","PULLINGBACK","translationY","PULLING","console","log","onChange","newStatus","PULLINGGO","move","onEnd","LOADING","contentAnimation","isPulldown","input","output","overflowY","pointerEvents","transform","translateY","CLAMP","onScroll","contentOffset","y","_children","props","onLayout","nativeEvent","layout","height","onContentSizeChange","_width","childStyle","absoluteFill","styles","zTop","Provider","flex","overhidden","gesture","Simultaneous","cloneElement","bounces","scrollEventThrottle","create","zIndex","overflow","PullRefresh"],"sourceRoot":"../../src","sources":["PullRefresh.tsx"],"mappings":"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","ignoreList":[]}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"assets":[],"layers":[{"ddd":0,"ind":0,"ty":3,"nm":"Controller","ks":{"o":{"k":0},"r":{"k":0},"p":{"k":[{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":8,"s":[77.145,101.974,0],"e":[77.145,86.974,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"n":"0p833_0p833_1_0","t":13,"s":[77.145,86.974,0],"e":[77.145,101.974,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":20,"s":[77.145,101.974,0],"e":[77.145,101.974,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p21_1_0p167_0p167","t":38,"s":[77.145,101.974,0],"e":[77.145,86.974,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"n":"0p833_0p833_0p79_0","t":45,"s":[77.145,86.974,0],"e":[77.145,101.974,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":52,"s":[77.145,101.974,0],"e":[77.145,101.974,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.21,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p21_1_0p167_0p167","t":71,"s":[77.145,101.974,0],"e":[77.145,86.974,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.79,"y":0},"n":"0p833_0p833_0p79_0","t":78,"s":[77.145,86.974,0],"e":[77.145,101.974,0],"to":[0,0,0],"ti":[0,0,0]},{"t":85}]},"a":{"k":[60,60,0]},"s":{"k":[25.65,25.65,100]}},"ao":0,"ip":0,"op":93,"st":-2,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"Pin 2","parent":0,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[61.385,-27.617,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":[{"i":{"x":0.01,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p01_1_0p167_0p167","t":2,"s":[{"i":[[-16.236,0.017],[0.093,16.49],[16.351,-0.072],[-0.137,-16.232]],"o":[[16.714,-0.017],[-0.093,-16.535],[-16.239,0.071],[0.137,16.209]],"v":[[1.587,3.52],[31.439,-26.129],[1.596,-56.006],[-28.149,-25.889]],"c":true}],"e":[{"i":[[-16.236,0.01],[0.093,9.528],[16.351,-0.042],[-0.137,-9.379]],"o":[[16.714,-0.01],[-0.093,-9.554],[-16.239,0.041],[0.137,9.366]],"v":[[1.587,39.055],[31.439,21.924],[1.596,4.661],[-28.149,22.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.99,"y":0},"n":"0p833_0p833_0p99_0","t":5,"s":[{"i":[[-16.236,0.01],[0.093,9.528],[16.351,-0.042],[-0.137,-9.379]],"o":[[16.714,-0.01],[-0.093,-9.554],[-16.239,0.041],[0.137,9.366]],"v":[[1.587,39.055],[31.439,21.924],[1.596,4.661],[-28.149,22.063]],"c":true}],"e":[{"i":[[-16.236,0.019],[0.093,18.601],[16.351,-0.081],[-0.137,-18.31]],"o":[[16.714,-0.02],[-0.093,-18.651],[-16.239,0.081],[0.137,18.284]],"v":[[1.587,-7.254],[31.439,-40.697],[1.596,-74.399],[-28.149,-40.427]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":8,"s":[{"i":[[-16.236,0.019],[0.093,18.601],[16.351,-0.081],[-0.137,-18.31]],"o":[[16.714,-0.02],[-0.093,-18.651],[-16.239,0.081],[0.137,18.284]],"v":[[1.587,-7.254],[31.439,-40.697],[1.596,-74.399],[-28.149,-40.427]],"c":true}],"e":[{"i":[[-15.817,-3.646],[-3.995,16.991],[15.942,3.615],[3.888,-16.735]],"o":[[16.282,3.753],[4.006,-17.037],[-15.834,-3.591],[-3.883,16.712]],"v":[[-11.835,-13.952],[24.584,-37.728],[2.922,-75.21],[-33.51,-50.927]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"n":"0p833_0p833_1_0","t":13,"s":[{"i":[[-15.817,-3.646],[-3.995,16.991],[15.942,3.615],[3.888,-16.735]],"o":[[16.282,3.753],[4.006,-17.037],[-15.834,-3.591],[-3.883,16.712]],"v":[[-11.835,-13.952],[24.584,-37.728],[2.922,-75.21],[-33.51,-50.927]],"c":true}],"e":[{"i":[[-16.094,2.14],[2.631,19.267],[16.199,-2.219],[-2.636,-18.96]],"o":[[16.568,-2.203],[-2.639,-19.32],[-16.089,2.204],[2.632,18.933]],"v":[[-3.427,-17.086],[21.603,-55.648],[-12.585,-86.683],[-37.438,-47.587]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":19,"s":[{"i":[[-16.094,2.14],[2.631,19.267],[16.199,-2.219],[-2.636,-18.96]],"o":[[16.568,-2.203],[-2.639,-19.32],[-16.089,2.204],[2.632,18.933]],"v":[[-3.427,-17.086],[21.603,-55.648],[-12.585,-86.683],[-37.438,-47.587]],"c":true}],"e":[{"i":[[-16.211,0.888],[1.016,17.197],[16.323,-0.952],[-1.046,-16.925]],"o":[[16.688,-0.914],[-1.019,-17.243],[-16.212,0.945],[1.045,16.901]],"v":[[-4.59,-6.214],[23.558,-38.742],[-7.915,-68.308],[-35.931,-35.297]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"n":"0_1_0p333_0","t":20,"s":[{"i":[[-16.211,0.888],[1.016,17.197],[16.323,-0.952],[-1.046,-16.925]],"o":[[16.688,-0.914],[-1.019,-17.243],[-16.212,0.945],[1.045,16.901]],"v":[[-4.59,-6.214],[23.558,-38.742],[-7.915,-68.308],[-35.931,-35.297]],"c":true}],"e":[{"i":[[-16.236,0.013],[0.093,13.102],[16.351,-0.057],[-0.137,-12.897]],"o":[[16.714,-0.014],[-0.093,-13.138],[-16.239,0.057],[0.137,12.879]],"v":[[1.587,20.812],[31.439,-2.745],[1.596,-26.484],[-28.149,-2.554]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":23,"s":[{"i":[[-16.236,0.013],[0.093,13.102],[16.351,-0.057],[-0.137,-12.897]],"o":[[16.714,-0.014],[-0.093,-13.138],[-16.239,0.057],[0.137,12.879]],"v":[[1.587,20.812],[31.439,-2.745],[1.596,-26.484],[-28.149,-2.554]],"c":true}],"e":[{"i":[[-16.236,0.017],[0.093,16.49],[16.351,-0.072],[-0.137,-16.232]],"o":[[16.714,-0.017],[-0.093,-16.535],[-16.239,0.071],[0.137,16.209]],"v":[[1.587,3.52],[31.439,-26.129],[1.596,-56.006],[-28.149,-25.889]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"n":"0p833_0p833_0p167_0","t":29,"s":[{"i":[[-16.236,0.017],[0.093,16.49],[16.351,-0.072],[-0.137,-16.232]],"o":[[16.714,-0.017],[-0.093,-16.535],[-16.239,0.071],[0.137,16.209]],"v":[[1.587,3.52],[31.439,-26.129],[1.596,-56.006],[-28.149,-25.889]],"c":true}],"e":[{"i":[[-16.236,0.017],[0.093,16.49],[16.351,-0.072],[-0.137,-16.232]],"o":[[16.714,-0.017],[-0.093,-16.535],[-16.239,0.071],[0.137,16.209]],"v":[[1.587,3.52],[31.439,-26.129],[1.596,-56.006],[-28.149,-25.889]],"c":true}]},{"i":{"x":0.01,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p01_1_0p167_0p167","t":32,"s":[{"i":[[-16.236,0.017],[0.093,16.49],[16.351,-0.072],[-0.137,-16.232]],"o":[[16.714,-0.017],[-0.093,-16.535],[-16.239,0.071],[0.137,16.209]],"v":[[1.587,3.52],[31.439,-26.129],[1.596,-56.006],[-28.149,-25.889]],"c":true}],"e":[{"i":[[-16.236,0.01],[0.093,9.528],[16.351,-0.042],[-0.137,-9.379]],"o":[[16.714,-0.01],[-0.093,-9.554],[-16.239,0.041],[0.137,9.366]],"v":[[1.587,39.055],[31.439,21.924],[1.596,4.661],[-28.149,22.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.99,"y":0},"n":"0p833_0p833_0p99_0","t":35,"s":[{"i":[[-16.236,0.01],[0.093,9.528],[16.351,-0.042],[-0.137,-9.379]],"o":[[16.714,-0.01],[-0.093,-9.554],[-16.239,0.041],[0.137,9.366]],"v":[[1.587,39.055],[31.439,21.924],[1.596,4.661],[-28.149,22.063]],"c":true}],"e":[{"i":[[-16.236,0.019],[0.093,18.601],[16.351,-0.081],[-0.137,-18.31]],"o":[[16.714,-0.02],[-0.093,-18.651],[-16.239,0.081],[0.137,18.284]],"v":[[1.587,-7.254],[31.439,-40.697],[1.596,-74.399],[-28.149,-40.427]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":38,"s":[{"i":[[-16.236,0.019],[0.093,18.601],[16.351,-0.081],[-0.137,-18.31]],"o":[[16.714,-0.02],[-0.093,-18.651],[-16.239,0.081],[0.137,18.284]],"v":[[1.587,-7.254],[31.439,-40.697],[1.596,-74.399],[-28.149,-40.427]],"c":true}],"e":[{"i":[[-15.817,-3.646],[-3.995,16.991],[15.942,3.615],[3.888,-16.735]],"o":[[16.282,3.753],[4.006,-17.037],[-15.834,-3.591],[-3.883,16.712]],"v":[[-11.835,-13.952],[24.584,-37.728],[2.922,-75.21],[-33.51,-50.927]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"n":"0p833_0p833_1_0","t":43,"s":[{"i":[[-15.817,-3.646],[-3.995,16.991],[15.942,3.615],[3.888,-16.735]],"o":[[16.282,3.753],[4.006,-17.037],[-15.834,-3.591],[-3.883,16.712]],"v":[[-11.835,-13.952],[24.584,-37.728],[2.922,-75.21],[-33.51,-50.927]],"c":true}],"e":[{"i":[[-16.094,2.14],[2.631,19.267],[16.199,-2.219],[-2.636,-18.96]],"o":[[16.568,-2.203],[-2.639,-19.32],[-16.089,2.204],[2.632,18.933]],"v":[[-3.427,-17.086],[21.603,-55.648],[-12.585,-86.683],[-37.438,-47.587]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":49,"s":[{"i":[[-16.094,2.14],[2.631,19.267],[16.199,-2.219],[-2.636,-18.96]],"o":[[16.568,-2.203],[-2.639,-19.32],[-16.089,2.204],[2.632,18.933]],"v":[[-3.427,-17.086],[21.603,-55.648],[-12.585,-86.683],[-37.438,-47.587]],"c":true}],"e":[{"i":[[-16.211,0.888],[1.016,17.197],[16.323,-0.952],[-1.046,-16.925]],"o":[[16.688,-0.914],[-1.019,-17.243],[-16.212,0.945],[1.045,16.901]],"v":[[-4.59,-6.214],[23.558,-38.742],[-7.915,-68.308],[-35.931,-35.297]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"n":"0_1_0p333_0","t":50,"s":[{"i":[[-16.211,0.888],[1.016,17.197],[16.323,-0.952],[-1.046,-16.925]],"o":[[16.688,-0.914],[-1.019,-17.243],[-16.212,0.945],[1.045,16.901]],"v":[[-4.59,-6.214],[23.558,-38.742],[-7.915,-68.308],[-35.931,-35.297]],"c":true}],"e":[{"i":[[-16.236,0.013],[0.093,13.102],[16.351,-0.057],[-0.137,-12.897]],"o":[[16.714,-0.014],[-0.093,-13.138],[-16.239,0.057],[0.137,12.879]],"v":[[1.587,20.812],[31.439,-2.745],[1.596,-26.484],[-28.149,-2.554]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":53,"s":[{"i":[[-16.236,0.013],[0.093,13.102],[16.351,-0.057],[-0.137,-12.897]],"o":[[16.714,-0.014],[-0.093,-13.138],[-16.239,0.057],[0.137,12.879]],"v":[[1.587,20.812],[31.439,-2.745],[1.596,-26.484],[-28.149,-2.554]],"c":true}],"e":[{"i":[[-16.236,0.017],[0.093,16.49],[16.351,-0.072],[-0.137,-16.232]],"o":[[16.714,-0.017],[-0.093,-16.535],[-16.239,0.071],[0.137,16.209]],"v":[[1.587,3.52],[31.439,-26.129],[1.596,-56.006],[-28.149,-25.889]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"n":"0p833_0p833_0p167_0","t":59,"s":[{"i":[[-16.236,0.017],[0.093,16.49],[16.351,-0.072],[-0.137,-16.232]],"o":[[16.714,-0.017],[-0.093,-16.535],[-16.239,0.071],[0.137,16.209]],"v":[[1.587,3.52],[31.439,-26.129],[1.596,-56.006],[-28.149,-25.889]],"c":true}],"e":[{"i":[[-16.236,0.017],[0.093,16.49],[16.351,-0.072],[-0.137,-16.232]],"o":[[16.714,-0.017],[-0.093,-16.535],[-16.239,0.071],[0.137,16.209]],"v":[[1.587,3.52],[31.439,-26.129],[1.596,-56.006],[-28.149,-25.889]],"c":true}]},{"i":{"x":0.01,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p01_1_0p167_0p167","t":65,"s":[{"i":[[-16.236,0.017],[0.093,16.49],[16.351,-0.072],[-0.137,-16.232]],"o":[[16.714,-0.017],[-0.093,-16.535],[-16.239,0.071],[0.137,16.209]],"v":[[1.587,3.52],[31.439,-26.129],[1.596,-56.006],[-28.149,-25.889]],"c":true}],"e":[{"i":[[-16.236,0.01],[0.093,9.528],[16.351,-0.042],[-0.137,-9.379]],"o":[[16.714,-0.01],[-0.093,-9.554],[-16.239,0.041],[0.137,9.366]],"v":[[1.587,39.055],[31.439,21.924],[1.596,4.661],[-28.149,22.063]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.99,"y":0},"n":"0p833_0p833_0p99_0","t":68,"s":[{"i":[[-16.236,0.01],[0.093,9.528],[16.351,-0.042],[-0.137,-9.379]],"o":[[16.714,-0.01],[-0.093,-9.554],[-16.239,0.041],[0.137,9.366]],"v":[[1.587,39.055],[31.439,21.924],[1.596,4.661],[-28.149,22.063]],"c":true}],"e":[{"i":[[-16.236,0.019],[0.093,18.601],[16.351,-0.081],[-0.137,-18.31]],"o":[[16.714,-0.02],[-0.093,-18.651],[-16.239,0.081],[0.137,18.284]],"v":[[1.587,-7.254],[31.439,-40.697],[1.596,-74.399],[-28.149,-40.427]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":71,"s":[{"i":[[-16.236,0.019],[0.093,18.601],[16.351,-0.081],[-0.137,-18.31]],"o":[[16.714,-0.02],[-0.093,-18.651],[-16.239,0.081],[0.137,18.284]],"v":[[1.587,-7.254],[31.439,-40.697],[1.596,-74.399],[-28.149,-40.427]],"c":true}],"e":[{"i":[[-15.817,-3.646],[-3.995,16.991],[15.942,3.615],[3.888,-16.735]],"o":[[16.282,3.753],[4.006,-17.037],[-15.834,-3.591],[-3.883,16.712]],"v":[[-11.835,-13.952],[24.584,-37.728],[2.922,-75.21],[-33.51,-50.927]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"n":"0p833_0p833_1_0","t":76,"s":[{"i":[[-15.817,-3.646],[-3.995,16.991],[15.942,3.615],[3.888,-16.735]],"o":[[16.282,3.753],[4.006,-17.037],[-15.834,-3.591],[-3.883,16.712]],"v":[[-11.835,-13.952],[24.584,-37.728],[2.922,-75.21],[-33.51,-50.927]],"c":true}],"e":[{"i":[[-16.094,2.14],[2.631,19.267],[16.199,-2.219],[-2.636,-18.96]],"o":[[16.568,-2.203],[-2.639,-19.32],[-16.089,2.204],[2.632,18.933]],"v":[[-3.427,-17.086],[21.603,-55.648],[-12.585,-86.683],[-37.438,-47.587]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":82,"s":[{"i":[[-16.094,2.14],[2.631,19.267],[16.199,-2.219],[-2.636,-18.96]],"o":[[16.568,-2.203],[-2.639,-19.32],[-16.089,2.204],[2.632,18.933]],"v":[[-3.427,-17.086],[21.603,-55.648],[-12.585,-86.683],[-37.438,-47.587]],"c":true}],"e":[{"i":[[-16.211,0.888],[1.016,17.197],[16.323,-0.952],[-1.046,-16.925]],"o":[[16.688,-0.914],[-1.019,-17.243],[-16.212,0.945],[1.045,16.901]],"v":[[-4.59,-6.214],[23.558,-38.742],[-7.915,-68.308],[-35.931,-35.297]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"n":"0_1_0p333_0","t":83,"s":[{"i":[[-16.211,0.888],[1.016,17.197],[16.323,-0.952],[-1.046,-16.925]],"o":[[16.688,-0.914],[-1.019,-17.243],[-16.212,0.945],[1.045,16.901]],"v":[[-4.59,-6.214],[23.558,-38.742],[-7.915,-68.308],[-35.931,-35.297]],"c":true}],"e":[{"i":[[-16.236,0.013],[0.093,13.102],[16.351,-0.057],[-0.137,-12.897]],"o":[[16.714,-0.014],[-0.093,-13.138],[-16.239,0.057],[0.137,12.879]],"v":[[1.587,20.812],[31.439,-2.745],[1.596,-26.484],[-28.149,-2.554]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":86,"s":[{"i":[[-16.236,0.013],[0.093,13.102],[16.351,-0.057],[-0.137,-12.897]],"o":[[16.714,-0.014],[-0.093,-13.138],[-16.239,0.057],[0.137,12.879]],"v":[[1.587,20.812],[31.439,-2.745],[1.596,-26.484],[-28.149,-2.554]],"c":true}],"e":[{"i":[[-16.236,0.017],[0.093,16.49],[16.351,-0.072],[-0.137,-16.232]],"o":[[16.714,-0.017],[-0.093,-16.535],[-16.239,0.071],[0.137,16.209]],"v":[[1.587,3.52],[31.439,-26.129],[1.596,-56.006],[-28.149,-25.889]],"c":true}]},{"t":92}]},"nm":"Path 2"},{"ty":"fl","fillEnabled":true,"c":{"k":[1,1,1,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"}],"ip":0,"op":93,"st":-2,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"Pin 1","parent":0,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[61.385,-27.617,0]},"a":{"k":[0,0,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":[{"i":{"x":0.01,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p01_1_0p167_0p167","t":2,"s":[{"i":[[20.38,-29.219],[11.483,27.012],[1.953,8.863],[-29.139,5.639],[1.869,-37.458],[2.744,-6.499]],"o":[[-15.948,-25.603],[-3.564,-8.384],[-6.397,-29.036],[36.861,-7.134],[-0.347,6.947],[-13.56,32.121]],"v":[[-1.836,87.688],[-44,9.791],[-52.819,-16.127],[-10.038,-80.554],[57.347,-22.694],[51.849,-2.123]],"c":true}],"e":[{"i":[[20.38,-16.883],[11.483,15.607],[1.953,5.121],[-29.139,3.258],[1.869,-21.644],[2.744,-3.755]],"o":[[-15.948,-14.793],[-3.564,-4.845],[-6.397,-16.777],[36.861,-4.122],[-0.347,4.014],[-13.56,18.56]],"v":[[-1.836,87.688],[-44,42.679],[-52.819,27.703],[-10.038,-9.523],[57.347,23.909],[51.849,35.795]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.99,"y":0},"n":"0p833_0p833_0p99_0","t":5,"s":[{"i":[[20.38,-16.883],[11.483,15.607],[1.953,5.121],[-29.139,3.258],[1.869,-21.644],[2.744,-3.755]],"o":[[-15.948,-14.793],[-3.564,-4.845],[-6.397,-16.777],[36.861,-4.122],[-0.347,4.014],[-13.56,18.56]],"v":[[-1.836,87.688],[-44,42.679],[-52.819,27.703],[-10.038,-9.523],[57.347,23.909],[51.849,35.795]],"c":true}],"e":[{"i":[[20.38,-32.959],[11.483,30.469],[1.953,9.998],[-29.139,6.361],[1.869,-42.253],[2.744,-7.331]],"o":[[-15.948,-28.88],[-3.564,-9.458],[-6.397,-32.753],[36.861,-8.047],[-0.347,7.836],[-13.56,36.233]],"v":[[-1.836,87.688],[-44,-0.18],[-52.819,-29.415],[-10.038,-102.09],[57.347,-36.823],[51.849,-13.619]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":8,"s":[{"i":[[20.38,-32.959],[11.483,30.469],[1.953,9.998],[-29.139,6.361],[1.869,-42.253],[2.744,-7.331]],"o":[[-15.948,-28.88],[-3.564,-9.458],[-6.397,-32.753],[36.861,-8.047],[-0.347,7.836],[-13.56,36.233]],"v":[[-1.836,87.688],[-44,-0.18],[-52.819,-29.415],[-10.038,-102.09],[57.347,-36.823],[51.849,-13.619]],"c":true}],"e":[{"i":[[33.819,-9.33],[4.491,30.389],[-0.294,9.562],[-29.777,-0.772],[11.101,-38.127],[4.282,-6.069]],"o":[[17.445,-26.224],[-1.394,-9.433],[0.964,-31.325],[37.667,0.976],[-2.059,7.071],[-21.165,29.997]],"v":[[-66.438,54.619],[-57.787,-17.786],[-59.955,-46.448],[-2.326,-103.098],[48.966,-28.347],[38.515,-8.418]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"n":"0p833_0p833_1_0","t":13,"s":[{"i":[[33.819,-9.33],[4.491,30.389],[-0.294,9.562],[-29.777,-0.772],[11.101,-38.127],[4.282,-6.069]],"o":[[17.445,-26.224],[-1.394,-9.433],[0.964,-31.325],[37.667,0.976],[-2.059,7.071],[-21.165,29.997]],"v":[[-66.438,54.619],[-57.787,-17.786],[-59.955,-46.448],[-2.326,-103.098],[48.966,-28.347],[38.515,-8.418]],"c":true}],"e":[{"i":[[10.43,-46.114],[15.544,30.081],[3.301,10.107],[-28.021,10.398],[-3.916,-44.038],[1.719,-7.957]],"o":[[-21.734,-42.215],[-4.825,-9.337],[-10.813,-33.113],[35.447,-13.154],[0.726,8.167],[-8.497,39.325]],"v":[[1.266,100.479],[-47.658,-3.802],[-60.393,-32.952],[-27.899,-113.864],[47.818,-55.016],[45.535,-30.247]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":19,"s":[{"i":[[10.43,-46.114],[15.544,30.081],[3.301,10.107],[-28.021,10.398],[-3.916,-44.038],[1.719,-7.957]],"o":[[-21.734,-42.215],[-4.825,-9.337],[-10.813,-33.113],[35.447,-13.154],[0.726,8.167],[-8.497,39.325]],"v":[[1.266,100.479],[-47.658,-3.802],[-60.393,-32.952],[-27.899,-113.864],[47.818,-55.016],[45.535,-30.247]],"c":true}],"e":[{"i":[[20.38,-30.523],[12.979,27.561],[2.446,9.141],[-28.781,7.445],[-0.232,-39.174],[2.376,-6.927]],"o":[[-15.948,-26.746],[-4.029,-8.555],[-8.014,-29.946],[36.408,-9.418],[0.043,7.265],[-11.741,34.234]],"v":[[-1.836,87.688],[-49.761,2.772],[-60.019,-23.791],[-20.907,-93.291],[49.621,-36.548],[45.283,-14.795]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"n":"0_1_0p333_0","t":20,"s":[{"i":[[20.38,-30.523],[12.979,27.561],[2.446,9.141],[-28.781,7.445],[-0.232,-39.174],[2.376,-6.927]],"o":[[-15.948,-26.746],[-4.029,-8.555],[-8.014,-29.946],[36.408,-9.418],[0.043,7.265],[-11.741,34.234]],"v":[[-1.836,87.688],[-49.761,2.772],[-60.019,-23.791],[-20.907,-93.291],[49.621,-36.548],[45.283,-14.795]],"c":true}],"e":[{"i":[[20.38,-23.216],[11.483,21.462],[1.953,7.042],[-29.139,4.481],[1.869,-29.762],[2.744,-5.164]],"o":[[-15.948,-20.343],[-3.564,-6.662],[-6.397,-23.071],[36.861,-5.668],[-0.347,5.52],[-13.56,25.522]],"v":[[-1.836,87.688],[-44,25.795],[-52.819,5.202],[-10.038,-45.989],[57.347,-0.016],[51.849,16.329]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":23,"s":[{"i":[[20.38,-23.216],[11.483,21.462],[1.953,7.042],[-29.139,4.481],[1.869,-29.762],[2.744,-5.164]],"o":[[-15.948,-20.343],[-3.564,-6.662],[-6.397,-23.071],[36.861,-5.668],[-0.347,5.52],[-13.56,25.522]],"v":[[-1.836,87.688],[-44,25.795],[-52.819,5.202],[-10.038,-45.989],[57.347,-0.016],[51.849,16.329]],"c":true}],"e":[{"i":[[20.38,-29.219],[11.483,27.012],[1.953,8.863],[-29.139,5.639],[1.869,-37.458],[2.744,-6.499]],"o":[[-15.948,-25.603],[-3.564,-8.384],[-6.397,-29.036],[36.861,-7.134],[-0.347,6.947],[-13.56,32.121]],"v":[[-1.836,87.688],[-44,9.791],[-52.819,-16.127],[-10.038,-80.554],[57.347,-22.694],[51.849,-2.123]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"n":"0p833_0p833_0p167_0","t":29,"s":[{"i":[[20.38,-29.219],[11.483,27.012],[1.953,8.863],[-29.139,5.639],[1.869,-37.458],[2.744,-6.499]],"o":[[-15.948,-25.603],[-3.564,-8.384],[-6.397,-29.036],[36.861,-7.134],[-0.347,6.947],[-13.56,32.121]],"v":[[-1.836,87.688],[-44,9.791],[-52.819,-16.127],[-10.038,-80.554],[57.347,-22.694],[51.849,-2.123]],"c":true}],"e":[{"i":[[20.38,-29.219],[11.483,27.012],[1.953,8.863],[-29.139,5.639],[1.869,-37.458],[2.744,-6.499]],"o":[[-15.948,-25.603],[-3.564,-8.384],[-6.397,-29.036],[36.861,-7.134],[-0.347,6.947],[-13.56,32.121]],"v":[[-1.836,87.688],[-44,9.791],[-52.819,-16.127],[-10.038,-80.554],[57.347,-22.694],[51.849,-2.123]],"c":true}]},{"i":{"x":0.01,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p01_1_0p167_0p167","t":32,"s":[{"i":[[20.38,-29.219],[11.483,27.012],[1.953,8.863],[-29.139,5.639],[1.869,-37.458],[2.744,-6.499]],"o":[[-15.948,-25.603],[-3.564,-8.384],[-6.397,-29.036],[36.861,-7.134],[-0.347,6.947],[-13.56,32.121]],"v":[[-1.836,87.688],[-44,9.791],[-52.819,-16.127],[-10.038,-80.554],[57.347,-22.694],[51.849,-2.123]],"c":true}],"e":[{"i":[[20.38,-16.883],[11.483,15.607],[1.953,5.121],[-29.139,3.258],[1.869,-21.644],[2.744,-3.755]],"o":[[-15.948,-14.793],[-3.564,-4.845],[-6.397,-16.777],[36.861,-4.122],[-0.347,4.014],[-13.56,18.56]],"v":[[-1.836,87.688],[-44,42.679],[-52.819,27.703],[-10.038,-9.523],[57.347,23.909],[51.849,35.795]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.99,"y":0},"n":"0p833_0p833_0p99_0","t":35,"s":[{"i":[[20.38,-16.883],[11.483,15.607],[1.953,5.121],[-29.139,3.258],[1.869,-21.644],[2.744,-3.755]],"o":[[-15.948,-14.793],[-3.564,-4.845],[-6.397,-16.777],[36.861,-4.122],[-0.347,4.014],[-13.56,18.56]],"v":[[-1.836,87.688],[-44,42.679],[-52.819,27.703],[-10.038,-9.523],[57.347,23.909],[51.849,35.795]],"c":true}],"e":[{"i":[[20.38,-32.959],[11.483,30.469],[1.953,9.998],[-29.139,6.361],[1.869,-42.253],[2.744,-7.331]],"o":[[-15.948,-28.88],[-3.564,-9.458],[-6.397,-32.753],[36.861,-8.047],[-0.347,7.836],[-13.56,36.233]],"v":[[-1.836,87.688],[-44,-0.18],[-52.819,-29.415],[-10.038,-102.09],[57.347,-36.823],[51.849,-13.619]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":38,"s":[{"i":[[20.38,-32.959],[11.483,30.469],[1.953,9.998],[-29.139,6.361],[1.869,-42.253],[2.744,-7.331]],"o":[[-15.948,-28.88],[-3.564,-9.458],[-6.397,-32.753],[36.861,-8.047],[-0.347,7.836],[-13.56,36.233]],"v":[[-1.836,87.688],[-44,-0.18],[-52.819,-29.415],[-10.038,-102.09],[57.347,-36.823],[51.849,-13.619]],"c":true}],"e":[{"i":[[33.819,-9.33],[4.491,30.389],[-0.294,9.562],[-29.777,-0.772],[11.101,-38.127],[4.282,-6.069]],"o":[[17.445,-26.224],[-1.394,-9.433],[0.964,-31.325],[37.667,0.976],[-2.059,7.071],[-21.165,29.997]],"v":[[-66.438,54.619],[-57.787,-17.786],[-59.955,-46.448],[-2.326,-103.098],[48.966,-28.347],[38.515,-8.418]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"n":"0p833_0p833_1_0","t":43,"s":[{"i":[[33.819,-9.33],[4.491,30.389],[-0.294,9.562],[-29.777,-0.772],[11.101,-38.127],[4.282,-6.069]],"o":[[17.445,-26.224],[-1.394,-9.433],[0.964,-31.325],[37.667,0.976],[-2.059,7.071],[-21.165,29.997]],"v":[[-66.438,54.619],[-57.787,-17.786],[-59.955,-46.448],[-2.326,-103.098],[48.966,-28.347],[38.515,-8.418]],"c":true}],"e":[{"i":[[10.43,-46.114],[15.544,30.081],[3.301,10.107],[-28.021,10.398],[-3.916,-44.038],[1.719,-7.957]],"o":[[-21.734,-42.215],[-4.825,-9.337],[-10.813,-33.113],[35.447,-13.154],[0.726,8.167],[-8.497,39.325]],"v":[[1.266,100.479],[-47.658,-3.802],[-60.393,-32.952],[-27.899,-113.864],[47.818,-55.016],[45.535,-30.247]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":49,"s":[{"i":[[10.43,-46.114],[15.544,30.081],[3.301,10.107],[-28.021,10.398],[-3.916,-44.038],[1.719,-7.957]],"o":[[-21.734,-42.215],[-4.825,-9.337],[-10.813,-33.113],[35.447,-13.154],[0.726,8.167],[-8.497,39.325]],"v":[[1.266,100.479],[-47.658,-3.802],[-60.393,-32.952],[-27.899,-113.864],[47.818,-55.016],[45.535,-30.247]],"c":true}],"e":[{"i":[[20.38,-30.523],[12.979,27.561],[2.446,9.141],[-28.781,7.445],[-0.232,-39.174],[2.376,-6.927]],"o":[[-15.948,-26.746],[-4.029,-8.555],[-8.014,-29.946],[36.408,-9.418],[0.043,7.265],[-11.741,34.234]],"v":[[-1.836,87.688],[-49.761,2.772],[-60.019,-23.791],[-20.907,-93.291],[49.621,-36.548],[45.283,-14.795]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"n":"0_1_0p333_0","t":50,"s":[{"i":[[20.38,-30.523],[12.979,27.561],[2.446,9.141],[-28.781,7.445],[-0.232,-39.174],[2.376,-6.927]],"o":[[-15.948,-26.746],[-4.029,-8.555],[-8.014,-29.946],[36.408,-9.418],[0.043,7.265],[-11.741,34.234]],"v":[[-1.836,87.688],[-49.761,2.772],[-60.019,-23.791],[-20.907,-93.291],[49.621,-36.548],[45.283,-14.795]],"c":true}],"e":[{"i":[[20.38,-23.216],[11.483,21.462],[1.953,7.042],[-29.139,4.481],[1.869,-29.762],[2.744,-5.164]],"o":[[-15.948,-20.343],[-3.564,-6.662],[-6.397,-23.071],[36.861,-5.668],[-0.347,5.52],[-13.56,25.522]],"v":[[-1.836,87.688],[-44,25.795],[-52.819,5.202],[-10.038,-45.989],[57.347,-0.016],[51.849,16.329]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":53,"s":[{"i":[[20.38,-23.216],[11.483,21.462],[1.953,7.042],[-29.139,4.481],[1.869,-29.762],[2.744,-5.164]],"o":[[-15.948,-20.343],[-3.564,-6.662],[-6.397,-23.071],[36.861,-5.668],[-0.347,5.52],[-13.56,25.522]],"v":[[-1.836,87.688],[-44,25.795],[-52.819,5.202],[-10.038,-45.989],[57.347,-0.016],[51.849,16.329]],"c":true}],"e":[{"i":[[20.38,-29.219],[11.483,27.012],[1.953,8.863],[-29.139,5.639],[1.869,-37.458],[2.744,-6.499]],"o":[[-15.948,-25.603],[-3.564,-8.384],[-6.397,-29.036],[36.861,-7.134],[-0.347,6.947],[-13.56,32.121]],"v":[[-1.836,87.688],[-44,9.791],[-52.819,-16.127],[-10.038,-80.554],[57.347,-22.694],[51.849,-2.123]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0},"n":"0p833_0p833_0p167_0","t":59,"s":[{"i":[[20.38,-29.219],[11.483,27.012],[1.953,8.863],[-29.139,5.639],[1.869,-37.458],[2.744,-6.499]],"o":[[-15.948,-25.603],[-3.564,-8.384],[-6.397,-29.036],[36.861,-7.134],[-0.347,6.947],[-13.56,32.121]],"v":[[-1.836,87.688],[-44,9.791],[-52.819,-16.127],[-10.038,-80.554],[57.347,-22.694],[51.849,-2.123]],"c":true}],"e":[{"i":[[20.38,-29.219],[11.483,27.012],[1.953,8.863],[-29.139,5.639],[1.869,-37.458],[2.744,-6.499]],"o":[[-15.948,-25.603],[-3.564,-8.384],[-6.397,-29.036],[36.861,-7.134],[-0.347,6.947],[-13.56,32.121]],"v":[[-1.836,87.688],[-44,9.791],[-52.819,-16.127],[-10.038,-80.554],[57.347,-22.694],[51.849,-2.123]],"c":true}]},{"i":{"x":0.01,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p01_1_0p167_0p167","t":65,"s":[{"i":[[20.38,-29.219],[11.483,27.012],[1.953,8.863],[-29.139,5.639],[1.869,-37.458],[2.744,-6.499]],"o":[[-15.948,-25.603],[-3.564,-8.384],[-6.397,-29.036],[36.861,-7.134],[-0.347,6.947],[-13.56,32.121]],"v":[[-1.836,87.688],[-44,9.791],[-52.819,-16.127],[-10.038,-80.554],[57.347,-22.694],[51.849,-2.123]],"c":true}],"e":[{"i":[[20.38,-16.883],[11.483,15.607],[1.953,5.121],[-29.139,3.258],[1.869,-21.644],[2.744,-3.755]],"o":[[-15.948,-14.793],[-3.564,-4.845],[-6.397,-16.777],[36.861,-4.122],[-0.347,4.014],[-13.56,18.56]],"v":[[-1.836,87.688],[-44,42.679],[-52.819,27.703],[-10.038,-9.523],[57.347,23.909],[51.849,35.795]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.99,"y":0},"n":"0p833_0p833_0p99_0","t":68,"s":[{"i":[[20.38,-16.883],[11.483,15.607],[1.953,5.121],[-29.139,3.258],[1.869,-21.644],[2.744,-3.755]],"o":[[-15.948,-14.793],[-3.564,-4.845],[-6.397,-16.777],[36.861,-4.122],[-0.347,4.014],[-13.56,18.56]],"v":[[-1.836,87.688],[-44,42.679],[-52.819,27.703],[-10.038,-9.523],[57.347,23.909],[51.849,35.795]],"c":true}],"e":[{"i":[[20.38,-32.959],[11.483,30.469],[1.953,9.998],[-29.139,6.361],[1.869,-42.253],[2.744,-7.331]],"o":[[-15.948,-28.88],[-3.564,-9.458],[-6.397,-32.753],[36.861,-8.047],[-0.347,7.836],[-13.56,36.233]],"v":[[-1.836,87.688],[-44,-0.18],[-52.819,-29.415],[-10.038,-102.09],[57.347,-36.823],[51.849,-13.619]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":71,"s":[{"i":[[20.38,-32.959],[11.483,30.469],[1.953,9.998],[-29.139,6.361],[1.869,-42.253],[2.744,-7.331]],"o":[[-15.948,-28.88],[-3.564,-9.458],[-6.397,-32.753],[36.861,-8.047],[-0.347,7.836],[-13.56,36.233]],"v":[[-1.836,87.688],[-44,-0.18],[-52.819,-29.415],[-10.038,-102.09],[57.347,-36.823],[51.849,-13.619]],"c":true}],"e":[{"i":[[33.819,-9.33],[4.491,30.389],[-0.294,9.562],[-29.777,-0.772],[11.101,-38.127],[4.282,-6.069]],"o":[[17.445,-26.224],[-1.394,-9.433],[0.964,-31.325],[37.667,0.976],[-2.059,7.071],[-21.165,29.997]],"v":[[-66.438,54.619],[-57.787,-17.786],[-59.955,-46.448],[-2.326,-103.098],[48.966,-28.347],[38.515,-8.418]],"c":true}]},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"n":"0p833_0p833_1_0","t":76,"s":[{"i":[[33.819,-9.33],[4.491,30.389],[-0.294,9.562],[-29.777,-0.772],[11.101,-38.127],[4.282,-6.069]],"o":[[17.445,-26.224],[-1.394,-9.433],[0.964,-31.325],[37.667,0.976],[-2.059,7.071],[-21.165,29.997]],"v":[[-66.438,54.619],[-57.787,-17.786],[-59.955,-46.448],[-2.326,-103.098],[48.966,-28.347],[38.515,-8.418]],"c":true}],"e":[{"i":[[10.43,-46.114],[15.544,30.081],[3.301,10.107],[-28.021,10.398],[-3.916,-44.038],[1.719,-7.957]],"o":[[-21.734,-42.215],[-4.825,-9.337],[-10.813,-33.113],[35.447,-13.154],[0.726,8.167],[-8.497,39.325]],"v":[[1.266,100.479],[-47.658,-3.802],[-60.393,-32.952],[-27.899,-113.864],[47.818,-55.016],[45.535,-30.247]],"c":true}]},{"i":{"x":0.667,"y":1},"o":{"x":0.167,"y":0.167},"n":"0p667_1_0p167_0p167","t":82,"s":[{"i":[[10.43,-46.114],[15.544,30.081],[3.301,10.107],[-28.021,10.398],[-3.916,-44.038],[1.719,-7.957]],"o":[[-21.734,-42.215],[-4.825,-9.337],[-10.813,-33.113],[35.447,-13.154],[0.726,8.167],[-8.497,39.325]],"v":[[1.266,100.479],[-47.658,-3.802],[-60.393,-32.952],[-27.899,-113.864],[47.818,-55.016],[45.535,-30.247]],"c":true}],"e":[{"i":[[20.38,-30.523],[12.979,27.561],[2.446,9.141],[-28.781,7.445],[-0.232,-39.174],[2.376,-6.927]],"o":[[-15.948,-26.746],[-4.029,-8.555],[-8.014,-29.946],[36.408,-9.418],[0.043,7.265],[-11.741,34.234]],"v":[[-1.836,87.688],[-49.761,2.772],[-60.019,-23.791],[-20.907,-93.291],[49.621,-36.548],[45.283,-14.795]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.333,"y":0},"n":"0_1_0p333_0","t":83,"s":[{"i":[[20.38,-30.523],[12.979,27.561],[2.446,9.141],[-28.781,7.445],[-0.232,-39.174],[2.376,-6.927]],"o":[[-15.948,-26.746],[-4.029,-8.555],[-8.014,-29.946],[36.408,-9.418],[0.043,7.265],[-11.741,34.234]],"v":[[-1.836,87.688],[-49.761,2.772],[-60.019,-23.791],[-20.907,-93.291],[49.621,-36.548],[45.283,-14.795]],"c":true}],"e":[{"i":[[20.38,-23.216],[11.483,21.462],[1.953,7.042],[-29.139,4.481],[1.869,-29.762],[2.744,-5.164]],"o":[[-15.948,-20.343],[-3.564,-6.662],[-6.397,-23.071],[36.861,-5.668],[-0.347,5.52],[-13.56,25.522]],"v":[[-1.836,87.688],[-44,25.795],[-52.819,5.202],[-10.038,-45.989],[57.347,-0.016],[51.849,16.329]],"c":true}]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":86,"s":[{"i":[[20.38,-23.216],[11.483,21.462],[1.953,7.042],[-29.139,4.481],[1.869,-29.762],[2.744,-5.164]],"o":[[-15.948,-20.343],[-3.564,-6.662],[-6.397,-23.071],[36.861,-5.668],[-0.347,5.52],[-13.56,25.522]],"v":[[-1.836,87.688],[-44,25.795],[-52.819,5.202],[-10.038,-45.989],[57.347,-0.016],[51.849,16.329]],"c":true}],"e":[{"i":[[20.38,-29.219],[11.483,27.012],[1.953,8.863],[-29.139,5.639],[1.869,-37.458],[2.744,-6.499]],"o":[[-15.948,-25.603],[-3.564,-8.384],[-6.397,-29.036],[36.861,-7.134],[-0.347,6.947],[-13.56,32.121]],"v":[[-1.836,87.688],[-44,9.791],[-52.819,-16.127],[-10.038,-80.554],[57.347,-22.694],[51.849,-2.123]],"c":true}]},{"t":92}]},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.97,0.24,0.24,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2"}],"ip":0,"op":93,"st":-2,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"C5","ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":80,"s":[136.5,102.286,0],"e":[18.5,102.286,0],"to":[0,0,0],"ti":[0,0,0]},{"t":134}]},"a":{"k":[0,0,0]},"s":{"k":[50,50,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"k":[8.894,8.894]},"p":{"k":[0,0]},"nm":"Ellipse Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":80,"s":[1,1,1,1],"e":[0.89,0.89,0.89,1]},{"t":85}]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1"}],"ip":80,"op":93,"st":80,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":4,"nm":"C4","ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":51,"s":[136.5,102.286,0],"e":[18.5,102.286,0],"to":[0,0,0],"ti":[0,0,0]},{"t":105}]},"a":{"k":[0,0,0]},"s":{"k":[50,50,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"k":[8.894,8.894]},"p":{"k":[0,0]},"nm":"Ellipse Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":51,"s":[1,1,1,1],"e":[0.89,0.89,0.89,1]},{"t":56}]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1"}],"ip":51,"op":93,"st":51,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":4,"nm":"C3","ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":18,"s":[136.5,102.286,0],"e":[18.5,102.286,0],"to":[0,0,0],"ti":[0,0,0]},{"t":72}]},"a":{"k":[0,0,0]},"s":{"k":[50,50,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"k":[16.094,16.094]},"p":{"k":[0,0]},"nm":"Ellipse Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":18,"s":[1,1,1,1],"e":[0.97,0.24,0.24,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":22,"s":[0.97,0.24,0.24,1],"e":[0.97,0.24,0.24,1]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":67,"s":[0.97,0.24,0.24,1],"e":[1,1,1,1]},{"t":72}]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1"}],"ip":18,"op":93,"st":18,"bm":0,"sr":1},{"ddd":0,"ind":6,"ty":4,"nm":"C2","ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":-13,"s":[136.5,102.286,0],"e":[18.5,102.286,0],"to":[0,0,0],"ti":[0,0,0]},{"t":41}]},"a":{"k":[0,0,0]},"s":{"k":[50,50,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"k":[8.894,8.894]},"p":{"k":[0,0]},"nm":"Ellipse Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":38,"s":[0.89,0.89,0.89,1],"e":[1,1,1,1]},{"t":42}]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1"}],"ip":0,"op":93,"st":-13,"bm":0,"sr":1},{"ddd":0,"ind":7,"ty":4,"nm":"C1","ks":{"o":{"k":98},"r":{"k":0},"p":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":-41,"s":[136.5,102.286,0],"e":[18.5,102.286,0],"to":[0,0,0],"ti":[0,0,0]},{"t":13}]},"a":{"k":[0,0,0]},"s":{"k":[50,50,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"d":1,"ty":"el","s":{"k":[8.894,8.894]},"p":{"k":[0,0]},"nm":"Ellipse Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":9,"s":[0.89,0.89,0.89,1],"e":[1,1,1,1]},{"t":13}]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Ellipse 1"}],"ip":0,"op":93,"st":-41,"bm":0,"sr":1},{"ddd":0,"ind":8,"ty":4,"nm":"Line","ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[75,75,0]},"a":{"k":[0,0,0]},"s":{"k":[50,50,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-109.5,54.75],[119.5,54.75]],"c":false}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.89,0.89,0.89,1]},"o":{"k":100},"w":{"k":1},"lc":1,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":0,"op":93,"st":-2,"bm":0,"sr":1}],"v":"4.4.26","ddd":0,"ip":0,"op":93,"fr":30,"w":150,"h":150}
|
|
@@ -0,0 +1 @@
|
|
|
1
|
+
{"assets":[],"layers":[{"ddd":0,"ind":0,"ty":1,"nm":"N","ks":{"o":{"k":0},"r":{"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":-10.801,"s":[-111.167],"e":[-111.167]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":4,"s":[-111.167],"e":[-19.9]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":43.5,"s":[-19.9],"e":[0]},{"t":49.19921875}]},"p":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":-10.801,"s":[-96.734,47.401,0],"e":[-31.369,31.877,0],"to":[45.0456504821777,-41.7948608398438,0],"ti":[-17.7793006896973,-2.18895292282104,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":4,"s":[-31.369,31.877,0],"e":[9.942,60.534,0],"to":[17.7793006896973,2.18895292282104,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":43.5,"s":[9.942,60.534,0],"e":[9.942,60.534,0],"to":[0,0,0],"ti":[0,0,0]},{"t":49.19921875}]},"a":{"k":[60,60,0]},"s":{"k":[36.267,36.267,100]}},"ao":0,"sw":120,"sh":120,"sc":"#ffffff","ip":0,"op":564,"st":-18,"bm":0,"sr":1},{"ddd":0,"ind":1,"ty":4,"nm":"W1","parent":10,"ks":{"o":{"k":[{"t":0,"s":[0],"h":1},{"t":312,"s":[100],"h":1},{"t":352,"s":[0],"h":1}]},"r":{"k":0},"p":{"k":[70.893,91.979,0]},"a":{"k":[0,0,0]},"s":{"k":[73.529,73.529,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[22.833,-107],[43.833,-107]],"c":false}},"nm":"Path 2"},{"ty":"st","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"w":{"k":5},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":312,"op":354,"st":-18,"bm":0,"sr":1},{"ddd":0,"ind":2,"ty":4,"nm":"W2","parent":5,"ks":{"o":{"k":[{"t":0,"s":[0],"h":1},{"t":312,"s":[100],"h":1},{"t":352,"s":[0],"h":1}]},"r":{"k":0},"p":{"k":[70.893,35.572,0]},"a":{"k":[70.893,35.572,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,2.439],[0,0],[-2.439,0],[0,0],[0,-2.44],[0,0],[2.439,0],[0,0]],"o":[[0,0],[0,-2.44],[0,0],[2.439,0],[0,0],[0,2.439],[0,0],[-2.439,0]],"v":[[-4.462,0.044],[-4.462,-0.045],[-0.045,-4.462],[0.045,-4.462],[4.462,-0.045],[4.462,0.044],[0.045,4.462],[-0.045,4.462]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[41.978,13.371],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9"},{"ty":"gr","it":[{"ty":"fl","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[91.684,13.371],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11"}],"ip":312,"op":354,"st":-18,"bm":0,"sr":1},{"ddd":0,"ind":3,"ty":4,"nm":"W3","parent":10,"ks":{"o":{"k":[{"t":0,"s":[0],"h":1},{"t":312,"s":[100],"h":1},{"t":352,"s":[0],"h":1}]},"r":{"k":0},"p":{"k":[70.893,35.572,0]},"a":{"k":[70.893,35.572,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-2.439,0],[0,0],[0,2.439],[0,0],[2.439,0],[0,0],[0,-2.44],[0,0]],"o":[[0,0],[2.439,0],[0,0],[0,-2.44],[0,0],[-2.439,0],[0,0],[0,2.439]],"v":[[-4.107,4.461],[4.107,4.461],[8.524,0.044],[8.524,-0.044],[4.107,-4.461],[-4.107,-4.461],[-8.524,-0.044],[-8.524,0.044]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[1,0.96,0.91,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[46.04,13.371],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10"},{"ty":"gr","it":[{"ty":"fl","fillEnabled":true,"c":{"k":[1,0.96,0.91,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[95.746,13.371],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12"}],"ip":312,"op":354,"st":-18,"bm":0,"sr":1},{"ddd":0,"ind":4,"ty":4,"nm":"B","parent":10,"ks":{"o":{"k":[{"t":0,"s":[100],"h":1},{"t":80.4,"s":[0],"h":1},{"t":128.4,"s":[100],"h":1},{"t":140,"s":[0],"h":1},{"t":152,"s":[100],"h":1},{"t":163.199,"s":[0],"h":1},{"t":236,"s":[100],"h":1},{"t":247.199,"s":[0],"h":1},{"t":423.602,"s":[100],"h":1},{"t":434.801,"s":[0],"h":1},{"t":462.801,"s":[100],"h":1},{"t":474,"s":[0],"h":1}]},"r":{"k":0},"p":{"k":[70.893,91.979,0]},"a":{"k":[0,0,0]},"s":{"k":[73.529,73.529,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[-44,-107],[-23,-107]],"c":false}},"nm":"Path 1"},{"ind":1,"ty":"sh","ks":{"k":{"i":[[0,0],[0,0]],"o":[[0,0],[0,0]],"v":[[22.833,-107],[43.833,-107]],"c":false}},"nm":"Path 2"},{"ty":"st","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"w":{"k":5},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":0,"op":564,"st":-18,"bm":0,"sr":1},{"ddd":0,"ind":5,"ty":4,"nm":"E2","parent":10,"ks":{"o":{"k":[{"t":0,"s":[0],"h":1},{"t":80.4,"s":[100],"h":1},{"t":128.4,"s":[0],"h":1},{"t":140,"s":[100],"h":1},{"t":152,"s":[0],"h":1},{"t":163.199,"s":[100],"h":1},{"t":236,"s":[0],"h":1},{"t":247.199,"s":[100],"h":1},{"t":312,"s":[0],"h":1},{"t":352,"s":[100],"h":1},{"t":423.602,"s":[0],"h":1},{"t":434.801,"s":[100],"h":1},{"t":462.801,"s":[0],"h":1},{"t":474,"s":[100],"h":1}]},"r":{"k":0},"p":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":84,"s":[75.228,35.572,0],"e":[75.228,35.572,0],"to":[0,0,0],"ti":[0,0,0]},{"t":104,"s":[75.228,35.572,0],"h":1},{"t":156,"s":[74.598,35.572,0],"h":1},{"t":190,"s":[75.333,35.572,0],"h":1},{"t":228,"s":[75.228,35.572,0],"h":1},{"t":312,"s":[75.333,35.572,0],"h":1}]},"a":{"k":[70.893,35.572,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,2.439],[0,0],[-2.439,0],[0,0],[0,-2.44],[0,0],[2.439,0],[0,0]],"o":[[0,0],[0,-2.44],[0,0],[2.439,0],[0,0],[0,2.439],[0,0],[-2.439,0]],"v":[[-4.462,0.044],[-4.462,-0.045],[-0.045,-4.462],[0.045,-4.462],[4.462,-0.045],[4.462,0.044],[0.045,4.462],[-0.045,4.462]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[41.978,13.371],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,2.439],[0,0],[-2.439,0],[0,0],[0,-2.44],[0,0],[2.439,0],[0,0]],"o":[[0,0],[0,-2.44],[0,0],[2.439,0],[0,0],[0,2.439],[0,0],[-2.439,0]],"v":[[-4.462,0.044],[-4.462,-0.045],[-0.045,-4.462],[0.045,-4.462],[4.462,-0.045],[4.462,0.044],[0.045,4.462],[-0.045,4.462]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[91.684,13.371],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11"}],"ip":80,"op":564,"st":-18,"bm":0,"sr":1},{"ddd":0,"ind":6,"ty":4,"nm":"E1","parent":10,"ks":{"o":{"k":[{"t":0,"s":[0],"h":1},{"t":80.4,"s":[100],"h":1},{"t":128.4,"s":[0],"h":1},{"t":140,"s":[100],"h":1},{"t":152,"s":[0],"h":1},{"t":163.199,"s":[100],"h":1},{"t":236,"s":[0],"h":1},{"t":247.199,"s":[100],"h":1},{"t":312,"s":[0],"h":1},{"t":352,"s":[100],"h":1},{"t":423.602,"s":[0],"h":1},{"t":434.801,"s":[100],"h":1},{"t":462.801,"s":[0],"h":1},{"t":474,"s":[100],"h":1}]},"r":{"k":0},"p":{"k":[70.893,35.572,0]},"a":{"k":[70.893,35.572,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-2.439,0],[0,0],[0,2.439],[0,0],[2.439,0],[0,0],[0,-2.44],[0,0]],"o":[[0,0],[2.439,0],[0,0],[0,-2.44],[0,0],[-2.439,0],[0,0],[0,2.439]],"v":[[-4.107,4.461],[4.107,4.461],[8.524,0.044],[8.524,-0.044],[4.107,-4.461],[-4.107,-4.461],[-8.524,-0.044],[-8.524,0.044]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[1,0.96,0.91,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[46.04,13.371],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[-2.439,0],[0,0],[0,2.439],[0,0],[2.439,0],[0,0],[0,-2.44],[0,0]],"o":[[0,0],[2.439,0],[0,0],[0,-2.44],[0,0],[-2.439,0],[0,0],[0,2.439]],"v":[[-4.107,4.461],[4.107,4.461],[8.524,0.044],[8.524,-0.044],[4.107,-4.461],[-4.107,-4.461],[-8.524,-0.044],[-8.524,0.044]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[1,0.96,0.91,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[95.746,13.371],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12"}],"ip":80,"op":564,"st":-18,"bm":0,"sr":1},{"ddd":0,"ind":7,"ty":4,"nm":"S","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[70.893,35.572,0]},"a":{"k":[70.893,35.572,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0.867,0.132],[1.362,-0.67],[0,0],[-0.516,-1.05],[-1.369,0.661],[0,0],[-0.733,1.322]],"o":[[-1.494,-0.227],[0,0],[-1.357,0.68],[0.516,1.049],[0,0],[1.363,-0.67],[0.425,-0.767]],"v":[[2.323,-2.694],[-2.067,-2.018],[-2.119,-1.993],[-3.149,1.155],[-0.026,2.259],[0.024,2.236],[3.24,-0.828]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[26.093,21.583],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0.865,-0.144],[1.087,-1.06],[0,0],[-0.817,-0.837],[-1.096,1.053],[0,0],[-0.286,1.484]],"o":[[-1.491,0.249],[0,0],[-1.079,1.068],[0.816,0.837],[0,0],[1.087,-1.06],[0.166,-0.861]],"v":[[1.733,-3.174],[-2.23,-1.167],[-2.271,-1.128],[-2.272,2.184],[1.04,2.264],[1.08,2.225],[3.184,-1.686]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[39.598,38.412],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0.65,-0.589],[0.342,-1.48],[0,0],[-1.139,-0.263],[-0.353,1.479],[0,0],[0.562,1.403]],"o":[[-1.12,1.015],[0,0],[-0.33,1.481],[1.139,0.262],[0,0],[0.342,-1.479],[-0.326,-0.814]],"v":[[-0.059,-3.173],[-2.309,0.657],[-2.322,0.713],[-0.532,3.5],[2.298,1.776],[2.31,1.722],[1.966,-2.706]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[59.443,47.861],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[1.357,0.68],[0,0],[1.494,-0.228],[-0.425,-0.766],[-1.363,-0.67],[0,0],[-0.516,1.05]],"o":[[0,0],[-1.363,-0.669],[-0.867,0.131],[0.733,1.322],[0,0],[1.369,0.66],[0.516,-1.049]],"v":[[2.119,-1.993],[2.067,-2.018],[-2.323,-2.693],[-3.24,-0.829],[-0.024,2.236],[0.026,2.26],[3.149,1.154]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[115.693,21.583],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[1.491,0.249],[-0.165,-0.861],[-1.087,-1.06],[0,0],[-0.816,0.837],[1.079,1.067]],"o":[[-1.087,-1.06],[-0.865,-0.144],[0.286,1.484],[0,0],[1.096,1.053],[0.817,-0.837],[0,0]],"v":[[2.23,-1.168],[-1.734,-3.174],[-3.184,-1.686],[-1.081,2.227],[-1.041,2.265],[2.271,2.185],[2.27,-1.127]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[102.188,38.411],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[1.12,1.015],[0.326,-0.813],[-0.341,-1.48],[0,0],[-1.139,0.263],[0.33,1.481]],"o":[[-0.341,-1.479],[-0.649,-0.588],[-0.562,1.403],[0,0],[0.353,1.478],[1.14,-0.263],[0,0]],"v":[[2.309,0.656],[0.059,-3.174],[-1.967,-2.707],[-2.311,1.722],[-2.299,1.776],[0.532,3.499],[2.321,0.713]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[82.343,47.862],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6"}],"ip":0,"op":564,"st":-18,"bm":0,"sr":1},{"ddd":0,"ind":8,"ty":4,"nm":"MthCl","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[70.893,91.987,0]},"a":{"k":[0,0,0]},"s":{"k":[73.529,73.557,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[-7.875,0],[-2.958,1.25]],"o":[[2.875,1.25],[7.875,0],[0,0]],"v":[[-16.625,-88.125],[0.125,-84.375],[16.625,-88.125]],"c":false}},"nm":"Path 1"},{"ty":"st","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"w":{"k":4},"lc":2,"lj":1,"ml":4,"nm":"Stroke 1"},{"ty":"tr","p":{"k":[0,0],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1"}],"ip":0,"op":120,"st":-136,"bm":0,"sr":1},{"ddd":0,"ind":9,"ty":4,"nm":"Mth","parent":10,"ks":{"o":{"k":100},"r":{"k":0},"p":{"k":[70.893,35.572,0]},"a":{"k":[70.893,35.572,0]},"s":{"k":[100,100,100]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":[{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":118,"s":[{"i":[[3.739,0],[2.667,0.395],[-0.491,-0.159],[-0.019,-0.006],[-0.522,-0.156],[-0.081,-0.024],[-0.228,-0.066],[-0.141,-0.04],[-0.13,-0.036],[-0.171,-0.047],[-0.109,-0.029],[-0.256,-0.067],[-0.098,-0.025],[-0.268,-0.005],[-0.041,-0.001],[-0.317,-0.003],[-0.082,-0.001],[-0.332,0],[-0.259,0.002],[-0.088,0.001],[-0.168,0.002],[-0.103,0.001],[-0.148,0.003],[-0.105,0.025],[-0.133,0.032],[-0.108,0.026],[-0.125,0.031],[-0.108,0.027],[-0.117,0.03],[-0.109,0.028],[-0.105,0.027],[-0.114,0.03],[-0.054,0.015],[-0.283,0.079],[-0.054,0.015],[-0.131,0.038],[-0.062,0.018],[-0.124,0.037],[-0.06,0.018],[-0.12,0.037],[-0.053,0.016],[-0.117,0.037],[-0.046,0.015],[-0.117,0.038],[-0.032,0.011],[-0.118,0.04]],"o":[[-3.74,0],[0.418,0.15],[0.019,0.006],[0.465,0.151],[0.079,0.024],[0.218,0.065],[0.137,0.039],[0.127,0.036],[0.166,0.046],[0.107,0.029],[0.249,0.067],[0.097,0.025],[0.255,0.066],[0.041,0.001],[0.31,0.005],[0.082,0.001],[0.326,0.003],[0.263,0],[0.088,-0.001],[0.17,-0.001],[0.104,-0.001],[0.15,-0.002],[0.109,-0.002],[0.135,-0.032],[0.109,-0.026],[0.127,-0.031],[0.11,-0.027],[0.118,-0.03],[0.111,-0.029],[0.107,-0.028],[0.116,-0.031],[0.055,-0.015],[0.297,-0.08],[0.055,-0.015],[0.134,-0.038],[0.063,-0.018],[0.127,-0.037],[0.061,-0.018],[0.124,-0.037],[0.054,-0.016],[0.122,-0.038],[0.047,-0.015],[0.121,-0.039],[0.033,-0.011],[0.125,-0.041],[-2.673,0.353]],"v":[[-0.002,-1.882],[-9.593,-3.102],[-8.227,-2.636],[-8.171,-2.618],[-6.689,-2.158],[-6.45,-2.087],[-5.78,-1.891],[-5.366,-1.773],[-4.98,-1.665],[-4.475,-1.526],[-4.151,-1.438],[-3.392,-1.236],[-3.099,-1.16],[-2.301,-1.093],[-2.178,-1.091],[-1.236,-1.079],[-0.989,-1.077],[-0.003,-1.073],[0.78,-1.075],[1.043,-1.077],[1.551,-1.082],[1.86,-1.086],[2.308,-1.094],[2.771,-1.086],[3.173,-1.183],[3.498,-1.262],[3.877,-1.356],[4.204,-1.438],[4.556,-1.527],[4.889,-1.613],[5.205,-1.695],[5.552,-1.787],[5.714,-1.831],[6.583,-2.069],[6.749,-2.115],[7.145,-2.228],[7.333,-2.282],[7.709,-2.392],[7.891,-2.446],[8.257,-2.557],[8.418,-2.607],[8.777,-2.719],[8.915,-2.763],[9.272,-2.878],[9.37,-2.911],[9.737,-3.034]],"c":true}],"e":[{"i":[[3.739,0],[2.687,-2.206],[-0.514,-0.438],[-0.02,-0.016],[-0.544,-0.336],[-0.084,-0.048],[-0.237,-0.12],[-0.146,-0.067],[-0.135,-0.057],[-0.177,-0.066],[-0.113,-0.038],[-0.265,-0.072],[-0.101,-0.025],[-0.268,-0.048],[-0.041,-0.007],[-0.317,-0.03],[-0.082,-0.006],[-0.332,0],[-0.259,0.016],[-0.088,0.007],[-0.168,0.02],[-0.103,0.015],[-0.148,0.027],[-0.108,0.022],[-0.137,0.033],[-0.111,0.03],[-0.129,0.039],[-0.111,0.037],[-0.121,0.044],[-0.113,0.046],[-0.108,0.047],[-0.118,0.055],[-0.056,0.027],[-0.293,0.172],[-0.056,0.035],[-0.136,0.09],[-0.064,0.045],[-0.129,0.096],[-0.062,0.048],[-0.125,0.105],[-0.055,0.048],[-0.122,0.115],[-0.048,0.046],[-0.122,0.126],[-0.034,0.036],[-0.124,0.145]],"o":[[-3.74,0],[0.441,0.511],[0.02,0.016],[0.487,0.41],[0.082,0.051],[0.227,0.134],[0.142,0.073],[0.132,0.062],[0.172,0.073],[0.111,0.041],[0.258,0.088],[0.1,0.027],[0.263,0.064],[0.041,0.008],[0.31,0.052],[0.082,0.007],[0.326,0.025],[0.263,0],[0.088,-0.005],[0.17,-0.013],[0.104,-0.012],[0.15,-0.022],[0.109,-0.02],[0.139,-0.029],[0.112,-0.027],[0.131,-0.035],[0.113,-0.034],[0.122,-0.041],[0.115,-0.043],[0.11,-0.044],[0.12,-0.052],[0.057,-0.027],[0.307,-0.15],[0.057,-0.034],[0.139,-0.085],[0.065,-0.043],[0.132,-0.091],[0.063,-0.047],[0.129,-0.1],[0.056,-0.047],[0.127,-0.109],[0.049,-0.045],[0.126,-0.121],[0.035,-0.037],[0.131,-0.139],[-2.687,-2.204]],"v":[[0.002,-4.034],[-9.858,-0.499],[-8.423,0.927],[-8.363,0.976],[-6.815,2.095],[-6.567,2.243],[-5.87,2.624],[-5.44,2.836],[-5.039,3.012],[-4.516,3.219],[-4.18,3.342],[-3.395,3.58],[-3.093,3.657],[-2.298,3.827],[-2.174,3.852],[-1.232,3.972],[-0.986,3.992],[0.001,4.034],[0.784,4.009],[1.047,3.987],[1.555,3.939],[1.864,3.896],[2.312,3.825],[2.637,3.761],[3.051,3.668],[3.385,3.583],[3.775,3.47],[4.113,3.364],[4.476,3.235],[4.82,3.105],[5.146,2.966],[5.505,2.809],[5.672,2.725],[6.572,2.242],[6.743,2.142],[7.155,1.877],[7.349,1.748],[7.741,1.466],[7.93,1.325],[8.31,1.018],[8.478,0.875],[8.853,0.54],[8.997,0.403],[9.37,0.034],[9.474,-0.077],[9.858,-0.501]],"c":true}]},{"t":134}]},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[1,0.67,0.57,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[70.892,31.078],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":[{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":118,"s":[{"i":[[1.658,-0.941],[3.513,1.319],[-0.426,-0.278],[-1.88,-0.611],[0.419,0.15],[-3.74,0],[-2.673,0.353],[0.125,-0.041],[-0.359,0.134],[0.008,-0.002],[-0.011,0.003],[-0.351,0.222]],"o":[[-8.469,3.434],[-1.789,-0.668],[0.626,0.41],[-0.491,-0.159],[2.668,0.395],[3.738,0],[-0.119,0.041],[0.435,-0.144],[-0.008,0.002],[0.011,-0.003],[0.77,-0.288],[0.429,-0.271]],"v":[[9.611,0.159],[-9.453,0.093],[-12.119,-0.173],[-8.227,1.401],[-9.594,0.936],[-0.002,2.156],[9.737,1.004],[9.37,1.127],[10.566,0.708],[10.542,0.714],[10.575,0.706],[12.281,-0.066]],"c":true}],"e":[{"i":[[1.802,0],[0,0],[-0.478,-1.738],[-1.97,-1.674],[0.442,0.512],[-3.74,0],[-2.687,-2.205],[0.131,-0.139],[-0.379,0.549],[0.008,-0.003],[-0.011,0.004],[-0.39,1.418]],"o":[[0,0],[-1.802,0],[0.703,2.561],[-0.514,-0.438],[2.688,-2.205],[3.738,0],[-0.125,0.144],[0.456,-0.484],[-0.008,0.003],[0.011,-0.005],[0.814,-1.182],[0.477,-1.738]],"v":[[9.915,-4.964],[-9.913,-4.964],[-12.57,-1.512],[-8.422,4.964],[-9.859,3.538],[0.002,0.005],[9.858,3.536],[9.474,3.96],[10.732,2.411],[10.707,2.42],[10.741,2.408],[12.572,-1.512]],"c":true}]},{"t":134}]},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.34,0.35,0.36,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[70.893,27.04],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8"}],"ip":120,"op":564,"st":-136,"bm":0,"sr":1},{"ddd":0,"ind":10,"ty":4,"nm":"Bdy","parent":11,"ks":{"o":{"k":100},"r":{"k":[{"i":{"x":[0.22],"y":[1]},"o":{"x":[0.167],"y":[0]},"n":["0p22_1_0p167_0"],"t":288,"s":[0],"e":[-2.4]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0_1_0p333_0"],"t":306,"s":[-2.4],"e":[7.9]},{"i":{"x":[0.667],"y":[0.667]},"o":{"x":[0.333],"y":[0.333]},"n":["0p667_0p667_0p333_0p333"],"t":328,"s":[7.9],"e":[7.9]},{"i":{"x":[0.494],"y":[1]},"o":{"x":[0.604],"y":[0]},"n":["0p494_1_0p604_0"],"t":342,"s":[7.9],"e":[-2.6]},{"i":{"x":[0.379],"y":[1]},"o":{"x":[0.571],"y":[0]},"n":["0p379_1_0p571_0"],"t":362,"s":[-2.6],"e":[0]},{"t":384}]},"p":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":49.199,"s":[130.6,60,0],"e":[115.364,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":52.156,"s":[115.364,60,0],"e":[97.194,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":56.582,"s":[97.194,60,0],"e":[87.163,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":59.539,"s":[87.163,60,0],"e":[60,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":68.4,"s":[60,60,0],"e":[51.3,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.486,"y":0},"n":"0p667_1_0p486_0","t":82.801,"s":[51.3,60,0],"e":[66.902,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":118.801,"s":[66.902,60,0],"e":[60,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.333,"y":0.333},"n":"0p833_0p833_0p333_0p333","t":152.4,"s":[60,60,0],"e":[60,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"n":"0_0_0p167_0p167","t":193.199,"s":[60,60,0],"e":[60,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":0.59,"y":0.59},"n":"0p833_0p833_0p59_0p59","t":200.4,"s":[60,60,0],"e":[60,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":202.801,"s":[60,60,0],"e":[60,37.941,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.833,"y":0.833},"o":{"x":1,"y":0},"n":"0p833_0p833_1_0","t":212.4,"s":[60,37.941,0],"e":[60,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":0},"o":{"x":0.167,"y":0.167},"n":"0_0_0p167_0p167","t":224.4,"s":[60,60,0],"e":[60,60,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":0},"o":{"x":1,"y":1},"n":"0_0_1_1","t":229.199,"s":[60,60,0],"e":[60,60,0],"to":[0,0,0],"ti":[0,0,0]},{"t":238.80078125}]},"a":{"k":[70.893,70.893,0]},"s":{"k":[{"i":{"x":[0,0,0],"y":[0,1,0]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0_0_0p167_0p167","0_1_0p167_0p167","0_0_0p167_0p167"],"t":193.199,"s":[100,100,100],"e":[100,90,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[0.59,0.59,0.59],"y":[0.59,0,0.59]},"n":["0p833_0p833_0p59_0p59","0p833_0p833_0p59_0","0p833_0p833_0p59_0p59"],"t":200.4,"s":[100,90,100],"e":[100,107.3,100]},{"i":{"x":[0,0,0],"y":[0,1,0]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0_0_0p167_0p167","0_1_0p167_0p167","0_0_0p167_0p167"],"t":202.801,"s":[100,107.3,100],"e":[100,100,100]},{"i":{"x":[0.833,0.833,0.833],"y":[0.833,0.833,0.833]},"o":{"x":[1,1,1],"y":[1,0,1]},"n":["0p833_0p833_1_1","0p833_0p833_1_0","0p833_0p833_1_1"],"t":212.4,"s":[100,100,100],"e":[100,103,100]},{"i":{"x":[0,0,0],"y":[0,1,0]},"o":{"x":[0.167,0.167,0.167],"y":[0.167,0.167,0.167]},"n":["0_0_0p167_0p167","0_1_0p167_0p167","0_0_0p167_0p167"],"t":224.4,"s":[100,103,100],"e":[100,85.4,100]},{"i":{"x":[0,0,0],"y":[0,1,0]},"o":{"x":[1,1,1],"y":[1,0,1]},"n":["0_0_1_1","0_1_1_0","0_0_1_1"],"t":229.199,"s":[100,85.4,100],"e":[100,100,100]},{"t":238.80078125}]}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[34.278,0],[0,34.278]],"o":[[0,34.278],[-34.277,0],[0,0]],"v":[[62.065,-31.033],[0,31.033],[-62.065,-31.033]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[1,0.35,0.37,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[70.893,31.283],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13"},{"ty":"gr","it":[{"ind":0,"ty":"sh","ks":{"k":{"i":[[0,0],[-13.343,-13.342],[-18.869,0],[-13.343,13.343],[0,18.87]],"o":[[0,18.87],[13.343,13.343],[18.869,0],[13.343,-13.342],[0,0]],"v":[[-70.643,-35.322],[-49.952,14.631],[0,35.322],[49.952,14.631],[70.643,-35.322]],"c":true}},"nm":"Path 1"},{"ty":"fl","fillEnabled":true,"c":{"k":[0.55,0.88,0.44,1]},"o":{"k":100},"nm":"Fill 1"},{"ty":"tr","p":{"k":[70.893,35.572],"ix":2},"a":{"k":[0,0],"ix":1},"s":{"k":[100,100],"ix":3},"r":{"k":0,"ix":6},"o":{"k":100,"ix":7},"sk":{"k":0,"ix":4},"sa":{"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 14"}],"ip":0,"op":564,"st":-18,"bm":0,"sr":1},{"ddd":0,"ind":11,"ty":3,"nm":"NULL CONTROL","parent":0,"ks":{"o":{"k":0},"r":{"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"n":["0p833_0p833_0p167_0p167"],"t":49.199,"s":[-90],"e":[0]},{"i":{"x":[0],"y":[1]},"o":{"x":[0.167],"y":[0.167]},"n":["0_1_0p167_0p167"],"t":68.4,"s":[0],"e":[12]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.486],"y":[0]},"n":["0p667_1_0p486_0"],"t":82.801,"s":[12],"e":[-10.982]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"n":["0p667_1_0p333_0"],"t":118.801,"s":[-10.982],"e":[0]},{"t":152.400390625}]},"p":{"k":[{"i":{"x":0.833,"y":0.833},"o":{"x":0.167,"y":0.167},"n":"0p833_0p833_0p167_0p167","t":49.199,"s":[130.455,59.867,0],"e":[170.455,59.867,0],"to":[4.71404361724854,0,0],"ti":[0,0,0]},{"i":{"x":0,"y":1},"o":{"x":0.167,"y":0.167},"n":"0_1_0p167_0p167","t":68.4,"s":[170.455,59.867,0],"e":[178.433,59.867,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.486,"y":0},"n":"0p667_1_0p486_0","t":82.801,"s":[178.433,59.867,0],"e":[166.471,59.867,0],"to":[0,0,0],"ti":[0,0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"n":"0p667_1_0p333_0","t":118.801,"s":[166.471,59.867,0],"e":[170.455,59.867,0],"to":[0,0,0],"ti":[0,0,0]},{"t":152.400390625}]},"a":{"k":[60,60,0]},"s":{"k":[100,100,100]}},"ao":0,"ip":0,"op":564,"st":-18,"bm":0,"sr":1}],"v":"4.4.26","ddd":0,"ip":0,"op":563,"fr":60,"w":100,"h":100}
|