From 6501d0e18d707efb16f2de7e29ad6f7987ceca66 Mon Sep 17 00:00:00 2001 From: Lee SangHyun Date: Tue, 24 Feb 2026 10:08:50 +0900 Subject: [PATCH 01/11] =?UTF-8?q?feat:=20=EC=9D=BC=EB=B3=84=20=EB=AC=B8?= =?UTF-8?q?=EC=9E=A5=20=EC=A0=80=EC=9E=A5=20=EA=B0=9C=EC=88=98=EC=97=90=20?= =?UTF-8?q?=EB=94=B0=EB=A5=B8=20=EB=8F=85=EC=84=9C=20=EC=9E=94=EB=94=94=20?= =?UTF-8?q?=EC=8B=AC=EA=B8=B0?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(tabs)/_layout.tsx | 9 ++ app/(tabs)/stats.tsx | 128 +++++++++++++++++++++++++++ package-lock.json | 99 ++++++++++++++++++++- package.json | 4 +- src/services/sentenceService.ts | 16 ++++ src/view-models/useStatsViewModel.ts | 92 +++++++++++++++++++ 6 files changed, 346 insertions(+), 2 deletions(-) create mode 100644 app/(tabs)/stats.tsx create mode 100644 src/view-models/useStatsViewModel.ts diff --git a/app/(tabs)/_layout.tsx b/app/(tabs)/_layout.tsx index e3e576c..c24695a 100644 --- a/app/(tabs)/_layout.tsx +++ b/app/(tabs)/_layout.tsx @@ -28,6 +28,15 @@ export default function TabLayout() { ), }} /> + ( + + ), + }} + /> + 나의 독서 캘린더 + + {isLoading ? ( + + + 달력을 불러오는 중입니다... + + ) : ( + + + + )} + + ); +} + +const styles = StyleSheet.create({ + container: { + flex: 1, + backgroundColor: "#ffffff", + paddingTop: SIZES.padding * 2, + paddingHorizontal: SIZES.padding, + }, + headerTitle: { + fontSize: SIZES.h2, + fontWeight: "bold", + marginBottom: SIZES.padding, + color: "#333", + }, + loadingContainer: { + marginTop: 50, + alignItems: "center", + }, + loadingText: { + marginTop: SIZES.base, + fontSize: SIZES.body4, + color: "#666", + }, + calendarContainer: { + backgroundColor: "#fff", + borderRadius: SIZES.radius, + paddingBottom: SIZES.padding, + // 그림자 효과 + shadowColor: "#000", + shadowOffset: { width: 0, height: 2 }, + shadowOpacity: 0.05, + shadowRadius: 4, + elevation: 2, + }, +}); diff --git a/package-lock.json b/package-lock.json index 21f115b..d81b181 100644 --- a/package-lock.json +++ b/package-lock.json @@ -45,11 +45,13 @@ "react": "19.1.0", "react-dom": "19.1.0", "react-native": "0.81.5", + "react-native-calendars": "^1.1314.0", + "react-native-chart-kit": "^6.12.0", "react-native-gesture-handler": "~2.28.0", "react-native-reanimated": "~4.1.1", "react-native-safe-area-context": "~5.6.0", "react-native-screens": "~4.16.0", - "react-native-svg": "15.12.1", + "react-native-svg": "^15.12.1", "react-native-url-polyfill": "^3.0.0", "react-native-web": "~0.21.0", "react-native-worklets": "0.5.1" @@ -10037,6 +10039,16 @@ "node": ">=10" } }, + "node_modules/moment": { + "version": "2.30.1", + "resolved": "https://registry.npmjs.org/moment/-/moment-2.30.1.tgz", + "integrity": "sha512-uEmtNhbDOrWPFS+hdjFCBfy9f2YoyzRpwcl+DqpC6taX21FzsTLQVbMV/W7PzNSX6x/bhC1zA3c2UQ5NzH6how==", + "license": "MIT", + "optional": true, + "engines": { + "node": "*" + } + }, "node_modules/ms": { "version": "2.1.3", "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.3.tgz", @@ -10680,6 +10692,15 @@ "node": "20 || >=22" } }, + "node_modules/paths-js": { + "version": "0.4.11", + "resolved": "https://registry.npmjs.org/paths-js/-/paths-js-0.4.11.tgz", + "integrity": "sha512-3mqcLomDBXOo7Fo+UlaenG6f71bk1ZezPQy2JCmYHy2W2k5VKpP+Jbin9H0bjXynelTbglCqdFhSEkeIkKTYUA==", + "license": "Apache-2.0", + "engines": { + "node": ">=0.11.0" + } + }, "node_modules/picocolors": { "version": "1.1.1", "resolved": "https://registry.npmjs.org/picocolors/-/picocolors-1.1.1.tgz", @@ -10730,6 +10751,12 @@ "node": ">=4.0.0" } }, + "node_modules/point-in-polygon": { + "version": "1.1.0", + "resolved": "https://registry.npmjs.org/point-in-polygon/-/point-in-polygon-1.1.0.tgz", + "integrity": "sha512-3ojrFwjnnw8Q9242TzgXuTD+eKiutbzyslcq1ydfu82Db2y+Ogbmyrkpv0Hgj31qwT3lbS9+QAAO/pIQM35XRw==", + "license": "MIT" + }, "node_modules/possible-typed-array-names": { "version": "1.1.0", "resolved": "https://registry.npmjs.org/possible-typed-array-names/-/possible-typed-array-names-1.1.0.tgz", @@ -11074,6 +11101,43 @@ } } }, + "node_modules/react-native-calendars": { + "version": "1.1314.0", + "resolved": "https://registry.npmjs.org/react-native-calendars/-/react-native-calendars-1.1314.0.tgz", + "integrity": "sha512-4DLAVto8Qo9L3ggL2vsY9Gk8FFpJWtne8F/3wN8yUb7Xha9/SKS4B+vs7xlhWjKeqZUHws/Vi/q/6IZ8s60kcQ==", + "license": "MIT", + "dependencies": { + "hoist-non-react-statics": "^3.3.1", + "lodash": "^4.17.15", + "memoize-one": "^5.2.1", + "prop-types": "^15.5.10", + "react-native-swipe-gestures": "^1.0.5", + "recyclerlistview": "^4.0.0", + "xdate": "^0.8.0" + }, + "engines": { + "node": ">=18" + }, + "optionalDependencies": { + "moment": "^2.29.4" + } + }, + "node_modules/react-native-chart-kit": { + "version": "6.12.0", + "resolved": "https://registry.npmjs.org/react-native-chart-kit/-/react-native-chart-kit-6.12.0.tgz", + "integrity": "sha512-nZLGyCFzZ7zmX0KjYeeSV1HKuPhl1wOMlTAqa0JhlyW62qV/1ZPXHgT8o9s8mkFaGxdqbspOeuaa6I9jUQDgnA==", + "license": "MIT", + "dependencies": { + "lodash": "^4.17.13", + "paths-js": "^0.4.10", + "point-in-polygon": "^1.0.1" + }, + "peerDependencies": { + "react": "> 16.7.0", + "react-native": ">= 0.50.0", + "react-native-svg": "> 6.4.1" + } + }, "node_modules/react-native-gesture-handler": { "version": "2.28.0", "resolved": "https://registry.npmjs.org/react-native-gesture-handler/-/react-native-gesture-handler-2.28.0.tgz", @@ -11167,6 +11231,12 @@ "react-native": "*" } }, + "node_modules/react-native-swipe-gestures": { + "version": "1.0.5", + "resolved": "https://registry.npmjs.org/react-native-swipe-gestures/-/react-native-swipe-gestures-1.0.5.tgz", + "integrity": "sha512-Ns7Bn9H/Tyw278+5SQx9oAblDZ7JixyzeOczcBK8dipQk2pD7Djkcfnf1nB/8RErAmMLL9iXgW0QHqiII8AhKw==", + "license": "MIT" + }, "node_modules/react-native-url-polyfill": { "version": "3.0.0", "resolved": "https://registry.npmjs.org/react-native-url-polyfill/-/react-native-url-polyfill-3.0.0.tgz", @@ -11376,6 +11446,21 @@ } } }, + "node_modules/recyclerlistview": { + "version": "4.2.3", + "resolved": "https://registry.npmjs.org/recyclerlistview/-/recyclerlistview-4.2.3.tgz", + "integrity": "sha512-STR/wj/FyT8EMsBzzhZ1l2goYirMkIgfV3gYEPxI3Kf3lOnu6f7Dryhyw7/IkQrgX5xtTcDrZMqytvteH9rL3g==", + "license": "Apache-2.0", + "dependencies": { + "lodash.debounce": "4.0.8", + "prop-types": "15.8.1", + "ts-object-utils": "0.0.5" + }, + "peerDependencies": { + "react": ">= 15.2.1", + "react-native": ">= 0.30.0" + } + }, "node_modules/reflect.getprototypeof": { "version": "1.0.10", "resolved": "https://registry.npmjs.org/reflect.getprototypeof/-/reflect.getprototypeof-1.0.10.tgz", @@ -12701,6 +12786,12 @@ "integrity": "sha512-Y/arvbn+rrz3JCKl9C4kVNfTfSm2/mEp5FSz5EsZSANGPSlQrpRI5M4PKF+mJnE52jOO90PnPSc3Ur3bTQw0gA==", "license": "Apache-2.0" }, + "node_modules/ts-object-utils": { + "version": "0.0.5", + "resolved": "https://registry.npmjs.org/ts-object-utils/-/ts-object-utils-0.0.5.tgz", + "integrity": "sha512-iV0GvHqOmilbIKJsfyfJY9/dNHCs969z3so90dQWsO1eMMozvTpnB1MEaUbb3FYtZTGjv5sIy/xmslEz0Rg2TA==", + "license": "ISC" + }, "node_modules/tsconfig-paths": { "version": "3.15.0", "resolved": "https://registry.npmjs.org/tsconfig-paths/-/tsconfig-paths-3.15.0.tgz", @@ -13622,6 +13713,12 @@ "node": ">=10.0.0" } }, + "node_modules/xdate": { + "version": "0.8.3", + "resolved": "https://registry.npmjs.org/xdate/-/xdate-0.8.3.tgz", + "integrity": "sha512-1NhJWPJwN+VjbkACT9XHbQK4o6exeSVtS2CxhMPwUE7xQakoEFTlwra9YcqV/uHQVyeEUYoYC46VGDJ+etnIiw==", + "license": "(MIT OR GPL-2.0)" + }, "node_modules/xml2js": { "version": "0.6.0", "resolved": "https://registry.npmjs.org/xml2js/-/xml2js-0.6.0.tgz", diff --git a/package.json b/package.json index 33eb168..e7f3dbc 100644 --- a/package.json +++ b/package.json @@ -50,11 +50,13 @@ "react": "19.1.0", "react-dom": "19.1.0", "react-native": "0.81.5", + "react-native-calendars": "^1.1314.0", + "react-native-chart-kit": "^6.12.0", "react-native-gesture-handler": "~2.28.0", "react-native-reanimated": "~4.1.1", "react-native-safe-area-context": "~5.6.0", "react-native-screens": "~4.16.0", - "react-native-svg": "15.12.1", + "react-native-svg": "^15.12.1", "react-native-url-polyfill": "^3.0.0", "react-native-web": "~0.21.0", "react-native-worklets": "0.5.1" diff --git a/src/services/sentenceService.ts b/src/services/sentenceService.ts index b5f7905..63b6f8f 100644 --- a/src/services/sentenceService.ts +++ b/src/services/sentenceService.ts @@ -1,6 +1,22 @@ import { supabase } from "../lib/supabase"; import { Sentence } from "../types/sentence"; +// 모든 문장 불러오기 (현재 사용자 기준) +export const getAllUserSentences = async (): Promise => { + const { + data: { user }, + } = await supabase.auth.getUser(); + if (!user) throw new Error("User not authenticated"); + + const { data, error } = await supabase + .from("sentences") + .select("*") // 히트맵 계산을 위해 id와 생성 날짜만 가져옵니다. + .eq("user_id", user.id); + + if (error) throw error; + return data || []; +}; + // 첵 문장 불러오기 export const getSentencesByBookId = async ( bookId: number, diff --git a/src/view-models/useStatsViewModel.ts b/src/view-models/useStatsViewModel.ts new file mode 100644 index 0000000..4c5e6ac --- /dev/null +++ b/src/view-models/useStatsViewModel.ts @@ -0,0 +1,92 @@ +import { getAllUserSentences } from "@/services/sentenceService"; +import { Sentence } from "@/types/sentence"; +import { useFocusEffect } from "expo-router"; +import { useCallback, useState } from "react"; +import { Alert } from "react-native"; + +export const useStatsViewModel = () => { + const [markedDates, setMarkedDates] = useState({}); + const [sentencesData, setSentencesData] = useState>( + {}, + ); + const [isLoading, setIsLoading] = useState(true); + + useFocusEffect( + useCallback(() => { + const fetchStats = async () => { + try { + setIsLoading(true); + const sentences: Sentence[] = await getAllUserSentences(); + + const countsByDate = sentences.reduce( + (acc, sentence) => { + const dateOnly = sentence.create_at.split("T")[0]; + acc[dateOnly] = (acc[dateOnly] || 0) + 1; + return acc; + }, + {} as Record, + ); + + setSentencesData(countsByDate); + + const marks: any = {}; + Object.keys(countsByDate).forEach((date) => { + const count = countsByDate[date]; + let bgColor = "#ebedf0"; + let textColor = "black"; + + if (count >= 5) { + bgColor = "#196127"; + textColor = "white"; + } else if (count >= 3) { + bgColor = "#239a3b"; + textColor = "white"; + } else if (count >= 1) { + bgColor = "#7bc96f"; + textColor = "black"; + } + + marks[date] = { + customStyles: { + container: { + backgroundColor: bgColor, + borderRadius: 6, + }, + text: { + color: textColor, + fontWeight: "bold", + }, + }, + }; + }); + + setMarkedDates(marks); + } catch (error) { + console.error("통계 데이터 불러오기 실패:", error); + } finally { + setIsLoading(false); + } + }; + + fetchStats(); + }, []), + ); + + const onDayPress = (day: any) => { + const count = sentencesData[day.dateString] || 0; + if (count > 0) { + Alert.alert( + "기록 확인", + `${day.dateString}에\n${count}개의 문장을 수집하셨네요!`, + ); + } else { + Alert.alert("기록 확인", "이날은 수집한 문장이 없습니다."); + } + }; + + return { + isLoading, + markedDates, + onDayPress, + }; +}; From d1587f591452ea07aaff543c16a7c6051b0445c7 Mon Sep 17 00:00:00 2001 From: Lee SangHyun Date: Tue, 24 Feb 2026 10:41:40 +0900 Subject: [PATCH 02/11] =?UTF-8?q?feat:=20=EB=82=A0=EC=A7=9C=20=ED=81=B4?= =?UTF-8?q?=EB=A6=AD=20=EC=8B=9C=20=ED=95=B4=EB=8B=B9=20=EC=9D=BC=EC=9E=90?= =?UTF-8?q?=20=EC=A0=80=EC=9E=A5=20=EB=AC=B8=EC=9E=A5=20=ED=8C=9D=EC=97=85?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(tabs)/stats.tsx | 43 +++++++++++- src/components/BottomSheet.tsx | 100 +++++++++++++++++++++++++++ src/components/SentenceList.tsx | 28 ++++---- src/view-models/useStatsViewModel.ts | 38 ++++++---- 4 files changed, 179 insertions(+), 30 deletions(-) create mode 100644 src/components/BottomSheet.tsx diff --git a/app/(tabs)/stats.tsx b/app/(tabs)/stats.tsx index 7aba0a9..185f9e9 100644 --- a/app/(tabs)/stats.tsx +++ b/app/(tabs)/stats.tsx @@ -1,7 +1,16 @@ +import BottomSheet from "@/components/BottomSheet"; +import SentenceList from "@/components/SentenceList"; import { SIZES } from "@/constants/theme"; import { useStatsViewModel } from "@/view-models/useStatsViewModel"; +import { Ionicons } from "@expo/vector-icons"; import React from "react"; -import { ActivityIndicator, StyleSheet, Text, View } from "react-native"; +import { + ActivityIndicator, + StyleSheet, + Text, + TouchableOpacity, + View, +} from "react-native"; import { Calendar, LocaleConfig } from "react-native-calendars"; LocaleConfig.locales["kr"] = { @@ -48,7 +57,15 @@ LocaleConfig.locales["kr"] = { LocaleConfig.defaultLocale = "kr"; export default function StatsScreen() { - const { isLoading, markedDates, onDayPress } = useStatsViewModel(); + const { + isLoading, + markedDates, + onDayPress, + isSheetVisible, + closeSheet, + selectedDate, + selectedDateSentences, + } = useStatsViewModel(); return ( @@ -88,6 +105,16 @@ export default function StatsScreen() { /> )} + + + + {selectedDate} 기록 + + + + + + ); } @@ -96,7 +123,7 @@ const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: "#ffffff", - paddingTop: SIZES.padding * 2, + paddingTop: SIZES.padding * 3, paddingHorizontal: SIZES.padding, }, headerTitle: { @@ -125,4 +152,14 @@ const styles = StyleSheet.create({ shadowRadius: 4, elevation: 2, }, + sheetHeader: { + flexDirection: "row", + justifyContent: "space-between", + alignItems: "center", + paddingBottom: SIZES.padding, + }, + sheetTitle: { + fontSize: SIZES.h3, + fontWeight: "bold", + }, }); diff --git a/src/components/BottomSheet.tsx b/src/components/BottomSheet.tsx new file mode 100644 index 0000000..30efea7 --- /dev/null +++ b/src/components/BottomSheet.tsx @@ -0,0 +1,100 @@ +import React, { useEffect } from "react"; +import { + Dimensions, + StyleSheet, + TouchableWithoutFeedback, + View, +} from "react-native"; +import Animated, { + useAnimatedStyle, + useSharedValue, + withTiming, +} from "react-native-reanimated"; +import { SIZES } from "../constants/theme"; + +const { height } = Dimensions.get("window"); + +interface BottomSheetProps { + isVisible: boolean; + onClose: () => void; + children: React.ReactNode; +} + +export default function BottomSheet({ + isVisible, + onClose, + children, +}: BottomSheetProps) { + const translateY = useSharedValue(height); + const backdropOpacity = useSharedValue(0); + + useEffect(() => { + if (isVisible) { + translateY.value = withTiming(0, { duration: 300 }); + backdropOpacity.value = withTiming(0.5, { duration: 300 }); + } else { + translateY.value = withTiming(height, { duration: 300 }); + backdropOpacity.value = withTiming(0, { duration: 300 }); + } + }, [isVisible, backdropOpacity, translateY]); + + const animatedStyle = useAnimatedStyle(() => { + return { + transform: [{ translateY: translateY.value }], + }; + }); + + const backdropStyle = useAnimatedStyle(() => { + return { + opacity: backdropOpacity.value, + }; + }); + + return ( + <> + {isVisible && ( + + + + )} + + + {children} + + + ); +} + +const styles = StyleSheet.create({ + backdrop: { + ...StyleSheet.absoluteFillObject, + backgroundColor: "black", + }, + container: { + position: "absolute", + bottom: 0, + left: 0, + right: 0, + height: height * 0.7, + backgroundColor: "white", + borderTopLeftRadius: SIZES.radius * 2, + borderTopRightRadius: SIZES.radius * 2, + padding: SIZES.padding, + shadowColor: "#000", + shadowOffset: { + width: 0, + height: -2, + }, + shadowOpacity: 0.1, + shadowRadius: 4, + elevation: 5, + }, + handle: { + width: 40, + height: 5, + borderRadius: 2.5, + backgroundColor: "#ccc", + alignSelf: "center", + marginBottom: SIZES.base, + }, +}); diff --git a/src/components/SentenceList.tsx b/src/components/SentenceList.tsx index 4f255fa..291d257 100644 --- a/src/components/SentenceList.tsx +++ b/src/components/SentenceList.tsx @@ -13,7 +13,7 @@ import { interface SentenceListProps { sentences: Sentence[]; - onOptionPress: (item: Sentence) => void; + onOptionPress?: (item: Sentence) => void; } export default function SentenceList({ @@ -31,16 +31,18 @@ export default function SentenceList({ style={{ opacity: 0.3 }} /> - onOptionPress(item)} - hitSlop={{ top: 10, bottom: 10, left: 10, right: 10 }} - > - - + {onOptionPress && ( + onOptionPress(item)} + hitSlop={{ top: 10, bottom: 10, left: 10, right: 10 }} + > + + + )} {item.content} @@ -78,8 +80,8 @@ export default function SentenceList({ const styles = StyleSheet.create({ listContent: { - paddingHorizontal: SIZES.padding, - paddingVertical: SIZES.base * 2, + paddingHorizontal: SIZES.padding * 0.3, + paddingVertical: SIZES.padding, }, card: { backgroundColor: Colors.light.background, diff --git a/src/view-models/useStatsViewModel.ts b/src/view-models/useStatsViewModel.ts index 4c5e6ac..d95d28b 100644 --- a/src/view-models/useStatsViewModel.ts +++ b/src/view-models/useStatsViewModel.ts @@ -2,14 +2,16 @@ import { getAllUserSentences } from "@/services/sentenceService"; import { Sentence } from "@/types/sentence"; import { useFocusEffect } from "expo-router"; import { useCallback, useState } from "react"; -import { Alert } from "react-native"; export const useStatsViewModel = () => { const [markedDates, setMarkedDates] = useState({}); - const [sentencesData, setSentencesData] = useState>( - {}, - ); const [isLoading, setIsLoading] = useState(true); + const [allSentences, setAllSentences] = useState([]); + const [isSheetVisible, setSheetVisible] = useState(false); + const [selectedDate, setSelectedDate] = useState(null); + const [selectedDateSentences, setSelectedDateSentences] = useState< + Sentence[] + >([]); useFocusEffect( useCallback(() => { @@ -17,6 +19,7 @@ export const useStatsViewModel = () => { try { setIsLoading(true); const sentences: Sentence[] = await getAllUserSentences(); + setAllSentences(sentences); const countsByDate = sentences.reduce( (acc, sentence) => { @@ -27,8 +30,6 @@ export const useStatsViewModel = () => { {} as Record, ); - setSentencesData(countsByDate); - const marks: any = {}; Object.keys(countsByDate).forEach((date) => { const count = countsByDate[date]; @@ -73,20 +74,29 @@ export const useStatsViewModel = () => { ); const onDayPress = (day: any) => { - const count = sentencesData[day.dateString] || 0; - if (count > 0) { - Alert.alert( - "기록 확인", - `${day.dateString}에\n${count}개의 문장을 수집하셨네요!`, - ); - } else { - Alert.alert("기록 확인", "이날은 수집한 문장이 없습니다."); + const dateStr = day.dateString; + const sentencesForDate = allSentences.filter( + (s) => s.create_at.split("T")[0] === dateStr, + ); + + if (sentencesForDate.length > 0) { + setSelectedDate(dateStr); + setSelectedDateSentences(sentencesForDate); + setSheetVisible(true); } }; + const closeSheet = () => { + setSheetVisible(false); + }; + return { isLoading, markedDates, onDayPress, + isSheetVisible, + closeSheet, + selectedDate, + selectedDateSentences, }; }; From de33752df379a4cce846b5a57ca78fa18a5a9660 Mon Sep 17 00:00:00 2001 From: Lee SangHyun Date: Tue, 24 Feb 2026 12:21:55 +0900 Subject: [PATCH 03/11] =?UTF-8?q?feat:=20=EB=AC=B8=EC=9E=A5=20=ED=83=9C?= =?UTF-8?q?=EA=B7=B8=20=ED=86=B5=EA=B3=84=20=ED=8C=8C=EC=9D=B4=20=EC=B0=A8?= =?UTF-8?q?=ED=8A=B8?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(tabs)/stats.tsx | 169 ++++++++++++++++++++++++--- src/view-models/useStatsViewModel.ts | 52 ++++++++- 2 files changed, 203 insertions(+), 18 deletions(-) diff --git a/app/(tabs)/stats.tsx b/app/(tabs)/stats.tsx index 185f9e9..9c72120 100644 --- a/app/(tabs)/stats.tsx +++ b/app/(tabs)/stats.tsx @@ -6,12 +6,15 @@ import { Ionicons } from "@expo/vector-icons"; import React from "react"; import { ActivityIndicator, + Dimensions, + FlatList, StyleSheet, Text, TouchableOpacity, View, } from "react-native"; import { Calendar, LocaleConfig } from "react-native-calendars"; +import { PieChart } from "react-native-chart-kit"; LocaleConfig.locales["kr"] = { monthNames: [ @@ -56,10 +59,16 @@ LocaleConfig.locales["kr"] = { }; LocaleConfig.defaultLocale = "kr"; +const screenWidth = Dimensions.get("window").width; + +const sections = ["calendar", "piechart"]; + export default function StatsScreen() { const { isLoading, markedDates, + tagStats, + totalSentencesCount, onDayPress, isSheetVisible, closeSheet, @@ -67,22 +76,19 @@ export default function StatsScreen() { selectedDateSentences, } = useStatsViewModel(); - return ( - - 나의 독서 캘린더 + const totalTags = tagStats.reduce((sum, stat) => sum + stat.count, 0); - {isLoading ? ( - - - 달력을 불러오는 중입니다... - - ) : ( + const chartConfig = { + color: (opacity = 1) => `rgba(26, 255, 146, ${opacity})`, + }; + + const renderItem = ({ item }: { item: string }) => { + if (item === "calendar") { + return ( - )} + ); + } + if (item === "piechart") { + return ( + + 태그 분석 + + 저장된 문장: {totalSentencesCount}개 + + {tagStats.length > 0 ? ( + + + + {tagStats.map((stat) => ( + + + {stat.name} + + {((stat.count / totalTags) * 100).toFixed(1)}% + + + ))} + + + ) : ( + + 분석할 태그가 없습니다. + + )} + + ); + } + return null; + }; + + if (isLoading) { + return ( + + + 통계 데이터를 불러오는 중... + + ); + } + + return ( + + item} + ListHeaderComponent={ + 나의 독서 통계 + } + contentContainerStyle={{ paddingBottom: SIZES.padding * 2 }} + /> {selectedDate} 기록 @@ -123,17 +198,17 @@ const styles = StyleSheet.create({ container: { flex: 1, backgroundColor: "#ffffff", - paddingTop: SIZES.padding * 3, - paddingHorizontal: SIZES.padding, }, headerTitle: { fontSize: SIZES.h2, fontWeight: "bold", + paddingTop: SIZES.padding * 2, + paddingHorizontal: SIZES.padding, marginBottom: SIZES.padding, color: "#333", }, loadingContainer: { - marginTop: 50, + justifyContent: "center", alignItems: "center", }, loadingText: { @@ -144,14 +219,74 @@ const styles = StyleSheet.create({ calendarContainer: { backgroundColor: "#fff", borderRadius: SIZES.radius, + marginHorizontal: SIZES.padding, paddingBottom: SIZES.padding, - // 그림자 효과 shadowColor: "#000", shadowOffset: { width: 0, height: 2 }, shadowOpacity: 0.05, shadowRadius: 4, elevation: 2, }, + chartSectionContainer: { + marginTop: SIZES.padding * 2, + paddingHorizontal: SIZES.padding, + }, + sectionTitle: { + fontSize: SIZES.h3, + fontWeight: "bold", + marginBottom: SIZES.base, // Reduced margin to bring the next text closer + }, + totalSentencesText: { + fontSize: SIZES.body4, // Smaller font size + color: "#888", // Gray color + marginBottom: SIZES.padding, // Margin below this text + }, + chartWrapper: { + flexDirection: "row", + alignItems: "center", + backgroundColor: "#fff", + borderRadius: SIZES.radius, + padding: SIZES.padding, + shadowColor: "#000", + shadowOffset: { width: 0, height: 2 }, + shadowOpacity: 0.05, + shadowRadius: 4, + elevation: 2, + justifyContent: "space-between", + }, + legendContainer: { + flex: 1, + }, + legendItem: { + flexDirection: "row", + alignItems: "center", + marginBottom: SIZES.base, + }, + legendColor: { + width: 12, + height: 12, + borderRadius: 6, + marginRight: SIZES.base, + }, + legendText: { + flex: 1, + fontSize: 12, + }, + legendPercentage: { + fontSize: 12, + fontWeight: "600", + }, + emptyChartContainer: { + alignItems: "center", + justifyContent: "center", + height: 150, + backgroundColor: "#f9f9f9", + borderRadius: SIZES.radius, + }, + emptyChartText: { + color: "#999", + fontSize: SIZES.body4, + }, sheetHeader: { flexDirection: "row", justifyContent: "space-between", diff --git a/src/view-models/useStatsViewModel.ts b/src/view-models/useStatsViewModel.ts index d95d28b..23f2ca4 100644 --- a/src/view-models/useStatsViewModel.ts +++ b/src/view-models/useStatsViewModel.ts @@ -3,10 +3,35 @@ import { Sentence } from "@/types/sentence"; import { useFocusEffect } from "expo-router"; import { useCallback, useState } from "react"; +// 색상 생성 유틸리티 +const generateColor = (index: number) => { + const colors = [ + "#FF6384", + "#36A2EB", + "#FFCE56", + "#4BC0C0", + "#9966FF", + "#FF9F40", + "#C9CBCF", + "#a3e7ba", + ]; + return colors[index % colors.length]; +}; + +export interface TagStat { + name: string; + count: number; + color: string; + legendFontColor: string; + legendFontSize: number; +} + export const useStatsViewModel = () => { const [markedDates, setMarkedDates] = useState({}); const [isLoading, setIsLoading] = useState(true); const [allSentences, setAllSentences] = useState([]); + const [totalSentencesCount, setTotalSentencesCount] = useState(0); + const [tagStats, setTagStats] = useState([]); const [isSheetVisible, setSheetVisible] = useState(false); const [selectedDate, setSelectedDate] = useState(null); const [selectedDateSentences, setSelectedDateSentences] = useState< @@ -20,7 +45,9 @@ export const useStatsViewModel = () => { setIsLoading(true); const sentences: Sentence[] = await getAllUserSentences(); setAllSentences(sentences); + setTotalSentencesCount(sentences.length); + // 캘린더 데이터 처리 const countsByDate = sentences.reduce( (acc, sentence) => { const dateOnly = sentence.create_at.split("T")[0]; @@ -60,8 +87,29 @@ export const useStatsViewModel = () => { }, }; }); - setMarkedDates(marks); + + // 태그 통계 처리 + const allTags = sentences.flatMap((s) => s.tags || []); + const tagCounts = allTags.reduce( + (acc, tag) => { + acc[tag] = (acc[tag] || 0) + 1; + return acc; + }, + {} as Record, + ); + + const stats: TagStat[] = Object.entries(tagCounts) + .map(([name, count], index) => ({ + name, + count, + color: generateColor(index), + legendFontColor: "#333", + legendFontSize: 14, + })) + .sort((a, b) => b.count - a.count); // 많이 사용된 순으로 정렬 + + setTagStats(stats); } catch (error) { console.error("통계 데이터 불러오기 실패:", error); } finally { @@ -93,6 +141,8 @@ export const useStatsViewModel = () => { return { isLoading, markedDates, + tagStats, + totalSentencesCount, onDayPress, isSheetVisible, closeSheet, From 92e47771429cdc61ed4d3d7c53256d2370db9005 Mon Sep 17 00:00:00 2001 From: Lee SangHyun Date: Tue, 24 Feb 2026 20:39:13 +0900 Subject: [PATCH 04/11] =?UTF-8?q?feat:=20=EC=97=B0=EC=86=8D=20=EB=8F=85?= =?UTF-8?q?=EC=84=9C=20=EC=A7=84=ED=96=89=EB=B0=94?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(tabs)/stats.tsx | 24 ++++-- src/assets/animations/Flame.json | 1 + src/components/StreakProgressBar.tsx | 115 +++++++++++++++++++++++++++ src/view-models/useStatsViewModel.ts | 39 ++++++++- 4 files changed, 169 insertions(+), 10 deletions(-) create mode 100644 src/assets/animations/Flame.json create mode 100644 src/components/StreakProgressBar.tsx diff --git a/app/(tabs)/stats.tsx b/app/(tabs)/stats.tsx index 9c72120..538f5ef 100644 --- a/app/(tabs)/stats.tsx +++ b/app/(tabs)/stats.tsx @@ -1,5 +1,6 @@ import BottomSheet from "@/components/BottomSheet"; import SentenceList from "@/components/SentenceList"; +import StreakProgressBar from "@/components/StreakProgressBar"; // Import the new component import { SIZES } from "@/constants/theme"; import { useStatsViewModel } from "@/view-models/useStatsViewModel"; import { Ionicons } from "@expo/vector-icons"; @@ -61,7 +62,7 @@ LocaleConfig.defaultLocale = "kr"; const screenWidth = Dimensions.get("window").width; -const sections = ["calendar", "piechart"]; +const sections = ["calendar", "streak", "piechart"]; // Add "streak" to sections export default function StatsScreen() { const { @@ -74,6 +75,8 @@ export default function StatsScreen() { closeSheet, selectedDate, selectedDateSentences, + continuousReadingDays, + streakProgress, } = useStatsViewModel(); const totalTags = tagStats.reduce((sum, stat) => sum + stat.count, 0); @@ -112,12 +115,21 @@ export default function StatsScreen() { ); } + if (item === "streak") { + return ( + + ); + } + if (item === "piechart") { return ( 태그 분석 - 저장된 문장: {totalSentencesCount}개 + 수집한 문장: {totalSentencesCount}개 {tagStats.length > 0 ? ( @@ -234,12 +246,12 @@ const styles = StyleSheet.create({ sectionTitle: { fontSize: SIZES.h3, fontWeight: "bold", - marginBottom: SIZES.base, // Reduced margin to bring the next text closer + marginBottom: SIZES.base, }, totalSentencesText: { - fontSize: SIZES.body4, // Smaller font size - color: "#888", // Gray color - marginBottom: SIZES.padding, // Margin below this text + fontSize: SIZES.body4, + color: "#888", + marginBottom: SIZES.padding, }, chartWrapper: { flexDirection: "row", diff --git a/src/assets/animations/Flame.json b/src/assets/animations/Flame.json new file mode 100644 index 0000000..a4bc1b1 --- /dev/null +++ b/src/assets/animations/Flame.json @@ -0,0 +1 @@ +{"v":"5.7.1","fr":12,"ip":0,"op":53,"w":800,"h":800,"nm":"Comp 2","ddd":0,"assets":[{"id":"comp_0","layers":[{"ddd":0,"ind":1,"ty":0,"nm":"!!!!13","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[300,300,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":600,"h":600,"ip":46.4,"op":222.8,"st":-17.2,"bm":0},{"ddd":0,"ind":2,"ty":0,"nm":"!!!!13","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[300,300,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":600,"h":600,"ip":40,"op":46.4,"st":-16.4,"bm":0},{"ddd":0,"ind":3,"ty":0,"nm":"!!!!13","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[300,300,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":600,"h":600,"ip":33.6,"op":40,"st":-15.6,"bm":0},{"ddd":0,"ind":4,"ty":0,"nm":"!!!!13","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[300,300,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":600,"h":600,"ip":26.8,"op":33.6,"st":-14.8,"bm":0},{"ddd":0,"ind":5,"ty":0,"nm":"!!!!13","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[300,300,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":600,"h":600,"ip":20.4,"op":26.8,"st":-14,"bm":0},{"ddd":0,"ind":6,"ty":0,"nm":"!!!!13","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[300,300,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":600,"h":600,"ip":13.6,"op":20.4,"st":-13.2,"bm":0},{"ddd":0,"ind":7,"ty":0,"nm":"!!!!13","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[300,300,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":600,"h":600,"ip":6.8,"op":13.6,"st":-12.8,"bm":0},{"ddd":0,"ind":8,"ty":0,"nm":"!!!!13","refId":"comp_1","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[300,300,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":600,"h":600,"ip":0,"op":6.8,"st":-12,"bm":0}]},{"id":"comp_1","layers":[{"ddd":0,"ind":1,"ty":4,"nm":"core","parent":3,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-11,192,0],"ix":2},"a":{"a":0,"k":[-12,192.429,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[51.25,10.429],[47.25,35.25]],"o":[[5.5,-8.321],[29,7.5]],"v":[[-49.75,163],[-79.75,106.179]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[51.983,10.645],[36.75,139.5]],"o":[[-1,14.429],[-14.517,22.717]],"v":[[-77.983,110.033],[-31.233,57.212]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[52.25,9.179],[36.75,139.5]],"o":[[-1,14.429],[-11.25,22]],"v":[[-80,106.25],[-34.25,64.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[2.5,5.429],[36.75,139.5]],"o":[[-1,14.429],[-1,5.5]],"v":[[-35.5,58.5],[-29.25,57.679]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[51.25,10.429],[47.25,35.25]],"o":[[5.5,-8.321],[29,7.5]],"v":[[-49.75,163],[-79.75,106.179]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[51.983,10.645],[36.75,139.5]],"o":[[-1,14.429],[-14.517,22.717]],"v":[[-77.983,110.033],[-31.233,57.212]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[52.25,9.179],[36.75,139.5]],"o":[[-1,14.429],[-11.25,22]],"v":[[-80,106.25],[-34.25,64.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[2.5,5.429],[36.75,139.5]],"o":[[-1,14.429],[-1,5.5]],"v":[[-35.5,58.5],[-29.25,57.679]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[51.25,10.429],[47.25,35.25]],"o":[[5.5,-8.321],[29,7.5]],"v":[[-49.75,163],[-79.75,106.179]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[51.983,10.645],[36.75,139.5]],"o":[[-1,14.429],[-14.517,22.717]],"v":[[-77.983,110.033],[-31.233,57.212]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[52.25,9.179],[36.75,139.5]],"o":[[-1,14.429],[-11.25,22]],"v":[[-80,106.25],[-34.25,64.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[2.5,5.429],[36.75,139.5]],"o":[[-1,14.429],[-1,5.5]],"v":[[-35.5,58.5],[-29.25,57.679]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[51.25,10.429],[47.25,35.25]],"o":[[5.5,-8.321],[29,7.5]],"v":[[-49.75,163],[-79.75,106.179]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[51.983,10.645],[36.75,139.5]],"o":[[-1,14.429],[-14.517,22.717]],"v":[[-77.983,110.033],[-31.233,57.212]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[52.25,9.179],[36.75,139.5]],"o":[[-1,14.429],[-11.25,22]],"v":[[-80,106.25],[-34.25,64.429]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[2.5,5.429],[36.75,139.5]],"o":[[-1,14.429],[-1,5.5]],"v":[[-35.5,58.5],[-29.25,57.679]],"c":true}]},{"t":72,"s":[{"i":[[51.431,10.482],[44.655,61.012]],"o":[[3.894,-2.699],[18.246,11.26]],"v":[[-56.727,149.911],[-67.761,94.079]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 13","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[36.25,7.679],[36.75,139.5]],"o":[[-1,14.429],[-10,16]],"v":[[-80,106.25],[-34.25,27.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[8.75,-8.821],[36.75,139.5]],"o":[[-1,14.429],[-2.25,12.25]],"v":[[-31.5,58],[-18.75,25.929]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[0.25,-12.071],[59.25,20.75]],"o":[[12,-4.321],[5.5,10.75]],"v":[[-48.75,162.25],[-33.375,116.054]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[33.85,6.362],[38.25,131.583]],"o":[[-0.133,13.179],[-1.967,17.467]],"v":[[-77.917,109.983],[-41.033,57.962]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[36.25,7.679],[36.75,139.5]],"o":[[-1,14.429],[-10,16]],"v":[[-80,106.25],[-34.25,27.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[8.75,-8.821],[36.75,139.5]],"o":[[-1,14.429],[-2.25,12.25]],"v":[[-31.5,58],[-18.75,25.929]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[0.25,-12.071],[59.25,20.75]],"o":[[12,-4.321],[5.5,10.75]],"v":[[-48.75,162.25],[-33.375,116.054]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[33.85,6.362],[38.25,131.583]],"o":[[-0.133,13.179],[-1.967,17.467]],"v":[[-77.917,109.983],[-41.033,57.962]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[36.25,7.679],[36.75,139.5]],"o":[[-1,14.429],[-10,16]],"v":[[-80,106.25],[-34.25,27.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[8.75,-8.821],[36.75,139.5]],"o":[[-1,14.429],[-2.25,12.25]],"v":[[-31.5,58],[-18.75,25.929]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[0.25,-12.071],[59.25,20.75]],"o":[[12,-4.321],[5.5,10.75]],"v":[[-48.75,162.25],[-33.375,116.054]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[33.85,6.362],[38.25,131.583]],"o":[[-0.133,13.179],[-1.967,17.467]],"v":[[-77.917,109.983],[-41.033,57.962]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[36.25,7.679],[36.75,139.5]],"o":[[-1,14.429],[-10,16]],"v":[[-80,106.25],[-34.25,27.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[8.75,-8.821],[36.75,139.5]],"o":[[-1,14.429],[-2.25,12.25]],"v":[[-31.5,58],[-18.75,25.929]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[0.25,-12.071],[59.25,20.75]],"o":[[12,-4.321],[5.5,10.75]],"v":[[-48.75,162.25],[-33.375,116.054]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[33.85,6.362],[38.25,131.583]],"o":[[-0.133,13.179],[-1.967,17.467]],"v":[[-77.917,109.983],[-41.033,57.962]],"c":true}]},{"t":72,"s":[{"i":[[29.454,3.602],[36.75,139.5]],"o":[[-1,14.429],[-8.085,15.073]],"v":[[-68.015,94.327],[-30.42,27.058]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 12","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[13.75,-11.321],[-31.5,0]],"o":[[12,11.179],[4.75,-33]],"v":[[-49.875,163.25],[-12,192.429]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 11","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[13.75,-11.321],[-31.5,0]],"o":[[12,11.179],[4.75,-33]],"v":[[-49.875,163.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[27.75,5.245],[-59.033,-35.467]],"o":[[-0.133,14.212],[15.483,-86.2]],"v":[[-77.992,110.05],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[28.75,6.429],[-61,-38]],"o":[[-1,14.429],[16.25,-90]],"v":[[-80,106.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-0.417,28.595],[-34.4,-76.733]],"o":[[-9.867,20.262],[44.483,-119.867]],"v":[[-34.967,57.95],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[13.75,-11.321],[-31.5,0]],"o":[[12,11.179],[4.75,-33]],"v":[[-49.875,163.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[27.75,5.245],[-59.033,-35.467]],"o":[[-0.133,14.212],[15.483,-86.2]],"v":[[-77.992,110.05],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[28.75,6.429],[-61,-38]],"o":[[-1,14.429],[16.25,-90]],"v":[[-80,106.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-0.417,28.595],[-34.4,-76.733]],"o":[[-9.867,20.262],[44.483,-119.867]],"v":[[-34.967,57.95],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[13.75,-11.321],[-31.5,0]],"o":[[12,11.179],[4.75,-33]],"v":[[-49.875,163.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[27.75,5.245],[-59.033,-35.467]],"o":[[-0.133,14.212],[15.483,-86.2]],"v":[[-77.992,110.05],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[28.75,6.429],[-61,-38]],"o":[[-1,14.429],[16.25,-90]],"v":[[-80,106.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-0.417,28.595],[-34.4,-76.733]],"o":[[-9.867,20.262],[44.483,-119.867]],"v":[[-34.967,57.95],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[13.75,-11.321],[-31.5,0]],"o":[[12,11.179],[4.75,-33]],"v":[[-49.875,163.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[27.75,5.245],[-59.033,-35.467]],"o":[[-0.133,14.212],[15.483,-86.2]],"v":[[-77.992,110.05],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[28.75,6.429],[-61,-38]],"o":[[-1,14.429],[16.25,-90]],"v":[[-80,106.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-0.417,28.595],[-34.4,-76.733]],"o":[[-9.867,20.262],[44.483,-119.867]],"v":[[-34.967,57.95],[-12,192.429]],"c":true}]},{"t":72,"s":[{"i":[[17.21,-7.227],[-38.304,-8.764]],"o":[[9.002,11.928],[7.402,-46.146]],"v":[[-56.823,150.104],[-12,192.429]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 10","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[28.75,6.429],[-61,-38]],"o":[[-1,14.429],[16.25,-90]],"v":[[-80,106.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-0.417,28.595],[-34.4,-76.733]],"o":[[-9.867,20.262],[44.483,-119.867]],"v":[[-31.217,57.95],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[13.75,-11.321],[-31.5,0]],"o":[[12,11.179],[4.75,-33]],"v":[[-49.25,162.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[27.75,5.245],[-59.033,-35.467]],"o":[[-0.133,14.212],[15.483,-86.2]],"v":[[-77.95,110],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[28.75,6.429],[-61,-38]],"o":[[-1,14.429],[16.25,-90]],"v":[[-80,106.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-0.417,28.595],[-34.4,-76.733]],"o":[[-9.867,20.262],[44.483,-119.867]],"v":[[-31.217,57.95],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[13.75,-11.321],[-31.5,0]],"o":[[12,11.179],[4.75,-33]],"v":[[-49.25,162.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[27.75,5.245],[-59.033,-35.467]],"o":[[-0.133,14.212],[15.483,-86.2]],"v":[[-77.95,110],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[28.75,6.429],[-61,-38]],"o":[[-1,14.429],[16.25,-90]],"v":[[-80,106.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-0.417,28.595],[-34.4,-76.733]],"o":[[-9.867,20.262],[44.483,-119.867]],"v":[[-31.217,57.95],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[13.75,-11.321],[-31.5,0]],"o":[[12,11.179],[4.75,-33]],"v":[[-49.25,162.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[27.75,5.245],[-59.033,-35.467]],"o":[[-0.133,14.212],[15.483,-86.2]],"v":[[-77.95,110],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[28.75,6.429],[-61,-38]],"o":[[-1,14.429],[16.25,-90]],"v":[[-80,106.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-0.417,28.595],[-34.4,-76.733]],"o":[[-9.867,20.262],[44.483,-119.867]],"v":[[-31.217,57.95],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[13.75,-11.321],[-31.5,0]],"o":[[12,11.179],[4.75,-33]],"v":[[-49.25,162.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[27.75,5.245],[-59.033,-35.467]],"o":[[-0.133,14.212],[15.483,-86.2]],"v":[[-77.95,110],[-12,192.429]],"c":true}]},{"t":72,"s":[{"i":[[21.542,11.907],[-54.427,-47.571]],"o":[[-3.191,15.87],[23.227,-97.381]],"v":[[-67.945,94.314],[-12,192.429]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 9","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-30.25,6.679],[-5.905,8.619]],"o":[[-3.25,-12.988],[-27.905,15.619]],"v":[[36.25,154.75],[72.571,104.143]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-16.304,7.143],[-6.206,6.056]],"o":[[-17.125,-3.75],[-44.816,19.169]],"v":[[67.875,130],[65.388,102.546]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-8.554,40.843],[-5.547,16.854]],"o":[[-23.542,9.717],[-52.921,47.595]],"v":[[72.192,105.967],[51.026,76.653]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-30.25,6.679],[-5.905,8.619]],"o":[[-3.25,-12.988],[-27.905,15.619]],"v":[[36.25,154.75],[72.571,104.143]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-16.304,7.143],[-6.206,6.056]],"o":[[-17.125,-3.75],[-44.816,19.169]],"v":[[67.875,130],[65.388,102.546]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-8.554,40.843],[-5.547,16.854]],"o":[[-23.542,9.717],[-52.921,47.595]],"v":[[72.192,105.967],[51.026,76.653]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-30.25,6.679],[-5.905,8.619]],"o":[[-3.25,-12.988],[-27.905,15.619]],"v":[[36.25,154.75],[72.571,104.143]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-16.304,7.143],[-6.206,6.056]],"o":[[-17.125,-3.75],[-44.816,19.169]],"v":[[67.875,130],[65.388,102.546]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-8.554,40.843],[-5.547,16.854]],"o":[[-23.542,9.717],[-52.921,47.595]],"v":[[72.192,105.967],[51.026,76.653]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-30.25,6.679],[-5.905,8.619]],"o":[[-3.25,-12.988],[-27.905,15.619]],"v":[[36.25,154.75],[72.571,104.143]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-16.304,7.143],[-6.206,6.056]],"o":[[-17.125,-3.75],[-44.816,19.169]],"v":[[67.875,130],[65.388,102.546]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-8.554,40.843],[-5.547,16.854]],"o":[[-23.542,9.717],[-52.921,47.595]],"v":[[72.192,105.967],[51.026,76.653]],"c":true}]},{"t":72,"s":[{"i":[[-27.104,6.784],[-5.973,8.041]],"o":[[-6.38,-10.904],[-31.72,16.42]],"v":[[43.385,149.166],[70.951,103.783]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 8","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-8,43.25],[-5.5,17.625]],"o":[[-24,10.679],[-53.5,49.625]],"v":[[72.5,104.25],[50,74.804]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-23.75,13.429],[21.5,28.286]],"o":[[-25.75,-3.5],[2,95.286]],"v":[[65.75,102.5],[31,24.643]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-28.183,93.995],[-14.433,56.719]],"o":[[-27.383,14.467],[-46.067,103.886]],"v":[[51.05,76.6],[12.333,-21.29]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-8,43.25],[-5.5,17.625]],"o":[[-24,10.679],[-53.5,49.625]],"v":[[72.5,104.25],[50,74.804]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-23.75,13.429],[21.5,28.286]],"o":[[-25.75,-3.5],[2,95.286]],"v":[[65.75,102.5],[31,24.643]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-28.183,93.995],[-14.433,56.719]],"o":[[-27.383,14.467],[-46.067,103.886]],"v":[[51.05,76.6],[12.333,-21.29]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-8,43.25],[-5.5,17.625]],"o":[[-24,10.679],[-53.5,49.625]],"v":[[72.5,104.25],[50,74.804]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-23.75,13.429],[21.5,28.286]],"o":[[-25.75,-3.5],[2,95.286]],"v":[[65.75,102.5],[31,24.643]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-28.183,93.995],[-14.433,56.719]],"o":[[-27.383,14.467],[-46.067,103.886]],"v":[[51.05,76.6],[12.333,-21.29]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-8,43.25],[-5.5,17.625]],"o":[[-24,10.679],[-53.5,49.625]],"v":[[72.5,104.25],[50,74.804]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-23.75,13.429],[21.5,28.286]],"o":[[-25.75,-3.5],[2,95.286]],"v":[[65.75,102.5],[31,24.643]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-28.183,93.995],[-14.433,56.719]],"o":[[-27.383,14.467],[-46.067,103.886]],"v":[[51.05,76.6],[12.333,-21.29]],"c":true}]},{"t":72,"s":[{"i":[[-11.553,36.522],[0.591,20.03]],"o":[[-24.395,7.48],[-40.979,59.926]],"v":[[70.977,103.855],[45.714,63.488]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-28.5,99.75],[-17,58.75]],"o":[[-27.5,15.75],[-49.5,104.5]],"v":[[50,74.75],[11,-24.571]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[30.75,57],[44.618,11.382]],"o":[[-1.25,36.679],[29.5,107.5]],"v":[[30.75,24.5],[-35.5,-16.13]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-24.55,96.9],[0.158,-0.313]],"o":[[-5.183,3.362],[-20.308,17.404]],"v":[[12.783,-22.4],[8.308,-24.725]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-28.5,99.75],[-17,58.75]],"o":[[-27.5,15.75],[-49.5,104.5]],"v":[[50,74.75],[11,-24.571]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[30.75,57],[44.618,11.382]],"o":[[-1.25,36.679],[29.5,107.5]],"v":[[30.75,24.5],[-35.5,-16.13]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-24.55,96.9],[0.158,-0.313]],"o":[[-5.183,3.362],[-20.308,17.404]],"v":[[12.783,-22.4],[8.308,-24.725]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-28.5,99.75],[-17,58.75]],"o":[[-27.5,15.75],[-49.5,104.5]],"v":[[50,74.75],[11,-24.571]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[30.75,57],[44.618,11.382]],"o":[[-1.25,36.679],[29.5,107.5]],"v":[[30.75,24.5],[-35.5,-16.13]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-24.55,96.9],[0.158,-0.313]],"o":[[-5.183,3.362],[-20.308,17.404]],"v":[[12.783,-22.4],[8.308,-24.725]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-28.5,99.75],[-17,58.75]],"o":[[-27.5,15.75],[-49.5,104.5]],"v":[[50,74.75],[11,-24.571]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[30.75,57],[44.618,11.382]],"o":[[-1.25,36.679],[29.5,107.5]],"v":[[30.75,24.5],[-35.5,-16.13]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-24.55,96.9],[0.158,-0.313]],"o":[[-5.183,3.362],[-20.308,17.404]],"v":[[12.783,-22.4],[8.308,-24.725]],"c":true}]},{"t":72,"s":[{"i":[[-15.133,90.105],[-3.099,48.064]],"o":[[-21.578,20.472],[-31.677,105.177]],"v":[[45.657,63.413],[0.509,-22.667]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 6","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-21.25,25],[16.5,-46.929]],"o":[[-16.75,-7.75],[37.25,-0.429]],"v":[[36.25,154.75],[-12,192.429]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 5","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-21.25,25],[16.5,-46.929]],"o":[[-16.75,-7.75],[37.25,-0.429]],"v":[[36.25,154.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-11.625,2.25],[6,-78.429]],"o":[[-17.125,-3.75],[46,-0.429]],"v":[[67.875,130],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-8.242,40.517],[-3.8,-107.829]],"o":[[-26.808,14.45],[30.6,-27.495]],"v":[[72.192,105.967],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-21.25,25],[16.5,-46.929]],"o":[[-16.75,-7.75],[37.25,-0.429]],"v":[[36.25,154.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-11.625,2.25],[6,-78.429]],"o":[[-17.125,-3.75],[46,-0.429]],"v":[[67.875,130],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-8.242,40.517],[-3.8,-107.829]],"o":[[-26.808,14.45],[30.6,-27.495]],"v":[[72.192,105.967],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-21.25,25],[16.5,-46.929]],"o":[[-16.75,-7.75],[37.25,-0.429]],"v":[[36.25,154.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-11.625,2.25],[6,-78.429]],"o":[[-17.125,-3.75],[46,-0.429]],"v":[[67.875,130],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-8.242,40.517],[-3.8,-107.829]],"o":[[-26.808,14.45],[30.6,-27.495]],"v":[[72.192,105.967],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-21.25,25],[16.5,-46.929]],"o":[[-16.75,-7.75],[37.25,-0.429]],"v":[[36.25,154.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-11.625,2.25],[6,-78.429]],"o":[[-17.125,-3.75],[46,-0.429]],"v":[[67.875,130],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-8.242,40.517],[-3.8,-107.829]],"o":[[-26.808,14.45],[30.6,-27.495]],"v":[[72.192,105.967],[-12,192.429]],"c":true}]},{"t":72,"s":[{"i":[[-19.079,19.868],[14.131,-54.035]],"o":[[-16.835,-6.848],[39.224,-0.429]],"v":[[43.385,149.166],[-12,192.429]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 4","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-8,43.25],[-4.5,-109.929]],"o":[[-27.5,15.75],[29.5,-29.429]],"v":[[72.5,104.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-19.75,7],[-4.5,-109.929]],"o":[[-25.75,-3.5],[69.5,-22.429]],"v":[[65.75,102.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-27.917,93.567],[-4.5,-109.929]],"o":[[-27.383,14.467],[32.167,-28.962]],"v":[[51.05,76.6],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-8,43.25],[-4.5,-109.929]],"o":[[-27.5,15.75],[29.5,-29.429]],"v":[[72.5,104.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-19.75,7],[-4.5,-109.929]],"o":[[-25.75,-3.5],[69.5,-22.429]],"v":[[65.75,102.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-27.917,93.567],[-4.5,-109.929]],"o":[[-27.383,14.467],[32.167,-28.962]],"v":[[51.05,76.6],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-8,43.25],[-4.5,-109.929]],"o":[[-27.5,15.75],[29.5,-29.429]],"v":[[72.5,104.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-19.75,7],[-4.5,-109.929]],"o":[[-25.75,-3.5],[69.5,-22.429]],"v":[[65.75,102.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-27.917,93.567],[-4.5,-109.929]],"o":[[-27.383,14.467],[32.167,-28.962]],"v":[[51.05,76.6],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-8,43.25],[-4.5,-109.929]],"o":[[-27.5,15.75],[29.5,-29.429]],"v":[[72.5,104.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-19.75,7],[-4.5,-109.929]],"o":[[-25.75,-3.5],[69.5,-22.429]],"v":[[65.75,102.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-27.917,93.567],[-4.5,-109.929]],"o":[[-27.383,14.467],[32.167,-28.962]],"v":[[51.05,76.6],[-12,192.429]],"c":true}]},{"t":72,"s":[{"i":[[-10.651,35.072],[-4.5,-109.929]],"o":[[-27.105,11.407],[38.524,-27.85]],"v":[[70.977,103.855],[-12,192.429]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 3","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-28.5,99.75],[-4.5,-109.929]],"o":[[-27.5,15.75],[29.5,-29.429]],"v":[[50,74.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[30.75,57],[-36.25,-131.679]],"o":[[8.25,43.5],[55.5,-76.179]],"v":[[30.75,24.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-24.55,96.9],[-65.883,-151.979]],"o":[[-25.117,17.6],[79.767,-119.812]],"v":[[12.783,-22.4],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-28.5,99.75],[-4.5,-109.929]],"o":[[-27.5,15.75],[29.5,-29.429]],"v":[[50,74.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[30.75,57],[-36.25,-131.679]],"o":[[8.25,43.5],[55.5,-76.179]],"v":[[30.75,24.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-24.55,96.9],[-65.883,-151.979]],"o":[[-25.117,17.6],[79.767,-119.812]],"v":[[12.783,-22.4],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-28.5,99.75],[-4.5,-109.929]],"o":[[-27.5,15.75],[29.5,-29.429]],"v":[[50,74.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[30.75,57],[-36.25,-131.679]],"o":[[8.25,43.5],[55.5,-76.179]],"v":[[30.75,24.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-24.55,96.9],[-65.883,-151.979]],"o":[[-25.117,17.6],[79.767,-119.812]],"v":[[12.783,-22.4],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-28.5,99.75],[-4.5,-109.929]],"o":[[-27.5,15.75],[29.5,-29.429]],"v":[[50,74.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[30.75,57],[-36.25,-131.679]],"o":[[8.25,43.5],[55.5,-76.179]],"v":[[30.75,24.5],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-24.55,96.9],[-65.883,-151.979]],"o":[[-25.117,17.6],[79.767,-119.812]],"v":[[12.783,-22.4],[-12,192.429]],"c":true}]},{"t":72,"s":[{"i":[[-15.133,90.105],[-11.663,-114.836]],"o":[[-19.435,22.01],[35.366,-39.976]],"v":[[45.657,63.413],[-12,192.429]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 2","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-28.5,99.75],[-68,-153.429]],"o":[[-27.5,15.75],[81.5,-122.929]],"v":[[11.5,-25.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[32.16,8.34],[-62.264,-159.838]],"o":[[30.274,103.623],[94.34,-136.253]],"v":[[-35.67,-16.316],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-24.456,93.656],[-67.618,-153.856]],"o":[[-23.648,21.608],[82.356,-123.817]],"v":[[8.355,-25.121],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-28.5,99.75],[-68,-153.429]],"o":[[-27.5,15.75],[81.5,-122.929]],"v":[[11.5,-25.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[32.16,8.34],[-62.264,-159.838]],"o":[[30.274,103.623],[94.34,-136.253]],"v":[[-35.67,-16.316],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-24.456,93.656],[-67.618,-153.856]],"o":[[-23.648,21.608],[82.356,-123.817]],"v":[[8.355,-25.121],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-28.5,99.75],[-68,-153.429]],"o":[[-27.5,15.75],[81.5,-122.929]],"v":[[11.5,-25.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[32.16,8.34],[-62.264,-159.838]],"o":[[30.274,103.623],[94.34,-136.253]],"v":[[-35.67,-16.316],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-24.456,93.656],[-67.618,-153.856]],"o":[[-23.648,21.608],[82.356,-123.817]],"v":[[8.355,-25.121],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-28.5,99.75],[-68,-153.429]],"o":[[-27.5,15.75],[81.5,-122.929]],"v":[[11.5,-25.75],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[32.16,8.34],[-62.264,-159.838]],"o":[[30.274,103.623],[94.34,-136.253]],"v":[[-35.67,-16.316],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-24.456,93.656],[-67.618,-153.856]],"o":[[-23.648,21.608],[82.356,-123.817]],"v":[[8.355,-25.121],[-12,192.429]],"c":true}]},{"t":72,"s":[{"i":[[-14.815,79.128],[-66.706,-154.875]],"o":[[-14.466,35.574],[84.397,-125.935]],"v":[[0.858,-23.622],[-12,192.429]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.089,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.589,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-6.123,134.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[-4.994,35.327],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-5.994,-4.673],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-5.17,28.306]}],"ix":6},"t":2,"h":{"a":0,"k":0,"ix":7},"a":{"a":0,"k":0,"ix":8},"nm":"Gradient Fill 4","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-27.257,83.339],"ix":2},"a":{"a":0,"k":[-27.257,83.339],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false}],"ip":-0.2,"op":72.8,"st":0.8,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"third","parent":3,"sr":1,"ks":{"o":{"a":0,"k":30,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-12,192.429,0],"ix":2},"a":{"a":0,"k":[-12,192.429,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-1.5,-17.25],[-45.5,-0.429],[4.027,2.634]],"o":[[12.5,4.75],[2.845,-55.788],[-10.5,-6.869]],"v":[[-57,152.75],[-12,192.429],[-31.027,140.866]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[14.719,0.938],[-38.033,-40.562],[0.576,-32.048]],"o":[[-7.1,56.083],[2.845,-55.788],[-1.141,45.867]],"v":[[-94.333,75.75],[-12,192.429],[-50.16,37.732]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-1.5,-17.25],[-45.5,-0.429],[4.027,2.634]],"o":[[12.5,4.75],[2.845,-55.788],[-10.5,-6.869]],"v":[[-57,152.75],[-12,192.429],[-31.027,140.866]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[13.638,-0.274],[-38.531,-37.886],[0.806,-29.735]],"o":[[-5.793,52.661],[2.845,-55.788],[-1.765,42.352]],"v":[[-91.844,80.883],[-12,192.429],[-48.885,44.608]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-1.5,-17.25],[-45.5,-0.429],[4.027,2.634]],"o":[[12.5,4.75],[2.845,-55.788],[-10.5,-6.869]],"v":[[-57,152.75],[-12,192.429],[-31.027,140.866]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[14.719,0.938],[-38.033,-40.562],[0.576,-32.048]],"o":[[-7.1,56.083],[2.845,-55.788],[-1.141,45.867]],"v":[[-94.333,75.75],[-12,192.429],[-50.16,37.732]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-1.5,-17.25],[-45.5,-0.429],[4.027,2.634]],"o":[[12.5,4.75],[2.845,-55.788],[-10.5,-6.869]],"v":[[-57,152.75],[-12,192.429],[-31.027,140.866]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[13.638,-0.274],[-38.531,-37.886],[0.806,-29.735]],"o":[[-5.793,52.661],[2.845,-55.788],[-1.765,42.352]],"v":[[-91.844,80.883],[-12,192.429],[-48.885,44.608]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-1.5,-17.25],[-45.5,-0.429],[4.027,2.634]],"o":[[12.5,4.75],[2.845,-55.788],[-10.5,-6.869]],"v":[[-57,152.75],[-12,192.429],[-31.027,140.866]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[14.719,0.938],[-38.033,-40.562],[0.576,-32.048]],"o":[[-7.1,56.083],[2.845,-55.788],[-1.141,45.867]],"v":[[-94.333,75.75],[-12,192.429],[-50.16,37.732]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-1.5,-17.25],[-45.5,-0.429],[4.027,2.634]],"o":[[12.5,4.75],[2.845,-55.788],[-10.5,-6.869]],"v":[[-57,152.75],[-12,192.429],[-31.027,140.866]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[13.638,-0.274],[-38.531,-37.886],[0.806,-29.735]],"o":[[-5.793,52.661],[2.845,-55.788],[-1.765,42.352]],"v":[[-91.844,80.883],[-12,192.429],[-48.885,44.608]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-1.5,-17.25],[-45.5,-0.429],[4.027,2.634]],"o":[[12.5,4.75],[2.845,-55.788],[-10.5,-6.869]],"v":[[-57,152.75],[-12,192.429],[-31.027,140.866]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[14.719,0.938],[-38.033,-40.562],[0.576,-32.048]],"o":[[-7.1,56.083],[2.845,-55.788],[-1.141,45.867]],"v":[[-94.333,75.75],[-12,192.429],[-50.16,37.732]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-1.5,-17.25],[-45.5,-0.429],[4.027,2.634]],"o":[[12.5,4.75],[2.845,-55.788],[-10.5,-6.869]],"v":[[-57,152.75],[-12,192.429],[-31.027,140.866]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[13.638,-0.274],[-38.531,-37.886],[0.806,-29.735]],"o":[[-5.793,52.661],[2.845,-55.788],[-1.765,42.352]],"v":[[-91.844,80.883],[-12,192.429],[-48.885,44.608]],"c":true}]},{"t":72,"s":[{"i":[[2.508,-12.755],[-43.655,-10.346],[3.174,-5.936]],"o":[[7.657,17.435],[2.845,-55.788],[-8.187,6.163]],"v":[[-66.226,133.722],[-12,192.429],[-35.755,115.38]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ind":1,"ty":"sh","ix":2,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[15.877,2.237],[-37.5,-43.429],[0.329,-34.525]],"o":[[-8.5,59.75],[2.845,-55.788],[-0.473,49.634]],"v":[[-97,70.25],[-12,192.429],[-51.527,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[15.877,2.237],[-16.033,-58.362],[13.114,2.024]],"o":[[1.3,57.417],[2.845,-55.788],[-3.273,8.568]],"v":[[-53.6,30.583],[-12,192.429],[-41.26,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[15.877,2.237],[-37.5,-43.429],[0.329,-34.525]],"o":[[-8.5,59.75],[2.845,-55.788],[-0.473,49.634]],"v":[[-97,70.25],[-12,192.429],[-51.527,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[15.877,2.237],[-17.464,-57.366],[12.262,-0.413]],"o":[[0.647,57.572],[2.845,-55.788],[-3.086,11.305]],"v":[[-51.36,33.228],[-12,192.429],[-41.945,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[15.877,2.237],[-37.5,-43.429],[0.329,-34.525]],"o":[[-8.5,59.75],[2.845,-55.788],[-0.473,49.634]],"v":[[-97,70.25],[-12,192.429],[-51.527,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[15.877,2.237],[-16.033,-58.362],[13.114,2.024]],"o":[[1.3,57.417],[2.845,-55.788],[-3.273,8.568]],"v":[[-53.6,30.583],[-12,192.429],[-41.26,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[15.877,2.237],[-37.5,-43.429],[0.329,-34.525]],"o":[[-8.5,59.75],[2.845,-55.788],[-0.473,49.634]],"v":[[-97,70.25],[-12,192.429],[-51.527,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[15.877,2.237],[-17.464,-57.366],[12.262,-0.413]],"o":[[0.647,57.572],[2.845,-55.788],[-3.086,11.305]],"v":[[-51.36,33.228],[-12,192.429],[-41.945,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[15.877,2.237],[-37.5,-43.429],[0.329,-34.525]],"o":[[-8.5,59.75],[2.845,-55.788],[-0.473,49.634]],"v":[[-97,70.25],[-12,192.429],[-51.527,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[15.877,2.237],[-16.033,-58.362],[13.114,2.024]],"o":[[1.3,57.417],[2.845,-55.788],[-3.273,8.568]],"v":[[-53.6,30.583],[-12,192.429],[-41.26,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[15.877,2.237],[-37.5,-43.429],[0.329,-34.525]],"o":[[-8.5,59.75],[2.845,-55.788],[-0.473,49.634]],"v":[[-97,70.25],[-12,192.429],[-51.527,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[15.877,2.237],[-17.464,-57.366],[12.262,-0.413]],"o":[[0.647,57.572],[2.845,-55.788],[-3.086,11.305]],"v":[[-51.36,33.228],[-12,192.429],[-41.945,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[15.877,2.237],[-37.5,-43.429],[0.329,-34.525]],"o":[[-8.5,59.75],[2.845,-55.788],[-0.473,49.634]],"v":[[-97,70.25],[-12,192.429],[-51.527,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[15.877,2.237],[-16.033,-58.362],[13.114,2.024]],"o":[[1.3,57.417],[2.845,-55.788],[-3.273,8.568]],"v":[[-53.6,30.583],[-12,192.429],[-41.26,30.366]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[15.877,2.237],[-37.5,-43.429],[0.329,-34.525]],"o":[[-8.5,59.75],[2.845,-55.788],[-0.473,49.634]],"v":[[-97,70.25],[-12,192.429],[-51.527,30.366]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[15.877,2.237],[-17.464,-57.366],[12.262,-0.413]],"o":[[0.647,57.572],[2.845,-55.788],[-3.086,11.305]],"v":[[-51.36,33.228],[-12,192.429],[-41.945,30.366]],"c":true}]},{"t":72,"s":[{"i":[[15.877,2.237],[-32.195,-47.119],[3.488,-25.493]],"o":[[-6.078,59.173],[2.845,-55.788],[-1.165,39.486]],"v":[[-86.275,60.448],[-12,192.429],[-48.99,30.366]],"c":true}]}],"ix":2},"nm":"Path 2","mn":"ADBE Vector Shape - Group","hd":false},{"ind":2,"ty":"sh","ix":3,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-10.75,6.5],[3.134,1.498],[-10.773,-51.014]],"o":[[-1.364,-3.333],[-12.381,-5.916],[50.5,-0.429]],"v":[[17.75,143.5],[10.674,136.07],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[14.75,66],[1.789,10.049],[-12.967,-88.719]],"o":[[-4.444,0.808],[-5.103,-28.675],[27.25,-39.429]],"v":[[65.5,95.5],[53.211,85.451],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[38.55,121.533],[-3.288,25.65],[-13.323,-109.8]],"o":[[-10.637,6.855],[3.439,-29.621],[5.55,-75.829]],"v":[[66.2,54.433],[33.555,25.984],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-10.75,6.5],[3.134,1.498],[-10.773,-51.014]],"o":[[-1.364,-3.333],[-12.381,-5.916],[50.5,-0.429]],"v":[[17.75,143.5],[10.674,136.07],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[14.75,66],[1.789,10.049],[-12.967,-88.719]],"o":[[-4.444,0.808],[-5.103,-28.675],[27.25,-39.429]],"v":[[65.5,95.5],[53.211,85.451],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[38.55,121.533],[-3.288,25.65],[-13.323,-109.8]],"o":[[-10.637,6.855],[3.439,-29.621],[5.55,-75.829]],"v":[[66.2,54.433],[33.555,25.984],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-10.75,6.5],[3.134,1.498],[-10.773,-51.014]],"o":[[-1.364,-3.333],[-12.381,-5.916],[50.5,-0.429]],"v":[[17.75,143.5],[10.674,136.07],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[14.75,66],[1.789,10.049],[-12.967,-88.719]],"o":[[-4.444,0.808],[-5.103,-28.675],[27.25,-39.429]],"v":[[65.5,95.5],[53.211,85.451],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[38.55,121.533],[-3.288,25.65],[-13.323,-109.8]],"o":[[-10.637,6.855],[3.439,-29.621],[5.55,-75.829]],"v":[[66.2,54.433],[33.555,25.984],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-10.75,6.5],[3.134,1.498],[-10.773,-51.014]],"o":[[-1.364,-3.333],[-12.381,-5.916],[50.5,-0.429]],"v":[[17.75,143.5],[10.674,136.07],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[14.75,66],[1.789,10.049],[-12.967,-88.719]],"o":[[-4.444,0.808],[-5.103,-28.675],[27.25,-39.429]],"v":[[65.5,95.5],[53.211,85.451],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[38.55,121.533],[-3.288,25.65],[-13.323,-109.8]],"o":[[-10.637,6.855],[3.439,-29.621],[5.55,-75.829]],"v":[[66.2,54.433],[33.555,25.984],[-12,192.429]],"c":true}]},{"t":72,"s":[{"i":[[-4.997,19.923],[2.831,3.427],[-11.268,-59.52]],"o":[[-2.059,-2.399],[-10.739,-11.05],[45.255,-9.227]],"v":[[28.523,132.671],[20.27,124.65],[-12,192.429]],"c":true}]}],"ix":2},"nm":"Path 3","mn":"ADBE Vector Shape - Group","hd":false},{"ind":3,"ty":"sh","ix":4,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[40.25,125.5],[-3.651,26.764],[-13.349,-111.306]],"o":[[-11.08,7.287],[4.05,-29.688],[4,-78.429]],"v":[[66.25,51.5],[32.151,21.736],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[4.125,37.875],[16.177,24.883],[-29.507,-158.737]],"o":[[-4.219,7.571],[-17.785,-27.356],[104,-61.429]],"v":[[42.875,-23.875],[2.323,-16.383],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[47.408,94.225],[9.618,-4.774],[-81.687,-226.136]],"o":[[1.909,15.16],[-30.852,20.523],[10.667,-77.295]],"v":[[21.058,-94.225],[6.62,-64.803],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[40.25,125.5],[-3.651,26.764],[-13.349,-111.306]],"o":[[-11.08,7.287],[4.05,-29.688],[4,-78.429]],"v":[[66.25,51.5],[32.151,21.736],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[4.125,37.875],[16.177,24.883],[-29.507,-158.737]],"o":[[-4.219,7.571],[-17.785,-27.356],[104,-61.429]],"v":[[42.875,-23.875],[2.323,-16.383],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[47.408,94.225],[9.618,-4.774],[-81.687,-226.136]],"o":[[1.909,15.16],[-30.852,20.523],[10.667,-77.295]],"v":[[21.058,-94.225],[6.62,-64.803],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[40.25,125.5],[-3.651,26.764],[-13.349,-111.306]],"o":[[-11.08,7.287],[4.05,-29.688],[4,-78.429]],"v":[[66.25,51.5],[32.151,21.736],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[4.125,37.875],[16.177,24.883],[-29.507,-158.737]],"o":[[-4.219,7.571],[-17.785,-27.356],[104,-61.429]],"v":[[42.875,-23.875],[2.323,-16.383],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[47.408,94.225],[9.618,-4.774],[-81.687,-226.136]],"o":[[1.909,15.16],[-30.852,20.523],[10.667,-77.295]],"v":[[21.058,-94.225],[6.62,-64.803],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[40.25,125.5],[-3.651,26.764],[-13.349,-111.306]],"o":[[-11.08,7.287],[4.05,-29.688],[4,-78.429]],"v":[[66.25,51.5],[32.151,21.736],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[4.125,37.875],[16.177,24.883],[-29.507,-158.737]],"o":[[-4.219,7.571],[-17.785,-27.356],[104,-61.429]],"v":[[42.875,-23.875],[2.323,-16.383],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[47.408,94.225],[9.618,-4.774],[-81.687,-226.136]],"o":[[1.909,15.16],[-30.852,20.523],[10.667,-77.295]],"v":[[21.058,-94.225],[6.62,-64.803],[-12,192.429]],"c":true}]},{"t":72,"s":[{"i":[[32.1,105.732],[0.822,26.34],[-16.994,-122.007]],"o":[[-9.532,7.351],[-0.876,-29.162],[26.56,-74.594]],"v":[[60.977,34.495],[25.422,13.136],[-12,192.429]],"c":true}]}],"ix":2},"nm":"Path 4","mn":"ADBE Vector Shape - Group","hd":false},{"ind":4,"ty":"sh","ix":5,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[50.5,98.25],[-110,-297.429]],"o":[[10.5,70.25],[4,-78.429]],"v":[[19.5,-99.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-1.5,74.25],[-72,-196.429]],"o":[[-17.5,20.25],[147,-111.429]],"v":[[-33.5,-98.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[47.033,96.65],[-107.467,-290.695]],"o":[[8.633,66.917],[13.533,-80.629]],"v":[[15.967,-99.183],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[50.5,98.25],[-110,-297.429]],"o":[[10.5,70.25],[4,-78.429]],"v":[[19.5,-99.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-1.5,74.25],[-72,-196.429]],"o":[[-17.5,20.25],[147,-111.429]],"v":[[-33.5,-98.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[47.033,96.65],[-107.467,-290.695]],"o":[[8.633,66.917],[13.533,-80.629]],"v":[[15.967,-99.183],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[50.5,98.25],[-110,-297.429]],"o":[[10.5,70.25],[4,-78.429]],"v":[[19.5,-99.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-1.5,74.25],[-72,-196.429]],"o":[[-17.5,20.25],[147,-111.429]],"v":[[-33.5,-98.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[47.033,96.65],[-107.467,-290.695]],"o":[[8.633,66.917],[13.533,-80.629]],"v":[[15.967,-99.183],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[50.5,98.25],[-110,-297.429]],"o":[[10.5,70.25],[4,-78.429]],"v":[[19.5,-99.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-1.5,74.25],[-72,-196.429]],"o":[[-17.5,20.25],[147,-111.429]],"v":[[-33.5,-98.25],[-12,192.429]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[47.033,96.65],[-107.467,-290.695]],"o":[[8.633,66.917],[13.533,-80.629]],"v":[[15.967,-99.183],[-12,192.429]],"c":true}]},{"t":72,"s":[{"i":[[38.769,92.836],[-101.427,-274.643]],"o":[[4.183,58.97],[36.261,-85.874]],"v":[[7.543,-99.024],[-12,192.429]],"c":true}]}],"ix":2},"nm":"Path 5","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.894,0.278,0.361,1,0.833,0.276,0.721,1,0.773,0.275,0.861,1,0.71,0.271,1,1,0.647,0.267],"ix":9}},"s":{"a":0,"k":[-13.123,158.654],"ix":5},"e":{"a":0,"k":[0.038,-137.693],"ix":6},"t":1,"nm":"Gradient Fill 31","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.527,46.589],"ix":2},"a":{"a":0,"k":[-11.527,46.589],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":6,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":-0.2,"op":72.8,"st":0.8,"bm":0},{"ddd":0,"ind":3,"ty":4,"nm":"second","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-11,192,0],"ix":2},"a":{"a":0,"k":[-11,192,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[45.933,22.95],[17.439,-19.146]],"o":[[4.433,26.95],[103.939,36.854]],"v":[[-101.433,62.55],[-82.939,158.146]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[52.933,36.017],[79.68,53.946]],"o":[[0.7,19.483],[117.18,200.012]],"v":[[-76,-3.95],[-130.539,38.679]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[53.433,36.95],[84.126,59.166]],"o":[[0.433,18.95],[118.126,211.667]],"v":[[-77.933,-8.7],[-133.939,30.146]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[92.433,66.183],[10.376,7.65]],"o":[[-3.067,9.183],[-20.874,147.025]],"v":[[-21.433,-76.183],[-50.126,-66.025]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[45.933,22.95],[17.439,-19.146]],"o":[[4.433,26.95],[103.939,36.854]],"v":[[-101.433,62.55],[-82.939,158.146]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[52.933,36.017],[79.68,53.946]],"o":[[0.7,19.483],[117.18,200.012]],"v":[[-76,-3.95],[-130.539,38.679]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[53.433,36.95],[84.126,59.166]],"o":[[0.433,18.95],[118.126,211.667]],"v":[[-77.933,-8.7],[-133.939,30.146]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[92.433,66.183],[10.376,7.65]],"o":[[-3.067,9.183],[-20.874,147.025]],"v":[[-21.433,-76.183],[-50.126,-66.025]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[45.933,22.95],[17.439,-19.146]],"o":[[4.433,26.95],[103.939,36.854]],"v":[[-101.433,62.55],[-82.939,158.146]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[52.933,36.017],[79.68,53.946]],"o":[[0.7,19.483],[117.18,200.012]],"v":[[-76,-3.95],[-130.539,38.679]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[53.433,36.95],[84.126,59.166]],"o":[[0.433,18.95],[118.126,211.667]],"v":[[-77.933,-8.7],[-133.939,30.146]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[92.433,66.183],[10.376,7.65]],"o":[[-3.067,9.183],[-20.874,147.025]],"v":[[-21.433,-76.183],[-50.126,-66.025]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[45.933,22.95],[17.439,-19.146]],"o":[[4.433,26.95],[103.939,36.854]],"v":[[-101.433,62.55],[-82.939,158.146]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[52.933,36.017],[79.68,53.946]],"o":[[0.7,19.483],[117.18,200.012]],"v":[[-76,-3.95],[-130.539,38.679]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[53.433,36.95],[84.126,59.166]],"o":[[0.433,18.95],[118.126,211.667]],"v":[[-77.933,-8.7],[-133.939,30.146]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[92.433,66.183],[10.376,7.65]],"o":[[-3.067,9.183],[-20.874,147.025]],"v":[[-21.433,-76.183],[-50.126,-66.025]],"c":true}]},{"t":72,"s":[{"i":[[47.663,26.179],[32.82,-1.084]],"o":[[3.511,25.105],[107.211,77.173]],"v":[[-95.148,46.117],[-94.702,128.624]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 12","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[69.433,279.467],[14.913,-27.582],[19.046,29.299]],"o":[[-22.567,24.45],[-10.891,20.143],[-27.182,80.617]],"v":[[-48.933,-68.95],[-72.838,40.317],[-133.876,29.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[42.5,31],[3.583,-6.668],[1.361,1.03]],"o":[[10.707,16.222],[-1.939,3.608],[-1.124,82.433]],"v":[[-69.5,-99.5],[-64.091,-63.124],[-69.876,-58.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[39.5,46],[-15.36,-25.339],[2.561,-5.179]],"o":[[-1.947,33.742],[8.311,13.711],[135.293,62.75]],"v":[[-132,33.5],[-94.217,128.85],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[67.438,263.902],[12.895,-27.433],[17.947,27]],"o":[[-21.192,25.07],[-9.611,19.715],[-16.35,79.425]],"v":[[-54.471,-62.12],[-74.263,46.219],[-130.471,37.928]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[69.433,279.467],[14.913,-27.582],[19.046,29.299]],"o":[[-22.567,24.45],[-10.891,20.143],[-27.182,80.617]],"v":[[-48.933,-68.95],[-72.838,40.317],[-133.876,29.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[42.5,31],[3.583,-6.668],[1.361,1.03]],"o":[[10.707,16.222],[-1.939,3.608],[-1.124,82.433]],"v":[[-69.5,-99.5],[-64.091,-63.124],[-69.876,-58.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[39.5,46],[-15.36,-25.339],[2.561,-5.179]],"o":[[-1.947,33.742],[8.311,13.711],[135.293,62.75]],"v":[[-132,33.5],[-94.217,128.85],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[67.438,263.902],[12.895,-27.433],[17.947,27]],"o":[[-21.192,25.07],[-9.611,19.715],[-16.35,79.425]],"v":[[-54.471,-62.12],[-74.263,46.219],[-130.471,37.928]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[69.433,279.467],[14.913,-27.582],[19.046,29.299]],"o":[[-22.567,24.45],[-10.891,20.143],[-27.182,80.617]],"v":[[-48.933,-68.95],[-72.838,40.317],[-133.876,29.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[42.5,31],[3.583,-6.668],[1.361,1.03]],"o":[[10.707,16.222],[-1.939,3.608],[-1.124,82.433]],"v":[[-69.5,-99.5],[-64.091,-63.124],[-69.876,-58.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[39.5,46],[-15.36,-25.339],[2.561,-5.179]],"o":[[-1.947,33.742],[8.311,13.711],[135.293,62.75]],"v":[[-132,33.5],[-94.217,128.85],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[67.438,263.902],[12.895,-27.433],[17.947,27]],"o":[[-21.192,25.07],[-9.611,19.715],[-16.35,79.425]],"v":[[-54.471,-62.12],[-74.263,46.219],[-130.471,37.928]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[69.433,279.467],[14.913,-27.582],[19.046,29.299]],"o":[[-22.567,24.45],[-10.891,20.143],[-27.182,80.617]],"v":[[-48.933,-68.95],[-72.838,40.317],[-133.876,29.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[42.5,31],[3.583,-6.668],[1.361,1.03]],"o":[[10.707,16.222],[-1.939,3.608],[-1.124,82.433]],"v":[[-69.5,-99.5],[-64.091,-63.124],[-69.876,-58.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[39.5,46],[-15.36,-25.339],[2.561,-5.179]],"o":[[-1.947,33.742],[8.311,13.711],[135.293,62.75]],"v":[[-132,33.5],[-94.217,128.85],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[67.438,263.902],[12.895,-27.433],[17.947,27]],"o":[[-21.192,25.07],[-9.611,19.715],[-16.35,79.425]],"v":[[-54.471,-62.12],[-74.263,46.219],[-130.471,37.928]],"c":true}]},{"t":72,"s":[{"i":[[62.777,218.067],[12.113,-22.414],[14.676,22.313]],"o":[[-14.345,22.417],[-8.679,16.057],[-20.743,81.066]],"v":[[-54.015,-76.499],[-70.676,14.755],[-118.061,7.521]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 11","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-31,0],[5.543,14.5]],"o":[[-4.5,-21.25],[-6.707,16.75]],"v":[[-11,192],[-41.293,166.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-31,0],[30.276,10.067]],"o":[[-0.3,-61.617],[21.76,32.617]],"v":[[-11,192],[-80.026,158.817]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-31,0],[5.543,14.5]],"o":[[-4.5,-21.25],[-6.707,16.75]],"v":[[-11,192],[-41.293,166.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-31,0],[30.276,10.067]],"o":[[-0.3,-61.617],[21.76,32.617]],"v":[[-11,192],[-80.026,158.817]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-31,0],[5.543,14.5]],"o":[[-4.5,-21.25],[-6.707,16.75]],"v":[[-11,192],[-41.293,166.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-31,0],[30.276,10.067]],"o":[[-0.3,-61.617],[21.76,32.617]],"v":[[-11,192],[-80.026,158.817]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-31,0],[5.543,14.5]],"o":[[-4.5,-21.25],[-6.707,16.75]],"v":[[-11,192],[-41.293,166.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-31,0],[30.276,10.067]],"o":[[-0.3,-61.617],[21.76,32.617]],"v":[[-11,192],[-80.026,158.817]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-31,0],[5.543,14.5]],"o":[[-4.5,-21.25],[-6.707,16.75]],"v":[[-11,192],[-41.293,166.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-31,0],[30.276,10.067]],"o":[[-0.3,-61.617],[21.76,32.617]],"v":[[-11,192],[-80.026,158.817]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-31,0],[5.543,14.5]],"o":[[-4.5,-21.25],[-6.707,16.75]],"v":[[-11,192],[-41.293,166.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-31,0],[30.276,10.067]],"o":[[-0.3,-61.617],[21.76,32.617]],"v":[[-11,192],[-80.026,158.817]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-31,0],[5.543,14.5]],"o":[[-4.5,-21.25],[-6.707,16.75]],"v":[[-11,192],[-41.293,166.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-31,0],[30.276,10.067]],"o":[[-0.3,-61.617],[21.76,32.617]],"v":[[-11,192],[-80.026,158.817]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-31,0],[5.543,14.5]],"o":[[-4.5,-21.25],[-6.707,16.75]],"v":[[-11,192],[-41.293,166.75]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-31,0],[30.276,10.067]],"o":[[-0.3,-61.617],[21.76,32.617]],"v":[[-11,192],[-80.026,158.817]],"c":true}]},{"t":72,"s":[{"i":[[-31,0],[11.655,13.405]],"o":[[-3.462,-31.225],[0.328,20.671]],"v":[[-11,192],[-50.864,164.79]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 10","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-31,0],[32.043,9.75]],"o":[[0,-64.5],[23.793,33.75]],"v":[[-11,192],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-50.6,0],[42.31,66.45]],"o":[[0,-195.633],[-27.307,82.05]],"v":[[-11,192],[-130.626,38.083]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-52,0],[43.043,70.5]],"o":[[0,-205],[-30.957,85.5]],"v":[[-11,192],[-134.043,29.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-69.5,-158.5],[14.343,84.267]],"o":[[47.133,-199.4],[-17.657,11.533]],"v":[[-11,192],[-49.876,-66.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-31,0],[32.043,9.75]],"o":[[0,-64.5],[23.793,33.75]],"v":[[-11,192],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-50.6,0],[42.31,66.45]],"o":[[0,-195.633],[-27.307,82.05]],"v":[[-11,192],[-130.626,38.083]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-52,0],[43.043,70.5]],"o":[[0,-205],[-30.957,85.5]],"v":[[-11,192],[-134.043,29.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-69.5,-158.5],[14.343,84.267]],"o":[[47.133,-199.4],[-17.657,11.533]],"v":[[-11,192],[-49.876,-66.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-31,0],[32.043,9.75]],"o":[[0,-64.5],[23.793,33.75]],"v":[[-11,192],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-50.6,0],[42.31,66.45]],"o":[[0,-195.633],[-27.307,82.05]],"v":[[-11,192],[-130.626,38.083]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-52,0],[43.043,70.5]],"o":[[0,-205],[-30.957,85.5]],"v":[[-11,192],[-134.043,29.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-69.5,-158.5],[14.343,84.267]],"o":[[47.133,-199.4],[-17.657,11.533]],"v":[[-11,192],[-49.876,-66.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-31,0],[32.043,9.75]],"o":[[0,-64.5],[23.793,33.75]],"v":[[-11,192],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-50.6,0],[42.31,66.45]],"o":[[0,-195.633],[-27.307,82.05]],"v":[[-11,192],[-130.626,38.083]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-52,0],[43.043,70.5]],"o":[[0,-205],[-30.957,85.5]],"v":[[-11,192],[-134.043,29.5]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-69.5,-158.5],[14.343,84.267]],"o":[[47.133,-199.4],[-17.657,11.533]],"v":[[-11,192],[-49.876,-66.933]],"c":true}]},{"t":72,"s":[{"i":[[-35.843,0],[34.58,23.761]],"o":[[0,-96.905],[11.165,45.686]],"v":[[-11,192],[-94.613,128.555]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 9","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-52,0],[43.043,70.5]],"o":[[0,-205],[-30.957,85.5]],"v":[[-11,192],[-134.043,29.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-75.333,-154.933],[14.343,84.267]],"o":[[47.133,-199.4],[-17.657,11.533]],"v":[[-11,192],[-69.876,-58.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-31,0],[32.043,9.75]],"o":[[0,-64.5],[23.793,33.75]],"v":[[-11,192],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-50.6,0],[42.31,66.45]],"o":[[0,-195.633],[-27.307,82.05]],"v":[[-11,192],[-130.626,38.083]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-52,0],[43.043,70.5]],"o":[[0,-205],[-30.957,85.5]],"v":[[-11,192],[-134.043,29.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-75.333,-154.933],[14.343,84.267]],"o":[[47.133,-199.4],[-17.657,11.533]],"v":[[-11,192],[-69.876,-58.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-31,0],[32.043,9.75]],"o":[[0,-64.5],[23.793,33.75]],"v":[[-11,192],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-50.6,0],[42.31,66.45]],"o":[[0,-195.633],[-27.307,82.05]],"v":[[-11,192],[-130.626,38.083]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-52,0],[43.043,70.5]],"o":[[0,-205],[-30.957,85.5]],"v":[[-11,192],[-134.043,29.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-75.333,-154.933],[14.343,84.267]],"o":[[47.133,-199.4],[-17.657,11.533]],"v":[[-11,192],[-69.876,-58.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-31,0],[32.043,9.75]],"o":[[0,-64.5],[23.793,33.75]],"v":[[-11,192],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-50.6,0],[42.31,66.45]],"o":[[0,-195.633],[-27.307,82.05]],"v":[[-11,192],[-130.626,38.083]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-52,0],[43.043,70.5]],"o":[[0,-205],[-30.957,85.5]],"v":[[-11,192],[-134.043,29.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-75.333,-154.933],[14.343,84.267]],"o":[[47.133,-199.4],[-17.657,11.533]],"v":[[-11,192],[-69.876,-58.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-31,0],[32.043,9.75]],"o":[[0,-64.5],[23.793,33.75]],"v":[[-11,192],[-82.793,158.25]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-50.6,0],[42.31,66.45]],"o":[[0,-195.633],[-27.307,82.05]],"v":[[-11,192],[-130.626,38.083]],"c":true}]},{"t":72,"s":[{"i":[[-57.766,-38.286],[35.951,73.902]],"o":[[11.647,-203.616],[-27.67,67.222]],"v":[[-11,192],[-118.186,7.647]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 01","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-26.196,20.251],[-14.707,-12.25],[-3.232,4.727]],"o":[[-53.75,16.5],[2.772,-3.018],[9.349,-13.677]],"v":[[118.25,88.75],[60.957,154.25],[69.763,142.514]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-4.583,14.12],[-32.29,6.5],[3.186,1.93]],"o":[[-32.833,47.167],[-2.429,-1.092],[-8.404,-5.092]],"v":[[79.333,92.167],[104.457,122],[86.404,115.592]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[5.294,30.341],[-35.946,64.6],[5.989,4.792]],"o":[[-103.222,96.011],[-3.479,0.853],[-9.521,-7.573]],"v":[[103.289,18.044],[117.057,90.967],[95.884,88.91]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-26.196,20.251],[-14.707,-12.25],[-3.232,4.727]],"o":[[-53.75,16.5],[2.772,-3.018],[9.349,-13.677]],"v":[[118.25,88.75],[60.957,154.25],[69.763,142.514]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-4.583,14.12],[-32.29,6.5],[3.186,1.93]],"o":[[-32.833,47.167],[-2.429,-1.092],[-8.404,-5.092]],"v":[[79.333,92.167],[104.457,122],[86.404,115.592]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[5.294,30.341],[-35.946,64.6],[5.989,4.792]],"o":[[-103.222,96.011],[-3.479,0.853],[-9.521,-7.573]],"v":[[103.289,18.044],[117.057,90.967],[95.884,88.91]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-26.196,20.251],[-14.707,-12.25],[-3.232,4.727]],"o":[[-53.75,16.5],[2.772,-3.018],[9.349,-13.677]],"v":[[118.25,88.75],[60.957,154.25],[69.763,142.514]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-4.583,14.12],[-32.29,6.5],[3.186,1.93]],"o":[[-32.833,47.167],[-2.429,-1.092],[-8.404,-5.092]],"v":[[79.333,92.167],[104.457,122],[86.404,115.592]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[5.294,30.341],[-35.946,64.6],[5.989,4.792]],"o":[[-103.222,96.011],[-3.479,0.853],[-9.521,-7.573]],"v":[[103.289,18.044],[117.057,90.967],[95.884,88.91]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-26.196,20.251],[-14.707,-12.25],[-3.232,4.727]],"o":[[-53.75,16.5],[2.772,-3.018],[9.349,-13.677]],"v":[[118.25,88.75],[60.957,154.25],[69.763,142.514]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-4.583,14.12],[-32.29,6.5],[3.186,1.93]],"o":[[-32.833,47.167],[-2.429,-1.092],[-8.404,-5.092]],"v":[[79.333,92.167],[104.457,122],[86.404,115.592]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[5.294,30.341],[-35.946,64.6],[5.989,4.792]],"o":[[-103.222,96.011],[-3.479,0.853],[-9.521,-7.573]],"v":[[103.289,18.044],[117.057,90.967],[95.884,88.91]],"c":true}]},{"t":72,"s":[{"i":[[-21.32,18.868],[-18.674,-8.02],[-1.784,4.096]],"o":[[-49.031,23.419],[1.599,-2.583],[5.344,-11.74]],"v":[[109.47,89.521],[70.771,146.974],[73.517,136.44]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 8","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[6,31.5],[-36.207,68.75],[6.189,4.996]],"o":[[-108.25,99.5],[-3.554,0.992],[-9.601,-7.75]],"v":[[105,12.75],[117.957,88.75],[96.561,87.004]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-13.333,57.667],[-56.957,56],[2.518,4.466]],"o":[[-72.333,99.667],[-3.239,-0.406],[-11.443,-20.296]],"v":[[64.333,-70.667],[79.957,92.25],[62.802,87.317]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":22.82,"s":[{"i":[[35.997,73.689],[-41.79,84.7],[7.992,4.622]],"o":[[-43.478,183.356],[-4.914,6.118],[-20.439,-15.654]],"v":[[35.543,-128.022],[91.624,55.033],[66.031,57.699]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[85.328,89.711],[-26.624,113.4],[13.467,4.778]],"o":[[-14.622,267.044],[-6.59,12.641],[-29.435,-11.012]],"v":[[8.606,-151.711],[103.29,17.817],[69.259,28.08]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[6,31.5],[-36.207,68.75],[6.189,4.996]],"o":[[-108.25,99.5],[-3.554,0.992],[-9.601,-7.75]],"v":[[105,12.75],[117.957,88.75],[96.561,87.004]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-13.333,57.667],[-56.957,56],[2.518,4.466]],"o":[[-72.333,99.667],[-3.239,-0.406],[-11.443,-20.296]],"v":[[64.333,-70.667],[79.957,92.25],[62.802,87.317]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[85.328,89.711],[-26.624,113.4],[13.467,4.778]],"o":[[-14.622,267.044],[-6.59,12.641],[-29.435,-11.012]],"v":[[8.606,-151.711],[103.29,17.817],[69.259,28.08]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[6,31.5],[-36.207,68.75],[6.189,4.996]],"o":[[-108.25,99.5],[-3.554,0.992],[-9.601,-7.75]],"v":[[105,12.75],[117.957,88.75],[96.561,87.004]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-13.333,57.667],[-56.957,56],[2.518,4.466]],"o":[[-72.333,99.667],[-3.239,-0.406],[-11.443,-20.296]],"v":[[64.333,-70.667],[79.957,92.25],[62.802,87.317]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[85.328,89.711],[-26.624,113.4],[13.467,4.778]],"o":[[-14.622,267.044],[-6.59,12.641],[-29.435,-11.012]],"v":[[8.606,-151.711],[103.29,17.817],[69.259,28.08]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[6,31.5],[-36.207,68.75],[6.189,4.996]],"o":[[-108.25,99.5],[-3.554,0.992],[-9.601,-7.75]],"v":[[105,12.75],[117.957,88.75],[96.561,87.004]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-13.333,57.667],[-56.957,56],[2.518,4.466]],"o":[[-72.333,99.667],[-3.239,-0.406],[-11.443,-20.296]],"v":[[64.333,-70.667],[79.957,92.25],[62.802,87.317]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[85.328,89.711],[-26.624,113.4],[13.467,4.778]],"o":[[-14.622,267.044],[-6.59,12.641],[-29.435,-11.012]],"v":[[8.606,-151.711],[103.29,17.817],[69.259,28.08]],"c":true}]},{"t":72,"s":[{"i":[[1.638,37.403],[-40.888,65.874],[5.361,4.876]],"o":[[-100.147,99.538],[-3.483,0.677],[-10.017,-10.58]],"v":[[95.825,-6.069],[109.384,89.54],[88.945,87.075]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 7","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[92.375,92],[-24.457,117.5],[14.249,4.8]],"o":[[-10.5,279],[-6.829,13.573],[-30.721,-10.349]],"v":[[4.625,-157.5],[104.957,12.5],[69.721,23.849]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-0.735,42.864],[-22.707,105.75],[7.23,-0.235]],"o":[[-53.875,217],[-7.212,3.669],[-38.089,1.238]],"v":[[-30.125,-149],[64.207,-70.75],[42.431,-65.041]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":22.82,"s":[{"i":[[0.529,23.557],[-6.607,62.525],[3.732,-0.24]],"o":[[-24.433,141.779],[-3.686,2.098],[-19.662,1.263]],"v":[[-22.531,-120.531],[34.93,-129.233],[23.744,-125.804]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[1.793,4.251],[9.493,19.3],[0.234,-0.244]],"o":[[5.008,66.558],[-0.161,0.526],[-1.235,1.288]],"v":[[1.742,-158.308],[7.507,-154.05],[6.91,-152.9]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[92.375,92],[-24.457,117.5],[14.249,4.8]],"o":[[-10.5,279],[-6.829,13.573],[-30.721,-10.349]],"v":[[4.625,-157.5],[104.957,12.5],[69.721,23.849]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-0.735,42.864],[-22.707,105.75],[7.23,-0.235]],"o":[[-53.875,217],[-7.212,3.669],[-38.089,1.238]],"v":[[-30.125,-149],[64.207,-70.75],[42.431,-65.041]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[1.793,4.251],[9.493,19.3],[0.234,-0.244]],"o":[[5.008,66.558],[-0.161,0.526],[-1.235,1.288]],"v":[[1.742,-158.308],[7.507,-154.05],[6.91,-152.9]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[92.375,92],[-24.457,117.5],[14.249,4.8]],"o":[[-10.5,279],[-6.829,13.573],[-30.721,-10.349]],"v":[[4.625,-157.5],[104.957,12.5],[69.721,23.849]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-0.735,42.864],[-22.707,105.75],[7.23,-0.235]],"o":[[-53.875,217],[-7.212,3.669],[-38.089,1.238]],"v":[[-30.125,-149],[64.207,-70.75],[42.431,-65.041]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[1.793,4.251],[9.493,19.3],[0.234,-0.244]],"o":[[5.008,66.558],[-0.161,0.526],[-1.235,1.288]],"v":[[1.742,-158.308],[7.507,-154.05],[6.91,-152.9]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[92.375,92],[-24.457,117.5],[14.249,4.8]],"o":[[-10.5,279],[-6.829,13.573],[-30.721,-10.349]],"v":[[4.625,-157.5],[104.957,12.5],[69.721,23.849]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-0.735,42.864],[-22.707,105.75],[7.23,-0.235]],"o":[[-53.875,217],[-7.212,3.669],[-38.089,1.238]],"v":[[-30.125,-149],[64.207,-70.75],[42.431,-65.041]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[1.793,4.251],[9.493,19.3],[0.234,-0.244]],"o":[[5.008,66.558],[-0.161,0.526],[-1.235,1.288]],"v":[[1.742,-158.308],[7.507,-154.05],[6.91,-152.9]],"c":true}]},{"t":72,"s":[{"i":[[71.369,80.915],[-24.062,114.849],[12.665,3.664]],"o":[[-20.286,265.013],[-6.915,11.339],[-32.383,-7.735]],"v":[[-3.215,-155.582],[95.764,-6.281],[63.564,3.795]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 6","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[0,-28.5],[3.793,8.25]],"o":[[21.25,0],[-10.207,9.25]],"v":[[-11,192],[17.457,174.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[0,-28.5],[-8.957,11.375]],"o":[[44.25,0],[-17.957,-0.875]],"v":[[-11,192],[39.207,164.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[0,-28.5],[-20.857,14.292]],"o":[[65.717,0],[-25.19,-10.325]],"v":[[-11,192],[59.507,154.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[0,-28.5],[3.793,8.25]],"o":[[21.25,0],[-10.207,9.25]],"v":[[-11,192],[17.457,174.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[0,-28.5],[-8.957,11.375]],"o":[[44.25,0],[-17.957,-0.875]],"v":[[-11,192],[39.207,164.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[0,-28.5],[-20.857,14.292]],"o":[[65.717,0],[-25.19,-10.325]],"v":[[-11,192],[59.507,154.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[0,-28.5],[3.793,8.25]],"o":[[21.25,0],[-10.207,9.25]],"v":[[-11,192],[17.457,174.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[0,-28.5],[-8.957,11.375]],"o":[[44.25,0],[-17.957,-0.875]],"v":[[-11,192],[39.207,164.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[0,-28.5],[-20.857,14.292]],"o":[[65.717,0],[-25.19,-10.325]],"v":[[-11,192],[59.507,154.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[0,-28.5],[3.793,8.25]],"o":[[21.25,0],[-10.207,9.25]],"v":[[-11,192],[17.457,174.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[0,-28.5],[-8.957,11.375]],"o":[[44.25,0],[-17.957,-0.875]],"v":[[-11,192],[39.207,164.5]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[0,-28.5],[-20.857,14.292]],"o":[[65.717,0],[-25.19,-10.325]],"v":[[-11,192],[59.507,154.933]],"c":true}]},{"t":72,"s":[{"i":[[0,-28.5],[0.917,8.955]],"o":[[26.439,0],[-11.955,6.966]],"v":[[-11,192],[22.364,172.438]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[0,-28.5],[-21.707,14.5]],"o":[[67.25,0],[-25.707,-11]],"v":[[-11,192],[60.957,154.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[3.25,-72.25],[-32.957,4.5]],"o":[[75.5,0],[-24.957,-13.5]],"v":[[-11,192],[104.457,122]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[6.283,-113.083],[0.643,25.967]],"o":[[76.433,-28.933],[-26.357,9.133]],"v":[[-11,192],[117.057,90.967]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[0,-28.5],[-21.707,14.5]],"o":[[67.25,0],[-25.707,-11]],"v":[[-11,192],[60.957,154.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[3.25,-72.25],[-32.957,4.5]],"o":[[75.5,0],[-24.957,-13.5]],"v":[[-11,192],[104.457,122]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[6.283,-113.083],[0.643,25.967]],"o":[[76.433,-28.933],[-26.357,9.133]],"v":[[-11,192],[117.057,90.967]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[0,-28.5],[-21.707,14.5]],"o":[[67.25,0],[-25.707,-11]],"v":[[-11,192],[60.957,154.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[3.25,-72.25],[-32.957,4.5]],"o":[[75.5,0],[-24.957,-13.5]],"v":[[-11,192],[104.457,122]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[6.283,-113.083],[0.643,25.967]],"o":[[76.433,-28.933],[-26.357,9.133]],"v":[[-11,192],[117.057,90.967]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[0,-28.5],[-21.707,14.5]],"o":[[67.25,0],[-25.707,-11]],"v":[[-11,192],[60.957,154.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[3.25,-72.25],[-32.957,4.5]],"o":[[75.5,0],[-24.957,-13.5]],"v":[[-11,192],[104.457,122]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[6.283,-113.083],[0.643,25.967]],"o":[[76.433,-28.933],[-26.357,9.133]],"v":[[-11,192],[117.057,90.967]],"c":true}]},{"t":72,"s":[{"i":[[0.733,-38.37],[-24.245,12.244]],"o":[[69.111,0],[-25.538,-11.564]],"v":[[-11,192],[70.771,146.974]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[6.5,-116],[3.043,27.5]],"o":[[76.5,-31],[-26.457,10.75]],"v":[[-11,192],[117.957,88.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[19,-98],[-10.957,16.75]],"o":[[96,-31],[-17.957,-2.25]],"v":[[-11,192],[79.957,92.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[1.267,-188.533],[8.176,32.383]],"o":[[77.8,-31],[-18.89,39.983]],"v":[[-11,192],[103.29,17.817]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[6.5,-116],[3.043,27.5]],"o":[[76.5,-31],[-26.457,10.75]],"v":[[-11,192],[117.957,88.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[19,-98],[-10.957,16.75]],"o":[[96,-31],[-17.957,-2.25]],"v":[[-11,192],[79.957,92.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[1.267,-188.533],[8.176,32.383]],"o":[[77.8,-31],[-18.89,39.983]],"v":[[-11,192],[103.29,17.817]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[6.5,-116],[3.043,27.5]],"o":[[76.5,-31],[-26.457,10.75]],"v":[[-11,192],[117.957,88.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[19,-98],[-10.957,16.75]],"o":[[96,-31],[-17.957,-2.25]],"v":[[-11,192],[79.957,92.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[1.267,-188.533],[8.176,32.383]],"o":[[77.8,-31],[-18.89,39.983]],"v":[[-11,192],[103.29,17.817]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[6.5,-116],[3.043,27.5]],"o":[[76.5,-31],[-26.457,10.75]],"v":[[-11,192],[117.957,88.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[19,-98],[-10.957,16.75]],"o":[[96,-31],[-17.957,-2.25]],"v":[[-11,192],[79.957,92.25]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[1.267,-188.533],[8.176,32.383]],"o":[[77.8,-31],[-18.89,39.983]],"v":[[-11,192],[103.29,17.817]],"c":true}]},{"t":72,"s":[{"i":[[9.32,-111.939],[-0.115,25.075]],"o":[[80.899,-31],[-24.539,7.817]],"v":[[-11,192],[109.384,89.54]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[0,-195],[9.543,33.5]],"o":[[76.5,-31],[-18.957,43]],"v":[[-11,192],[104.957,12.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-66.5,-258.5],[-22.207,50.75]],"o":[[146,-102],[-32.207,19.75]],"v":[[-11,192],[64.207,-70.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":22.82,"s":[{"i":[[-97.533,-288.133],[20.61,61.6]],"o":[[125,-144.467],[-11.79,54.867]],"v":[[-11,192],[34.93,-129.233]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-128.567,-317.767],[63.426,72.45]],"o":[[104,-186.933],[8.626,89.983]],"v":[[-11,192],[7.507,-154.05]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[0,-195],[9.543,33.5]],"o":[[76.5,-31],[-18.957,43]],"v":[[-11,192],[104.957,12.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-66.5,-258.5],[-22.207,50.75]],"o":[[146,-102],[-32.207,19.75]],"v":[[-11,192],[64.207,-70.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-128.567,-317.767],[63.426,72.45]],"o":[[104,-186.933],[8.626,89.983]],"v":[[-11,192],[7.507,-154.05]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[0,-195],[9.543,33.5]],"o":[[76.5,-31],[-18.957,43]],"v":[[-11,192],[104.957,12.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-66.5,-258.5],[-22.207,50.75]],"o":[[146,-102],[-32.207,19.75]],"v":[[-11,192],[64.207,-70.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-128.567,-317.767],[63.426,72.45]],"o":[[104,-186.933],[8.626,89.983]],"v":[[-11,192],[7.507,-154.05]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[0,-195],[9.543,33.5]],"o":[[76.5,-31],[-18.957,43]],"v":[[-11,192],[104.957,12.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-66.5,-258.5],[-22.207,50.75]],"o":[[146,-102],[-32.207,19.75]],"v":[[-11,192],[64.207,-70.75]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-128.567,-317.767],[63.426,72.45]],"o":[[104,-186.933],[8.626,89.983]],"v":[[-11,192],[7.507,-154.05]],"c":true}]},{"t":72,"s":[{"i":[[-15.003,-209.326],[2.38,37.392]],"o":[[92.179,-47.018],[-21.946,37.755]],"v":[[-11,192],[95.764,-6.281]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-133,-322],[69.543,74]],"o":[[101,-193],[11.543,95]],"v":[[-11,192],[3.457,-160]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-115,-267],[-8.457,80]],"o":[[116,-240],[-52.457,28]],"v":[[-11,192],[-29.543,-151]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":22.82,"s":[{"i":[[-123.4,-292.667],[27.943,77.2]],"o":[[109,-218.067],[-22.59,59.267]],"v":[[-11,192],[-22.482,-122.077]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-131.8,-318.333],[64.343,74.4]],"o":[[102,-196.133],[7.276,90.533]],"v":[[-11,192],[1.257,-159.4]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-133,-322],[69.543,74]],"o":[[101,-193],[11.543,95]],"v":[[-11,192],[3.457,-160]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-115,-267],[-8.457,80]],"o":[[116,-240],[-52.457,28]],"v":[[-11,192],[-29.543,-151]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-131.8,-318.333],[64.343,74.4]],"o":[[102,-196.133],[7.276,90.533]],"v":[[-11,192],[1.257,-159.4]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-133,-322],[69.543,74]],"o":[[101,-193],[11.543,95]],"v":[[-11,192],[3.457,-160]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-115,-267],[-8.457,80]],"o":[[116,-240],[-52.457,28]],"v":[[-11,192],[-29.543,-151]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-131.8,-318.333],[64.343,74.4]],"o":[[102,-196.133],[7.276,90.533]],"v":[[-11,192],[1.257,-159.4]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-133,-322],[69.543,74]],"o":[[101,-193],[11.543,95]],"v":[[-11,192],[3.457,-160]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-115,-267],[-8.457,80]],"o":[[116,-240],[-52.457,28]],"v":[[-11,192],[-29.543,-151]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-131.8,-318.333],[64.343,74.4]],"o":[[102,-196.133],[7.276,90.533]],"v":[[-11,192],[1.257,-159.4]],"c":true}]},{"t":72,"s":[{"i":[[-128.939,-309.592],[51.946,75.354]],"o":[[104.384,-203.603],[-2.896,79.885]],"v":[[-11,192],[-3.988,-157.97]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,1,0.914,0.239,0.134,1,0.825,0.229,0.269,1,0.737,0.22,0.634,1,0.651,0.21,1,1,0.565,0.2],"ix":9}},"s":{"a":0,"k":[-13.123,159.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-10.962,9.307],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-1.893,-111.892]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,191.875],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false}],"ip":10,"op":73.6,"st":0,"bm":0},{"ddd":0,"ind":4,"ty":4,"nm":"main","parent":5,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[256,256,0],"ix":2},"a":{"a":0,"k":[-11,192,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-48.957,-22.25],[0.197,0.442],[-70.695,21.726]],"o":[[-0.82,-0.452],[-1.61,-3.615],[-90.667,23]],"v":[[15.207,182.25],[13.658,180.925],[103.667,151.286]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-48.957,-22.25],[0.213,1.609],[-75.448,37.427]],"o":[[-0.82,-0.452],[-1.741,-13.168],[-90.667,23]],"v":[[58.957,165.75],[57.379,162.616],[151.667,63]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-125.024,61.75],[-2.13,4.684],[48.466,105.584]],"o":[[-7.082,-3.904],[8.978,-20.285],[-16.933,71.067]],"v":[[100.957,152.217],[94.735,139.709],[126.467,-21.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-48.957,-22.25],[0.197,0.442],[-70.695,21.726]],"o":[[-0.82,-0.452],[-1.61,-3.615],[-90.667,23]],"v":[[15.207,182.25],[13.658,180.925],[103.667,151.286]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-48.957,-22.25],[0.213,1.609],[-75.448,37.427]],"o":[[-0.82,-0.452],[-1.741,-13.168],[-90.667,23]],"v":[[58.957,165.75],[57.379,162.616],[151.667,63]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-125.024,61.75],[-2.13,4.684],[48.466,105.584]],"o":[[-7.082,-3.904],[8.978,-20.285],[-16.933,71.067]],"v":[[100.957,152.217],[94.735,139.709],[126.467,-21.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-48.957,-22.25],[0.197,0.442],[-70.695,21.726]],"o":[[-0.82,-0.452],[-1.61,-3.615],[-90.667,23]],"v":[[15.207,182.25],[13.658,180.925],[103.667,151.286]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-48.957,-22.25],[0.213,1.609],[-75.448,37.427]],"o":[[-0.82,-0.452],[-1.741,-13.168],[-90.667,23]],"v":[[58.957,165.75],[57.379,162.616],[151.667,63]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-125.024,61.75],[-2.13,4.684],[48.466,105.584]],"o":[[-7.082,-3.904],[8.978,-20.285],[-16.933,71.067]],"v":[[100.957,152.217],[94.735,139.709],[126.467,-21.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-48.957,-22.25],[0.197,0.442],[-70.695,21.726]],"o":[[-0.82,-0.452],[-1.61,-3.615],[-90.667,23]],"v":[[15.207,182.25],[13.658,180.925],[103.667,151.286]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-48.957,-22.25],[0.213,1.609],[-75.448,37.427]],"o":[[-0.82,-0.452],[-1.741,-13.168],[-90.667,23]],"v":[[58.957,165.75],[57.379,162.616],[151.667,63]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-125.024,61.75],[-2.13,4.684],[48.466,105.584]],"o":[[-7.082,-3.904],[8.978,-20.285],[-16.933,71.067]],"v":[[100.957,152.217],[94.735,139.709],[126.467,-21.933]],"c":true}]},{"t":72,"s":[{"i":[[-48.957,-22.25],[0.201,0.705],[-71.767,25.268]],"o":[[-0.82,-0.452],[-1.64,-5.77],[-90.667,23]],"v":[[25.077,178.528],[23.522,176.794],[114.496,131.368]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 15","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-130.457,67.75],[-2.298,4.904],[57.317,110.452]],"o":[[-7.529,-4.15],[9.743,-20.793],[-11.667,74.5]],"v":[[103.957,151.25],[97.403,138.073],[124.667,-28]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-132.207,149.375],[10.866,5.715],[-5.26,21.308]],"o":[[-18.645,9.327],[-46.078,-24.234],[-13,24.333]],"v":[[151.207,61.625],[107.41,65.591],[82,-113.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[57.96,124.758],[13.259,3.326],[135.474,53.272]],"o":[[-3.77,13.222],[-23.379,-6.387],[-14.8,286.022]],"v":[[126.24,-22.025],[96.068,1.911],[-10.424,-191.94]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-130.457,67.75],[-2.298,4.904],[57.317,110.452]],"o":[[-7.529,-4.15],[9.743,-20.793],[-11.667,74.5]],"v":[[103.957,151.25],[97.403,138.073],[124.667,-28]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-132.207,149.375],[10.866,5.715],[-5.26,21.308]],"o":[[-18.645,9.327],[-46.078,-24.234],[-13,24.333]],"v":[[151.207,61.625],[107.41,65.591],[82,-113.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[57.96,124.758],[13.259,3.326],[135.474,53.272]],"o":[[-3.77,13.222],[-23.379,-6.387],[-14.8,286.022]],"v":[[126.24,-22.025],[96.068,1.911],[-10.424,-191.94]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-130.457,67.75],[-2.298,4.904],[57.317,110.452]],"o":[[-7.529,-4.15],[9.743,-20.793],[-11.667,74.5]],"v":[[103.957,151.25],[97.403,138.073],[124.667,-28]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-132.207,149.375],[10.866,5.715],[-5.26,21.308]],"o":[[-18.645,9.327],[-46.078,-24.234],[-13,24.333]],"v":[[151.207,61.625],[107.41,65.591],[82,-113.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[57.96,124.758],[13.259,3.326],[135.474,53.272]],"o":[[-3.77,13.222],[-23.379,-6.387],[-14.8,286.022]],"v":[[126.24,-22.025],[96.068,1.911],[-10.424,-191.94]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-130.457,67.75],[-2.298,4.904],[57.317,110.452]],"o":[[-7.529,-4.15],[9.743,-20.793],[-11.667,74.5]],"v":[[103.957,151.25],[97.403,138.073],[124.667,-28]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-132.207,149.375],[10.866,5.715],[-5.26,21.308]],"o":[[-18.645,9.327],[-46.078,-24.234],[-13,24.333]],"v":[[151.207,61.625],[107.41,65.591],[82,-113.333]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[57.96,124.758],[13.259,3.326],[135.474,53.272]],"o":[[-3.77,13.222],[-23.379,-6.387],[-14.8,286.022]],"v":[[126.24,-22.025],[96.068,1.911],[-10.424,-191.94]],"c":true}]},{"t":72,"s":[{"i":[[-130.852,86.165],[0.672,5.087],[43.199,90.341]],"o":[[-10.037,-1.11],[-2.85,-21.569],[-11.968,63.182]],"v":[[114.617,131.03],[99.661,121.721],[115.041,-47.251]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 14","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[71.543,123],[13.429,3.155],[145.526,55.555]],"o":[[-2.707,13.5],[-21.758,-5.112],[-14.929,304.714]],"v":[[124.457,-28],[95.258,-2.638],[-17.026,-197.555]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[19.81,90.467],[9.271,-0.471],[58.519,49.554]],"o":[[-4.554,9.74],[-28.484,11.005],[-73.313,268.493]],"v":[[102.057,-73.867],[78.984,-54.005],[-8.799,-198.219]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-25.457,62],[5.632,-3.644],[-17.612,44.304]],"o":[[-6.17,6.45],[-55.496,35.902],[-124.4,236.8]],"v":[[82.457,-114],[64.744,-98.951],[-1.6,-198.8]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":22.82,"s":[{"i":[[14.835,63.325],[2.967,-1.772],[-8.391,23.538]],"o":[[-3.259,3.182],[-29.23,17.464],[-64.013,161.052]],"v":[[35.79,-153.2],[26.447,-145.814],[-20.106,-143.04]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[55.126,64.65],[0.301,0.099],[0.831,2.772]],"o":[[-0.349,-0.086],[-2.963,-0.975],[-3.627,85.303]],"v":[[-10.876,-192.4],[-11.85,-192.677],[-16.373,-198.053]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[71.543,123],[13.429,3.155],[145.526,55.555]],"o":[[-2.707,13.5],[-21.758,-5.112],[-14.929,304.714]],"v":[[124.457,-28],[95.258,-2.638],[-17.026,-197.555]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[19.81,90.467],[9.271,-0.471],[58.519,49.554]],"o":[[-4.554,9.74],[-28.484,11.005],[-73.313,268.493]],"v":[[102.057,-73.867],[78.984,-54.005],[-8.799,-198.219]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-25.457,62],[5.632,-3.644],[-17.612,44.304]],"o":[[-6.17,6.45],[-55.496,35.902],[-124.4,236.8]],"v":[[82.457,-114],[64.744,-98.951],[-1.6,-198.8]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[55.126,64.65],[0.301,0.099],[0.831,2.772]],"o":[[-0.349,-0.086],[-2.963,-0.975],[-3.627,85.303]],"v":[[-10.876,-192.4],[-11.85,-192.677],[-16.373,-198.053]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[71.543,123],[13.429,3.155],[145.526,55.555]],"o":[[-2.707,13.5],[-21.758,-5.112],[-14.929,304.714]],"v":[[124.457,-28],[95.258,-2.638],[-17.026,-197.555]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[19.81,90.467],[9.271,-0.471],[58.519,49.554]],"o":[[-4.554,9.74],[-28.484,11.005],[-73.313,268.493]],"v":[[102.057,-73.867],[78.984,-54.005],[-8.799,-198.219]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-25.457,62],[5.632,-3.644],[-17.612,44.304]],"o":[[-6.17,6.45],[-55.496,35.902],[-124.4,236.8]],"v":[[82.457,-114],[64.744,-98.951],[-1.6,-198.8]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[55.126,64.65],[0.301,0.099],[0.831,2.772]],"o":[[-0.349,-0.086],[-2.963,-0.975],[-3.627,85.303]],"v":[[-10.876,-192.4],[-11.85,-192.677],[-16.373,-198.053]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[71.543,123],[13.429,3.155],[145.526,55.555]],"o":[[-2.707,13.5],[-21.758,-5.112],[-14.929,304.714]],"v":[[124.457,-28],[95.258,-2.638],[-17.026,-197.555]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[19.81,90.467],[9.271,-0.471],[58.519,49.554]],"o":[[-4.554,9.74],[-28.484,11.005],[-73.313,268.493]],"v":[[102.057,-73.867],[78.984,-54.005],[-8.799,-198.219]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-25.457,62],[5.632,-3.644],[-17.612,44.304]],"o":[[-6.17,6.45],[-55.496,35.902],[-124.4,236.8]],"v":[[82.457,-114],[64.744,-98.951],[-1.6,-198.8]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[55.126,64.65],[0.301,0.099],[0.831,2.772]],"o":[[-0.349,-0.086],[-2.963,-0.975],[-3.627,85.303]],"v":[[-10.876,-192.4],[-11.85,-192.677],[-16.373,-198.053]],"c":true}]},{"t":72,"s":[{"i":[[45.676,106.733],[11.35,1.342],[102.023,52.555]],"o":[[-3.63,11.62],[-25.121,2.947],[-44.121,286.603]],"v":[[113.257,-50.934],[87.121,-28.322],[-12.913,-197.887]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 2","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 13","np":3,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[40.441,37.494],[-27.058,67.1]],"o":[[31.474,12.427],[-8.208,29.217]],"v":[[-100.51,155.228],[-134.475,56.042]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-137.925,-14.583]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-137.925,-14.583]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[40.441,37.494],[-27.058,67.1]],"o":[[31.474,12.427],[-8.208,29.217]],"v":[[-100.51,155.228],[-134.475,56.042]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-137.925,-14.583]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[40.441,37.494],[-27.058,67.1]],"o":[[31.474,12.427],[-8.208,29.217]],"v":[[-100.51,155.228],[-134.475,56.042]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-137.925,-14.583]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[40.441,37.494],[-27.058,67.1]],"o":[[31.474,12.427],[-8.208,29.217]],"v":[[-100.51,155.228],[-134.475,56.042]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-137.925,-14.583]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"t":72,"s":[{"i":[[10.192,17.3],[6.575,46.3]],"o":[[16.958,10.766],[-0.375,16.483]],"v":[[-81.977,159.561],[-133.591,101.771]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 12","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[93.376,72.833],[-85.917,103.5]],"o":[[56.876,15.333],[-21.917,51.5]],"v":[[-132.943,147.644],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[35.658,101.445],[-65.336,93.405]],"o":[[37.272,11.328],[3.521,169.691]],"v":[[-136.158,54.805],[-94.236,-74.262]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-22.202,124.789],[-49.9,85.833]],"o":[[22.57,8.324],[22.6,258.333]],"v":[[-138.57,-14.824],[-63.6,-109.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[-22.202,124.789],[-49.9,85.833]],"o":[[22.57,8.324],[22.6,258.333]],"v":[[-138.57,-14.824],[-63.6,-109.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-134.925,-15.833]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[93.376,72.833],[-85.917,103.5]],"o":[[56.876,15.333],[-21.917,51.5]],"v":[[-132.943,147.644],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[35.658,101.445],[-65.336,93.405]],"o":[[37.272,11.328],[3.521,169.691]],"v":[[-136.158,54.805],[-94.236,-74.262]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-22.202,124.789],[-49.9,85.833]],"o":[[22.57,8.324],[22.6,258.333]],"v":[[-138.57,-14.824],[-63.6,-109.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-134.925,-15.833]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[93.376,72.833],[-85.917,103.5]],"o":[[56.876,15.333],[-21.917,51.5]],"v":[[-132.943,147.644],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[35.658,101.445],[-65.336,93.405]],"o":[[37.272,11.328],[3.521,169.691]],"v":[[-136.158,54.805],[-94.236,-74.262]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-22.202,124.789],[-49.9,85.833]],"o":[[22.57,8.324],[22.6,258.333]],"v":[[-138.57,-14.824],[-63.6,-109.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-134.925,-15.833]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[93.376,72.833],[-85.917,103.5]],"o":[[56.876,15.333],[-21.917,51.5]],"v":[[-132.943,147.644],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[35.658,101.445],[-65.336,93.405]],"o":[[37.272,11.328],[3.521,169.691]],"v":[[-136.158,54.805],[-94.236,-74.262]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-22.202,124.789],[-49.9,85.833]],"o":[[22.57,8.324],[22.6,258.333]],"v":[[-138.57,-14.824],[-63.6,-109.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-134.925,-15.833]],"c":true}]},{"t":72,"s":[{"i":[[64.517,87.139],[-75.626,98.452]],"o":[[47.074,13.33],[-9.198,110.596]],"v":[[-134.551,101.225],[-114.66,-50.881]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 10","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-48.957,103],[-14.374,19.634],[-34,62.5]],"o":[[-3.957,25.5],[17.842,-24.371],[47,189.5]],"v":[[-135.043,-27.5],[-89.892,9.213],[-57,-113.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-37.507,99.825],[-6.531,6.628],[-11.668,33.483]],"o":[[14.235,-1.998],[13.653,-13.856],[-19.75,203]],"v":[[-62.993,-109.325],[-33.016,-122.287],[-5.75,-193.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[-37.507,99.825],[-6.531,6.628],[-11.668,33.483]],"o":[[14.235,-1.998],[13.653,-13.856],[-19.75,203]],"v":[[-62.993,-109.325],[-33.016,-122.287],[-5.75,-193.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[93.376,72.833],[9.198,13.557],[-58.116,70.01]],"o":[[18.404,4.962],[-19.228,-28.339],[90.083,160.5]],"v":[[-132.943,147.644],[-126.463,133.299],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-39.468,100.989],[-12.802,19.228],[-35.608,63.001]],"o":[[-2.466,24.131],[15.371,-24.636],[49.872,187.567]],"v":[[-134.903,-15.824],[-92.33,17.485],[-62.206,-107.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-48.957,103],[-14.374,19.634],[-34,62.5]],"o":[[-3.957,25.5],[17.842,-24.371],[47,189.5]],"v":[[-135.043,-27.5],[-89.892,9.213],[-57,-113.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-37.507,99.825],[-6.531,6.628],[-11.668,33.483]],"o":[[14.235,-1.998],[13.653,-13.856],[-19.75,203]],"v":[[-62.993,-109.325],[-33.016,-122.287],[-5.75,-193.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[93.376,72.833],[9.198,13.557],[-58.116,70.01]],"o":[[18.404,4.962],[-19.228,-28.339],[90.083,160.5]],"v":[[-132.943,147.644],[-126.463,133.299],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-39.468,100.989],[-12.802,19.228],[-35.608,63.001]],"o":[[-2.466,24.131],[15.371,-24.636],[49.872,187.567]],"v":[[-134.903,-15.824],[-92.33,17.485],[-62.206,-107.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-48.957,103],[-14.374,19.634],[-34,62.5]],"o":[[-3.957,25.5],[17.842,-24.371],[47,189.5]],"v":[[-135.043,-27.5],[-89.892,9.213],[-57,-113.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-37.507,99.825],[-6.531,6.628],[-11.668,33.483]],"o":[[14.235,-1.998],[13.653,-13.856],[-19.75,203]],"v":[[-62.993,-109.325],[-33.016,-122.287],[-5.75,-193.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[93.376,72.833],[9.198,13.557],[-58.116,70.01]],"o":[[18.404,4.962],[-19.228,-28.339],[90.083,160.5]],"v":[[-132.943,147.644],[-126.463,133.299],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-39.468,100.989],[-12.802,19.228],[-35.608,63.001]],"o":[[-2.466,24.131],[15.371,-24.636],[49.872,187.567]],"v":[[-134.903,-15.824],[-92.33,17.485],[-62.206,-107.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-48.957,103],[-14.374,19.634],[-34,62.5]],"o":[[-3.957,25.5],[17.842,-24.371],[47,189.5]],"v":[[-135.043,-27.5],[-89.892,9.213],[-57,-113.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-37.507,99.825],[-6.531,6.628],[-11.668,33.483]],"o":[[14.235,-1.998],[13.653,-13.856],[-19.75,203]],"v":[[-62.993,-109.325],[-33.016,-122.287],[-5.75,-193.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[93.376,72.833],[9.198,13.557],[-58.116,70.01]],"o":[[18.404,4.962],[-19.228,-28.339],[90.083,160.5]],"v":[[-132.943,147.644],[-126.463,133.299],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-39.468,100.989],[-12.802,19.228],[-35.608,63.001]],"o":[[-2.466,24.131],[15.371,-24.636],[49.872,187.567]],"v":[[-134.903,-15.824],[-92.33,17.485],[-62.206,-107.767]],"c":true}]},{"t":72,"s":[{"i":[[-46.128,102.215],[-12.436,16.42],[-28.481,55.329]],"o":[[0.538,18.705],[16.807,-21.773],[30.505,192.836]],"v":[[-117.238,-47.72],[-75.837,-23.283],[-44.335,-133.269]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 11","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-0.38,0.778],[0.056,-9.392]],"o":[[-10.717,-0.056],[16.117,0]],"v":[[14.938,182.198],[-10.618,191.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-16.729,-11.318],[0.153,-25.821]],"o":[[-26.979,-24.818],[44.309,0]],"v":[[58.479,166.318],[-11.778,191.222]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-2.709,2.512],[0.244,-41.155]],"o":[[-46.792,-1.888],[70.621,0]],"v":[[100.925,152.255],[-11.052,191.948]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-0.38,0.778],[0.056,-9.392]],"o":[[-10.717,-0.056],[16.117,0]],"v":[[14.938,182.198],[-10.618,191.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-16.729,-11.318],[0.153,-25.821]],"o":[[-26.979,-24.818],[44.309,0]],"v":[[58.479,166.318],[-11.778,191.222]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-2.709,2.512],[0.244,-41.155]],"o":[[-46.792,-1.888],[70.621,0]],"v":[[100.925,152.255],[-11.052,191.948]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-0.38,0.778],[0.056,-9.392]],"o":[[-10.717,-0.056],[16.117,0]],"v":[[14.938,182.198],[-10.618,191.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-16.729,-11.318],[0.153,-25.821]],"o":[[-26.979,-24.818],[44.309,0]],"v":[[58.479,166.318],[-11.778,191.222]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-2.709,2.512],[0.244,-41.155]],"o":[[-46.792,-1.888],[70.621,0]],"v":[[100.925,152.255],[-11.052,191.948]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-0.38,0.778],[0.056,-9.392]],"o":[[-10.717,-0.056],[16.117,0]],"v":[[14.938,182.198],[-10.618,191.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-16.729,-11.318],[0.153,-25.821]],"o":[[-26.979,-24.818],[44.309,0]],"v":[[58.479,166.318],[-11.778,191.222]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-2.709,2.512],[0.244,-41.155]],"o":[[-46.792,-1.888],[70.621,0]],"v":[[100.925,152.255],[-11.052,191.948]],"c":true}]},{"t":72,"s":[{"i":[[-4.068,-1.951],[0.078,-13.098]],"o":[[-14.386,-5.642],[22.477,0]],"v":[[24.761,178.615],[-10.88,191.249]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 8","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-1.707,3.5],[0.25,-42.25]],"o":[[-48.207,-0.25],[72.5,0]],"v":[[103.957,151.25],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-34.207,39.375],[0.125,-118.625]],"o":[[-43.207,-8.625],[143,0]],"v":[[151.207,61.625],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[64.493,117.425],[0.008,-189.908]],"o":[[-16.374,70.358],[87.933,-23.333]],"v":[[126.24,-22.025],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-1.707,3.5],[0.25,-42.25]],"o":[[-48.207,-0.25],[72.5,0]],"v":[[103.957,151.25],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-34.207,39.375],[0.125,-118.625]],"o":[[-43.207,-8.625],[143,0]],"v":[[151.207,61.625],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[64.493,117.425],[0.008,-189.908]],"o":[[-16.374,70.358],[87.933,-23.333]],"v":[[126.24,-22.025],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-1.707,3.5],[0.25,-42.25]],"o":[[-48.207,-0.25],[72.5,0]],"v":[[103.957,151.25],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-34.207,39.375],[0.125,-118.625]],"o":[[-43.207,-8.625],[143,0]],"v":[[151.207,61.625],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[64.493,117.425],[0.008,-189.908]],"o":[[-16.374,70.358],[87.933,-23.333]],"v":[[126.24,-22.025],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-1.707,3.5],[0.25,-42.25]],"o":[[-48.207,-0.25],[72.5,0]],"v":[[103.957,151.25],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-34.207,39.375],[0.125,-118.625]],"o":[[-43.207,-8.625],[143,0]],"v":[[151.207,61.625],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[64.493,117.425],[0.008,-189.908]],"o":[[-16.374,70.358],[87.933,-23.333]],"v":[[126.24,-22.025],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[-9.039,11.593],[0.222,-59.48]],"o":[[-47.079,-2.139],[88.405,0]],"v":[[114.617,131.03],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 7","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[71.543,123],[0,-195]],"o":[[-14.457,76],[84,-25]],"v":[[124.457,-28],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-25.457,62],[-96.5,-180]],"o":[[-66.457,59],[219,-96]],"v":[[82.457,-114],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[135.076,57.333],[-186.567,-166]],"o":[[21.276,184.067],[131.267,-187.467]],"v":[[-10.876,-192.4],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[71.543,123],[0,-195]],"o":[[-14.457,76],[84,-25]],"v":[[124.457,-28],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-25.457,62],[-96.5,-180]],"o":[[-66.457,59],[219,-96]],"v":[[82.457,-114],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[135.076,57.333],[-186.567,-166]],"o":[[21.276,184.067],[131.267,-187.467]],"v":[[-10.876,-192.4],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[71.543,123],[0,-195]],"o":[[-14.457,76],[84,-25]],"v":[[124.457,-28],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-25.457,62],[-96.5,-180]],"o":[[-66.457,59],[219,-96]],"v":[[82.457,-114],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[135.076,57.333],[-186.567,-166]],"o":[[21.276,184.067],[131.267,-187.467]],"v":[[-10.876,-192.4],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[71.543,123],[0,-195]],"o":[[-14.457,76],[84,-25]],"v":[[124.457,-28],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-25.457,62],[-96.5,-180]],"o":[[-66.457,59],[219,-96]],"v":[[82.457,-114],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[135.076,57.333],[-186.567,-166]],"o":[[21.276,184.067],[131.267,-187.467]],"v":[[-10.876,-192.4],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[49.66,109.238],[-21.771,-191.616]],"o":[[-26.188,72.165],[114.456,-41.018]],"v":[[114.982,-47.402],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 6","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[21.028,-6.401],[-54,0]],"o":[[20.492,5.368],[-11.193,-37.148]],"v":[[-79.406,160.361],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[21.573,55.597],[-84.775,0]],"o":[[-27.235,46.589],[45.367,-148.067]],"v":[[-136.073,54.653],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-5.102,104.922],[-107.857,0]],"o":[[-59.568,63.656],[85.767,-205.867]],"v":[[-138.47,-15.108],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[-5.102,104.922],[-107.857,0]],"o":[[-59.568,63.656],[85.767,-205.867]],"v":[[-138.47,-15.108],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[21.573,55.597],[-84.775,0]],"o":[[-27.235,46.589],[45.367,-148.067]],"v":[[-136.073,54.653],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-5.102,104.922],[-107.857,0]],"o":[[-59.568,63.656],[85.767,-205.867]],"v":[[-138.47,-15.108],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[21.573,55.597],[-84.775,0]],"o":[[-27.235,46.589],[45.367,-148.067]],"v":[[-136.073,54.653],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-5.102,104.922],[-107.857,0]],"o":[[-59.568,63.656],[85.767,-205.867]],"v":[[-138.47,-15.108],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[21.573,55.597],[-84.775,0]],"o":[[-27.235,46.589],[45.367,-148.067]],"v":[[-136.073,54.653],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-5.102,104.922],[-107.857,0]],"o":[[-59.568,63.656],[85.767,-205.867]],"v":[[-138.47,-15.108],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[28.225,34.215],[-69.387,0]],"o":[[-5.679,35.211],[18.434,-109.533]],"v":[[-134.475,101.16],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-77.957,73.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-11.007,99.075],[-95.125,-121.625]],"o":[[-30.132,71.2],[92.5,-215.5]],"v":[[-62.993,-109.325],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[-11.007,99.075],[-95.125,-121.625]],"o":[[-30.132,71.2],[92.5,-215.5]],"v":[[-62.993,-109.325],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-5.102,104.922],[-103.467,0]],"o":[[-71.702,70.189],[85.767,-205.867]],"v":[[-134.898,-15.822],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-77.957,73.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-11.007,99.075],[-95.125,-121.625]],"o":[[-30.132,71.2],[92.5,-215.5]],"v":[[-62.993,-109.325],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-5.102,104.922],[-103.467,0]],"o":[[-71.702,70.189],[85.767,-205.867]],"v":[[-134.898,-15.822],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-77.957,73.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-11.007,99.075],[-95.125,-121.625]],"o":[[-30.132,71.2],[92.5,-215.5]],"v":[[-62.993,-109.325],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-5.102,104.922],[-103.467,0]],"o":[[-71.702,70.189],[85.767,-205.867]],"v":[[-134.898,-15.822],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-77.957,73.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-11.007,99.075],[-95.125,-121.625]],"o":[[-30.132,71.2],[92.5,-215.5]],"v":[[-62.993,-109.325],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-5.102,104.922],[-103.467,0]],"o":[[-71.702,70.189],[85.767,-205.867]],"v":[[-134.898,-15.822],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[-8.711,108.43],[-104.066,-30.055]],"o":[[-66.139,72.932],[92.5,-215.5]],"v":[[-117.238,-47.72],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-48.707,88.5],[0.868,68.316]],"o":[[12.543,7.5],[24.9,235.3]],"v":[[-57.043,-114.5],[-17.368,-197.816]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-6.84,0.7],[-1.405,1.232]],"o":[[-1.007,-1.383],[-2.946,1.899]],"v":[[-5.243,-193.367],[-2.606,-198.922]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[-6.84,0.7],[-1.405,1.232]],"o":[[-1.007,-1.383],[-2.946,1.899]],"v":[[-5.243,-193.367],[-2.606,-198.922]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-30.457,128.5],[-169.792,85.25]],"o":[[44.043,11.5],[-68.292,288.75]],"v":[[-135.043,-27.5],[-1.708,-198.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":22.82,"s":[{"i":[[-38.974,109.833],[-87.569,78.273]],"o":[[29.343,9.633],[-24.802,263.807]],"v":[[-98.643,-68.1],[-20.135,-142.928]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-47.49,91.167],[-5.346,71.297]],"o":[[14.643,7.767],[18.687,238.863]],"v":[[-62.243,-108.7],[-16.324,-197.878]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-48.707,88.5],[6.4,70.3]],"o":[[12.543,7.5],[24.9,235.3]],"v":[[-57.043,-114.5],[-17.368,-197.816]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-6.84,0.7],[-1.405,1.232]],"o":[[-1.007,-1.383],[-2.946,1.899]],"v":[[-5.243,-193.367],[-2.606,-198.922]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-30.457,128.5],[-169.792,85.25]],"o":[[44.043,11.5],[-68.292,288.75]],"v":[[-135.043,-27.5],[-1.708,-198.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-47.49,91.167],[-5.346,71.297]],"o":[[14.643,7.767],[18.687,238.863]],"v":[[-62.243,-108.7],[-16.324,-197.878]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-48.707,88.5],[6.4,70.3]],"o":[[12.543,7.5],[24.9,235.3]],"v":[[-57.043,-114.5],[-17.368,-197.816]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-6.84,0.7],[-1.405,1.232]],"o":[[-1.007,-1.383],[-2.946,1.899]],"v":[[-5.243,-193.367],[-2.606,-198.922]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-30.457,128.5],[-169.792,85.25]],"o":[[44.043,11.5],[-68.292,288.75]],"v":[[-135.043,-27.5],[-1.708,-198.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-47.49,91.167],[-5.346,71.297]],"o":[[14.643,7.767],[18.687,238.863]],"v":[[-62.243,-108.7],[-16.324,-197.878]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-48.707,88.5],[6.4,70.3]],"o":[[12.543,7.5],[24.9,235.3]],"v":[[-57.043,-114.5],[-17.368,-197.816]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-6.84,0.7],[-1.405,1.232]],"o":[[-1.007,-1.383],[-2.946,1.899]],"v":[[-5.243,-193.367],[-2.606,-198.922]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-30.457,128.5],[-169.792,85.25]],"o":[[44.043,11.5],[-68.292,288.75]],"v":[[-135.043,-27.5],[-1.708,-198.75]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-47.49,91.167],[-5.346,71.297]],"o":[[14.643,7.767],[18.687,238.863]],"v":[[-62.243,-108.7],[-16.324,-197.878]],"c":true}]},{"t":72,"s":[{"i":[[-38.361,66.803],[0.306,51.739]],"o":[[9.195,5.305],[18.019,177.623]],"v":[[-44.242,-133.989],[-13.72,-198.089]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 9","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-19.957,109.5],[-86,-126]],"o":[[-35.957,72.5],[92.5,-215.5]],"v":[[-57.043,-114.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-31.757,107.242],[-162.125,-256.25]],"o":[[-110.882,74.992],[178.833,-193.567]],"v":[[-5.243,-193.367],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[-31.757,107.242],[-162.125,-256.25]],"o":[[-110.882,74.992],[178.833,-193.567]],"v":[[-5.243,-193.367],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-64.957,66.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-19.157,109.633],[-87.4,-117.6]],"o":[[-37.89,72.1],[92.5,-215.5]],"v":[[-62.243,-108.7],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-19.957,109.5],[-86,-126]],"o":[[-35.957,72.5],[92.5,-215.5]],"v":[[-57.043,-114.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-31.757,107.242],[-162.125,-256.25]],"o":[[-110.882,74.992],[178.833,-193.567]],"v":[[-5.243,-193.367],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-64.957,66.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-19.157,109.633],[-87.4,-117.6]],"o":[[-37.89,72.1],[92.5,-215.5]],"v":[[-62.243,-108.7],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-19.957,109.5],[-86,-126]],"o":[[-35.957,72.5],[92.5,-215.5]],"v":[[-57.043,-114.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-31.757,107.242],[-162.125,-256.25]],"o":[[-110.882,74.992],[178.833,-193.567]],"v":[[-5.243,-193.367],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-64.957,66.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-19.157,109.633],[-87.4,-117.6]],"o":[[-37.89,72.1],[92.5,-215.5]],"v":[[-62.243,-108.7],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-19.957,109.5],[-86,-126]],"o":[[-35.957,72.5],[92.5,-215.5]],"v":[[-57.043,-114.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-31.757,107.242],[-162.125,-256.25]],"o":[[-110.882,74.992],[178.833,-193.567]],"v":[[-5.243,-193.367],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-64.957,66.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-19.157,109.633],[-87.4,-117.6]],"o":[[-37.89,72.1],[92.5,-215.5]],"v":[[-62.243,-108.7],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[-22.873,108.942],[-104.812,-158.187]],"o":[[-54.472,73.116],[113.834,-210.08]],"v":[[-44.242,-133.989],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[146.543,57],[-193,-165]],"o":[[27.543,193],[125,-194]],"v":[[-17.543,-198],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-42.457,115],[-160,-259]],"o":[[-130.457,74],[185,-192]],"v":[[-1.543,-199],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":22.82,"s":[{"i":[[45.743,87.933],[-175.4,-215.133]],"o":[[-56.724,129.533],[157,-192.934]],"v":[[-20.129,-143.147],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[133.943,60.867],[-190.8,-171.267]],"o":[[17.01,185.067],[129,-193.867]],"v":[[-16.476,-198.067],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[146.543,57],[-193,-165]],"o":[[27.543,193],[125,-194]],"v":[[-17.543,-198],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-42.457,115],[-160,-259]],"o":[[-130.457,74],[185,-192]],"v":[[-1.543,-199],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[133.943,60.867],[-190.8,-171.267]],"o":[[17.01,185.067],[129,-193.867]],"v":[[-16.476,-198.067],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[146.543,57],[-193,-165]],"o":[[27.543,193],[125,-194]],"v":[[-17.543,-198],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-42.457,115],[-160,-259]],"o":[[-130.457,74],[185,-192]],"v":[[-1.543,-199],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[133.943,60.867],[-190.8,-171.267]],"o":[[17.01,185.067],[129,-193.867]],"v":[[-16.476,-198.067],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[146.543,57],[-193,-165]],"o":[[27.543,193],[125,-194]],"v":[[-17.543,-198],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-42.457,115],[-160,-259]],"o":[[-130.457,74],[185,-192]],"v":[[-1.543,-199],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[133.943,60.867],[-190.8,-171.267]],"o":[[17.01,185.067],[129,-193.867]],"v":[[-16.476,-198.067],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[103.904,70.085],[-185.555,-186.207]],"o":[[-8.102,166.153],[138.536,-193.549]],"v":[[-13.933,-198.226],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"gf","o":{"a":0,"k":100,"ix":10},"r":1,"bm":0,"g":{"p":5,"k":{"a":0,"k":[0,0.969,0.651,0.024,0.09,0.975,0.563,0.039,0.179,0.98,0.475,0.055,0.59,0.986,0.388,0.069,1,0.992,0.302,0.082],"ix":9}},"s":{"a":0,"k":[-16.123,179.654],"ix":5},"e":{"a":1,"k":[{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":12,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":19.377,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":26.754,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":34.131,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":41.508,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":48.885,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.667,"y":1},"o":{"x":0.333,"y":0},"t":56.262,"s":[0.038,-137.693],"to":[0,0],"ti":[0,0]},{"i":{"x":0.666,"y":0.462},"o":{"x":0.333,"y":0},"t":63.639,"s":[-11.962,-1.693],"to":[0,0],"ti":[0,0]},{"t":72,"s":[-2.068,-113.823]}],"ix":6},"t":1,"nm":"Gradient Fill 1","mn":"ADBE Vector Graphic - G-Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false}],"ip":10,"op":73.2,"st":0,"bm":0},{"ddd":0,"ind":5,"ty":3,"nm":"Null 5","sr":1,"ks":{"o":{"a":0,"k":0,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[41,278,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":0,"k":[100.014,99.986,100],"ix":6}},"ao":0,"ip":0,"op":74.2,"st":0,"bm":0},{"ddd":0,"ind":6,"ty":4,"nm":"main 4","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-11,192,0],"ix":2},"a":{"a":0,"k":[-11,192,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[-68.5,-0.5],[-1.707,3.5],[22.848,-13.657]],"o":[[83,-0.5],[-33.392,-0.173],[-10.137,6.059]],"v":[[-11,193],[63.457,160.25],[-67.952,163.58]],"c":true},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":19,"ix":2},"o":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":12,"s":[-32]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":19.377,"s":[-41]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":26.754,"s":[-32]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":34.131,"s":[-41]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":41.508,"s":[-32]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":48.885,"s":[-41]},{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.333],"y":[0]},"t":56.262,"s":[-32]},{"i":{"x":[0.666],"y":[1.538]},"o":{"x":[0.333],"y":[0]},"t":63.639,"s":[-41]},{"t":72,"s":[-33.58]}],"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"fl","c":{"a":0,"k":[1,0.615686297417,0,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"st","c":{"a":0,"k":[1,0.615686297417,0,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 7","np":4,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":10,"op":75.6,"st":0,"bm":0},{"ddd":0,"ind":7,"ty":4,"nm":"main 3","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-11,192,0],"ix":2},"a":{"a":0,"k":[-11,192,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[0.056,-9.392],[-0.38,0.778]],"o":[[16.117,0],[-10.717,-0.056]],"v":[[-10.618,191.257],[14.938,182.198]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[0.107,-18.154],[-9.099,-5.673]],"o":[[31.152,0],[-19.39,-13.262]],"v":[[-11.236,191.239],[38.159,173.729]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[0.146,-24.726],[-15.639,-10.511]],"o":[[42.429,0],[-25.894,-23.167]],"v":[[-11.7,191.225],[55.576,167.377]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[0.146,-24.726],[-15.639,-10.511]],"o":[[42.429,0],[-25.894,-23.167]],"v":[[-11.7,191.225],[55.576,167.377]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[0.153,-25.821],[-16.729,-11.318]],"o":[[44.309,0],[-26.979,-24.818]],"v":[[-11.778,191.222],[58.479,166.318]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[0.244,-41.155],[-2.709,2.512]],"o":[[70.621,0],[-46.792,-1.888]],"v":[[-11.052,191.948],[100.925,152.255]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[0.056,-9.392],[-0.38,0.778]],"o":[[16.117,0],[-10.717,-0.056]],"v":[[-10.618,191.257],[14.938,182.198]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[0.107,-18.154],[-9.099,-5.673]],"o":[[31.152,0],[-19.39,-13.262]],"v":[[-11.236,191.239],[38.159,173.729]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[0.146,-24.726],[-15.639,-10.511]],"o":[[42.429,0],[-25.894,-23.167]],"v":[[-11.7,191.225],[55.576,167.377]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[0.153,-25.821],[-16.729,-11.318]],"o":[[44.309,0],[-26.979,-24.818]],"v":[[-11.778,191.222],[58.479,166.318]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[0.244,-41.155],[-2.709,2.512]],"o":[[70.621,0],[-46.792,-1.888]],"v":[[-11.052,191.948],[100.925,152.255]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[0.056,-9.392],[-0.38,0.778]],"o":[[16.117,0],[-10.717,-0.056]],"v":[[-10.618,191.257],[14.938,182.198]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[0.107,-18.154],[-9.099,-5.673]],"o":[[31.152,0],[-19.39,-13.262]],"v":[[-11.236,191.239],[38.159,173.729]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[0.146,-24.726],[-15.639,-10.511]],"o":[[42.429,0],[-25.894,-23.167]],"v":[[-11.7,191.225],[55.576,167.377]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[0.153,-25.821],[-16.729,-11.318]],"o":[[44.309,0],[-26.979,-24.818]],"v":[[-11.778,191.222],[58.479,166.318]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[0.244,-41.155],[-2.709,2.512]],"o":[[70.621,0],[-46.792,-1.888]],"v":[[-11.052,191.948],[100.925,152.255]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[0.056,-9.392],[-0.38,0.778]],"o":[[16.117,0],[-10.717,-0.056]],"v":[[-10.618,191.257],[14.938,182.198]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[0.107,-18.154],[-9.099,-5.673]],"o":[[31.152,0],[-19.39,-13.262]],"v":[[-11.236,191.239],[38.159,173.729]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[0.146,-24.726],[-15.639,-10.511]],"o":[[42.429,0],[-25.894,-23.167]],"v":[[-11.7,191.225],[55.576,167.377]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[0.153,-25.821],[-16.729,-11.318]],"o":[[44.309,0],[-26.979,-24.818]],"v":[[-11.778,191.222],[58.479,166.318]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[0.244,-41.155],[-2.709,2.512]],"o":[[70.621,0],[-46.792,-1.888]],"v":[[-11.052,191.948],[100.925,152.255]],"c":true}]},{"t":72,"s":[{"i":[[0.081,-13.773],[-4.74,-2.448]],"o":[[23.635,0],[-15.053,-6.659]],"v":[[-10.927,191.248],[26.549,177.964]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":0,"k":56,"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.937254905701,0.329411774874,0.003921568859,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 8","np":3,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[0.25,-42.25],[-1.707,3.5]],"o":[[72.5,0],[-48.207,-0.25]],"v":[[-11,192],[103.957,151.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[0.183,-82.983],[-19.04,22.633]],"o":[[110.1,0],[-45.54,-4.717]],"v":[[-11,192],[129.157,103.45]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[0.133,-113.533],[-32.04,36.983]],"o":[[138.3,0],[-43.54,-8.067]],"v":[[-11,192],[148.057,67.6]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[0.133,-113.533],[-32.04,36.983]],"o":[[138.3,0],[-43.54,-8.067]],"v":[[-11,192],[148.057,67.6]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[0.125,-118.625],[-34.207,39.375]],"o":[[143,0],[-43.207,-8.625]],"v":[[-11,192],[151.207,61.625]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[0.008,-189.908],[64.493,117.425]],"o":[[87.933,-23.333],[-16.374,70.358]],"v":[[-11,192],[126.24,-22.025]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[0.25,-42.25],[-1.707,3.5]],"o":[[72.5,0],[-48.207,-0.25]],"v":[[-11,192],[103.957,151.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[0.183,-82.983],[-19.04,22.633]],"o":[[110.1,0],[-45.54,-4.717]],"v":[[-11,192],[129.157,103.45]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[0.133,-113.533],[-32.04,36.983]],"o":[[138.3,0],[-43.54,-8.067]],"v":[[-11,192],[148.057,67.6]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[0.125,-118.625],[-34.207,39.375]],"o":[[143,0],[-43.207,-8.625]],"v":[[-11,192],[151.207,61.625]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[0.008,-189.908],[64.493,117.425]],"o":[[87.933,-23.333],[-16.374,70.358]],"v":[[-11,192],[126.24,-22.025]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[0.25,-42.25],[-1.707,3.5]],"o":[[72.5,0],[-48.207,-0.25]],"v":[[-11,192],[103.957,151.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[0.183,-82.983],[-19.04,22.633]],"o":[[110.1,0],[-45.54,-4.717]],"v":[[-11,192],[129.157,103.45]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[0.133,-113.533],[-32.04,36.983]],"o":[[138.3,0],[-43.54,-8.067]],"v":[[-11,192],[148.057,67.6]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[0.125,-118.625],[-34.207,39.375]],"o":[[143,0],[-43.207,-8.625]],"v":[[-11,192],[151.207,61.625]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[0.008,-189.908],[64.493,117.425]],"o":[[87.933,-23.333],[-16.374,70.358]],"v":[[-11,192],[126.24,-22.025]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[0.25,-42.25],[-1.707,3.5]],"o":[[72.5,0],[-48.207,-0.25]],"v":[[-11,192],[103.957,151.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[0.183,-82.983],[-19.04,22.633]],"o":[[110.1,0],[-45.54,-4.717]],"v":[[-11,192],[129.157,103.45]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[0.133,-113.533],[-32.04,36.983]],"o":[[138.3,0],[-43.54,-8.067]],"v":[[-11,192],[148.057,67.6]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[0.125,-118.625],[-34.207,39.375]],"o":[[143,0],[-43.207,-8.625]],"v":[[-11,192],[151.207,61.625]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[0.008,-189.908],[64.493,117.425]],"o":[[87.933,-23.333],[-16.374,70.358]],"v":[[-11,192],[126.24,-22.025]],"c":true}]},{"t":72,"s":[{"i":[[0.216,-62.617],[-10.374,13.066]],"o":[[91.3,0],[-46.874,-2.484]],"v":[[-11,192],[116.557,127.35]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.842],"y":[0.842]},"o":{"x":[0.189],"y":[0.189]},"t":12,"s":[54]},{"i":{"x":[0.842],"y":[1.202]},"o":{"x":[0.167],"y":[-0.087]},"t":18.885,"s":[26]},{"i":{"x":[0.833],"y":[0.94]},"o":{"x":[0.167],"y":[0.06]},"t":19.2,"s":[26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19.377,"s":[25.188]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26.262,"s":[16.188]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26.754,"s":[54]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33.639,"s":[26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34.131,"s":[25.188]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41.016,"s":[16.188]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41.508,"s":[54]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48.393,"s":[26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48.885,"s":[25.188]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":55.77,"s":[16.188]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":56.262,"s":[54]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63.148,"s":[26]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63.639,"s":[25.188]},{"i":{"x":[0.562],"y":[1.088]},"o":{"x":[0.167],"y":[0.635]},"t":70.525,"s":[16.188]},{"t":72,"s":[46]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.937254905701,0.329411774874,0.003921568859,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 7","np":3,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[-54,0],[26.476,1.167]],"o":[[-10.133,-50.467],[18.676,12.633]],"v":[[-11,192],[-100.443,155.367]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-54,0],[33.676,11.167]],"o":[[-8.733,-68.067],[16.276,22.233]],"v":[[-11,192],[-128.243,148.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[-54,0],[33.676,11.167]],"o":[[-8.733,-68.067],[16.276,22.233]],"v":[[-11,192],[-128.243,148.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[-54,0],[26.476,1.167]],"o":[[-10.133,-50.467],[18.676,12.633]],"v":[[-11,192],[-100.443,155.367]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-54,0],[33.676,11.167]],"o":[[-8.733,-68.067],[16.276,22.233]],"v":[[-11,192],[-128.243,148.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[-54,0],[26.476,1.167]],"o":[[-10.133,-50.467],[18.676,12.633]],"v":[[-11,192],[-100.443,155.367]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-54,0],[33.676,11.167]],"o":[[-8.733,-68.067],[16.276,22.233]],"v":[[-11,192],[-128.243,148.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[-54,0],[26.476,1.167]],"o":[[-10.133,-50.467],[18.676,12.633]],"v":[[-11,192],[-100.443,155.367]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-54,0],[33.676,11.167]],"o":[[-8.733,-68.067],[16.276,22.233]],"v":[[-11,192],[-128.243,148.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-54,0],[16.876,-12.167]],"o":[[-12,-27],[21.876,-0.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"t":72,"s":[{"i":[[-54,0],[21.676,-5.5]],"o":[[-11.066,-38.733],[20.276,6.233]],"v":[[-11,192],[-81.91,159.767]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.937254905701,0.329411774874,0.003921568859,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-8.5,-71],[15.876,23.833]],"o":[[-54,0],[34.876,12.833]],"v":[[-11,192],[-132.876,147.667]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[45.367,-148.067],[-27.235,46.589]],"o":[[-84.775,0],[21.573,55.597]],"v":[[-11,192],[-136.073,54.653]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[85.767,-205.867],[-59.568,63.656]],"o":[[-107.857,0],[-5.102,104.922]],"v":[[-11,192],[-138.47,-15.108]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[85.767,-205.867],[-59.568,63.656]],"o":[[-107.857,0],[-5.102,104.922]],"v":[[-11,192],[-138.47,-15.108]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-12,-27],[21.876,-0.167]],"o":[[-54,0],[16.876,-12.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-8.733,-68.067],[16.276,22.233]],"o":[[-54,0],[33.676,11.167]],"v":[[-11,192],[-128.243,148.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-8.5,-71],[15.876,23.833]],"o":[[-54,0],[34.876,12.833]],"v":[[-11,192],[-132.876,147.667]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[45.367,-148.067],[-27.235,46.589]],"o":[[-84.775,0],[21.573,55.597]],"v":[[-11,192],[-136.073,54.653]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[85.767,-205.867],[-59.568,63.656]],"o":[[-107.857,0],[-5.102,104.922]],"v":[[-11,192],[-138.47,-15.108]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-12,-27],[21.876,-0.167]],"o":[[-54,0],[16.876,-12.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-8.733,-68.067],[16.276,22.233]],"o":[[-54,0],[33.676,11.167]],"v":[[-11,192],[-128.243,148.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-8.5,-71],[15.876,23.833]],"o":[[-54,0],[34.876,12.833]],"v":[[-11,192],[-132.876,147.667]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[45.367,-148.067],[-27.235,46.589]],"o":[[-84.775,0],[21.573,55.597]],"v":[[-11,192],[-136.073,54.653]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[85.767,-205.867],[-59.568,63.656]],"o":[[-107.857,0],[-5.102,104.922]],"v":[[-11,192],[-138.47,-15.108]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-12,-27],[21.876,-0.167]],"o":[[-54,0],[16.876,-12.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-8.733,-68.067],[16.276,22.233]],"o":[[-54,0],[33.676,11.167]],"v":[[-11,192],[-128.243,148.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-8.5,-71],[15.876,23.833]],"o":[[-54,0],[34.876,12.833]],"v":[[-11,192],[-132.876,147.667]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[45.367,-148.067],[-27.235,46.589]],"o":[[-84.775,0],[21.573,55.597]],"v":[[-11,192],[-136.073,54.653]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[85.767,-205.867],[-59.568,63.656]],"o":[[-107.857,0],[-5.102,104.922]],"v":[[-11,192],[-138.47,-15.108]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-12,-27],[21.876,-0.167]],"o":[[-54,0],[16.876,-12.167]],"v":[[-11,192],[-63.376,164.167]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-8.733,-68.067],[16.276,22.233]],"o":[[-54,0],[33.676,11.167]],"v":[[-11,192],[-128.243,148.767]],"c":true}]},{"t":72,"s":[{"i":[[18.434,-109.533],[-5.679,35.211]],"o":[[-69.387,0],[28.225,34.215]],"v":[[-11,192],[-134.475,101.16]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":12,"s":[53]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":15.934,"s":[22.857]},{"i":{"x":[0.833],"y":[1.247]},"o":{"x":[0.167],"y":[4.704]},"t":18.885,"s":[9]},{"i":{"x":[0.833],"y":[0.94]},"o":{"x":[0.167],"y":[0.06]},"t":19.2,"s":[9]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":19.377,"s":[53]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":26.262,"s":[53]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26.754,"s":[53]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":30.689,"s":[22.857]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33.639,"s":[9]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":34.131,"s":[53]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41.016,"s":[53]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41.508,"s":[53]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":45.443,"s":[22.857]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48.393,"s":[9]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":48.885,"s":[53]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":55.77,"s":[53]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":56.262,"s":[53]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":60.197,"s":[22.857]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63.148,"s":[9]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":63.639,"s":[53]},{"i":{"x":[0.584],"y":[0.688]},"o":{"x":[0.167],"y":[0]},"t":70.525,"s":[53]},{"t":72,"s":[37.929]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.937254905701,0.329411774874,0.003921568859,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4","np":3,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[92.5,-215.5],[-77.957,73.5]],"o":[[-107,0],[-7.957,111.5]],"v":[[-11,192],[-135.043,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[92.5,-215.5],[-50.629,72.186]],"o":[[-100.214,-69.5],[-9.7,104.4]],"v":[[-11,192],[-93.871,-74.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[92.5,-215.5],[-30.132,71.2]],"o":[[-95.125,-121.625],[-11.007,99.075]],"v":[[-11,192],[-62.993,-109.325]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.2,"s":[{"i":[[92.5,-215.5],[-30.132,71.2]],"o":[[-95.125,-121.625],[-11.007,99.075]],"v":[[-11,192],[-62.993,-109.325]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-8.5,-71],[15.876,23.833]],"o":[[-54,0],[34.876,12.833]],"v":[[-11,192],[-132.876,147.667]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[85.767,-205.867],[-71.702,70.189]],"o":[[-103.467,0],[-5.102,104.922]],"v":[[-11,192],[-134.898,-15.822]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[92.5,-215.5],[-77.957,73.5]],"o":[[-107,0],[-7.957,111.5]],"v":[[-11,192],[-135.043,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[92.5,-215.5],[-50.629,72.186]],"o":[[-100.214,-69.5],[-9.7,104.4]],"v":[[-11,192],[-93.871,-74.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[92.5,-215.5],[-30.132,71.2]],"o":[[-95.125,-121.625],[-11.007,99.075]],"v":[[-11,192],[-62.993,-109.325]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-8.5,-71],[15.876,23.833]],"o":[[-54,0],[34.876,12.833]],"v":[[-11,192],[-132.876,147.667]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[85.767,-205.867],[-71.702,70.189]],"o":[[-103.467,0],[-5.102,104.922]],"v":[[-11,192],[-134.898,-15.822]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[92.5,-215.5],[-77.957,73.5]],"o":[[-107,0],[-7.957,111.5]],"v":[[-11,192],[-135.043,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[92.5,-215.5],[-50.629,72.186]],"o":[[-100.214,-69.5],[-9.7,104.4]],"v":[[-11,192],[-93.871,-74.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[92.5,-215.5],[-30.132,71.2]],"o":[[-95.125,-121.625],[-11.007,99.075]],"v":[[-11,192],[-62.993,-109.325]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-8.5,-71],[15.876,23.833]],"o":[[-54,0],[34.876,12.833]],"v":[[-11,192],[-132.876,147.667]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[85.767,-205.867],[-71.702,70.189]],"o":[[-103.467,0],[-5.102,104.922]],"v":[[-11,192],[-134.898,-15.822]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[92.5,-215.5],[-77.957,73.5]],"o":[[-107,0],[-7.957,111.5]],"v":[[-11,192],[-135.043,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[92.5,-215.5],[-50.629,72.186]],"o":[[-100.214,-69.5],[-9.7,104.4]],"v":[[-11,192],[-93.871,-74.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[92.5,-215.5],[-30.132,71.2]],"o":[[-95.125,-121.625],[-11.007,99.075]],"v":[[-11,192],[-62.993,-109.325]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-8.5,-71],[15.876,23.833]],"o":[[-54,0],[34.876,12.833]],"v":[[-11,192],[-132.876,147.667]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[85.767,-205.867],[-71.702,70.189]],"o":[[-103.467,0],[-5.102,104.922]],"v":[[-11,192],[-134.898,-15.822]],"c":true}]},{"t":72,"s":[{"i":[[92.5,-215.5],[-64.293,72.843]],"o":[[-103.607,-34.75],[-8.829,107.95]],"v":[[-11,192],[-114.457,-50.879]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.842],"y":[1]},"o":{"x":[0.189],"y":[0]},"t":12,"s":[16]},{"i":{"x":[0.842],"y":[1]},"o":{"x":[0.167],"y":[3.742]},"t":18.885,"s":[16]},{"i":{"x":[0.833],"y":[0.94]},"o":{"x":[0.167],"y":[0.06]},"t":19.2,"s":[16]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":19.377,"s":[51]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":26.262,"s":[6]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":26.754,"s":[16]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":33.639,"s":[16]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":34.131,"s":[51]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":41.016,"s":[6]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":41.508,"s":[16]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48.393,"s":[16]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":48.885,"s":[51]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":55.77,"s":[6]},{"i":{"x":[0.833],"y":[1]},"o":{"x":[0.167],"y":[0]},"t":56.262,"s":[16]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63.148,"s":[16]},{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":63.639,"s":[51]},{"i":{"x":[0.562],"y":[1]},"o":{"x":[0.167],"y":[0.501]},"t":70.525,"s":[6]},{"t":72,"s":[16]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false},{"ty":"st","c":{"a":0,"k":[0.937254905701,0.329411774874,0.003921568859,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16.5,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3","np":3,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false}],"ip":10,"op":75.2,"st":0,"bm":0},{"ddd":0,"ind":19,"ty":4,"nm":"main outline","parent":4,"sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[-11,192,0],"ix":2},"a":{"a":0,"k":[-11,192,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-48.957,-22.25],[0.197,0.442],[-70.695,21.726]],"o":[[-0.82,-0.452],[-1.61,-3.615],[-90.667,23]],"v":[[15.207,182.25],[13.658,180.925],[103.667,151.286]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-48.957,-22.25],[0.213,1.609],[-75.448,37.427]],"o":[[-0.82,-0.452],[-1.741,-13.168],[-90.667,23]],"v":[[58.957,165.75],[57.379,162.616],[151.667,63]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-125.024,61.75],[-2.13,4.684],[48.466,105.584]],"o":[[-7.082,-3.904],[8.978,-20.285],[-16.933,71.067]],"v":[[100.957,152.217],[94.735,139.709],[126.467,-21.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-48.957,-22.25],[0.197,0.442],[-70.695,21.726]],"o":[[-0.82,-0.452],[-1.61,-3.615],[-90.667,23]],"v":[[15.207,182.25],[13.658,180.925],[103.667,151.286]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-48.957,-22.25],[0.213,1.609],[-75.448,37.427]],"o":[[-0.82,-0.452],[-1.741,-13.168],[-90.667,23]],"v":[[58.957,165.75],[57.379,162.616],[151.667,63]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-125.024,61.75],[-2.13,4.684],[48.466,105.584]],"o":[[-7.082,-3.904],[8.978,-20.285],[-16.933,71.067]],"v":[[100.957,152.217],[94.735,139.709],[126.467,-21.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-48.957,-22.25],[0.197,0.442],[-70.695,21.726]],"o":[[-0.82,-0.452],[-1.61,-3.615],[-90.667,23]],"v":[[15.207,182.25],[13.658,180.925],[103.667,151.286]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-48.957,-22.25],[0.213,1.609],[-75.448,37.427]],"o":[[-0.82,-0.452],[-1.741,-13.168],[-90.667,23]],"v":[[58.957,165.75],[57.379,162.616],[151.667,63]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-125.024,61.75],[-2.13,4.684],[48.466,105.584]],"o":[[-7.082,-3.904],[8.978,-20.285],[-16.933,71.067]],"v":[[100.957,152.217],[94.735,139.709],[126.467,-21.933]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-48.957,-22.25],[0.197,0.442],[-70.695,21.726]],"o":[[-0.82,-0.452],[-1.61,-3.615],[-90.667,23]],"v":[[15.207,182.25],[13.658,180.925],[103.667,151.286]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-48.957,-22.25],[0.213,1.609],[-75.448,37.427]],"o":[[-0.82,-0.452],[-1.741,-13.168],[-90.667,23]],"v":[[58.957,165.75],[57.379,162.616],[151.667,63]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-125.024,61.75],[-2.13,4.684],[48.466,105.584]],"o":[[-7.082,-3.904],[8.978,-20.285],[-16.933,71.067]],"v":[[100.957,152.217],[94.735,139.709],[126.467,-21.933]],"c":true}]},{"t":72,"s":[{"i":[[-48.957,-22.25],[0.201,0.705],[-71.767,25.268]],"o":[[-0.82,-0.452],[-1.64,-5.77],[-90.667,23]],"v":[[25.077,178.528],[23.522,176.794],[114.496,131.368]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 15","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-130.457,67.75],[-2.298,4.904],[57.317,110.452]],"o":[[-7.529,-4.15],[9.743,-20.793],[-11.667,74.5]],"v":[[103.957,151.25],[97.403,138.073],[124.667,-28]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-132.207,149.375],[10.866,5.715],[-5.26,21.308]],"o":[[-18.645,9.327],[-46.078,-24.234],[-13,24.333]],"v":[[151.207,61.625],[107.41,65.591],[82,-113.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[57.96,124.758],[13.259,3.326],[135.474,53.272]],"o":[[-3.77,13.222],[-23.379,-6.387],[-14.8,286.022]],"v":[[126.24,-22.025],[96.068,1.911],[-10.424,-191.94]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-130.457,67.75],[-2.298,4.904],[57.317,110.452]],"o":[[-7.529,-4.15],[9.743,-20.793],[-11.667,74.5]],"v":[[103.957,151.25],[97.403,138.073],[124.667,-28]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-132.207,149.375],[10.866,5.715],[-5.26,21.308]],"o":[[-18.645,9.327],[-46.078,-24.234],[-13,24.333]],"v":[[151.207,61.625],[107.41,65.591],[82,-113.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[57.96,124.758],[13.259,3.326],[135.474,53.272]],"o":[[-3.77,13.222],[-23.379,-6.387],[-14.8,286.022]],"v":[[126.24,-22.025],[96.068,1.911],[-10.424,-191.94]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-130.457,67.75],[-2.298,4.904],[57.317,110.452]],"o":[[-7.529,-4.15],[9.743,-20.793],[-11.667,74.5]],"v":[[103.957,151.25],[97.403,138.073],[124.667,-28]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-132.207,149.375],[10.866,5.715],[-5.26,21.308]],"o":[[-18.645,9.327],[-46.078,-24.234],[-13,24.333]],"v":[[151.207,61.625],[107.41,65.591],[82,-113.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[57.96,124.758],[13.259,3.326],[135.474,53.272]],"o":[[-3.77,13.222],[-23.379,-6.387],[-14.8,286.022]],"v":[[126.24,-22.025],[96.068,1.911],[-10.424,-191.94]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-130.457,67.75],[-2.298,4.904],[57.317,110.452]],"o":[[-7.529,-4.15],[9.743,-20.793],[-11.667,74.5]],"v":[[103.957,151.25],[97.403,138.073],[124.667,-28]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-132.207,149.375],[10.866,5.715],[-5.26,21.308]],"o":[[-18.645,9.327],[-46.078,-24.234],[-13,24.333]],"v":[[151.207,61.625],[107.41,65.591],[82,-113.333]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[57.96,124.758],[13.259,3.326],[135.474,53.272]],"o":[[-3.77,13.222],[-23.379,-6.387],[-14.8,286.022]],"v":[[126.24,-22.025],[96.068,1.911],[-10.424,-191.94]],"c":true}]},{"t":72,"s":[{"i":[[-130.852,86.165],[0.672,5.087],[43.199,90.341]],"o":[[-10.037,-1.11],[-2.85,-21.569],[-11.968,63.182]],"v":[[114.617,131.03],[99.661,121.721],[115.041,-47.251]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 14","np":2,"cix":2,"bm":0,"ix":2,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[71.543,123],[13.429,3.155],[145.526,55.555]],"o":[[-2.707,13.5],[-21.758,-5.112],[-14.929,304.714]],"v":[[124.457,-28],[95.258,-2.638],[-17.026,-197.555]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[19.81,90.467],[9.271,-0.471],[58.519,49.554]],"o":[[-4.554,9.74],[-28.484,11.005],[-73.313,268.493]],"v":[[102.057,-73.867],[78.984,-54.005],[-8.799,-198.219]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-25.457,62],[5.632,-3.644],[-17.612,44.304]],"o":[[-6.17,6.45],[-55.496,35.902],[-124.4,236.8]],"v":[[82.457,-114],[64.744,-98.951],[-1.6,-198.8]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":22.82,"s":[{"i":[[14.835,63.325],[2.967,-1.772],[-8.391,23.538]],"o":[[-3.259,3.182],[-29.23,17.464],[-64.013,161.052]],"v":[[35.79,-153.2],[26.447,-145.814],[-20.106,-143.04]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[55.126,64.65],[0.301,0.099],[0.831,2.772]],"o":[[-0.349,-0.086],[-2.963,-0.975],[-3.627,85.303]],"v":[[-10.876,-192.4],[-11.85,-192.677],[-16.373,-198.053]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[71.543,123],[13.429,3.155],[145.526,55.555]],"o":[[-2.707,13.5],[-21.758,-5.112],[-14.929,304.714]],"v":[[124.457,-28],[95.258,-2.638],[-17.026,-197.555]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[19.81,90.467],[9.271,-0.471],[58.519,49.554]],"o":[[-4.554,9.74],[-28.484,11.005],[-73.313,268.493]],"v":[[102.057,-73.867],[78.984,-54.005],[-8.799,-198.219]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-25.457,62],[5.632,-3.644],[-17.612,44.304]],"o":[[-6.17,6.45],[-55.496,35.902],[-124.4,236.8]],"v":[[82.457,-114],[64.744,-98.951],[-1.6,-198.8]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[55.126,64.65],[0.301,0.099],[0.831,2.772]],"o":[[-0.349,-0.086],[-2.963,-0.975],[-3.627,85.303]],"v":[[-10.876,-192.4],[-11.85,-192.677],[-16.373,-198.053]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[71.543,123],[13.429,3.155],[145.526,55.555]],"o":[[-2.707,13.5],[-21.758,-5.112],[-14.929,304.714]],"v":[[124.457,-28],[95.258,-2.638],[-17.026,-197.555]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[19.81,90.467],[9.271,-0.471],[58.519,49.554]],"o":[[-4.554,9.74],[-28.484,11.005],[-73.313,268.493]],"v":[[102.057,-73.867],[78.984,-54.005],[-8.799,-198.219]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-25.457,62],[5.632,-3.644],[-17.612,44.304]],"o":[[-6.17,6.45],[-55.496,35.902],[-124.4,236.8]],"v":[[82.457,-114],[64.744,-98.951],[-1.6,-198.8]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[55.126,64.65],[0.301,0.099],[0.831,2.772]],"o":[[-0.349,-0.086],[-2.963,-0.975],[-3.627,85.303]],"v":[[-10.876,-192.4],[-11.85,-192.677],[-16.373,-198.053]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[71.543,123],[13.429,3.155],[145.526,55.555]],"o":[[-2.707,13.5],[-21.758,-5.112],[-14.929,304.714]],"v":[[124.457,-28],[95.258,-2.638],[-17.026,-197.555]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[19.81,90.467],[9.271,-0.471],[58.519,49.554]],"o":[[-4.554,9.74],[-28.484,11.005],[-73.313,268.493]],"v":[[102.057,-73.867],[78.984,-54.005],[-8.799,-198.219]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-25.457,62],[5.632,-3.644],[-17.612,44.304]],"o":[[-6.17,6.45],[-55.496,35.902],[-124.4,236.8]],"v":[[82.457,-114],[64.744,-98.951],[-1.6,-198.8]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[55.126,64.65],[0.301,0.099],[0.831,2.772]],"o":[[-0.349,-0.086],[-2.963,-0.975],[-3.627,85.303]],"v":[[-10.876,-192.4],[-11.85,-192.677],[-16.373,-198.053]],"c":true}]},{"t":72,"s":[{"i":[[45.676,106.733],[11.35,1.342],[102.023,52.555]],"o":[[-3.63,11.62],[-25.121,2.947],[-44.121,286.603]],"v":[[113.257,-50.934],[87.121,-28.322],[-12.913,-197.887]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 13","np":2,"cix":2,"bm":0,"ix":3,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[40.441,37.494],[-27.058,67.1]],"o":[[31.474,12.427],[-8.208,29.217]],"v":[[-100.51,155.228],[-134.475,56.042]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-137.925,-14.583]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[40.441,37.494],[-27.058,67.1]],"o":[[31.474,12.427],[-8.208,29.217]],"v":[[-100.51,155.228],[-134.475,56.042]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-137.925,-14.583]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[40.441,37.494],[-27.058,67.1]],"o":[[31.474,12.427],[-8.208,29.217]],"v":[[-100.51,155.228],[-134.475,56.042]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-137.925,-14.583]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[40.441,37.494],[-27.058,67.1]],"o":[[31.474,12.427],[-8.208,29.217]],"v":[[-100.51,155.228],[-134.475,56.042]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-137.925,-14.583]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-39.943,164.894],[-43.958,166.25]],"c":true}]},{"t":72,"s":[{"i":[[10.192,17.3],[6.575,46.3]],"o":[[16.958,10.766],[-0.375,16.483]],"v":[[-81.977,159.561],[-133.591,101.771]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 12","np":2,"cix":2,"bm":0,"ix":4,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[93.376,72.833],[-85.917,103.5]],"o":[[56.876,15.333],[-21.917,51.5]],"v":[[-132.943,147.644],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[35.658,101.445],[-65.336,93.405]],"o":[[37.272,11.328],[3.521,169.691]],"v":[[-136.158,54.805],[-94.236,-74.262]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-22.202,124.789],[-49.9,85.833]],"o":[[22.57,8.324],[22.6,258.333]],"v":[[-138.57,-14.824],[-63.6,-109.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-134.925,-15.833]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[93.376,72.833],[-85.917,103.5]],"o":[[56.876,15.333],[-21.917,51.5]],"v":[[-132.943,147.644],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[35.658,101.445],[-65.336,93.405]],"o":[[37.272,11.328],[3.521,169.691]],"v":[[-136.158,54.805],[-94.236,-74.262]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-22.202,124.789],[-49.9,85.833]],"o":[[22.57,8.324],[22.6,258.333]],"v":[[-138.57,-14.824],[-63.6,-109.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-134.925,-15.833]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[93.376,72.833],[-85.917,103.5]],"o":[[56.876,15.333],[-21.917,51.5]],"v":[[-132.943,147.644],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[35.658,101.445],[-65.336,93.405]],"o":[[37.272,11.328],[3.521,169.691]],"v":[[-136.158,54.805],[-94.236,-74.262]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-22.202,124.789],[-49.9,85.833]],"o":[[22.57,8.324],[22.6,258.333]],"v":[[-138.57,-14.824],[-63.6,-109.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-134.925,-15.833]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[93.376,72.833],[-85.917,103.5]],"o":[[56.876,15.333],[-21.917,51.5]],"v":[[-132.943,147.644],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[35.658,101.445],[-65.336,93.405]],"o":[[37.272,11.328],[3.521,169.691]],"v":[[-136.158,54.805],[-94.236,-74.262]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-22.202,124.789],[-49.9,85.833]],"o":[[22.57,8.324],[22.6,258.333]],"v":[[-138.57,-14.824],[-63.6,-109.333]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-20.057,-2.894],[40.208,25.5]],"o":[[2.443,9.106],[7.458,3.75]],"v":[[-63.443,163.894],[-132.708,147.5]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[85.814,67.785],[-77.508,98.3]],"o":[[53.247,14.918],[-19.958,48.317]],"v":[[-128.31,148.728],[-134.925,-15.833]],"c":true}]},{"t":72,"s":[{"i":[[64.517,87.139],[-75.626,98.452]],"o":[[47.074,13.33],[-9.198,110.596]],"v":[[-134.551,101.225],[-114.66,-50.881]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 10","np":2,"cix":2,"bm":0,"ix":5,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-48.957,103],[-14.374,19.634],[-34,62.5]],"o":[[-3.957,25.5],[17.842,-24.371],[47,189.5]],"v":[[-135.043,-27.5],[-89.892,9.213],[-57,-113.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-37.507,99.825],[-6.531,6.628],[-11.668,33.483]],"o":[[14.235,-1.998],[13.653,-13.856],[-19.75,203]],"v":[[-62.993,-109.325],[-33.016,-122.287],[-5.75,-193.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[93.376,72.833],[9.198,13.557],[-58.116,70.01]],"o":[[18.404,4.962],[-19.228,-28.339],[90.083,160.5]],"v":[[-132.943,147.644],[-126.463,133.299],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-39.468,100.989],[-12.802,19.228],[-35.608,63.001]],"o":[[-2.466,24.131],[15.371,-24.636],[49.872,187.567]],"v":[[-134.903,-15.824],[-92.33,17.485],[-62.206,-107.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-48.957,103],[-14.374,19.634],[-34,62.5]],"o":[[-3.957,25.5],[17.842,-24.371],[47,189.5]],"v":[[-135.043,-27.5],[-89.892,9.213],[-57,-113.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-37.507,99.825],[-6.531,6.628],[-11.668,33.483]],"o":[[14.235,-1.998],[13.653,-13.856],[-19.75,203]],"v":[[-62.993,-109.325],[-33.016,-122.287],[-5.75,-193.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[93.376,72.833],[9.198,13.557],[-58.116,70.01]],"o":[[18.404,4.962],[-19.228,-28.339],[90.083,160.5]],"v":[[-132.943,147.644],[-126.463,133.299],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-39.468,100.989],[-12.802,19.228],[-35.608,63.001]],"o":[[-2.466,24.131],[15.371,-24.636],[49.872,187.567]],"v":[[-134.903,-15.824],[-92.33,17.485],[-62.206,-107.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-48.957,103],[-14.374,19.634],[-34,62.5]],"o":[[-3.957,25.5],[17.842,-24.371],[47,189.5]],"v":[[-135.043,-27.5],[-89.892,9.213],[-57,-113.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-37.507,99.825],[-6.531,6.628],[-11.668,33.483]],"o":[[14.235,-1.998],[13.653,-13.856],[-19.75,203]],"v":[[-62.993,-109.325],[-33.016,-122.287],[-5.75,-193.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[93.376,72.833],[9.198,13.557],[-58.116,70.01]],"o":[[18.404,4.962],[-19.228,-28.339],[90.083,160.5]],"v":[[-132.943,147.644],[-126.463,133.299],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-39.468,100.989],[-12.802,19.228],[-35.608,63.001]],"o":[[-2.466,24.131],[15.371,-24.636],[49.872,187.567]],"v":[[-134.903,-15.824],[-92.33,17.485],[-62.206,-107.767]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-48.957,103],[-14.374,19.634],[-34,62.5]],"o":[[-3.957,25.5],[17.842,-24.371],[47,189.5]],"v":[[-135.043,-27.5],[-89.892,9.213],[-57,-113.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-37.507,99.825],[-6.531,6.628],[-11.668,33.483]],"o":[[14.235,-1.998],[13.653,-13.856],[-19.75,203]],"v":[[-62.993,-109.325],[-33.016,-122.287],[-5.75,-193.5]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[93.376,72.833],[9.198,13.557],[-58.116,70.01]],"o":[[18.404,4.962],[-19.228,-28.339],[90.083,160.5]],"v":[[-132.943,147.644],[-126.463,133.299],[-135.083,-27.5]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-39.468,100.989],[-12.802,19.228],[-35.608,63.001]],"o":[[-2.466,24.131],[15.371,-24.636],[49.872,187.567]],"v":[[-134.903,-15.824],[-92.33,17.485],[-62.206,-107.767]],"c":true}]},{"t":72,"s":[{"i":[[-46.128,102.215],[-12.436,16.42],[-28.481,55.329]],"o":[[0.538,18.705],[16.807,-21.773],[30.505,192.836]],"v":[[-117.238,-47.72],[-75.837,-23.283],[-44.335,-133.269]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 11","np":2,"cix":2,"bm":0,"ix":6,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-0.38,0.778],[0.056,-9.392]],"o":[[-10.717,-0.056],[16.117,0]],"v":[[14.938,182.198],[-10.618,191.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-16.729,-11.318],[0.153,-25.821]],"o":[[-26.979,-24.818],[44.309,0]],"v":[[58.479,166.318],[-11.778,191.222]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-2.709,2.512],[0.244,-41.155]],"o":[[-46.792,-1.888],[70.621,0]],"v":[[100.925,152.255],[-11.052,191.948]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-0.38,0.778],[0.056,-9.392]],"o":[[-10.717,-0.056],[16.117,0]],"v":[[14.938,182.198],[-10.618,191.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-16.729,-11.318],[0.153,-25.821]],"o":[[-26.979,-24.818],[44.309,0]],"v":[[58.479,166.318],[-11.778,191.222]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-2.709,2.512],[0.244,-41.155]],"o":[[-46.792,-1.888],[70.621,0]],"v":[[100.925,152.255],[-11.052,191.948]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-0.38,0.778],[0.056,-9.392]],"o":[[-10.717,-0.056],[16.117,0]],"v":[[14.938,182.198],[-10.618,191.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-16.729,-11.318],[0.153,-25.821]],"o":[[-26.979,-24.818],[44.309,0]],"v":[[58.479,166.318],[-11.778,191.222]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-2.709,2.512],[0.244,-41.155]],"o":[[-46.792,-1.888],[70.621,0]],"v":[[100.925,152.255],[-11.052,191.948]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-0.38,0.778],[0.056,-9.392]],"o":[[-10.717,-0.056],[16.117,0]],"v":[[14.938,182.198],[-10.618,191.257]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-16.729,-11.318],[0.153,-25.821]],"o":[[-26.979,-24.818],[44.309,0]],"v":[[58.479,166.318],[-11.778,191.222]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-2.709,2.512],[0.244,-41.155]],"o":[[-46.792,-1.888],[70.621,0]],"v":[[100.925,152.255],[-11.052,191.948]],"c":true}]},{"t":72,"s":[{"i":[[-4.068,-1.951],[0.078,-13.098]],"o":[[-14.386,-5.642],[22.477,0]],"v":[[24.761,178.615],[-10.88,191.249]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 8","np":2,"cix":2,"bm":0,"ix":7,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-1.707,3.5],[0.25,-42.25]],"o":[[-48.207,-0.25],[72.5,0]],"v":[[103.957,151.25],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-34.207,39.375],[0.125,-118.625]],"o":[[-43.207,-8.625],[143,0]],"v":[[151.207,61.625],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[64.493,117.425],[0.008,-189.908]],"o":[[-16.374,70.358],[87.933,-23.333]],"v":[[126.24,-22.025],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-1.707,3.5],[0.25,-42.25]],"o":[[-48.207,-0.25],[72.5,0]],"v":[[103.957,151.25],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-34.207,39.375],[0.125,-118.625]],"o":[[-43.207,-8.625],[143,0]],"v":[[151.207,61.625],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[64.493,117.425],[0.008,-189.908]],"o":[[-16.374,70.358],[87.933,-23.333]],"v":[[126.24,-22.025],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-1.707,3.5],[0.25,-42.25]],"o":[[-48.207,-0.25],[72.5,0]],"v":[[103.957,151.25],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-34.207,39.375],[0.125,-118.625]],"o":[[-43.207,-8.625],[143,0]],"v":[[151.207,61.625],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[64.493,117.425],[0.008,-189.908]],"o":[[-16.374,70.358],[87.933,-23.333]],"v":[[126.24,-22.025],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-1.707,3.5],[0.25,-42.25]],"o":[[-48.207,-0.25],[72.5,0]],"v":[[103.957,151.25],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-34.207,39.375],[0.125,-118.625]],"o":[[-43.207,-8.625],[143,0]],"v":[[151.207,61.625],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[64.493,117.425],[0.008,-189.908]],"o":[[-16.374,70.358],[87.933,-23.333]],"v":[[126.24,-22.025],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[-9.039,11.593],[0.222,-59.48]],"o":[[-47.079,-2.139],[88.405,0]],"v":[[114.617,131.03],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 7","np":2,"cix":2,"bm":0,"ix":8,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[71.543,123],[0,-195]],"o":[[-14.457,76],[84,-25]],"v":[[124.457,-28],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-25.457,62],[-96.5,-180]],"o":[[-66.457,59],[219,-96]],"v":[[82.457,-114],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[135.076,57.333],[-186.567,-166]],"o":[[21.276,184.067],[131.267,-187.467]],"v":[[-10.876,-192.4],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[71.543,123],[0,-195]],"o":[[-14.457,76],[84,-25]],"v":[[124.457,-28],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-25.457,62],[-96.5,-180]],"o":[[-66.457,59],[219,-96]],"v":[[82.457,-114],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[135.076,57.333],[-186.567,-166]],"o":[[21.276,184.067],[131.267,-187.467]],"v":[[-10.876,-192.4],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[71.543,123],[0,-195]],"o":[[-14.457,76],[84,-25]],"v":[[124.457,-28],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-25.457,62],[-96.5,-180]],"o":[[-66.457,59],[219,-96]],"v":[[82.457,-114],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[135.076,57.333],[-186.567,-166]],"o":[[21.276,184.067],[131.267,-187.467]],"v":[[-10.876,-192.4],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[71.543,123],[0,-195]],"o":[[-14.457,76],[84,-25]],"v":[[124.457,-28],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-25.457,62],[-96.5,-180]],"o":[[-66.457,59],[219,-96]],"v":[[82.457,-114],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[135.076,57.333],[-186.567,-166]],"o":[[21.276,184.067],[131.267,-187.467]],"v":[[-10.876,-192.4],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[49.66,109.238],[-21.771,-191.616]],"o":[[-26.188,72.165],[114.456,-41.018]],"v":[[114.982,-47.402],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 6","np":2,"cix":2,"bm":0,"ix":9,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[21.028,-6.401],[-54,0]],"o":[[20.492,5.368],[-11.193,-37.148]],"v":[[-79.406,160.361],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 5","np":2,"cix":2,"bm":0,"ix":10,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":15.934,"s":[{"i":[[21.573,55.597],[-84.775,0]],"o":[[-27.235,46.589],[45.367,-148.067]],"v":[[-136.073,54.653],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-5.102,104.922],[-107.857,0]],"o":[[-59.568,63.656],[85.767,-205.867]],"v":[[-138.47,-15.108],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":30.689,"s":[{"i":[[21.573,55.597],[-84.775,0]],"o":[[-27.235,46.589],[45.367,-148.067]],"v":[[-136.073,54.653],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-5.102,104.922],[-107.857,0]],"o":[[-59.568,63.656],[85.767,-205.867]],"v":[[-138.47,-15.108],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":45.443,"s":[{"i":[[21.573,55.597],[-84.775,0]],"o":[[-27.235,46.589],[45.367,-148.067]],"v":[[-136.073,54.653],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-5.102,104.922],[-107.857,0]],"o":[[-59.568,63.656],[85.767,-205.867]],"v":[[-138.47,-15.108],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":60.197,"s":[{"i":[[21.573,55.597],[-84.775,0]],"o":[[-27.235,46.589],[45.367,-148.067]],"v":[[-136.073,54.653],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-5.102,104.922],[-107.857,0]],"o":[[-59.568,63.656],[85.767,-205.867]],"v":[[-138.47,-15.108],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[16.876,-12.167],[-54,0]],"o":[[21.876,-0.167],[-12,-27]],"v":[[-63.376,164.167],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[33.676,11.167],[-54,0]],"o":[[16.276,22.233],[-8.733,-68.067]],"v":[[-128.243,148.767],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[28.225,34.215],[-69.387,0]],"o":[[-5.679,35.211],[18.434,-109.533]],"v":[[-134.475,101.16],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 4","np":2,"cix":2,"bm":0,"ix":11,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-77.957,73.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-11.007,99.075],[-95.125,-121.625]],"o":[[-30.132,71.2],[92.5,-215.5]],"v":[[-62.993,-109.325],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-5.102,104.922],[-103.467,0]],"o":[[-71.702,70.189],[85.767,-205.867]],"v":[[-134.898,-15.822],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-77.957,73.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-11.007,99.075],[-95.125,-121.625]],"o":[[-30.132,71.2],[92.5,-215.5]],"v":[[-62.993,-109.325],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-5.102,104.922],[-103.467,0]],"o":[[-71.702,70.189],[85.767,-205.867]],"v":[[-134.898,-15.822],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-77.957,73.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-11.007,99.075],[-95.125,-121.625]],"o":[[-30.132,71.2],[92.5,-215.5]],"v":[[-62.993,-109.325],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-5.102,104.922],[-103.467,0]],"o":[[-71.702,70.189],[85.767,-205.867]],"v":[[-134.898,-15.822],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-77.957,73.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-11.007,99.075],[-95.125,-121.625]],"o":[[-30.132,71.2],[92.5,-215.5]],"v":[[-62.993,-109.325],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[34.876,12.833],[-54,0]],"o":[[15.876,23.833],[-8.5,-71]],"v":[[-132.876,147.667],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-5.102,104.922],[-103.467,0]],"o":[[-71.702,70.189],[85.767,-205.867]],"v":[[-134.898,-15.822],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[-8.711,108.43],[-104.066,-30.055]],"o":[[-66.139,72.932],[92.5,-215.5]],"v":[[-117.238,-47.72],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 3","np":2,"cix":2,"bm":0,"ix":12,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-48.707,88.5],[0.868,68.316]],"o":[[12.543,7.5],[24.9,235.3]],"v":[[-57.043,-114.5],[-17.368,-197.816]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-6.84,0.7],[-1.405,1.232]],"o":[[-1.007,-1.383],[-2.946,1.899]],"v":[[-5.243,-193.367],[-2.606,-198.922]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-30.457,128.5],[-169.792,85.25]],"o":[[44.043,11.5],[-68.292,288.75]],"v":[[-135.043,-27.5],[-1.708,-198.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":22.82,"s":[{"i":[[-38.974,109.833],[-87.569,78.273]],"o":[[29.343,9.633],[-24.802,263.807]],"v":[[-98.643,-68.1],[-20.135,-142.928]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-47.49,91.167],[-5.346,71.297]],"o":[[14.643,7.767],[18.687,238.863]],"v":[[-62.243,-108.7],[-16.324,-197.878]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-48.707,88.5],[6.4,70.3]],"o":[[12.543,7.5],[24.9,235.3]],"v":[[-57.043,-114.5],[-17.368,-197.816]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-6.84,0.7],[-1.405,1.232]],"o":[[-1.007,-1.383],[-2.946,1.899]],"v":[[-5.243,-193.367],[-2.606,-198.922]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-30.457,128.5],[-169.792,85.25]],"o":[[44.043,11.5],[-68.292,288.75]],"v":[[-135.043,-27.5],[-1.708,-198.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-47.49,91.167],[-5.346,71.297]],"o":[[14.643,7.767],[18.687,238.863]],"v":[[-62.243,-108.7],[-16.324,-197.878]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-48.707,88.5],[6.4,70.3]],"o":[[12.543,7.5],[24.9,235.3]],"v":[[-57.043,-114.5],[-17.368,-197.816]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-6.84,0.7],[-1.405,1.232]],"o":[[-1.007,-1.383],[-2.946,1.899]],"v":[[-5.243,-193.367],[-2.606,-198.922]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-30.457,128.5],[-169.792,85.25]],"o":[[44.043,11.5],[-68.292,288.75]],"v":[[-135.043,-27.5],[-1.708,-198.75]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-47.49,91.167],[-5.346,71.297]],"o":[[14.643,7.767],[18.687,238.863]],"v":[[-62.243,-108.7],[-16.324,-197.878]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-48.707,88.5],[6.4,70.3]],"o":[[12.543,7.5],[24.9,235.3]],"v":[[-57.043,-114.5],[-17.368,-197.816]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-6.84,0.7],[-1.405,1.232]],"o":[[-1.007,-1.383],[-2.946,1.899]],"v":[[-5.243,-193.367],[-2.606,-198.922]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-30.457,128.5],[-169.792,85.25]],"o":[[44.043,11.5],[-68.292,288.75]],"v":[[-135.043,-27.5],[-1.708,-198.75]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-47.49,91.167],[-5.346,71.297]],"o":[[14.643,7.767],[18.687,238.863]],"v":[[-62.243,-108.7],[-16.324,-197.878]],"c":true}]},{"t":72,"s":[{"i":[[-38.361,66.803],[0.306,51.739]],"o":[[9.195,5.305],[18.019,177.623]],"v":[[-44.242,-133.989],[-13.72,-198.089]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 9","np":2,"cix":2,"bm":0,"ix":13,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[-19.957,109.5],[-86,-126]],"o":[[-35.957,72.5],[92.5,-215.5]],"v":[[-57.043,-114.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":18.885,"s":[{"i":[[-31.757,107.242],[-162.125,-256.25]],"o":[[-110.882,74.992],[178.833,-193.567]],"v":[[-5.243,-193.367],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-64.957,66.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[-19.157,109.633],[-87.4,-117.6]],"o":[[-37.89,72.1],[92.5,-215.5]],"v":[[-62.243,-108.7],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[-19.957,109.5],[-86,-126]],"o":[[-35.957,72.5],[92.5,-215.5]],"v":[[-57.043,-114.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":33.639,"s":[{"i":[[-31.757,107.242],[-162.125,-256.25]],"o":[[-110.882,74.992],[178.833,-193.567]],"v":[[-5.243,-193.367],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-64.957,66.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[-19.157,109.633],[-87.4,-117.6]],"o":[[-37.89,72.1],[92.5,-215.5]],"v":[[-62.243,-108.7],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[-19.957,109.5],[-86,-126]],"o":[[-35.957,72.5],[92.5,-215.5]],"v":[[-57.043,-114.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.393,"s":[{"i":[[-31.757,107.242],[-162.125,-256.25]],"o":[[-110.882,74.992],[178.833,-193.567]],"v":[[-5.243,-193.367],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-64.957,66.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[-19.157,109.633],[-87.4,-117.6]],"o":[[-37.89,72.1],[92.5,-215.5]],"v":[[-62.243,-108.7],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[-19.957,109.5],[-86,-126]],"o":[[-35.957,72.5],[92.5,-215.5]],"v":[[-57.043,-114.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.148,"s":[{"i":[[-31.757,107.242],[-162.125,-256.25]],"o":[[-110.882,74.992],[178.833,-193.567]],"v":[[-5.243,-193.367],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-7.957,111.5],[-107,0]],"o":[[-64.957,66.5],[92.5,-215.5]],"v":[[-135.043,-27.5],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[-19.157,109.633],[-87.4,-117.6]],"o":[[-37.89,72.1],[92.5,-215.5]],"v":[[-62.243,-108.7],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[-22.873,108.942],[-104.812,-158.187]],"o":[[-54.472,73.116],[113.834,-210.08]],"v":[[-44.242,-133.989],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 2","np":2,"cix":2,"bm":0,"ix":14,"mn":"ADBE Vector Group","hd":false},{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":12,"s":[{"i":[[146.543,57],[-193,-165]],"o":[[27.543,193],[125,-194]],"v":[[-17.543,-198],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":19.377,"s":[{"i":[[-42.457,115],[-160,-259]],"o":[[-130.457,74],[185,-192]],"v":[[-1.543,-199],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":22.82,"s":[{"i":[[45.743,87.933],[-175.4,-215.133]],"o":[[-56.724,129.533],[157,-192.934]],"v":[[-20.129,-143.147],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.262,"s":[{"i":[[133.943,60.867],[-190.8,-171.267]],"o":[[17.01,185.067],[129,-193.867]],"v":[[-16.476,-198.067],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":26.754,"s":[{"i":[[146.543,57],[-193,-165]],"o":[[27.543,193],[125,-194]],"v":[[-17.543,-198],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":34.131,"s":[{"i":[[-42.457,115],[-160,-259]],"o":[[-130.457,74],[185,-192]],"v":[[-1.543,-199],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.016,"s":[{"i":[[133.943,60.867],[-190.8,-171.267]],"o":[[17.01,185.067],[129,-193.867]],"v":[[-16.476,-198.067],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":41.508,"s":[{"i":[[146.543,57],[-193,-165]],"o":[[27.543,193],[125,-194]],"v":[[-17.543,-198],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":48.885,"s":[{"i":[[-42.457,115],[-160,-259]],"o":[[-130.457,74],[185,-192]],"v":[[-1.543,-199],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":55.77,"s":[{"i":[[133.943,60.867],[-190.8,-171.267]],"o":[[17.01,185.067],[129,-193.867]],"v":[[-16.476,-198.067],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":56.262,"s":[{"i":[[146.543,57],[-193,-165]],"o":[[27.543,193],[125,-194]],"v":[[-17.543,-198],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":1},"o":{"x":0.167,"y":0},"t":63.639,"s":[{"i":[[-42.457,115],[-160,-259]],"o":[[-130.457,74],[185,-192]],"v":[[-1.543,-199],[-11,192]],"c":true}]},{"i":{"x":0.833,"y":0.932},"o":{"x":0.167,"y":0},"t":70.525,"s":[{"i":[[133.943,60.867],[-190.8,-171.267]],"o":[[17.01,185.067],[129,-193.867]],"v":[[-16.476,-198.067],[-11,192]],"c":true}]},{"t":72,"s":[{"i":[[103.904,70.085],[-185.555,-186.207]],"o":[[-8.102,166.153],[138.536,-193.549]],"v":[[-13.933,-198.226],[-11,192]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[0.729411780834,0.007843137719,0.007843137719,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":16,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[-11.063,192.375],"ix":2},"a":{"a":0,"k":[-11.063,191.875],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Shape 1","np":2,"cix":2,"bm":0,"ix":15,"mn":"ADBE Vector Group","hd":false}],"ip":10,"op":73.6,"st":0,"bm":0}]}],"layers":[{"ddd":0,"ind":1,"ty":0,"nm":"Pre-comp 1","refId":"comp_0","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[400,400,0],"ix":2},"a":{"a":0,"k":[400,400,0],"ix":1},"s":{"a":0,"k":[100,100,100],"ix":6}},"ao":0,"w":800,"h":800,"ip":-0.4,"op":53.2,"st":-0.4,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/src/components/StreakProgressBar.tsx b/src/components/StreakProgressBar.tsx new file mode 100644 index 0000000..6b57fcc --- /dev/null +++ b/src/components/StreakProgressBar.tsx @@ -0,0 +1,115 @@ +import { SIZES } from "@/constants/theme"; +import LottieView from "lottie-react-native"; +import React from "react"; +import { StyleSheet, Text, View } from "react-native"; + +interface StreakProgressBarProps { + continuousReadingDays: number; + streakProgress: number; +} + +const StreakProgressBar: React.FC = ({ + continuousReadingDays, + streakProgress, +}) => { + return ( + + 연속 독서 현황 + + + 연속 독서 {continuousReadingDays}일째 + + + {(streakProgress * 100).toFixed(0)}% + + + + + + + {streakProgress > 0 && ( + + )} + + 7일 연속으로 문장을 수집해보세요 + + ); +}; + +const styles = StyleSheet.create({ + container: { + marginTop: SIZES.padding * 2, + marginHorizontal: SIZES.padding, + padding: SIZES.padding, + backgroundColor: "#fff", + borderRadius: SIZES.radius, + shadowColor: "#000", + shadowOffset: { width: 0, height: 2 }, + shadowOpacity: 0.05, + shadowRadius: 4, + elevation: 2, + }, + title: { + fontSize: SIZES.h3, + fontWeight: "bold", + marginBottom: SIZES.padding, + }, + streakTextContainer: { + flexDirection: "row", + justifyContent: "space-between", + alignItems: "center", + marginBottom: SIZES.base, + }, + streakText: { + fontSize: SIZES.body3, + fontWeight: "500", + }, + progressPercentage: { + fontSize: SIZES.body4, + color: "#888", + }, + progressBarWrapper: { + position: "relative", + marginBottom: SIZES.base, + height: 16, + }, + progressBarBackground: { + height: "100%", + backgroundColor: "#e0e0e0", + borderRadius: 8, + overflow: "hidden", + }, + progressBarFill: { + height: "100%", + backgroundColor: "#FF8C00", + borderRadius: 8, + }, + flameAnimationAbsolute: { + width: 50, + height: 50, + position: "absolute", + transform: [{ translateX: -24 }, { translateY: -20 }], + zIndex: 1, + }, + description: { + fontSize: SIZES.body4, + color: "#888", + textAlign: "center", + marginTop: SIZES.base, + }, +}); + +export default StreakProgressBar; diff --git a/src/view-models/useStatsViewModel.ts b/src/view-models/useStatsViewModel.ts index 23f2ca4..b71e50f 100644 --- a/src/view-models/useStatsViewModel.ts +++ b/src/view-models/useStatsViewModel.ts @@ -34,9 +34,12 @@ export const useStatsViewModel = () => { const [tagStats, setTagStats] = useState([]); const [isSheetVisible, setSheetVisible] = useState(false); const [selectedDate, setSelectedDate] = useState(null); - const [selectedDateSentences, setSelectedDateSentences] = useState< - Sentence[] - >([]); + const [ + selectedDateSentences, + setSelectedDateSentences, + ] = useState([]); + const [continuousReadingDays, setContinuousReadingDays] = useState(0); + const [streakProgress, setStreakProgress] = useState(0); useFocusEffect( useCallback(() => { @@ -58,7 +61,8 @@ export const useStatsViewModel = () => { ); const marks: any = {}; - Object.keys(countsByDate).forEach((date) => { + const readingDates = Object.keys(countsByDate); + readingDates.forEach((date) => { const count = countsByDate[date]; let bgColor = "#ebedf0"; let textColor = "black"; @@ -89,6 +93,31 @@ export const useStatsViewModel = () => { }); setMarkedDates(marks); + // 연속 독서일 계산 + const readingDatesSet = new Set(readingDates); + let currentStreak = 0; + const today = new Date(); + let currentDate = new Date( + today.getFullYear(), + today.getMonth(), + today.getDate(), + ); + + while (true) { + const dateString = currentDate.toISOString().split("T")[0]; + if (readingDatesSet.has(dateString)) { + currentStreak++; + currentDate.setDate(currentDate.getDate() - 1); + } else { + break; + } + } + setContinuousReadingDays(currentStreak); + + const displayStreak = + currentStreak > 0 && currentStreak % 7 === 0 ? 7 : currentStreak % 7; + setStreakProgress(displayStreak / 7); + // 태그 통계 처리 const allTags = sentences.flatMap((s) => s.tags || []); const tagCounts = allTags.reduce( @@ -148,5 +177,7 @@ export const useStatsViewModel = () => { closeSheet, selectedDate, selectedDateSentences, + continuousReadingDays, + streakProgress, }; }; From ba8b2b350e91bc6ed00a971eee233f5d2d0b00f6 Mon Sep 17 00:00:00 2001 From: Lee SangHyun Date: Wed, 25 Feb 2026 00:18:45 +0900 Subject: [PATCH 05/11] =?UTF-8?q?feat:=20=EC=97=B0=EC=86=8D=20=EB=8F=85?= =?UTF-8?q?=EC=84=9C=20=EC=9E=94=EB=94=94=20=EB=B3=B4=ED=98=B8=EA=B6=8C=20?= =?UTF-8?q?=EC=A7=80=EA=B8=89=20=EB=A1=9C=EC=A7=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(tabs)/stats.tsx | 17 ++++ src/assets/animations/shield.json | 1 + src/components/StreakRewardModal.tsx | 74 ++++++++++++++ src/services/userService.ts | 34 ++++++- src/types/auth.ts | 12 +++ src/view-models/useStatsViewModel.ts | 145 +++++++++++++++++++++++---- 6 files changed, 261 insertions(+), 22 deletions(-) create mode 100644 src/assets/animations/shield.json create mode 100644 src/components/StreakRewardModal.tsx diff --git a/app/(tabs)/stats.tsx b/app/(tabs)/stats.tsx index 538f5ef..708008a 100644 --- a/app/(tabs)/stats.tsx +++ b/app/(tabs)/stats.tsx @@ -1,6 +1,8 @@ import BottomSheet from "@/components/BottomSheet"; +import CongratsModal from "@/components/CongratsModal"; import SentenceList from "@/components/SentenceList"; import StreakProgressBar from "@/components/StreakProgressBar"; // Import the new component +import StreakRewardModal from "@/components/StreakRewardModal"; import { SIZES } from "@/constants/theme"; import { useStatsViewModel } from "@/view-models/useStatsViewModel"; import { Ionicons } from "@expo/vector-icons"; @@ -77,6 +79,11 @@ export default function StatsScreen() { selectedDateSentences, continuousReadingDays, streakProgress, + showCongratsAnimation, + showStreakRewardModal, + streakRewardMessage, + handleCongratsAnimationFinish, + handleStreakRewardModalFinish, } = useStatsViewModel(); const totalTags = tagStats.reduce((sum, stat) => sum + stat.count, 0); @@ -202,6 +209,15 @@ export default function StatsScreen() { + + ); } @@ -310,3 +326,4 @@ const styles = StyleSheet.create({ fontWeight: "bold", }, }); + diff --git a/src/assets/animations/shield.json b/src/assets/animations/shield.json new file mode 100644 index 0000000..73d8867 --- /dev/null +++ b/src/assets/animations/shield.json @@ -0,0 +1 @@ +{"v":"4.8.0","meta":{"g":"LottieFiles AE 3.0.2","a":"","k":"","d":"","tc":""},"fr":60,"ip":0,"op":77,"w":500,"h":500,"nm":"security tick","ddd":0,"assets":[],"layers":[{"ddd":0,"ind":1,"ty":4,"nm":"tick","sr":1,"ks":{"o":{"a":0,"k":100,"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"a":0,"k":[250,250,0],"ix":2},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.094,0.094,0.094],"y":[1,1,1]},"o":{"x":[0.167,0.167,0.167],"y":[0.067,0.067,-0.067]},"t":32,"s":[62,62,100]},{"t":56,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":0,"k":{"i":[[0,0],[0,0],[0,0]],"o":[[0,0],[0,0],[0,0]],"v":[[-52.947,0],[-17.649,35.298],[52.947,-35.298]],"c":false},"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"st","c":{"a":0,"k":[1,1,1,1],"ix":3},"o":{"a":0,"k":100,"ix":4},"w":{"a":0,"k":25.537,"ix":5},"lc":2,"lj":2,"bm":0,"nm":"Stroke 1","mn":"ADBE Vector Graphic - Stroke","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false},{"ty":"tm","s":{"a":0,"k":0,"ix":1},"e":{"a":1,"k":[{"i":{"x":[0.178],"y":[1]},"o":{"x":[0.21],"y":[0]},"t":32,"s":[0]},{"t":62,"s":[100]}],"ix":2},"o":{"a":0,"k":0,"ix":3},"m":1,"ix":2,"nm":"Trim Paths 1","mn":"ADBE Vector Filter - Trim","hd":false}],"ip":0,"op":300,"st":0,"bm":0},{"ddd":0,"ind":2,"ty":4,"nm":"shield","sr":1,"ks":{"o":{"a":1,"k":[{"i":{"x":[0.833],"y":[0.833]},"o":{"x":[0.167],"y":[0.167]},"t":0,"s":[0]},{"t":4,"s":[100]}],"ix":11},"r":{"a":0,"k":0,"ix":10},"p":{"s":true,"x":{"a":1,"k":[{"i":{"x":[0.97],"y":[1]},"o":{"x":[0.03],"y":[0]},"t":0,"s":[250]},{"i":{"x":[0.97],"y":[1]},"o":{"x":[0.03],"y":[0]},"t":20,"s":[250]},{"t":40,"s":[250]}],"ix":3},"y":{"a":1,"k":[{"i":{"x":[0.667],"y":[1]},"o":{"x":[0.174],"y":[0.822]},"t":0,"s":[319]},{"i":{"x":[0.334],"y":[1]},"o":{"x":[0.308],"y":[0]},"t":20,"s":[197]},{"t":40,"s":[250]}],"ix":4}},"a":{"a":0,"k":[0,0,0],"ix":1},"s":{"a":1,"k":[{"i":{"x":[0.667,0.667,0.667],"y":[1,1,1]},"o":{"x":[0.174,0.174,0.174],"y":[0.822,0.822,-0.822]},"t":0,"s":[46,46,100]},{"t":20,"s":[100,100,100]}],"ix":6}},"ao":0,"shapes":[{"ty":"gr","it":[{"ind":0,"ty":"sh","ix":1,"ks":{"a":1,"k":[{"i":{"x":0.094,"y":1},"o":{"x":0.252,"y":0},"t":25,"s":[{"i":[[-29.271,0],[0,-29.271],[29.271,0],[0,29.271]],"o":[[29.271,0],[0,29.271],[-29.271,0],[0,-29.271]],"v":[[0,-53],[53,0],[0,53],[-53,0]],"c":true}]},{"t":56,"s":[{"i":[[-2.504,1.787],[-85.122,-7.093],[120.419,-40.532],[0,158.319]],"o":[[2.504,1.787],[0,158.319],[-120.419,-40.532],[85.122,-7.093]],"v":[[0,-169.229],[141.87,-126.668],[0,169.229],[-141.87,-126.668]],"c":true}]}],"ix":2},"nm":"Path 1","mn":"ADBE Vector Shape - Group","hd":false},{"ty":"fl","c":{"a":0,"k":[0.360784322023,0.800000011921,0.474509805441,1],"ix":4},"o":{"a":0,"k":100,"ix":5},"r":1,"bm":0,"nm":"Fill 1","mn":"ADBE Vector Graphic - Fill","hd":false},{"ty":"tr","p":{"a":0,"k":[0,0],"ix":2},"a":{"a":0,"k":[0,0],"ix":1},"s":{"a":0,"k":[100,100],"ix":3},"r":{"a":0,"k":0,"ix":6},"o":{"a":0,"k":100,"ix":7},"sk":{"a":0,"k":0,"ix":4},"sa":{"a":0,"k":0,"ix":5},"nm":"Transform"}],"nm":"Group 1","np":2,"cix":2,"bm":0,"ix":1,"mn":"ADBE Vector Group","hd":false}],"ip":0,"op":300,"st":0,"bm":0}],"markers":[]} \ No newline at end of file diff --git a/src/components/StreakRewardModal.tsx b/src/components/StreakRewardModal.tsx new file mode 100644 index 0000000..c794cdd --- /dev/null +++ b/src/components/StreakRewardModal.tsx @@ -0,0 +1,74 @@ +import LottieView from "lottie-react-native"; +import React, { useRef, useEffect } from "react"; +import { Modal, StyleSheet, Text, View } from "react-native"; +import { SIZES } from "../constants/theme"; + +interface StreakRewardModalProps { + visible: boolean; + onFinish: () => void; + message?: string; +} + +export default function StreakRewardModal({ + visible, + onFinish, + message = "보상을 획득했습니다!", +}: StreakRewardModalProps) { + const animation = useRef(null); + + useEffect(() => { + let timer: number; + if (visible) { + timer = setTimeout(() => { + onFinish(); + }, 3000); // 3초 후에 모달 닫기 + } + return () => { + clearTimeout(timer); + }; + }, [visible, onFinish]); + + return ( + + + + + {message} + + + + ); +} + +const styles = StyleSheet.create({ + modalBackground: { + flex: 1, + backgroundColor: "rgba(0,0,0,0.5)", + justifyContent: "center", + alignItems: "center", + }, + lottieContainer: { + width: SIZES.width * 0.7, + backgroundColor: "white", + borderRadius: 20, + padding: 20, + alignItems: "center", + elevation: 5, + }, + lottieAnimation: { + width: "100%", + aspectRatio: 1, + }, + successText: { + marginTop: 10, + fontSize: 18, + fontWeight: "bold", + color: "#333", + }, +}); diff --git a/src/services/userService.ts b/src/services/userService.ts index 5f5499a..4ceb273 100644 --- a/src/services/userService.ts +++ b/src/services/userService.ts @@ -1,5 +1,5 @@ import { supabase } from "@/lib/supabase"; -import { AuthCredentials } from "@/types/auth"; +import { AuthCredentials, UserProfile } from "@/types/auth"; import { GoogleSignin } from "@react-native-google-signin/google-signin"; // 로그인 @@ -24,6 +24,38 @@ export const getUser = async () => { return user; }; +// 유저 프로필 정보 불러오기 +export const getUserProfile = async (): Promise => { + const user = await getUser(); + if (!user) return null; + + const { data, error } = await supabase + .from("profiles") + .select("*") + .eq("id", user.id) + .single(); + + if (error) { + console.error("Error fetching user profile:", error); + return null; + } + + return data; +}; + +// 연속 달성 보상 지급 +export const grantStreakReward = async ( + userId: string, + newFreezeCount: number, + today: string, +) => { + const { error } = await supabase + .from("profiles") + .update({ streak_freezes: newFreezeCount, last_reward_date: today }) + .eq("id", userId); + if (error) throw error; +}; + // 로그아웃 export const signOut = async () => { const { error } = await supabase.auth.signOut(); diff --git a/src/types/auth.ts b/src/types/auth.ts index 61df8c6..c2f71fb 100644 --- a/src/types/auth.ts +++ b/src/types/auth.ts @@ -2,3 +2,15 @@ export interface AuthCredentials { email: string; password: string; } + +export interface UserProfile { + id: string; + streak: number; + streak_freezes: number; + last_reward_date: string; + updated_at: string; + username: string; + avatar_url: string; + quote_count: number; + book_count: number; +} diff --git a/src/view-models/useStatsViewModel.ts b/src/view-models/useStatsViewModel.ts index b71e50f..f8e6444 100644 --- a/src/view-models/useStatsViewModel.ts +++ b/src/view-models/useStatsViewModel.ts @@ -1,7 +1,10 @@ import { getAllUserSentences } from "@/services/sentenceService"; +import * as userService from "@/services/userService"; +import { UserProfile } from "@/types/auth"; import { Sentence } from "@/types/sentence"; import { useFocusEffect } from "expo-router"; import { useCallback, useState } from "react"; +import { Alert } from "react-native"; // 색상 생성 유틸리티 const generateColor = (index: number) => { @@ -34,16 +37,63 @@ export const useStatsViewModel = () => { const [tagStats, setTagStats] = useState([]); const [isSheetVisible, setSheetVisible] = useState(false); const [selectedDate, setSelectedDate] = useState(null); - const [ - selectedDateSentences, - setSelectedDateSentences, - ] = useState([]); + const [selectedDateSentences, setSelectedDateSentences] = useState< + Sentence[] + >([]); const [continuousReadingDays, setContinuousReadingDays] = useState(0); const [streakProgress, setStreakProgress] = useState(0); + const [userProfile, setUserProfile] = useState(null); + const [showCongratsAnimation, setShowCongratsAnimation] = useState(false); + const [showStreakRewardModal, setShowStreakRewardModal] = useState(false); + const [streakRewardMessage, setStreakRewardMessage] = useState(""); + + const checkAndGrantStreakReward = useCallback( + async (profile: UserProfile, currentStreak: number) => { + const today = getLocalDateString(new Date()); + const lastRewardDate = profile.last_reward_date + ? getLocalDateString(profile.last_reward_date) + : null; + + if ( + currentStreak > 0 && + currentStreak % 7 === 0 && + lastRewardDate !== today + ) { + try { + const newFreezeCount = (profile.streak_freezes || 0) + 1; + + await userService.grantStreakReward( + profile.id, + newFreezeCount, + today, + ); + + setUserProfile((prev) => + prev + ? { + ...prev, + streak_freezes: newFreezeCount, + last_reward_date: today, + } + : null, + ); + + setStreakRewardMessage( + `7일 연속 기록을 달성하여 잔디 보호권 1개를 획득했어요!\n(현재 보유량: ${newFreezeCount}개)`, + ); + setShowCongratsAnimation(true); + } catch (error) { + console.error("Failed to grant streak reward:", error); + Alert.alert("오류", "보상 지급에 실패했습니다."); + } + } + }, + [], + ); useFocusEffect( useCallback(() => { - const fetchStats = async () => { + const fetchStatsAndProfile = async () => { try { setIsLoading(true); const sentences: Sentence[] = await getAllUserSentences(); @@ -53,7 +103,7 @@ export const useStatsViewModel = () => { // 캘린더 데이터 처리 const countsByDate = sentences.reduce( (acc, sentence) => { - const dateOnly = sentence.create_at.split("T")[0]; + const dateOnly = getLocalDateString(sentence.create_at); acc[dateOnly] = (acc[dateOnly] || 0) + 1; return acc; }, @@ -96,26 +146,48 @@ export const useStatsViewModel = () => { // 연속 독서일 계산 const readingDatesSet = new Set(readingDates); let currentStreak = 0; - const today = new Date(); - let currentDate = new Date( - today.getFullYear(), - today.getMonth(), - today.getDate(), - ); - while (true) { - const dateString = currentDate.toISOString().split("T")[0]; - if (readingDatesSet.has(dateString)) { - currentStreak++; - currentDate.setDate(currentDate.getDate() - 1); + if (readingDatesSet.size === 0) { + setContinuousReadingDays(0); + setStreakProgress(0); + } else { + const today = new Date(); + const todayString = getLocalDateString(today); + const yesterday = new Date(today); + yesterday.setDate(today.getDate() - 1); + const yesterdayString = getLocalDateString(yesterday); + + let anchorDateString = ""; + if (readingDatesSet.has(todayString)) { + anchorDateString = todayString; + } else if (readingDatesSet.has(yesterdayString)) { + anchorDateString = yesterdayString; } else { - break; + currentStreak = 0; + } + + if (anchorDateString) { + let tempStreak = 0; + let checkDate = new Date(anchorDateString); + + while (true) { + const dateStr = getLocalDateString(checkDate); + if (readingDatesSet.has(dateStr)) { + tempStreak++; + checkDate.setDate(checkDate.getDate() - 1); + } else { + break; + } + } + currentStreak = tempStreak; } } setContinuousReadingDays(currentStreak); const displayStreak = - currentStreak > 0 && currentStreak % 7 === 0 ? 7 : currentStreak % 7; + currentStreak > 0 && currentStreak % 7 === 0 + ? 7 + : currentStreak % 7; setStreakProgress(displayStreak / 7); // 태그 통계 처리 @@ -139,6 +211,13 @@ export const useStatsViewModel = () => { .sort((a, b) => b.count - a.count); // 많이 사용된 순으로 정렬 setTagStats(stats); + + // 사용자 프로필 가져오기 및 보상 확인 + const profile = await userService.getUserProfile(); + if (profile) { + setUserProfile(profile); + checkAndGrantStreakReward(profile, currentStreak); // 프로필과 계산된 연속 독서일 전달 + } } catch (error) { console.error("통계 데이터 불러오기 실패:", error); } finally { @@ -146,10 +225,19 @@ export const useStatsViewModel = () => { } }; - fetchStats(); - }, []), + fetchStatsAndProfile(); + }, [checkAndGrantStreakReward]), ); + // 로컬(한국) 기준 YYYY-MM-DD 포맷을 뽑아주는 헬퍼 함수 + const getLocalDateString = (dateInput: string | Date) => { + const date = new Date(dateInput); + const year = date.getFullYear(); + const month = String(date.getMonth() + 1).padStart(2, "0"); + const day = String(date.getDate()).padStart(2, "0"); + return `${year}-${month}-${day}`; + }; + const onDayPress = (day: any) => { const dateStr = day.dateString; const sentencesForDate = allSentences.filter( @@ -167,6 +255,15 @@ export const useStatsViewModel = () => { setSheetVisible(false); }; + const handleCongratsAnimationFinish = () => { + setShowCongratsAnimation(false); + setShowStreakRewardModal(true); + }; + + const handleStreakRewardModalFinish = () => { + setShowStreakRewardModal(false); + }; + return { isLoading, markedDates, @@ -179,5 +276,11 @@ export const useStatsViewModel = () => { selectedDateSentences, continuousReadingDays, streakProgress, + userProfile, + showCongratsAnimation, + showStreakRewardModal, + streakRewardMessage, + handleCongratsAnimationFinish, + handleStreakRewardModalFinish, }; }; From afe519f9f79d1e61169b37fcdd2696b03ac93eed Mon Sep 17 00:00:00 2001 From: Lee SangHyun Date: Thu, 26 Feb 2026 20:11:45 +0900 Subject: [PATCH 06/11] =?UTF-8?q?feat:=207=EC=9D=BC=20=EC=97=B0=EC=86=8D?= =?UTF-8?q?=20=EB=8F=85=EC=84=9C=20=EC=8B=9C=20=EB=B3=B4=ED=98=B8=EA=B6=8C?= =?UTF-8?q?=201=EA=B0=9C=20=EC=A7=80=EA=B8=89=20=EB=A1=9C=EC=A7=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app/(tabs)/stats.tsx | 85 +++++++++++++++------------- src/components/StreakProgressBar.tsx | 47 ++++++++++----- src/view-models/useStatsViewModel.ts | 2 +- 3 files changed, 82 insertions(+), 52 deletions(-) diff --git a/app/(tabs)/stats.tsx b/app/(tabs)/stats.tsx index 708008a..a21edd4 100644 --- a/app/(tabs)/stats.tsx +++ b/app/(tabs)/stats.tsx @@ -84,6 +84,7 @@ export default function StatsScreen() { streakRewardMessage, handleCongratsAnimationFinish, handleStreakRewardModalFinish, + userProfile, } = useStatsViewModel(); const totalTags = tagStats.reduce((sum, stat) => sum + stat.count, 0); @@ -124,10 +125,14 @@ export default function StatsScreen() { if (item === "streak") { return ( - + + 연속 독서 챌린지 + + ); } @@ -135,39 +140,41 @@ export default function StatsScreen() { return ( 태그 분석 - - 수집한 문장: {totalSentencesCount}개 - {tagStats.length > 0 ? ( - - - {tagStats.map((stat) => ( - - - {stat.name} - - {((stat.count / totalTags) * 100).toFixed(1)}% - - - ))} + + + + {tagStats.map((stat) => ( + + + {stat.name} + + {((stat.count / totalTags) * 100).toFixed(1)}% + + + ))} + + + 수집한 문장: {totalSentencesCount}개 + ) : ( @@ -267,11 +274,10 @@ const styles = StyleSheet.create({ totalSentencesText: { fontSize: SIZES.body4, color: "#888", - marginBottom: SIZES.padding, + textAlign: "center", + marginTop: SIZES.padding, }, chartWrapper: { - flexDirection: "row", - alignItems: "center", backgroundColor: "#fff", borderRadius: SIZES.radius, padding: SIZES.padding, @@ -280,6 +286,10 @@ const styles = StyleSheet.create({ shadowOpacity: 0.05, shadowRadius: 4, elevation: 2, + }, + chartAndLegend: { + flexDirection: "row", + alignItems: "center", justifyContent: "space-between", }, legendContainer: { @@ -326,4 +336,3 @@ const styles = StyleSheet.create({ fontWeight: "bold", }, }); - diff --git a/src/components/StreakProgressBar.tsx b/src/components/StreakProgressBar.tsx index 6b57fcc..3ea6598 100644 --- a/src/components/StreakProgressBar.tsx +++ b/src/components/StreakProgressBar.tsx @@ -1,4 +1,5 @@ import { SIZES } from "@/constants/theme"; +import { Ionicons } from "@expo/vector-icons"; import LottieView from "lottie-react-native"; import React from "react"; import { StyleSheet, Text, View } from "react-native"; @@ -6,19 +7,27 @@ import { StyleSheet, Text, View } from "react-native"; interface StreakProgressBarProps { continuousReadingDays: number; streakProgress: number; + streakFreezes: number; } const StreakProgressBar: React.FC = ({ continuousReadingDays, streakProgress, + streakFreezes, }) => { return ( - 연속 독서 현황 - + 연속 독서 {continuousReadingDays}일째 + + + 보호권: + {streakFreezes} + + + {(streakProgress * 100).toFixed(0)}% @@ -51,8 +60,6 @@ const StreakProgressBar: React.FC = ({ const styles = StyleSheet.create({ container: { - marginTop: SIZES.padding * 2, - marginHorizontal: SIZES.padding, padding: SIZES.padding, backgroundColor: "#fff", borderRadius: SIZES.radius, @@ -62,12 +69,7 @@ const styles = StyleSheet.create({ shadowRadius: 4, elevation: 2, }, - title: { - fontSize: SIZES.h3, - fontWeight: "bold", - marginBottom: SIZES.padding, - }, - streakTextContainer: { + topRow: { flexDirection: "row", justifyContent: "space-between", alignItems: "center", @@ -77,6 +79,25 @@ const styles = StyleSheet.create({ fontSize: SIZES.body3, fontWeight: "500", }, + streakFreezeContainer: { + flexDirection: "row", + alignItems: "center", + }, + streakFreezeLabel: { + fontSize: SIZES.body4, + color: "#888", + marginLeft: 4, + marginRight: 4, + }, + streakFreezeText: { + fontSize: SIZES.body4, + fontWeight: "bold", + color: "#4CAF50", + }, + percentageRow: { + alignItems: "flex-end", + marginBottom: SIZES.base * 2, + }, progressPercentage: { fontSize: SIZES.body4, color: "#888", @@ -98,10 +119,10 @@ const styles = StyleSheet.create({ borderRadius: 8, }, flameAnimationAbsolute: { - width: 50, - height: 50, + width: 60, + height: 60, position: "absolute", - transform: [{ translateX: -24 }, { translateY: -20 }], + transform: [{ translateX: -27 }, { translateY: -26 }], zIndex: 1, }, description: { diff --git a/src/view-models/useStatsViewModel.ts b/src/view-models/useStatsViewModel.ts index f8e6444..bfd6606 100644 --- a/src/view-models/useStatsViewModel.ts +++ b/src/view-models/useStatsViewModel.ts @@ -79,7 +79,7 @@ export const useStatsViewModel = () => { ); setStreakRewardMessage( - `7일 연속 기록을 달성하여 잔디 보호권 1개를 획득했어요!\n(현재 보유량: ${newFreezeCount}개)`, + `7일 연속 기록을 달성하여 보호권 1개를 획득했어요!\n(현재 보유량: ${newFreezeCount}개)`, ); setShowCongratsAnimation(true); } catch (error) { From 0d262837380345ce1faa90d716b063dc90a6b9af Mon Sep 17 00:00:00 2001 From: Lee SangHyun Date: Fri, 27 Feb 2026 11:29:52 +0900 Subject: [PATCH 07/11] =?UTF-8?q?feat:=20DB=20=EC=BB=AC=EB=9F=BC=20?= =?UTF-8?q?=EB=B3=80=EA=B2=BD=EC=9C=BC=EB=A1=9C=20=EC=97=B0=EC=86=8D=20?= =?UTF-8?q?=EB=8F=85=EC=84=9C=20=EC=9D=BC=EC=88=98=20=EA=B3=84=EC=82=B0=20?= =?UTF-8?q?=EB=A1=9C=EC=A7=81=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/userService.ts | 80 +++++++++++++++++ src/types/auth.ts | 1 + src/view-models/useSelectBookViewModel.ts | 12 +++ src/view-models/useStatsViewModel.ts | 101 +++++++++------------- 4 files changed, 136 insertions(+), 58 deletions(-) diff --git a/src/services/userService.ts b/src/services/userService.ts index 4ceb273..1b02d86 100644 --- a/src/services/userService.ts +++ b/src/services/userService.ts @@ -43,6 +43,86 @@ export const getUserProfile = async (): Promise => { return data; }; +const getDaysBetween = (dateString1: string, dateString2: string) => { + const d1 = new Date(dateString1); + const d2 = new Date(dateString2); + d1.setHours(0, 0, 0, 0); + d2.setHours(0, 0, 0, 0); + const diffTime = Math.abs(d2.getTime() - d1.getTime()); + return Math.round(diffTime / (1000 * 60 * 60 * 24)); +}; + +// 로컬(한국) 기준 YYYY-MM-DD 포맷을 뽑아주는 헬퍼 함수 +const getLocalDateString = (dateInput: Date | string) => { + const date = new Date(dateInput); + const year = date.getFullYear(); + const month = String(date.getMonth() + 1).padStart(2, "0"); + const day = String(date.getDate()).padStart(2, "0"); + return `${year}-${month}-${day}`; +}; + +// 연속 기록 업데이트 (징검다리 로직) +export const updateUserStreak = async (userId: string) => { + const { data: profile, error: profileError } = await supabase + .from("profiles") + .select("streak, last_read_date, streak_freezes") + .eq("id", userId) + .single(); + + if (profileError || !profile) { + throw new Error("사용자 프로필을 찾을 수 없습니다."); + } + + const todayString = getLocalDateString(new Date()); + + const { streak, last_read_date, streak_freezes } = profile; + + if (last_read_date === todayString) { + // 이미 오늘 기록했으면 아무것도 안함 + return; + } + + let newStreak = streak || 0; + let newFreezes = streak_freezes || 0; + const newLastReadDate = todayString; + + if (last_read_date) { + const daysDifference = getDaysBetween(last_read_date, todayString); + + if (daysDifference === 1) { + // 연속 달성 + newStreak += 1; + } else if (daysDifference > 1) { + // 연속이 끊김 + const freezesNeeded = daysDifference - 1; + if (streak_freezes >= freezesNeeded) { + // 보호권으로 연속 유지 + newFreezes -= freezesNeeded; + newStreak += 1; + } else { + // 보호권 부족, 연속 기록 리셋 + newStreak = 1; // 오늘부터 다시 1일 + } + } + } else { + // 첫 기록 + newStreak = 1; + } + + const { error: updateError } = await supabase + .from("profiles") + .update({ + streak: newStreak, + last_read_date: newLastReadDate, + streak_freezes: newFreezes, + }) + .eq("id", userId); + + if (updateError) { + throw new Error("연속 기록 업데이트에 실패했습니다."); + } +}; + // 연속 달성 보상 지급 export const grantStreakReward = async ( userId: string, diff --git a/src/types/auth.ts b/src/types/auth.ts index c2f71fb..986fee0 100644 --- a/src/types/auth.ts +++ b/src/types/auth.ts @@ -8,6 +8,7 @@ export interface UserProfile { streak: number; streak_freezes: number; last_reward_date: string; + last_read_date: string; updated_at: string; username: string; avatar_url: string; diff --git a/src/view-models/useSelectBookViewModel.ts b/src/view-models/useSelectBookViewModel.ts index cad9e6a..3a7e8e1 100644 --- a/src/view-models/useSelectBookViewModel.ts +++ b/src/view-models/useSelectBookViewModel.ts @@ -1,5 +1,6 @@ import * as bookService from "@/services/bookService"; import * as sentenceService from "@/services/sentenceService"; +import * as userService from "@/services/userService"; import { Book } from "@/types/book"; import { StackActions } from "@react-navigation/native"; import { @@ -134,6 +135,17 @@ export const useSelectBookViewModel = () => { tags: tags, }); setShowSuccess(true); + + // 문장 저장 성공 후 연속 기록 업데이트 + try { + const user = await userService.getUser(); + if (user) { + await userService.updateUserStreak(user.id); + } + } catch (streakError) { + console.error("Failed to update streak:", streakError); + // 사용자에게는 오류를 표시하지 않음 + } } catch (e: any) { console.error(e); Alert.alert("저장 실패", e.message); diff --git a/src/view-models/useStatsViewModel.ts b/src/view-models/useStatsViewModel.ts index bfd6606..71dcbb2 100644 --- a/src/view-models/useStatsViewModel.ts +++ b/src/view-models/useStatsViewModel.ts @@ -47,9 +47,27 @@ export const useStatsViewModel = () => { const [showStreakRewardModal, setShowStreakRewardModal] = useState(false); const [streakRewardMessage, setStreakRewardMessage] = useState(""); + // 로컬(한국) 기준 YYYY-MM-DD 포맷을 뽑아주는 헬퍼 함수 + const getLocalDateString = (dateInput: string | Date) => { + const date = new Date(dateInput); + const year = date.getFullYear(); + const month = String(date.getMonth() + 1).padStart(2, "0"); + const day = String(date.getDate()).padStart(2, "0"); + return `${year}-${month}-${day}`; + }; + const checkAndGrantStreakReward = useCallback( async (profile: UserProfile, currentStreak: number) => { const today = getLocalDateString(new Date()); + const lastReadDate = profile.last_read_date + ? getLocalDateString(profile.last_read_date) + : null; + + // 보상은 오늘 독서 활동으로 달성했을 때만 지급 + if (lastReadDate !== today) { + return; + } + const lastRewardDate = profile.last_reward_date ? getLocalDateString(profile.last_reward_date) : null; @@ -143,53 +161,6 @@ export const useStatsViewModel = () => { }); setMarkedDates(marks); - // 연속 독서일 계산 - const readingDatesSet = new Set(readingDates); - let currentStreak = 0; - - if (readingDatesSet.size === 0) { - setContinuousReadingDays(0); - setStreakProgress(0); - } else { - const today = new Date(); - const todayString = getLocalDateString(today); - const yesterday = new Date(today); - yesterday.setDate(today.getDate() - 1); - const yesterdayString = getLocalDateString(yesterday); - - let anchorDateString = ""; - if (readingDatesSet.has(todayString)) { - anchorDateString = todayString; - } else if (readingDatesSet.has(yesterdayString)) { - anchorDateString = yesterdayString; - } else { - currentStreak = 0; - } - - if (anchorDateString) { - let tempStreak = 0; - let checkDate = new Date(anchorDateString); - - while (true) { - const dateStr = getLocalDateString(checkDate); - if (readingDatesSet.has(dateStr)) { - tempStreak++; - checkDate.setDate(checkDate.getDate() - 1); - } else { - break; - } - } - currentStreak = tempStreak; - } - } - setContinuousReadingDays(currentStreak); - - const displayStreak = - currentStreak > 0 && currentStreak % 7 === 0 - ? 7 - : currentStreak % 7; - setStreakProgress(displayStreak / 7); - // 태그 통계 처리 const allTags = sentences.flatMap((s) => s.tags || []); const tagCounts = allTags.reduce( @@ -212,11 +183,34 @@ export const useStatsViewModel = () => { setTagStats(stats); - // 사용자 프로필 가져오기 및 보상 확인 + // 사용자 프로필 가져오기 및 연속 기록 처리 const profile = await userService.getUserProfile(); if (profile) { setUserProfile(profile); - checkAndGrantStreakReward(profile, currentStreak); // 프로필과 계산된 연속 독서일 전달 + + const currentStreak = profile.streak || 0; + setContinuousReadingDays(currentStreak); + + const today = getLocalDateString(new Date()); + const lastReadDate = profile.last_read_date + ? getLocalDateString(profile.last_read_date) + : null; + const hasReadToday = lastReadDate === today; + + let displayStreakValue = currentStreak; + + // 7일 주기를 채웠고, 오늘 아직 읽지 않았다면 게이지를 0으로 표시 + if (currentStreak > 0 && currentStreak % 7 === 0 && !hasReadToday) { + displayStreakValue = 0; + } + + const displayStreak = + displayStreakValue > 0 && displayStreakValue % 7 === 0 + ? 7 + : displayStreakValue % 7; + setStreakProgress(displayStreak / 7); + + checkAndGrantStreakReward(profile, currentStreak); // DB의 연속 기록으로 보상 확인 } } catch (error) { console.error("통계 데이터 불러오기 실패:", error); @@ -229,15 +223,6 @@ export const useStatsViewModel = () => { }, [checkAndGrantStreakReward]), ); - // 로컬(한국) 기준 YYYY-MM-DD 포맷을 뽑아주는 헬퍼 함수 - const getLocalDateString = (dateInput: string | Date) => { - const date = new Date(dateInput); - const year = date.getFullYear(); - const month = String(date.getMonth() + 1).padStart(2, "0"); - const day = String(date.getDate()).padStart(2, "0"); - return `${year}-${month}-${day}`; - }; - const onDayPress = (day: any) => { const dateStr = day.dateString; const sentencesForDate = allSentences.filter( From d3b299bf080a5c604085be2f2a70cb7466772e93 Mon Sep 17 00:00:00 2001 From: Lee SangHyun Date: Fri, 27 Feb 2026 13:13:38 +0900 Subject: [PATCH 08/11] =?UTF-8?q?feat:=20=EB=B3=B4=ED=98=B8=EA=B6=8C=20?= =?UTF-8?q?=EC=9E=91=EB=8F=99=20=EB=A1=9C=EC=A7=81?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/services/sentenceService.ts | 10 +- src/services/userService.ts | 85 ++++++++++++++++- src/types/auth.ts | 7 +- src/view-models/useStatsViewModel.ts | 137 +++++++++++++++++++++------ 4 files changed, 201 insertions(+), 38 deletions(-) diff --git a/src/services/sentenceService.ts b/src/services/sentenceService.ts index 63b6f8f..da01a99 100644 --- a/src/services/sentenceService.ts +++ b/src/services/sentenceService.ts @@ -1,7 +1,8 @@ import { supabase } from "../lib/supabase"; import { Sentence } from "../types/sentence"; +import { getUser, recalculateStreakAndLastReadDate } from "./userService"; -// 모든 문장 불러오기 (현재 사용자 기준) +// 모든 문장 불러오기 export const getAllUserSentences = async (): Promise => { const { data: { user }, @@ -10,7 +11,7 @@ export const getAllUserSentences = async (): Promise => { const { data, error } = await supabase .from("sentences") - .select("*") // 히트맵 계산을 위해 id와 생성 날짜만 가져옵니다. + .select("*") .eq("user_id", user.id); if (error) throw error; @@ -87,6 +88,11 @@ export const updateSentence = async ( // 문장 삭제 export const deleteSentence = async (id: number) => { + const user = await getUser(); + if (!user) throw new Error("User not authenticated"); + const { error } = await supabase.from("sentences").delete().eq("id", id); if (error) throw error; + + await recalculateStreakAndLastReadDate(user.id); }; diff --git a/src/services/userService.ts b/src/services/userService.ts index 1b02d86..d71dd7f 100644 --- a/src/services/userService.ts +++ b/src/services/userService.ts @@ -31,7 +31,9 @@ export const getUserProfile = async (): Promise => { const { data, error } = await supabase .from("profiles") - .select("*") + .select( + "id, nickname, streak_freezes, created_at, last_reward_date, last_read_date, streak, frozen_dates, updated_at", // Updated to match user's schema + ) .eq("id", user.id) .single(); @@ -65,7 +67,7 @@ const getLocalDateString = (dateInput: Date | string) => { export const updateUserStreak = async (userId: string) => { const { data: profile, error: profileError } = await supabase .from("profiles") - .select("streak, last_read_date, streak_freezes") + .select("streak, last_read_date, streak_freezes, frozen_dates") // Select frozen_dates .eq("id", userId) .single(); @@ -75,7 +77,7 @@ export const updateUserStreak = async (userId: string) => { const todayString = getLocalDateString(new Date()); - const { streak, last_read_date, streak_freezes } = profile; + const { streak, last_read_date, streak_freezes, frozen_dates } = profile; // Destructure frozen_dates if (last_read_date === todayString) { // 이미 오늘 기록했으면 아무것도 안함 @@ -85,6 +87,7 @@ export const updateUserStreak = async (userId: string) => { let newStreak = streak || 0; let newFreezes = streak_freezes || 0; const newLastReadDate = todayString; + let newFrozenDates = frozen_dates || []; if (last_read_date) { const daysDifference = getDaysBetween(last_read_date, todayString); @@ -99,9 +102,18 @@ export const updateUserStreak = async (userId: string) => { // 보호권으로 연속 유지 newFreezes -= freezesNeeded; newStreak += 1; + + let currentFrozenDate = new Date(last_read_date); + currentFrozenDate.setDate(currentFrozenDate.getDate() + 1); + + for (let i = 0; i < freezesNeeded; i++) { + newFrozenDates.push(getLocalDateString(currentFrozenDate)); + currentFrozenDate.setDate(currentFrozenDate.getDate() + 1); + } } else { // 보호권 부족, 연속 기록 리셋 newStreak = 1; // 오늘부터 다시 1일 + newFrozenDates = []; } } } else { @@ -115,6 +127,7 @@ export const updateUserStreak = async (userId: string) => { streak: newStreak, last_read_date: newLastReadDate, streak_freezes: newFreezes, + frozen_dates: newFrozenDates, }) .eq("id", userId); @@ -161,3 +174,69 @@ export const deleteAccount = async () => { await signOut(); }; + +const getUserReadingDates = async (userId: string): Promise => { + const { data: sentences, error } = await supabase + .from("sentences") + .select("create_at") + .eq("user_id", userId) + .order("create_at", { ascending: false }); + + if (error) { + console.error( + "Error fetching user sentences for streak recalculation:", + error, + ); + return []; + } + + const uniqueDates = new Set(); + sentences.forEach((s) => { + uniqueDates.add(getLocalDateString(s.create_at)); + }); + + return Array.from(uniqueDates).sort( + (a, b) => new Date(b).getTime() - new Date(a).getTime(), + ); +}; + +// 연속 기록 및 마지막 독서일 재계산 +export const recalculateStreakAndLastReadDate = async (userId: string) => { + const readingDates = await getUserReadingDates(userId); + + let newLastReadDate: string | null = null; + let newStreak = 0; + + if (readingDates.length > 0) { + newLastReadDate = readingDates[0]; + + let currentCheckDate = new Date(newLastReadDate); + currentCheckDate.setHours(0, 0, 0, 0); + + let streakCount = 0; + const readingDatesSet = new Set(readingDates); + + while (true) { + const dateStr = getLocalDateString(currentCheckDate); + if (readingDatesSet.has(dateStr)) { + streakCount++; + currentCheckDate.setDate(currentCheckDate.getDate() - 1); + } else { + break; + } + } + newStreak = streakCount; + } + + const { error: updateError } = await supabase + .from("profiles") + .update({ + streak: newStreak, + last_read_date: newLastReadDate, + }) + .eq("id", userId); + + if (updateError) { + throw new Error("연속 기록 및 마지막 독서일 재계산에 실패했습니다."); + } +}; diff --git a/src/types/auth.ts b/src/types/auth.ts index 986fee0..821c9a6 100644 --- a/src/types/auth.ts +++ b/src/types/auth.ts @@ -5,13 +5,12 @@ export interface AuthCredentials { export interface UserProfile { id: string; + nickname: string; streak: number; streak_freezes: number; + created_at: string; last_reward_date: string; last_read_date: string; updated_at: string; - username: string; - avatar_url: string; - quote_count: number; - book_count: number; + frozen_dates: string[]; } diff --git a/src/view-models/useStatsViewModel.ts b/src/view-models/useStatsViewModel.ts index 71dcbb2..6297675 100644 --- a/src/view-models/useStatsViewModel.ts +++ b/src/view-models/useStatsViewModel.ts @@ -48,13 +48,54 @@ export const useStatsViewModel = () => { const [streakRewardMessage, setStreakRewardMessage] = useState(""); // 로컬(한국) 기준 YYYY-MM-DD 포맷을 뽑아주는 헬퍼 함수 - const getLocalDateString = (dateInput: string | Date) => { + const getLocalDateString = useCallback((dateInput: string | Date) => { const date = new Date(dateInput); const year = date.getFullYear(); const month = String(date.getMonth() + 1).padStart(2, "0"); const day = String(date.getDate()).padStart(2, "0"); return `${year}-${month}-${day}`; - }; + }, []); + + const calculateEffectiveStreak = useCallback( + ( + lastReadDate: string | null, + frozenDates: Set, + today: string, + readDates: Set, + ): number => { + if (!lastReadDate && frozenDates.size === 0 && !readDates.has(today)) { + return 0; + } + + let streak = 0; + let currentDate = new Date(today); + + if (!readDates.has(today) && !frozenDates.has(today)) { + currentDate.setDate(currentDate.getDate() - 1); + } + + const earliestActivityDate = new Date( + Math.min( + ...(lastReadDate ? [new Date(lastReadDate).getTime()] : []), + ...Array.from(frozenDates).map((d) => new Date(d).getTime()), + ...Array.from(readDates).map((d) => new Date(d).getTime()), + ), + ); + + while (currentDate >= earliestActivityDate) { + const dateString = getLocalDateString(currentDate); + + if (readDates.has(dateString) || frozenDates.has(dateString)) { + streak++; + currentDate.setDate(currentDate.getDate() - 1); + } else { + break; + } + } + return streak; + }, + [getLocalDateString], + ); const checkAndGrantStreakReward = useCallback( async (profile: UserProfile, currentStreak: number) => { @@ -106,7 +147,7 @@ export const useStatsViewModel = () => { } } }, - [], + [getLocalDateString], ); useFocusEffect( @@ -118,7 +159,6 @@ export const useStatsViewModel = () => { setAllSentences(sentences); setTotalSentencesCount(sentences.length); - // 캘린더 데이터 처리 const countsByDate = sentences.reduce( (acc, sentence) => { const dateOnly = getLocalDateString(sentence.create_at); @@ -128,7 +168,32 @@ export const useStatsViewModel = () => { {} as Record, ); + const profile = await userService.getUserProfile(); + if (!profile) { + setIsLoading(false); + return; + } + setUserProfile(profile); + + const frozenDatesSet = new Set(profile.frozen_dates || []); + const marks: any = {}; + + frozenDatesSet.forEach((date) => { + marks[date] = { + customStyles: { + container: { + backgroundColor: "#ADD8E6", + borderRadius: 4, + }, + text: { + color: "black", + fontWeight: "bold", + }, + }, + }; + }); + const readingDates = Object.keys(countsByDate); readingDates.forEach((date) => { const count = countsByDate[date]; @@ -146,15 +211,19 @@ export const useStatsViewModel = () => { textColor = "black"; } + const existingMark = marks[date] || {}; marks[date] = { + ...existingMark, customStyles: { + ...(existingMark.customStyles || {}), container: { + ...(existingMark.customStyles?.container || {}), backgroundColor: bgColor, - borderRadius: 6, + borderRadius: 4, }, text: { + ...(existingMark.customStyles?.text || {}), color: textColor, - fontWeight: "bold", }, }, }; @@ -184,34 +253,40 @@ export const useStatsViewModel = () => { setTagStats(stats); // 사용자 프로필 가져오기 및 연속 기록 처리 - const profile = await userService.getUserProfile(); - if (profile) { - setUserProfile(profile); - const currentStreak = profile.streak || 0; - setContinuousReadingDays(currentStreak); + const today = getLocalDateString(new Date()); + const lastReadDate = profile.last_read_date + ? getLocalDateString(profile.last_read_date) + : null; + const hasReadToday = lastReadDate === today; - const today = getLocalDateString(new Date()); - const lastReadDate = profile.last_read_date - ? getLocalDateString(profile.last_read_date) - : null; - const hasReadToday = lastReadDate === today; + const readDatesSet = new Set(Object.keys(countsByDate)); + const effectiveStreak = calculateEffectiveStreak( + lastReadDate, + frozenDatesSet, + today, + readDatesSet, + ); + setContinuousReadingDays(effectiveStreak); - let displayStreakValue = currentStreak; + let displayStreakValue = effectiveStreak; - // 7일 주기를 채웠고, 오늘 아직 읽지 않았다면 게이지를 0으로 표시 - if (currentStreak > 0 && currentStreak % 7 === 0 && !hasReadToday) { - displayStreakValue = 0; - } + // 7일 주기를 채웠고, 오늘 아직 읽지 않았다면 게이지를 0으로 표시 + if ( + effectiveStreak > 0 && + effectiveStreak % 7 === 0 && + !hasReadToday + ) { + displayStreakValue = 0; + } - const displayStreak = - displayStreakValue > 0 && displayStreakValue % 7 === 0 - ? 7 - : displayStreakValue % 7; - setStreakProgress(displayStreak / 7); + const displayStreak = + displayStreakValue > 0 && displayStreakValue % 7 === 0 + ? 7 + : displayStreakValue % 7; + setStreakProgress(displayStreak / 7); - checkAndGrantStreakReward(profile, currentStreak); // DB의 연속 기록으로 보상 확인 - } + checkAndGrantStreakReward(profile, effectiveStreak); } catch (error) { console.error("통계 데이터 불러오기 실패:", error); } finally { @@ -220,7 +295,11 @@ export const useStatsViewModel = () => { }; fetchStatsAndProfile(); - }, [checkAndGrantStreakReward]), + }, [ + checkAndGrantStreakReward, + calculateEffectiveStreak, + getLocalDateString, + ]), ); const onDayPress = (day: any) => { From 6f8950da79fbd5a89016ce779fced3f2dd2bd8b2 Mon Sep 17 00:00:00 2001 From: Lee SangHyun Date: Fri, 27 Feb 2026 13:49:20 +0900 Subject: [PATCH 09/11] =?UTF-8?q?chore:=20=EB=B2=84=EC=A0=84=20=EC=A0=95?= =?UTF-8?q?=EB=B3=B4=20=EC=88=98=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/view-models/useAuthViewModel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view-models/useAuthViewModel.ts b/src/view-models/useAuthViewModel.ts index 1181763..32f68a9 100644 --- a/src/view-models/useAuthViewModel.ts +++ b/src/view-models/useAuthViewModel.ts @@ -49,7 +49,7 @@ export const useAuthViewModel = () => { "https://www.notion.so/PagePick-3040ea7070308053a72cdeea98896833?source=copy_link"; const termsOfServiceUrl = "https://www.notion.so/PagePick-3040ea70703080718bdee52005e2ef1d?source=copy_link"; - const appVersion = "1.0.25"; + const appVersion = "1.1.0"; const openUrl = async (url: string, fallbackUrl?: string) => { try { From c892d6f413ddbc6b9a8bed90ea1097298b449cb1 Mon Sep 17 00:00:00 2001 From: Lee SangHyun Date: Wed, 4 Mar 2026 14:04:25 +0900 Subject: [PATCH 10/11] =?UTF-8?q?feat:=20=EC=97=B0=EC=86=8D=20=EB=8F=85?= =?UTF-8?q?=EC=84=9C=20=EC=B5=9C=EA=B3=A0=20=EA=B8=B0=EB=A1=9D=20=EC=B6=94?= =?UTF-8?q?=EA=B0=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- app.json | 6 +- app/(tabs)/stats.tsx | 1 + src/components/StreakProgressBar.tsx | 11 +++- src/services/userService.ts | 82 ++++++++++++++++++++++------ src/types/auth.ts | 1 + 5 files changed, 81 insertions(+), 20 deletions(-) diff --git a/app.json b/app.json index 5561e04..42721ed 100644 --- a/app.json +++ b/app.json @@ -1,8 +1,8 @@ { "expo": { - "name": "PagePick", + "name": "페이지픽", "slug": "PagePick", - "version": "1.0.23", + "version": "1.1.0", "orientation": "portrait", "icon": "./src/assets/images/pagepick-logo.png", "scheme": "pagepick", @@ -24,7 +24,7 @@ "edgeToEdgeEnabled": true, "predictiveBackGestureEnabled": false, "package": "com.sanghyun01.PagePick", - "versionCode": 23, + "versionCode": 26, "permissions": ["CAMERA"], "intentFilters": [ { diff --git a/app/(tabs)/stats.tsx b/app/(tabs)/stats.tsx index a21edd4..7bb5e33 100644 --- a/app/(tabs)/stats.tsx +++ b/app/(tabs)/stats.tsx @@ -131,6 +131,7 @@ export default function StatsScreen() { continuousReadingDays={continuousReadingDays} streakProgress={streakProgress} streakFreezes={userProfile?.streak_freezes || 0} + maxStreak={userProfile?.max_streak || 0} /> ); diff --git a/src/components/StreakProgressBar.tsx b/src/components/StreakProgressBar.tsx index 3ea6598..db640ce 100644 --- a/src/components/StreakProgressBar.tsx +++ b/src/components/StreakProgressBar.tsx @@ -8,18 +8,20 @@ interface StreakProgressBarProps { continuousReadingDays: number; streakProgress: number; streakFreezes: number; + maxStreak: number; } const StreakProgressBar: React.FC = ({ continuousReadingDays, streakProgress, streakFreezes, + maxStreak, }) => { return ( - 연속 독서 {continuousReadingDays}일째 + 현재 연속 {continuousReadingDays}일째 @@ -28,6 +30,7 @@ const StreakProgressBar: React.FC = ({ + 🏆 최고 기록 {maxStreak}일 {(streakProgress * 100).toFixed(0)}% @@ -95,9 +98,15 @@ const styles = StyleSheet.create({ color: "#4CAF50", }, percentageRow: { + flexDirection: "row", + justifyContent: "space-between", alignItems: "flex-end", marginBottom: SIZES.base * 2, }, + currentStreakText: { + fontSize: SIZES.body4, + color: "#888", + }, progressPercentage: { fontSize: SIZES.body4, color: "#888", diff --git a/src/services/userService.ts b/src/services/userService.ts index d71dd7f..1f9340d 100644 --- a/src/services/userService.ts +++ b/src/services/userService.ts @@ -32,7 +32,7 @@ export const getUserProfile = async (): Promise => { const { data, error } = await supabase .from("profiles") .select( - "id, nickname, streak_freezes, created_at, last_reward_date, last_read_date, streak, frozen_dates, updated_at", // Updated to match user's schema + "id, nickname, streak_freezes, created_at, last_reward_date, last_read_date, streak, frozen_dates, updated_at, max_streak", ) .eq("id", user.id) .single(); @@ -63,11 +63,33 @@ const getLocalDateString = (dateInput: Date | string) => { return `${year}-${month}-${day}`; }; +// 특정 날짜까지의 연속 기록을 계산하는 헬퍼 함수 +const calculateStreakUpTo = ( + endDate: string, + readingDatesSet: Set, + frozenDatesSet: Set, +): number => { + let streakCount = 0; + let currentCheckDate = new Date(endDate); + currentCheckDate.setHours(0, 0, 0, 0); + + while (true) { + const dateStr = getLocalDateString(currentCheckDate); + if (readingDatesSet.has(dateStr) || frozenDatesSet.has(dateStr)) { + streakCount++; + currentCheckDate.setDate(currentCheckDate.getDate() - 1); + } else { + break; + } + } + return streakCount; +}; + // 연속 기록 업데이트 (징검다리 로직) export const updateUserStreak = async (userId: string) => { const { data: profile, error: profileError } = await supabase .from("profiles") - .select("streak, last_read_date, streak_freezes, frozen_dates") // Select frozen_dates + .select("streak, max_streak, last_read_date, streak_freezes, frozen_dates") .eq("id", userId) .single(); @@ -76,18 +98,26 @@ export const updateUserStreak = async (userId: string) => { } const todayString = getLocalDateString(new Date()); - - const { streak, last_read_date, streak_freezes, frozen_dates } = profile; // Destructure frozen_dates + const { max_streak, last_read_date, streak_freezes, frozen_dates } = profile; if (last_read_date === todayString) { - // 이미 오늘 기록했으면 아무것도 안함 return; } - let newStreak = streak || 0; + // 저장된 'streak'을 신뢰하는 대신 실제 데이터를 기반으로 연속 기록을 다시 계산 + const allReadingDates = await getUserReadingDates(userId); + const readingDatesSet = new Set(allReadingDates); + const typedFrozenDates = (frozen_dates as string[]) || []; + const frozenDatesSet = new Set(typedFrozenDates); + + // 마지막으로 읽은 날짜의 연속 기록이 필요함 + const streakAtLastReadDate = last_read_date + ? calculateStreakUpTo(last_read_date, readingDatesSet, frozenDatesSet) + : 0; + + let newStreak = streakAtLastReadDate; let newFreezes = streak_freezes || 0; - const newLastReadDate = todayString; - let newFrozenDates = frozen_dates || []; + let newFrozenDates = [...typedFrozenDates]; if (last_read_date) { const daysDifference = getDaysBetween(last_read_date, todayString); @@ -98,34 +128,38 @@ export const updateUserStreak = async (userId: string) => { } else if (daysDifference > 1) { // 연속이 끊김 const freezesNeeded = daysDifference - 1; - if (streak_freezes >= freezesNeeded) { + if (newFreezes >= freezesNeeded) { // 보호권으로 연속 유지 newFreezes -= freezesNeeded; - newStreak += 1; + newStreak += 1; // 이전 값에서 연속 기록이 이어짐 let currentFrozenDate = new Date(last_read_date); - currentFrozenDate.setDate(currentFrozenDate.getDate() + 1); - for (let i = 0; i < freezesNeeded; i++) { - newFrozenDates.push(getLocalDateString(currentFrozenDate)); currentFrozenDate.setDate(currentFrozenDate.getDate() + 1); + newFrozenDates.push(getLocalDateString(currentFrozenDate)); } } else { // 보호권 부족, 연속 기록 리셋 - newStreak = 1; // 오늘부터 다시 1일 - newFrozenDates = []; + newStreak = 1; // 오늘이 새로운 연속 기록의 첫날임 } } + // daysDifference가 0 이하인 경우는 이미 반환됨 } else { // 첫 기록 newStreak = 1; } + let newMaxStreak = max_streak || 0; + if (newStreak > newMaxStreak) { + newMaxStreak = newStreak; + } + const { error: updateError } = await supabase .from("profiles") .update({ streak: newStreak, - last_read_date: newLastReadDate, + max_streak: newMaxStreak, + last_read_date: todayString, streak_freezes: newFreezes, frozen_dates: newFrozenDates, }) @@ -202,6 +236,16 @@ const getUserReadingDates = async (userId: string): Promise => { // 연속 기록 및 마지막 독서일 재계산 export const recalculateStreakAndLastReadDate = async (userId: string) => { + const { data: profile, error: profileError } = await supabase + .from("profiles") + .select("max_streak") + .eq("id", userId) + .single(); + + if (profileError || !profile) { + throw new Error("사용자 프로필을 찾을 수 없습니다."); + } + const readingDates = await getUserReadingDates(userId); let newLastReadDate: string | null = null; @@ -228,10 +272,16 @@ export const recalculateStreakAndLastReadDate = async (userId: string) => { newStreak = streakCount; } + let newMaxStreak = profile.max_streak || 0; + if (newStreak > newMaxStreak) { + newMaxStreak = newStreak; + } + const { error: updateError } = await supabase .from("profiles") .update({ streak: newStreak, + max_streak: newMaxStreak, last_read_date: newLastReadDate, }) .eq("id", userId); diff --git a/src/types/auth.ts b/src/types/auth.ts index 821c9a6..be321f9 100644 --- a/src/types/auth.ts +++ b/src/types/auth.ts @@ -7,6 +7,7 @@ export interface UserProfile { id: string; nickname: string; streak: number; + max_streak: number; streak_freezes: number; created_at: string; last_reward_date: string; From 8bde408701cd8844caccf01f922d48ed2f556088 Mon Sep 17 00:00:00 2001 From: Lee SangHyun Date: Wed, 4 Mar 2026 14:26:58 +0900 Subject: [PATCH 11/11] =?UTF-8?q?chore:=20=EB=B2=84=EC=A0=84=20=EC=88=98?= =?UTF-8?q?=EC=A0=95?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/view-models/useAuthViewModel.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view-models/useAuthViewModel.ts b/src/view-models/useAuthViewModel.ts index 32f68a9..277b05b 100644 --- a/src/view-models/useAuthViewModel.ts +++ b/src/view-models/useAuthViewModel.ts @@ -49,7 +49,7 @@ export const useAuthViewModel = () => { "https://www.notion.so/PagePick-3040ea7070308053a72cdeea98896833?source=copy_link"; const termsOfServiceUrl = "https://www.notion.so/PagePick-3040ea70703080718bdee52005e2ef1d?source=copy_link"; - const appVersion = "1.1.0"; + const appVersion = "1.1.1"; const openUrl = async (url: string, fallbackUrl?: string) => { try {